feat: Add new emoji assets and an UpdateBanner component.
Some checks failed
Build and Release / build-and-release (push) Failing after 3m28s

This commit is contained in:
Bryan1029384756
2026-02-13 12:20:40 -06:00
parent 63d4208933
commit fe869a3222
3855 changed files with 10226 additions and 15543 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "@discord-clone/platform-web",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "src/index.js",
"dependencies": {
"scrypt-js": "^3.0.1"
}
}

View File

@@ -0,0 +1,223 @@
/**
* Web Crypto API implementation of the platform crypto interface.
* Compatible with the Electron (Node.js crypto) implementation:
* - RSA-OAEP 2048 with SHA-256 for public key encryption
* - Ed25519 for message signing/verification
* - AES-256-GCM for symmetric encryption
* - scrypt for password-based key derivation (via scrypt-js)
* - SHA-256 for hashing
*
* Keys are exchanged as PEM strings (SPKI public, PKCS8 private)
* to maintain interoperability with the Electron app.
*/
import { scrypt as scryptAsync } from 'scrypt-js';
const encoder = new TextEncoder();
const decoder = new TextDecoder();
// --- Hex / ArrayBuffer helpers ---
function bufToHex(buf) {
return Array.from(new Uint8Array(buf)).map(b => b.toString(16).padStart(2, '0')).join('');
}
function hexToBuf(hex) {
const bytes = new Uint8Array(hex.length / 2);
for (let i = 0; i < hex.length; i += 2) {
bytes[i / 2] = parseInt(hex.substring(i, i + 2), 16);
}
return bytes.buffer;
}
// --- PEM encode / decode ---
function pemEncode(der, type) {
const b64 = btoa(String.fromCharCode(...new Uint8Array(der)));
const lines = b64.match(/.{1,64}/g) || [];
return `-----BEGIN ${type}-----\n${lines.join('\n')}\n-----END ${type}-----`;
}
function pemDecode(pem) {
const b64 = pem.replace(/-----[A-Z ]+-----/g, '').replace(/\s/g, '');
const binary = atob(b64);
const bytes = new Uint8Array(binary.length);
for (let i = 0; i < binary.length; i++) bytes[i] = binary.charCodeAt(i);
return bytes.buffer;
}
// --- Key Generation ---
async function generateKeys() {
// Generate RSA-OAEP 2048 key pair
const rsaKeyPair = await crypto.subtle.generateKey(
{ name: 'RSA-OAEP', modulusLength: 2048, publicExponent: new Uint8Array([1, 0, 1]), hash: 'SHA-256' },
true,
['encrypt', 'decrypt']
);
const rsaPubDer = await crypto.subtle.exportKey('spki', rsaKeyPair.publicKey);
const rsaPrivDer = await crypto.subtle.exportKey('pkcs8', rsaKeyPair.privateKey);
// Generate Ed25519 key pair
const edKeyPair = await crypto.subtle.generateKey('Ed25519', true, ['sign', 'verify']);
const edPubDer = await crypto.subtle.exportKey('spki', edKeyPair.publicKey);
const edPrivDer = await crypto.subtle.exportKey('pkcs8', edKeyPair.privateKey);
return {
rsaPub: pemEncode(rsaPubDer, 'PUBLIC KEY'),
rsaPriv: pemEncode(rsaPrivDer, 'PRIVATE KEY'),
edPub: pemEncode(edPubDer, 'PUBLIC KEY'),
edPriv: pemEncode(edPrivDer, 'PRIVATE KEY'),
};
}
// --- Random bytes (returns hex string) ---
function randomBytes(size) {
const bytes = new Uint8Array(size);
crypto.getRandomValues(bytes);
return bufToHex(bytes);
}
// --- SHA-256 (returns hex string) ---
async function sha256(data) {
const digest = await crypto.subtle.digest('SHA-256', encoder.encode(data));
return bufToHex(digest);
}
// --- Ed25519 Sign / Verify ---
async function signMessage(privateKeyPem, message) {
const keyData = pemDecode(privateKeyPem);
const key = await crypto.subtle.importKey('pkcs8', keyData, 'Ed25519', false, ['sign']);
const sig = await crypto.subtle.sign('Ed25519', key, encoder.encode(message));
return bufToHex(sig);
}
async function verifySignature(publicKeyPem, message, signatureHex) {
const keyData = pemDecode(publicKeyPem);
const key = await crypto.subtle.importKey('spki', keyData, 'Ed25519', false, ['verify']);
const sigBuf = hexToBuf(signatureHex);
return crypto.subtle.verify('Ed25519', key, sigBuf, encoder.encode(message));
}
// --- scrypt Key Derivation ---
async function deriveAuthKeys(password, salt) {
const passwordBuf = encoder.encode(password);
const saltBuf = encoder.encode(salt);
// Match Node.js scrypt params: keylen=64, N=16384, r=8, p=1 (Node defaults)
const N = 16384, r = 8, p = 1, dkLen = 64;
const derivedKey = await scryptAsync(passwordBuf, saltBuf, N, r, p, dkLen);
const dak = bufToHex(derivedKey.slice(0, 32));
const dek = derivedKey.slice(32, 64);
return { dak, dek };
}
// --- AES-256-GCM Encrypt ---
async function encryptData(plaintext, keyInput) {
const keyBuf = typeof keyInput === 'string' ? hexToBuf(keyInput) : keyInput;
const key = await crypto.subtle.importKey('raw', keyBuf, 'AES-GCM', false, ['encrypt']);
const iv = crypto.getRandomValues(new Uint8Array(12)); // 96-bit IV
// Encode plaintext as UTF-8 if string
const dataBuf = typeof plaintext === 'string' ? encoder.encode(plaintext) : new Uint8Array(plaintext);
const encrypted = await crypto.subtle.encrypt({ name: 'AES-GCM', iv, tagLength: 128 }, key, dataBuf);
// Web Crypto appends the auth tag (16 bytes) to the ciphertext
const encBytes = new Uint8Array(encrypted);
const ciphertext = encBytes.slice(0, encBytes.length - 16);
const tag = encBytes.slice(encBytes.length - 16);
return {
content: bufToHex(ciphertext),
iv: bufToHex(iv),
tag: bufToHex(tag),
};
}
// --- AES-256-GCM Decrypt ---
async function decryptData(ciphertextHex, keyInput, ivHex, tagHex, options = {}) {
const keyBuf = typeof keyInput === 'string' ? hexToBuf(keyInput) : keyInput;
const key = await crypto.subtle.importKey('raw', keyBuf, 'AES-GCM', false, ['decrypt']);
const iv = new Uint8Array(hexToBuf(ivHex));
// Web Crypto expects ciphertext + tag concatenated
const cipherBytes = new Uint8Array(hexToBuf(ciphertextHex));
const tagBytes = new Uint8Array(hexToBuf(tagHex));
const combined = new Uint8Array(cipherBytes.length + tagBytes.length);
combined.set(cipherBytes, 0);
combined.set(tagBytes, cipherBytes.length);
const decrypted = await crypto.subtle.decrypt({ name: 'AES-GCM', iv, tagLength: 128 }, key, combined);
if (options.encoding === 'buffer') {
return decrypted;
}
return decoder.decode(decrypted);
}
// --- Batch Decrypt ---
async function decryptBatch(items) {
return Promise.all(items.map(async ({ ciphertext, key, iv, tag }) => {
try {
const data = await decryptData(ciphertext, key, iv, tag);
return { success: true, data };
} catch {
return { success: false, data: null };
}
}));
}
// --- Batch Verify ---
async function verifyBatch(items) {
return Promise.all(items.map(async ({ publicKey, message, signature }) => {
try {
const verified = await verifySignature(publicKey, message, signature);
return { success: true, verified };
} catch {
return { success: false, verified: false };
}
}));
}
// --- RSA-OAEP Public Encrypt ---
async function publicEncrypt(publicKeyPem, data) {
const keyData = pemDecode(publicKeyPem);
const key = await crypto.subtle.importKey('spki', keyData, { name: 'RSA-OAEP', hash: 'SHA-256' }, false, ['encrypt']);
const dataBuf = typeof data === 'string' ? encoder.encode(data) : new Uint8Array(data);
const encrypted = await crypto.subtle.encrypt({ name: 'RSA-OAEP' }, key, dataBuf);
return bufToHex(encrypted);
}
// --- RSA-OAEP Private Decrypt ---
async function privateDecrypt(privateKeyPem, encryptedHex) {
const keyData = pemDecode(privateKeyPem);
const key = await crypto.subtle.importKey('pkcs8', keyData, { name: 'RSA-OAEP', hash: 'SHA-256' }, false, ['decrypt']);
const encBuf = hexToBuf(encryptedHex);
const decrypted = await crypto.subtle.decrypt({ name: 'RSA-OAEP' }, key, encBuf);
return decoder.decode(decrypted);
}
export default {
generateKeys,
randomBytes,
sha256,
signMessage,
verifySignature,
deriveAuthKeys,
encryptData,
decryptData,
decryptBatch,
verifyBatch,
publicEncrypt,
privateDecrypt,
};

View File

@@ -0,0 +1,36 @@
/**
* Web platform idle detection using Page Visibility API.
* Provides a simplified version of the Electron idle API.
*/
let idleCallback = null;
let lastActiveTime = Date.now();
function handleVisibilityChange() {
if (!idleCallback) return;
if (document.hidden) {
idleCallback({ isIdle: true });
} else {
lastActiveTime = Date.now();
idleCallback({ isIdle: false });
}
}
export default {
getSystemIdleTime() {
// Return seconds since last activity (approximation using visibility)
if (document.hidden) {
return Math.floor((Date.now() - lastActiveTime) / 1000);
}
return 0;
},
onIdleStateChanged(callback) {
idleCallback = callback;
document.addEventListener('visibilitychange', handleVisibilityChange);
},
removeIdleStateListener() {
idleCallback = null;
document.removeEventListener('visibilitychange', handleVisibilityChange);
},
};

View File

@@ -0,0 +1,41 @@
/**
* Web/Capacitor platform implementation.
* Uses Web Crypto API, localStorage, and Page Visibility API.
*/
import crypto from './crypto.js';
import session from './session.js';
import settings from './settings.js';
import idle from './idle.js';
const webPlatform = {
crypto,
session,
settings,
idle,
links: {
openExternal(url) {
window.open(url, '_blank', 'noopener,noreferrer');
},
async fetchMetadata(url) {
// On web, metadata fetching would hit CORS. Use a Convex action or proxy instead.
// Return null to gracefully skip link previews that require server-side fetching.
return null;
},
},
screenCapture: {
async getScreenSources() {
// Web uses getDisplayMedia directly (no source picker like Electron).
// Return empty array; the web UI should call navigator.mediaDevices.getDisplayMedia() directly.
return [];
},
},
windowControls: null,
updates: null,
features: {
hasWindowControls: false,
hasScreenCapture: true,
hasNativeUpdates: false,
},
};
export default webPlatform;

View File

@@ -0,0 +1,34 @@
/**
* Web platform session persistence using localStorage.
* Returns Promises to match the Electron IPC-based API contract.
*/
const SESSION_KEY = 'discord-clone-session';
export default {
save(data) {
try {
localStorage.setItem(SESSION_KEY, JSON.stringify(data));
return Promise.resolve(true);
} catch {
return Promise.resolve(false);
}
},
load() {
try {
const raw = localStorage.getItem(SESSION_KEY);
return Promise.resolve(raw ? JSON.parse(raw) : null);
} catch {
return Promise.resolve(null);
}
},
clear() {
try {
localStorage.removeItem(SESSION_KEY);
return Promise.resolve(true);
} catch {
return Promise.resolve(false);
}
},
};

View File

@@ -0,0 +1,25 @@
/**
* Web platform settings using localStorage.
* Returns Promises to match the Electron IPC-based API contract.
*/
const PREFIX = 'discord-clone-settings:';
export default {
get(key) {
try {
const raw = localStorage.getItem(PREFIX + key);
return Promise.resolve(raw !== null ? JSON.parse(raw) : undefined);
} catch {
return Promise.resolve(undefined);
}
},
set(key, value) {
try {
localStorage.setItem(PREFIX + key, JSON.stringify(value));
return Promise.resolve();
} catch {
return Promise.resolve();
}
},
};

View File

@@ -0,0 +1,24 @@
{
"name": "@discord-clone/shared",
"private": true,
"version": "1.0.14",
"type": "module",
"main": "src/App.jsx",
"dependencies": {
"@convex-dev/presence": "^0.3.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@livekit/components-react": "^2.9.17",
"@livekit/components-styles": "^1.2.0",
"convex": "^1.31.2",
"livekit-client": "^2.16.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-easy-crop": "^5.5.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.11.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1"
}
}

View File

@@ -0,0 +1,42 @@
#root {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
filter: drop-shadow(0 0 2em #61dafbaa);
}
@keyframes logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@media (prefers-reduced-motion: no-preference) {
a:nth-of-type(2) .logo {
animation: logo-spin infinite 20s linear;
}
}
.card {
padding: 2em;
}
.read-the-docs {
color: #888;
}

112
packages/shared/src/App.jsx Normal file
View File

@@ -0,0 +1,112 @@
import React, { useState, useEffect, useRef } from 'react';
import { Routes, Route, Navigate, useLocation, useNavigate } from 'react-router-dom';
import Login from './pages/Login';
import Register from './pages/Register';
import Chat from './pages/Chat';
import { usePlatform } from './platform';
const THIRTY_DAYS_MS = 30 * 24 * 60 * 60 * 1000;
function AuthGuard({ children }) {
const [authState, setAuthState] = useState('loading'); // 'loading' | 'authenticated' | 'unauthenticated'
const location = useLocation();
const navigate = useNavigate();
const { session, settings } = usePlatform();
useEffect(() => {
let cancelled = false;
async function restoreSession() {
// Already have keys in sessionStorage — current session is active
if (sessionStorage.getItem('privateKey') && sessionStorage.getItem('signingKey')) {
if (!cancelled) setAuthState('authenticated');
return;
}
// Try restoring from safeStorage
if (session) {
try {
const savedSession = await session.load();
if (savedSession && savedSession.savedAt && (Date.now() - savedSession.savedAt) < THIRTY_DAYS_MS) {
// Restore to localStorage + sessionStorage
localStorage.setItem('userId', savedSession.userId);
localStorage.setItem('username', savedSession.username);
if (savedSession.publicKey) localStorage.setItem('publicKey', savedSession.publicKey);
sessionStorage.setItem('signingKey', savedSession.signingKey);
sessionStorage.setItem('privateKey', savedSession.privateKey);
// Restore user preferences from file-based backup into localStorage
if (settings) {
try {
const savedPrefs = await settings.get(`userPrefs_${savedSession.userId}`);
if (savedPrefs && typeof savedPrefs === 'object') {
localStorage.setItem(`userPrefs_${savedSession.userId}`, JSON.stringify(savedPrefs));
}
} catch {}
}
if (!cancelled) setAuthState('authenticated');
return;
}
// Expired — clear stale session
if (savedSession && savedSession.savedAt) {
await session.clear();
}
} catch (err) {
console.error('Session restore failed:', err);
}
}
if (!cancelled) setAuthState('unauthenticated');
}
restoreSession();
return () => { cancelled = true; };
}, []);
// Redirect once after auth state is determined (not on every route change)
const hasRedirected = useRef(false);
useEffect(() => {
if (authState === 'loading' || hasRedirected.current) return;
hasRedirected.current = true;
const isAuthPage = location.pathname === '/' || location.pathname === '/register';
if (authState === 'authenticated' && isAuthPage) {
navigate('/chat', { replace: true });
} else if (authState === 'unauthenticated' && !isAuthPage) {
navigate('/', { replace: true });
}
}, [authState]);
if (authState === 'loading') {
return (
<div style={{
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
height: '100vh',
backgroundColor: 'var(--bg-primary, #313338)',
color: 'var(--text-normal, #dbdee1)',
fontSize: '16px',
}}>
Loading...
</div>
);
}
return children;
}
function App() {
return (
<AuthGuard>
<Routes>
<Route path="/" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/chat" element={<Chat />} />
</Routes>
</AuthGuard>
);
}
export default App;

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#31373D" cx="18" cy="18" r="18"/><circle fill="#E1E8ED" cx="18" cy="18" r="9"/><path fill="#31373D" d="M13.703 20.203c0-1.406.773-2.443 1.881-3.041-.826-.598-1.336-1.406-1.336-2.514 0-2.057 1.705-3.375 3.797-3.375 2.039 0 3.814 1.301 3.814 3.375 0 .984-.492 1.969-1.354 2.514 1.195.598 1.881 1.688 1.881 3.041 0 2.443-1.986 4.008-4.342 4.008-2.425 0-4.341-1.652-4.341-4.008zm2.742-.176c0 .896.527 1.758 1.6 1.758 1.002 0 1.6-.861 1.6-1.758 0-1.107-.633-1.758-1.6-1.758-1.02.001-1.6.774-1.6 1.758zm.334-5.097c0 .791.457 1.336 1.266 1.336.809 0 1.283-.545 1.283-1.336 0-.756-.457-1.336-1.283-1.336-.826 0-1.266.58-1.266 1.336z"/></svg>

After

Width:  |  Height:  |  Size: 707 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D99E82" d="M18 3.143c-9.941 0-18 6.908-18 15.428 0 1.066.126 2.107.367 3.112C2.146 24.744 3.377 22.812 9 20c5.727-2.864 0 4-2 8-.615 1.23-.282 2.271.56 3.124C10.506 32.928 14.104 34 18 34c9.941 0 18-6.907 18-15.429 0-8.52-8.059-15.428-18-15.428zm2.849 24.447c-.395 1.346-2.46 1.924-4.613 1.291-2.153-.632-3.578-2.234-3.183-3.581.395-1.346 2.46-1.924 4.613-1.29 2.153.631 3.578 2.233 3.183 3.58z"/><circle fill="#5C913B" cx="10" cy="11" r="3"/><circle fill="#269" cx="20" cy="9" r="3"/><circle fill="#DD2E44" cx="29" cy="15" r="3"/><circle fill="#FFCC4D" cx="28" cy="24" r="3"/></svg>

After

