1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
This commit is contained in:
Andrew Simachev 2023-12-09 14:59:46 +01:00
commit d2906a9466
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
230 changed files with 3676 additions and 1372 deletions

View file

@ -5,7 +5,7 @@ npx lint-staged --concurrent false
# npm run typecheck
# Checking for secrets
gitleaks protect --verbose --redact --staged
#gitleaks protect --verbose --redact --staged
# Checking dependencies' licenses
npx license-checker --production --json --out licenses.json

85
dist/embed/iframe.html vendored Normal file
View file

@ -0,0 +1,85 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
* { margin: 0px; padding: 0px; }
html, body { height: 100%; }
body { background-color: #fff; }
body.dark { background-color: #171717; }
iframe { width: 100% !important; height: 100% !important; }
</style>
</head>
<body>
<script type="text/javascript">
let cachedHtml = '';
window.addEventListener('message', e => {
if (!e.origin.match(/\/\/localhost:/) && (e.origin !== 'file://')) {
console.error('[origin]', e.origin);
return;
};
const body = document.body;
const { html, js, theme, libs } = e.data;
loadLibs(libs, () => {
if (cachedHtml !== html) {
body.innerHTML = html;
cachedHtml = html;
};
body.className = theme;
if (js) {
try {
eval(js);
} catch (e) {
console.error(e);
};
};
resize(e);
});
});
window.addEventListener('resize', resize);
window.onerror = function (message, url, lineNumber) {
return true;
};
function resize (e) {
window.parent.postMessage({ height: document.documentElement.scrollHeight }, '*');
};
function loadLibs (list, callBack) {
if (!list.length) {
if (callBack) {
callBack();
};
return;
};
const src = list.shift();
const script = document.createElement('script');
document.head.appendChild(script);
script.onload = function (e) {
if (list.length) {
loadLibs(list, callBack);
} else
if (callBack) {
callBack();
};
};
script.type = 'text/javascript';
script.src = src;
};
</script>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Before After
Before After

BIN
dist/img/emoji/2642-fe0f.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
dist/img/emoji/2695-fe0f.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -22,17 +22,12 @@ const WindowManager = require('./electron/js/window.js');
const Server = require('./electron/js/server.js');
const Util = require('./electron/js/util.js');
const csp = [
`default-src 'self' 'unsafe-eval' blob: http://localhost:*`,
`img-src 'self' http://*:* https://*:* data: blob: file://*`,
`media-src 'self' http://*:* https://*:* data: blob: file://*`,
`style-src 'unsafe-inline' http://localhost:* file://*`,
`font-src data: file://* http://localhost:*`,
`connect-src file://* http://localhost:* http://127.0.0.1:* ws://localhost:* https://*.anytype.io https://api.amplitude.com/ devtools://devtools data:`,
`script-src-elem file: http://localhost:* https://sentry.io devtools://devtools 'unsafe-inline'`,
`frame-src chrome-extension://react-developer-tools`,
`worker-src 'self' 'unsafe-eval' blob: http://localhost:*`,
];
const Cors = require('./electron/json/cors.json');
const csp = [];
for (let i in Cors) {
csp.push([ i ].concat(Cors[i]).join(' '));
};
app.commandLine.appendSwitch('ignore-connections-limit', 'localhost, 127.0.0.1');
app.removeAsDefaultProtocolClient(protocol);

View file

Before

Width:  |  Height:  |  Size: 251 KiB

After

Width:  |  Height:  |  Size: 251 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 452 B

After

Width:  |  Height:  |  Size: 452 B

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 785 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Before After
Before After

View file

@ -131,7 +131,7 @@ class MenuManager {
{ label: Util.translate('electronMenuZoomOut'), accelerator: 'CmdOrCtrl+-', click: () => Api.setZoom(this.win, this.win.webContents.getZoomLevel() - 1) },
{ label: Util.translate('electronMenuZoomDefault'), accelerator: 'CmdOrCtrl+0', click: () => Api.setZoom(this.win, 0) },
{
label: Util.translate('electronMenuFullscreen'), accelerator: 'CmdOrCtrl+Alt+F', type: 'checkbox', checked: this.win.isFullScreen(),
label: Util.translate('electronMenuFullscreen'), accelerator: (is.macos ? 'Cmd+Ctrl+F' : 'Ctrl+Alt+F'), type: 'checkbox', checked: this.win.isFullScreen(),
click: () => this.win.setFullScreen(!this.win.isFullScreen())
},
{ label: Util.translate('electronMenuReload'), accelerator: 'CmdOrCtrl+R', click: () => this.win.reload() }

View file

@ -215,11 +215,11 @@ class Util {
return [
"da-DK", "de-DE", "en-US",
"es-ES", "fr-FR", "hi-IN",
"id-ID", "it-IT", "nl-NL",
"no-NO", "pl-PL", "pt-BR",
"ro-RO", "ru-RU", "tr-TR",
"uk-UA", "vi-VN", "zh-CN",
"zh-TW"
"id-ID", "it-IT", "ja-JP",
"nl-NL", "no-NO", "pl-PL",
"pt-BR", "ro-RO", "ru-RU",
"tr-TR", "uk-UA", "vi-VN",
"zh-CN", "zh-TW"
];
};

118
electron/json/cors.json Normal file
View file

@ -0,0 +1,118 @@
{
"default-src": [
"'self'",
"'unsafe-eval'",
"blob:",
"http://localhost:*"
],
"img-src": [
"'self'",
"http://*:*",
"https://*:*",
"data:",
"blob:",
"file://*",
"https://*.sndcdn.com"
],
"media-src": [
"'self'",
"http://*:*",
"https://*:*",
"data:",
"blob:",
"file://*",
"https://*.googlevideo.com"
],
"style-src": [
"'unsafe-inline'",
"http://localhost:*",
"file://*",
"https://*.youtube.com",
"https://*.vimeocdn.com",
"https://*.gstatic.com",
"https://*.googleapis.com",
"https://mirostatic.com",
"https://miro.com",
"https://*.google.com"
],
"font-src": [
"data:",
"file://*",
"http://localhost:*",
"https://*.youtube.com",
"https://*.vimeocdn.com",
"https://*.gstatic.com",
"https://mirostatic.com",
"https://miro.com"
],
"connect-src": [
"file://*",
"data:",
"http://localhost:*",
"http://127.0.0.1:*",
"ws://localhost:*",
"https://*.anytype.io",
"https://api.amplitude.com",
"devtools://devtools",
"https://*.youtube.com",
"https://*.vimeocdn.com",
"https://*.vimeo.com",
"https://*.googlevideo.com",
"https://*.akamaized.net",
"https://*.soundcloud.com",
"https://*.sndcdn.com",
"https://*.google.com",
"https://*.googleapis.com",
"https://*.doubleclick.net",
"https://miro.com",
"https://*.miro.com",
"https://*.cookielaw.org",
"https://*.sentry.io",
"https://*.split.io",
"https://*.onetrust.com",
"https://mirostatic.com",
"wss://miro.com"
],
"script-src-elem": [
"file://*",
"'unsafe-inline'",
"http://localhost:*",
"https://sentry.io",
"devtools://devtools",
"https://*.youtube.com",
"https://*.vimeocdn.com",
"https://*.gstatic.com",
"https://*.sndcdn.com",
"https://*.google.com",
"https://*.googleapis.com",
"https://*.doubleclick.net",
"https://*.cookielaw.org",
"https://mirostatic.com",
"https://cdn.jsdelivr.net"
],
"frame-src": [
"chrome-extension://react-developer-tools",
"http://localhost:*/embed/iframe.html",
"https://*.youtube.com",
"https://*.vimeo.com",
"https://w.soundcloud.com",
"https://*.google.com",
"https://miro.com",
"https://*.miro.com",
"file://*"
],
"worker-src": [
"'self'",
"'unsafe-eval'",
"blob:",
"http://localhost:*"
]
}

View file

@ -1 +1 @@
0.29.16
0.30.0-rc2

790
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "anytype",
"version": "0.36.2-alpha",
"version": "0.36.9-alpha",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "anytype",
"version": "0.36.2-alpha",
"version": "0.36.9-alpha",
"hasInstallScript": true,
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
@ -42,6 +42,7 @@
"lazy-val": "^1.0.4",
"lodash": "^4.17.20",
"lodash.isequal": "^4.5.0",
"mermaid": "^10.6.0",
"mobx": "^6.6.1",
"mobx-logger": "^0.7.1",
"mobx-react": "^7.5.2",
@ -163,6 +164,11 @@
"version": "0.13.9",
"license": "MIT"
},
"node_modules/@braintree/sanitize-url": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz",
"integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A=="
},
"node_modules/@develar/schema-utils": {
"version": "2.6.5",
"resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz",
@ -879,11 +885,28 @@
"@types/node": "*"
}
},
"node_modules/@types/d3-scale": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.6.tgz",
"integrity": "sha512-lo3oMLSiqsQUovv8j15X4BNEDOsnHuGjeVg7GRbAuB2PUa1prK5BNSOu6xixgNf3nqxPl4I1BqJWrPvFGlQoGQ==",
"dependencies": {
"@types/d3-time": "*"
}
},
"node_modules/@types/d3-scale-chromatic": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.1.tgz",
"integrity": "sha512-Ob7OrwiTeQXY/WBBbRHGZBOn6rH1h7y3jjpTSKYqDEeqFjktql6k2XSgNwLrLDmAsXhEn8P9NHDY4VTuo0ZY1w=="
},
"node_modules/@types/d3-time": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.2.tgz",
"integrity": "sha512-kbdRXTmUgNfw5OTE3KZnFQn6XdIc4QGroN5UixgdrXATmYsdlPQS6pEut9tVlIojtzuFD4txs/L+Rq41AHtLpg=="
},
"node_modules/@types/debug": {
"version": "4.1.8",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz",
"integrity": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==",
"dev": true,
"dependencies": {
"@types/ms": "*"
}
@ -997,6 +1020,14 @@
"dev": true,
"license": "MIT"
},
"node_modules/@types/mdast": {
"version": "3.0.14",
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz",
"integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==",
"dependencies": {
"@types/unist": "^2"
}
},
"node_modules/@types/mime": {
"version": "3.0.0",
"dev": true,
@ -1010,8 +1041,7 @@
"node_modules/@types/ms": {
"version": "0.7.31",
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
"integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==",
"dev": true
"integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
},
"node_modules/@types/node": {
"version": "12.20.55",
@ -1143,6 +1173,11 @@
"@types/node": "*"
}
},
"node_modules/@types/unist": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz",
"integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ=="
},
"node_modules/@types/verror": {
"version": "1.10.6",
"resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.6.tgz",
@ -2820,6 +2855,15 @@
"node": ">=0.8.0"
}
},
"node_modules/character-entities": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/charenc": {
"version": "0.0.2",
"license": "BSD-3-Clause",
@ -3171,6 +3215,14 @@
"dev": true,
"license": "MIT"
},
"node_modules/cose-base": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz",
"integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==",
"dependencies": {
"layout-base": "^1.0.0"
}
},
"node_modules/crc": {
"version": "3.8.0",
"resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz",
@ -3291,9 +3343,57 @@
"version": "3.1.0",
"license": "MIT"
},
"node_modules/cytoscape": {
"version": "3.27.0",
"resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.27.0.tgz",
"integrity": "sha512-pPZJilfX9BxESwujODz5pydeGi+FBrXq1rcaB1mfhFXXFJ9GjE6CNndAk+8jPzoXGD+16LtSS4xlYEIUiW4Abg==",
"dependencies": {
"heap": "^0.2.6",
"lodash": "^4.17.21"
},
"engines": {
"node": ">=0.10"
}
},
"node_modules/cytoscape-cose-bilkent": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz",
"integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==",
"dependencies": {
"cose-base": "^1.0.0"
},
"peerDependencies": {
"cytoscape": "^3.2.0"
}
},
"node_modules/cytoscape-fcose": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz",
"integrity": "sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==",
"dependencies": {
"cose-base": "^2.2.0"
},
"peerDependencies": {
"cytoscape": "^3.2.0"
}
},
"node_modules/cytoscape-fcose/node_modules/cose-base": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/cose-base/-/cose-base-2.2.0.tgz",
"integrity": "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==",
"dependencies": {
"layout-base": "^2.0.0"
}
},
"node_modules/cytoscape-fcose/node_modules/layout-base": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/layout-base/-/layout-base-2.0.1.tgz",
"integrity": "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg=="
},
"node_modules/d3": {
"version": "7.6.1",
"license": "ISC",
"version": "7.8.5",
"resolved": "https://registry.npmjs.org/d3/-/d3-7.8.5.tgz",
"integrity": "sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==",
"dependencies": {
"d3-array": "3",
"d3-axis": "3",
@ -3544,6 +3644,41 @@
"node": ">=12"
}
},
"node_modules/d3-sankey": {
"version": "0.12.3",
"resolved": "https://registry.npmjs.org/d3-sankey/-/d3-sankey-0.12.3.tgz",
"integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==",
"dependencies": {
"d3-array": "1 - 2",
"d3-shape": "^1.2.0"
}
},
"node_modules/d3-sankey/node_modules/d3-array": {
"version": "2.12.1",
"resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz",
"integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==",
"dependencies": {
"internmap": "^1.0.0"
}
},
"node_modules/d3-sankey/node_modules/d3-path": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz",
"integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg=="
},
"node_modules/d3-sankey/node_modules/d3-shape": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz",
"integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==",
"dependencies": {
"d3-path": "1"
}
},
"node_modules/d3-sankey/node_modules/internmap": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz",
"integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw=="
},
"node_modules/d3-scale": {
"version": "4.0.2",
"license": "ISC",
@ -3648,6 +3783,20 @@
"node": ">=12"
}
},
"node_modules/dagre-d3-es": {
"version": "7.0.10",
"resolved": "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz",
"integrity": "sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==",
"dependencies": {
"d3": "^7.8.2",
"lodash-es": "^4.17.21"
}
},
"node_modules/dayjs": {
"version": "1.11.10",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="
},
"node_modules/debug": {
"version": "4.3.4",
"license": "MIT",
@ -3699,6 +3848,18 @@
"node": ">=0.10.0"
}
},
"node_modules/decode-named-character-reference": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
"dependencies": {
"character-entities": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/decode-uri-component": {
"version": "0.2.2",
"license": "MIT",
@ -3809,6 +3970,14 @@
"node": ">= 0.6"
}
},
"node_modules/dequal": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
"engines": {
"node": ">=6"
}
},
"node_modules/destroy": {
"version": "1.2.0",
"dev": true,
@ -3839,6 +4008,14 @@
"wrappy": "1"
}
},
"node_modules/diff": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz",
"integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==",
"engines": {
"node": ">=0.3.1"
}
},
"node_modules/dir-compare": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz",
@ -4466,6 +4643,11 @@
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.16.tgz",
"integrity": "sha512-NpaM49IGQQAUlBhHMF82QH80J08os4ZmyF9MkpCzWAGuOHqE4gTEbhzd7L3l5LmWuZ6E0OiC1FweQ4tsiW35+g=="
},
"node_modules/elkjs": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/elkjs/-/elkjs-0.8.2.tgz",
"integrity": "sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ=="
},
"node_modules/emoji-mart": {
"version": "5.5.2",
"resolved": "https://registry.npmjs.org/emoji-mart/-/emoji-mart-5.5.2.tgz",
@ -5954,6 +6136,11 @@
"version": "2.0.1",
"license": "ISC"
},
"node_modules/heap": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz",
"integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg=="
},
"node_modules/history": {
"version": "4.10.1",
"license": "MIT",
@ -6920,6 +7107,11 @@
"json-buffer": "3.0.1"
}
},
"node_modules/khroma": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/khroma/-/khroma-2.1.0.tgz",
"integrity": "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw=="
},
"node_modules/kind-of": {
"version": "6.0.3",
"dev": true,
@ -6936,6 +7128,14 @@
"graceful-fs": "^4.1.11"
}
},
"node_modules/kleur": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
"engines": {
"node": ">=6"
}
},
"node_modules/launch-editor": {
"version": "2.6.0",
"dev": true,
@ -6945,6 +7145,11 @@
"shell-quote": "^1.7.3"
}
},
"node_modules/layout-base": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz",
"integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg=="
},
"node_modules/lazy-val": {
"version": "1.0.5",
"license": "MIT"
@ -7353,6 +7558,11 @@
"version": "4.17.21",
"license": "MIT"
},
"node_modules/lodash-es": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
"integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="
},
"node_modules/lodash.escaperegexp": {
"version": "4.1.2",
"license": "MIT"
@ -7537,6 +7747,41 @@
"node": ">=10"
}
},
"node_modules/mdast-util-from-markdown": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz",
"integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==",
"dependencies": {
"@types/mdast": "^3.0.0",
"@types/unist": "^2.0.0",
"decode-named-character-reference": "^1.0.0",
"mdast-util-to-string": "^3.1.0",
"micromark": "^3.0.0",
"micromark-util-decode-numeric-character-reference": "^1.0.0",
"micromark-util-decode-string": "^1.0.0",
"micromark-util-normalize-identifier": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"unist-util-stringify-position": "^3.0.0",
"uvu": "^0.5.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/mdast-util-to-string": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz",
"integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==",
"dependencies": {
"@types/mdast": "^3.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/media-typer": {
"version": "0.3.0",
"dev": true,
@ -7673,6 +7918,45 @@
"node": ">= 8"
}
},
"node_modules/mermaid": {
"version": "10.6.0",
"resolved": "https://registry.npmjs.org/mermaid/-/mermaid-10.6.0.tgz",
"integrity": "sha512-Hcti+Q2NiWnb2ZCijSX89Bn2i7TCUwosBdIn/d+u63Sz7y40XU6EKMctT4UX4qZuZGfKGZpfOeim2/KTrdR7aQ==",
"dependencies": {
"@braintree/sanitize-url": "^6.0.1",
"@types/d3-scale": "^4.0.3",
"@types/d3-scale-chromatic": "^3.0.0",
"cytoscape": "^3.23.0",
"cytoscape-cose-bilkent": "^4.1.0",
"cytoscape-fcose": "^2.1.0",
"d3": "^7.4.0",
"d3-sankey": "^0.12.3",
"dagre-d3-es": "7.0.10",
"dayjs": "^1.11.7",
"dompurify": "^3.0.5",
"elkjs": "^0.8.2",
"khroma": "^2.0.0",
"lodash-es": "^4.17.21",
"mdast-util-from-markdown": "^1.3.0",
"non-layered-tidy-tree-layout": "^2.0.2",
"stylis": "^4.1.3",
"ts-dedent": "^2.2.0",
"uuid": "^9.0.0",
"web-worker": "^1.2.0"
}
},
"node_modules/mermaid/node_modules/uuid": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/methods": {
"version": "1.1.2",
"dev": true,
@ -7681,6 +7965,427 @@
"node": ">= 0.6"
}
},
"node_modules/micromark": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz",
"integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"@types/debug": "^4.0.0",
"debug": "^4.0.0",
"decode-named-character-reference": "^1.0.0",
"micromark-core-commonmark": "^1.0.1",
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-chunked": "^1.0.0",
"micromark-util-combine-extensions": "^1.0.0",
"micromark-util-decode-numeric-character-reference": "^1.0.0",
"micromark-util-encode": "^1.0.0",
"micromark-util-normalize-identifier": "^1.0.0",
"micromark-util-resolve-all": "^1.0.0",
"micromark-util-sanitize-uri": "^1.0.0",
"micromark-util-subtokenize": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.1",
"uvu": "^0.5.0"
}
},
"node_modules/micromark-core-commonmark": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz",
"integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"decode-named-character-reference": "^1.0.0",
"micromark-factory-destination": "^1.0.0",
"micromark-factory-label": "^1.0.0",
"micromark-factory-space": "^1.0.0",
"micromark-factory-title": "^1.0.0",
"micromark-factory-whitespace": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-chunked": "^1.0.0",
"micromark-util-classify-character": "^1.0.0",
"micromark-util-html-tag-name": "^1.0.0",
"micromark-util-normalize-identifier": "^1.0.0",
"micromark-util-resolve-all": "^1.0.0",
"micromark-util-subtokenize": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.1",
"uvu": "^0.5.0"
}
},
"node_modules/micromark-factory-destination": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz",
"integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-factory-label": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz",
"integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
}
},
"node_modules/micromark-factory-space": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz",
"integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-factory-title": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz",
"integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-factory-whitespace": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz",
"integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-factory-space": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-util-character": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz",
"integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-util-chunked": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz",
"integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-symbol": "^1.0.0"
}
},
"node_modules/micromark-util-classify-character": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz",
"integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-util-combine-extensions": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz",
"integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-chunked": "^1.0.0",
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-util-decode-numeric-character-reference": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz",
"integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-symbol": "^1.0.0"
}
},
"node_modules/micromark-util-decode-string": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz",
"integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"decode-named-character-reference": "^1.0.0",
"micromark-util-character": "^1.0.0",
"micromark-util-decode-numeric-character-reference": "^1.0.0",
"micromark-util-symbol": "^1.0.0"
}
},
"node_modules/micromark-util-encode": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz",
"integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
]
},
"node_modules/micromark-util-html-tag-name": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz",
"integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
]
},
"node_modules/micromark-util-normalize-identifier": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz",
"integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-symbol": "^1.0.0"
}
},
"node_modules/micromark-util-resolve-all": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz",
"integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-types": "^1.0.0"
}
},
"node_modules/micromark-util-sanitize-uri": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz",
"integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-character": "^1.0.0",
"micromark-util-encode": "^1.0.0",
"micromark-util-symbol": "^1.0.0"
}
},
"node_modules/micromark-util-subtokenize": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz",
"integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
],
"dependencies": {
"micromark-util-chunked": "^1.0.0",
"micromark-util-symbol": "^1.0.0",
"micromark-util-types": "^1.0.0",
"uvu": "^0.5.0"
}
},
"node_modules/micromark-util-symbol": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz",
"integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
]
},
"node_modules/micromark-util-types": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz",
"integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/unifiedjs"
},
{
"type": "OpenCollective",
"url": "https://opencollective.com/unified"
}
]
},
"node_modules/micromatch": {
"version": "4.0.5",
"dev": true,
@ -7937,6 +8642,14 @@
"node": ">=0.10.0"
}
},
"node_modules/mri": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
"engines": {
"node": ">=4"
}
},
"node_modules/mrmime": {
"version": "1.0.1",
"dev": true,
@ -8147,6 +8860,11 @@
"devOptional": true,
"license": "MIT"
},
"node_modules/non-layered-tidy-tree-layout": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz",
"integrity": "sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw=="
},
"node_modules/nopt": {
"version": "4.0.3",
"dev": true,
@ -13028,6 +13746,17 @@
"dev": true,
"license": "0BSD"
},
"node_modules/sade": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
"integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
"dependencies": {
"mri": "^1.1.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/safe-buffer": {
"version": "5.1.2",
"license": "MIT"
@ -13985,6 +14714,11 @@
"webpack": "^4.0.0 || ^5.0.0"
}
},
"node_modules/stylis": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.0.tgz",
"integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ=="
},
"node_modules/sumchecker": {
"version": "3.0.1",
"license": "Apache-2.0",
@ -14351,6 +15085,14 @@
"utf8-byte-length": "^1.0.1"
}
},
"node_modules/ts-dedent": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz",
"integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==",
"engines": {
"node": ">=6.10"
}
},
"node_modules/ts-loader": {
"version": "6.2.2",
"dev": true,
@ -14487,6 +15229,18 @@
"imurmurhash": "^0.1.4"
}
},
"node_modules/unist-util-stringify-position": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
"dependencies": {
"@types/unist": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/universalify": {
"version": "0.1.2",
"license": "MIT",
@ -14625,6 +15379,23 @@
"uuid": "dist/bin/uuid"
}
},
"node_modules/uvu": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz",
"integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==",
"dependencies": {
"dequal": "^2.0.0",
"diff": "^5.0.0",
"kleur": "^4.0.3",
"sade": "^1.7.3"
},
"bin": {
"uvu": "bin.js"
},
"engines": {
"node": ">=8"
}
},
"node_modules/validate-npm-package-license": {
"version": "3.0.4",
"dev": true,
@ -14724,6 +15495,11 @@
"node": ">= 8"
}
},
"node_modules/web-worker": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/web-worker/-/web-worker-1.2.0.tgz",
"integrity": "sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA=="
},
"node_modules/webidl-conversions": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",