Width:  |  Height:  |  Size: 656 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M30.385 29c.382.382.382 1.002 0 1.385-.383.382-1.003.382-1.385 0L15.5 16.884c-.382-.382-.382-1.002 0-1.384.382-.382 1.001-.382 1.384 0L30.385 29z"/><path fill="#292F33" d="M35.561 33.439c.586.586.586 1.536 0 2.121-.585.586-1.535.586-2.121 0l-5.656-5.656c-.586-.586-.586-1.536 0-2.121.585-.586 1.535-.586 2.121 0l5.656 5.656z"/><g fill="#99AAB5"><path d="M2.447 5.2l.707-.707L15.178 16.51l-.707.707zm1.417-2.83l.707-.707 12.728 12.728-.708.707z"/><path d="M1.035 9.441L9.52.956l.707.707-8.485 8.485zm.707 3.535L12.35 2.37l.707.707L2.449 13.684zm2.122 2.122L15.177 3.785l.707.707L4.571 15.805zm2.828 1.415l9.899-9.9.707.707-9.9 9.9zm2.828 1.413l8.485-8.485.707.707-8.485 8.486z"/><path d="M1.035 8.027l.707-.707L12.35 17.926l-.707.707zM7.4 1.663l.706-.707 10.607 10.606-.707.708z"/></g><path fill="#55ACEE" d="M2.468 2.468c-3.471 3.472-3.119 9.452.786 13.357 3.906 3.906 9.885 4.257 13.356.786 3.472-3.472 3.121-9.45-.786-13.356C11.919-.651 5.94-1.003 2.468 2.468zm12.846 12.846c-2.733 2.733-7.535 2.364-10.725-.825C1.4 11.3 1.032 6.499 3.765 3.765c2.734-2.734 7.535-2.364 10.724.825s3.559 7.991.825 10.724z"/><g fill="#269"><path d="M17.298 14.391c.391.391.39 1.024 0 1.414l-1.415 1.415c-.39.39-1.023.391-1.414 0s-.391-1.024 0-1.415l1.414-1.414c.391-.391 1.024-.391 1.415 0z"/><path d="M18.005 16.512c.391.391.391 1.024 0 1.415s-1.024.391-1.414 0l-.707-.707c-.391-.391-.39-1.024 0-1.415.391-.391 1.023-.391 1.415 0l.706.707z"/></g><path fill="#269" d="M29.56 27.44c.586.585-.122.828-.707 1.414-.586.585-.829 1.292-1.414.707-.586-.586-.586-1.536 0-2.121.585-.586 1.536-.586 2.121 0z"/><path fill="#BE1931" d="M21.81 3.182c-.781.781-.781 2.047 0 2.828l.707.707.707-.707 1.414-1.414.709-.707-.709-.707c-.779-.781-2.046-.781-2.828 0z"/><path fill="#99AAB5" d="M22.52 6.716l2.83-2.828.707.707-2.83 2.829z"/><path fill="#E1E8ED" d="M23.225 7.424l2.83-2.828c1.473.488 9.125 5.069 8.861 5.334-.758.759-1.912.201-1.912.201s.844.806.117 1.532-1.531-.118-1.531-.118.969.741.149 1.564c-.826.826-1.562-.149-1.562-.149s.729.981.098 1.613c-.633.631-1.514-.199-1.514-.199s.418.998-.342 1.756c-.362.364-4.609-7.33-5.194-8.706z"/><path d="M26.414 7.823c.578-.683 5.432 3.727 4.58 4.579-.853.851-5.275-3.759-4.58-4.579zm1.705 7.448c.68-.443-3.072-5.816-3.535-5.427-.031.026-.045.072-.053.126.883 1.626 2.006 3.594 2.824 4.867.336.342.616.53.764.434zm.272-9.233c-.391.462 4.984 4.214 5.427 3.535.115-.178-.17-.541-.656-.97-1.215-.782-2.856-1.767-4.285-2.571-.24-.065-.418-.074-.486.006zm-2.989 2.859c.426-.429 4.641 4.589 4.002 5.093-.638.5-4.515-4.576-4.002-5.093zm2.041-2.041c-.428.426 4.59 4.64 5.092 4.002.502-.639-4.574-4.516-5.092-4.002z" fill="#CCD6DD"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4ABBA" d="M23.27.108C25.631.042 32.366 2.7 32.366 18.25c-.147 2.005-.342 9.193-5.379 12.714h-5.33c-1.027-.44-2.445-2.249-2.445-8.362 0-1.809 1.43-6.741 1.467-8.118.081-3.042-.634-4.525-1.842-7.531C17.304 3.14 19.749.205 23.27.108z"/><path fill="#EA596E" d="M29.408 7.443c.631 1.565 4.066 13.431-2.491 13.529-1.649.13-4.613-.179-2.14-7.906.947-2.494-1.367-7.637-1.579-8.655-.316-1.516 2.263-3.13 3.999-.831 1.555 2.057 2.211 3.863 2.211 3.863z"/><path fill="#F4ABBA" d="M23.401 20.622c-.283 0-.558-.146-.711-.407-.23-.393-.099-.896.294-1.126 3.134-1.837 6.378-6.191 7.165-7.913.189-.414.675-.597 1.092-.406.413.189.595.678.406 1.091-.886 1.936-4.356 6.613-7.831 8.648-.13.077-.273.113-.415.113z"/><path fill="#F4ABBA" d="M31.42 17.688c-.064 0-.13-.007-.195-.023-1.504-.366-6.195-2.541-8.011-6.311-.197-.41-.025-.902.384-1.099.412-.198.902-.025 1.099.384 1.54 3.196 5.668 5.122 6.917 5.426.442.107.713.553.605.995-.092.376-.429.628-.799.628zM12.338 4.963c-2.371-.066-9.137 2.603-9.137 18.224.147 2.014.344 9.235 5.403 12.772h5.354c1.032-.442 2.456-2.26 2.456-8.4 0-1.818-1.398-6.773-1.474-8.154-.186-3.401.637-4.545 1.85-7.565 1.541-3.832-.915-6.779-4.452-6.877z"/><path fill="#EA596E" d="M6.172 12.331c-.634 1.572-4.084 13.492 2.502 13.59 1.656.131 4.634-.18 2.15-7.941-.951-2.505 1.373-7.672 1.586-8.695.317-1.523-2.273-3.144-4.017-.835-1.562 2.067-2.221 3.881-2.221 3.881z"/><path fill="#F4ABBA" d="M12.206 25.569c-.142 0-.286-.037-.417-.113-3.49-2.045-6.976-6.742-7.866-8.687-.19-.416-.007-.906.408-1.096.416-.19.906-.008 1.096.408.792 1.73 4.05 6.104 7.198 7.948.394.231.526.738.295 1.132-.153.262-.43.408-.714.408z"/><path fill="#F4ABBA" d="M4.211 22.563c-.373 0-.711-.254-.803-.632-.108-.443.164-.891.607-.999 1.247-.303 5.361-2.219 6.89-5.391.199-.412.694-.583 1.104-.386.412.198.584.693.386 1.104-1.946 4.038-6.873 6.009-7.988 6.281-.066.016-.132.023-.196.023z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#67757F" cx="10.047" cy="16.953" r="1"/><circle fill="#67757F" cx="1.047" cy="25.953" r="1"/><circle fill="#67757F" cx="19.047" cy="25.953" r="1"/><circle fill="#67757F" cx="10.047" cy="34.953" r="1"/><circle fill="#67757F" cx="3.547" cy="19.828" r="1"/><circle fill="#67757F" cx="16.214" cy="32.495" r="1"/><path fill="#292F33" d="M32.339 5.338l-15.45 17.334-3.561-3.56L30.66 3.66z"/><ellipse transform="rotate(-52.019 10.047 25.953)" fill="#F18F26" cx="10.047" cy="25.953" rx="9" ry="9"/><ellipse transform="rotate(-52.019 10.047 25.953)" fill="#F5F8FA" cx="10.047" cy="25.953" rx="7" ry="7"/><path fill="#CCD6DD" d="M4.628 29.934L28.8 5.807l.53.531L5.16 30.466zm.869.87L29.67 6.676l.531.531L6.028 31.335z"/><path fill="#292F33" d="M2.047 31.953l2-3s1 0 2 1 1 2 1 2l-3 2-2-2z"/><path fill="#67757F" d="M9.097 30.903c-.256 0-.512-.098-.707-.293l-3-3c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3 3c.391.391.391 1.023 0 1.414-.196.196-.452.293-.707.293z"/><path fill="#F18F26" d="M34.704 2.685c.438.438.438 1.155-.001 1.592l-3.186 3.186c-.438.438-1.155.438-1.593-.001l-1.39-1.389c-.438-.438-.438-1.155.001-1.592l3.187-3.186c.438-.438 1.155-.438 1.593 0l1.389 1.39z"/><circle fill="#642116" cx="33" cy="8" r="1"/><circle fill="#642116" cx="35" cy="6" r="1"/><circle fill="#642116" cx="28" cy="3" r="1"/><circle fill="#642116" cx="30" cy="1" r="1"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#E1E8ED" cx="18" cy="18" r="18"/><path fill="#B3BEC4" d="M31.802 29.546C28.792 28.221 27 24.048 27 18c0-6.048 1.792-10.221 4.802-11.546-.445-.531-.926-1.028-1.428-1.504C27.406 6.605 25 10.578 25 18c0 7.421 2.406 11.395 5.374 13.05.502-.477.984-.973 1.428-1.504zM11 18c0-7.421-2.406-11.395-5.374-13.049-.502.476-.984.972-1.428 1.503C7.208 7.78 9 11.952 9 18c0 6.048-1.792 10.22-4.802 11.546.445.531.926 1.027 1.428 1.504C8.593 29.395 11 25.421 11 18z"/><path d="M5.092 10.164c-.237 0-.457-.02-.651-.056-.543-.102-.9-.624-.799-1.167.102-.543.625-.902 1.167-.799.43.077 2.691.006 3.148-2.276.108-.541.632-.892 1.177-.784.542.108.893.635.784 1.177-.583 2.912-3.139 3.905-4.826 3.905zm1.7 3.961c-.53 0-.952-.323-.978-.859-.026-.551.4-.911.952-.937 0 0 2.564-.035 3.869-2.294.275-.478.886-.63 1.365-.352.478.276.642.894.365 1.373-1.851 3.206-5.557 3.069-5.573 3.069zM9 19.282c-.734 0-1.414-.135-1.928-.378-.499-.236-.712-.833-.476-1.332.237-.5.834-.711 1.332-.476.83.393 2.926.239 3.73-1.012.299-.465.917-.6 1.382-.301.465.299.599.918.301 1.382-.964 1.501-2.776 2.117-4.341 2.117zm1.161 5.525c-1.554 0-2.995-.699-3.926-1.476-.424-.354-.481-.984-.128-1.409.354-.425.984-.48 1.408-.128.194.163 1.952 1.566 3.782.785.507-.215 1.095.021 1.311.53.216.509-.021 1.096-.53 1.312-.639.271-1.288.386-1.917.386zM9.75 30h-.028c-2.504 0-4.679-1.57-5.534-3.108-.269-.482-.094-1.044.388-1.312.483-.269 1.092-.07 1.36.412.484.871 1.996 2.134 3.841 2.185.552.016.987.388.972.939-.015.542-.459.884-.999.884zm17.438.188c-.066 0-.131-.006-.197-.02-.541-.108-.893-.635-.784-1.177.664-3.322 3.894-4.15 5.478-3.849.543.102.9.624.798 1.167-.101.542-.617.903-1.167.798-.425-.08-2.69-.007-3.147 2.276-.096.476-.514.805-.981.805zm-2.564-4.5c-.17 0-.342-.043-.499-.134-.479-.276-.643-.889-.366-1.366 1.852-3.206 3.984-3.304 5.394-3.369l.111-.005c.539-.033 1.021.399 1.047.951.026.552-.399 1.021-.951 1.047l-.115.005c-1.204.056-2.449.112-3.754 2.371-.185.321-.521.5-.867.5zm-1-6.063c-.186 0-.372-.051-.54-.159-.464-.298-.599-.917-.3-1.381 1.415-2.203 4.656-2.501 6.268-1.738.499.236.713.833.476 1.332-.235.5-.834.712-1.331.476-.829-.393-2.926-.239-3.732 1.012-.19.296-.512.458-.841.458zm5.625-5.937c-.226 0-.452-.076-.64-.232-.194-.162-1.952-1.559-3.781-.785-.509.215-1.095-.021-1.312-.53-.216-.508.021-1.096.53-1.311 2.219-.942 4.535-.001 5.844 1.09.424.353.482.984.128 1.408-.198.237-.482.36-.769.36zm1.814-3.938c-.352 0-.692-.186-.875-.514-.484-.872-1.996-2.123-3.841-2.174-.553-.015-.987-.506-.973-1.059.017-.542.461-1.003 1-1.003h.028c2.505 0 4.68 1.694 5.534 3.232.269.483.095 1.108-.389 1.376-.152.086-.319.142-.484.142z" fill="#DD2E44"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#F4900C" cx="18" cy="18" r="18"/><path fill="#231F20" d="M36 17h-8.981c.188-5.506 1.943-9.295 4.784-10.546-.445-.531-.926-1.027-1.428-1.504-2.83 1.578-5.145 5.273-5.354 12.049H19V0h-2v17h-6.021c-.208-6.776-2.523-10.471-5.353-12.049-.502.476-.984.972-1.428 1.503C7.039 7.705 8.793 11.494 8.981 17H0v2h8.981c-.188 5.506-1.942 9.295-4.783 10.546.445.531.926 1.027 1.428 1.504 2.831-1.578 5.145-5.273 5.353-12.05H17v17h2V19h6.021c.209 6.776 2.523 10.471 5.354 12.05.502-.476.984-.973 1.428-1.504-2.841-1.251-4.595-5.04-4.784-10.546H36v-2z"/></svg>

After

Width:  |  Height:  |  Size: 617 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M31.497 6.06s.244-4.293-6.702-3.83c-8.617.574-18.599 9.155-18.95 17.159-.267 6.089 8.109 1.203 11.139-1.96-.045-.045 3.282 1.426 4.752 4.545-3.267 2.733-8.047 4.803-11.644 5.109-6.282.535-8.546-2.727-7.557-9.15C3.758 10 13.588.858 24.604.795c8.377-.048 6.893 5.265 6.893 5.265z"/><path fill="#662113" d="M32.19 32.317c.351-1.768-.27-19.086-4.411-22.615S5.541 7.73 3.881 8.435c-2.24.95-1.352 3.835.184 3.93 5.43.339 16.02.786 18.774 3.133s4.875 12.732 6.07 18.04c.337 1.501 2.643 1.99 3.281-1.221z"/><path fill="#C1694F" d="M32.19 32.317c.432-1.75-.057-20.063-4.197-23.592s-22.3-1.109-23.96-.405c-2.24.95-1.291 2.972.245 3.068 5.43.339 16.02.786 18.774 3.133s4.875 12.732 6.07 18.04c.338 1.501 2.484 2.118 3.068-.244z"/><path fill="#FFCC4D" d="M6.747 11.537c1.459.089 3.08.196 4.731.339l-.013-4.686c-1.373.125-2.649.274-3.749.426l-.969 3.921zm21.836 18.61c-.319-1.426-.682-3.01-1.084-4.618l4.629-.73c.094 1.376.149 2.659.174 3.769l-3.719 1.579z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M21.279 4.28c-9 0-10.5 1.5-13 4s-4 4-4 13c0 11.181-2 14-1 14s3-2 3-4-2-13 5-20h-.001c7-6.999 18-5 20-5s4-2 4-3-2.818 1-13.999 1z"/><path fill="#D99E82" d="M29.5 29.779c0 .276-.224.5-.5.5H3.78c-.276 0-.5-.224-.5-.5s.224-.5.5-.5H29c.276 0 .5.224.5.5zm.279-.279c-.277 0-.5-.225-.5-.5V3.779c0-.276.223-.5.5-.5.275 0 .5.224.5.5V29c0 .275-.224.5-.5.5z"/><path fill="#99AAB5" d="M0 0l2.793 8.52L4.93 4.955l3.52-2.092z"/><path fill="#DD2E44" d="M26.087 27.393c.364 1.897 0 3.564-.812 3.719-.814.156-1.77-1.256-2.133-3.154-.364-1.898-.001-3.564.812-3.721.814-.157 1.769 1.257 2.133 3.156z"/><path fill="#F4900C" d="M26.568 28.465c.365 1.899 0 3.565-.812 3.721-.813.156-1.769-1.258-2.132-3.154-.365-1.9-.001-3.566.811-3.721.814-.157 1.77 1.255 2.133 3.154z"/><path fill="#A0041E" d="M27.958 29.854c.364 1.899 0 3.564-.812 3.721-.813.156-1.77-1.256-2.133-3.154-.364-1.898 0-3.564.812-3.721.814-.157 1.77 1.255 2.133 3.154z"/><path fill="#DD2E44" d="M29.372 31.268c.365 1.898 0 3.566-.812 3.721-.814.156-1.77-1.256-2.133-3.154-.364-1.899 0-3.564.812-3.721.814-.157 1.77 1.257 2.133 3.154zm-1.979-5.181c1.897.364 3.564 0 3.719-.812.156-.814-1.256-1.77-3.154-2.133-1.898-.364-3.564-.001-3.721.812-.157.814 1.257 1.769 3.156 2.133z"/><path fill="#F4900C" d="M28.465 26.568c1.899.365 3.565 0 3.721-.812.156-.813-1.258-1.769-3.154-2.132-1.9-.365-3.566-.001-3.721.811-.157.814 1.255 1.77 3.154 2.133z"/><path fill="#A0041E" d="M29.854 27.958c1.899.364 3.564 0 3.721-.812.156-.813-1.256-1.77-3.154-2.133-1.898-.364-3.564 0-3.721.812-.157.814 1.255 1.77 3.154 2.133z"/><path fill="#DD2E44" d="M31.268 29.372c1.898.365 3.566 0 3.721-.812.156-.814-1.256-1.77-3.154-2.133-1.899-.364-3.564 0-3.721.812-.157.814 1.257 1.77 3.154 2.133z"/><path fill="#CCD6DD" d="M30.385 29c.382.382.382 1.002 0 1.385-.383.382-1.003.382-1.385 0L4.136 5.52c-.382-.382-.382-1.002 0-1.384.382-.382 1.001-.382 1.384 0L30.385 29z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M22 10c0-1 1-3 1-5s0-3-1-4-2-1-2-1-1 0-2 1-1 2-1 4 1 4 1 5c0 3-4 5-4 9.084C14 22.417 16 29 17 31h6c1-2 3-8.583 3-11.916C26 15 22 13 22 10z"/><path fill="#BE1931" d="M18 10h4c0-.475.227-1.18.464-2h-4.927c.236.82.463 1.525.463 2zm5.902 4c-.494-.681-.976-1.333-1.332-2h-5.139c-.357.667-.839 1.319-1.332 2h7.803z"/><path fill="#CCD6DD" d="M32 13c0-1 1-3 1-5s0-3-1-4-2-1-2-1-1 0-2 1-1 2-1 4 1 4 1 5c0 3-4 5-4 9.084C24 25.417 26 32 27 34h6c1-2 3-8.583 3-11.916C36 18 32 16 32 13z"/><path fill="#BE1931" d="M28 13h4c0-.475.227-1.18.464-2h-4.927c.236.82.463 1.525.463 2zm5.902 4c-.494-.681-.976-1.333-1.332-2h-5.139c-.357.667-.839 1.319-1.332 2h7.803z"/><circle fill="#31373D" cx="12.562" cy="23.438" r="12.562"/><circle cx="12.915" cy="18.79" r="2.316"/><circle cx="6.505" cy="20.938" r="2.316"/><circle cx="11.431" cy="28.053" r="2.316"/></svg>

After

Width:  |  Height:  |  Size: 922 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M19.598.326c9.613 0 12.243 1.697 12.243 11.311 0 5.506-1.167 8.488-1.167 13.488 0 2.958-4.551 3-8.659 3-4.218 0-9.142.199-11.341-2-6-6-10.545-16.449-2-19C9.129.614 9.984.326 19.598.326z"/><path fill="#99AAB5" d="M26.736 26c2.229 0 4.264.858 4.264 2.903v3.519C31 34.467 28.965 36 26.736 36H15V26h11.736z"/><path fill="#CCD6DD" d="M22.341 26c2.454 0 4.659.858 4.659 2.903v3.519C27 34.467 24.795 36 22.341 36h-7.333C12.553 36 11 34.467 11 32.422v-3.519C11 26.858 12.553 26 15.008 26h7.333z"/><path fill="#A0041E" d="M4.292 10.948c.715-.575 1.862-1.424 2.383 1.178 1 5 3.794 9.384 3 7-1-3-1-12-1-12-2.437.727-3.806 2.097-4.383 3.822z"/><path fill="#E1E8ED" d="M21.674 28c1.105 0 2.326.538 2.326 1.459v3.333c0 .92-1.221 1.208-2.326 1.208h-5C15.57 34 15 33.712 15 32.792v-3.333c0-.921.57-1.459 1.674-1.459h5z"/></svg>

After

Width:  |  Height:  |  Size: 895 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#31373D" d="M27.819 33.653C28.46 32.997 29 32.072 29 30.801c0-3.149-3.645-6.753-5-9.801-1.333-3-2.104-5.875-.083-6.688l.17-.073c.578-.218.913-.47.913-.739 0-.46-.97-.872-2.494-1.147C24.03 11.069 25 9.149 25 7c0-3.866-3.134-7-7-7s-7 3.134-7 7c0 2.149.97 4.069 2.494 5.353C11.97 12.628 11 13.04 11 13.5c0 .269.335.521.914.739.056.024.106.048.169.073C14.104 15.125 13.333 18 12 21c-1.355 3.048-5 6.652-5 9.801 0 1.271.54 2.196 1.181 2.852C7.432 34.058 7 34.515 7 35c0 .351.233.687.639 1H28.36c.407-.313.64-.649.64-1 0-.485-.432-.942-1.181-1.347z"/><path fill="#66757F" d="M22.001 4.75c-.275 0-.54-.152-.672-.415-.03-.058-.866-1.585-3.329-1.585s-3.298 1.527-3.333 1.593c-.192.364-.644.509-1.008.32-.366-.188-.514-.631-.33-.999.049-.098 1.247-2.414 4.671-2.414 3.424 0 4.621 2.316 4.671 2.415.186.371.035.821-.336 1.006-.107.054-.222.079-.334.079zM22 14c-.075 0-.151-.017-.224-.053-.004-.001-.988-.447-3.776-.447-2.789 0-3.772.446-3.782.45-.247.117-.546.013-.665-.234-.119-.246-.021-.541.224-.664.113-.056 1.192-.552 4.223-.552 3.03 0 4.11.496 4.224.553.247.124.347.424.224.671-.089.175-.265.276-.448.276zM10 34.5c-.254 0-.471-.192-.497-.45-.027-.274.173-.52.448-.547C10 33.497 15.01 33 18 33s7.999.497 8.05.503c.274.027.476.272.447.547-.027.274-.275.479-.547.447C25.9 34.492 20.94 34 18 34c-2.941 0-7.9.492-7.95.497L10 34.5z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#DD2E44" d="M33 33c0 1.104-.896 2-2 2H5c-1.104 0-2-.896-2-2l1-12h28l1 12z"/><path fill="#EA596E" d="M13 35c-.792-1.875-1.75-3.291-3.417-4.666 1.75-1.459 4.542-5.5 5.25-8.292s2.75 8.125 2.042 10.625S13 35 13 35zm10.303 0c.791-1.875 1.75-3.291 3.416-4.666-1.75-1.459-4.541-5.5-5.25-8.292-.707-2.792-2.75 8.125-2.04 10.625.708 2.5 3.874 2.333 3.874 2.333z"/><path fill="#BE1931" d="M3.728 24.263c.453.455 1.079.737 1.772.737C6.881 25 8 23.881 8 22.5c0-.565-.195-1.081-.511-1.5H4l-.272 3.263zm28.544 0L32 21h-3.489c-.316.419-.511.935-.511 1.5 0 1.381 1.119 2.5 2.5 2.5.693 0 1.319-.282 1.772-.737z"/><circle fill="#BE1931" cx="14" cy="23" r="2"/><circle fill="#BE1931" cx="22" cy="23" r="2"/><circle fill="#BE1931" cx="10" cy="23" r="2"/><circle fill="#BE1931" cx="26" cy="23" r="2"/><path d="M23 35H13s2-6 2-13h6c0 7 2 13 2 13zM17 2h2v7h-2z"/><path fill="#55ACEE" d="M18.838.206C17.667.042 17 .318 17 1.418v1c0 1.1.865 1.753 1.923 1.451l5.154-.901c1.715-.343 1.548-1.593.085-1.884L18.838.206z"/><path fill="#CCD6DD" d="M18 6l-.081.123C10.938 16.981 3 15.015 3 19v2.5C3 22.881 4.119 24 5.5 24c1.21 0 2.218-.859 2.45-2H12c0 1.104.896 2 2 2s2-.896 2-2h4c0 1.104.896 2 2 2s2-.896 2-2h4.05c.232 1.141 1.24 2 2.45 2 1.381 0 2.5-1.119 2.5-2.5V19c0-4-8-2-15-13z"/><g fill="#F5F8FA"><path d="M17.948 6.078l-.03.045C17.132 11.619 10.811 16.126 8 18v4c0 1.104.896 2 2 2s2-.896 2-2v-4c.982-.982 5.813-6.787 5.984-11.732-.01-.064-.027-.126-.036-.19zm.08.398C18.324 11.374 23.031 17.031 24 18v4c0 1.104.896 2 2 2s2-.896 2-2v-4c-2.75-1.833-8.953-6.19-9.972-11.524z"/><path d="M17.984 6.27C17.922 8.346 17.606 16.394 16 18v4c0 1.104.896 2 2 2s2-.896 2-2v-4c-1.564-1.564-1.905-9.241-1.979-11.559-.011-.057-.027-.113-.037-.171z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#3F7123" d="M35.845 32c0 2.2-1.8 4-4 4h-26c-2.2 0-4-1.8-4-4V19c0-2.2 1.8-4 4-4h26c2.2 0 4 1.8 4 4v13z"/><path fill="#3F7123" d="M1.845 15h34v6h-34z"/><path fill="#CCD6DD" d="M1.845 15h34v7h-34z"/><path fill="#292F33" d="M1.845 15h4l-4 7v-7zm11 0l-4 7h7l4-7h-7zm14 0l-4 7h7l4-7h-7z"/><path fill="#CCD6DD" d="M.155 8.207L33.148 0l1.69 6.792L1.845 15z"/><path fill="#292F33" d="M.155 8.207l5.572 5.827L1.845 15 .155 8.207zm19.158 2.448l-5.572-5.828-6.793 1.69 5.572 5.828 6.793-1.69zm13.586-3.38l-5.572-5.828-6.793 1.69 5.572 5.827 6.793-1.689z"/></svg>

After

Width:  |  Height:  |  Size: 622 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D99E82" d="M35.538 26.679s1.328 2.214-2.658 6.201c-3.987 3.986-6.201 2.658-6.201 2.658L7.185 16.046s.977-2.748 3.544-5.316c2.568-2.567 5.316-3.544 5.316-3.544l19.493 19.493z"/><path fill="#C1694F" d="M13.388 9.844c.979.979 4.522 6.109 3.544 7.088-.979.978-6.109-2.565-7.088-3.544l-8.86-8.86C.006 3.549.006 1.963.984.984c.979-.978 2.565-.978 3.544 0l8.86 8.86z"/><path fill="#292F33" d="M.983 4.528L4.528.984 9.844 6.3 6.3 9.844z"/><circle fill="#BE1931" cx="19" cy="31" r="5"/><path fill="#662113" d="M19 36c-.552 0-1-.447-1-1v-8c0-.553.448-1 1-1 .553 0 1 .447 1 1v8c0 .553-.447 1-1 1z"/></svg>

After

Width:  |  Height:  |  Size: 667 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BE1931" d="M28 12H13V8c0-.552.448-1 1-1h11c1.104 0 2-.896 2-2s-.896-2-2-2H14c-2.761 0-5 2.239-5 5v4H8c-1.104 0-2 .896-2 2s.896 2 2 2h20c1.104 0 2-.896 2-2s-.896-2-2-2z"/><path fill="#66757F" d="M36 25c0 3.313-2.687 6-6 6H6c-3.313 0-6-2.687-6-6v-5c0-3.313 2.687-6 6-6h24c3.313 0 6 2.687 6 6v5z"/><path fill="#99AAB5" d="M0 20h36v5H0z"/></svg>

After

Width:  |  Height:  |  Size: 414 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><circle fill="#DD2E44" cx="18" cy="18" r="18"/><circle fill="#FFF" cx="18" cy="18" r="13.5"/><circle fill="#DD2E44" cx="18" cy="18" r="10"/><circle fill="#FFF" cx="18" cy="18" r="6"/><circle fill="#DD2E44" cx="18" cy="18" r="3"/><path opacity=".2" d="M18.24 18.282l13.144 11.754s-2.647 3.376-7.89 5.109L17.579 18.42l.661-.138z"/><path fill="#FFAC33" d="M18.294 19c-.255 0-.509-.097-.704-.292-.389-.389-.389-1.018 0-1.407l.563-.563c.389-.389 1.018-.389 1.408 0 .388.389.388 1.018 0 1.407l-.564.563c-.194.195-.448.292-.703.292z"/><path fill="#55ACEE" d="M24.016 6.981c-.403 2.079 0 4.691 0 4.691l7.054-7.388c.291-1.454-.528-3.932-1.718-4.238-1.19-.306-4.079.803-5.336 6.935zm5.003 5.003c-2.079.403-4.691 0-4.691 0l7.388-7.054c1.454-.291 3.932.528 4.238 1.718.306 1.19-.803 4.079-6.935 5.336z"/><path fill="#3A87C2" d="M32.798 4.485L21.176 17.587c-.362.362-1.673.882-2.51.046-.836-.836-.419-2.08-.057-2.443L31.815 3.501s.676-.635 1.159-.152-.176 1.136-.176 1.136z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M21 25c-2.556 0-4.062-3.128-5.161-4.676-.412-.58-1.266-.58-1.677 0C13.062 21.872 11.557 25 9 25c-4.551 0-7.923-3.033-8.784-7.619C-.804 11.955 3.589 7 9.11 7h11.78c5.521 0 9.914 4.955 8.894 10.381C28.923 21.967 25.551 25 21 25z"/><path fill="#292F33" d="M18 22l-3-3-3 3-2 2c2 0 3 3 5 3s3-3 5-3l-2-2z"/><path fill="#4E9322" d="M21 25c-2.556 0-4.062-3.128-5.161-4.676-.412-.58-1.266-.58-1.677 0C13.062 21.872 11.557 25 9 25c-4.551 0-7.923-3.033-8.784-7.619C-.804 11.955 3.589 7 9.11 7h11.78c5.521 0 9.914 4.955 8.894 10.381C28.923 21.967 25.551 25 21 25z"/><path fill="#88C9F9" d="M21 23c-1.041 0-2.113-1.664-2.896-2.88-.226-.35-.437-.676-.635-.954-.568-.8-1.491-1.277-2.469-1.277-.979 0-1.901.477-2.469 1.275-.199.281-.41.606-.635.957C11.113 21.336 10.042 23 9 23c-3.512 0-6.125-2.295-6.819-5.988-.365-1.941.147-3.87 1.442-5.431C4.984 9.941 6.984 9 9.11 9h11.78c2.126 0 4.126.941 5.486 2.581 1.295 1.561 1.808 3.49 1.442 5.431C27.125 20.706 24.512 23 21 23z"/><path fill="#292F33" d="M26.761 11.262C25.305 9.507 23.165 8.5 20.89 8.5H9.11c-2.275 0-4.415 1.007-5.871 2.762-1.392 1.678-1.942 3.752-1.549 5.842C2.431 21.049 5.232 23.5 9 23.5c1.314 0 2.424-1.723 3.316-3.108.221-.344.428-.663.622-.938.475-.667 1.245-1.065 2.062-1.065s1.587.398 2.062 1.067c.194.272.401.593.622.935.892 1.385 2.002 3.109 3.316 3.109 3.769 0 6.569-2.45 7.31-6.396.393-2.089-.158-4.164-1.549-5.842zm.566 5.658c-.646 3.442-3.07 5.58-6.327 5.58-.769 0-1.837-1.659-2.476-2.651-.23-.356-.445-.688-.647-.972-.662-.931-1.737-1.487-2.877-1.487-1.14 0-2.215.555-2.877 1.486-.203.287-.417.618-.648.976-.639.99-1.706 2.648-2.475 2.648-3.256 0-5.681-2.139-6.328-5.581-.336-1.792.138-3.574 1.336-5.019 1.266-1.525 3.125-2.4 5.102-2.4h11.78c1.977 0 3.836.875 5.102 2.4 1.197 1.445 1.672 3.228 1.335 5.02z"/><path fill="#BBDDF5" d="M12.495 9.505l-8.977 8.977c.436 1.29 1.091 2.313 1.996 3.004L17.495 9.505h-5z"/><path fill="#3C96CE" d="M15 15c-1.837 0-3.674 4.215-5.511 7.227.827-.557 1.732-1.831 2.286-2.692.209-.325.405-.627.589-.888.527-.741 1.515-1.277 2.635-1.277 1.315 0 2.352.719 2.879 1.461.184.258.38.561.589.885.561.871 1.127 2.044 2.058 2.537C18.685 19.24 16.842 15 15 15z"/><path fill="#F4900C" d="M26 36c-3.557 0-6.874-1.914-8.659-4.995-.553-.956-.227-2.179.729-2.732.958-.554 2.18-.228 2.733.729C21.874 30.851 23.865 32 26 32c3.309 0 6-2.691 6-6V2c0-1.104.896-2 2-2s2 .896 2 2v24c0 5.514-4.486 10-10 10z"/><path fill="#292F33" d="M21.586 30.146l-3.732 1.44c-1.026.396-2.19-.12-2.586-1.146-.396-1.026.12-2.19 1.146-2.586l3.732-1.44c1.026-.396 2.19.12 2.586 1.146.396 1.027-.12 2.19-1.146 2.586z"/><path fill="#FFCC4D" d="M32 5h4v4h-4zm0 7h4v4h-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F18F26" d="M0 18h36v9H0z"/><ellipse fill="#F18F26" cx="18" cy="26" rx="18" ry="9"/><ellipse fill="#F18F26" cx="18" cy="27" rx="18" ry="9"/><path fill="#9D0522" d="M0 10v16h.117c.996 4.499 8.619 8 17.883 8s16.887-3.501 17.883-8H36V10H0z"/><ellipse fill="#F18F26" cx="18" cy="11" rx="18" ry="9"/><ellipse fill="#F18F26" cx="18" cy="12" rx="18" ry="9"/><path fill="#F18F26" d="M0 10h1v2H0zm35 0h1v2h-1z"/><ellipse fill="#FCAB40" cx="18" cy="10" rx="18" ry="9"/><ellipse fill="#F5F8FA" cx="18" cy="10" rx="17" ry="8"/><path fill="#FDD888" d="M18 3c9.03 0 16.395 3.316 16.946 7.5.022-.166.054-.331.054-.5 0-4.418-7.611-8-17-8S1 5.582 1 10c0 .169.032.334.054.5C1.605 6.316 8.97 3 18 3z"/><path d="M28.601 2.599c.44-.33.53-.96.2-1.4l-.6-.8c-.33-.44-.96-.53-1.4-.2L14.157 10.243c-.774-.167-1.785.083-2.673.749-1.326.994-1.863 2.516-1.2 3.4s2.275.794 3.6-.2c.835-.626 1.355-1.461 1.462-2.215l13.255-9.378zm5.868 2.919l-.509-.861c-.28-.474-.896-.632-1.37-.352l-13.913 8.751c-.719-.141-1.626.023-2.472.524-1.426.843-2.127 2.297-1.565 3.248.562.951 2.174 1.039 3.6.196 1.005-.594 1.638-1.49 1.735-2.301l14.142-7.835c.474-.281.632-.897.352-1.37z" fill="#AA695B"/><path fill="#DA2F47" d="M2 28c-.55 0-1-.45-1-1v-9c0-.55.45-1 1-1s1 .45 1 1v9c0 .55-.45 1-1 1zm9 4c-.55 0-1-.45-1-1v-9c0-.55.45-1 1-1s1 .45 1 1v9c0 .55-.45 1-1 1zm12 0c-.55 0-1-.45-1-1v-9c0-.55.45-1 1-1s1 .45 1 1v9c0 .55-.45 1-1 1zm11-4c-.55 0-1-.45-1-1v-9c0-.55.45-1 1-1s1 .45 1 1v9c0 .55-.45 1-1 1z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#C1694F" d="M4 21c2.409 0 2 2 2 3s0 3 2 3 3.464-2.465 7-6L36 0v7S22.5 21.5 18 26s-7 7-10 7c-3.513 0-7-2.605-7-7 0-4 2-5 3-5z"/><circle fill="#DD2E44" cx="26.5" cy="29.5" r="6.5"/><path fill="#FFAC33" d="M25.01 18.712C30.254 13.171 36 7 36 7V0L25.01 10.99v7.722zM22 21.878l1-1.049V13l-1 1v7.878z"/></svg>

After

Width:  |  Height:  |  Size: 375 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M18 8l-7-8H0l14 17 11.521-4.75z"/><path fill="#3B88C3" d="M25 0l-7 8 5.39 7.312 1.227-1.489L36 0z"/><path fill="#FFAC33" d="M23.205 16.026c.08-.217.131-.448.131-.693 0-1.104-.896-2-2-2h-6.667c-1.105 0-2 .896-2 2 0 .245.05.476.131.693-3.258 1.826-5.464 5.307-5.464 9.307C7.335 31.224 12.111 36 18.002 36s10.667-4.776 10.667-10.667c0-4-2.206-7.481-5.464-9.307z"/><path fill="#9E5200" d="M19.404 18.6h-1.721l-2.73 2.132c-.056.056-.112.206-.112.28v1.178c0 .186.15.354.337.354h1.795v8.414c0 .188.15.355.355.355h2.076c.186 0 .336-.168.336-.355V18.954c0-.186-.149-.354-.336-.354z"/></svg>

After

Width:  |  Height:  |  Size: 665 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M8 16c-.552 0-1-.448-1-1V4c0-.552.448-1 1-1s1 .448 1 1v11c0 .552-.448 1-1 1z"/><path fill="#3B88C3" d="M2 33c0-2.236 4-6 7-6v5c-1 0-4 1-5 2s-2 0-2-1zm14 0c0-2.236-4-6-7-6v5c1 0 4 1 5 2s2 0 2-1z"/><path fill="#3B88C3" d="M15 14c2 0 4 1 4 2 0 3-3.167 11.542-8.167 12.542S15 14 15 14zM3 20c-1 1-2 3-2 5s2.75-2.042 4-1c1.718 1.432-2-4-2-4z"/><path d="M5.583 12.25c1.5.5 2.583.125 3.667-.75s1.25 2.542-.25 3.667-4.125 3.75-4.083 1.417c.041-2.334.666-4.334.666-4.334z"/><path fill="#55ACEE" d="M9.023 11.001c-.574.63-1.856 2.332-2.481 4.415-.875.5-.833-1.208-.708-1.75.225-.975.506-.977.346-1.521-.21-.551-.789-.364-1.119-.159C3.348 12.97 2 14.8 2 18c0 5.522 5 13 7 13s7-7.478 7-13c0-5.509-3.979-6.992-6.977-6.999z"/><circle cx="11.5" cy="15.5" r="1.5"/><path fill="#269" d="M8.954 22.827c-1.504 0-2.829-.538-4-1.149-.49-.256-.679-.86-.423-1.35.255-.488.859-.68 1.349-.424 1.891.988 3.59 1.385 5.735.11.475-.281 1.088-.124 1.37.35.282.476.125 1.089-.35 1.371-1.334.792-2.558 1.092-3.681 1.092z"/><path fill="#662113" d="M29.834 35.25c-.494-.247-1.042-.958-.729-1.697 1.334-3.146 4.278-16.9 1.604-24.761-.501-1.472-2.118-3.659-4.08-4.863C20.292.042 10.823 2.171 9.5 2.833c-.495.248-2.044.744-2.292.25-.247-.494.589-1.003 1.083-1.25 1.756-.877 11.264-3.878 19.667.791 1.5.833 3.59 2.376 4.703 5.303 3.257 8.567 1.047 23.416-.787 26.822-.582 1.084-1.896.572-2.04.501z"/><circle fill="#99AAB5" cx="28" cy="25" r="4"/><circle fill="#66757F" cx="28" cy="25" r="2"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFCC4D" d="m29.346.937 4.95 4.95L6.012 34.17l-4.95-4.95z"/><circle cx="4.5" cy="30.75" r="3.5" fill="#C1694F"/><circle cx="3.5" cy="31.75" r="3.5" fill="#FFCC4D"/><circle cx="3.5" cy="31.75" r="2" fill="#292F33"/><circle cx="31.75" cy="3.5" r="3.5" fill="#FFCC4D"/><circle cx="25.75" cy="9.5" r="3.5" fill="#C1694F"/><circle cx="24.75" cy="10.5" r="3.5" fill="#FFCC4D"/><circle cx="7.95" cy="26.15" r="1.25" fill="#C1694F"/><circle cx="8.2" cy="26.4" r="1" fill="#292F33"/><circle cx="10.95" cy="23.15" r="1.25" fill="#C1694F"/><circle cx="11.2" cy="23.4" r="1" fill="#292F33"/><circle cx="13.95" cy="20.15" r="1.25" fill="#C1694F"/><circle cx="14.2" cy="20.4" r="1" fill="#292F33"/><circle cx="16.95" cy="17.15" r="1.25" fill="#C1694F"/><circle cx="17.2" cy="17.4" r="1" fill="#292F33"/><circle cx="19.95" cy="14.15" r="1.25" fill="#C1694F"/><circle cx="20.2" cy="14.4" r="1" fill="#292F33"/><circle cx="22.95" cy="11.15" r="1.25" fill="#C1694F"/><circle cx="23.2" cy="11.4" r="1" fill="#292F33"/><circle cx="29.95" cy="4.15" r="1.25" fill="#C1694F"/><circle cx="30.2" cy="4.4" r="1" fill="#292F33"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4900C" d="M35 21.526C35 26.758 27.389 31 18 31S1 26.758 1 21.526 7.625 11 18 11s17 5.294 17 10.526z"/><ellipse fill="#FFAC33" cx="18" cy="19.502" rx="16" ry="8.5"/><path fill="#FFD983" d="M18 11.331c-6.449 0-11.5 2.491-11.5 5.672 0 3.18 5.051 5.671 11.5 5.671 6.448 0 11.5-2.491 11.5-5.671 0-3.181-5.052-5.672-11.5-5.672z"/><ellipse fill="#FFAC33" cx="18" cy="18.002" rx="12" ry="6"/><path fill="#F4900C" d="M29 18.002c-1.81 3.118-7 4-11 4s-9.19-.882-11-4c-.75-1.292-1.5 1.083.5 3.083S14 24.402 18 24.402s8.5-1.317 10.5-3.317 1.25-4.374.5-3.083z"/><path fill="#E1E8ED" d="M35 1S24.497-.538 15.958 3C6.77 6.807 4 13 4 13c1.541-1.541 5.463-3.079 10.383-3.705 1.777-3.182 6.97-7.391 12.271-7.351 0 0-7.222 1.493-9.759 7.121C17.586 9.026 18.286 9 19 9c1.319 0 2.551.118 3.702.303.68-2.914 3.791-6.264 7.226-6.829 0 0-3.562 1.707-4.845 7.338C29.418 10.981 32 13 32 13c-4-8 3-12 3-12z"/></svg>

After