View file

@ -1,6 +1,7 @@
[
"electron.js",
"electron/js/**/*",
"electron/json/*",
"electron/env.json",
"electron/img/*",
"electron/about/*",
@ -10,6 +11,7 @@
"dist/main.js",
"dist/main.js.map",
"dist/run.js",
"dist/embed/**/*",
"dist/lib/**/*",
"dist/img/**/*",
"dist/css/**/*",

View file

@ -1,6 +1,6 @@
{
"name": "anytype",
"version": "0.36.2-alpha",
"version": "0.36.9-alpha",
"description": "Anytype",
"main": "electron.js",
"scripts": {
@ -22,7 +22,7 @@
"dist:mac": "npm run build:deps && webpack --progress --mode=production --node-env=production && DATE=`date '+%Y-%m-%d_%H_%M'` GIT_COMMIT=`git rev-parse --short HEAD` electron-builder --macos --arm64 --x64",
"dist:macarm": "npm run build:deps && webpack --mode=production --node-env=production && DATE=`date '+%Y-%m-%d_%H_%M'` GIT_COMMIT=`git rev-parse --short HEAD` electron-builder --macos --arm64",
"dist:macamd": "npm run build:deps && webpack --mode=production --node-env=production && DATE=`date '+%Y-%m-%d_%H_%M'` GIT_COMMIT=`git rev-parse --short HEAD` electron-builder --macos --x64",
"dist:win": "npm run build:deps && webpack --mode=production --node-env=production && electron-builder --windows",
"dist:win": "webpack --mode=production --node-env=production && electron-builder --windows",
"dist:linux": "npm run build:deps && webpack --mode=production --node-env=production && DATE=`date '+%Y-%m-%d_%H_%M'` GIT_COMMIT=`git rev-parse --short HEAD` electron-builder --linux --arm64 --x64",
"dist:linuxamd": "npm run build:deps && webpack --mode=production --node-env=production && DATE=`date '+%Y-%m-%d_%H_%M'` GIT_COMMIT=`git rev-parse --short HEAD` electron-builder --linux --x64",
"dist:linuxarm": "npm run build:deps && webpack --mode=production --node-env=production && DATE=`date '+%Y-%m-%d_%H_%M'` GIT_COMMIT=`git rev-parse --short HEAD` electron-builder --linux --arm64",
@ -120,6 +120,7 @@
"lazy-val": "^1.0.4",
"lodash": "^4.17.20",
"lodash.isequal": "^4.5.0",
"mermaid": "^10.6.0",
"mobx": "^6.6.1",
"mobx-logger": "^0.7.1",
"mobx-react": "^7.5.2",
@ -175,6 +176,7 @@
"dist/font/**/*",
"dist/workers/**/*",
"dist/*.node",
"dist/embed/**/*",
"dist/img/**/*",
"dist/css/**/*",
"dist/js/**/*",
@ -195,6 +197,7 @@
"files": [
"electron.js",
"electron/js/**/*",
"electron/json/*",
"electron/env.json",
"electron/img/*",
"electron/about/*",
@ -204,6 +207,7 @@
"dist/main.js",
"dist/main.js.map",
"dist/run.js",
"dist/embed/**/*",
"dist/lib/**/*",
"dist/img/**/*",
"dist/css/**/*",
@ -528,7 +532,7 @@
"win": {
"sign": "./electron/hook/sign.js",
"target": "nsis",
"icon": "electron/img/icon256x256.png",
"icon": "electron/img/icons/256x256.png",
"publish": [
{
"provider": "spaces",
@ -541,7 +545,7 @@
"deleteAppDataOnUninstall": true
},
"linux": {
"icon": "electron/img/icon512x512.png",
"icon": "electron/img/icons",
"category": "Utility",
"target": [
"snap",

View file

@ -0,0 +1,3 @@
<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.69 8.19283C15.9243 8.42714 15.9243 8.80704 15.69 9.04135L10.8657 13.8656L6.04146 9.04135C5.80714 8.80704 5.80714 8.42714 6.04146 8.19283C6.27577 7.95851 6.65567 7.95851 6.88999 8.19283L10.8657 12.1686L14.8415 8.19283C15.0758 7.95851 15.4557 7.95851 15.69 8.19283Z" fill="#949494"/>
</svg>

After

Width:  |  Height:  |  Size: 437 B

View file

@ -0,0 +1,5 @@
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="20 / Arrange / Edit">
<path id="&#244;&#128;&#136;&#138;" d="M16.0391 6.73846L17.332 5.44557C17.7225 5.05505 17.7225 4.42188 17.332 4.03136L16.7462 3.44557C16.3556 3.05505 15.7225 3.05505 15.332 3.44557L14.0391 4.73846L16.0391 6.73846ZM6.53906 16.2385L15.0391 7.73846L13.0391 5.73846L4.53906 14.2385L3.53906 17.2383L6.53906 16.2385Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 464 B

View file

@ -0,0 +1,6 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M32.2459 19.8039C28.0493 19.8862 28.9234 22.5428 25.9659 23.2146C22.9615 23.8972 22.4872 15.877 19.4836 15.877C16.4795 15.877 15.8141 23.6677 12.0526 29.0162L11.9453 29.1676L20.0098 33.8228L32.2459 26.759V19.8039Z" fill="#DCDCDC"/>
<path opacity="0.4" d="M32.2443 19.5622C30.8395 17.7593 29.8866 15.6865 27.8366 15.6865C24.2087 15.6865 25.1633 21.6047 21.1539 21.6047C17.144 21.6047 16.7225 15.2389 12.18 21.2229C10.7326 23.1296 9.56751 25.2557 8.65234 27.2674L20.0083 33.8231L32.2443 26.7594V19.5622Z" fill="#DCDCDC"/>
<path opacity="0.5" d="M7.77148 22.0144C9.14818 18.202 9.74235 15.1143 12.3706 15.1143C16.3801 15.1143 17.3344 26.3783 20.7717 25.2324C24.2083 24.087 23.8264 17.9776 29.1727 17.9776C30.1903 17.9776 31.2293 18.601 32.2441 19.6094V26.7599L20.0081 33.8237L7.77167 26.7599L7.77148 22.0144Z" fill="#DCDCDC"/>
<path d="M20 34.7093L7 27.205V12.1959L20 4.69141L33 12.1959V27.2048L20 34.7093ZM8.52735 26.3232L20 32.9461L31.4726 26.3232V13.0777L20 6.45477L8.52735 13.0777V26.3232Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M31 17C31 14.1997 31 12.7996 30.455 11.73C29.9757 10.7892 29.2108 10.0243 28.27 9.54497C27.2004 9 25.8003 9 23 9H17C14.1997 9 12.7996 9 11.73 9.54497C10.7892 10.0243 10.0243 10.7892 9.54497 11.73C9 12.7996 9 14.1997 9 17V23C9 25.8003 9 27.2004 9.54497 28.27C10.0243 29.2108 10.7892 29.9757 11.73 30.455C12.7996 31 14.1997 31 17 31H23C25.8003 31 27.2004 31 28.27 30.455C29.2108 29.9757 29.9757 29.2108 30.455 28.27C31 27.2004 31 25.8003 31 23V17ZM17.4934 15.9697C17.7863 16.2626 17.7862 16.7375 17.4933 17.0304L14.5237 19.9996L17.4934 22.9692C17.7863 23.2621 17.7863 23.737 17.4934 24.0299C17.2005 24.3228 16.7256 24.3228 16.4327 24.0299L12.4023 19.9995L16.4327 15.9696C16.7256 15.6768 17.2005 15.6768 17.4934 15.9697ZM22.4707 17.0309C22.1778 16.738 22.1777 16.2631 22.4706 15.9702C22.7635 15.6773 23.2384 15.6773 23.5313 15.9701L27.5617 20L23.5313 24.0304C23.2384 24.3233 22.7635 24.3233 22.4706 24.0304C22.1778 23.7375 22.1778 23.2626 22.4706 22.9697L25.4403 20.0001L22.4707 17.0309ZM20.001 21.7051C20.9427 21.7051 21.7061 20.9417 21.7061 20C21.7061 19.0583 20.9427 18.2949 20.001 18.2949C19.0593 18.2949 18.2959 19.0583 18.2959 20C18.2959 20.9417 19.0593 21.7051 20.001 21.7051Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,14 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6077_17814)">
<path d="M28.9267 12.0825C28.9267 14.4068 27.0425 16.291 24.7182 16.291H20.4004V7.87402H24.7182C27.0425 7.87402 28.9267 9.75823 28.9267 12.0825Z" stroke="#DCDCDC" stroke-width="1.5"/>
<path d="M11.875 12.0825C11.875 14.4068 13.7592 16.291 16.0835 16.291H20.4013V7.87402H16.0835C13.7592 7.87402 11.875 9.75823 11.875 12.0825Z" stroke="#DCDCDC" stroke-width="1.5"/>
<path d="M11.875 20.4995C11.875 22.8238 13.7592 24.708 16.0835 24.708H20.4013V16.291H16.0835C13.7592 16.291 11.875 18.1752 11.875 20.4995Z" stroke="#DCDCDC" stroke-width="1.5"/>
<path d="M11.875 28.9165C11.875 31.2408 13.7864 33.125 16.1107 33.125C18.4651 33.125 20.4013 31.2163 20.4013 28.8619V24.708H16.0835C13.7592 24.708 11.875 26.5922 11.875 28.9165Z" stroke="#DCDCDC" stroke-width="1.5"/>
<path d="M20.4004 20.4995C20.4004 22.8238 22.2846 24.708 24.6089 24.708H24.7182C27.0425 24.708 28.9267 22.8238 28.9267 20.4995C28.9267 18.1752 27.0425 16.291 24.7182 16.291H24.6089C22.2846 16.291 20.4004 18.1752 20.4004 20.4995Z" stroke="#DCDCDC" stroke-width="1.5"/>
</g>
<defs>
<clipPath id="clip0_6077_17814">
<rect width="18.8016" height="27" fill="white" transform="translate(11 7)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,7 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.6413 21.1273H26.6474C26.6474 21.1273 24.362 24.4796 22.4404 26.9711C20.7794 29.1231 20.2944 30.9659 20.155 31.857C20.1005 32.1843 19.8337 32.4268 19.5124 32.4268C19.1912 32.4268 18.9244 32.1843 18.8699 31.857C18.7305 30.9659 18.2455 29.1231 16.5845 26.9711C16.3299 26.6377 16.0693 26.2921 15.8086 25.9405L22.0827 18.4843L27.1323 12.4951C27.69 13.6651 27.9992 14.9745 27.9992 16.3626C27.9992 18.1206 27.496 19.7513 26.6413 21.1273Z" fill="#DCDCDC"/>
<path d="M22.0825 18.4841L15.8084 25.9403C14.0989 23.6489 12.3773 21.1271 12.3773 21.1271H12.3834C12.2015 20.8361 12.0379 20.5391 11.8984 20.2299L16.942 14.2407C16.4631 14.8166 16.1782 15.5562 16.1782 16.3624C16.1782 18.2052 17.6694 19.6965 19.5123 19.6965C20.5488 19.6965 21.4763 19.2236 22.0825 18.4841Z" fill="#DCDCDC"/>
<path d="M22.1776 8.02134L16.9825 14.1924L13.0059 10.725C14.5577 8.79727 16.8976 7.57275 19.5103 7.57275C20.4439 7.57275 21.341 7.73036 22.1776 8.02134Z" fill="#DCDCDC"/>
<path d="M16.9843 14.192L16.9419 14.2405L11.8983 20.2298C11.3406 19.0598 11.0254 17.7504 11.0254 16.3622C11.0254 14.2163 11.771 12.2462 13.0076 10.7246L16.9843 14.192Z" fill="#DCDCDC"/>
<path d="M22.0819 18.4844C22.5608 17.9085 22.8457 17.169 22.8457 16.3627C22.8457 14.5199 21.3545 13.0287 19.5117 13.0287C18.4751 13.0287 17.5476 13.5015 16.9414 14.241L22.1789 8.02148C24.3552 8.76104 26.1374 10.3917 27.1316 12.4952L22.0819 18.4844Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,10 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6077_17801)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.488 7H28.512C30.9906 7 33 9.00937 33 11.488V28.512C33 30.9906 30.9906 33 28.512 33H11.488C9.00937 33 7 30.9906 7 28.512V11.488C7 9.00937 9.00937 7 11.488 7ZM23.3627 14.3728C24.912 13.3347 26.7521 12.8179 28.6153 12.8977C28.6783 14.3879 28.3604 15.8695 27.6916 17.2027C27.0228 18.5358 26.0252 19.6765 24.7929 20.5169C24.161 20.951 23.6446 21.5328 23.2885 22.2117C22.9325 22.8907 22.7475 23.6463 22.7497 24.413V27.1108H17.2528V24.413C17.2549 23.6463 17.0698 22.8906 16.7136 22.2117C16.3575 21.5327 15.841 20.951 15.209 20.5169C13.9771 19.6762 12.9797 18.5354 12.311 17.2024C11.6422 15.8693 11.3241 14.3878 11.3866 12.8977C13.2499 12.8179 15.09 13.3347 16.6392 14.3728C18.1885 15.411 19.3662 16.9163 20.001 18.6699C20.6357 16.9163 21.8134 15.411 23.3627 14.3728ZM15.1839 23.02C15.4083 23.4498 15.5242 23.9279 15.5216 24.4128V27.1106H11.3789V19.041C11.7687 19.6355 12.2182 20.1886 12.7204 20.6917C13.1848 21.1563 13.6916 21.5765 14.2343 21.9468C14.6335 22.2218 14.9595 22.5902 15.1839 23.02ZM25 24.3718C24.9975 23.8869 25.1134 23.4088 25.3378 22.979C25.5621 22.5492 25.8881 22.1808 26.2874 21.9057C26.83 21.5355 27.3369 21.1153 27.8013 20.6507C28.3035 20.1476 28.753 19.5945 29.1428 19V27.0696H25V24.3718Z" fill="#DCDCDC"/>
</g>
<defs>
<clipPath id="clip0_6077_17801">
<rect width="26" height="26" fill="white" transform="translate(7 7)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6076 24.8411L17.9458 24.4447V17.7536L19.6076 17.4372V24.8411ZM31.232 23.2634C30.0267 23.2674 29.0497 22.2944 29.0416 21.0891V21.0771C29.0416 19.8918 30.0147 18.9188 31.228 18.9188C32.4413 18.9188 33.4143 19.8918 33.4143 21.0771C33.4183 22.2824 32.4413 23.2594 31.24 23.2634H31.232ZM35 21.0771C35 23.1593 33.3142 24.8451 31.232 24.8451C29.1498 24.8451 27.464 23.1593 27.464 21.0771C27.464 19.0229 29.1538 17.3371 31.236 17.3371C33.3182 17.3371 35 19.0229 35 21.0771ZM13.6212 24.4487L15.2549 24.7891V20.2843C15.2549 18.122 13.5691 17.3611 12.4079 17.3611C11.6431 17.3611 11.0104 17.5453 10.4578 18.0979C9.8772 17.5453 9.19247 17.3331 8.63988 17.3331C7.82301 17.3331 7.13828 17.6735 6.66177 18.2541V17.4893L5 17.8056V24.4447L6.66177 24.7851V20.2322C6.66177 19.4954 7.19034 18.9949 8.0032 18.9949C8.76802 18.9949 9.32061 19.4954 9.32061 20.2322V24.4487L10.9544 24.7891V20.2322C10.9544 19.4954 11.5069 18.9949 12.2998 18.9949C13.0646 18.9949 13.6172 19.4954 13.6172 20.2322L13.6212 24.4487ZM26.2226 17.3371L25.2456 17.4693C23.4277 17.8897 22.2424 18.4703 22.2424 20.4725V24.4487L23.9042 24.765V20.7087C23.9042 19.7877 24.4327 19.3633 25.2496 19.2071L26.2266 19.0509L26.2226 17.3371ZM18.0259 14.5942C17.6295 14.9986 17.6295 15.6393 18.0259 16.0437C18.4303 16.4602 19.099 16.4642 19.5115 16.0598L19.5275 16.0437C19.9239 15.6433 19.9239 14.9946 19.5275 14.5942C19.103 14.1978 18.4463 14.1978 18.0259 14.5942Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M34.9982 22.6743C34.9361 24.8478 33.0514 26.5089 30.8904 26.5089H21.0072C20.554 26.5055 20.1889 26.1362 20.1906 25.683V15.0485C20.1717 14.671 20.3897 14.3217 20.7371 14.1729C20.7371 14.1729 21.6437 13.5518 23.5564 13.5518C24.7312 13.5477 25.8851 13.8632 26.8943 14.4647C28.4838 15.395 29.6102 16.9494 29.9992 18.7496C30.3402 18.6508 30.6937 18.6016 31.0487 18.6037C32.1172 18.604 33.1401 19.037 33.8842 19.8039C34.6282 20.5708 35.0301 21.6062 34.9982 22.6743ZM18.9548 15.7254C19.2529 19.3302 19.4703 22.6184 18.9548 26.2171C18.9548 26.3937 18.8116 26.5369 18.635 26.5369C18.4584 26.5369 18.3152 26.3937 18.3152 26.2171C17.837 22.6526 18.0482 19.2992 18.3152 15.7254C18.3152 15.5487 18.4584 15.4056 18.635 15.4056C18.8116 15.4056 18.9548 15.5487 18.9548 15.7254ZM16.9614 16.9674C17.3061 20.1841 17.4086 23.0003 16.9552 26.2295C16.9325 26.3956 16.7906 26.5193 16.623 26.5193C16.4554 26.5193 16.3135 26.3956 16.2908 26.2295C15.8902 23.0469 15.9803 20.1562 16.2908 16.9674C16.2908 16.7822 16.4409 16.632 16.6261 16.632C16.8113 16.632 16.9614 16.7822 16.9614 16.9674ZM14.9525 16.6569C15.2785 19.9543 15.4245 22.9134 14.9525 26.2202C14.9525 26.3977 14.8086 26.5415 14.6312 26.5415C14.4537 26.5415 14.3098 26.3977 14.3098 26.2202C13.8502 22.9662 13.9993 19.9171 14.3098 16.6569C14.3098 16.4794 14.4537 16.3355 14.6312 16.3355C14.8086 16.3355 14.9525 16.4794 14.9525 16.6569ZM12.9622 17.5883C13.355 20.4576 13.3519 23.3673 12.9529 26.2357C12.9365 26.4043 12.7947 26.5329 12.6253 26.5329C12.4559 26.5329 12.3142 26.4043 12.2978 26.2357C11.9283 23.3651 11.9283 20.459 12.2978 17.5883C12.2978 17.4049 12.4465 17.2561 12.63 17.2561C12.8135 17.2561 12.9622 17.4049 12.9622 17.5883ZM10.944 19.7277C11.4532 21.985 11.2203 23.9629 10.9098 26.2481C10.9098 26.4196 10.7708 26.5586 10.5993 26.5586C10.4279 26.5586 10.2888 26.4196 10.2888 26.2481C10.0342 24.0001 9.80758 21.9539 10.2888 19.7277C10.3053 19.5591 10.447 19.4305 10.6164 19.4305C10.7858 19.4305 10.9276 19.5591 10.944 19.7277ZM8.94439 19.3985C9.41324 21.6931 9.258 23.643 8.93198 25.9469C8.90093 26.2854 8.31098 26.2885 8.27993 25.9469C7.98496 23.6741 7.86076 21.6621 8.26751 19.3985C8.2905 19.2292 8.43507 19.103 8.60595 19.103C8.77682 19.103 8.9214 19.2292 8.94439 19.3985ZM6.92926 20.5008C7.41364 22.0347 7.23976 23.2736 6.89822 24.8229C6.89822 24.9944 6.7592 25.1334 6.58772 25.1334C6.41623 25.1334 6.27722 24.9944 6.27722 24.8229C5.98535 23.2953 5.84873 22.0254 6.24927 20.5008C6.26604 20.3256 6.41324 20.1918 6.58927 20.1918C6.7653 20.1918 6.9125 20.3256 6.92926 20.5008Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.39821 16.0207C8.39821 16.0207 10.8136 13.1393 11.9151 16.0207C11.9151 16.0207 14.5421 24.7066 15.6863 28.3932C16.8301 32.0793 20.559 30.5965 20.559 30.5965C20.559 30.5965 25.008 29.2403 30.3468 20.3423C35.6856 11.4444 31.3165 9.03824 31.3165 9.03824C31.3165 9.03824 27.5077 6.35992 23.6521 10.9359C23.6521 10.9359 22.3951 12.357 21.7551 14.572C21.7551 14.572 25.102 12.7017 25.5203 15.4333C25.9386 18.1648 22.2719 22.176 22.2719 22.176C22.2719 22.176 20.7455 24.3415 20.0076 20.8225C20.0076 20.8225 18.4085 12.923 18.2854 12.0372C18.2854 12.0372 17.4685 6.76152 12.6943 9.6162C12.6943 9.6162 9.83997 11.5531 7 14.4528L8.39821 16.0207Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 807 B

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.7992 12.5517C31.5202 13.2926 31.7533 14.9451 31.7533 14.9451L31.756 14.9424C31.9046 16.2391 31.986 17.5427 32 18.8479V20.6822C31.9897 21.9874 31.9101 23.2911 31.7615 24.5878C31.7615 24.5878 31.5257 26.2513 30.8047 26.9812C29.9798 27.8472 29.0654 27.9353 28.5509 27.9848C28.4959 27.9901 28.4455 27.995 28.4003 28.0003C25.0446 28.2509 20 28.2509 20 28.2509C20 28.2509 13.7601 28.1958 11.841 28.0113C11.7485 27.9938 11.6364 27.9801 11.5095 27.9647C10.8988 27.8905 9.94569 27.7747 9.18986 26.9812C8.4743 26.2403 8.23852 24.5878 8.23852 24.5878C8.0901 23.292 8.01048 21.9892 8 20.685V18.8562C8.01035 17.5519 8.08997 16.2491 8.23852 14.9534C8.23852 14.9534 8.46881 13.2898 9.18986 12.5599C10.011 11.6979 10.9208 11.6067 11.4366 11.555C11.4943 11.5492 11.5471 11.5439 11.5942 11.5381C14.9527 11.293 19.989 11.293 19.989 11.293C19.989 11.293 25.0391 11.293 28.3948 11.5298C28.442 11.5357 28.4948 11.541 28.5528 11.5468C29.0672 11.5985 29.9786 11.6902 30.7992 12.5517ZM17.5135 16.1157V22.8912L23.9946 19.5172L17.5135 16.1157Z" fill="#DCDCDC"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,7 +1,15 @@
<svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.92969 10C1.92969 9.58579 2.26547 9.25 2.67969 9.25H3.96939C3.94315 9.49641 3.92969 9.74663 3.92969 10C3.92969 10.2534 3.94315 10.5036 3.96939 10.75H2.67969C2.26547 10.75 1.92969 10.4142 1.92969 10ZM4.52612 12.8318C4.73033 13.2929 4.98288 13.7278 5.27734 14.1301L4.16124 14.7745C3.80252 14.9816 3.34383 14.8587 3.13672 14.5C2.92961 14.1412 3.05252 13.6825 3.41124 13.4754L4.52612 12.8318ZM6.79919 15.652C7.20148 15.9465 7.63638 16.1991 8.09746 16.4034L7.45295 17.5197C7.24584 17.8784 6.78715 18.0013 6.42843 17.7942C6.06971 17.5871 5.9468 17.1284 6.15391 16.7697L6.79919 15.652ZM10.1797 16.9603C10.4261 16.9865 10.6763 17 10.9297 17C11.1831 17 11.4333 16.9865 11.6797 16.9603V18.25C11.6797 18.6642 11.3439 19 10.9297 19C10.5155 19 10.1797 18.6642 10.1797 18.25V16.9603ZM13.7619 16.4034C14.223 16.1991 14.6579 15.9465 15.0602 15.652L15.7055 16.7697C15.9126 17.1284 15.7897 17.5871 15.4309 17.7942C15.0722 18.0013 14.6135 17.8784 14.4064 17.5197L13.7619 16.4034ZM16.582 14.1301C16.8765 13.7278 17.129 13.2929 17.3332 12.8318L18.4481 13.4755C18.8069 13.6826 18.9298 14.1413 18.7227 14.5C18.5155 14.8587 18.0569 14.9816 17.6981 14.7745L16.582 14.1301ZM17.89 10.75H19.1797C19.5939 10.75 19.9297 10.4142 19.9297 10C19.9297 9.58579 19.5939 9.25 19.1797 9.25H17.89C17.9162 9.49641 17.9297 9.74663 17.9297 10C17.9297 10.2534 17.9162 10.5036 17.89 10.75ZM17.3337 7.16933C17.1296 6.70819 16.8771 6.27323 16.5827 5.87087L17.7007 5.22544C18.0594 5.01834 18.5181 5.14124 18.7252 5.49996C18.9323 5.85868 18.8094 6.31737 18.4507 6.52448L17.3337 7.16933ZM15.0584 4.34665C14.656 4.05229 14.2211 3.79984 13.7599 3.59575L14.4039 2.48028C14.611 2.12156 15.0697 1.99866 15.4284 2.20576C15.7871 2.41287 15.9101 2.87156 15.7029 3.23028L15.0584 4.34665ZM11.6797 3.03971C11.4333 3.01346 11.1831 3 10.9297 3C10.6763 3 10.4261 3.01346 10.1797 3.03971V1.75C10.1797 1.33579 10.5155 1 10.9297 1C11.3439 1 11.6797 1.33579 11.6797 1.75V3.03971ZM8.09949 3.59574C7.63834 3.79983 7.20336 4.05228 6.80098 4.34664L6.15643 3.23025C5.94932 2.87153 6.07223 2.41284 6.43095 2.20573C6.78967 1.99862 7.24836 2.12153 7.45547 2.48025L8.09949 3.59574ZM5.27662 5.87089C4.98223 6.27325 4.72975 6.70822 4.52563 7.16936L3.40872 6.52451C3.05 6.3174 2.92709 5.85871 3.1342 5.49999C3.34131 5.14127 3.8 5.01837 4.15872 5.22547L5.27662 5.87089Z" fill="white"/>
<circle r="6.25" transform="matrix(0 -1 -1 0 10.9297 10)" stroke="white" stroke-width="1.5"/>
<rect x="10.1797" y="9.25" width="9.24902" height="1.5" rx="0.75" fill="white"/>
<rect x="6.03125" y="16.9868" width="9.25017" height="1.5" rx="0.75" transform="rotate(-60 6.03125 16.9868)" fill="white"/>
<rect x="7.32812" y="2.26392" width="9.25125" height="1.5" rx="0.75" transform="rotate(60 7.32812 2.26392)" fill="white"/>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 15.5C13.0376 15.5 15.5 13.0376 15.5 10C15.5 6.96243 13.0376 4.5 10 4.5C6.96243 4.5 4.5 6.96243 4.5 10C4.5 13.0376 6.96243 15.5 10 15.5ZM10 17C13.866 17 17 13.866 17 10C17 6.13401 13.866 3 10 3C6.13401 3 3 6.13401 3 10C3 13.866 6.13401 17 10 17Z" fill="#505050"/>
<path d="M9.25 1.75C9.25 1.33579 9.58579 1 10 1C10.4142 1 10.75 1.33579 10.75 1.75V10.11C10.75 10.5242 10.4142 10.86 10 10.86C9.58579 10.86 9.25 10.5242 9.25 10.11V1.75Z" fill="#505050"/>
<path d="M9.25 16.75C9.25 16.3358 9.58579 16 10 16C10.4142 16 10.75 16.3358 10.75 16.75V18.25C10.75 18.6642 10.4142 19 10 19C9.58579 19 9.25 18.6642 9.25 18.25V16.75Z" fill="#505050"/>
<path d="M5.22559 3.23057C5.01848 2.87185 5.14139 2.41316 5.5001 2.20605C5.85882 1.99895 6.31752 2.12185 6.52462 2.48057L7.27462 3.77961C7.48173 4.13833 7.35882 4.59702 7.0001 4.80413C6.64139 5.01124 6.18269 4.88833 5.97559 4.52961L5.22559 3.23057Z" fill="#505050"/>
<path d="M12.7256 16.2208C12.5185 15.8621 12.6414 15.4034 13.0001 15.1963C13.3588 14.9892 13.8175 15.1121 14.0246 15.4708L14.7746 16.7698C14.9817 17.1286 14.8588 17.5873 14.5001 17.7944C14.1414 18.0015 13.6827 17.8786 13.4756 17.5198L12.7256 16.2208Z" fill="#505050"/>
<path d="M2.48033 6.52441C2.12161 6.31731 1.9987 5.85861 2.20581 5.4999C2.41292 5.14118 2.87161 5.01827 3.23033 5.22538L4.52937 5.97538C4.88809 6.18248 5.01099 6.64118 4.80389 6.9999C4.59678 7.35861 4.13809 7.48152 3.77937 7.27441L2.48033 6.52441Z" fill="#505050"/>
<path d="M9.53135 10.5947C9.17264 10.3876 9.04973 9.92893 9.25684 9.57021C9.46394 9.21149 9.92264 9.08858 10.2814 9.29569L17.5198 13.4748C17.8785 13.6819 18.0014 14.1406 17.7943 14.4993C17.5872 14.858 17.1285 14.9809 16.7698 14.7738L9.53135 10.5947Z" fill="#505050"/>
<path d="M1.75 10.75C1.33579 10.75 1 10.4142 1 10C1 9.58579 1.33579 9.25 1.75 9.25H3.25C3.66421 9.25 4 9.58579 4 10C4 10.4142 3.66421 10.75 3.25 10.75H1.75Z" fill="#505050"/>
<path d="M16.75 10.75C16.3358 10.75 16 10.4142 16 10C16 9.58579 16.3358 9.25 16.75 9.25H18.25C18.6642 9.25 19 9.58579 19 10C19 10.4142 18.6642 10.75 18.25 10.75H16.75Z" fill="#505050"/>
<path d="M3.23033 14.7744C2.87161 14.9815 2.41292 14.8586 2.20581 14.4999C1.9987 14.1412 2.12161 13.6825 2.48033 13.4754L9.7203 9.29538C10.079 9.08827 10.5377 9.21118 10.7448 9.5699C10.9519 9.92861 10.829 10.3873 10.4703 10.5944L3.23033 14.7744Z" fill="#505050"/>
<path d="M16.2208 7.27441C15.8621 7.48152 15.4034 7.35861 15.1963 6.9999C14.9892 6.64118 15.1121 6.18248 15.4708 5.97538L16.7698 5.22538C17.1286 5.01827 17.5873 5.14118 17.7944 5.4999C18.0015 5.85861 17.8786 6.31731 17.5198 6.52441L16.2208 7.27441Z" fill="#505050"/>
<path d="M6.52466 17.5204C6.31755 17.8791 5.85886 18.002 5.50014 17.7949C5.14142 17.5878 5.01851 17.1291 5.22562 16.7704L5.97562 15.4714C6.18273 15.1126 6.64142 14.9897 7.00014 15.1968C7.35886 15.404 7.48177 15.8626 7.27466 16.2214L6.52466 17.5204Z" fill="#505050"/>
<path d="M14.0247 4.53017C13.8176 4.88889 13.3589 5.01179 13.0001 4.80469C12.6414 4.59758 12.5185 4.13889 12.7256 3.78017L13.4756 2.48113C13.6827 2.12241 14.1414 1.9995 14.5001 2.20661C14.8589 2.41372 14.9818 2.87241 14.7747 3.23113L14.0247 4.53017Z" fill="#505050"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 417 B

After

Width:  |  Height:  |  Size: 417 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 618 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 289 B

After

Width:  |  Height:  |  Size: 289 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 154 B

After

Width:  |  Height:  |  Size: 154 B

Before After
Before After

View file

@ -0,0 +1,6 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M32.2459 19.8041C28.0493 19.8865 28.9234 22.543 25.9659 23.2149C22.9615 23.8974 22.4872 15.8772 19.4836 15.8772C16.4795 15.8772 15.8141 23.668 12.0526 29.0164L11.9453 29.1678L20.0098 33.823L32.2459 26.7592V19.8041Z" fill="#36A2EB"/>
<path d="M32.2443 19.5623C30.8395 17.7594 29.8866 15.6866 27.8366 15.6866C24.2087 15.6866 25.1633 21.6049 21.1539 21.6049C17.144 21.6049 16.7225 15.239 12.18 21.2231C10.7326 23.1298 9.56751 25.2558 8.65234 27.2675L20.0083 33.8233L32.2443 26.7595V19.5623Z" fill="#FFCE56"/>
<path opacity="0.8" d="M7.77148 22.0142C9.14818 18.2017 9.74235 15.114 12.3706 15.114C16.3801 15.114 17.3344 26.378 20.7717 25.2321C24.2083 24.0867 23.8264 17.9773 29.1727 17.9773C30.1903 17.9773 31.2293 18.6008 32.2441 19.6092V26.7596L20.0081 33.8234L7.77167 26.7596L7.77148 22.0142Z" fill="#FE6184"/>
<path d="M20 34.7091L7 27.2048V12.1956L20 4.69116L33 12.1956V27.2046L20 34.7091ZM8.52735 26.323L20 32.9459L31.4726 26.323V13.0774L20 6.45453L8.52735 13.0774V26.323Z" fill="#E7E9ED"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,14 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_5908_6881)">
<path d="M20 20.5C20 19.3065 20.4741 18.1619 21.318 17.318C22.1619 16.4741 23.3065 16 24.5 16C25.6935 16 26.8381 16.4741 27.682 17.318C28.5259 18.1619 29 19.3065 29 20.5C29 21.6935 28.5259 22.8381 27.682 23.682C26.8381 24.5259 25.6935 25 24.5 25C23.3065 25 22.1619 24.5259 21.318 23.682C20.4741 22.8381 20 21.6935 20 20.5Z" fill="#1ABCFE"/>
<path d="M11 29.5C11 28.3065 11.4741 27.1619 12.318 26.318C13.1619 25.4741 14.3065 25 15.5 25H20V29.5C20 30.6935 19.5259 31.8381 18.682 32.682C17.8381 33.5259 16.6935 34 15.5 34C14.3065 34 13.1619 33.5259 12.318 32.682C11.4741 31.8381 11 30.6935 11 29.5V29.5Z" fill="#0ACF83"/>
<path d="M20 7V16H24.5C25.6935 16 26.8381 15.5259 27.682 14.682C28.5259 13.8381 29 12.6935 29 11.5C29 10.3065 28.5259 9.16193 27.682 8.31802C26.8381 7.47411 25.6935 7 24.5 7H20Z" fill="#FF7262"/>
<path d="M11 11.5C11 12.6935 11.4741 13.8381 12.318 14.682C13.1619 15.5259 14.3065 16 15.5 16H20V7H15.5C14.3065 7 13.1619 7.47411 12.318 8.31802C11.4741 9.16193 11 10.3065 11 11.5V11.5Z" fill="#F24E1E"/>
<path d="M11 20.5C11 21.6935 11.4741 22.8381 12.318 23.682C13.1619 24.5259 14.3065 25 15.5 25H20V16H15.5C14.3065 16 13.1619 16.4741 12.318 17.318C11.4741 18.1619 11 19.3065 11 20.5V20.5Z" fill="#A259FF"/>
</g>
<defs>
<clipPath id="clip0_5908_6881">
<rect width="18" height="27" fill="white" transform="translate(11 7)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,7 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.6413 21.1273H26.6474C26.6474 21.1273 24.362 24.4796 22.4404 26.9711C20.7794 29.1231 20.2944 30.9659 20.155 31.857C20.1005 32.1843 19.8337 32.4268 19.5124 32.4268C19.1912 32.4268 18.9244 32.1843 18.8699 31.857C18.7305 30.9659 18.2455 29.1231 16.5845 26.9711C16.3299 26.6377 16.0693 26.2921 15.8086 25.9405L22.0827 18.4843L27.1323 12.4951C27.69 13.6651 27.9992 14.9745 27.9992 16.3626C27.9992 18.1206 27.496 19.7513 26.6413 21.1273Z" fill="#48B564"/>
<path d="M22.0825 18.4841L15.8084 25.9403C14.0989 23.6489 12.3773 21.1271 12.3773 21.1271H12.3834C12.2015 20.8361 12.0379 20.5391 11.8984 20.2299L16.942 14.2407C16.4631 14.8166 16.1782 15.5562 16.1782 16.3624C16.1782 18.2052 17.6694 19.6965 19.5123 19.6965C20.5488 19.6965 21.4763 19.2236 22.0825 18.4841Z" fill="#FCC60E"/>
<path d="M22.1776 8.02134L16.9825 14.1924L13.0059 10.725C14.5577 8.79727 16.8976 7.57275 19.5103 7.57275C20.4439 7.57275 21.341 7.73036 22.1776 8.02134Z" fill="#2C85EB"/>
<path d="M16.9843 14.1921L16.9419 14.2406L11.8983 20.2298C11.3406 19.0599 11.0254 17.7505 11.0254 16.3623C11.0254 14.2164 11.771 12.2462 13.0076 10.7247L16.9843 14.1921Z" fill="#ED5748"/>
<path d="M22.0819 18.4843C22.5608 17.9084 22.8457 17.1689 22.8457 16.3626C22.8457 14.5198 21.3545 13.0285 19.5117 13.0285C18.4751 13.0285 17.5476 13.5014 16.9414 14.2409L22.1789 8.02136C24.3552 8.76092 26.1374 10.3916 27.1316 12.4951L22.0819 18.4843Z" fill="#5695F6"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Before After
Before After

View file

@ -0,0 +1,13 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_5985_4054)">
<path d="M28.512 7H11.488C9.00937 7 7 9.00937 7 11.488V28.512C7 30.9906 9.00937 33 11.488 33H28.512C30.9906 33 33 30.9906 33 28.512V11.488C33 9.00937 30.9906 7 28.512 7Z" fill="#FF3670"/>
<path d="M28.6153 12.8975C26.7521 12.8178 24.912 13.3346 23.3627 14.3727C21.8134 15.4109 20.6357 16.9162 20.001 18.6698C19.3662 16.9162 18.1885 15.4109 16.6392 14.3727C15.09 13.3346 13.2499 12.8178 11.3866 12.8975C11.3241 14.3877 11.6422 15.8691 12.311 17.2022C12.9797 18.5353 13.9771 19.676 15.209 20.5168C15.841 20.9508 16.3575 21.5326 16.7136 22.2116C17.0698 22.8905 17.2549 23.6461 17.2528 24.4128V27.1107H22.7497V24.4128C22.7475 23.6462 22.9325 22.8906 23.2885 22.2116C23.6446 21.5326 24.161 20.9509 24.793 20.5168C26.0252 19.6764 27.0228 18.5357 27.6916 17.2025C28.3604 15.8694 28.6783 14.3877 28.6153 12.8975Z" fill="white"/>
<path d="M15.5216 24.4126C15.5242 23.9278 15.4083 23.4497 15.1839 23.0199C14.9595 22.5901 14.6335 22.2217 14.2343 21.9466C13.6916 21.5764 13.1848 21.1562 12.7204 20.6916C12.2182 20.1885 11.7687 19.6354 11.3789 19.0409V27.1105H15.5216V24.4126Z" fill="white"/>
<path d="M25 24.3718C24.9975 23.8869 25.1134 23.4088 25.3378 22.979C25.5621 22.5492 25.8881 22.1808 26.2874 21.9057C26.83 21.5355 27.3369 21.1153 27.8013 20.6507C28.3035 20.1476 28.753 19.5945 29.1428 19V27.0696H25V24.3718Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_5985_4054">
<rect width="26" height="26" fill="white" transform="translate(7 7)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6076 24.841L17.9458 24.4446V17.7534L19.6076 17.4371V24.841ZM31.232 23.2633C30.0267 23.2673 29.0497 22.2943 29.0416 21.089V21.077C29.0416 19.8917 30.0147 18.9187 31.228 18.9187C32.4413 18.9187 33.4143 19.8917 33.4143 21.077C33.4183 22.2823 32.4413 23.2593 31.24 23.2633H31.232ZM35 21.077C35 23.1592 33.3142 24.845 31.232 24.845C29.1498 24.845 27.464 23.1592 27.464 21.077C27.464 19.0228 29.1538 17.337 31.236 17.337C33.3182 17.337 35 19.0228 35 21.077ZM13.6212 24.4486L15.2549 24.7889V20.2841C15.2549 18.1218 13.5691 17.361 12.4079 17.361C11.6431 17.361 11.0104 17.5452 10.4578 18.0978C9.8772 17.5452 9.19247 17.333 8.63988 17.333C7.82301 17.333 7.13828 17.6734 6.66177 18.254V17.4892L5 17.8055V24.4446L6.66177 24.7849V20.2321C6.66177 19.4953 7.19034 18.9948 8.0032 18.9948C8.76802 18.9948 9.32061 19.4953 9.32061 20.2321V24.4486L10.9544 24.7889V20.2321C10.9544 19.4953 11.5069 18.9948 12.2998 18.9948C13.0646 18.9948 13.6172 19.4953 13.6172 20.2321L13.6212 24.4486ZM26.2226 17.337L25.2456 17.4691C23.4277 17.8896 22.2424 18.4702 22.2424 20.4723V24.4486L23.9042 24.7649V20.7086C23.9042 19.7876 24.4327 19.3632 25.2496 19.207L26.2266 19.0508L26.2226 17.337ZM18.0259 14.5941C17.6295 14.9985 17.6295 15.6392 18.0259 16.0436C18.4303 16.4601 19.099 16.4641 19.5115 16.0596L19.5275 16.0436C19.9239 15.6432 19.9239 14.9945 19.5275 14.5941C19.103 14.1976 18.4463 14.1976 18.0259 14.5941Z" fill="#050038"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M34.9982 22.674C34.9361 24.8475 33.0514 26.5087 30.8904 26.5087H21.0072C20.554 26.5053 20.1889 26.136 20.1906 25.6828V15.0482C20.1717 14.6708 20.3897 14.3215 20.7371 14.1726C20.7371 14.1726 21.6437 13.5516 23.5564 13.5516C24.7312 13.5474 25.8851 13.863 26.8943 14.4645C28.4838 15.3947 29.6102 16.9492 29.9992 18.7494C30.3402 18.6505 30.6937 18.6014 31.0487 18.6034C32.1172 18.6038 33.1401 19.0368 33.8842 19.8036C34.6282 20.5705 35.0301 21.606 34.9982 22.674ZM18.9548 15.7251C19.2529 19.33 19.4703 22.6182 18.9548 26.2168C18.9548 26.3935 18.8116 26.5366 18.635 26.5366C18.4584 26.5366 18.3152 26.3935 18.3152 26.2168C17.837 22.6523 18.0482 19.2989 18.3152 15.7251C18.3152 15.5485 18.4584 15.4053 18.635 15.4053C18.8116 15.4053 18.9548 15.5485 18.9548 15.7251ZM16.9614 16.9671C17.3061 20.1839 17.4086 23.0001 16.9552 26.2293C16.9325 26.3953 16.7906 26.5191 16.623 26.5191C16.4554 26.5191 16.3135 26.3953 16.2908 26.2293C15.8902 23.0467 15.9803 20.1559 16.2908 16.9671C16.2908 16.7819 16.4409 16.6318 16.6261 16.6318C16.8113 16.6318 16.9614 16.7819 16.9614 16.9671ZM14.9525 16.6566C15.2785 19.9541 15.4245 22.9131 14.9525 26.2199C14.9525 26.3974 14.8086 26.5413 14.6312 26.5413C14.4537 26.5413 14.3098 26.3974 14.3098 26.2199C13.8502 22.9659 13.9993 19.9168 14.3098 16.6566C14.3098 16.4791 14.4537 16.3352 14.6312 16.3352C14.8086 16.3352 14.9525 16.4791 14.9525 16.6566ZM12.9622 17.5881C13.355 20.4574 13.3519 23.367 12.9529 26.2355C12.9365 26.4041 12.7947 26.5327 12.6253 26.5327C12.4559 26.5327 12.3142 26.4041 12.2978 26.2355C11.9283 23.3648 11.9283 20.4587 12.2978 17.5881C12.2978 17.4046 12.4465 17.2559 12.63 17.2559C12.8135 17.2559 12.9622 17.4046 12.9622 17.5881ZM10.944 19.7274C11.4532 21.9847 11.2203 23.9626 10.9098 26.2479C10.9098 26.4194 10.7708 26.5584 10.5993 26.5584C10.4279 26.5584 10.2888 26.4194 10.2888 26.2479C10.0342 23.9999 9.80758 21.9537 10.2888 19.7274C10.3053 19.5588 10.447 19.4302 10.6164 19.4302C10.7858 19.4302 10.9276 19.5588 10.944 19.7274ZM8.94439 19.3983C9.41324 21.6929 9.258 23.6428 8.93198 25.9467C8.90093 26.2851 8.31098 26.2882 8.27993 25.9467C7.98496 23.6739 7.86076 21.6618 8.26751 19.3983C8.2905 19.229 8.43507 19.1027 8.60595 19.1027C8.77682 19.1027 8.9214 19.229 8.94439 19.3983ZM6.92926 20.5006C7.41364 22.0344 7.23976 23.2733 6.89822 24.8227C6.89822 24.9942 6.7592 25.1332 6.58772 25.1332C6.41623 25.1332 6.27722 24.9942 6.27722 24.8227C5.98535 23.295 5.84873 22.0251 6.24927 20.5006C6.26604 20.3253 6.41324 20.1916 6.58927 20.1916C6.7653 20.1916 6.9125 20.3253 6.92926 20.5006Z" fill="#FF5500"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.39821 16.0205C8.39821 16.0205 10.8136 13.1391 11.9151 16.0205C11.9151 16.0205 14.5421 24.7065 15.6863 28.393C16.8301 32.0792 20.559 30.5963 20.559 30.5963C20.559 30.5963 25.008 29.2401 30.3468 20.3422C35.6856 11.4442 31.3165 9.03805 31.3165 9.03805C31.3165 9.03805 27.5077 6.35974 23.6521 10.9358C23.6521 10.9358 22.3951 12.3568 21.7551 14.5718C21.7551 14.5718 25.102 12.7015 25.5203 15.4331C25.9386 18.1647 22.2719 22.1758 22.2719 22.1758C22.2719 22.1758 20.7455 24.3413 20.0076 20.8223C20.0076 20.8223 18.4085 12.9229 18.2854 12.037C18.2854 12.037 17.4685 6.76133 12.6943 9.61602C12.6943 9.61602 9.83997 11.5529 7 14.4526L8.39821 16.0205Z" fill="#1AB7EA"/>
</svg>

After

Width:  |  Height:  |  Size: 814 B

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.7992 12.5521C31.5202 13.293 31.7533 14.9456 31.7533 14.9456L31.756 14.9428C31.9046 16.2395 31.986 17.5431 32 18.8484V20.6827C31.9897 21.9879 31.9101 23.2916 31.7615 24.5882C31.7615 24.5882 31.5257 26.2518 30.8047 26.9817C29.9798 27.8477 29.0654 27.9357 28.5509 27.9853C28.4959 27.9906 28.4455 27.9954 28.4003 28.0007C25.0446 28.2514 20 28.2514 20 28.2514C20 28.2514 13.7601 28.1963 11.841 28.0118C11.7485 27.9942 11.6364 27.9806 11.5095 27.9652C10.8988 27.891 9.94569 27.7752 9.18986 26.9817C8.4743 26.2408 8.23852 24.5882 8.23852 24.5882C8.0901 23.2925 8.01048 21.9897 8 20.6854V18.8566C8.01035 17.5524 8.08997 16.2496 8.23852 14.9538C8.23852 14.9538 8.46881 13.2903 9.18986 12.5604C10.011 11.6983 10.9208 11.6072 11.4366 11.5554C11.4943 11.5497 11.5471 11.5444 11.5942 11.5386C14.9527 11.2934 19.989 11.2934 19.989 11.2934C19.989 11.2934 25.0391 11.2934 28.3948 11.5303C28.442 11.5361 28.4948 11.5415 28.5528 11.5473C29.0672 11.599 29.9786 11.6906 30.7992 12.5521ZM17.5135 16.1162V22.8917L23.9946 19.5177L17.5135 16.1162Z" fill="#FF0000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 685 B

After

Width:  |  Height:  |  Size: 685 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 701 B

After

Width:  |  Height:  |  Size: 701 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 710 B

After

Width:  |  Height:  |  Size: 710 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 503 B

After

Width:  |  Height:  |  Size: 503 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 364 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 244 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 250 B

After

Width:  |  Height:  |  Size: 250 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 394 B

After

Width:  |  Height:  |  Size: 394 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 426 B

After

Width:  |  Height:  |  Size: 426 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 996 B

After

Width:  |  Height:  |  Size: 996 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1,010 B

After

Width:  |  Height:  |  Size: 1,010 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 996 B

After

Width:  |  Height:  |  Size: 996 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 935 B

After

Width:  |  Height:  |  Size: 935 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 996 B

After

Width:  |  Height:  |  Size: 996 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1,000 B

After

Width:  |  Height:  |  Size: 1,000 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 465 B

After

Width:  |  Height:  |  Size: 465 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 461 B

After

Width:  |  Height:  |  Size: 461 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 967 B

After

Width:  |  Height:  |  Size: 967 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 958 B

After

Width:  |  Height:  |  Size: 958 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 432 B

After

Width:  |  Height:  |  Size: 432 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 426 B

After

Width:  |  Height:  |  Size: 426 B

Before After
Before After

View file

@ -0,0 +1,6 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.8" d="M32.2459 19.8039C28.0493 19.8862 28.9234 22.5428 25.9659 23.2146C22.9615 23.8972 22.4872 15.877 19.4836 15.877C16.4795 15.877 15.8141 23.6677 12.0526 29.0162L11.9453 29.1676L20.0098 33.8228L32.2459 26.759V19.8039Z" fill="#464646"/>
<path opacity="0.2" d="M32.2443 19.5622C30.8395 17.7593 29.8866 15.6865 27.8366 15.6865C24.2087 15.6865 25.1633 21.6047 21.1539 21.6047C17.144 21.6047 16.7225 15.2389 12.18 21.2229C10.7326 23.1296 9.56751 25.2557 8.65234 27.2674L20.0083 33.8231L32.2443 26.7594V19.5622Z" fill="#464646"/>
<path opacity="0.8" d="M7.77148 22.0144C9.14818 18.202 9.74235 15.1143 12.3706 15.1143C16.3801 15.1143 17.3344 26.3783 20.7717 25.2324C24.2083 24.087 23.8264 17.9776 29.1727 17.9776C30.1903 17.9776 31.2293 18.601 32.2441 19.6094V26.7599L20.0081 33.8237L7.77167 26.7599L7.77148 22.0144Z" fill="#464646"/>
<path d="M20 34.7093L7 27.205V12.1959L20 4.69141L33 12.1959V27.2048L20 34.7093ZM8.52735 26.3232L20 32.9461L31.4726 26.3232V13.0777L20 6.45477L8.52735 13.0777V26.3232Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.54497 11.73C9 12.7996 9 14.1997 9 17V23C9 25.8003 9 27.2004 9.54497 28.27C10.0243 29.2108 10.7892 29.9757 11.73 30.455C12.7996 31 14.1997 31 17 31H23C25.8003 31 27.2004 31 28.27 30.455C29.2108 29.9757 29.9757 29.2108 30.455 28.27C31 27.2004 31 25.8003 31 23V17C31 14.1997 31 12.7996 30.455 11.73C29.9757 10.7892 29.2108 10.0243 28.27 9.54497C27.2004 9 25.8003 9 23 9H17C14.1997 9 12.7996 9 11.73 9.54497C10.7892 10.0243 10.0243 10.7892 9.54497 11.73ZM17.4934 15.9697C17.7863 16.2626 17.7862 16.7375 17.4933 17.0304L14.5237 19.9996L17.4934 22.9692C17.7863 23.2621 17.7863 23.737 17.4934 24.0299C17.2005 24.3228 16.7256 24.3228 16.4327 24.0299L12.4023 19.9995L16.4327 15.9696C16.7256 15.6768 17.2005 15.6768 17.4934 15.9697ZM22.4698 17.0309C22.1769 16.738 22.1769 16.2631 22.4698 15.9702C22.7627 15.6773 23.2375 15.6773 23.5304 15.9701L27.5608 20L23.5305 24.0304C23.2376 24.3233 22.7627 24.3233 22.4698 24.0304C22.1769 23.7375 22.1769 23.2626 22.4698 22.9697L25.4395 20.0001L22.4698 17.0309ZM20.0001 21.7051C20.9418 21.7051 21.7052 20.9417 21.7052 20C21.7052 19.0583 20.9418 18.2949 20.0001 18.2949C19.0585 18.2949 18.2951 19.0583 18.2951 20C18.2951 20.9417 19.0585 21.7051 20.0001 21.7051Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,14 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6077_18069)">
<path d="M28.9267 12.0825C28.9267 14.4068 27.0425 16.291 24.7182 16.291H20.4004V7.87402H24.7182C27.0425 7.87402 28.9267 9.75823 28.9267 12.0825Z" stroke="#464646" stroke-width="1.5"/>
<path d="M11.875 12.0825C11.875 14.4068 13.7592 16.291 16.0835 16.291H20.4013V7.87402H16.0835C13.7592 7.87402 11.875 9.75823 11.875 12.0825Z" stroke="#464646" stroke-width="1.5"/>
<path d="M11.875 20.4995C11.875 22.8238 13.7592 24.708 16.0835 24.708H20.4013V16.291H16.0835C13.7592 16.291 11.875 18.1752 11.875 20.4995Z" stroke="#464646" stroke-width="1.5"/>
<path d="M11.875 28.9165C11.875 31.2408 13.7864 33.125 16.1107 33.125C18.4651 33.125 20.4013 31.2163 20.4013 28.8619V24.708H16.0835C13.7592 24.708 11.875 26.5922 11.875 28.9165Z" stroke="#464646" stroke-width="1.5"/>
<path d="M20.4004 20.4995C20.4004 22.8238 22.2846 24.708 24.6089 24.708H24.7182C27.0425 24.708 28.9267 22.8238 28.9267 20.4995C28.9267 18.1752 27.0425 16.291 24.7182 16.291H24.6089C22.2846 16.291 20.4004 18.1752 20.4004 20.4995Z" stroke="#464646" stroke-width="1.5"/>
</g>
<defs>
<clipPath id="clip0_6077_18069">
<rect width="18.8016" height="27" fill="white" transform="translate(11 7)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,7 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M26.6413 21.1273H26.6474C26.6474 21.1273 24.362 24.4796 22.4404 26.9711C20.7794 29.1231 20.2944 30.9659 20.155 31.857C20.1005 32.1843 19.8337 32.4268 19.5124 32.4268C19.1912 32.4268 18.9244 32.1843 18.8699 31.857C18.7305 30.9659 18.2455 29.1231 16.5845 26.9711C16.3299 26.6377 16.0693 26.2921 15.8086 25.9405L22.0827 18.4843L27.1323 12.4951C27.69 13.6651 27.9992 14.9745 27.9992 16.3626C27.9992 18.1206 27.496 19.7513 26.6413 21.1273Z" fill="#464646"/>
<path d="M22.0825 18.4841L15.8084 25.9403C14.0989 23.6489 12.3773 21.1271 12.3773 21.1271H12.3834C12.2015 20.8361 12.0379 20.5391 11.8984 20.2299L16.942 14.2407C16.4631 14.8166 16.1782 15.5562 16.1782 16.3624C16.1782 18.2052 17.6694 19.6965 19.5123 19.6965C20.5488 19.6965 21.4763 19.2236 22.0825 18.4841Z" fill="#464646"/>
<path d="M22.1776 8.02134L16.9825 14.1924L13.0059 10.725C14.5577 8.79727 16.8976 7.57275 19.5103 7.57275C20.4439 7.57275 21.341 7.73036 22.1776 8.02134Z" fill="#464646"/>
<path d="M16.9843 14.192L16.9419 14.2405L11.8983 20.2298C11.3406 19.0598 11.0254 17.7504 11.0254 16.3622C11.0254 14.2163 11.771 12.2462 13.0076 10.7246L16.9843 14.192Z" fill="#464646"/>
<path d="M22.0819 18.4844C22.5608 17.9085 22.8457 17.169 22.8457 16.3627C22.8457 14.5199 21.3545 13.0287 19.5117 13.0287C18.4751 13.0287 17.5476 13.5015 16.9414 14.241L22.1789 8.02148C24.3552 8.76104 26.1374 10.3917 27.1316 12.4952L22.0819 18.4844Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,10 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6077_18054)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.488 7H28.512C30.9906 7 33 9.00937 33 11.488V28.512C33 30.9906 30.9906 33 28.512 33H11.488C9.00937 33 7 30.9906 7 28.512V11.488C7 9.00937 9.00937 7 11.488 7ZM23.3627 14.3728C24.912 13.3347 26.7521 12.8179 28.6153 12.8977C28.6783 14.3879 28.3604 15.8695 27.6916 17.2027C27.0228 18.5358 26.0252 19.6765 24.7929 20.5169C24.161 20.951 23.6446 21.5328 23.2885 22.2117C22.9325 22.8907 22.7475 23.6463 22.7497 24.413V27.1108H17.2528V24.413C17.2549 23.6463 17.0698 22.8906 16.7136 22.2117C16.3575 21.5327 15.841 20.951 15.209 20.5169C13.9771 19.6762 12.9797 18.5354 12.311 17.2024C11.6422 15.8693 11.3241 14.3878 11.3866 12.8977C13.2499 12.8179 15.09 13.3347 16.6392 14.3728C18.1885 15.411 19.3662 16.9163 20.001 18.6699C20.6357 16.9163 21.8134 15.411 23.3627 14.3728ZM15.1839 23.02C15.4083 23.4498 15.5242 23.9279 15.5216 24.4128V27.1106H11.3789V19.041C11.7687 19.6355 12.2182 20.1886 12.7204 20.6917C13.1848 21.1563 13.6916 21.5765 14.2343 21.9468C14.6335 22.2218 14.9595 22.5902 15.1839 23.02ZM25 24.3718C24.9975 23.8869 25.1134 23.4088 25.3378 22.979C25.5621 22.5492 25.8881 22.1808 26.2874 21.9057C26.83 21.5355 27.3369 21.1153 27.8013 20.6507C28.3035 20.1476 28.753 19.5945 29.1428 19V27.0696H25V24.3718Z" fill="#464646"/>
</g>
<defs>
<clipPath id="clip0_6077_18054">
<rect width="26" height="26" fill="white" transform="translate(7 7)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6076 24.8411L17.9458 24.4447V17.7536L19.6076 17.4372V24.8411ZM31.232 23.2634C30.0267 23.2674 29.0497 22.2944 29.0416 21.0891V21.0771C29.0416 19.8918 30.0147 18.9188 31.228 18.9188C32.4413 18.9188 33.4143 19.8918 33.4143 21.0771C33.4183 22.2824 32.4413 23.2594 31.24 23.2634H31.232ZM35 21.0771C35 23.1593 33.3142 24.8451 31.232 24.8451C29.1498 24.8451 27.464 23.1593 27.464 21.0771C27.464 19.0229 29.1538 17.3371 31.236 17.3371C33.3182 17.3371 35 19.0229 35 21.0771ZM13.6212 24.4487L15.2549 24.7891V20.2843C15.2549 18.122 13.5691 17.3611 12.4079 17.3611C11.6431 17.3611 11.0104 17.5453 10.4578 18.0979C9.8772 17.5453 9.19247 17.3331 8.63988 17.3331C7.82301 17.3331 7.13828 17.6735 6.66177 18.2541V17.4893L5 17.8056V24.4447L6.66177 24.7851V20.2322C6.66177 19.4954 7.19034 18.9949 8.0032 18.9949C8.76802 18.9949 9.32061 19.4954 9.32061 20.2322V24.4487L10.9544 24.7891V20.2322C10.9544 19.4954 11.5069 18.9949 12.2998 18.9949C13.0646 18.9949 13.6172 19.4954 13.6172 20.2322L13.6212 24.4487ZM26.2226 17.3371L25.2456 17.4693C23.4277 17.8897 22.2424 18.4703 22.2424 20.4725V24.4487L23.9042 24.765V20.7087C23.9042 19.7877 24.4327 19.3633 25.2496 19.2071L26.2266 19.0509L26.2226 17.3371ZM18.0259 14.5942C17.6295 14.9986 17.6295 15.6393 18.0259 16.0437C18.4303 16.4602 19.099 16.4642 19.5115 16.0598L19.5275 16.0437C19.9239 15.6433 19.9239 14.9946 19.5275 14.5942C19.103 14.1978 18.4463 14.1978 18.0259 14.5942Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M34.9982 22.6743C34.9361 24.8478 33.0514 26.5089 30.8904 26.5089H21.0072C20.554 26.5055 20.1889 26.1362 20.1906 25.683V15.0485C20.1717 14.671 20.3897 14.3217 20.7371 14.1729C20.7371 14.1729 21.6437 13.5518 23.5564 13.5518C24.7312 13.5477 25.8851 13.8632 26.8943 14.4647C28.4838 15.395 29.6102 16.9494 29.9992 18.7496C30.3402 18.6508 30.6937 18.6016 31.0487 18.6037C32.1172 18.604 33.1401 19.037 33.8842 19.8039C34.6282 20.5708 35.0301 21.6062 34.9982 22.6743ZM18.9548 15.7254C19.2529 19.3302 19.4703 22.6184 18.9548 26.2171C18.9548 26.3937 18.8116 26.5369 18.635 26.5369C18.4584 26.5369 18.3152 26.3937 18.3152 26.2171C17.837 22.6526 18.0482 19.2992 18.3152 15.7254C18.3152 15.5487 18.4584 15.4056 18.635 15.4056C18.8116 15.4056 18.9548 15.5487 18.9548 15.7254ZM16.9614 16.9674C17.3061 20.1841 17.4086 23.0003 16.9552 26.2295C16.9325 26.3956 16.7906 26.5193 16.623 26.5193C16.4554 26.5193 16.3135 26.3956 16.2908 26.2295C15.8902 23.0469 15.9803 20.1562 16.2908 16.9674C16.2908 16.7822 16.4409 16.632 16.6261 16.632C16.8113 16.632 16.9614 16.7822 16.9614 16.9674ZM14.9525 16.6569C15.2785 19.9543 15.4245 22.9134 14.9525 26.2202C14.9525 26.3977 14.8086 26.5415 14.6312 26.5415C14.4537 26.5415 14.3098 26.3977 14.3098 26.2202C13.8502 22.9662 13.9993 19.9171 14.3098 16.6569C14.3098 16.4794 14.4537 16.3355 14.6312 16.3355C14.8086 16.3355 14.9525 16.4794 14.9525 16.6569ZM12.9622 17.5883C13.355 20.4576 13.3519 23.3673 12.9529 26.2357C12.9365 26.4043 12.7947 26.5329 12.6253 26.5329C12.4559 26.5329 12.3142 26.4043 12.2978 26.2357C11.9283 23.3651 11.9283 20.459 12.2978 17.5883C12.2978 17.4049 12.4465 17.2561 12.63 17.2561C12.8135 17.2561 12.9622 17.4049 12.9622 17.5883ZM10.944 19.7277C11.4532 21.985 11.2203 23.9629 10.9098 26.2481C10.9098 26.4196 10.7708 26.5586 10.5993 26.5586C10.4279 26.5586 10.2888 26.4196 10.2888 26.2481C10.0342 24.0001 9.80758 21.9539 10.2888 19.7277C10.3053 19.5591 10.447 19.4305 10.6164 19.4305C10.7858 19.4305 10.9276 19.5591 10.944 19.7277ZM8.94439 19.3985C9.41324 21.6931 9.258 23.643 8.93198 25.9469C8.90093 26.2854 8.31098 26.2885 8.27993 25.9469C7.98496 23.6741 7.86076 21.6621 8.26751 19.3985C8.2905 19.2292 8.43507 19.103 8.60595 19.103C8.77682 19.103 8.9214 19.2292 8.94439 19.3985ZM6.92926 20.5008C7.41364 22.0347 7.23976 23.2736 6.89822 24.8229C6.89822 24.9944 6.7592 25.1334 6.58772 25.1334C6.41623 25.1334 6.27722 24.9944 6.27722 24.8229C5.98535 23.2953 5.84873 22.0254 6.24927 20.5008C6.26604 20.3256 6.41324 20.1918 6.58927 20.1918C6.7653 20.1918 6.9125 20.3256 6.92926 20.5008Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.39821 16.0207C8.39821 16.0207 10.8136 13.1393 11.9151 16.0207C11.9151 16.0207 14.5421 24.7066 15.6863 28.3932C16.8301 32.0793 20.559 30.5965 20.559 30.5965C20.559 30.5965 25.008 29.2403 30.3468 20.3423C35.6856 11.4444 31.3165 9.03824 31.3165 9.03824C31.3165 9.03824 27.5077 6.35992 23.6521 10.9359C23.6521 10.9359 22.3951 12.357 21.7551 14.572C21.7551 14.572 25.102 12.7017 25.5203 15.4333C25.9386 18.1648 22.2719 22.176 22.2719 22.176C22.2719 22.176 20.7455 24.3415 20.0076 20.8225C20.0076 20.8225 18.4085 12.923 18.2854 12.0372C18.2854 12.0372 17.4685 6.76152 12.6943 9.6162C12.6943 9.6162 9.83997 11.5531 7 14.4528L8.39821 16.0207Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 807 B

View file

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.7992 12.5517C31.5202 13.2926 31.7533 14.9451 31.7533 14.9451L31.756 14.9424C31.9046 16.2391 31.986 17.5427 32 18.8479V20.6822C31.9897 21.9874 31.9101 23.2911 31.7615 24.5878C31.7615 24.5878 31.5257 26.2513 30.8047 26.9812C29.9798 27.8472 29.0654 27.9353 28.5509 27.9848C28.4959 27.9901 28.4455 27.995 28.4003 28.0003C25.0446 28.2509 20 28.2509 20 28.2509C20 28.2509 13.7601 28.1958 11.841 28.0113C11.7485 27.9938 11.6364 27.9801 11.5095 27.9647C10.8988 27.8905 9.94569 27.7747 9.18986 26.9812C8.4743 26.2403 8.23852 24.5878 8.23852 24.5878C8.0901 23.292 8.01048 21.9892 8 20.685V18.8562C8.01035 17.5519 8.08997 16.2491 8.23852 14.9534C8.23852 14.9534 8.46881 13.2898 9.18986 12.5599C10.011 11.6979 10.9208 11.6067 11.4366 11.555C11.4943 11.5492 11.5471 11.5439 11.5942 11.5381C14.9527 11.293 19.989 11.293 19.989 11.293C19.989 11.293 25.0391 11.293 28.3948 11.5298C28.442 11.5357 28.4948 11.541 28.5528 11.5468C29.0672 11.5985 29.9786 11.6902 30.7992 12.5517ZM17.5135 16.1157V22.8912L23.9946 19.5172L17.5135 16.1157Z" fill="#464646"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 244 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 250 B

After

Width:  |  Height:  |  Size: 250 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 996 B

After

Width:  |  Height:  |  Size: 996 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1,010 B

After

Width:  |  Height:  |  Size: 1,010 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 996 B

After

Width:  |  Height:  |  Size: 996 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 935 B

After

Width:  |  Height:  |  Size: 935 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 996 B

After

Width:  |  Height:  |  Size: 996 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1,000 B

After

Width:  |  Height:  |  Size: 1,000 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 465 B

After

Width:  |  Height:  |  Size: 465 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 461 B

After

Width:  |  Height:  |  Size: 461 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 967 B

After

Width:  |  Height:  |  Size: 967 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 958 B

After

Width:  |  Height:  |  Size: 958 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

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