Width:  |  Height:  |  Size: 961 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#662113" d="M7.754 7.754C4.068 11.44 1.64 16.37.843 21.335l13.822 13.822c4.965-.797 9.895-3.225 13.581-6.911s6.114-8.616 6.911-13.581L21.335.843C16.37 1.64 11.44 4.068 7.754 7.754zm25.615-5.123C30.707 1.152 27.634.51 24.472.564l10.965 10.964c.053-3.162-.589-6.235-2.068-8.897zM2.631 33.369c2.662 1.479 5.736 2.121 8.898 2.067L.564 24.472c-.054 3.161.588 6.235 2.067 8.897z"/><path fill="#E1E8ED" d="M22.828 11.757l-2.414 2.414-.707-.707c-.391-.391-1.023-.391-1.414 0s-.391 1.024 0 1.414l.707.708L15.586 19l-.707-.707c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l.707.707-2.414 2.414-.707-.707c-.391-.391-1.023-.391-1.414 0s-.391 1.024 0 1.414l.707.707-1 1c-.391.392-.391 1.024 0 1.415s1.023.391 1.414 0l1-1 .707.707c.391.391 1.023.391 1.414 0 .391-.392.391-1.024 0-1.414l-.707-.707 2.414-2.414.707.707c.391.392 1.023.392 1.414 0 .391-.391.391-1.024 0-1.414L17 20.414 20.414 17l.707.707c.391.391 1.024.391 1.414 0 .391-.391.392-1.023 0-1.414l-.707-.707 2.414-2.414.707.707c.391.391 1.023.39 1.414 0 .391-.391.391-1.023 0-1.414l-.707-.707 1-1c.39-.391.39-1.023 0-1.414-.391-.391-1.024-.391-1.415 0l-1 1-.707-.707c-.39-.391-1.024-.391-1.414 0-.391.39-.391 1.023 0 1.414l.708.706zM.564 24.472l10.965 10.965c1.04-.018 2.088-.111 3.136-.279L.843 21.335c-.168 1.049-.261 2.096-.279 3.137zM24.472.564c-1.04.018-2.088.111-3.136.279l13.822 13.822c.168-1.049.261-2.096.279-3.136L24.472.564z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#A0041E" d="M4 11v.137c0-.042.011-.084.015-.126L4 11zm13 11.137c-.146-.067-.287-.145-.412-.246L4.565 12.245C4.188 11.94 4 11.539 4 11.137v12.238c0 2.042 1.093 2.484 1.093 2.484l11.574 9.099c.205.161.377.259.528.318-.114-.174-.195-.375-.195-.604V22.137zm-8.773.363c-.994 0-2.033-1.007-2.319-2.25-.287-1.242.287-2.249 1.28-2.249.994 0 2.033 1.007 2.319 2.249.287 1.243-.286 2.25-1.28 2.25zM13.81 30c-.994 0-2.033-1.008-2.319-2.25-.287-1.243.287-2.25 1.281-2.25s2.033 1.007 2.319 2.25c.286 1.242-.287 2.25-1.281 2.25z"/><path fill="#DD2E44" d="M31.435 12.161l-12.104 9.73c-.102.083-.214.152-.331.212v12.569c0 .233-.083.437-.2.614.155-.058.335-.16.548-.328 1.821-1.432 11.588-9.099 11.588-9.099S32 25.417 32 23.375V11.053c0 .402-.188.803-.565 1.108zm-7.457 16.731c-.242 1.137-1.119 2.058-1.958 2.058-.838 0-1.322-.921-1.08-2.058.242-1.137 1.118-2.058 1.957-2.058s1.322.921 1.081 2.058zm3.538-5.271c-.254 1.172-1.178 2.121-2.062 2.121-.883 0-1.392-.949-1.138-2.121.255-1.172 1.179-2.121 2.061-2.121.885 0 1.394.949 1.139 2.121zm3.063-5.105c-.251 1.115-1.163 2.017-2.035 2.017-.872 0-1.375-.902-1.123-2.017.251-1.113 1.162-2.016 2.034-2.016.873 0 1.376.903 1.124 2.016zm1.415-7.511c.001.016.006.032.006.048V11l-.006.005z"/><path fill="#EA596E" d="M31.435 9.945L19.289.5c-.753-.61-1.988-.61-2.742 0L4.565 10.029c-.338.273-.515.624-.551.983-.003.042-.014.083-.014.125 0 .402.188.803.565 1.108l12.023 9.646c.125.101.265.178.412.246v12.535c0 .229.081.43.194.604.181.28.466.474.806.474.336 0 .619-.19.8-.464.117-.176.2-.38.2-.614V22.103c.117-.06.229-.129.331-.212l12.104-9.73c.377-.305.565-.706.565-1.108 0-.016-.005-.032-.006-.049-.014-.385-.198-.767-.559-1.059zM18.5 8.667c1.61 0 2.916 1.044 2.916 2.333 0 1.289-1.306 2.333-2.916 2.333-1.611 0-2.916-1.044-2.916-2.333 0-1.289 1.305-2.333 2.916-2.333z"/><ellipse fill="#FFF" cx="18.5" cy="11" rx="2.916" ry="2.333"/><path fill="#FFF" d="M29.455 16.5c-.872 0-1.783.903-2.034 2.016-.252 1.115.251 2.017 1.123 2.017s1.784-.902 2.035-2.017c.252-1.113-.251-2.016-1.124-2.016zm-3.077 5c-.883 0-1.807.949-2.061 2.121-.254 1.172.255 2.121 1.138 2.121.884 0 1.808-.949 2.062-2.121.254-1.172-.255-2.121-1.139-2.121zm-3.482 5.334c-.839 0-1.715.921-1.957 2.058-.242 1.137.242 2.058 1.08 2.058.839 0 1.716-.921 1.958-2.058.242-1.137-.242-2.058-1.081-2.058z"/><path fill="#E1E8ED" d="M7.188 18.001c-.994 0-1.567 1.007-1.28 2.249.287 1.243 1.325 2.25 2.319 2.25s1.567-1.007 1.28-2.25c-.286-1.242-1.325-2.249-2.319-2.249zm5.583 7.499c-.994 0-1.567 1.007-1.281 2.25.287 1.242 1.326 2.25 2.32 2.25.994 0 1.567-1.008 1.281-2.25-.287-1.243-1.326-2.25-2.32-2.25z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#CCD6DD" d="M33.553 17.894c.143.072.296.106.446.106.367 0 .72-.202.896-.553.247-.494.047-1.095-.447-1.342L32 14.881v-1.764l1.553.776c.143.073.296.107.446.107.367 0 .72-.202.896-.553.247-.494.047-1.095-.447-1.342L32 10.881V7c0-.552-.447-1-1-1s-1 .448-1 1v2.881l-1.553-.776C28.133 8.948 27.187 9 27 9h-2V6c0-.552-.447-1-1-1s-1 .448-1 1v3h-2V6c0-.552-.447-1-1-1s-1 .448-1 1v3h-2V6c0-.552-.448-1-1-1s-1 .448-1 1v3h-2V6.028c0-.552-.448-1-1-1s-1 .448-1 1V9H9c-.187 0-1.132-.051-1.447.106L6 9.882V7c0-.552-.448-1-1-1s-1 .448-1 1v3.882l-2.447 1.224c-.494.247-.694.848-.447 1.342.175.35.528.552.895.552.15 0 .303-.034.446-.105L4 13.118v1.764l-2.447 1.224c-.494.247-.694.848-.447 1.342.175.35.528.552.895.552.15 0 .303-.034.446-.105L4 17.118v1.764l-2.447 1.224c-.494.247-.694.848-.447 1.342.175.35.528.552.895.552.15 0 .303-.034.446-.105L4 21.118v1.764l-2.447 1.224c-.494.247-.694.848-.447 1.342.175.35.528.552.895.552.15 0 .303-.034.446-.105L4 25.118v1.764l-2.447 1.224c-.494.247-.694.848-.447 1.342.175.35.528.552.895.552.15 0 .303-.034.446-.105L4 29.118V30c0 .553.448 1 1 1s1-.447 1-1v-1.882L8.236 27H11v1.865c0 .553.448 1 1 1s1-.447 1-1V27h2v2c0 .553.448 1 1 1s1-.447 1-1v-2h2v2.146c0 .553.447 1 1 1s1-.447 1-1V27h2v2.146c0 .553.447 1 1 1s1-.447 1-1V27h2.765L30 28.117V30c0 .553.447 1 1 1s1-.447 1-1v-.883l1.553.776c.144.071.296.105.446.105.367 0 .72-.202.896-.553.247-.494.047-1.095-.447-1.342L32 26.881v-1.764l1.553.776c.144.071.296.105.446.105.367 0 .72-.202.896-.553.247-.494.047-1.095-.447-1.342L32 22.881v-1.764l1.553.776c.144.071.296.105.446.105.367 0 .721-.202.896-.553.247-.494.047-1.095-.447-1.342L32 18.881v-1.763l1.553.776zM11 25H9c-.187 0-1.132-.051-1.447.106L6 25.882v-1.764L8.236 23H11v2zm0-4H9c-.187 0-1.132-.051-1.447.106L6 21.882v-1.764L8.236 19H11v2zm0-4H9c-.187 0-1.132-.052-1.447.106L6 17.882v-1.764L8.236 15H11v2zm0-4H9c-.187 0-1.132-.052-1.447.106L6 13.882v-1.764L8.236 11H11v2zm4 11.999h-2v-2h2v2zM15 21h-2v-2h2v2zm0-4.001h-2v-2h2v2zm0-4h-2v-2h2v2zm4 12h-2v-2h2v2zM19 21h-2v-2h2v2zm0-4.001h-2v-2h2v2zm0-4h-2v-2h2v2zm4 12h-2v-2h2v2zM23 21h-2v-2h2v2zm0-4.001h-2v-2h2v2zm0-4h-2v-2h2v2zm7 12.882l-1.553-.776C28.133 24.949 27.187 25 27 25h-2v-2h2.765L30 24.117v1.764zm0-4l-1.553-.776C28.133 20.948 27.187 21 27 21h-2v-2h2.764L30 20.117v1.764zm0-4l-1.553-.776C28.133 16.948 27.187 17 27 17h-2v-2h2.764L30 16.118v1.763zm0-4l-1.553-.776C28.133 12.948 27.187 13 27 13h-2v-2h2.764L30 12.118v1.763z"/><path fill="#8C989F" d="M1.999 34c-.191 0-.383-.055-.554-.168-.459-.307-.583-.928-.277-1.387 1.465-2.194 3.785-3.446 6.379-3.446l.114.001h20.691c2.604-.06 4.994 1.218 6.479 3.444.307.459.183 1.08-.277 1.387-.459.305-1.08.182-1.387-.277-1.117-1.675-2.784-2.612-4.802-2.554H7.647c-1.99-.014-3.697.879-4.815 2.555-.193.289-.51.445-.833.445z"/><path fill="#8C989F" d="M28 30c-.553 0-1-.447-1-1V6.324c0-.552.447-1 1-1s1 .448 1 1V29c0 .553-.447 1-1 1zm-20-.135c-.552 0-1-.447-1-1V6.028c0-.552.448-1 1-1s1 .448 1 1v22.837c0 .553-.448 1-1 1z"/><path fill="#BE2032" d="M34 34.25c-.69 0-1.25-.56-1.25-1.25V12c0-2.619-2.131-4.75-4.75-4.75H8c-2.619 0-4.75 2.131-4.75 4.75v21c0 .69-.56 1.25-1.25 1.25S.75 33.69.75 33V12C.75 8.002 4.002 4.75 8 4.75h20c3.998 0 7.25 3.252 7.25 7.25v21c0 .69-.56 1.25-1.25 1.25z"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M4 36h28c2 0 3.731-2 3.731-4 0-4.355-4.634-11-17.731-11C4.508 21 .193 27.459.193 32 .193 34 2 36 4 36z"/><path fill="#5C913B" d="M11.292 29.5s.958.667 1.958.667c2.208-4.875 13-7.5 14-7.5.15 0 .33-.018.512-.047-.716-.28-1.502-.521-2.33-.737-4.626.063-13.031 3.917-14.14 7.617z"/><ellipse fill="#292F33" cx="12.5" cy="30.5" rx="6.5" ry="2.5"/><path fill="#FFAC33" d="M10 4v26c0 .553.448.844 1 .844s1-.291 1-.844V4h-2z"/><path fill="#DD2E44" d="M10 3C10 .8 11.695-.395 13.767.345l9.466 3.381c2.071.74 2.071 1.951 0 2.69l-9.466 3.381C11.695 10.538 10 9.343 10 7.143V3z"/></svg>

After

Width:  |  Height:  |  Size: 657 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#BB1A34" d="M21.828 20.559C19.707 21.266 19 17.731 19 17.731s.965-.968.235-1.829c1.138-1.137.473-1.707.473-1.707-1.954-1.953-5.119-1.953-7.071 0-.246.246-.414.467-.553.678-.061.086-.115.174-.17.262l-.014.027c-.285.475-.491.982-.605 1.509-.156.319-.379.659-.779 1.06-1.414 1.414-4.949-.707-7.778 2.121-.029.029-.045.069-.069.104-.094.084-.193.158-.284.25-3.319 3.319-3.003 9.018.708 12.728 3.524 3.525 8.84 3.979 12.209 1.17.058-.031.117-.061.165-.109.071-.072.126-.14.193-.21.053-.049.109-.093.161-.143 1.693-1.694 2.342-3.73 2.086-5.811-.068-.99-.165-1.766.39-2.321.707-.707 2.828 0 4.242-1.414 2.117-2.122.631-3.983-.711-3.537z"/><path fill="#292F33" d="M14.987 18.91L30.326 3.572l2.121 2.122-15.339 15.339z"/><path fill="#F5F8FA" d="M10.001 29.134c1.782 1.277 1.959 3.473 1.859 4.751-.042.528.519.898.979.637 2.563-1.456 4.602-3.789 4.038-7.853-.111-.735.111-2.117 2.272-2.406 2.161-.29 2.941-1.099 3.208-1.485.153-.221.29-.832-.312-.854-.601-.022-2.094.446-3.431-1.136-1.337-1.582-1.559-2.228-1.604-2.473-.045-.245-1.409-3.694-2.525-1.864-.927 1.521-1.958 4.509-5.287 5.287-1.355.316-3.069 1.005-3.564 1.96-.832 1.604.46 2.725 1.574 3.483 1.115.757 2.793 1.953 2.793 1.953z"/><path fill="#292F33" d="M13.072 19.412l1.414-1.415 3.536 3.535-1.414 1.414zm-4.475 4.474l1.415-1.414 3.535 3.535-1.414 1.414z"/><path fill="#CCD6DD" d="M7.396 27.189L29.198 5.427l.53.531L7.927 27.72zm.869.868L30.067 6.296l.53.531L8.796 28.59z"/><path fill="#292F33" d="M9.815 28.325c.389.389.389 1.025 0 1.414s-1.025.389-1.414 0l-2.122-2.121c-.389-.389-.389-1.025 0-1.414h.001c.389-.389 1.025-.389 1.414 0l2.121 2.121z"/><circle fill="#292F33" cx="13.028" cy="29.556" r="1"/><path fill="#292F33" d="M14.445 31.881c0 .379-.307.686-.686.686-.379 0-.686-.307-.686-.686 0-.379.307-.686.686-.686.379 0 .686.307.686.686z"/><path fill="#BB1A34" d="M35.088 4.54c.415.415.415 1.095-.001 1.51l-4.362 3.02c-.416.415-1.095.415-1.51 0L26.95 6.804c-.415-.415-.415-1.095.001-1.51l3.02-4.361c.416-.415 1.095-.415 1.51 0l3.607 3.607z"/><circle fill="#66757F" cx="32.123" cy="9.402" r=".625"/><circle fill="#66757F" cx="33.381" cy="8.557" r=".625"/><circle fill="#66757F" cx="34.64" cy="7.712" r=".625"/><circle fill="#66757F" cx="26.712" cy="3.811" r=".625"/><circle fill="#66757F" cx="27.555" cy="2.571" r=".625"/><circle fill="#66757F" cx="28.398" cy="1.332" r=".625"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M18 0C9.716 0 3 6.716 3 15v9h3v-9C6 8 11.269 2.812 18 2.812 24.73 2.812 30 8 30 15v10l3-1v-9c0-8.284-6.716-15-15-15z"/><path fill="#31373D" d="M6 27c0 1.104-.896 2-2 2H2c-1.104 0-2-.896-2-2v-9c0-1.104.896-2 2-2h2c1.104 0 2 .896 2 2v9zm30 0c0 1.104-.896 2-2 2h-2c-1.104 0-2-.896-2-2v-9c0-1.104.896-2 2-2h2c1.104 0 2 .896 2 2v9z"/><path fill="#55ACEE" d="M19.182 10.016l-6.364 1.313c-.45.093-.818.544-.818 1.004v16.185c-.638-.227-1.341-.36-2.087-.36-2.785 0-5.042 1.755-5.042 3.922 0 2.165 2.258 3.827 5.042 3.827C12.649 35.905 14.922 34 15 32V16.39l4.204-.872c.449-.093.796-.545.796-1.004v-3.832c0-.458-.368-.759-.818-.666zm8 3.151l-4.297.865c-.45.093-.885.544-.885 1.003V26.44c0-.152-.878-.24-1.4-.24-2.024 0-3.633 1.276-3.633 2.852 0 1.574 1.658 2.851 3.683 2.851s3.677-1.277 3.677-2.851l-.014-11.286 2.869-.598c.45-.093.818-.544.818-1.003v-2.33c0-.459-.368-.76-.818-.668z"/></svg>

After

Width:  |  Height:  |  Size: 966 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F4900C" d="M36 3c-1 1.295-3.027 3.803-4.391 5.671-3.816 5.225-7.156 6.454-10.328 7.632-3.172 1.178-10.407 1.029-13.88.854-3.473-.175-5.735-.579-6.42.415-2.102 3.053-.612 6.481 2.426 6.949 2.378.366 9.544-.32 12.899-.616 3.356-.297 7.024-1.301 8.283-1.785 1.259-.483 2.279-.88 2.597-1.644.318-.765 1.876-2.817 3.783-5.917C32.045 12.811 35 9.55 36 8V3z"/><path fill="#31373D" d="M7 24.591c3-.114 7.055-.487 9.309-.686 2.289-.202 4.704-.732 6.419-1.203l-.424-6.784c-.344.132-.686.259-1.024.385-3.172 1.178-10.405 1.029-13.877.854-.141-.008-.403-.017-.403-.025v7.459zM17 28v4c0 1.104 3.135 2 7 2 3.866 0 7-.896 7-2v-4H17z"/><ellipse fill="#66757F" cx="23.996" cy="28" rx="7" ry="2"/></svg>

After

Width:  |  Height:  |  Size: 758 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#99AAB5" d="M26 33c2 2-11 2-9 0 3 0 3-3 3-3h3s0 3 3 3zm-14 0c2 2-11 2-9 0 3 0 3-3 3-3h3s0 3 3 3z"/><path fill="#99AAB5" d="M30 36H2c-1.104 0-2.104-3-1-3h28c3 0 3-3 4-4 5 3 2 7-3 7z"/><path fill="#E6E7E8" d="M1 28c0-9 2-14 2-21 0-2.279 13-2 13 0s-1.5 10 5 13c6.268 2.893 15 2 15 8H1z"/><path fill="#E6E7E8" d="M36 28c-24 0-19.001-1-25-1H1v1c0 1.104.896 2 2 2h8c2.333 0 .398-2.041 3-1 5 2 20 1 20 1 1.104 0 2-.896 2-2z"/><path fill="#DD2E44" d="M16.312 20.75c-.25 0-.5-.093-.694-.28-.398-.383-.409-1.017-.025-1.414l1.688-1.75c.384-.396 1.017-.408 1.414-.025.398.383.409 1.016.025 1.414l-1.688 1.75c-.196.202-.458.305-.72.305zM19.999 23c-.15 0-.303-.034-.446-.105-.494-.247-.694-.848-.447-1.342l1-2c.248-.494.848-.692 1.342-.447.494.247.694.848.447 1.342l-1 2c-.176.35-.529.552-.896.552zm4.002 1c-.047 0-.095-.003-.143-.01-.547-.079-.927-.585-.849-1.132l.209-1.458c.079-.547.587-.923 1.132-.849.547.079.927.585.849 1.132l-.209 1.458c-.072.5-.5.859-.989.859z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#78B159" d="M26.093 4.612c-.498.498-.629.839-.728 1.029-.66 1.266-1.455 1.676-2.78.351-.13-.13-4.087-4.267-4.741-5.017-.427-.49-1.081-.64-1.584-.262-.38.286-4.035 3.273-5.035 4.507-.774.955-.8 2.134-.079 2.856.326.326.727.449 1.151.578.552.169 1.763.068 2.47.775 1.133 1.133.54 2.924-.917 4.421-1.497 1.457-3.288 2.05-4.421.917-.708-.708-.606-1.918-.775-2.47-.129-.424-.252-.824-.578-1.151-.721-.721-1.9-.694-2.856.079-1.235 1-4.221 4.655-4.507 5.035-.379.503-.228 1.156.262 1.584.75.654 4.887 4.611 5.017 4.741 1.324 1.324.915 2.12-.351 2.78-.19.099-.53.229-1.029.728-1.462 1.462-1.462 3.833 0 5.295 1.462 1.462 3.833 1.462 5.295 0 .498-.498.629-.839.728-1.029.66-1.266 1.455-1.676 2.78-.351.13.13 4.087 4.267 4.741 5.017.427.49 1.081.64 1.584.262.38-.286 4.035-3.273 5.035-4.507.774-.955.8-2.134.079-2.856-.326-.326-.727-.449-1.151-.578-.552-.169-1.763-.068-2.47-.775-1.133-1.133-.54-2.924.917-4.421 1.497-1.457 3.288-2.05 4.421-.917.708.708.606 1.918.775 2.47.129.424.252.824.578 1.151.721.721 1.9.694 2.856-.079 1.235-1 4.221-4.655 4.507-5.035.379-.503.228-1.156-.262-1.584-.75-.654-4.887-4.611-5.017-4.741-1.324-1.324-.915-2.12.351-2.78.19-.099.53-.229 1.029-.728 1.462-1.462 1.462-3.833 0-5.295-1.462-1.463-3.833-1.463-5.295 0z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#55ACEE" d="M22.45 32.289L.592 18.752 6.55.711l18.042 5.958z"/><path fill="#269" d="M20.543 29.5c-.366 0-.719-.201-.895-.551L6.929 3.687c-.249-.493-.05-1.095.443-1.343.494-.249 1.095-.05 1.343.443l12.72 25.264c.248.493.05 1.094-.444 1.343-.143.072-.297.106-.448.106z"/><path fill="#269" d="M3.12 18.48c-.366 0-.718-.201-.894-.55-.249-.493-.05-1.095.443-1.343l18.947-9.54c.49-.25 1.094-.05 1.343.443.248.493.05 1.095-.443 1.343l-18.947 9.54c-.145.073-.298.107-.449.107z"/><path fill="#3B88C3" d="M27.367 35.339c-2.44 0-4.521-1.268-6.199-3.784-.307-.459-.183-1.08.277-1.387.458-.307 1.079-.183 1.387.277 1.564 2.343 3.359 3.228 5.644 2.781.945-.184 1.793-.98 2.27-2.132.701-1.693.47-3.668-.62-5.282-2.006-2.971-2.777-6.787-2.063-10.21.615-2.956 2.24-5.344 4.698-6.905.466-.295 1.084-.158 1.38.308.297.466.158 1.084-.308 1.38-2.516 1.598-3.462 3.941-3.813 5.625-.604 2.905.055 6.151 1.765 8.683 1.466 2.172 1.769 4.851.811 7.167-.734 1.772-2.131 3.018-3.736 3.329-.513.1-1.009.15-1.493.15z"/><path d="M31.532 30.992c-.781-2.485-2.807-4.482-4.157-2.075-1.342 2.392 1.04 3.456 3.717 2.74.781 2.485 2.807 4.482 4.157 2.075 1.342-2.392-1.039-3.456-3.717-2.74zm-1.425-7.039c2.377 1.066 5.215.876 4.311-1.731-.898-2.592-3.275-1.517-4.517.961-2.377-1.066-5.215-.876-4.311 1.731.898 2.592 3.275 1.517 4.517-.961zm-1.261-6.597c1.355 2.225 3.802 3.676 4.534 1.015.727-2.645-1.84-3.105-4.267-1.766-1.355-2.224-3.802-3.676-4.534-1.015-.728 2.645 1.84 3.105 4.267 1.766zm2.897-6.557c-.132 2.602 1.074 5.178 3.177 3.39 2.089-1.777.226-3.602-2.534-3.861.132-2.602-1.074-5.178-3.177-3.39-2.089 1.777-.225 3.602 2.534 3.861z" fill="#9266CC"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#B52E04" d="M12.691 34.484l.008.008 4.59-10.124-5.657-5.657-10.124 4.59.008.008c-.179.097-.347.208-.491.352-1.562 1.562-.296 5.361 2.828 8.485s6.923 4.391 8.485 2.828c.145-.143.256-.311.353-.49z"/><path fill="#662113" d="M9.376 17.519c.545-1.059 3.556.521 6.07 3.035s4.047 5.549 3.035 6.07c-1.054.542-3.556-.521-6.07-3.035s-3.578-5.016-3.035-6.07z"/><path fill="#662113" d="M9.864 18.15c-.078 0-.157-.018-.231-.057-.245-.128-.339-.43-.212-.675l8.485-16.263c.128-.245.429-.34.675-.212.245.128.339.43.212.675l-8.485 16.263c-.09.172-.264.269-.444.269zm8.486 8.486c-.18 0-.354-.098-.444-.269-.127-.245-.033-.547.212-.675l16.264-8.485c.245-.128.547-.033.675.212s.033.547-.212.675l-16.264 8.485c-.074.038-.153.057-.231.057z"/><path fill="#C1694F" d="M10.218 17.297c.531-1.04 3.314.485 5.657 2.828s3.729 5.197 2.828 5.657c-.984.502-3.314-.485-5.657-2.828s-3.33-4.673-2.828-5.657z"/><path fill="#C1694F" d="M18.34 1.377L34.623 17.66l-15.92 8.122-8.485-8.485z"/><path fill="#662113" d="M34.021 18.262c-1.928 1.928-7.344-1.494-11.066-5.216S15.811 3.908 17.739 1.98c2.715-2.715 7.219.099 11.701 4.581s7.296 8.986 4.581 11.701z"/><path fill="#BE1931" d="M34.691 17.592c-1.806 1.806-6.616-.673-11.113-5.17s-6.975-9.307-5.17-11.113c2.543-2.543 6.993.324 11.476 4.807s7.35 8.933 4.807 11.476z"/><ellipse transform="rotate(-45.001 26.835 9.166)" fill="#662113" cx="26.835" cy="9.165" rx="4" ry="11.5"/><path fill="#D99E82" d="M24.89 11.11c4.114 4.114 8.502 6.508 10.337 5.758 1.471-2.612-1.258-6.666-5.344-10.751C25.798 2.032 21.744-.697 19.132.773c-.75 1.835 1.645 6.223 5.758 10.337z"/><ellipse transform="rotate(-45.001 27.896 8.105)" fill="#FFE8B6" cx="27.896" cy="8.104" rx="3" ry="10.5"/><path fill="#662113" d="M13.046 23.454c-.128 0-.256-.049-.354-.146-.195-.195-.195-.512 0-.707l11.314-11.314c.195-.195.512-.195.707 0s.195.512 0 .707L13.4 23.308c-.098.097-.226.146-.354.146zm-1.556-1.556c-.1 0-.2-.029-.288-.092-.226-.159-.279-.472-.12-.697l9.545-13.505c.161-.226.474-.277.697-.12.225.159.278.471.119.697l-9.545 13.506c-.096.138-.251.211-.408.211zm3.113 3.112c-.157 0-.312-.073-.409-.211-.16-.226-.106-.538.12-.697l13.505-9.546c.225-.158.537-.107.697.12.159.226.105.538-.119.697l-13.506 9.546c-.088.061-.189.091-.288.091zm-4.244-4.95c-.083 0-.167-.021-.244-.063-.241-.136-.327-.44-.191-.681l8.485-15.132c.135-.242.44-.327.68-.191.241.135.327.44.192.681l-8.486 15.131c-.091.163-.261.255-.436.255zm6.082 6.081c-.175 0-.345-.092-.437-.256-.135-.24-.049-.545.191-.681l15.132-8.485c.239-.135.545-.05.681.191.135.241.049.546-.192.681l-15.131 8.486c-.078.043-.162.064-.244.064z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#FFDC5D" d="M10 5c-1 1 0 2 0 3s2 0 2 0 1-1 2 1 4 1 3-1-4-1-4-3-3 0-3 0z"/><path fill="#FFAC33" d="M15 3c0 1 0 4-1 4s-1-1-2-2 3-2 3-2z"/><path fill="#F9CA55" d="M19 16s-3 2-3 3 4 4 5 5 3 1 2-1-4-7-4-7z"/><path fill="#2A6797" d="M20.634 23.021s1.173.789 1.962-.385c.789-1.174 1.365 1.771 1.365 1.771s-2.559 2.539-4.521 2.924c-1.962.385-1.173-.789-.385-1.962l1.579-2.348z"/><path fill="#292F33" d="M7 22c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5 5 2.238 5 5-2.238 5-5 5zm22-12c-3.865 0-7 3.134-7 7s3.135 7 7 7c3.867 0 7-3.134 7-7s-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5c2.762 0 5 2.238 5 5s-2.238 5-5 5z"/><g fill="#AAB8C2"><path d="M22 20c0-.553-.484-1-1.083-1H10.083C9.485 19 9 19.447 9 20c0 .553.485 1 1.083 1h10.833c.6 0 1.084-.447 1.084-1zm8 9c0-.553-.447-1-1-1H18c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11c.553 0 1-.447 1-1z"/><path d="M21.224 17l-4.166 11.664c-.185.519.086 1.092.606 1.277.111.04.224.059.336.059.411 0 .796-.255.942-.664L23.348 17h-2.124z"/><path d="M29.001 30c-.33 0-.654-.164-.845-.463l-7-11c-.297-.466-.159-1.084.307-1.381.467-.297 1.084-.159 1.381.307l7 11c.297.466.159 1.084-.307 1.381-.167.105-.352.156-.536.156zM19 25.734l-8.387-6.524c-.435-.34-1.063-.26-1.403.176-.339.437-.26 1.064.176 1.403l9 7c.182.143.398.211.613.211H19v-2.266z"/><path d="M7 30c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265l2.772-8.316-3.423-2.568c-.442-.331-.531-.958-.2-1.4.331-.44.957-.531 1.4-.2l4.577 3.433-3.228 9.684c-.141.419-.532.684-.95.684z"/></g><path fill="#292F33" d="M26.383 19c-.03 0-.059-.002-.089-.006l-5.672-.708c-.372-.046-.644-.374-.62-.748.023-.374.333-.665.707-.665.041 0 4.067-.018 5.989-1.299.25-.167.582-.157.824.026.239.185.337.501.241.788l-.709 2.127c-.096.293-.369.485-.671.485zM11 18H6c-.552 0-1-.448-1-1s.448-1 1-1h5c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#2A6797" d="M21.999 13L18 16l3 3z"/><path fill="#FFDC5D" d="M19.999 17s-2 3-2 4 1 4 1 7 2 3 2 2 1.581-5.419 0-7c-1-1 2-4 2-4l-3-2zm-4.314-3.703l-2.75-.784c-.447 1.956-3.023 4.486-3.935 4.486-1 0-2 0-2 1s0 1 2 1 4-2 5-3c.65-.65 1.309-1.757 1.685-2.702z"/><path fill="#357BAA" d="M21.999 13l-3 4 4 3s5-5 5-7-3-3-3-3l-3 3z"/><path fill="#4289C1" d="M20.999 6.999c-3-1-5.585-.414-7 1-1 1-1 2-1 4 0 .176-.03.362-.073.55l2.744.784c.202-.509.33-.984.33-1.334 0-1 1-1 2 0s2 2 3 2 6-4 6-4c-3.001-1-4.103-2.368-6.001-3zM19 29s1 1 2 0 1 2 1 2-3 2-5 2-1-1 0-2l2-2zM11 2c2-1 6 0 4 2-1 1-7 2-7 2 0-1 1-3 3-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F7DECE" d="M10 5c-1 1 0 2 0 3s2 0 2 0 1-1 2 1 4 1 3-1-4-1-4-3-3 0-3 0z"/><path fill="#292F33" d="M15 3c0 1 0 4-1 4s-1-1-2-2 3-2 3-2z"/><path fill="#EEC2AD" d="M19 16s-3 2-3 3 4 4 5 5 3 1 2-1-4-7-4-7z"/><path fill="#2A6797" d="M20.634 23.021s1.173.789 1.962-.385c.789-1.174 1.365 1.771 1.365 1.771s-2.559 2.539-4.521 2.924c-1.962.385-1.173-.789-.385-1.962l1.579-2.348z"/><path fill="#292F33" d="M7 22c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5 5 2.238 5 5-2.238 5-5 5zm22-12c-3.865 0-7 3.134-7 7s3.135 7 7 7c3.867 0 7-3.134 7-7s-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5c2.762 0 5 2.238 5 5s-2.238 5-5 5z"/><g fill="#AAB8C2"><path d="M22 20c0-.553-.484-1-1.083-1H10.083C9.485 19 9 19.447 9 20c0 .553.485 1 1.083 1h10.833c.6 0 1.084-.447 1.084-1zm8 9c0-.553-.447-1-1-1H18c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11c.553 0 1-.447 1-1z"/><path d="M21.224 17l-4.166 11.664c-.185.519.086 1.092.606 1.277.111.04.224.059.336.059.411 0 .796-.255.942-.664L23.348 17h-2.124z"/><path d="M29.001 30c-.33 0-.654-.164-.845-.463l-7-11c-.297-.466-.159-1.084.307-1.381.467-.297 1.084-.159 1.381.307l7 11c.297.466.159 1.084-.307 1.381-.167.105-.352.156-.536.156zM19 25.734l-8.387-6.524c-.435-.34-1.063-.26-1.403.176-.339.437-.26 1.064.176 1.403l9 7c.182.143.398.211.613.211H19v-2.266z"/><path d="M7 30c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265l2.772-8.316-3.423-2.568c-.442-.331-.531-.958-.2-1.4.331-.44.957-.531 1.4-.2l4.577 3.433-3.228 9.684c-.141.419-.532.684-.95.684z"/></g><path fill="#292F33" d="M26.383 19c-.03 0-.059-.002-.089-.006l-5.672-.708c-.372-.046-.644-.374-.62-.748.023-.374.333-.665.707-.665.041 0 4.067-.018 5.989-1.299.25-.167.582-.157.824.026.239.185.337.501.241.788l-.709 2.127c-.096.293-.369.485-.671.485zM11 18H6c-.552 0-1-.448-1-1s.448-1 1-1h5c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#2A6797" d="M21.999 13L18 16l3 3z"/><path fill="#F7DECE" d="M19.999 17s-2 3-2 4 1 4 1 7 2 3 2 2 1.581-5.419 0-7c-1-1 2-4 2-4l-3-2zm-4.314-3.703l-2.75-.784c-.447 1.956-3.023 4.486-3.935 4.486-1 0-2 0-2 1s0 1 2 1 4-2 5-3c.65-.65 1.309-1.757 1.685-2.702z"/><path fill="#357BAA" d="M21.999 13l-3 4 4 3s5-5 5-7-3-3-3-3l-3 3z"/><path fill="#4289C1" d="M20.999 6.999c-3-1-5.585-.414-7 1-1 1-1 2-1 4 0 .176-.03.362-.073.55l2.744.784c.202-.509.33-.984.33-1.334 0-1 1-1 2 0s2 2 3 2 6-4 6-4c-3.001-1-4.103-2.368-6.001-3zM19 29s1 1 2 0 1 2 1 2-3 2-5 2-1-1 0-2l2-2zM11 2c2-1 6 0 4 2-1 1-7 2-7 2 0-1 1-3 3-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#F3D2A2" d="M10 5c-1 1 0 2 0 3s2 0 2 0 1-1 2 1 4 1 3-1-4-1-4-3-3 0-3 0z"/><path fill="#FFE51E" d="M15 3c0 1 0 4-1 4s-1-1-2-2 3-2 3-2z"/><path fill="#E2C196" d="M19 16s-3 2-3 3 4 4 5 5 3 1 2-1-4-7-4-7z"/><path fill="#2A6797" d="M20.634 23.021s1.173.789 1.962-.385c.789-1.174 1.365 1.771 1.365 1.771s-2.559 2.539-4.521 2.924c-1.962.385-1.173-.789-.385-1.962l1.579-2.348z"/><path fill="#292F33" d="M7 22c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5 5 2.238 5 5-2.238 5-5 5zm22-12c-3.865 0-7 3.134-7 7s3.135 7 7 7c3.867 0 7-3.134 7-7s-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5c2.762 0 5 2.238 5 5s-2.238 5-5 5z"/><g fill="#AAB8C2"><path d="M22 20c0-.553-.484-1-1.083-1H10.083C9.485 19 9 19.447 9 20c0 .553.485 1 1.083 1h10.833c.6 0 1.084-.447 1.084-1zm8 9c0-.553-.447-1-1-1H18c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11c.553 0 1-.447 1-1z"/><path d="M21.224 17l-4.166 11.664c-.185.519.086 1.092.606 1.277.111.04.224.059.336.059.411 0 .796-.255.942-.664L23.348 17h-2.124z"/><path d="M29.001 30c-.33 0-.654-.164-.845-.463l-7-11c-.297-.466-.159-1.084.307-1.381.467-.297 1.084-.159 1.381.307l7 11c.297.466.159 1.084-.307 1.381-.167.105-.352.156-.536.156zM19 25.734l-8.387-6.524c-.435-.34-1.063-.26-1.403.176-.339.437-.26 1.064.176 1.403l9 7c.182.143.398.211.613.211H19v-2.266z"/><path d="M7 30c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265l2.772-8.316-3.423-2.568c-.442-.331-.531-.958-.2-1.4.331-.44.957-.531 1.4-.2l4.577 3.433-3.228 9.684c-.141.419-.532.684-.95.684z"/></g><path fill="#292F33" d="M26.383 19c-.03 0-.059-.002-.089-.006l-5.672-.708c-.372-.046-.644-.374-.62-.748.023-.374.333-.665.707-.665.041 0 4.067-.018 5.989-1.299.25-.167.582-.157.824.026.239.185.337.501.241.788l-.709 2.127c-.096.293-.369.485-.671.485zM11 18H6c-.552 0-1-.448-1-1s.448-1 1-1h5c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#2A6797" d="M21.999 13L18 16l3 3z"/><path fill="#F3D2A2" d="M19.999 17s-2 3-2 4 1 4 1 7 2 3 2 2 1.581-5.419 0-7c-1-1 2-4 2-4l-3-2zm-4.314-3.703l-2.75-.784c-.447 1.956-3.023 4.486-3.935 4.486-1 0-2 0-2 1s0 1 2 1 4-2 5-3c.65-.65 1.309-1.757 1.685-2.702z"/><path fill="#357BAA" d="M21.999 13l-3 4 4 3s5-5 5-7-3-3-3-3l-3 3z"/><path fill="#4289C1" d="M20.999 6.999c-3-1-5.585-.414-7 1-1 1-1 2-1 4 0 .176-.03.362-.073.55l2.744.784c.202-.509.33-.984.33-1.334 0-1 1-1 2 0s2 2 3 2 6-4 6-4c-3.001-1-4.103-2.368-6.001-3zM19 29s1 1 2 0 1 2 1 2-3 2-5 2-1-1 0-2l2-2zM11 2c2-1 6 0 4 2-1 1-7 2-7 2 0-1 1-3 3-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#D5AB88" d="M10 5c-1 1 0 2 0 3s2 0 2 0 1-1 2 1 4 1 3-1-4-1-4-3-3 0-3 0z"/><path fill="#963B22" d="M15 3c0 1 0 4-1 4s-1-1-2-2 3-2 3-2z"/><path fill="#CC9B7A" d="M19 16s-3 2-3 3 4 4 5 5 3 1 2-1-4-7-4-7z"/><path fill="#2A6797" d="M20.634 23.021s1.173.789 1.962-.385c.789-1.174 1.365 1.771 1.365 1.771s-2.559 2.539-4.521 2.924c-1.962.385-1.173-.789-.385-1.962l1.579-2.348z"/><path fill="#292F33" d="M7 22c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5 5 2.238 5 5-2.238 5-5 5zm22-12c-3.865 0-7 3.134-7 7s3.135 7 7 7c3.867 0 7-3.134 7-7s-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5c2.762 0 5 2.238 5 5s-2.238 5-5 5z"/><g fill="#AAB8C2"><path d="M22 20c0-.553-.484-1-1.083-1H10.083C9.485 19 9 19.447 9 20c0 .553.485 1 1.083 1h10.833c.6 0 1.084-.447 1.084-1zm8 9c0-.553-.447-1-1-1H18c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11c.553 0 1-.447 1-1z"/><path d="M21.224 17l-4.166 11.664c-.185.519.086 1.092.606 1.277.111.04.224.059.336.059.411 0 .796-.255.942-.664L23.348 17h-2.124z"/><path d="M29.001 30c-.33 0-.654-.164-.845-.463l-7-11c-.297-.466-.159-1.084.307-1.381.467-.297 1.084-.159 1.381.307l7 11c.297.466.159 1.084-.307 1.381-.167.105-.352.156-.536.156zM19 25.734l-8.387-6.524c-.435-.34-1.063-.26-1.403.176-.339.437-.26 1.064.176 1.403l9 7c.182.143.398.211.613.211H19v-2.266z"/><path d="M7 30c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265l2.772-8.316-3.423-2.568c-.442-.331-.531-.958-.2-1.4.331-.44.957-.531 1.4-.2l4.577 3.433-3.228 9.684c-.141.419-.532.684-.95.684z"/></g><path fill="#292F33" d="M26.383 19c-.03 0-.059-.002-.089-.006l-5.672-.708c-.372-.046-.644-.374-.62-.748.023-.374.333-.665.707-.665.041 0 4.067-.018 5.989-1.299.25-.167.582-.157.824.026.239.185.337.501.241.788l-.709 2.127c-.096.293-.369.485-.671.485zM11 18H6c-.552 0-1-.448-1-1s.448-1 1-1h5c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#2A6797" d="M21.999 13L18 16l3 3z"/><path fill="#D5AB88" d="M19.999 17s-2 3-2 4 1 4 1 7 2 3 2 2 1.581-5.419 0-7c-1-1 2-4 2-4l-3-2zm-4.314-3.703l-2.75-.784c-.447 1.956-3.023 4.486-3.935 4.486-1 0-2 0-2 1s0 1 2 1 4-2 5-3c.65-.65 1.309-1.757 1.685-2.702z"/><path fill="#357BAA" d="M21.999 13l-3 4 4 3s5-5 5-7-3-3-3-3l-3 3z"/><path fill="#4289C1" d="M20.999 6.999c-3-1-5.585-.414-7 1-1 1-1 2-1 4 0 .176-.03.362-.073.55l2.744.784c.202-.509.33-.984.33-1.334 0-1 1-1 2 0s2 2 3 2 6-4 6-4c-3.001-1-4.103-2.368-6.001-3zM19 29s1 1 2 0 1 2 1 2-3 2-5 2-1-1 0-2l2-2zM11 2c2-1 6 0 4 2-1 1-7 2-7 2 0-1 1-3 3-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#AF7E57" d="M10 5c-1 1 0 2 0 3s2 0 2 0 1-1 2 1 4 1 3-1-4-1-4-3-3 0-3 0z"/><path fill="#60352A" d="M15 3c0 1 0 4-1 4s-1-1-2-2 3-2 3-2z"/><path fill="#9B6A49" d="M19 16s-3 2-3 3 4 4 5 5 3 1 2-1-4-7-4-7z"/><path fill="#2A6797" d="M20.634 23.021s1.173.789 1.962-.385c.789-1.174 1.365 1.771 1.365 1.771s-2.559 2.539-4.521 2.924c-1.962.385-1.173-.789-.385-1.962l1.579-2.348z"/><path fill="#292F33" d="M7 22c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5 5 2.238 5 5-2.238 5-5 5zm22-12c-3.865 0-7 3.134-7 7s3.135 7 7 7c3.867 0 7-3.134 7-7s-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5c2.762 0 5 2.238 5 5s-2.238 5-5 5z"/><g fill="#AAB8C2"><path d="M22 20c0-.553-.484-1-1.083-1H10.083C9.485 19 9 19.447 9 20c0 .553.485 1 1.083 1h10.833c.6 0 1.084-.447 1.084-1zm8 9c0-.553-.447-1-1-1H18c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11c.553 0 1-.447 1-1z"/><path d="M21.224 17l-4.166 11.664c-.185.519.086 1.092.606 1.277.111.04.224.059.336.059.411 0 .796-.255.942-.664L23.348 17h-2.124z"/><path d="M29.001 30c-.33 0-.654-.164-.845-.463l-7-11c-.297-.466-.159-1.084.307-1.381.467-.297 1.084-.159 1.381.307l7 11c.297.466.159 1.084-.307 1.381-.167.105-.352.156-.536.156zM19 25.734l-8.387-6.524c-.435-.34-1.063-.26-1.403.176-.339.437-.26 1.064.176 1.403l9 7c.182.143.398.211.613.211H19v-2.266z"/><path d="M7 30c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265l2.772-8.316-3.423-2.568c-.442-.331-.531-.958-.2-1.4.331-.44.957-.531 1.4-.2l4.577 3.433-3.228 9.684c-.141.419-.532.684-.95.684z"/></g><path fill="#292F33" d="M26.383 19c-.03 0-.059-.002-.089-.006l-5.672-.708c-.372-.046-.644-.374-.62-.748.023-.374.333-.665.707-.665.041 0 4.067-.018 5.989-1.299.25-.167.582-.157.824.026.239.185.337.501.241.788l-.709 2.127c-.096.293-.369.485-.671.485zM11 18H6c-.552 0-1-.448-1-1s.448-1 1-1h5c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#2A6797" d="M21.999 13L18 16l3 3z"/><path fill="#AF7E57" d="M19.999 17s-2 3-2 4 1 4 1 7 2 3 2 2 1.581-5.419 0-7c-1-1 2-4 2-4l-3-2zm-4.314-3.703l-2.75-.784c-.447 1.956-3.023 4.486-3.935 4.486-1 0-2 0-2 1s0 1 2 1 4-2 5-3c.65-.65 1.309-1.757 1.685-2.702z"/><path fill="#357BAA" d="M21.999 13l-3 4 4 3s5-5 5-7-3-3-3-3l-3 3z"/><path fill="#4289C1" d="M20.999 6.999c-3-1-5.585-.414-7 1-1 1-1 2-1 4 0 .176-.03.362-.073.55l2.744.784c.202-.509.33-.984.33-1.334 0-1 1-1 2 0s2 2 3 2 6-4 6-4c-3.001-1-4.103-2.368-6.001-3zM19 29s1 1 2 0 1 2 1 2-3 2-5 2-1-1 0-2l2-2zM11 2c2-1 6 0 4 2-1 1-7 2-7 2 0-1 1-3 3-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#7C533E" d="M10 5c-1 1 0 2 0 3s2 0 2 0 1-1 2 1 4 1 3-1-4-1-4-3-3 0-3 0z"/><path fill="#0B0200" d="M15 3c0 1 0 4-1 4s-1-1-2-2 3-2 3-2z"/><path fill="#664131" d="M19 16s-3 2-3 3 4 4 5 5 3 1 2-1-4-7-4-7z"/><path fill="#2A6797" d="M20.634 23.021s1.173.789 1.962-.385c.789-1.174 1.365 1.771 1.365 1.771s-2.559 2.539-4.521 2.924c-1.962.385-1.173-.789-.385-1.962l1.579-2.348z"/><path fill="#292F33" d="M7 22c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5 5 2.238 5 5-2.238 5-5 5zm22-12c-3.865 0-7 3.134-7 7s3.135 7 7 7c3.867 0 7-3.134 7-7s-3.133-7-7-7zm0 12c-2.761 0-5-2.238-5-5s2.239-5 5-5c2.762 0 5 2.238 5 5s-2.238 5-5 5z"/><g fill="#AAB8C2"><path d="M22 20c0-.553-.484-1-1.083-1H10.083C9.485 19 9 19.447 9 20c0 .553.485 1 1.083 1h10.833c.6 0 1.084-.447 1.084-1zm8 9c0-.553-.447-1-1-1H18c-.552 0-1 .447-1 1 0 .553.448 1 1 1h11c.553 0 1-.447 1-1z"/><path d="M21.224 17l-4.166 11.664c-.185.519.086 1.092.606 1.277.111.04.224.059.336.059.411 0 .796-.255.942-.664L23.348 17h-2.124z"/><path d="M29.001 30c-.33 0-.654-.164-.845-.463l-7-11c-.297-.466-.159-1.084.307-1.381.467-.297 1.084-.159 1.381.307l7 11c.297.466.159 1.084-.307 1.381-.167.105-.352.156-.536.156zM19 25.734l-8.387-6.524c-.435-.34-1.063-.26-1.403.176-.339.437-.26 1.064.176 1.403l9 7c.182.143.398.211.613.211H19v-2.266z"/><path d="M7 30c-.104 0-.211-.017-.316-.052-.524-.174-.807-.74-.632-1.265l2.772-8.316-3.423-2.568c-.442-.331-.531-.958-.2-1.4.331-.44.957-.531 1.4-.2l4.577 3.433-3.228 9.684c-.141.419-.532.684-.95.684z"/></g><path fill="#292F33" d="M26.383 19c-.03 0-.059-.002-.089-.006l-5.672-.708c-.372-.046-.644-.374-.62-.748.023-.374.333-.665.707-.665.041 0 4.067-.018 5.989-1.299.25-.167.582-.157.824.026.239.185.337.501.241.788l-.709 2.127c-.096.293-.369.485-.671.485zM11 18H6c-.552 0-1-.448-1-1s.448-1 1-1h5c.552 0 1 .448 1 1s-.448 1-1 1z"/><path fill="#2A6797" d="M21.999 13L18 16l3 3z"/><path fill="#7C533E" d="M19.999 17s-2 3-2 4 1 4 1 7 2 3 2 2 1.581-5.419 0-7c-1-1 2-4 2-4l-3-2zm-4.314-3.703l-2.75-.784c-.447 1.956-3.023 4.486-3.935 4.486-1 0-2 0-2 1s0 1 2 1 4-2 5-3c.65-.65 1.309-1.757 1.685-2.702z"/><path fill="#357BAA" d="M21.999 13l-3 4 4 3s5-5 5-7-3-3-3-3l-3 3z"/><path fill="#4289C1" d="M20.999 6.999c-3-1-5.585-.414-7 1-1 1-1 2-1 4 0 .176-.03.362-.073.55l2.744.784c.202-.509.33-.984.33-1.334 0-1 1-1 2 0s2 2 3 2 6-4 6-4c-3.001-1-4.103-2.368-6.001-3zM19 29s1 1 2 0 1 2 1 2-3 2-5 2-1-1 0-2l2-2zM11 2c2-1 6 0 4 2-1 1-7 2-7 2 0-1 1-3 3-4z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M32.75 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h15.042s4.849.569 4.542 2c-.351 1.634-2.455 6.896-2.542 7.708-.173 1.62 4.735 4.393 4.5 6.292-.733 5.934-3.5 8.25-2.505 11.305.126.386 3.679.718 4.588 1.195C33 31.318 32.958 36 32.75 36z"/><path fill="#99AAB5" d="M30 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h7.167s8.955.862 8.842 2.062c-.173 1.851-3.639 7.717-2.51 8.812s4.432 3.794 4.571 5.542c.179 2.244-4.284 8.299-1.918 13.304.756 1.598 5.061.957 6.329 1.852C29.644 33.807 30.304 36 30 36z"/><path fill="#292F33" d="M29.759 29.818s.404.278 1.516.666c.443.154-.044 1.84-.305 2.08s-2.188.627-3.928.098c-1.593-.484-.405-.938.744-1.193 1.151-.254 1.973-1.651 1.973-1.651z"/><path fill="#F9CA55" d="M28.313 14.316c-1.108.471-2.32.982-2.873.817-.415-.124-1.235-.382-1.886-.38-.651.002-.76.343-.325 1.021.435.679 1.324 1.039 2.032.823.708-.216 2.276-.29 3.233-.317.956-.025 1.692-2.759-.181-1.964z"/><path fill="#F9CA55" d="M27.85 14.614c.484-.258 1.333-.391 1.333-.391l.929-2.272 2.482 1.636s-1.65 1.934-2.05 2.355c-.4.422-1.793.417-2.898.371-.833-.034-.337-1.411.204-1.699zm1.972 11.558s-2.739-1.872-2.937-1.076c-.198.796 2.252 2.908 2.846 4.888.24.799 1.68 1.663 1.697.079.03-2.735-1.606-3.891-1.606-3.891z"/><path fill="#F9CA55" d="M27.162 25.501s.88 1.752 1.766 1.567 3.219-3.005 3.92-4.075c.701-1.07.419-3.671-1.168-2.416-1.586 1.253-4.518 4.924-4.518 4.924z"/><path fill="#2A6797" d="M34.225 21.936l-6.368.815 3.175 2.892z"/><path fill="#FFDC5D" d="M27.622 22.132s-2.369 2.157-2.583 3.02c-.215.862.003 3.664-.642 6.25s1.079 3.016 1.294 2.154c.215-.862 2.652-4.022 1.856-5.917-.384-.916 2.231-3.138 2.231-3.138l-2.156-2.369z"/><path fill="#357BAA" d="M29.807 19.266c-1.291.84-1.944 2.066-3.733 4.052l2.395 2.554s6.032-2.286 6.953-5.358c.794-2.649-1.491-4.143-1.491-4.143s-2.89 2.092-4.124 2.895z"/><path fill="#FFDC5D" d="M32.932 7.593l-.245 2.329-2.675-.429.01-2.022z"/><path fill="#FFDC5D" d="M33.434 7.67c-.953 1.243-2.434 1.138-3.838.894-1.338-.233-1.093-2.671-.44-4.083.658-1.422 2.829-1.498 3.959-.631 1.131.867 1.273 2.577.319 3.82z"/><path fill="#FFDC5D" d="M25.146 7.833c-.942-1.226-2.325-2.46-2.501-3.247-.214-.957-.164-1.954-1.499-2.752-.842-.503-.278.882-.154 2.717.071 1.055 1.664 4.103 2.633 5.094.623.637 3.588 1.518 4.57 3.638.166.358.605 1.03 1.117 1.841.85 1.343 1.341 2.469.658 4.033 2.984.155 5.318-1.113 5.318-1.113-.883-2.313-.212-4.329-.94-6.15-1.15-2.879-2.429-2.989-4.35-2.598 0 0-.402-.733-2.142-.546-.839-.331-1.635-.614-2.71-.917z"/><path fill="#4289C1" d="M29.779 19.141c2.984.155 5.625-.824 5.625-.824-.23-1.965-.328-4.602-1.056-6.423-.161-.404-.33-.736-.504-1.021-.011.256-.149.448-.597.356-.97-.2-1.585-1.274-2.541-1.898-.229-.01-.465-.019-.708-.035.76.597 1.077 2.165.639 3.292-.443 1.14-1.332 1.394-2.302 1.034.037.079.377.919.722 1.809.477 1.23.694 2.691.722 3.71z"/><path fill="#292F33" d="M24.3 31.985s.371 1.007 1.62.869c.277-.031-.079 1.164-.39 1.461-.311.297-3.405 1.719-4.959.855-1.553-.864-.345-1.208.864-1.553 1.208-.345 2.865-1.632 2.865-1.632z"/><path fill="#FFAC33" d="M30.938 2.812c1.992-.206 3.292.989 3.449 2.102.239 1.69-1.15 2.967-1.455 3.627-.308.667-2.387-.338-2.494-1.979-.037-.562-.269-1.191-.2-1.644.062-.41-.732-.442-1.05-.586-.446-.201.367-1.376 1.75-1.52z"/><path fill="#66757F" d="M6.333 2.417h4.708c.792 0-2.208 3.156-3.292 3.156S4.917 2.417 6.333 2.417zm4.334 6.208h4.458c.75 0-2.458 2.949-3.458 2.949s-2.292-2.949-1-2.949zm-1.792 9.118H18c1.292 0-5.542 5.098-6.667 5.098s-4.916-5.098-2.458-5.098zM3.167 29.052h8.071c1.888 0-3.281 4.531-5.113 4.531s-4.792-4.531-2.958-4.531z"/><path fill="#2A6797" d="M29.779 18.5c.01-.046 1.158.125 2.814-.125 1.297-.196 2.811-.54 2.811-.54l.095.649s-1.917.495-3.069.629-2.623.152-2.623.152-.111-.355-.028-.765z"/><path fill="#FFDC5D" d="M30.312 5.604c.261-.309.938-.208.917.271-.021.479-.188.938-.75.896-.562-.042-.396-.896-.167-1.167z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M32.75 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h15.042s4.849.569 4.542 2c-.351 1.634-2.455 6.896-2.542 7.708-.173 1.62 4.735 4.393 4.5 6.292-.733 5.934-3.5 8.25-2.505 11.305.126.386 3.679.718 4.588 1.195C33 31.318 32.958 36 32.75 36z"/><path fill="#99AAB5" d="M30 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h7.167s8.955.862 8.842 2.062c-.173 1.851-3.639 7.717-2.51 8.812s4.432 3.794 4.571 5.542c.179 2.244-4.284 8.299-1.918 13.304.756 1.598 5.061.957 6.329 1.852C29.644 33.807 30.304 36 30 36z"/><path fill="#292F33" d="M29.759 29.818s.404.278 1.516.666c.443.154-.044 1.84-.305 2.08s-2.188.627-3.928.098c-1.593-.484-.405-.938.744-1.193 1.151-.254 1.973-1.651 1.973-1.651z"/><path fill="#EEC2AD" d="M28.313 14.316c-1.108.471-2.32.982-2.873.817-.415-.124-1.235-.382-1.886-.38-.651.002-.76.343-.325 1.021.435.679 1.324 1.039 2.032.823.708-.216 2.276-.29 3.233-.317.956-.025 1.692-2.759-.181-1.964z"/><path fill="#EEC2AD" d="M27.85 14.614c.484-.258 1.333-.391 1.333-.391l.929-2.272 2.482 1.636s-1.65 1.934-2.05 2.355c-.4.422-1.793.417-2.898.371-.833-.034-.337-1.411.204-1.699zm1.972 11.558s-2.739-1.872-2.937-1.076c-.198.796 2.252 2.908 2.846 4.888.24.799 1.68 1.663 1.697.079.03-2.735-1.606-3.891-1.606-3.891z"/><path fill="#EEC2AD" d="M27.162 25.501s.88 1.752 1.766 1.567 3.219-3.005 3.92-4.075c.701-1.07.419-3.671-1.168-2.416-1.586 1.253-4.518 4.924-4.518 4.924z"/><path fill="#2A6797" d="M34.225 21.936l-6.368.815 3.175 2.892z"/><path fill="#F7DECE" d="M27.622 22.132s-2.369 2.157-2.583 3.02c-.215.862.003 3.664-.642 6.25s1.079 3.016 1.294 2.154c.215-.862 2.652-4.022 1.856-5.917-.384-.916 2.231-3.138 2.231-3.138l-2.156-2.369z"/><path fill="#357BAA" d="M29.807 19.266c-1.291.84-1.944 2.066-3.733 4.052l2.395 2.554s6.032-2.286 6.953-5.358c.794-2.649-1.491-4.143-1.491-4.143s-2.89 2.092-4.124 2.895z"/><path fill="#F7DECE" d="M32.932 7.593l-.245 2.329-2.675-.429.01-2.022z"/><path fill="#F7DECE" d="M33.434 7.67c-.953 1.243-2.434 1.138-3.838.894-1.338-.233-1.093-2.671-.44-4.083.658-1.422 2.829-1.498 3.959-.631 1.131.867 1.273 2.577.319 3.82z"/><path fill="#F7DECE" d="M25.146 7.833c-.942-1.226-2.325-2.46-2.501-3.247-.214-.957-.164-1.954-1.499-2.752-.842-.503-.278.882-.154 2.717.071 1.055 1.664 4.103 2.633 5.094.623.637 3.588 1.518 4.57 3.638.166.358.605 1.03 1.117 1.841.85 1.343 1.341 2.469.658 4.033 2.984.155 5.318-1.113 5.318-1.113-.883-2.313-.212-4.329-.94-6.15-1.15-2.879-2.429-2.989-4.35-2.598 0 0-.402-.733-2.142-.546-.839-.331-1.635-.614-2.71-.917z"/><path fill="#4289C1" d="M29.779 19.141c2.984.155 5.625-.824 5.625-.824-.23-1.965-.328-4.602-1.056-6.423-.161-.404-.33-.736-.504-1.021-.011.256-.149.448-.597.356-.97-.2-1.585-1.274-2.541-1.898-.229-.01-.465-.019-.708-.035.76.597 1.077 2.165.639 3.292-.443 1.14-1.332 1.394-2.302 1.034.037.079.377.919.722 1.809.477 1.23.694 2.691.722 3.71z"/><path fill="#292F33" d="M24.3 31.985s.371 1.007 1.62.869c.277-.031-.079 1.164-.39 1.461-.311.297-3.405 1.719-4.959.855-1.553-.864-.345-1.208.864-1.553 1.208-.345 2.865-1.632 2.865-1.632zm6.638-29.173c1.992-.206 3.292.989 3.449 2.102.239 1.69-1.15 2.967-1.455 3.627-.308.667-2.387-.338-2.494-1.979-.037-.562-.269-1.191-.2-1.644.062-.41-.732-.442-1.05-.586-.446-.201.367-1.376 1.75-1.52z"/><path fill="#66757F" d="M6.333 2.417h4.708c.792 0-2.208 3.156-3.292 3.156S4.917 2.417 6.333 2.417zm4.334 6.208h4.458c.75 0-2.458 2.949-3.458 2.949s-2.292-2.949-1-2.949zm-1.792 9.118H18c1.292 0-5.542 5.098-6.667 5.098s-4.916-5.098-2.458-5.098zM3.167 29.052h8.071c1.888 0-3.281 4.531-5.113 4.531s-4.792-4.531-2.958-4.531z"/><path fill="#2A6797" d="M29.779 18.5c.01-.046 1.158.125 2.814-.125 1.297-.196 2.811-.54 2.811-.54l.095.649s-1.917.495-3.069.629-2.623.152-2.623.152-.111-.355-.028-.765z"/><path fill="#F7DECE" d="M30.312 5.604c.261-.309.938-.208.917.271-.021.479-.188.938-.75.896-.562-.042-.396-.896-.167-1.167z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M32.75 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h15.042s4.849.569 4.542 2c-.351 1.634-2.455 6.896-2.542 7.708-.173 1.62 4.735 4.393 4.5 6.292-.733 5.934-3.5 8.25-2.505 11.305.126.386 3.679.718 4.588 1.195C33 31.318 32.958 36 32.75 36z"/><path fill="#99AAB5" d="M30 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h7.167s8.955.862 8.842 2.062c-.173 1.851-3.639 7.717-2.51 8.812s4.432 3.794 4.571 5.542c.179 2.244-4.284 8.299-1.918 13.304.756 1.598 5.061.957 6.329 1.852C29.644 33.807 30.304 36 30 36z"/><path fill="#292F33" d="M29.759 29.818s.404.278 1.516.666c.443.154-.044 1.84-.305 2.08s-2.188.627-3.928.098c-1.593-.484-.405-.938.744-1.193 1.151-.254 1.973-1.651 1.973-1.651z"/><path fill="#E2C196" d="M28.313 14.316c-1.108.471-2.32.982-2.873.817-.415-.124-1.235-.382-1.886-.38-.651.002-.76.343-.325 1.021.435.679 1.324 1.039 2.032.823.708-.216 2.276-.29 3.233-.317.956-.025 1.692-2.759-.181-1.964z"/><path fill="#E2C196" d="M27.85 14.614c.484-.258 1.333-.391 1.333-.391l.929-2.272 2.482 1.636s-1.65 1.934-2.05 2.355c-.4.422-1.793.417-2.898.371-.833-.034-.337-1.411.204-1.699zm1.972 11.558s-2.739-1.872-2.937-1.076c-.198.796 2.252 2.908 2.846 4.888.24.799 1.68 1.663 1.697.079.03-2.735-1.606-3.891-1.606-3.891z"/><path fill="#E2C196" d="M27.162 25.501s.88 1.752 1.766 1.567 3.219-3.005 3.92-4.075c.701-1.07.419-3.671-1.168-2.416-1.586 1.253-4.518 4.924-4.518 4.924z"/><path fill="#2A6797" d="M34.225 21.936l-6.368.815 3.175 2.892z"/><path fill="#F3D2A2" d="M27.622 22.132s-2.369 2.157-2.583 3.02c-.215.862.003 3.664-.642 6.25s1.079 3.016 1.294 2.154c.215-.862 2.652-4.022 1.856-5.917-.384-.916 2.231-3.138 2.231-3.138l-2.156-2.369z"/><path fill="#357BAA" d="M29.807 19.266c-1.291.84-1.944 2.066-3.733 4.052l2.395 2.554s6.032-2.286 6.953-5.358c.794-2.649-1.491-4.143-1.491-4.143s-2.89 2.092-4.124 2.895z"/><path fill="#F3D2A2" d="M32.932 7.593l-.245 2.329-2.675-.429.01-2.022z"/><path fill="#F3D2A2" d="M33.434 7.67c-.953 1.243-2.434 1.138-3.838.894-1.338-.233-1.093-2.671-.44-4.083.658-1.422 2.829-1.498 3.959-.631 1.131.867 1.273 2.577.319 3.82z"/><path fill="#F3D2A2" d="M25.146 7.833c-.942-1.226-2.325-2.46-2.501-3.247-.214-.957-.164-1.954-1.499-2.752-.842-.503-.278.882-.154 2.717.071 1.055 1.664 4.103 2.633 5.094.623.637 3.588 1.518 4.57 3.638.166.358.605 1.03 1.117 1.841.85 1.343 1.341 2.469.658 4.033 2.984.155 5.318-1.113 5.318-1.113-.883-2.313-.212-4.329-.94-6.15-1.15-2.879-2.429-2.989-4.35-2.598 0 0-.402-.733-2.142-.546-.839-.331-1.635-.614-2.71-.917z"/><path fill="#4289C1" d="M29.779 19.141c2.984.155 5.625-.824 5.625-.824-.23-1.965-.328-4.602-1.056-6.423-.161-.404-.33-.736-.504-1.021-.011.256-.149.448-.597.356-.97-.2-1.585-1.274-2.541-1.898-.229-.01-.465-.019-.708-.035.76.597 1.077 2.165.639 3.292-.443 1.14-1.332 1.394-2.302 1.034.037.079.377.919.722 1.809.477 1.23.694 2.691.722 3.71z"/><path fill="#292F33" d="M24.3 31.985s.371 1.007 1.62.869c.277-.031-.079 1.164-.39 1.461-.311.297-3.405 1.719-4.959.855-1.553-.864-.345-1.208.864-1.553 1.208-.345 2.865-1.632 2.865-1.632z"/><path fill="#FFE51E" d="M30.938 2.812c1.992-.206 3.292.989 3.449 2.102.239 1.69-1.15 2.967-1.455 3.627-.308.667-2.387-.338-2.494-1.979-.037-.562-.269-1.191-.2-1.644.062-.41-.732-.442-1.05-.586-.446-.201.367-1.376 1.75-1.52z"/><path fill="#66757F" d="M6.333 2.417h4.708c.792 0-2.208 3.156-3.292 3.156S4.917 2.417 6.333 2.417zm4.334 6.208h4.458c.75 0-2.458 2.949-3.458 2.949s-2.292-2.949-1-2.949zm-1.792 9.118H18c1.292 0-5.542 5.098-6.667 5.098s-4.916-5.098-2.458-5.098zM3.167 29.052h8.071c1.888 0-3.281 4.531-5.113 4.531s-4.792-4.531-2.958-4.531z"/><path fill="#2A6797" d="M29.779 18.5c.01-.046 1.158.125 2.814-.125 1.297-.196 2.811-.54 2.811-.54l.095.649s-1.917.495-3.069.629-2.623.152-2.623.152-.111-.355-.028-.765z"/><path fill="#F3D2A2" d="M30.312 5.604c.261-.309.938-.208.917.271-.021.479-.188.938-.75.896-.562-.042-.396-.896-.167-1.167z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M32.75 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h15.042s4.849.569 4.542 2c-.351 1.634-2.455 6.896-2.542 7.708-.173 1.62 4.735 4.393 4.5 6.292-.733 5.934-3.5 8.25-2.505 11.305.126.386 3.679.718 4.588 1.195C33 31.318 32.958 36 32.75 36z"/><path fill="#99AAB5" d="M30 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h7.167s8.955.862 8.842 2.062c-.173 1.851-3.639 7.717-2.51 8.812s4.432 3.794 4.571 5.542c.179 2.244-4.284 8.299-1.918 13.304.756 1.598 5.061.957 6.329 1.852C29.644 33.807 30.304 36 30 36z"/><path fill="#292F33" d="M29.759 29.818s.404.278 1.516.666c.443.154-.044 1.84-.305 2.08s-2.188.627-3.928.098c-1.593-.484-.405-.938.744-1.193 1.151-.254 1.973-1.651 1.973-1.651z"/><path fill="#CC9B7A" d="M28.313 14.316c-1.108.471-2.32.982-2.873.817-.415-.124-1.235-.382-1.886-.38-.651.002-.76.343-.325 1.021.435.679 1.324 1.039 2.032.823.708-.216 2.276-.29 3.233-.317.956-.025 1.692-2.759-.181-1.964z"/><path fill="#CC9B7A" d="M27.85 14.614c.484-.258 1.333-.391 1.333-.391l.929-2.272 2.482 1.636s-1.65 1.934-2.05 2.355c-.4.422-1.793.417-2.898.371-.833-.034-.337-1.411.204-1.699zm1.972 11.558s-2.739-1.872-2.937-1.076c-.198.796 2.252 2.908 2.846 4.888.24.799 1.68 1.663 1.697.079.03-2.735-1.606-3.891-1.606-3.891z"/><path fill="#CC9B7A" d="M27.162 25.501s.88 1.752 1.766 1.567 3.219-3.005 3.92-4.075c.701-1.07.419-3.671-1.168-2.416-1.586 1.253-4.518 4.924-4.518 4.924z"/><path fill="#2A6797" d="M34.225 21.936l-6.368.815 3.175 2.892z"/><path fill="#D5AB88" d="M27.622 22.132s-2.369 2.157-2.583 3.02c-.215.862.003 3.664-.642 6.25s1.079 3.016 1.294 2.154c.215-.862 2.652-4.022 1.856-5.917-.384-.916 2.231-3.138 2.231-3.138l-2.156-2.369z"/><path fill="#357BAA" d="M29.807 19.266c-1.291.84-1.944 2.066-3.733 4.052l2.395 2.554s6.032-2.286 6.953-5.358c.794-2.649-1.491-4.143-1.491-4.143s-2.89 2.092-4.124 2.895z"/><path fill="#D5AB88" d="M32.932 7.593l-.245 2.329-2.675-.429.01-2.022z"/><path fill="#D5AB88" d="M33.434 7.67c-.953 1.243-2.434 1.138-3.838.894-1.338-.233-1.093-2.671-.44-4.083.658-1.422 2.829-1.498 3.959-.631 1.131.867 1.273 2.577.319 3.82z"/><path fill="#D5AB88" d="M25.146 7.833c-.942-1.226-2.325-2.46-2.501-3.247-.214-.957-.164-1.954-1.499-2.752-.842-.503-.278.882-.154 2.717.071 1.055 1.664 4.103 2.633 5.094.623.637 3.588 1.518 4.57 3.638.166.358.605 1.03 1.117 1.841.85 1.343 1.341 2.469.658 4.033 2.984.155 5.318-1.113 5.318-1.113-.883-2.313-.212-4.329-.94-6.15-1.15-2.879-2.429-2.989-4.35-2.598 0 0-.402-.733-2.142-.546-.839-.331-1.635-.614-2.71-.917z"/><path fill="#4289C1" d="M29.779 19.141c2.984.155 5.625-.824 5.625-.824-.23-1.965-.328-4.602-1.056-6.423-.161-.404-.33-.736-.504-1.021-.011.256-.149.448-.597.356-.97-.2-1.585-1.274-2.541-1.898-.229-.01-.465-.019-.708-.035.76.597 1.077 2.165.639 3.292-.443 1.14-1.332 1.394-2.302 1.034.037.079.377.919.722 1.809.477 1.23.694 2.691.722 3.71z"/><path fill="#292F33" d="M24.3 31.985s.371 1.007 1.62.869c.277-.031-.079 1.164-.39 1.461-.311.297-3.405 1.719-4.959.855-1.553-.864-.345-1.208.864-1.553 1.208-.345 2.865-1.632 2.865-1.632z"/><path fill="#963B22" d="M30.938 2.812c1.992-.206 3.292.989 3.449 2.102.239 1.69-1.15 2.967-1.455 3.627-.308.667-2.387-.338-2.494-1.979-.037-.562-.269-1.191-.2-1.644.062-.41-.732-.442-1.05-.586-.446-.201.367-1.376 1.75-1.52z"/><path fill="#66757F" d="M6.333 2.417h4.708c.792 0-2.208 3.156-3.292 3.156S4.917 2.417 6.333 2.417zm4.334 6.208h4.458c.75 0-2.458 2.949-3.458 2.949s-2.292-2.949-1-2.949zm-1.792 9.118H18c1.292 0-5.542 5.098-6.667 5.098s-4.916-5.098-2.458-5.098zM3.167 29.052h8.071c1.888 0-3.281 4.531-5.113 4.531s-4.792-4.531-2.958-4.531z"/><path fill="#2A6797" d="M29.779 18.5c.01-.046 1.158.125 2.814-.125 1.297-.196 2.811-.54 2.811-.54l.095.649s-1.917.495-3.069.629-2.623.152-2.623.152-.111-.355-.028-.765z"/><path fill="#D5AB88" d="M30.312 5.604c.261-.309.938-.208.917.271-.021.479-.188.938-.75.896-.562-.042-.396-.896-.167-1.167z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M32.75 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h15.042s4.849.569 4.542 2c-.351 1.634-2.455 6.896-2.542 7.708-.173 1.62 4.735 4.393 4.5 6.292-.733 5.934-3.5 8.25-2.505 11.305.126.386 3.679.718 4.588 1.195C33 31.318 32.958 36 32.75 36z"/><path fill="#99AAB5" d="M30 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h7.167s8.955.862 8.842 2.062c-.173 1.851-3.639 7.717-2.51 8.812s4.432 3.794 4.571 5.542c.179 2.244-4.284 8.299-1.918 13.304.756 1.598 5.061.957 6.329 1.852C29.644 33.807 30.304 36 30 36z"/><path fill="#292F33" d="M29.759 29.818s.404.278 1.516.666c.443.154-.044 1.84-.305 2.08s-2.188.627-3.928.098c-1.593-.484-.405-.938.744-1.193 1.151-.254 1.973-1.651 1.973-1.651z"/><path fill="#9B6A49" d="M28.313 14.316c-1.108.471-2.32.982-2.873.817-.415-.124-1.235-.382-1.886-.38-.651.002-.76.343-.325 1.021.435.679 1.324 1.039 2.032.823.708-.216 2.276-.29 3.233-.317.956-.025 1.692-2.759-.181-1.964z"/><path fill="#9B6A49" d="M27.85 14.614c.484-.258 1.333-.391 1.333-.391l.929-2.272 2.482 1.636s-1.65 1.934-2.05 2.355c-.4.422-1.793.417-2.898.371-.833-.034-.337-1.411.204-1.699zm1.972 11.558s-2.739-1.872-2.937-1.076c-.198.796 2.252 2.908 2.846 4.888.24.799 1.68 1.663 1.697.079.03-2.735-1.606-3.891-1.606-3.891z"/><path fill="#9B6A49" d="M27.162 25.501s.88 1.752 1.766 1.567 3.219-3.005 3.92-4.075c.701-1.07.419-3.671-1.168-2.416-1.586 1.253-4.518 4.924-4.518 4.924z"/><path fill="#2A6797" d="M34.225 21.936l-6.368.815 3.175 2.892z"/><path fill="#AF7E57" d="M27.622 22.132s-2.369 2.157-2.583 3.02c-.215.862.003 3.664-.642 6.25s1.079 3.016 1.294 2.154c.215-.862 2.652-4.022 1.856-5.917-.384-.916 2.231-3.138 2.231-3.138l-2.156-2.369z"/><path fill="#357BAA" d="M29.807 19.266c-1.291.84-1.944 2.066-3.733 4.052l2.395 2.554s6.032-2.286 6.953-5.358c.794-2.649-1.491-4.143-1.491-4.143s-2.89 2.092-4.124 2.895z"/><path fill="#AF7E57" d="M32.932 7.593l-.245 2.329-2.675-.429.01-2.022z"/><path fill="#AF7E57" d="M33.434 7.67c-.953 1.243-2.434 1.138-3.838.894-1.338-.233-1.093-2.671-.44-4.083.658-1.422 2.829-1.498 3.959-.631 1.131.867 1.273 2.577.319 3.82z"/><path fill="#AF7E57" d="M25.146 7.833c-.942-1.226-2.325-2.46-2.501-3.247-.214-.957-.164-1.954-1.499-2.752-.842-.503-.278.882-.154 2.717.071 1.055 1.664 4.103 2.633 5.094.623.637 3.588 1.518 4.57 3.638.166.358.605 1.03 1.117 1.841.85 1.343 1.341 2.469.658 4.033 2.984.155 5.318-1.113 5.318-1.113-.883-2.313-.212-4.329-.94-6.15-1.15-2.879-2.429-2.989-4.35-2.598 0 0-.402-.733-2.142-.546-.839-.331-1.635-.614-2.71-.917z"/><path fill="#4289C1" d="M29.779 19.141c2.984.155 5.625-.824 5.625-.824-.23-1.965-.328-4.602-1.056-6.423-.161-.404-.33-.736-.504-1.021-.011.256-.149.448-.597.356-.97-.2-1.585-1.274-2.541-1.898-.229-.01-.465-.019-.708-.035.76.597 1.077 2.165.639 3.292-.443 1.14-1.332 1.394-2.302 1.034.037.079.377.919.722 1.809.477 1.23.694 2.691.722 3.71z"/><path fill="#292F33" d="M24.3 31.985s.371 1.007 1.62.869c.277-.031-.079 1.164-.39 1.461-.311.297-3.405 1.719-4.959.855-1.553-.864-.345-1.208.864-1.553 1.208-.345 2.865-1.632 2.865-1.632z"/><path fill="#60352A" d="M30.938 2.812c1.992-.206 3.292.989 3.449 2.102.239 1.69-1.15 2.967-1.455 3.627-.308.667-2.387-.338-2.494-1.979-.037-.562-.269-1.191-.2-1.644.062-.41-.732-.442-1.05-.586-.446-.201.367-1.376 1.75-1.52z"/><path fill="#66757F" d="M6.333 2.417h4.708c.792 0-2.208 3.156-3.292 3.156S4.917 2.417 6.333 2.417zm4.334 6.208h4.458c.75 0-2.458 2.949-3.458 2.949s-2.292-2.949-1-2.949zm-1.792 9.118H18c1.292 0-5.542 5.098-6.667 5.098s-4.916-5.098-2.458-5.098zM3.167 29.052h8.071c1.888 0-3.281 4.531-5.113 4.531s-4.792-4.531-2.958-4.531z"/><path fill="#2A6797" d="M29.779 18.5c.01-.046 1.158.125 2.814-.125 1.297-.196 2.811-.54 2.811-.54l.095.649s-1.917.495-3.069.629-2.623.152-2.623.152-.111-.355-.028-.765z"/><path fill="#AF7E57" d="M30.312 5.604c.261-.309.938-.208.917.271-.021.479-.188.938-.75.896-.562-.042-.396-.896-.167-1.167z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#66757F" d="M32.75 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h15.042s4.849.569 4.542 2c-.351 1.634-2.455 6.896-2.542 7.708-.173 1.62 4.735 4.393 4.5 6.292-.733 5.934-3.5 8.25-2.505 11.305.126.386 3.679.718 4.588 1.195C33 31.318 32.958 36 32.75 36z"/><path fill="#99AAB5" d="M30 36H4c-2.209 0-4-1.791-4-4V4c0-2.209 1.791-4 4-4h7.167s8.955.862 8.842 2.062c-.173 1.851-3.639 7.717-2.51 8.812s4.432 3.794 4.571 5.542c.179 2.244-4.284 8.299-1.918 13.304.756 1.598 5.061.957 6.329 1.852C29.644 33.807 30.304 36 30 36z"/><path fill="#292F33" d="M29.759 29.818s.404.278 1.516.666c.443.154-.044 1.84-.305 2.08s-2.188.627-3.928.098c-1.593-.484-.405-.938.744-1.193 1.151-.254 1.973-1.651 1.973-1.651z"/><path fill="#664131" d="M28.313 14.316c-1.108.471-2.32.982-2.873.817-.415-.124-1.235-.382-1.886-.38-.651.002-.76.343-.325 1.021.435.679 1.324 1.039 2.032.823.708-.216 2.276-.29 3.233-.317.956-.025 1.692-2.759-.181-1.964z"/><path fill="#664131" d="M27.85 14.614c.484-.258 1.333-.391 1.333-.391l.929-2.272 2.482 1.636s-1.65 1.934-2.05 2.355c-.4.422-1.793.417-2.898.371-.833-.034-.337-1.411.204-1.699zm1.972 11.558s-2.739-1.872-2.937-1.076c-.198.796 2.252 2.908 2.846 4.888.24.799 1.68 1.663 1.697.079.03-2.735-1.606-3.891-1.606-3.891z"/><path fill="#664131" d="M27.162 25.501s.88 1.752 1.766 1.567 3.219-3.005 3.92-4.075c.701-1.07.419-3.671-1.168-2.416-1.586 1.253-4.518 4.924-4.518 4.924z"/><path fill="#2A6797" d="M34.225 21.936l-6.368.815 3.175 2.892z"/><path fill="#7C533E" d="M27.622 22.132s-2.369 2.157-2.583 3.02c-.215.862.003 3.664-.642 6.25s1.079 3.016 1.294 2.154c.215-.862 2.652-4.022 1.856-5.917-.384-.916 2.231-3.138 2.231-3.138l-2.156-2.369z"/><path fill="#357BAA" d="M29.807 19.266c-1.291.84-1.944 2.066-3.733 4.052l2.395 2.554s6.032-2.286 6.953-5.358c.794-2.649-1.491-4.143-1.491-4.143s-2.89 2.092-4.124 2.895z"/><path fill="#7C533E" d="M32.932 7.593l-.245 2.329-2.675-.429.01-2.022z"/><path fill="#7C533E" d="M33.434 7.67c-.953 1.243-2.434 1.138-3.838.894-1.338-.233-1.093-2.671-.44-4.083.658-1.422 2.829-1.498 3.959-.631 1.131.867 1.273 2.577.319 3.82z"/><path fill="#7C533E" d="M25.146 7.833c-.942-1.226-2.325-2.46-2.501-3.247-.214-.957-.164-1.954-1.499-2.752-.842-.503-.278.882-.154 2.717.071 1.055 1.664 4.103 2.633 5.094.623.637 3.588 1.518 4.57 3.638.166.358.605 1.03 1.117 1.841.85 1.343 1.341 2.469.658 4.033 2.984.155 5.318-1.113 5.318-1.113-.883-2.313-.212-4.329-.94-6.15-1.15-2.879-2.429-2.989-4.35-2.598 0 0-.402-.733-2.142-.546-.839-.331-1.635-.614-2.71-.917z"/><path fill="#4289C1" d="M29.779 19.141c2.984.155 5.625-.824 5.625-.824-.23-1.965-.328-4.602-1.056-6.423-.161-.404-.33-.736-.504-1.021-.011.256-.149.448-.597.356-.97-.2-1.585-1.274-2.541-1.898-.229-.01-.465-.019-.708-.035.76.597 1.077 2.165.639 3.292-.443 1.14-1.332 1.394-2.302 1.034.037.079.377.919.722 1.809.477 1.23.694 2.691.722 3.71z"/><path fill="#292F33" d="M24.3 31.985s.371 1.007 1.62.869c.277-.031-.079 1.164-.39 1.461-.311.297-3.405 1.719-4.959.855-1.553-.864-.345-1.208.864-1.553 1.208-.345 2.865-1.632 2.865-1.632z"/><path fill="#0B0200" d="M30.938 2.812c1.992-.206 3.292.989 3.449 2.102.239 1.69-1.15 2.967-1.455 3.627-.308.667-2.387-.338-2.494-1.979-.037-.562-.269-1.191-.2-1.644.062-.41-.732-.442-1.05-.586-.446-.201.367-1.376 1.75-1.52z"/><path fill="#66757F" d="M6.333 2.417h4.708c.792 0-2.208 3.156-3.292 3.156S4.917 2.417 6.333 2.417zm4.334 6.208h4.458c.75 0-2.458 2.949-3.458 2.949s-2.292-2.949-1-2.949zm-1.792 9.118H18c1.292 0-5.542 5.098-6.667 5.098s-4.916-5.098-2.458-5.098zM3.167 29.052h8.071c1.888 0-3.281 4.531-5.113 4.531s-4.792-4.531-2.958-4.531z"/><path fill="#2A6797" d="M29.779 18.5c.01-.046 1.158.125 2.814-.125 1.297-.196 2.811-.54 2.811-.54l.095.649s-1.917.495-3.069.629-2.623.152-2.623.152-.111-.355-.028-.765z"/><path fill="#7C533E" d="M30.312 5.604c.261-.309.938-.208.917.271-.021.479-.188.938-.75.896-.562-.042-.396-.896-.167-1.167z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#FFDC5D" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#FFDC5D" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#F9CA55" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#F9CA55" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#FFDC5D" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#FFDC5D" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#F9CA55" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#FFDC5D" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#FFAC33" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F7DECE" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#F7DECE" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#EEC2AD" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#EEC2AD" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F7DECE" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#F7DECE" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#EEC2AD" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#F7DECE" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#292F33" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#F3D2A2" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#F3D2A2" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#E2C196" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#E2C196" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#F3D2A2" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#F3D2A2" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#E2C196" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#F3D2A2" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#FFE51E" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#D4AB88" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#D4AB88" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#CC9B7A" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#CC9B7A" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#D4AB88" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#D4AB88" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#CC9B7A" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#D4AB88" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#C1694F" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#963B22" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#AF7E57" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#AF7E57" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#9B6A49" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#9B6A49" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#AF7E57" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#AF7E57" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#9B6A49" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#AF7E57" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#915A34" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#60352A" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#4289C1" d="M28.632 30.563c-.178-1.426-1.568-1.931-2.257-1.931-.884 0-2.992 1.106-3.375-.585l-.037-.183-9.91-.012-.053.184c-.375 1.708-2.492.596-3.378.596-.689 0-2.079.505-2.257 1.931C7.365 30.563 14.13 33 18 33c3.873 0 10.632-2.437 10.632-2.437z"/><path fill="#7C533E" d="M12.497 16.024c-.674-.134-1.336 1.309-1.47 1.983L9.846 23.02c-1.619 1.166-1.57 3.454-2.808 4.512-.171.146-.949.766-1.203 1.325-.336.738.22.444.045.695-.406.584-.414 1.478-.127 1.686l.373.1c.557.403 2.081-1.336 2.281-2.302.3-1.443 3.075-3.25 3.589-4.653.006-.017.007-.029.013-.046.097-.138.169-.294.204-.469l1.266-6.375c.135-.674-.308-1.335-.982-1.469zm17.59 13.588c-.175-.251.437-.016.101-.754-.255-.56-1.089-1.179-1.259-1.325-1.246-1.064-1.133-3.377-2.781-4.535l-1.176-4.99c-.134-.674-.795-2.117-1.47-1.983-.674.134-1.116.795-.983 1.47l1.266 6.375c.038.191.125.355.236.501l.004.014c.513 1.402 3.289 3.209 3.589 4.653.201.967 1.725 2.706 2.281 2.302l.373-.1c.29-.21.226-1.044-.181-1.628z"/><path fill="#7C533E" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s-8.287-1.515-9.713-2.465c-.658-.439-1.662-1.54-1.396-2.465.263-.913 1.139-1.429 2.198-1.455 2.065-.051 6 2.941 8.851 4.04.518.2.948-.052 1.604.119.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.094.974-.861 1.395-1.901 1.484z"/><path fill="#664131" d="M22.757 35.82c-1.04.089-2.02-.208-3 0-.475.03-.802 0-1.277-.416s.889-2.399 1.545-2.228c.683.178 2.317-.555 3.149-.446 1.129.149 1.574.683 1.485 1.604-.095.976-.862 1.397-1.902 1.486zm-11.561-2.614c.238-.624 1.188-.891 1.634-.95s1.188.208 1.693.416c.505.208 1.118.234 1.504.085.386-.149.668-.124.958 0 .078.033.423 0 .546-.067 0 0 1.79.616 1.136.824-.653.208-5.421.524-6.074.524s-1.397-.832-1.397-.832z"/><path fill="#664131" d="M7.371 30.474c.006-.02.016-.037.022-.056.201.762.76 1.66 1.401 1.898.802.297 7.247 2.198 8.049 2.287.802.089 1.99.208 2.228.386.238.178.861.238 1.366.119.505-.119 1.782.356 2.436.208.653-.148 1.604-.445 1.782-1.247.003-.015.007-.022.011-.034.004.096.003.195-.007.302-.094.975-.861 1.396-1.901 1.485s-2.02-.208-3 0c-.475.03-.802 0-1.277-.416-.475-.416-8.287-1.515-9.713-2.465-.659-.441-1.663-1.543-1.397-2.467z"/><path fill="#7C533E" d="M13.243 35.82c1.04.089 2.02-.208 3 0 .475.03.802 0 1.277-.416s8.287-1.515 9.713-2.465c.658-.439 1.662-1.54 1.396-2.465-.263-.913-1.139-1.429-2.198-1.455-2.065-.051-6 2.941-8.851 4.04-.518.2-.948-.052-1.604.119-.683.178-2.317-.555-3.149-.446-1.129.149-1.574.683-1.485 1.604.094.974.861 1.395 1.901 1.484z"/><path fill="#77B255" d="M22.543 15h-9.06c-2.562 0-2.943 4.394-2.943 4.394l2.458.535s.31 3.589.271 5.27c-.038 1.682-.27 2.801-.27 2.801s1.912.394 5 .394 5-.394 5-.394-.349-1.606-.349-2.978.349-5.093.349-5.093l2.458-.535S25.105 15 22.543 15z"/><path fill="#7C533E" d="M15.667 10.389v4.666c0 .312.553 1.488 2.333 1.488 1.781 0 2.333-1.214 2.333-1.488v-4.666h-4.666z"/><path fill="#664131" d="M20.333 9.774l-4.666.022v4.644s2.333 1.167 4.666 0V9.774z"/><path fill="#7C533E" d="M22.954 3.966h-9.908v5.433c0 2.737 2.218 4.954 4.954 4.954 2.736 0 4.954-2.217 4.954-4.954V3.966z"/><path fill="#3D2E24" d="M19.982 12.057h-3.964s0 .991 1.982.991 1.982-.991 1.982-.991zM16.25 8.75h-1.5c-.137 0-.25-.113-.25-.25s.113-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm5 0h-1.5c-.138 0-.25-.113-.25-.25s.112-.25.25-.25h1.5c.138 0 .25.113.25.25s-.112.25-.25.25zm-4.241 1.326h1.982s0 .991-.991.991-.991-.991-.991-.991z"/><path fill="#0B0200" d="M18 .953c3.385 0 5.5 2.579 5.5 4.728 0 2.149-.423 3.009-.846 2.149l-.846-1.719s-2.538 0-3.384-.86c0 0 1.269 2.579-1.269 0 0 0 .423 1.72-2.115-.429 0 0-1.269.86-1.692 3.008-.117.597-.846 0-.846-2.149C12.5 3.532 14.192.953 18 .953"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M26 26.163l.017.836H6V36h24v-9.835z"/><path fill="#FFDC5D" d="M14 26.999s.85 2.063 3.55 2.063S21 26.999 21 26.999l-.024-3.9-6.976-.1v4z"/><path fill="#F9CA55" d="M14.019 25.029c1.058 1.207 2.049 1.51 3.477 1.51 1.426 0 2.426-.304 3.485-1.51v-3.515H14.02v3.515z"/><path fill="#FFDC5D" d="M11.842 16.187c0 1.271-.639 2.304-1.426 2.304-.788 0-1.426-1.033-1.426-2.304 0-1.272.639-2.305 1.426-2.305.788 0 1.426 1.033 1.426 2.305m14.26 0c0 1.271-.638 2.304-1.424 2.304-.789 0-1.428-1.033-1.428-2.304 0-1.272.639-2.305 1.428-2.305.786 0 1.424 1.033 1.424 2.305"/><path fill="#FFDC5D" d="M10.13 17.087c0-4.911 3.32-8.893 7.416-8.893 4.095 0 7.416 3.982 7.416 8.893 0 4.91-3.32 8.893-7.416 8.893-4.095-.001-7.416-3.983-7.416-8.893"/><path fill="#C1694F" d="M17.546 23.099c-2.396 0-3.132-.62-3.256-.745-.222-.225-.222-.59 0-.815.216-.218.562-.223.786-.019.045.032.627.428 2.47.428 1.914 0 2.466-.426 2.472-.431.223-.223.573-.213.796.014.223.225.21.6-.013.824-.122.124-.858.744-3.255.744"/><path fill="#FFAC33" d="M17.546 5.243c4.914 0 7.986 3.663 7.986 6.714 0 3.051-.614 4.273-1.229 3.051l-1.229-2.44s-3.686 0-4.915-1.223c0 0 1.845 3.663-1.843 0 0 0 .614 2.442-3.071-.609 0 0-1.843 1.221-2.457 4.272-.17.847-1.229 0-1.229-3.051.001-3.052 2.459-6.714 7.987-6.714"/><path fill="#662113" d="M14.066 17.122c-.478 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.479 0 .87.395.87.878v.879c0 .483-.392.878-.87.878m6.961 0c-.479 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.477 0 .87.395.87.878v.879c0 .483-.393.878-.87.878"/><path fill="#C1694F" d="M18.199 19.539h-1.306c-.36 0-.652-.296-.652-.659 0-.362.293-.659.652-.659h1.306c.359 0 .652.297.652.659.001.363-.292.659-.652.659"/><path fill="#D1D3D4" d="M5.895 14.205s-3.834 1.39-4.214 6.221c0 0-2.4-4.817-.522-10.149l4.736 3.928zm14.156-8.228s-2.758-3.005-7.363-1.497c0 0 3.522-4.069 9.167-4.387l-1.804 5.884zm9.22 10.36s1.972-3.571-.923-7.457c0 0 4.978 2.046 7.075 7.296l-6.152.161z"/><circle fill="#5C913B" cx="4.603" cy="10.986" r="3.5"/><circle fill="#BE1931" cx="22.516" cy="3.5" r="3.5"/><circle fill="#3B88C3" cx="32.396" cy="17.854" r="3.5"/><path fill="#F9CA55" d="M32.646 23.488c-.111-.538-.634-.884-1.169-.774l-2.057.431h-1.809c-.85 0-1.538.695-1.538 1.555v1.552h3.847c.83 0 1.503-.666 1.532-1.496l.273-.057h.503c0-.059-.022-.113-.035-.169.342-.215.537-.621.453-1.042z"/><path fill="#FFDC5D" d="M36.075 23.921c0-.429-.344-.776-.77-.776l-4.616.776h-3.847c-.426 0-.77.349-.77.778L26 26.25l1.611.002h3.078l4.616-1.553c.001 0 .77-.348.77-.778z"/><path fill="#F9CA55" d="M3.43 27.236c.11-.538.633-.884 1.168-.774l2.058.431h1.808c.85 0 1.539.695 1.539 1.555V30H6.155c-.83 0-1.503-.666-1.532-1.496l-.273-.057h-.503c0-.059.022-.113.036-.169-.343-.215-.538-.621-.453-1.042z"/><path fill="#FFDC5D" d="M0 27.669c0-.429.344-.776.769-.776l4.617.776h3.847c.425 0 .769.349.769.778V30H5.386L.769 28.447S0 28.099 0 27.669z"/><path fill="#5C913B" d="M10 30h1v6h-1zm15-3h1v9h-1z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M26 26.163l.017.836H6V36h24v-9.835z"/><path fill="#F7DECE" d="M14 26.999s.85 2.063 3.55 2.063S21 26.999 21 26.999l-.024-3.9-6.976-.1v4z"/><path fill="#EEC2AD" d="M14.066 25.029c1.058 1.207 2.049 1.51 3.477 1.51 1.426 0 2.426-.304 3.485-1.51v-3.515h-6.961v3.515z"/><path fill="#F7DECE" d="M11.842 16.187c0 1.271-.639 2.304-1.426 2.304-.788 0-1.426-1.033-1.426-2.304 0-1.272.639-2.305 1.426-2.305.788 0 1.426 1.033 1.426 2.305m14.26 0c0 1.271-.638 2.304-1.424 2.304-.789 0-1.428-1.033-1.428-2.304 0-1.272.639-2.305 1.428-2.305.786 0 1.424 1.033 1.424 2.305"/><path fill="#F7DECE" d="M10.13 17.087c0-4.911 3.32-8.893 7.416-8.893 4.095 0 7.416 3.982 7.416 8.893 0 4.91-3.32 8.893-7.416 8.893-4.095-.001-7.416-3.983-7.416-8.893"/><path fill="#C1694F" d="M17.546 23.099c-2.396 0-3.132-.62-3.256-.745-.222-.225-.222-.59 0-.815.216-.218.562-.223.786-.019.045.032.627.428 2.47.428 1.914 0 2.466-.426 2.472-.431.223-.223.573-.213.796.014.223.225.21.6-.013.824-.122.124-.858.744-3.255.744"/><path fill="#292F33" d="M17.546 5.243c4.914 0 7.986 3.663 7.986 6.714 0 3.051-.614 4.273-1.229 3.051l-1.229-2.44s-3.686 0-4.915-1.223c0 0 1.845 3.663-1.843 0 0 0 .614 2.442-3.071-.609 0 0-1.843 1.221-2.457 4.272-.17.847-1.229 0-1.229-3.051.001-3.052 2.459-6.714 7.987-6.714"/><path fill="#662113" d="M14.066 17.122c-.478 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.479 0 .87.395.87.878v.879c0 .483-.392.878-.87.878m6.961 0c-.479 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.477 0 .87.395.87.878v.879c0 .483-.393.878-.87.878"/><path fill="#C1694F" d="M18.199 19.539h-1.306c-.36 0-.652-.296-.652-.659 0-.362.293-.659.652-.659h1.306c.359 0 .652.297.652.659.001.363-.292.659-.652.659"/><path fill="#D1D3D4" d="M5.895 14.205s-3.834 1.39-4.214 6.221c0 0-2.4-4.817-.522-10.149l4.736 3.928zm14.156-8.228s-2.758-3.005-7.363-1.497c0 0 3.522-4.069 9.167-4.387l-1.804 5.884zm9.22 10.36s1.972-3.571-.923-7.457c0 0 4.978 2.046 7.075 7.296l-6.152.161z"/><circle fill="#5C913B" cx="4.603" cy="10.986" r="3.5"/><circle fill="#BE1931" cx="22.516" cy="3.5" r="3.5"/><circle fill="#3B88C3" cx="32.396" cy="17.854" r="3.5"/><path fill="#EEC2AD" d="M32.646 23.488c-.111-.538-.634-.884-1.169-.774l-2.057.431h-1.809c-.85 0-1.538.695-1.538 1.555v1.552h3.847c.83 0 1.503-.666 1.532-1.496l.273-.057h.503c0-.059-.022-.113-.035-.169.342-.215.537-.621.453-1.042z"/><path fill="#F7DECE" d="M36.075 23.921c0-.429-.344-.776-.77-.776l-4.616.776h-3.847c-.426 0-.77.349-.77.778L26 26.25l1.611.002h3.078l4.616-1.553c.001 0 .77-.348.77-.778z"/><path fill="#EEC2AD" d="M3.43 27.236c.11-.538.633-.884 1.168-.774l2.058.431h1.808c.85 0 1.539.695 1.539 1.555V30H6.155c-.83 0-1.503-.666-1.532-1.496l-.273-.057h-.503c0-.059.022-.113.036-.169-.343-.215-.538-.621-.453-1.042z"/><path fill="#F7DECE" d="M0 27.669c0-.429.344-.776.769-.776l4.617.776h3.847c.425 0 .769.349.769.778V30H5.386L.769 28.447S0 28.099 0 27.669z"/><path fill="#5C913B" d="M10 30h1v6h-1zm15-3h1v9h-1z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M26 26.163l.017.836H6V36h24v-9.835z"/><path fill="#F3D2A2" d="M14 26.999s.85 2.063 3.55 2.063S21 26.999 21 26.999l-.024-3.9-6.976-.1v4z"/><path fill="#E2C196" d="M14.066 25.029c1.058 1.207 2.049 1.51 3.477 1.51 1.426 0 2.426-.304 3.485-1.51v-3.515h-6.961v3.515z"/><path fill="#F3D2A2" d="M11.842 16.187c0 1.271-.639 2.304-1.426 2.304-.788 0-1.426-1.033-1.426-2.304 0-1.272.639-2.305 1.426-2.305.788 0 1.426 1.033 1.426 2.305m14.26 0c0 1.271-.638 2.304-1.424 2.304-.789 0-1.428-1.033-1.428-2.304 0-1.272.639-2.305 1.428-2.305.786 0 1.424 1.033 1.424 2.305"/><path fill="#F3D2A2" d="M10.13 17.087c0-4.911 3.32-8.893 7.416-8.893 4.095 0 7.416 3.982 7.416 8.893 0 4.91-3.32 8.893-7.416 8.893-4.095-.001-7.416-3.983-7.416-8.893"/><path fill="#C1694F" d="M17.546 23.099c-2.396 0-3.132-.62-3.256-.745-.222-.225-.222-.59 0-.815.216-.218.562-.223.786-.019.045.032.627.428 2.47.428 1.914 0 2.466-.426 2.472-.431.223-.223.573-.213.796.014.223.225.21.6-.013.824-.122.124-.858.744-3.255.744"/><path fill="#FFE51E" d="M17.546 5.243c4.914 0 7.986 3.663 7.986 6.714 0 3.051-.614 4.273-1.229 3.051l-1.229-2.44s-3.686 0-4.915-1.223c0 0 1.845 3.663-1.843 0 0 0 .614 2.442-3.071-.609 0 0-1.843 1.221-2.457 4.272-.17.847-1.229 0-1.229-3.051.001-3.052 2.459-6.714 7.987-6.714"/><path fill="#662113" d="M14.066 17.122c-.478 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.479 0 .87.395.87.878v.879c0 .483-.392.878-.87.878m6.961 0c-.479 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.477 0 .87.395.87.878v.879c0 .483-.393.878-.87.878"/><path fill="#C1694F" d="M18.199 19.539h-1.306c-.36 0-.652-.296-.652-.659 0-.362.293-.659.652-.659h1.306c.359 0 .652.297.652.659.001.363-.292.659-.652.659"/><path fill="#D1D3D4" d="M5.895 14.205s-3.834 1.39-4.214 6.221c0 0-2.4-4.817-.522-10.149l4.736 3.928zm14.156-8.228s-2.758-3.005-7.363-1.497c0 0 3.522-4.069 9.167-4.387l-1.804 5.884zm9.22 10.36s1.972-3.571-.923-7.457c0 0 4.978 2.046 7.075 7.296l-6.152.161z"/><circle fill="#5C913B" cx="4.603" cy="10.986" r="3.5"/><circle fill="#BE1931" cx="22.516" cy="3.5" r="3.5"/><circle fill="#3B88C3" cx="32.396" cy="17.854" r="3.5"/><path fill="#E2C196" d="M32.646 23.488c-.111-.538-.634-.884-1.169-.774l-2.057.431h-1.809c-.85 0-1.538.695-1.538 1.555v1.552h3.847c.83 0 1.503-.666 1.532-1.496l.273-.057h.503c0-.059-.022-.113-.035-.169.342-.215.537-.621.453-1.042z"/><path fill="#F3D2A2" d="M36.075 23.921c0-.429-.344-.776-.77-.776l-4.616.776h-3.847c-.426 0-.77.349-.77.778L26 26.25l1.611.002h3.078l4.616-1.553c.001 0 .77-.348.77-.778z"/><path fill="#E2C196" d="M3.43 27.236c.11-.538.633-.884 1.168-.774l2.058.431h1.808c.85 0 1.539.695 1.539 1.555V30H6.155c-.83 0-1.503-.666-1.532-1.496l-.273-.057h-.503c0-.059.022-.113.036-.169-.343-.215-.538-.621-.453-1.042z"/><path fill="#F3D2A2" d="M0 27.669c0-.429.344-.776.769-.776l4.617.776h3.847c.425 0 .769.349.769.778V30H5.386L.769 28.447S0 28.099 0 27.669z"/><path fill="#5C913B" d="M10 30h1v6h-1zm15-3h1v9h-1z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M26 26.163l.017.836H6V36h24v-9.835z"/><path fill="#D5AB88" d="M14 26.999s.85 2.063 3.55 2.063S21 26.999 21 26.999l-.024-3.9-6.976-.1v4z"/><path fill="#CC9B7A" d="M14.066 25.029c1.058 1.207 2.049 1.51 3.477 1.51 1.426 0 2.426-.304 3.485-1.51v-3.515h-6.961v3.515z"/><path fill="#D5AB88" d="M11.842 16.187c0 1.271-.639 2.304-1.426 2.304-.788 0-1.426-1.033-1.426-2.304 0-1.272.639-2.305 1.426-2.305.788 0 1.426 1.033 1.426 2.305m14.26 0c0 1.271-.638 2.304-1.424 2.304-.789 0-1.428-1.033-1.428-2.304 0-1.272.639-2.305 1.428-2.305.786 0 1.424 1.033 1.424 2.305"/><path fill="#D5AB88" d="M10.13 17.087c0-4.911 3.32-8.893 7.416-8.893 4.095 0 7.416 3.982 7.416 8.893 0 4.91-3.32 8.893-7.416 8.893-4.095-.001-7.416-3.983-7.416-8.893"/><path fill="#C1694F" d="M17.546 23.099c-2.396 0-3.132-.62-3.256-.745-.222-.225-.222-.59 0-.815.216-.218.562-.223.786-.019.045.032.627.428 2.47.428 1.914 0 2.466-.426 2.472-.431.223-.223.573-.213.796.014.223.225.21.6-.013.824-.122.124-.858.744-3.255.744"/><path fill="#963B22" d="M17.546 5.243c4.914 0 7.986 3.663 7.986 6.714 0 3.051-.614 4.273-1.229 3.051l-1.229-2.44s-3.686 0-4.915-1.223c0 0 1.845 3.663-1.843 0 0 0 .614 2.442-3.071-.609 0 0-1.843 1.221-2.457 4.272-.17.847-1.229 0-1.229-3.051.001-3.052 2.459-6.714 7.987-6.714"/><path fill="#662113" d="M14.066 17.122c-.478 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.479 0 .87.395.87.878v.879c0 .483-.392.878-.87.878m6.961 0c-.479 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.477 0 .87.395.87.878v.879c0 .483-.393.878-.87.878"/><path fill="#C1694F" d="M18.199 19.539h-1.306c-.36 0-.652-.296-.652-.659 0-.362.293-.659.652-.659h1.306c.359 0 .652.297.652.659.001.363-.292.659-.652.659"/><path fill="#D1D3D4" d="M5.895 14.205s-3.834 1.39-4.214 6.221c0 0-2.4-4.817-.522-10.149l4.736 3.928zm14.156-8.228s-2.758-3.005-7.363-1.497c0 0 3.522-4.069 9.167-4.387l-1.804 5.884zm9.22 10.36s1.972-3.571-.923-7.457c0 0 4.978 2.046 7.075 7.296l-6.152.161z"/><circle fill="#5C913B" cx="4.603" cy="10.986" r="3.5"/><circle fill="#BE1931" cx="22.516" cy="3.5" r="3.5"/><circle fill="#3B88C3" cx="32.396" cy="17.854" r="3.5"/><path fill="#CC9B7A" d="M32.646 23.488c-.111-.538-.634-.884-1.169-.774l-2.057.431h-1.809c-.85 0-1.538.695-1.538 1.555v1.552h3.847c.83 0 1.503-.666 1.532-1.496l.273-.057h.503c0-.059-.022-.113-.035-.169.342-.215.537-.621.453-1.042z"/><path fill="#D5AB88" d="M36.075 23.921c0-.429-.344-.776-.77-.776l-4.616.776h-3.847c-.426 0-.77.349-.77.778L26 26.25l1.611.002h3.078l4.616-1.553c.001 0 .77-.348.77-.778z"/><path fill="#CC9B7A" d="M3.43 27.236c.11-.538.633-.884 1.168-.774l2.058.431h1.808c.85 0 1.539.695 1.539 1.555V30H6.155c-.83 0-1.503-.666-1.532-1.496l-.273-.057h-.503c0-.059.022-.113.036-.169-.343-.215-.538-.621-.453-1.042z"/><path fill="#D5AB88" d="M0 27.669c0-.429.344-.776.769-.776l4.617.776h3.847c.425 0 .769.349.769.778V30H5.386L.769 28.447S0 28.099 0 27.669z"/><path fill="#5C913B" d="M10 30h1v6h-1zm15-3h1v9h-1z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M26 26.163l.017.836H6V36h24v-9.835z"/><path fill="#AF7E57" d="M14 26.999s.85 2.063 3.55 2.063S21 26.999 21 26.999l-.024-3.9-6.976-.1v4z"/><path fill="#9B6A49" d="M14.066 25.029c1.058 1.207 2.049 1.51 3.477 1.51 1.426 0 2.426-.304 3.485-1.51v-3.515h-6.961v3.515z"/><path fill="#AF7E57" d="M11.842 16.187c0 1.271-.639 2.304-1.426 2.304-.788 0-1.426-1.033-1.426-2.304 0-1.272.639-2.305 1.426-2.305.788 0 1.426 1.033 1.426 2.305m14.26 0c0 1.271-.638 2.304-1.424 2.304-.789 0-1.428-1.033-1.428-2.304 0-1.272.639-2.305 1.428-2.305.786 0 1.424 1.033 1.424 2.305"/><path fill="#AF7E57" d="M10.13 17.087c0-4.911 3.32-8.893 7.416-8.893 4.095 0 7.416 3.982 7.416 8.893 0 4.91-3.32 8.893-7.416 8.893-4.095-.001-7.416-3.983-7.416-8.893"/><path fill="#915A34" d="M17.546 23.099c-2.396 0-3.132-.62-3.256-.745-.222-.225-.222-.59 0-.815.216-.218.562-.223.786-.019.045.032.627.428 2.47.428 1.914 0 2.466-.426 2.472-.431.223-.223.573-.213.796.014.223.225.21.6-.013.824-.122.124-.858.744-3.255.744"/><path fill="#60352A" d="M17.546 5.243c4.914 0 7.986 3.663 7.986 6.714 0 3.051-.614 4.273-1.229 3.051l-1.229-2.44s-3.686 0-4.915-1.223c0 0 1.845 3.663-1.843 0 0 0 .614 2.442-3.071-.609 0 0-1.843 1.221-2.457 4.272-.17.847-1.229 0-1.229-3.051.001-3.052 2.459-6.714 7.987-6.714"/><path fill="#60352A" d="M14.066 17.122c-.478 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.479 0 .87.395.87.878v.879c0 .483-.392.878-.87.878m6.961 0c-.479 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.477 0 .87.395.87.878v.879c0 .483-.393.878-.87.878"/><path fill="#915A34" d="M18.199 19.539h-1.306c-.36 0-.652-.296-.652-.659 0-.362.293-.659.652-.659h1.306c.359 0 .652.297.652.659.001.363-.292.659-.652.659"/><path fill="#D1D3D4" d="M5.895 14.205s-3.834 1.39-4.214 6.221c0 0-2.4-4.817-.522-10.149l4.736 3.928zm14.156-8.228s-2.758-3.005-7.363-1.497c0 0 3.522-4.069 9.167-4.387l-1.804 5.884zm9.22 10.36s1.972-3.571-.923-7.457c0 0 4.978 2.046 7.075 7.296l-6.152.161z"/><circle fill="#5C913B" cx="4.603" cy="10.986" r="3.5"/><circle fill="#BE1931" cx="22.516" cy="3.5" r="3.5"/><circle fill="#3B88C3" cx="32.396" cy="17.854" r="3.5"/><path fill="#77B255" d="M30 34.44l-3.898-2.649L26 26l4 .252z"/><path fill="#9B6A49" d="M32.646 23.488c-.111-.538-.634-.884-1.169-.774l-2.057.431h-1.809c-.85 0-1.538.695-1.538 1.555v1.552h3.847c.83 0 1.503-.666 1.532-1.496l.273-.057h.503c0-.059-.022-.113-.035-.169.342-.215.537-.621.453-1.042z"/><path fill="#AF7E57" d="M36.075 23.921c0-.429-.344-.776-.77-.776l-4.616.776h-3.847c-.426 0-.77.349-.77.778L26 26.25l1.611.002h3.078l4.616-1.553c.001 0 .77-.348.77-.778z"/><path fill="#9B6A49" d="M3.43 27.236c.11-.538.633-.884 1.168-.774l2.058.431h1.808c.85 0 1.539.695 1.539 1.555V30H6.155c-.83 0-1.503-.666-1.532-1.496l-.273-.057h-.503c0-.059.022-.113.036-.169-.343-.215-.538-.621-.453-1.042z"/><path fill="#AF7E57" d="M0 27.669c0-.429.344-.776.769-.776l4.617.776h3.847c.425 0 .769.349.769.778V30H5.386L.769 28.447S0 28.099 0 27.669z"/><path fill="#5C913B" d="M10 30h1v6h-1zm15-3h1v9h-1z"/></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#77B255" d="M26 26.163l.017.836H6V36h24v-9.835z"/><path fill="#7C533E" d="M14 26.999s.85 2.063 3.55 2.063S21 26.999 21 26.999l-.024-3.9-6.976-.1v4z"/><path fill="#664131" d="M14.066 25.029c1.058 1.207 2.049 1.51 3.477 1.51 1.426 0 2.426-.304 3.485-1.51v-3.515h-6.961v3.515z"/><path fill="#7C533E" d="M11.842 16.187c0 1.271-.639 2.304-1.426 2.304-.788 0-1.426-1.033-1.426-2.304 0-1.272.639-2.305 1.426-2.305.788 0 1.426 1.033 1.426 2.305m14.26 0c0 1.271-.638 2.304-1.424 2.304-.789 0-1.428-1.033-1.428-2.304 0-1.272.639-2.305 1.428-2.305.786 0 1.424 1.033 1.424 2.305"/><path fill="#7C533E" d="M10.13 17.087c0-4.911 3.32-8.893 7.416-8.893 4.095 0 7.416 3.982 7.416 8.893 0 4.91-3.32 8.893-7.416 8.893-4.095-.001-7.416-3.983-7.416-8.893"/><path fill="#3D2E24" d="M17.546 23.099c-2.396 0-3.132-.62-3.256-.745-.222-.225-.222-.59 0-.815.216-.218.562-.223.786-.019.045.032.627.428 2.47.428 1.914 0 2.466-.426 2.472-.431.223-.223.573-.213.796.014.223.225.21.6-.013.824-.122.124-.858.744-3.255.744"/><path fill="#0B0200" d="M17.546 5.243c4.914 0 7.986 3.663 7.986 6.714 0 3.051-.614 4.273-1.229 3.051l-1.229-2.44s-3.686 0-4.915-1.223c0 0 1.845 3.663-1.843 0 0 0 .614 2.442-3.071-.609 0 0-1.843 1.221-2.457 4.272-.17.847-1.229 0-1.229-3.051.001-3.052 2.459-6.714 7.987-6.714"/><path d="M14.066 17.122c-.478 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.479 0 .87.395.87.878v.879c0 .483-.392.878-.87.878m6.961 0c-.479 0-.87-.395-.87-.878v-.879c0-.483.392-.878.87-.878.477 0 .87.395.87.878v.879c0 .483-.393.878-.87.878"/><path fill="#3D2E24" d="M18.199 19.539h-1.306c-.36 0-.652-.296-.652-.659 0-.362.293-.659.652-.659h1.306c.359 0 .652.297.652.659.001.363-.292.659-.652.659"/><path fill="#D1D3D4" d="M5.895 14.205s-3.834 1.39-4.214 6.221c0 0-2.4-4.817-.522-10.149l4.736 3.928zm14.156-8.228s-2.758-3.005-7.363-1.497c0 0 3.522-4.069 9.167-4.387l-1.804 5.884zm9.22 10.36s1.972-3.571-.923-7.457c0 0 4.978 2.046 7.075 7.296l-6.152.161z"/><circle fill="#5C913B" cx="4.603" cy="10.986" r="3.5"/><circle fill="#BE1931" cx="22.516" cy="3.5" r="3.5"/><circle fill="#3B88C3" cx="32.396" cy="17.854" r="3.5"/><path fill="#664131" d="M32.646 23.488c-.111-.538-.634-.884-1.169-.774l-2.057.431h-1.809c-.85 0-1.538.695-1.538 1.555v1.552h3.847c.83 0 1.503-.666 1.532-1.496l.273-.057h.503c0-.059-.022-.113-.035-.169.342-.215.537-.621.453-1.042z"/><path fill="#7C533E" d="M36.075 23.921c0-.429-.344-.776-.77-.776l-4.616.776h-3.847c-.426 0-.77.349-.77.778L26 26.25l1.611.002h3.078l4.616-1.553c.001 0 .77-.348.77-.778z"/><path fill="#664131" d="M3.43 27.236c.11-.538.633-.884 1.168-.774l2.058.431h1.808c.85 0 1.539.695 1.539 1.555V30H6.155c-.83 0-1.503-.666-1.532-1.496l-.273-.057h-.503c0-.059.022-.113.036-.169-.343-.215-.538-.621-.453-1.042z"/><path fill="#7C533E" d="M0 27.669c0-.429.344-.776.769-.776l4.617.776h3.847c.425 0 .769.349.769.778V30H5.386L.769 28.447S0 28.099 0 27.669z"/><path fill="#5C913B" d="M10 30h1v6h-1zm15-3h1v9h-1z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

Some files were not shown because too many files have changed in this diff Show More