# Conflicts:
#	src/categories.json
#	src/drivers/webextension/_locales/en/messages.json
main
Mark Wiseman 2 years ago
commit 07fb8c9be6

@ -100,6 +100,9 @@ Patterns (regular expressions) are kept in [`src/technologies/`](https://github.
"meta": {
"generator": "(?:Example|Another Example)"
},
"probe": {
"/path": ""
},
"scriptSrc": "example-([0-9.]+)\\.js\\;confidence:50\\;version:\\1",
"scripts": "function webpackJsonpCallback\\(data\\) {",
"url": "example\\.com",
@ -367,6 +370,14 @@ Plus any of:
</td>
<td><code>"\\.example-class"</code></td>
</tr>
<tr>
<td><code>probe</code></td>
<td>Object</td>
<td>
Request a URL to test for its existence or match text content (NPM driver only).
</td>
<td><code>{ "/path": "Example text" }</code></td>
</tr>
<tr>
<td><code>robots</code></td>
<td>String | Array</td>

@ -153,18 +153,16 @@
}
]
},
"magento": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/non-empty-non-blank-string"
}
"probe": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^.+$": {
},
{
"$ref": "#/definitions/non-empty-non-blank-string"
"additionalProperties": {
"type": "string"
}
]
}
},
"certIssuer": {
"oneOf": [

@ -744,6 +744,20 @@
"priority": 6
},
"108": {
"groups": [
1
],
"name": "Ecommerce frontends",
"priority": 6
},
"109": {
"groups": [
6
],
"name": "Domain parking",
"priority": 9
},
"110": {
"groups": [
1
],

@ -21,22 +21,27 @@ wappalyzer <url> [options]
#### Options
```
-b, --batch-size=... Process links in batches
-d, --debug Output debug messages
-t, --delay=ms Wait for ms milliseconds between requests
-h, --help This text
--html-max-cols=... Limit the number of HTML characters per line processed
--html-max-rows=... Limit the number of HTML lines processed
-D, --max-depth=... Don't analyse pages more than num levels deep
-m, --max-urls=... Exit when num URLs have been analysed
-w, --max-wait=... Wait no more than ms milliseconds for page resources to load
-P, --pretty Pretty-print JSON output
-p, --probe Perform a deeper scan by performing additional requests and inspecting DNS records
--proxy=... Proxy URL, e.g. 'http://user:pass@proxy:8080'
-r, --recursive Follow links on pages (crawler)
-a, --user-agent=... Set the user agent string
-n, --no-scripts Disabled JavaScript on web pages
-N, --no-redirect Disable cross-domain redirects
-b, --batch-size=... Process links in batches
-d, --debug Output debug messages
-t, --delay=ms Wait for ms milliseconds between requests
-h, --help This text
-H, --header Extra header to send with requests
--html-max-cols=... Limit the number of HTML characters per line processed
--html-max-rows=... Limit the number of HTML lines processed
-D, --max-depth=... Don't analyse pages more than num levels deep
-m, --max-urls=... Exit when num URLs have been analysed
-w, --max-wait=... Wait no more than ms milliseconds for page resources to load
-p, --probe=[basic|full] Perform a deeper scan by performing additional requests and inspecting DNS records
-P, --pretty Pretty-print JSON output
--proxy=... Proxy URL, e.g. 'http://user:pass@proxy:8080'
-r, --recursive Follow links on pages (crawler)
-a, --user-agent=... Set the user agent string
-n, --no-scripts Disabled JavaScript on web pages
-N, --no-redirect Disable cross-domain redirects
-e, --extended Output additional information
--local-storage=... JSON object to use as local storage
--session-storage=... JSON object to use as session storage
```
@ -51,9 +56,9 @@ $ npm i wappalyzer
### Usage
```javascript
const Wappalyzer = require('wappalyzer');
const Wappalyzer = require('wappalyzer')
const url = 'https://www.wappalyzer.com';
const url = 'https://www.wappalyzer.com'
const options = {
debug: false,
@ -81,7 +86,13 @@ const wappalyzer = new Wappalyzer(options)
// Optionally set additional request headers
const headers = {}
const site = await wappalyzer.open(url, headers)
// Optionally set local and/or session storage
const storage = {
local: {}
session: {}
}
const site = await wappalyzer.open(url, headers, storage)
// Optionally capture and output errors
site.on('error', console.error)

@ -72,28 +72,43 @@ Examples:
docker wappalyzer/cli https://www.example.com --pretty
Options:
-b, --batch-size=... Process links in batches
-d, --debug Output debug messages
-t, --delay=ms Wait for ms milliseconds between requests
-h, --help This text
-H, --header Extra header to send with requests
--html-max-cols=... Limit the number of HTML characters per line processed
--html-max-rows=... Limit the number of HTML lines processed
-D, --max-depth=... Don't analyse pages more than num levels deep
-m, --max-urls=... Exit when num URLs have been analysed
-w, --max-wait=... Wait no more than ms milliseconds for page resources to load
-p, --probe Perform a deeper scan by performing additional requests and inspecting DNS records
-P, --pretty Pretty-print JSON output
--proxy=... Proxy URL, e.g. 'http://user:pass@proxy:8080'
-r, --recursive Follow links on pages (crawler)
-a, --user-agent=... Set the user agent string
-n, --no-scripts Disabled JavaScript on web pages
-N, --no-redirect Disable cross-domain redirects
-e, --extended Output additional information
-b, --batch-size=... Process links in batches
-d, --debug Output debug messages
-t, --delay=ms Wait for ms milliseconds between requests
-h, --help This text
-H, --header Extra header to send with requests
--html-max-cols=... Limit the number of HTML characters per line processed
--html-max-rows=... Limit the number of HTML lines processed
-D, --max-depth=... Don't analyse pages more than num levels deep
-m, --max-urls=... Exit when num URLs have been analysed
-w, --max-wait=... Wait no more than ms milliseconds for page resources to load
-p, --probe=[basic|full] Perform a deeper scan by performing additional requests and inspecting DNS records
-P, --pretty Pretty-print JSON output
--proxy=... Proxy URL, e.g. 'http://user:pass@proxy:8080'
-r, --recursive Follow links on pages (crawler)
-a, --user-agent=... Set the user agent string
-n, --no-scripts Disabled JavaScript on web pages
-N, --no-redirect Disable cross-domain redirects
-e, --extended Output additional information
--local-storage=... JSON object to use as local storage
--session-storage=... JSON object to use as session storage
`)
process.exit(options.help ? 0 : 1)
}
try {
const { hostname } = new URL(url)
if (!hostname) {
throw new Error('Invalid URL')
}
} catch (error) {
// eslint-disable-next-line no-console
console.log(error.message || error.toString())
process.exit(1)
}
const headers = {}
if (options.header) {
@ -106,13 +121,38 @@ if (options.header) {
)
}
const storage = {
local: {},
session: {},
}
for (const type of Object.keys(storage)) {
if (options[`${type}Storage`]) {
try {
storage[type] = JSON.parse(options[`${type}Storage`])
if (
!options[`${type}Storage`] ||
!Object.keys(options[`${type}Storage`]).length
) {
throw new Error('Object has no properties')
}
} catch (error) {
// eslint-disable-next-line no-console
console.log(`${type}Storage error: ${error.message || error}`)
process.exit(1)
}
}
}
;(async function () {
const wappalyzer = new Wappalyzer(options)
try {
await wappalyzer.init()
const site = await wappalyzer.open(url, headers)
const site = await wappalyzer.open(url, headers, storage)
const results = await site.analyze()
@ -124,10 +164,23 @@ if (options.header) {
process.exit(0)
} catch (error) {
// eslint-disable-next-line no-console
console.error(error)
try {
await Promise.race([
wappalyzer.destroy(),
new Promise((resolve, reject) =>
setTimeout(
() => reject(new Error('Attempt to close the browser timed out')),
3000
)
),
])
} catch (error) {
// eslint-disable-next-line no-console
console.error(error.message || String(error))
}
await wappalyzer.destroy()
// eslint-disable-next-line no-console
console.error(error.message || String(error))
process.exit(1)
}

@ -131,7 +131,20 @@ function getDom(page, technologies = Wappalyzer.technologies) {
dom[selector].forEach(({ exists, text, properties, attributes }) => {
nodes.forEach((node) => {
if (exists) {
if (
technologies.filter(({ name: _name }) => _name === name)
.length >= 50
) {
return
}
if (
exists &&
technologies.findIndex(
({ name: _name, selector: _selector, exists }) =>
name === _name && selector === _selector && exists === ''
) === -1
) {
technologies.push({
name,
selector,
@ -140,9 +153,18 @@ function getDom(page, technologies = Wappalyzer.technologies) {
}
if (text) {
const value = node.textContent.trim()
if (value) {
// eslint-disable-next-line unicorn/prefer-text-content
const value = (
node.textContent ? node.textContent.trim() : ''
).slice(0, 1000000)
if (
value &&
technologies.findIndex(
({ name: _name, selector: _selector, text }) =>
name === _name && selector === _selector && text === value
) === -1
) {
technologies.push({
name,
selector,
@ -153,7 +175,21 @@ function getDom(page, technologies = Wappalyzer.technologies) {
if (properties) {
Object.keys(properties).forEach((property) => {
if (Object.prototype.hasOwnProperty.call(node, property)) {
if (
Object.prototype.hasOwnProperty.call(node, property) &&
technologies.findIndex(
({
name: _name,
selector: _selector,
property: _property,
value,
}) =>
name === _name &&
selector === _selector &&
property === _property &&
value === toScalar(value)
) === -1
) {
const value = node[property]
if (typeof value !== 'undefined') {
@ -170,7 +206,21 @@ function getDom(page, technologies = Wappalyzer.technologies) {
if (attributes) {
Object.keys(attributes).forEach((attribute) => {
if (node.hasAttribute(attribute)) {
if (
node.hasAttribute(attribute) &&
technologies.findIndex(
({
name: _name,
selector: _selector,
attribute: _atrribute,
value,
}) =>
name === _name &&
selector === _selector &&
attribute === _atrribute &&
value === toScalar(value)
) === -1
) {
const value = node.getAttribute(attribute)
technologies.push({
@ -239,7 +289,7 @@ function get(url, options = {}) {
},
},
(response) => {
if (response.statusCode >= 400) {
if (response.statusCode >= 300) {
return reject(
new Error(`${response.statusCode} ${response.statusMessage}`)
)
@ -287,7 +337,12 @@ class Driver {
this.options.debug = Boolean(+this.options.debug)
this.options.recursive = Boolean(+this.options.recursive)
this.options.probe = Boolean(+this.options.probe)
this.options.probe =
String(this.options.probe || '').toLowerCase() === 'basic'
? 'basic'
: String(this.options.probe || '').toLowerCase() === 'full'
? 'full'
: Boolean(+this.options.probe) && 'full'
this.options.delay = parseInt(this.options.delay, 10)
this.options.maxDepth = parseInt(this.options.maxDepth, 10)
this.options.maxUrls = parseInt(this.options.maxUrls, 10)
@ -355,8 +410,42 @@ class Driver {
}
}
open(url, headers = {}) {
return new Site(url.split('#')[0], headers, this)
async open(url, headers = {}, storage = {}) {
const site = new Site(url.split('#')[0], headers, this)
if (storage.local || storage.session) {
this.log('Setting storage...')
const page = await site.newPage(site.originalUrl)
await page.setRequestInterception(true)
page.on('request', (request) =>
request.respond({
status: 200,
contentType: 'text/plain',
body: 'ok',
})
)
await page.goto(url)
await page.evaluate((storage) => {
;['local', 'session'].forEach((type) => {
Object.keys(storage[type] || {}).forEach((key) => {
window[`${type}Storage`].setItem(key, storage[type][key])
})
})
}, storage)
try {
await page.close()
} catch {
// Continue
}
}
return site
}
log(message, source = 'driver') {
@ -487,50 +576,10 @@ class Site {
status: 0,
}
if (!this.browser) {
await this.initDriver()
if (!this.browser) {
throw new Error('Browser closed')
}
}
let page
try {
page = await this.browser.newPage()
if (!page || page.isClosed()) {
throw new Error('Page did not open')
}
} catch (error) {
error.message += ` (${url})`
this.error(error)
await this.initDriver()
page = await this.browser.newPage()
}
this.pages.push(page)
page.setJavaScriptEnabled(!this.options.noScripts)
page.setDefaultTimeout(this.options.maxWait)
const page = await this.newPage(url)
await page.setRequestInterception(true)
await page.setUserAgent(this.options.userAgent)
page.on('dialog', (dialog) => dialog.dismiss())
page.on('error', (error) => {
error.message += ` (${url})`
this.error(error)
})
let responseReceived = false
page.on('request', async (request) => {
@ -693,6 +742,15 @@ class Site {
}),
{}
)
// Change Google Analytics 4 cookie from _ga_XXXXXXXXXX to _ga_*
Object.keys(cookies).forEach((name) => {
if (/_ga_[A-Z0-9]+/.test(name)) {
cookies['_ga_*'] = cookies[name]
delete cookies[name]
}
})
} catch (error) {
error.message += ` (${url})`
@ -980,6 +1038,52 @@ class Site {
}
}
async newPage(url) {
if (!this.browser) {
await this.initDriver()
if (!this.browser) {
throw new Error('Browser closed')
}
}
let page
try {
page = await this.browser.newPage()
if (!page || page.isClosed()) {
throw new Error('Page did not open')
}
} catch (error) {
error.message += ` (${url})`
this.error(error)
await this.initDriver()
page = await this.browser.newPage()
}
this.pages.push(page)
page.setJavaScriptEnabled(!this.options.noScripts)
page.setDefaultTimeout(this.options.maxWait)
await page.setUserAgent(this.options.userAgent)
page.on('dialog', (dialog) => dialog.dismiss())
page.on('error', (error) => {
error.message += ` (${url})`
this.error(error)
})
return page
}
async analyze(url = this.originalUrl, index = 1, depth = 1) {
if (this.options.recursive) {
await sleep(this.options.delay * index)
@ -1067,6 +1171,7 @@ class Site {
website,
cpe,
categories,
rootPath,
}) => ({
slug,
name,
@ -1081,6 +1186,7 @@ class Site {
slug,
name,
})),
rootPath,
})
),
patterns,
@ -1092,9 +1198,25 @@ class Site {
}
async probe(url) {
const files = {
robots: '/robots.txt',
magento: '/magento_version',
const paths = [
{
type: 'robots',
path: '/robots.txt',
},
]
if (this.options.probe === 'full') {
Wappalyzer.technologies
.filter(({ probe }) => Object.keys(probe).length)
.forEach((technology) => {
paths.push(
...Object.keys(technology.probe).map((path) => ({
type: 'probe',
path,
technology,
}))
)
})
}
// DNS
@ -1120,9 +1242,7 @@ class Site {
await Promise.allSettled([
// Static files
...Object.keys(files).map(async (file, index) => {
const path = files[file]
...paths.map(async ({ type, path, technology }, index) => {
try {
await sleep(this.options.delay * index)
@ -1133,7 +1253,17 @@ class Site {
this.log(`Probe ok (${path})`)
await this.onDetect(url, analyze({ [file]: body.slice(0, 100000) }))
const text = body.slice(0, 100000)
await this.onDetect(
url,
analyze(
{
[type]: path ? { [path]: [text] } : text,
},
technology && [technology]
)
)
} catch (error) {
this.error(`Probe failed (${path}): ${error.message || error}`)
}
@ -1196,14 +1326,32 @@ class Site {
this.detections = this.detections
.concat(detections)
.filter(
({ technology: { name }, pattern: { regex } }, index, detections) =>
(
{ technology: { name }, pattern: { regex }, version },
index,
detections
) =>
detections.findIndex(
({ technology: { name: _name }, pattern: { regex: _regex } }) =>
({
technology: { name: _name },
pattern: { regex: _regex },
version: _version,
}) =>
name === _name &&
version === _version &&
(!regex || regex.toString() === _regex.toString())
) === index
)
// Track if technology was identified on website's root path
detections.forEach(({ technology: { name } }) => {
const detection = this.detections.find(
({ technology: { name: _name } }) => name === _name
)
detection.rootPath = detection.rootPath || url.pathname === '/'
})
if (this.cache[url.href]) {
const resolved = resolve(this.detections)

@ -13,7 +13,7 @@
"software"
],
"homepage": "https://www.wappalyzer.com/",
"version": "6.10.44",
"version": "6.10.53",
"author": "Wappalyzer",
"license": "MIT",
"repository": {
@ -43,4 +43,4 @@
"engines": {
"node": ">=16"
}
}
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Esborrar la memòria cau de les deteccions" },
"nothingToDo": { "message": "Res a fer aquí." },
"noAppsDetected": { "message": "No s'ha detectat cap tecnologia." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Mostrar sempre la icona" },
"termsAccept": { "message": "M'està bé" },
"termsDecline": { "message": "Desactivar" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Cache leeren" },
"nothingToDo": { "message": "Nichts zu tun." },
"noAppsDetected": { "message": "Keine Applikationen gefunden" },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Icon immer anzeigen" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Καμία ενέργεια." },
"noAppsDetected": { "message": "Δεν ανιχνεύθηκαν εφαρμογές." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -199,5 +200,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Nothing to do here." },
"noAppsDetected": { "message": "No technologies detected." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -204,5 +205,7 @@
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Form builder" }
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
"categoryName110": { "message": "Form builder" }
}

@ -6,59 +6,60 @@
"optionsSave": { "message": "Guardar opciones" },
"optionsSaved": { "message": "Guardado" },
"optionUpgradeMessage": { "message": "Indicarme actualizaciones" },
"optionDynamicIcon": { "message": "Use application icon instead of Wappalyzer logo" },
"optionDynamicIcon": { "message": "Usa el icono de la aplicación en lugar del logo de Wappalyzer" },
"optionTracking": { "message": "Enviar informes anónimos sobre las aplicaciones detectadas a wappalyzer.com para análisis" },
"optionThemeMode": { "message": "Habilitar la compatibilidad del modo oscuro." },
"optionBadge": { "message": "Show the number of identified technologies on the icon" },
"optionShowCached": { "message": "Include cached detections in results" },
"optionBadge": { "message": "Mostrar la cantidad de tecnologías identificadas en el icono" },
"optionShowCached": { "message": "Incluir detecciones cacheadas en los resultados" },
"optionApiKey": { "message": "API key" },
"optionApiKeyDescription": { "message": "get your API key" },
"disableOnDomain": { "message": "Disable on this website" },
"clearCache": { "message": "Clear cached detections" },
"optionApiKeyDescription": { "message": "obtiene tu API key" },
"disableOnDomain": { "message": "Deshabilitar para este sitio" },
"clearCache": { "message": "Limpiar detecciones cacheadas" },
"nothingToDo": { "message": "Nada que hacer aquí." },
"noAppsDetected": { "message": "Aplicaciones no detectadas." },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
"termsContent": { "message": "This extension sends anonymous information about websites you visit, including domain name and identified technologies, to <a href='https://www.wappalyzer.com'>wappalyzer.com</a>. This can be disabled in the settings." },
"privacyPolicy": { "message": "Privacy policy" },
"createAlert": { "message": "Create an alert for this website" },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Siempre mostrar icono" },
"termsAccept": { "message": "Estoy bien con eso" },
"termsDecline": { "message": "Deshabilitar" },
"termsContent": { "message": "Esta extensión envía informacion anónima sobre los sitios que visitas, inluyendo el nombre de dominio y las tecnologías identificadas, a <a href='https://www.wappalyzer.com'>wappalyzer.com</a>. Esto puede deshabilitarse en las opciones." },
"privacyPolicy": { "message": "Política de privacidad" },
"createAlert": { "message": "Crear una alerta para este sitio" },
"leadLists": { "message": "Lead generation tools" },
"tabTechnologies": { "message": "Technologies" },
"tabPlus": { "message": "More info" },
"creditBalance": { "message": "Credits:" },
"plusMessageHeading": { "message": "Get Plus for $$9/mo" },
"plusMessage": { "message": "With Plus, company and contact details of websites you visit are shown here." },
"plusButton": { "message": "Sign up" },
"plusEmpty": { "message": "No results found." },
"plusCrawl": { "message": "No results found, please check back later." },
"formSave": { "message": "Save" },
"issue": { "message": "Something wrong or missing?" },
"tabTechnologies": { "message": "Tecnologías" },
"tabPlus": { "message": "Más información" },
"creditBalance": { "message": "Créditos:" },
"plusMessageHeading": { "message": "Obtiene Plus por $$9/mo" },
"plusMessage": { "message": "Con Plus, los datos de contacto de los sitios que visitas se muestran aquí." },
"plusButton": { "message": "Regístrate" },
"plusEmpty": { "message": "No se encontraron resultados." },
"plusCrawl": { "message": "No se encontraron resultados, intente más tarde." },
"formSave": { "message": "Guardar" },
"issue": { "message": "¿Algo funciona mal o falta?" },
"setCompany": { "message": "Company information" },
"setKeywords": { "message": "Keywords" },
"setEmail": { "message": "Email addresses" },
"setPhone": { "message": "Phone numbers" },
"setAddress": { "message": "Addresses" },
"setContact": { "message": "Contact details" },
"setSocial": { "message": "Social media accounts" },
"setCompany": { "message": "Información de la empresa" },
"setKeywords": { "message": "Palabras clave" },
"setEmail": { "message": "Direcciones de correo electrónico" },
"setPhone": { "message": "Números de teléfono" },
"setAddress": { "message": "Direcciones" },
"setContact": { "message": "Datos de contacto" },
"setSocial": { "message": "Cuentas de redes sociales" },
"setMeta": { "message": "Metadata" },
"setLocale": { "message": "Locale" },
"setTrackers": { "message": "Trackers" },
"setSecurity": { "message": "Security" },
"setSecurity": { "message": "Seguridad" },
"setSignals": { "message": "Signals" },
"attributeTechnologySpend": { "message": "Technology spend" },
"attributeIpCountry": { "message": "IP country" },
"attributeIpRegion": { "message": "IP region" },
"attributeLanguage": { "message": "Language" },
"attributeEmail": { "message": "Email address" },
"attributeVerifiedEmail": { "message": "Email address (verified)" },
"attributeSafeEmail": { "message": "Email address (safe)" },
"attributePhone": { "message": "Phone number" },
"attributeIpCountry": { "message": "IP país" },
"attributeIpRegion": { "message": "IP región" },
"attributeLanguage": { "message": "Lenguaje" },
"attributeEmail": { "message": "Dirección de correo" },
"attributeVerifiedEmail": { "message": "Dirección de correo (verificada)" },
"attributeSafeEmail": { "message": "Dirección de correo (segura)" },
"attributePhone": { "message": "Número telefónico" },
"attributeSkype": { "message": "Skype" },
"attributeWhatsapp": { "message": "WhatsApp" },
"attributeInferredCompanyName": { "message": "Inferred company name" },
"attributeInferredCompanyName": { "message": "Nombre de empresa inferido" },
"attributeTwitter": { "message": "Twitter" },
"attributeFacebook": { "message": "Facebook" },
"attributeInstagram": { "message": "Instagram" },
@ -86,15 +87,15 @@
"attributeTrackerMedianet": { "message": "Medianet" },
"attributeTrackerFacebook": { "message": "Facebook" },
"attributeTrackerOptimizely": { "message": "Optimizely" },
"attributeCompanyName": { "message": "Company name" },
"attributeIndustry": { "message": "Industry" },
"attributeAbout": { "message": "About" },
"attributeLocations": { "message": "Locations" },
"attributeCompanySize": { "message": "Company size" },
"attributeCompanyType": { "message": "Company type" },
"attributeCompanyFounded": { "message": "Company founded" },
"attributeKeywords": { "message": "Keywords" },
"attributeEmployees": { "message": "People" },
"attributeCompanyName": { "message": "Nombre de la empresa" },
"attributeIndustry": { "message": "Industria" },
"attributeAbout": { "message": "Acerca de" },
"attributeLocations": { "message": "Ubicaciones" },
"attributeCompanySize": { "message": "Tamaño de la empresa" },
"attributeCompanyType": { "message": "Tipo de empresa" },
"attributeCompanyFounded": { "message": "Empresa fundada" },
"attributeKeywords": { "message": "Palabras clave" },
"attributeEmployees": { "message": "Personas" },
"attributeDns_spf": { "message": "SPF record" },
"attributeDns_dmarc": { "message": "DMARC record" },
"attributeSchemaOrgTypes": { "message": "schema.org types" },
@ -114,7 +115,7 @@
"categoryName13": { "message": "Gestor de Incidencias" },
"categoryName14": { "message": "Reproductor de Vídeo" },
"categoryName15": { "message": "Sistema de Comentarios" },
"categoryName16": { "message": "Security" },
"categoryName16": { "message": "Seguridad" },
"categoryName17": { "message": "Tipografía" },
"categoryName18": { "message": "Framework Web" },
"categoryName19": { "message": "Miscelánea" },
@ -135,75 +136,77 @@
"categoryName34": { "message": "Base de Datos" },
"categoryName35": { "message": "Mapa" },
"categoryName36": { "message": "Red de Publicidad" },
"categoryName37": { "message": "Network Service" },
"categoryName38": { "message": "Media Server" },
"categoryName39": { "message": "Webcam" },
"categoryName37": { "message": "Servicio de red" },
"categoryName38": { "message": "Servidor multimedia" },
"categoryName39": { "message": "Cámara web" },
"categoryName40": { "message": "Printer" },
"categoryName41": { "message": "Payment Processor" },
"categoryName41": { "message": "Procesador de pagos" },
"categoryName42": { "message": "Tag Manager" },
"categoryName43": { "message": "Paywall" },
"categoryName44": { "message": "Build/CI System" },
"categoryName45": { "message": "SCADA System" },
"categoryName46": { "message": "Remote Access" },
"categoryName47": { "message": "Development Tool" },
"categoryName48": { "message": "Network Storage" },
"categoryName49": { "message": "Feed Readers" },
"categoryName50": { "message": "Document Management Systems" },
"categoryName46": { "message": "Acceso remoto" },
"categoryName47": { "message": "Herramienta de desarrollo" },
"categoryName48": { "message": "Almacenamiento de red" },
"categoryName49": { "message": "Lectores de feed" },
"categoryName50": { "message": "Sistema de gestión de documentos" },
"categoryName51": { "message": "Landing Page Builder" },
"categoryName52": { "message": "Live Chat" },
"categoryName52": { "message": "Chat en vivo" },
"categoryName53": { "message": "CRM" },
"categoryName54": { "message": "SEO" },
"categoryName55": { "message": "Accounting" },
"categoryName55": { "message": "Contabilidad" },
"categoryName56": { "message": "Cryptominer" },
"categoryName57": { "message": "Static Site Generator" },
"categoryName57": { "message": "Generador de sitios estáticos" },
"categoryName58": { "message": "User Onboarding" },
"categoryName59": { "message": "JavaScript Libraries" },
"categoryName60": { "message": "Containers" },
"categoryName59": { "message": "Librerías JavaScript" },
"categoryName60": { "message": "Contenedores" },
"categoryName61": { "message": "SaaS" },
"categoryName62": { "message": "PaaS" },
"categoryName63": { "message": "IaaS" },
"categoryName64": { "message": "Reverse Proxy" },
"categoryName65": { "message": "Load Balancer" },
"categoryName64": { "message": "Proxy reverso" },
"categoryName65": { "message": "Balanceador de carga" },
"categoryName66": { "message": "UI Frameworks" },
"categoryName67": { "message": "Cookie compliance" },
"categoryName68": { "message": "Accessibility" },
"categoryName69": { "message": "Authentication" },
"categoryName70": { "message": "SSL/TLS certificate authorities" },
"categoryName71": { "message": "Affiliate programs" },
"categoryName68": { "message": "Accesibilidad" },
"categoryName69": { "message": "Autenticación" },
"categoryName70": { "message": "Autoridades certificadoras SSL/TLS" },
"categoryName71": { "message": "Marketing de afiliación" },
"categoryName72": { "message": "Appointment scheduling" },
"categoryName73": { "message": "Surveys" },
"categoryName73": { "message": "Encuestas" },
"categoryName74": { "message": "A/B testing" },
"categoryName75": { "message": "Email" },
"categoryName76": { "message": "Personalisation" },
"categoryName76": { "message": "Personalización" },
"categoryName77": { "message": "Retargeting" },
"categoryName78": { "message": "RUM" },
"categoryName79": { "message": "Geolocation" },
"categoryName80": { "message": "WordPress themes" },
"categoryName81": { "message": "Shopify themes" },
"categoryName82": { "message": "Drupal themes" },
"categoryName79": { "message": "Geolocalización" },
"categoryName80": { "message": "Temas de WordPress" },
"categoryName81": { "message": "Temas de Shopify" },
"categoryName82": { "message": "Temas de Drupal" },
"categoryName83": { "message": "Browser fingerprinting" },
"categoryName84": { "message": "Loyalty & rewards" },
"categoryName85": { "message": "Feature management" },
"categoryName86": { "message": "Segmentation" },
"categoryName86": { "message": "Segmentación" },
"categoryName87": { "message": "WordPress plugins" },
"categoryName88": { "message": "Hosting" },
"categoryName89": { "message": "Translation" },
"categoryName90": { "message": "Reviews" },
"categoryName89": { "message": "Traductor" },
"categoryName90": { "message": "Reseñas" },
"categoryName91": { "message": "Buy now pay later" },
"categoryName92": { "message": "Performance" },
"categoryName93": { "message": "Reservations & delivery" },
"categoryName93": { "message": "Reservas y delivery" },
"categoryName94": { "message": "Referral marketing" },
"categoryName95": { "message": "Digital asset management" },
"categoryName96": { "message": "Content curation" },
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName98": { "message": "Abandono de carritos" },
"categoryName99": { "message": "Transportistas" },
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" },
"categoryName102": { "message": "Returns" },
"categoryName103": { "message": "Livestreaming" },
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName103": { "message": "Transmisiónes en vivo" },
"categoryName104": { "message": "Reserva de entradas" },
"categoryName105": { "message": "Realidad aumentada" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "پاکسازی شناسایی های کش شده" },
"nothingToDo": { "message": "هیچ چیز برای انجام اینجا نیست." },
"noAppsDetected": { "message": "هیچ فن‌آوری شناسایی نشده است." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "همیشه نماد را نشان بده" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -3,6 +3,7 @@
"twitter": { "message": "Suivre Wappalyzer sur Twitter" },
"website": { "message": "Aller sur wappalyzer.com" },
"noAppsDetected": { "message": "Pas d'applications détectées." },
"playGame": { "message": "Play a game?" },
"nothingToDo": { "message": "Rien à faire ici." },
"optionTracking": { "message": "Envoyer anonymement des rapports sur les applications détectées à wappalyzer.com pour la recherche" },
"optionThemeMode": { "message": "Activer la compatibilité de mode sombre." },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Réservation de tickets" },
"categoryName105": { "message": "Réalité augmentée" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Nada que facer por aquí." },
"noAppsDetected": { "message": "Non se identificaron aplicativos." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Amosar sempre icono" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Καμία ενέργεια." },
"noAppsDetected": { "message": "Δεν ανιχνεύθηκαν εφαρμογές." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -201,5 +202,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Tak ada yang dilakukan disini." },
"noAppsDetected": { "message": "Tidak ada aplikasi yang terdeteksi." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Niente da fare qui." },
"noAppsDetected": { "message": "Nessuna applicazione rilevata." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "キャッシュされた検出値のクリア" },
"nothingToDo": { "message": "ここでは特定出来ません。" },
"noAppsDetected": { "message": "技術は検出されませんでした。" },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "常にアイコンを表示" },
"termsAccept": { "message": "OK" },
"termsDecline": { "message": "無効にする" },
@ -203,5 +204,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -0,0 +1,210 @@
{
"github": { "message": "GitHub сайтында Wappalyzer жобасының шанышқысын жасау!" },
"twitter": { "message": "Wappalyzer-ге Twitter-де жазылыныз" },
"website": { "message": "wappalyzer.com сайтына өтіңіз" },
"options": { "message": "Опциялар" },
"optionsSave": { "message": "Опцияларды сақтау" },
"optionsSaved": { "message": "Сақталды" },
"optionUpgradeMessage": { "message": "Жаңартулар туралы хабарлама" },
"optionDynamicIcon": { "message": "Wappalyzer логотипінің орнына технология белгішесін пайдаланыңыз" },
"optionTracking": { "message": "Анонимді түрде анықталған технологияларды wappalyzer.com сайтына жіберіңіз" },
"optionThemeMode": { "message": "Қараңғы режим үйлесімділігін қосу" },
"optionBadge": { "message": "Белгішеде анықталған технологиялардың санын көрсетіңіз" },
"optionShowCached": { "message": "Нәтижелерге кэштелген анықтауларды қосыңыз" },
"optionApiKey": { "message": "API key" },
"optionApiKeyDescription": { "message": "API кілтін алыңыз" },
"disableOnDomain": { "message": "Осы веб-сайтта кенейтуді қолданбау" },
"clearCache": { "message": "Кэштелген анықтауларды тазалау" },
"nothingToDo": { "message": "Мұнда ештеңе істеуге болмайды." },
"noAppsDetected": { "message": "Ешқандай технологиялар анықталмады." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Әрқашан белгішені көрсету" },
"termsAccept": { "message": "Мен мұнымен жақсымын" },
"termsDecline": { "message": "Өшіру" },
"termsContent": { "message": "Бұл кеңейтім сіз кіретін веб-сайттар туралы, соның ішінде домен атауы мен анықталған технологиялар туралы анонимді ақпаратты <a href='https://www.wappalyzer.com'>wappalyzer.com</a> мекенжайына жібереді. Мұны параметрлерде өшіруге болады." },
"privacyPolicy": { "message": "Құпиялылық саясаты" },
"createAlert": { "message": "Осы веб-сайт үшін ескерту жасаңыз" },
"leadLists": { "message": "Lead генерациялау құралдары" },
"tabTechnologies": { "message": "Технологиялар" },
"tabPlus": { "message": "Қосымша ақпарат" },
"creditBalance": { "message": "Несиелер:" },
"plusMessageHeading": { "message": "Plus тарифын $$9/айна қосу" },
"plusMessage": { "message": "Plus көмегімен сіз кіретін веб-сайттардың компания және байланыс мәліметтері осы жерде көрсетіледі." },
"plusButton": { "message": "Тіркелу" },
"plusEmpty": { "message": "Нәтиже табылмады." },
"plusCrawl": { "message": "Нәтижелер табылмады, кейінірек қайта тексеріңіз." },
"formSave": { "message": "Сақтау" },
"issue": { "message": "Бірдеңе дұрыс емес пе, әлде жоқ па?" },
"setCompany": { "message": "Компания туралы ақпарат" },
"setKeywords": { "message": "Негізгі сөздер" },
"setEmail": { "message": "Электрондық пошта" },
"setPhone": { "message": "Телефон нөмірі" },
"setAddress": { "message": "Мекенжайлар" },
"setContact": { "message": "Байланыс деректері" },
"setSocial": { "message": "Әлеуметтік желідегі аккаунттар" },
"setMeta": { "message": "Meta деректер" },
"setLocale": { "message": "Орналасуы" },
"setTrackers": { "message": "Трекерлер" },
"setSecurity": { "message": "Қауіпсіздік" },
"setSignals": { "message": "Сигналдар" },
"attributeTechnologySpend": { "message": "Технология шығыны" },
"attributeIpCountry": { "message": "IP-дін елі" },
"attributeIpRegion": { "message": "IP-дін аймағы" },
"attributeLanguage": { "message": "Тілі" },
"attributeEmail": { "message": "Электрондық пошта" },
"attributeVerifiedEmail": { "message": "Электрондық пошта (тексерілген)" },
"attributeSafeEmail": { "message": "Электрондық пошта (қауіпсіз)" },
"attributePhone": { "message": "Телефон нөмірі" },
"attributeSkype": { "message": "Skype" },
"attributeWhatsapp": { "message": "WhatsApp" },
"attributeInferredCompanyName": { "message": "Болжалды компания атауы" },
"attributeTwitter": { "message": "Twitter" },
"attributeFacebook": { "message": "Facebook" },
"attributeInstagram": { "message": "Instagram" },
"attributeGithub": { "message": "GitHub" },
"attributeTiktok": { "message": "TikTok" },
"attributeYoutube": { "message": "YouTube" },
"attributePinterest": { "message": "Pinterest" },
"attributeLinkedin": { "message": "LinkedIn" },
"attributeOwler": { "message": "Owler" },
"attributeTitle": { "message": "Тақырып" },
"attributeDescription": { "message": "Сипаттама" },
"attributeCopyright": { "message": "Авторлық құқық" },
"attributeCopyrightYear": { "message": "Авторлық құқық жылы" },
"attributeResponsive": { "message": "Жауапты" },
"attributeCertInfo_subjectOrg": { "message": "Сертификат берушi организация" },
"attributeCertInfo_subjectCountry":{ "message": "Сертификат берушiнiң елди мекені" },
"attributeCertInfo_subjectState": { "message": "Сертификат state" },
"attributeCertInfo_subjectLocality":{ "message": "Сертификат жері" },
"attributeCertInfo_issuer": { "message": "Сертификат беруші" },
"attributeCertInfo_protocol": { "message": "Сертификаттау хаттамасы" },
"attributeCertInfo_validTo": { "message": "Сертификаттың жарамдылық мерзімі" },
"attributeHttps": { "message": "SSL/TLS қосылған" },
"attributeTrackerGoogleAnalytics": { "message": "Google Analytics" },
"attributeTrackerGoogleAdSense": { "message": "Google AdSense" },
"attributeTrackerMedianet": { "message": "Medianet" },
"attributeTrackerFacebook": { "message": "Facebook" },
"attributeTrackerOptimizely": { "message": "Optimizely" },
"attributeCompanyName": { "message": "Компанияның аты" },
"attributeIndustry": { "message": "Өнеркәсіп" },
"attributeAbout": { "message": "About" },
"attributeLocations": { "message": "Компания орналасқан жерлері" },
"attributeCompanySize": { "message": "Компания мөлшері" },
"attributeCompanyType": { "message": "Компания түрі" },
"attributeCompanyFounded": { "message": "Компанияның құрылған уақыты" },
"attributeKeywords": { "message": "Кілт сөздер" },
"attributeEmployees": { "message": "Адамдар" },
"attributeDns_spf": { "message": "SPF жазба" },
"attributeDns_dmarc": { "message": "DMARC жазба" },
"attributeSchemaOrgTypes": { "message": "schema.org түрлері" },
"categoryName1": { "message": "Контент басқару жүйелері (CMS)" },
"categoryName2": { "message": "Хабарлама тақталары" },
"categoryName3": { "message": "Дерекқор менеджерлері" },
"categoryName4": { "message": "Құжаттама құралдары" },
"categoryName5": { "message": "Виджеттер" },
"categoryName6": { "message": "Электрондық коммерция" },
"categoryName7": { "message": "Фотогалереялар" },
"categoryName8": { "message": "Викилер" },
"categoryName9": { "message": "Хостинг панельдері" },
"categoryName10": { "message": "Аналитика" },
"categoryName11": { "message": "Блогтар" },
"categoryName12": { "message": "JavaScript фреймворктары" },
"categoryName13": { "message": "Ақаулық трекерлер" },
"categoryName14": { "message": "Бейне ойнатқыштар" },
"categoryName15": { "message": "Түсініктеме жүйелері" },
"categoryName16": { "message": "Қауіпсіздік" },
"categoryName17": { "message": "Қаріп сценарийлері" },
"categoryName18": { "message": "Веб фреймворктары" },
"categoryName19": { "message": "Әртүрлі" },
"categoryName20": { "message": "Редактор" },
"categoryName21": { "message": "Оқытуды басқару жүйелері (LMS)" },
"categoryName22": { "message": "Веб-серверлер" },
"categoryName23": { "message": "Кэштеу" },
"categoryName24": { "message": "Мәтіндік редакторлар" },
"categoryName25": { "message": "JavaScript графика" },
"categoryName26": { "message": "Мобилдік фреймворктар" },
"categoryName27": { "message": "Бағдарламалау тілдері" },
"categoryName28": { "message": "Операциялық жүйелер" },
"categoryName29": { "message": "Іздеу жүйелері" },
"categoryName30": { "message": "Веб-пошта" },
"categoryName31": { "message": "Контент жеткізу желісі (CDN)" },
"categoryName32": { "message": "Маркетингті автоматтандыру" },
"categoryName33": { "message": "Веб-сервер кеңейтімдері" },
"categoryName34": { "message": "Мәліметтер базалары" },
"categoryName35": { "message": "Карталар" },
"categoryName36": { "message": "Жарнама" },
"categoryName37": { "message": "Желі қызметтері" },
"categoryName38": { "message": "Медиа серверлері" },
"categoryName39": { "message": "Веб-камералар" },
"categoryName40": { "message": "Принтерлер" },
"categoryName41": { "message": "Төлем процессорлары" },
"categoryName42": { "message": "Тег менеджерлері" },
"categoryName44": { "message": "CI" },
"categoryName46": { "message": "Қашықтан қол жеткізу" },
"categoryName47": { "message": "Әзірлеу" },
"categoryName48": { "message": "Желілік сақтау" },
"categoryName49": { "message": "Арна оқырмандары" },
"categoryName50": { "message": "DMS" },
"categoryName51": { "message": "Парақша құрастырушы" },
"categoryName52": { "message": "Тікелей чат" },
"categoryName53": { "message": "CRM" },
"categoryName54": { "message": "SEO" },
"categoryName55": { "message": "Бухгалтерлік есеп" },
"categoryName56": { "message": "Криптомайнерлер" },
"categoryName57": { "message": "Статикалық сайт генераторлары" },
"categoryName58": { "message": "Пайдаланушыны қосу" },
"categoryName59": { "message": "JavaScript библиотекалары" },
"categoryName60": { "message": "Контейнерлер" },
"categoryName61": { "message": "SaaS" },
"categoryName62": { "message": "PaaS" },
"categoryName63": { "message": "IaaS" },
"categoryName64": { "message": "Кері прокси" },
"categoryName65": { "message": "Жүктеме балансерлері" },
"categoryName66": { "message": "UI-фреймворктары" },
"categoryName67": { "message": "Cookie сәйкестігі" },
"categoryName68": { "message": "Қол жетімділік" },
"categoryName69": { "message": "Аутентификация" },
"categoryName70": { "message": "SSL/TLS сертификаттау органдары" },
"categoryName71": { "message": "Серіктестік бағдарламалар" },
"categoryName72": { "message": "Кездесуді жоспарлау" },
"categoryName73": { "message": "Сауалнамалар" },
"categoryName74": { "message": "A/B тестілеу" },
"categoryName75": { "message": "Электрондық пошта" },
"categoryName76": { "message": "Жекелендіру" },
"categoryName77": { "message": "Қайта бағыттау" },
"categoryName78": { "message": "RUM" },
"categoryName79": { "message": "Геолокация" },
"categoryName80": { "message": "WordPress тақырыптар" },
"categoryName81": { "message": "Shopify тақырыптар" },
"categoryName82": { "message": "Drupal тақырыптар" },
"categoryName83": { "message": "Браузердін іздері" },
"categoryName84": { "message": "Адалдық және сыйақылар" },
"categoryName85": { "message": "Мүмкіндіктерді басқару" },
"categoryName86": { "message": "Сегменттеу" },
"categoryName87": { "message": "WordPress плагиндер" },
"categoryName88": { "message": "Хостинг" },
"categoryName89": { "message": "Аударма" },
"categoryName90": { "message": "Пікірлер" },
"categoryName91": { "message": "Қазір сатып алыңыз, кейінірек төлеңіз" },
"categoryName92": { "message": "Өнімділік" },
"categoryName93": { "message": "Брондау және жеткізу" },
"categoryName94": { "message": "Рефералдық маркетинг" },
"categoryName95": { "message": "Сандық активтерді басқару" },
"categoryName96": { "message": "Контентті курациялау" },
"categoryName97": { "message": "Тұтынушы деректерінің платформасы" },
"categoryName98": { "message": "Арбадан бас тарту" },
"categoryName99": { "message": "Жүк тасымалдаушылары" },
"categoryName100": { "message": "Shopify қолданбалары" },
"categoryName101": { "message": "Жұмысқа қабылдау және кадрлармен қамтамасыз ету" },
"categoryName102": { "message": "Тауарды қайтару" },
"categoryName103": { "message": "Тікелей эфир" },
"categoryName104": { "message": "Билеттерді брондау" },
"categoryName105": { "message": "Толықтырылған шындық" },
"categoryName106": { "message": "Трансшекаралық электрондық коммерция" },
"categoryName107": { "message": "Орындалу" },
"categoryName108": { "message": "Электрондық коммерция - фронттары" },
"categoryName109": { "message": "Домен тұрағы" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "캐시된 식별 정보 지우기" },
"nothingToDo": { "message": "여기에는 할 일이 없네요." },
"noAppsDetected": { "message": "식별된 기술이 없습니다." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "항상 아이콘 보이기" },
"termsAccept": { "message": "동의합니다" },
"termsDecline": { "message": "비활성화" },
@ -203,5 +204,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -3,6 +3,7 @@
"twitter": { "message": "Volg Wappalyzer op Twitter" },
"website": { "message": "Ga naar wappalyzer.com" },
"noAppsDetected": { "message": "Geen toepassingen gedetecteerd" },
"playGame": { "message": "Play a game?" },
"nothingToDo": { "message": "Hier is niets te doen" },
"optionTracking": { "message": "Stuur anoniem geïdentificeerd technologieën naar wappalyzer.com" },
"optionThemeMode": { "message": "Donkere modus compatibiliteit inschakelen" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Kaartje boeken" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Nic tu nie ma." },
"noAppsDetected": { "message": "Nie wykryto żadnych aplikacji." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Zawsze pokazuj tą ikonę" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -3,6 +3,7 @@
"twitter": { "message": "Seguir Wappalyzer no Twitter" },
"website": { "message": "Ir para wappalyzer.com" },
"noAppsDetected": { "message": "Não foi detectada nenhuma tecnologia." },
"playGame": { "message": "Play a game?" },
"nothingToDo": { "message": "Nada a fazer aqui." },
"optionDynamicIcon": { "message": "Utilizar o ícone da tecnologia em vez do logótipo do Wappalyzer" },
"optionTracking": { "message": "Envie anonimamente tecnologias identificadas para wappalyzer.com" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Nada a fazer aqui." },
"noAppsDetected": { "message": "Nenhuma tecnologia identificada." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Sempre mostrar ícone" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Nimic de făcut pe pagina curentă." },
"noAppsDetected": { "message": "Nici o aplicație detectată." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Afișează icon tot timpul" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Очистить кешированные результаты" },
"nothingToDo": { "message": "Здесь нечего делать" },
"noAppsDetected": { "message": "Не удалось определить ни одну технологию" },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Всегда отображать эту категорию иконкой"},
"termsAccept": { "message": "Я принимаю условия" },
"termsDecline": { "message": "Отключить" },
@ -203,5 +204,7 @@
"categoryName104": { "message": "Бронирование билетов" },
"categoryName105": { "message": "Дополненная реальность" },
"categoryName106": { "message": "Трансграничная электронная коммерция" },
"categoryName107": { "message": "Выполнения" }
"categoryName107": { "message": "Выполнения" },
"categoryName108": { "message": "Фронтенд для ecommerce платформ" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Nie je tu čo robiť." },
"noAppsDetected": { "message": "Žiadne aplikácie neboli zistené." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Burada yapacak birşey yok." },
"noAppsDetected": { "message": "Uygulamalar tespit edilemedi." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Her zaman bu kategorinin ikonunu kullan" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Тут нічого робити." },
"noAppsDetected": { "message": "Нічого не знайдено." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Завжди показувати іконку Wappalyzer" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "Bu yerda tekshirib bolmaydi." },
"noAppsDetected": { "message": "Hech qanday dastur aniqlanmadi." },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "Always show icon" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "清除检测缓存" },
"nothingToDo": { "message": "这里无事可做。" },
"noAppsDetected": { "message": "未检测到任何技术。" },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "总是显示图标" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -203,5 +204,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -17,6 +17,7 @@
"clearCache": { "message": "Clear cached detections" },
"nothingToDo": { "message": "這裡什麼也沒有。" },
"noAppsDetected": { "message": "未識別到技術。" },
"playGame": { "message": "Play a game?" },
"categoryPin": { "message": "永遠顯示圖示" },
"termsAccept": { "message": "I'm ok with that" },
"termsDecline": { "message": "Disable" },
@ -205,5 +206,7 @@
"categoryName104": { "message": "Ticket booking" },
"categoryName105": { "message": "Augmented reality" },
"categoryName106": { "message": "Cross border ecommerce" },
"categoryName107": { "message": "Fulfilment" }
"categoryName107": { "message": "Fulfilment" },
"categoryName108": { "message": "Ecommerce frontends" },
"categoryName109": { "message": "Domain parking" }
}

@ -544,10 +544,11 @@ small {
.empty {
height: calc(100% - 4.5rem);
text-align: center;
margin: 2.5rem 0 3.5rem 0;
margin: 2.5rem 0;
}
.empty__text {
font-size: 1rem;
margin-bottom: 1.5rem;
}
@ -555,6 +556,14 @@ small {
display: none;
}
.empty__play-game {
color: var(--color-text-lighten);
}
.empty__play-game--hidden {
display: none;
}
.category {
page-break-inside: avoid;
break-inside: avoid-column;
@ -794,6 +803,10 @@ body.dynamic-icon .category__heading:hover .category__pin {
width: 13rem;
}
.ttt-game--hidden {
display: none;
}
.ttt-player-icon {
color: var(--color-primary);
width: 1.2rem;

@ -69,7 +69,9 @@
<div class="empty empty--hidden">
<div class="empty__text" data-i18n="noAppsDetected">&nbsp;</div>
<div class="ttt-game">
<a class="empty__play-game" href="#" data-i18n="playGame">&nbsp;</a>
<div class="ttt-game ttt-game--hidden">
<div class="ttt-player">
<svg class="ttt-player-icon ttt-player-icon-x ttt-player-icon--ahead" viewBox="0 0 24 24">
<path fill="currentColor" d="M19,10C19,11.38 16.88,12.5 15.5,12.5C14.12,12.5 12.75,11.38 12.75,10H11.25C11.25,11.38 9.88,12.5 8.5,12.5C7.12,12.5 5,11.38 5,10H4.25C4.09,10.64 4,11.31 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12C20,11.31 19.91,10.64 19.75,10H19M12,4C9.04,4 6.45,5.61 5.07,8H18.93C17.55,5.61 14.96,4 12,4M22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2A10,10 0 0,1 22,12M12,17.23C10.25,17.23 8.71,16.5 7.81,15.42L9.23,14C9.68,14.72 10.75,15.23 12,15.23C13.25,15.23 14.32,14.72 14.77,14L16.19,15.42C15.29,16.5 13.75,17.23 12,17.23Z" />

Binary file not shown.

After

Width:  |  Height:  |  Size: 672 B

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.42087 27.8617L12.0197 23.7003C11.2815 22.485 11.06 20.9382 11.6322 19.502C12.3888 17.5501 14.2898 16.4085 16.3753 16.5374C16.9105 16.5742 17.4273 16.7031 17.9071 16.9057L21.5245 12.7257C20.4725 12.0628 19.2913 11.5841 18.0917 11.3447C19.3836 9.77957 24.0344 4.4212 24.0344 4.4212L19.9188 0.738464C19.9188 0.738464 13.7177 8.08552 11.6322 10.645C10.3956 12.1733 9.14063 13.7017 7.9041 15.23C6.31691 17.1818 5.67095 20.036 5.9847 22.5402C6.26154 24.5841 7.14741 26.4071 8.42087 27.8617Z" fill="#00B3B0"/>
<path d="M25.3081 17.0898C24.8836 16.0587 24.2377 15.1011 23.4441 14.291L19.8637 18.434C20.5834 19.3915 20.9525 20.6253 20.768 21.8774C20.4173 24.3632 17.9442 26.4072 15.3789 25.9284C14.8068 25.8548 14.29 25.6707 13.8101 25.4127L10.2667 29.5006C12.5736 31.1025 15.5081 31.7839 18.4241 31.0841C24.4961 29.6111 27.8735 22.7981 25.3081 17.0898Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16345 24.8366 0 16 0C7.16345 0 0 7.16345 0 16C0 24.8366 7.16345 32 16 32Z" fill="#EA4235"/>
<path d="M15.9996 27.0534C12.2134 27.0534 8.88513 23.9999 8.88513 20.1527C8.88513 17.8015 9.98442 15.9083 12.0607 14.8091C10.8699 13.6488 10.1676 12.4885 10.1676 10.7786C10.1676 9.22779 10.7836 7.74051 11.8802 6.64392C12.9768 5.54733 14.4641 4.93127 16.015 4.93127C17.5657 4.93127 19.053 5.54733 20.1496 6.64392C21.2462 7.74051 21.8622 9.22779 21.8622 10.7786C21.8622 12.4885 21.1295 13.6488 19.9386 14.8091C22.0149 15.9083 23.1141 17.8015 23.1141 20.1527C23.0836 23.9999 19.7859 27.0534 15.9996 27.0534ZM15.9996 16.8855C15.3535 16.8855 14.7218 17.0771 14.1845 17.4361C13.6473 17.7951 13.2284 18.3054 12.9812 18.9023C12.7339 19.4994 12.6692 20.1563 12.7952 20.79C12.9213 21.4238 13.2325 22.0059 13.6894 22.4629C14.1464 22.9198 14.7285 23.231 15.3623 23.3571C15.9961 23.4831 16.6529 23.4184 17.2499 23.1711C17.8469 22.9239 18.3572 22.5051 18.7162 21.9678C19.0752 21.4305 19.2668 20.7988 19.2668 20.1527C19.266 19.2863 18.9215 18.4559 18.309 17.8433C17.6965 17.2307 16.866 16.8863 15.9996 16.8855ZM15.9996 8.54963C15.5498 8.54659 15.1091 8.67707 14.7333 8.92451C14.3576 9.17195 14.0636 9.52523 13.8886 9.93979C13.7137 10.3543 13.6656 10.8113 13.7504 11.2531C13.8352 11.695 14.0492 12.1018 14.3651 12.422C14.6811 12.7423 15.085 12.9617 15.5257 13.0524C15.9664 13.1431 16.424 13.1011 16.8409 12.9318C17.2576 12.7624 17.6149 12.4732 17.8673 12.1009C18.1198 11.7285 18.2562 11.2895 18.2592 10.8397C18.2612 10.5409 18.2044 10.2447 18.0919 9.96795C17.9795 9.69123 17.8136 9.43931 17.6037 9.22667C17.3939 9.01403 17.1443 8.84475 16.8691 8.72859C16.5938 8.61243 16.2984 8.55163 15.9996 8.54963Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_227)">
<g clip-path="url(#clip1_3355_227)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_227)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.4068 14.4135L14.5356 15.5264C14.701 15.6891 14.7691 15.924 14.717 16.1495L14.4969 17.1115L15.6604 16.4217C15.8778 16.2936 16.1487 16.2989 16.3595 16.4324L17.3295 17.0515L17.1294 16.1428C17.0787 15.9106 17.1547 15.6678 17.3295 15.5063L18.5383 14.4015L17.0106 14.1533C16.7905 14.1173 16.6037 13.9732 16.5103 13.7717L15.9952 12.6429L15.4682 13.777C15.3762 13.9772 15.1894 14.1186 14.9732 14.1547L13.4068 14.4135ZM12.8504 18.3325L13.3334 16.2149L11.5389 14.4442C11.3587 14.2681 11.2947 14.0065 11.3707 13.7677C11.4455 13.5275 11.6496 13.3527 11.8964 13.3114L14.4075 12.895L15.3962 10.7681C15.5056 10.5319 15.7631 10.3678 16.0033 10.3825C16.2648 10.3825 16.4996 10.5359 16.6077 10.7721L17.5763 12.8924L20.1101 13.3047C20.3636 13.3461 20.5691 13.5275 20.6438 13.773C20.7172 14.0172 20.6424 14.2828 20.4543 14.4549L18.5156 16.2309L18.98 18.3338C19.0387 18.5967 18.9319 18.8689 18.7118 19.0236C18.4916 19.1771 18.1981 19.1851 17.9699 19.0397L15.9899 17.7787L13.8404 19.0543C13.7364 19.1157 13.6176 19.1477 13.5002 19.1477C13.3628 19.1477 13.224 19.105 13.1066 19.0196C12.8918 18.8622 12.7904 18.5913 12.8504 18.3325ZM25.311 8.09678L25.3097 6.66771H6.6675V8.09678H25.311ZM26.6666 25.9969C26.6666 26.173 26.5959 26.3425 26.4705 26.4692C26.345 26.5933 26.1756 26.664 25.9995 26.664H22.6718V25.3297H25.331L25.3123 9.43111H6.6675V25.3324H18.6691V26.6667H6.00038C5.63212 26.6667 5.33325 26.3678 5.33325 25.9995V6.00054C5.33325 5.63093 5.63212 5.33337 6.00038 5.33337H25.9754C26.3437 5.33337 26.6426 5.63093 26.6426 5.99921L26.6666 25.9969ZM9.32933 24.0221H11.9978V22.6877H9.32933V24.0221ZM14.6663 24.0381H20.0033V22.7037H14.6663V24.0381ZM9.32933 21.3601H11.9978V20.0257H9.32933V21.3601ZM14.6663 21.3601H22.6718V20.0257H14.6663V21.3601Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_227" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#BD0816"/>
<stop offset="1" stop-color="#FF5252"/>
</linearGradient>
<clipPath id="clip0_3355_227">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_227">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_222)">
<g clip-path="url(#clip1_3355_222)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_222)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.71875 17.3333H6.66675V16H7.71341C7.82941 14.3346 8.37475 12.7493 9.35741 11.3893L10.4387 12.1706C9.62141 13.3013 9.16008 14.6173 9.04675 16H10.6667V17.3333H9.05208C9.17475 18.6933 9.63475 19.9853 10.4387 21.0986L9.35741 21.88C8.38808 20.5386 7.84541 18.976 7.71875 17.3333ZM21.8667 23.8986C20.5281 24.8666 18.9694 25.4093 17.3334 25.5373V26.6666H16.0001V25.5453C14.3294 25.4306 12.7401 24.884 11.3774 23.8986L12.1587 22.8186C13.2894 23.6386 14.6321 24.08 16.0001 24.188V22.6666H17.3334V24.18C18.6707 24.06 19.9787 23.62 21.0854 22.8186L21.8667 23.8986ZM11.3774 9.37196C12.7361 8.38796 14.3547 7.86529 16.0001 7.75463V6.66663H17.3334V7.76263C18.9481 7.88663 20.5307 8.40529 21.8667 9.37063L21.0854 10.452C19.9787 9.65063 18.6707 9.21063 17.3334 9.08929V10.6666H16.0001V9.08396C14.6321 9.19196 13.2894 9.63329 12.1587 10.4506L11.3774 9.37196ZM26.6667 16V17.3333H25.5254C25.3987 18.9773 24.8561 20.54 23.8854 21.88L22.8041 21.0973C23.6094 19.9866 24.0694 18.6946 24.1921 17.3333H22.6667V16H24.1961C24.0827 14.616 23.6227 13.3013 22.8041 12.172L23.8854 11.3893C24.8681 12.748 25.4134 14.3333 25.5294 16H26.6667ZM21.4267 10.888L24.0654 8.24929L25.0081 9.19196L22.3694 11.8306L21.4267 10.888ZM11.8161 22.3826L9.17875 25.0213L8.23608 24.0786L10.8734 21.44L11.8161 22.3826ZM12.0987 13.0426L7.10541 8.04929L8.04808 7.10663L13.0414 12.1L12.0987 13.0426ZM21.6321 20.6893L26.1374 25.196L25.1947 26.1386L20.6894 21.632L21.6321 20.6893ZM14.2587 16.9773C14.2601 16.976 14.3294 16.8613 14.3307 16.86C14.7107 16.2626 14.7961 15.5533 14.7601 14.916C14.8547 15.048 14.9387 15.1813 15.0041 15.3026C15.1294 15.5333 15.3921 15.6706 15.6427 15.6506C15.9067 15.6293 16.1334 15.456 16.2201 15.208C16.4707 14.4933 16.5401 13.8613 16.5027 13.3146C16.8481 14.1666 16.7294 15.2986 16.1814 16.308C15.4547 17.644 15.4227 19.0293 15.5441 20.016C15.3027 19.8893 15.0801 19.7533 14.8761 19.6106C14.0267 19.02 13.7561 17.8626 14.2587 16.9773ZM18.3481 17.3266C18.5841 17.464 18.8827 17.4426 19.1001 17.2693C19.1534 17.2266 19.4561 16.968 19.7294 16.4186C19.8201 16.8866 19.8201 17.5426 19.5854 18.4466C19.2507 19.74 17.7787 20.2213 16.9667 20.392C16.8041 19.6546 16.6427 18.2493 17.3534 16.944C17.7041 16.2973 17.8987 15.6173 17.9774 14.9493C18.0854 15.4293 18.1307 15.9786 18.0241 16.644C17.9801 16.9173 18.1094 17.188 18.3481 17.3266ZM13.1001 16.3186C12.2601 17.7973 12.7054 19.724 14.1134 20.7053C14.7121 21.1226 15.4321 21.4826 16.2547 21.776C16.3281 21.8026 16.4041 21.8146 16.4774 21.8146C16.4934 21.8146 16.5081 21.8066 16.5241 21.8053V21.8133C16.6734 21.8013 20.1747 21.4973 20.8774 18.78C21.7667 15.3333 19.8947 14.26 19.8134 14.216C19.6187 14.108 19.3814 14.1066 19.1841 14.2106C19.1814 14.212 19.1774 14.2146 19.1734 14.216C18.6574 12.6413 17.4681 11.7306 16.6294 11.3666C16.1761 11.0253 15.6321 10.7866 15.0134 10.6773C14.7094 10.6213 14.4241 10.7786 14.2974 11.0493C14.1681 11.32 14.2387 11.6466 14.4667 11.8426C14.5001 11.872 15.0761 12.384 15.1627 13.3613C14.7801 13.0226 14.3067 12.7533 13.7681 12.7533C13.5481 12.7533 13.3427 12.8626 13.2174 13.044C13.0934 13.2253 13.0681 13.4573 13.1467 13.6626C13.3081 14.0773 13.6654 15.4226 13.2067 16.1426L13.1001 16.3186Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_222" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#BD0816"/>
<stop offset="1" stop-color="#FF5252"/>
</linearGradient>
<clipPath id="clip0_3355_222">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_222">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

@ -1 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96.804002 84.800004" height="84.8" width="96.804"><path d="M.001 84.8H50.2c48-.8 46.6-42.5 46.6-42.5C95.099-.6 55.599 0 55.599 0c-17 .1-28 10.3-33.1 16.5l14.7 19.3s5.6-12.5 19.4-11.1c0 0 14.2 1.4 14.4 16.9 0 0 .2 15.4-19.6 16.2H0z" fill="#00aeef"/></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.640319 29.696H16.704C32.064 29.44 31.616 16.096 31.616 16.096C31.0717 2.368 18.4317 2.56 18.4317 2.56C12.9917 2.592 9.47168 5.856 7.83968 7.84L12.5437 14.016C12.5437 14.016 14.3357 10.016 18.7517 10.464C18.7517 10.464 23.2957 10.912 23.3597 15.872C23.3597 15.872 23.4237 20.8 17.0877 21.056H0.639999L0.640319 29.696Z" fill="#00AEEF"/>
</svg>

Before

Width:  |  Height:  |  Size: 307 B

After

Width:  |  Height:  |  Size: 450 B

@ -1 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 800 800"><path fill="#042739" fill-rule="evenodd" d="M643.9 681h-.2c-15 5.4-30.7 8.2-46.6 8.1H1.8L416.8 28l300.8 454v1a140.2 140.2 0 01-7.5 147 138.8 138.8 0 01-66.2 51z" clip-rule="evenodd"/><path fill="#0AFF91" d="M691 550.4a95 95 0 01-62.2 89.3 92.3 92.3 0 01-31.6 5.5h-247a40 40 0 01-40-39.7c0-5 1-10 3-14.7l6.6-10.5 32.9-52.4h153.5v-.3a28.4 28.4 0 0024-28.3c0-4.2-1-8.4-2.7-12.3v-.2l-.3-.5c-1-1.9-2.2-3.7-3.6-5.4l-52.3-79.3a57.3 57.3 0 01-.8-61.9l48.5-77.5a.2.2 0 01.1 0h.1l154.3 233.1v.2l2.9 4.3a95.6 95.6 0 0114.4 50.6h.1zM467 183a60.2 60.2 0 01.6 65.1l-47.6 76-201.1 321.1H82L349.7 218 418 109l49 74z"/></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.756 27.24H25.748C25.148 27.456 24.52 27.568 23.884 27.564H0.0720062L16.672 1.12L28.704 19.28V19.32C29.204 20.2316 29.4407 21.2642 29.3877 22.3025C29.3347 23.3409 28.9942 24.344 28.404 25.2C27.7519 26.1359 26.8273 26.8482 25.756 27.24V27.24Z" fill="#042739"/>
<path d="M27.64 22.016C27.6412 22.7945 27.4031 23.5547 26.9582 24.1935C26.5132 24.8324 25.8827 25.3192 25.152 25.588C24.7467 25.7345 24.3189 25.809 23.888 25.808H14.008C13.5857 25.808 13.1806 25.6411 12.8808 25.3436C12.5811 25.0461 12.4112 24.6422 12.408 24.22C12.408 24.02 12.448 23.82 12.528 23.632L12.792 23.212L14.108 21.116H20.248V21.104C20.5172 21.0618 20.7622 20.9242 20.9384 20.7164C21.1147 20.5086 21.2103 20.2444 21.208 19.972C21.208 19.804 21.168 19.636 21.1 19.48V19.472L21.088 19.452C21.048 19.376 21 19.304 20.944 19.236L18.852 16.064C18.6101 15.6977 18.4785 15.2696 18.4729 14.8307C18.4672 14.3918 18.5877 13.9604 18.82 13.588L20.76 10.488C20.7613 10.4876 20.7627 10.4876 20.764 10.488H20.768L26.94 19.812V19.82L27.056 19.992C27.4335 20.5995 27.6331 21.3007 27.632 22.016H27.636H27.64ZM18.68 7.31999C18.9332 7.70605 19.0701 8.15678 19.0744 8.61846C19.0786 9.08014 18.9501 9.53332 18.704 9.92399L16.8 12.964L8.756 25.808H3.28L13.988 8.71999L16.72 4.35999L18.68 7.31999Z" fill="#0AFF91"/>
</svg>

Before

Width:  |  Height:  |  Size: 683 B

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,5 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.2317 31.2941C10.6429 29.2814 5.8549 23.1961 5.8549 15.9996C5.8549 8.72581 10.7468 2.58594 17.4451 0.641853C18.1298 0.443537 17.9499 0 17.1252 0C8.2187 0 1 7.1632 1 15.9996C1 24.8368 8.2187 32 17.1253 32C17.9503 32 17.9836 31.524 17.2317 31.2941Z" fill="#008CDB"/>
<path d="M8.90866 19.7462C8.43346 15.1816 10.6667 6.04831 21.5461 5.74111C28.1772 5.55382 30.1722 8.70532 30.4181 8.51146C30.6888 8.29833 28.0112 2.427 20.2212 2.427C13.2046 2.427 7.51733 8.11517 7.51733 15.1318C7.51733 16.7522 7.82159 18.3005 8.37561 19.7255C8.60887 20.3244 8.96862 20.3265 8.90866 19.7462Z" fill="#008CDB"/>
<path d="M14.2314 10.5911C17.5319 9.15257 21.6818 9.11232 25.758 10.5349C28.4951 11.4905 30.0839 12.8539 30.2129 12.7997C30.4289 12.7062 28.6195 9.84124 25.3551 8.60352C21.402 7.10339 17.141 7.88815 14.0392 10.3201C13.6962 10.5878 13.8264 10.7681 14.2314 10.5911V10.5911Z" fill="#008CDB"/>
</svg>

After

Width:  |  Height:  |  Size: 997 B

@ -1 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"> <path fill="#5468FF" d="M104.2 0H15.8C7.1 0 0 7 0 15.8v88.4c0 8.7 7.1 15.8 15.8 15.8h88.4c8.7 0 15.8-7.1 15.8-15.8V15.8C120 7.1 112.9 0 104.2 0z"/> <path fill="#FFF" d="M30.3 41.9c.1 0 .1 0 0 0 1.3-1.7 2.6-3.3 4.1-4.7 1.5-1.5 3-2.8 4.7-4 .3-.2.4-.7.2-1 0 0 0-.1-.1-.1L37.1 30c-2-2-5.3-2-7.4 0l-2.5 2.5c-2 2-2 5.3 0 7.3l2 2c.4.4.8.4 1.1.1zM50.7 27.6h.2c3.4-1 7-1.5 10.6-1.5 3.4 0 6.9.5 10.2 1.4.4.1.8-.1.8-.5v-4.3c0-2.9-2.3-5.2-5.2-5.2H55.2c-2.9 0-5.2 2.3-5.2 5.2v4.2c-.1.4.3.7.7.7zM61.4 30.3c-18.7 0-33.9 15.2-33.9 33.9s15.2 33.9 33.9 33.9 33.9-15.2 33.9-33.9-15.2-33.9-33.9-33.9zm0 57.8c-13.2-.1-23.9-10.8-23.8-24 0-13.2 10.8-23.9 23.9-23.8 13.2 0 23.9 10.8 23.8 23.9 0 13.2-10.7 23.9-23.9 23.9z"/> <path fill="#FFF" d="M62.1 44.5c-.4 0-.7.3-.7.7V63c0 .4.3.7.7.7.1 0 .2 0 .3-.1l15.8-8.2c.4-.2.5-.6.3-1-3.4-5.9-9.6-9.7-16.4-9.9z"/></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3250_198)">
<g clip-path="url(#clip1_3250_198)">
<path d="M28.3878 0H3.61216C1.61722 0 0 1.61722 0 3.61216V28.3878C0 30.3828 1.61722 32 3.61216 32H28.3878C30.3828 32 32 30.3828 32 28.3878V3.61216C32 1.61722 30.3828 0 28.3878 0Z" fill="#003DFF"/>
<path d="M15.7433 7.24536C10.9625 7.24536 7.06493 11.1001 6.99581 15.8655C6.92541 20.7046 10.8518 24.7148 15.6915 24.743C17.1865 24.7519 18.6259 24.3865 19.904 23.6914C20.0288 23.6236 20.048 23.4521 19.9417 23.358L19.1232 22.6322C18.9568 22.485 18.72 22.4428 18.5152 22.5298C17.623 22.9094 16.6534 23.1033 15.6537 23.0911C11.7427 23.0431 8.583 19.7894 8.64572 15.879C8.70716 12.0178 11.8675 8.89592 15.7427 8.89592H22.8409V21.5116L18.814 17.9334C18.6835 17.8175 18.4838 17.8399 18.3788 17.9794C17.7324 18.8351 16.6796 19.3676 15.5097 19.287C13.8873 19.175 12.5728 17.8687 12.4512 16.247C12.3059 14.3129 13.8387 12.6918 15.7433 12.6918C17.4656 12.6918 18.8838 14.0172 19.0316 15.7017C19.0451 15.8514 19.1123 15.9916 19.2249 16.0908L20.2739 17.0207C20.3929 17.1263 20.5817 17.0617 20.6112 16.9055C20.6867 16.501 20.7136 16.0799 20.6835 15.6473C20.5145 13.1839 18.5196 11.2025 16.055 11.0508C13.23 10.8767 10.8678 13.0866 10.7929 15.8572C10.72 18.5567 12.9318 20.8844 15.632 20.9439C16.759 20.9689 17.8041 20.6143 18.6483 20.0006L23.9104 24.6649C24.1356 24.8646 24.4921 24.7046 24.4921 24.4031V7.57752C24.4921 7.39384 24.3436 7.24536 24.16 7.24536H15.7433V7.24536Z" fill="white"/>
</g>
</g>
<defs>
<clipPath id="clip0_3250_198">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3250_198">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 901 B

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_177)">
<g clip-path="url(#clip1_3355_177)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_177)"/>
<path d="M18.0363 7.218H16.8331V6.41078H18.0363V5.19995H18.8385V6.41078H20.0417V7.218H18.8385V8.42883H18.0363V7.218ZM22.8492 11.6577H21.646V10.8505H22.8492V9.63966H23.6514V10.8505H24.8546V11.6577H23.6514V12.8685H22.8492V11.6577ZM20.7604 24.4134C19.9944 22.4672 18.2265 20.6881 16.2917 19.9168C18.2265 19.1459 19.9944 17.3668 20.7604 15.4202C21.5265 17.3668 23.2944 19.1459 25.2288 19.9168C23.2944 20.6881 21.5265 22.4672 20.7604 24.4134ZM27.1988 19.5132C24.3777 19.5132 21.1615 16.2766 21.1615 13.4376C21.1615 13.2148 20.9822 13.034 20.7604 13.034C20.5386 13.034 20.3594 13.2148 20.3594 13.4376C20.3594 16.2766 17.1428 19.5132 14.3216 19.5132C14.1002 19.5132 13.9205 19.694 13.9205 19.9168C13.9205 20.14 14.1002 20.3204 14.3216 20.3204C17.1428 20.3204 20.3594 23.5569 20.3594 26.3963C20.3594 26.6191 20.5386 26.7999 20.7604 26.7999C20.9822 26.7999 21.1615 26.6191 21.1615 26.3963C21.1615 23.5569 24.3777 20.3204 27.1988 20.3204C27.4202 20.3204 27.5999 20.14 27.5999 19.9168C27.5999 19.694 27.4202 19.5132 27.1988 19.5132ZM5.20205 11.5612C6.36997 12.4161 8.63923 12.8685 10.8171 12.8685C12.9949 12.8685 15.2641 12.4161 16.4321 11.5612V15.427C15.8541 16.2003 13.7288 16.9624 10.8973 16.9624C7.63776 16.9624 5.20205 15.9372 5.20205 15.0206V11.5612ZM10.8171 8.42883C14.2959 8.42883 16.4321 9.48669 16.4321 10.2451C16.4321 11.0035 14.2959 12.0613 10.8171 12.0613C7.33815 12.0613 5.20205 11.0035 5.20205 10.2451C5.20205 9.48669 7.33815 8.42883 10.8171 8.42883ZM16.4321 23.5767C16.4321 24.507 14.03 25.548 10.815 25.548C7.60246 25.548 5.20205 24.507 5.20205 23.5767V20.9977C6.38441 21.9001 8.69899 22.378 10.9201 22.378C12.4647 22.378 13.9582 22.1584 15.1242 21.7597L14.8667 20.9952C13.7814 21.3661 12.3796 21.5708 10.9201 21.5708C7.64738 21.5708 5.20205 20.5456 5.20205 19.629V16.3917C6.3812 17.2925 8.68576 17.7696 10.8973 17.7696C13.2668 17.7696 15.299 17.2784 16.4321 16.5006V17.7119H17.2342V10.2451C17.2342 8.54104 13.9282 7.62161 10.8171 7.62161C7.83268 7.62161 4.67664 8.47 4.42477 10.0433H4.3999V23.5767C4.3999 25.3813 7.70513 26.3552 10.815 26.3552C13.927 26.3552 17.2342 25.3813 17.2342 23.5767V22.1516H16.4321V23.5767Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_177" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#2E27AD"/>
<stop offset="1" stop-color="#527FFF"/>
</linearGradient>
<clipPath id="clip0_3355_177">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_177">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_182)">
<g clip-path="url(#clip1_3355_182)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_182)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.2098 24.6966L22.6036 22.384C22.4279 22.5703 22.2376 22.7369 22.0379 22.8969L24.696 25.2606C24.8518 25.3983 25.098 25.3878 25.2404 25.2304C25.3802 25.0783 25.3669 24.8369 25.2098 24.6966ZM18.6997 22.7776C20.9026 22.7776 22.6928 21.012 22.6928 18.8425C22.6928 16.6729 20.9026 14.9073 18.6997 14.9073C16.4981 14.9073 14.7065 16.6729 14.7065 18.8425C14.7065 21.012 16.4981 22.7776 18.6997 22.7776ZM26.2294 26.1093C25.89 26.4792 25.4201 26.6667 24.9516 26.6667C24.5416 26.6667 24.1317 26.5251 23.8056 26.2352L20.8679 23.6249C20.2038 23.9174 19.473 24.0893 18.6997 24.0893C15.7634 24.0893 13.3755 21.7361 13.3755 18.8425C13.3755 15.9502 15.7634 13.5956 18.6997 13.5956C21.636 13.5956 24.0239 15.9502 24.0239 18.8425C24.0239 19.7357 23.775 20.5647 23.3743 21.3019L26.1016 23.7233C26.8018 24.3477 26.859 25.418 26.2294 26.1093ZM8.71678 18.8425H12.0444V20.1542H8.71678C7.08358 20.1542 5.33325 18.6129 5.33325 16.3187C5.33325 14.4614 6.33553 13.0356 8.04327 12.4112C8.04194 12.3653 8.04194 12.3181 8.04194 12.2721C8.04194 10.1459 9.5061 7.9396 11.4494 7.14077C13.7109 6.20684 16.1161 6.66987 17.8678 8.38033C18.3323 8.83286 18.725 9.36673 19.0417 9.97535C19.4703 9.71039 19.9642 9.5661 20.4779 9.5661C21.6826 9.5661 23.0296 10.4213 23.3397 12.2853C25.0128 12.7234 26.6301 13.9774 26.6301 16.3476C26.6301 16.8447 26.5609 17.3169 26.4211 17.7485L25.1526 17.3524C25.2498 17.048 25.299 16.7109 25.299 16.3476C25.299 14.1531 23.4182 13.6048 22.6103 13.471C22.4333 13.4409 22.2762 13.3438 22.175 13.1982C22.0725 13.0539 22.0326 12.8742 22.0672 12.7011C21.9647 11.3894 21.1461 10.8778 20.4779 10.8778C20.036 10.8778 19.6194 11.0929 19.3346 11.4681C19.1882 11.6609 18.9539 11.754 18.7023 11.7239C18.4614 11.6884 18.2578 11.5245 18.1752 11.2975C17.8837 10.5013 17.4658 9.83238 16.932 9.31163C16.2798 8.67677 14.4869 7.30736 11.9632 8.35147C10.5097 8.94829 9.37299 10.6706 9.37299 12.2721C9.37299 12.4518 9.38231 12.6289 9.40494 12.8008C9.43023 12.9883 9.37166 13.1759 9.24521 13.3176C9.14671 13.4278 9.01361 13.5012 8.86985 13.5288C8.03129 13.7452 6.6643 14.3945 6.6643 16.3187C6.6643 17.8062 7.74645 18.8425 8.71678 18.8425Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_182" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#B0084D"/>
<stop offset="1" stop-color="#FF4F8B"/>
</linearGradient>
<clipPath id="clip0_3355_182">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_182">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_187)">
<g clip-path="url(#clip1_3355_187)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_187)"/>
<path d="M22.0488 20.8492C22.0488 20.1876 21.5105 19.6492 20.8489 19.6492C20.1873 19.6492 19.6488 20.1876 19.6488 20.8492C19.6488 21.5108 20.1873 22.0492 20.8489 22.0492C21.5105 22.0492 22.0488 21.5108 22.0488 20.8492ZM22.8489 20.8492C22.8489 21.952 21.9517 22.8492 20.8489 22.8492C19.7461 22.8492 18.8488 21.952 18.8488 20.8492C18.8488 19.7464 19.7461 18.8492 20.8489 18.8492C21.9517 18.8492 22.8489 19.7464 22.8489 20.8492ZM12.1568 15.0768C12.1568 14.4152 11.6184 13.8768 10.9568 13.8768C10.2948 13.8768 9.75685 14.4152 9.75685 15.0768C9.75685 15.7384 10.2948 16.2768 10.9568 16.2768C11.6184 16.2768 12.1568 15.7384 12.1568 15.0768ZM12.9568 15.0768C12.9568 16.1796 12.0592 17.0768 10.9568 17.0768C9.85405 17.0768 8.95685 16.1796 8.95685 15.0768C8.95685 13.974 9.85405 13.0768 10.9568 13.0768C12.0592 13.0768 12.9568 13.974 12.9568 15.0768ZM15.892 8.80285C15.892 9.46445 16.4304 10.0028 17.092 10.0028C17.754 10.0028 18.292 9.46445 18.292 8.80285C18.292 8.14085 17.754 7.60285 17.092 7.60285C16.4304 7.60285 15.892 8.14085 15.892 8.80285ZM15.092 8.80285C15.092 7.70005 15.9896 6.80285 17.092 6.80285C18.1948 6.80285 19.092 7.70005 19.092 8.80285C19.092 9.90565 18.1948 10.8028 17.092 10.8028C15.9896 10.8028 15.092 9.90565 15.092 8.80285ZM26.4 16C26.4 12.2908 24.4112 8.85925 21.2048 7.00365C20.63 7.11965 20.074 7.27845 19.3804 7.52925L19.1084 6.77685C19.4704 6.64645 19.7944 6.54085 20.1064 6.45045C18.8184 5.89485 17.4192 5.60005 16 5.60005C15.3244 5.60005 14.6596 5.67005 14.01 5.79685C14.4804 6.07205 14.8976 6.34645 15.3028 6.65365L14.8192 7.29085C14.248 6.85805 13.656 6.49125 12.8788 6.08405C8.95125 7.31925 6.12245 10.7832 5.67325 14.8512C6.49685 14.6844 7.28765 14.5936 8.16565 14.572L8.18525 15.3716C7.26525 15.3944 6.47485 15.492 5.61085 15.682C5.60725 15.788 5.60005 15.8952 5.60005 16C5.60005 19.4632 7.31325 22.6544 10.1308 24.5788C9.62965 23.0864 9.38005 21.676 9.38005 20.2984C9.38005 19.5128 9.51525 18.8676 9.65805 18.1848C9.69125 18.0268 9.72485 17.866 9.75765 17.6992L10.5428 17.854C10.5092 18.0236 10.4748 18.188 10.4412 18.3492C10.3012 19.018 10.18 19.5956 10.18 20.2984C10.18 21.8616 10.5232 23.478 11.2216 25.2332C12.7092 26.0056 14.3156 26.4 16 26.4C17.1024 26.4 18.1784 26.224 19.2048 25.8856C19.6076 25.0908 19.9064 24.3408 20.156 23.4796L20.9244 23.7024C20.742 24.3304 20.5328 24.9012 20.2836 25.4708C20.9292 25.1804 21.54 24.8213 22.1132 24.4021C21.9752 24.0637 21.8273 23.7272 21.6637 23.3996L22.3792 23.0416C22.5184 23.32 22.646 23.6048 22.768 23.8912C25.082 21.91 26.4 19.064 26.4 16ZM27.2001 16C27.2001 19.4908 25.6136 22.7196 22.8484 24.8596C22.1636 25.3916 21.4208 25.8333 20.6356 26.1889C20.3024 26.3401 19.9632 26.48 19.6144 26.5976C18.4624 26.9972 17.2452 27.2001 16 27.2001C14.16 27.2001 12.3328 26.7416 10.7152 25.8744C7.06685 23.9224 4.80005 20.1388 4.80005 16C4.80005 15.7256 4.80725 15.5168 4.82365 15.3236C5.09605 10.65 8.30245 6.60485 12.8004 5.26645C13.8248 4.95725 14.902 4.80005 16 4.80005C17.9232 4.80005 19.8156 5.29525 21.4736 6.23165C25.0052 8.21005 27.2001 11.9536 27.2001 16ZM14.9256 10.1852L14.4 9.58245C13.5032 10.3648 12.8056 11.1956 11.9908 12.4504L12.662 12.886C13.4332 11.6976 14.0892 10.9152 14.9256 10.1852ZM13.71 15.3708L13.45 16.1272C15.2872 16.758 16.89 17.7644 18.4936 19.2944L19.046 18.7156C17.3556 17.1032 15.66 16.0404 13.71 15.3708ZM19.0584 10.6672C20.5592 12.956 21.4044 15.4684 21.57 18.1352L20.7716 18.1848C20.6144 15.6584 19.8132 13.2768 18.39 11.106L19.0584 10.6672Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_187" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D27A8"/>
<stop offset="1" stop-color="#A166FF"/>
</linearGradient>
<clipPath id="clip0_3355_187">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_187">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_192)">
<g clip-path="url(#clip1_3355_192)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_192)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2506 22.5213L18.5839 21.1879L19.4173 20.1466L20.5159 21.0253L22.7786 17.6306L23.8893 18.3706L21.2226 22.3706C21.1173 22.5253 20.9533 22.6306 20.7706 22.6599C20.7346 22.6639 20.7013 22.6666 20.6666 22.6666C20.5173 22.6666 20.3706 22.6159 20.2506 22.5213ZM7.99992 15.9999H10.6666V14.6666H7.99992V15.9999ZM8.00125 13.3333H12.0013V11.9999H8.00125V13.3333ZM24.0013 9.33325V8.66659C24.0013 8.29859 23.7026 7.99992 23.3346 7.99992H14.0013C13.6319 7.99992 13.3346 8.29859 13.3346 8.66659V9.33325H6.66659V7.46659C6.66659 7.04125 6.93059 6.66659 7.22925 6.66659H24.7706C25.0706 6.66659 25.3346 7.04125 25.3346 7.46659V9.33325H24.0013ZM20.8333 15.9999C23.3159 15.9999 25.3346 18.0946 25.3346 20.6666C25.3346 23.2399 23.3159 25.3333 20.8333 25.3333C18.3519 25.3333 16.3333 23.2399 16.3333 20.6666C16.3333 18.0946 18.3519 15.9999 20.8333 15.9999ZM26.6666 15.9999V7.46659C26.6666 6.29059 25.8159 5.33325 24.7706 5.33325H7.22925C6.18392 5.33325 5.33325 6.29059 5.33325 7.46659V19.1999C5.33325 20.3773 6.18392 21.3333 7.22925 21.3333H15.0653C15.3933 24.3253 17.8386 26.6666 20.8333 26.6666C24.0506 26.6666 26.6666 23.9759 26.6666 20.6666C26.6666 17.3586 24.0506 14.6666 20.8333 14.6666C17.8386 14.6666 15.3933 17.0093 15.0653 19.9999H7.22925C6.93059 19.9999 6.66659 19.6266 6.66659 19.1999V10.6666H13.3346V15.9999H14.6679V10.6666V9.33325H22.6666V10.6666V13.3333H24.0013V10.6666H25.3346V15.9999H26.6666Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_192" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#BD0816"/>
<stop offset="1" stop-color="#FF5252"/>
</linearGradient>
<clipPath id="clip0_3355_192">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_192">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_197)">
<g clip-path="url(#clip1_3355_197)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_197)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.9999 11.9999H18.6666H17.3333H15.9999H14.6666H13.3333V13.3333V14.6666V15.9999V17.3333V18.6666H14.6666H15.9999H17.3333H18.6666H19.9999V17.3333V15.9999V14.6666V13.3333V11.9999ZM21.3333 11.9999H22.6666V13.3333H21.3333V14.6666H22.6666V15.9999H21.3333V17.3333H22.6666V18.6666H21.3333V19.0773C21.3333 19.5853 20.9186 19.9999 20.4106 19.9999H19.9999V21.3333H18.6666V19.9999H17.3333V21.3333H15.9999V19.9999H14.6666V21.3333H13.3333V19.9999H12.9226C12.4146 19.9999 11.9999 19.5853 11.9999 19.0773V18.6666H10.6666V17.3333H11.9999V15.9999H10.6666V14.6666H11.9999V13.3333H10.6666V11.9999H11.9999V11.5893C11.9999 11.0813 12.4146 10.6666 12.9226 10.6666H13.3333V9.33325H14.6666V10.6666H15.9999V9.33325H17.3333V10.6666H18.6666V9.33325H19.9999V10.6666H20.4106C20.9186 10.6666 21.3333 11.0813 21.3333 11.5893V11.9999ZM15.9999 25.3333H6.66659V17.3333H9.33325V15.9999H6.39992C5.81059 15.9999 5.33325 16.4559 5.33325 17.0159V25.6253C5.33325 26.1999 5.80125 26.6666 6.37459 26.6666H16.2666C16.8559 26.6666 17.3333 26.2106 17.3333 25.6506V22.6666H15.9999V25.3333ZM26.6666 6.37459V16.2919C26.6666 16.8666 26.1986 17.3333 25.6253 17.3333H23.9999V15.9999H25.3333V6.66659H15.9999V7.99992H14.6666V6.37459C14.6666 5.79992 15.1346 5.33325 15.7079 5.33325H25.6253C26.1986 5.33325 26.6666 5.79992 26.6666 6.37459Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_197" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#C8511B"/>
<stop offset="1" stop-color="#FF9900"/>
</linearGradient>
<clipPath id="clip0_3355_197">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_197">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_202)">
<g clip-path="url(#clip1_3355_202)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_202)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.3269 18.7426L22.7155 16.7149V12.9429C22.7155 12.7138 22.5963 12.5006 22.3993 12.3801L18.6611 10.0901V7.17905L25.3269 11.0808V18.7426ZM26.3385 10.1338L18.3329 5.44671C18.1265 5.32619 17.8679 5.32354 17.6589 5.44141C17.4512 5.55929 17.3213 5.77782 17.3213 6.01621V10.4583C17.3213 10.6874 17.4419 10.9007 17.6375 11.0212L21.3757 13.3111V17.0367C21.3757 17.2394 21.4708 17.4314 21.6329 17.5572L25.5828 20.6272C25.7034 20.7213 25.8481 20.7689 25.9968 20.7689C26.096 20.7689 26.1965 20.7464 26.2889 20.7014C26.5194 20.5915 26.6667 20.3597 26.6667 20.1067V10.7033C26.6667 10.4689 26.5421 10.2517 26.3385 10.1338ZM16.713 25.2786L8.0066 20.8934V11.0795L14.6496 7.16184V10.0742L10.9972 12.3602C10.8042 12.482 10.6863 12.6926 10.6863 12.9204V19.0088C10.6863 19.2604 10.8297 19.4895 11.0588 19.6021L16.3418 22.19C16.5294 22.2828 16.7532 22.2801 16.9421 22.1861L21.0889 20.1001L23.8745 22.4205L16.713 25.2786ZM21.6115 18.8048C21.4078 18.634 21.1144 18.6022 20.8759 18.7214L16.6339 20.855L12.0262 18.5982V13.2833L15.6773 10.9974C15.8715 10.8755 15.9895 10.6649 15.9895 10.4371V5.99635C15.9895 5.75795 15.8595 5.5381 15.6505 5.42022C15.4388 5.30102 15.1802 5.305 14.9765 5.42817L6.99367 10.1338C6.79135 10.253 6.66675 10.4689 6.66675 10.7033V21.2987C6.66675 21.5477 6.80743 21.7755 7.03253 21.8881L16.3767 26.5951C16.4705 26.6427 16.575 26.6666 16.6808 26.6666C16.7652 26.6666 16.8496 26.6507 16.9314 26.6189L25.4086 23.2377C25.6257 23.1502 25.7824 22.9569 25.82 22.7264C25.8561 22.4973 25.769 22.2655 25.5895 22.1159L21.6115 18.8048Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_202" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#C8511B"/>
<stop offset="1" stop-color="#FF9900"/>
</linearGradient>
<clipPath id="clip0_3355_202">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_202">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_207)">
<g clip-path="url(#clip1_3355_207)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_207)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.3333 24.3907L23.1386 22.196L22.1946 23.1387L24.3906 25.3334H22.6666V26.6667H25.9999C26.3679 26.6667 26.6666 26.368 26.6666 26V22.6667H25.3333V24.3907ZM8.86125 22.196L6.66659 24.3907V22.6667H5.33325V26C5.33325 26.368 5.63192 26.6667 5.99992 26.6667H9.33325V25.3334H7.60925L9.80525 23.1387L8.86125 22.196ZM25.9999 5.33337H22.6666V6.66671H24.3906L22.1946 8.86271L23.1386 9.80537L25.3333 7.60937V9.33337H26.6666V6.00004C26.6666 5.63204 26.3679 5.33337 25.9999 5.33337ZM6.66659 7.60937L8.86125 9.80537L9.80525 8.86271L7.60925 6.66671H9.33325V5.33337H5.99992C5.63192 5.33337 5.33325 5.63204 5.33325 6.00004V9.33337H6.66659V7.60937ZM19.9999 16.156C19.9999 16.1174 19.9679 16.0827 19.9493 16.064C19.8973 16.016 19.8293 15.9854 19.8053 15.9987L15.3159 16C14.9479 16 14.6493 15.7014 14.6493 15.3334V15.324L13.9346 15.3307C13.9319 15.3414 13.9306 15.3507 13.9293 15.36C13.9293 15.7267 13.6333 16 13.2639 16H12.3333C12.1373 15.9854 12.0026 16.0414 11.9719 16.072L11.9973 21.3334H19.9999V16.156ZM20.8586 15.0894C21.1653 15.376 21.3333 15.7534 21.3333 16.156V22C21.3333 22.368 21.0346 22.6667 20.6666 22.6667H11.3333C10.9653 22.6667 10.6666 22.368 10.6666 22V16C10.6666 15.656 10.8066 15.3347 11.0626 15.0974C11.4453 14.74 11.9893 14.6414 12.3786 14.668H12.7399C12.8653 14.3347 13.1026 14 13.5413 14H15.0973C15.5159 14.076 15.7373 14.372 15.8533 14.6667H19.7599C20.1279 14.632 20.5466 14.7987 20.8586 15.0894ZM21.5079 14.6294C21.2133 14.568 20.9959 14.316 20.9786 14.016C20.9159 12.9467 20.3546 12.5667 19.8906 12.5667C19.5879 12.5667 19.3026 12.7187 19.1039 12.9827C18.9573 13.1787 18.7133 13.2787 18.4719 13.2427C18.2279 13.2054 18.0253 13.0387 17.9426 12.808C17.7226 12.192 17.4066 11.676 17.0026 11.2774C16.5119 10.788 15.1573 9.74004 13.2586 10.5374C12.1879 10.988 11.3146 12.3347 11.3146 13.54C11.3146 13.6787 11.3266 13.8174 11.3426 13.9507C11.3839 14.284 11.1693 14.5974 10.8413 14.6787C10.0893 14.8654 9.19459 15.38 9.19459 16.7747C9.19459 16.776 9.19992 16.9454 9.19992 16.9454C9.22792 17.4347 9.44259 17.9094 9.80525 18.272L8.86125 19.2147C8.26792 18.62 7.91592 17.8374 7.86792 17.0107L7.86125 16.7747C7.86125 15.2587 8.64259 14.0894 9.98125 13.5574V13.54C9.98125 11.788 11.1693 9.96937 12.7453 9.30804C14.5813 8.53871 16.5239 8.92271 17.9413 10.3307C18.2826 10.668 18.5759 11.0614 18.8173 11.5054C19.9946 10.872 21.8693 11.348 22.2506 13.444C23.9346 13.9467 24.8546 15.1227 24.8546 16.7934C24.8546 18.2934 24.1639 19.3907 22.9119 19.8854L22.4213 18.644C23.1719 18.3494 23.5213 17.76 23.5213 16.7934C23.5213 16.3627 23.5213 15.0534 21.5079 14.6294Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_207" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B660F"/>
<stop offset="1" stop-color="#6CAE3E"/>
</linearGradient>
<clipPath id="clip0_3355_207">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_207">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_242)">
<g clip-path="url(#clip1_3355_242)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_242)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.2119 17.8047L24.2484 17.5838C24.465 17.7078 24.6424 17.8189 24.7818 17.9119C24.6234 17.8874 24.4271 17.8499 24.2119 17.8047ZM15.8936 15.7275C15.8936 16.0827 15.5903 16.3734 15.2166 16.3734C14.8443 16.3734 14.5397 16.0827 14.5397 15.7275C14.5397 15.3709 14.8443 15.0816 15.2166 15.0816C15.5903 15.0816 15.8936 15.3709 15.8936 15.7275ZM21.7843 24.2225C21.6693 24.2858 21.4188 24.3749 21.2089 24.4511L20.8556 24.5803C20.4941 24.716 20.0649 24.8387 19.5748 24.9446C18.3482 25.2146 16.6504 25.3748 15.0366 25.3748C9.97167 25.3748 8.68818 24.5377 8.64215 24.2651L6.94709 11.7797C8.83576 12.7059 12.1 13.1438 15.2166 13.1438C18.0151 13.1438 21.7275 12.7472 23.8449 11.759L22.9013 17.4676C20.9233 16.8875 18.5648 15.8424 17.1635 15.203C16.9212 14.3891 16.1454 13.7897 15.2166 13.7897C14.097 13.7897 13.1858 14.6578 13.1858 15.7275C13.1858 16.7958 14.097 17.6652 15.2166 17.6652C16.0168 17.6652 16.7032 17.2169 17.0349 16.5749C18.5418 17.2544 20.7825 18.2181 22.6874 18.7568L21.7843 24.2225ZM15.2166 7.95845C20.9923 7.95845 24.1171 9.32261 24.1536 9.8936L24.1482 9.9246C24.0832 10.5008 20.9666 11.852 15.2166 11.852C9.7388 11.852 6.73859 10.586 6.69526 9.92073L6.69255 9.89489C6.71692 9.23219 9.7212 7.95845 15.2166 7.95845ZM24.4759 16.2145L25.5062 10.006V10.0047C25.5089 9.97111 25.5143 9.94011 25.5143 9.90523C25.5143 7.52827 19.3568 6.66663 15.2166 6.66663C10.4564 6.66663 5.33325 7.68071 5.33325 9.90523C5.33325 9.93365 5.33731 9.96077 5.33867 9.9879L7.30316 24.4524C7.39658 25.0002 7.68089 26.6666 15.0366 26.6666C16.7465 26.6666 18.5567 26.4948 19.8781 26.2042C20.4318 26.0827 20.9273 25.9406 21.3511 25.7817L21.6882 25.659C22.3909 25.4058 23.1166 25.1449 23.1098 24.4499L24.0006 19.0823C24.6058 19.2076 25.0689 19.2658 25.4033 19.2658C26.0288 19.2658 26.2671 19.0914 26.4322 18.9041C26.6299 18.6793 26.7057 18.3964 26.6475 18.107C26.5297 17.5309 25.9042 16.9805 24.4759 16.2145Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_242" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#1B660F"/>
<stop offset="1" stop-color="#6CAE3E"/>
</linearGradient>
<clipPath id="clip0_3355_242">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_242">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

@ -0,0 +1,20 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3355_237)">
<g clip-path="url(#clip1_3355_237)">
<path d="M32 0H0V32H32V0Z" fill="url(#paint0_linear_3355_237)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.3758 16.7282V12.6056L18.3689 14.5183L21.3758 16.7282ZM11.995 17.3814H20.0049L17.1573 15.2893L16.3594 15.7966C16.2496 15.8662 16.1251 15.901 15.9993 15.901C15.8747 15.901 15.7502 15.8662 15.6405 15.7966L14.8425 15.2893L11.995 17.3814ZM10.6241 12.6056V16.7282L13.631 14.5183L10.6241 12.6056ZM19.7465 12.0554H12.2534L15.9993 14.4393L19.7465 12.0554ZM21.3758 23.7206C21.3758 23.2883 21.0504 22.9617 20.618 22.9617C20.1843 22.9617 19.8576 23.2883 19.8576 23.7206C19.8576 24.153 20.1843 24.4796 20.618 24.4796C21.0504 24.4796 21.3758 24.153 21.3758 23.7206ZM16.8119 24.5666C16.8119 24.149 16.4464 23.809 15.9993 23.809C15.5521 23.809 15.188 24.149 15.188 24.5666C15.188 24.9869 15.5521 25.3282 15.9993 25.3282C16.4464 25.3282 16.8119 24.9869 16.8119 24.5666ZM12.0512 23.7206C12.0512 23.2883 11.7259 22.9617 11.2935 22.9617C10.861 22.9617 10.5344 23.2883 10.5344 23.7206C10.5344 24.153 10.861 24.4796 11.2935 24.4796C11.7259 24.4796 12.0512 24.153 12.0512 23.7206ZM22.7145 11.3862V18.0507C22.7145 18.4201 22.4146 18.7199 22.0451 18.7199H16.6686V19.9527H20.618C20.9875 19.9527 21.2874 20.2525 21.2874 20.622V21.7396C22.1228 22.014 22.7145 22.781 22.7145 23.7206C22.7145 24.8972 21.7935 25.8181 20.618 25.8181C19.4412 25.8181 18.5188 24.8972 18.5188 23.7206C18.5188 22.781 19.1119 22.014 19.9486 21.7383V21.2912H16.6686V22.5842C17.5268 22.8613 18.1507 23.6403 18.1507 24.5666C18.1507 25.7244 17.1854 26.6667 15.9993 26.6667C14.8144 26.6667 13.8492 25.7244 13.8492 24.5666C13.8492 23.6403 14.473 22.8613 15.3299 22.5842V21.2912H11.9629V21.7396C12.7982 22.014 13.39 22.781 13.39 23.7206C13.39 24.8972 12.4689 25.8181 11.2935 25.8181C10.118 25.8181 9.19561 24.8972 9.19561 23.7206C9.19561 22.781 9.78869 22.014 10.6241 21.7396V20.622C10.6241 20.2525 10.9226 19.9527 11.2935 19.9527H15.3299V18.7199H9.95469C9.58385 18.7199 9.28531 18.4201 9.28531 18.0507V11.3862C9.28531 11.0154 9.58385 10.7169 9.95469 10.7169H22.0451C22.4146 10.7169 22.7145 11.0154 22.7145 11.3862ZM26.6666 16C26.6666 17.977 25.8901 20.3288 24.5901 22.2924L23.4736 21.5536C24.6357 19.8001 25.3278 17.7241 25.3278 16C25.3278 10.8561 21.1428 6.67189 15.9993 6.67189C10.857 6.67189 6.67202 10.8561 6.67202 16C6.67202 17.7174 7.36417 19.7947 8.52488 21.5536L7.40835 22.2911C6.10974 20.3221 5.33325 17.969 5.33325 16C5.33325 10.1186 10.118 5.33337 15.9993 5.33337C21.8818 5.33337 26.6666 10.1186 26.6666 16Z" fill="white"/>
</g>
</g>
<defs>
<linearGradient id="paint0_linear_3355_237" x1="0" y1="32" x2="32" y2="0" gradientUnits="userSpaceOnUse">
<stop stop-color="#2E27AD"/>
<stop offset="1" stop-color="#527FFF"/>
</linearGradient>
<clipPath id="clip0_3355_237">
<rect width="32" height="32" fill="white"/>
</clipPath>
<clipPath id="clip1_3355_237">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

@ -0,0 +1,19 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g clip-path="url(#clip0_3468_723)">
<mask id="mask0_3468_723" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32">
<rect width="32" height="32" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_3468_723)">
<rect x="-3.04761" y="-3.04761" width="38.0952" height="38.0952" fill="url(#pattern0)"/>
</g>
</g>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_3468_723" transform="scale(0.00694444)"/>
</pattern>
<clipPath id="clip0_3468_723">
<rect width="32" height="32" fill="white"/>
</clipPath>
<image id="image0_3468_723" width="144" height="144" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAYAAADnRuK4AAAACXBIWXMAAAsSAAALEgHS3X78AAAOEklEQVR42u2dX0xb1x3Hv+1QQMM20eINsNGyNE6MmZQ4K+BII23CigTbklQhyR7oJFj6QKaGdA8haUOqraFKQx/aEGnlYSlIDUjNH7SULsnkFhqBKgxJcTIVY+IUZcIOSDAFbCaIqLYHcym2z7m+19xrsPP7SlUbYl+uz/nc3+/7+51z3Gc2bn3hfyCRYtSzNAQkAohEAJEIIBIBRCIRQCQCiEQAkQggEokAIhFAJAKIRACRSAQQiQAiEUAkAohEIoBIBBCJACIRQCQCiEQigEgEEIkAIhFAJBIBRCKASAQQiQAikQggEgFEIoBIBBCJRACRCCASAUQigEgEEIlEAJEIIBIBRHrKlLJSv1in1cCWvw22fCvyck0wGrJhzM4MeY330Ti8vkcYHPLAcdsJe1f3UzU5Oq0GJbt2oKS4CEZDFiybTSF/33fHiWl/YGF8BuC47Yz7PT4T7/9XRvmeMpQUF+GlnUWy3+sPzKD54mU0NjWLXv/s2yci3lf9+puyBriq4gBqDldBq0kP+XljU4vo72dB0HrhXMTkt7ReQf1755nvyTFkoeZwFfbtLpU9Plev3UBjUzOm/YHkSmElu3ZgoOc6zr59IiZ4AECrSUdNdSU6Ll2ATqthvsZWYGW+7+jhKlmTzoIHAGqqK5FjyJJ8rcqKAxHwAEBeron7AHRc+kg2PMLnrKzYj1s3Lsm6x4QA6MP365kTEossm01ovXCOCZFryMN8T+HzVi50Edc3m0Tv1WLeJP3BKWY/LIOM+xSi53LHSatJR8muHckDkMVsUv6am02oqY6MKmI+yZa/TdK1o73Olm+VHMlY0QcArn56I2KMwlPvsiCS+LAkhInmPfl9d5zo7XfC5fZg2u9f9CgWs2nRQJbvLeM+kZUV+9HSehmjvrHFn436xuAa9jAnzpZvlWTEtxeIA2IrsC4LRO+jcbjcoRHoVO0R7nXaO27C3tkDl/t+yGcVPlOeeRNsBdYQa+CPkweKC0AutwfeR+MwZmfCNexBy8UrsHd1c42eMLiO2040NjWjrvYI1xNUVhyIMKP2zh4mQCXFO7jGNTzdRYt+Oq0mqlHlRSrH7YGI6MP7ncffejciWoVeywnHbSeaWy9Dp9WgfE8ZLLkm0fckHEDT/gAqDtUsRgi57609dQYWs0myGbV3daOmujLi58bsTOQYskTvQWp6sphNUas6XqSyd/ZEFBi8yCMHhGl/AM2tl+NaxsfNRI/6xmTDE1L2XrwiOVoIES8Wf5PHMMisa0W7Ds//+AMzEWk0x8iumHgFwWpSwnSixbwLq2QNTxNS/Qvr71suXpbvkziAsT4Hr+S25JoIICXTIC+qGBkTEJ4mpFdY2yIiBiuNRPNJvPLd0R+Z9nr72alw3+5Sya0HAkiCvL5Hy45Ygg+S2v9x3B7gwivml+REIK9Iaq+rPbKqIUrqxdTPv5QXhVj+R4gYrJSYx2ko5hiyItb1hPthVW5i6Xnf7lJ0XPoIVRUHViVIKw6QxWyCLd+KmuqqxX/K95TBlm9ddgOSm8Y4/oX1894FcFiph3sdXvTh3M+0P4DGphbu5zBmZ+Lksdfwdfc/0PTBOyjfU7ZqYFqR1fhgg7BU8pqYa9gDl9sDoyFbtvE+ixOSJ5jlf77vSQ1Iv06BtP5PiFFvvYyS4iJu51rQSzuDC9FncQJ9d5ywd/bA3tW9rAo3YSKQxWxC24Vz+PD9elkLqpbNJuzbXcpMC9GMt2vYI8kHsdLO0gkf9Y1F+CCtJp0ZJVlguYY9opMc7JUdZd4vT4XPW3Hy2Gv48vonaLtwTnIPKyEBKt9ThrYLjVGrF6XVfu2mpGjDmvTwBU8pPojnf3j3wYKoveOm7M9Z+LwVrX87hzbOInNCA2TLtyqyyhyLeiX2g1iRJBwYKT5ITvXFg6j21Bns/PXv0N5xE/7AjGyQbt24pMoC9op4IJ1Wg4bTb/JL80fjaLl4GYPu+xFLAzmGLBgNWcgzb4Il14SSXTtkQ7h0HU40AjF8S/j9SPFBrP6P99G4bI8y6htD7akzAM4s7kqU+vm1mnQ0nH4Duw8eSnyAyveUcb1Le8dN1Dec5y5KCssfwkS2XciKKQXaO7tRWbGf6YNGfWPMZYe+O07m/fgDMyGTGL6+xopA9s7lbcW1d3UvRLDgmmBwV+cOUU9o2Rx8ndqLqqqnsH17S7mVVe2pM3HZeslb9BQmmzXpvO4wKwoJG8x4G9GUnESX24P6987jxbKDOPynOlHTXfnK/sT3QLyylLc4KhqaYzSH9q5uppcQ0pYU/yPqgxaqn+0MEFl7f5SSvasbuw8eYkZLYezVNtSqAiRWVor1ROTCKHWwWf0ogL0wypt0likXQGT7qAHVo0CzyMOotplesU60XFNZvqdseWmMETmEPk64r3INe0Q3u4VHM+FJZ/ufHtXHkhdhk6oPJCc6sVQj41SFnDKadVrD0e+M4qkGmICH+x/W3h+1xANebY+pKkBiuV/qBncAaDj9hmjFIeVa0/4A0yuwOuLRdhqyADt57LWYez9KPIy88VHLf8UFILE9PFWvHIian3VaDZo+eCfqGanyvdLSm9R0Es23DLrvx5w2Wao7dgQDPddRd+yI7PNcFrMJdZwN+bzdCEpK9ZOpDaff4ALgD8ygvuF8xAZ7W7416omMcEXbfA4EG5NfXv9EPGoOeyQ14DzOW1Ff84sdv5GUQsKv5Rr2LJzC8DBPYkgdo4pXj6p+3Fn1RmLjh81cgLSadJx9+wRzxZz3RPEWYcv3lkYFSOzIj9yQ33fHKdrU5O39kVptLqfiBIJHp+NxVl51Ez3qGxPd6yIZxKYWVL9+kt/zkHhaNKpBlph2ehW6jhCJFfWewx5Z5/dXfRXW2NQc0wqzMLjH33p3cUBqT52JGHB/YGZh3Si6okUpqX2baAZZjoGubziv2Fi3d9xExaGjcftyhR/8KGv9n+Pxi+xdPXC5H+DFIhtS16yRPBh/+OMxOP81GGLMvx35N35bWryYSsJfI6aJyf8gx5jNNPAtrVfw2T87JV8nL3cTnvvZT5nR0t4l3cC63B60f3oTOp0WOcZsyeMTHnVeP/4XtLRewdyTJ3Frx8T9612EI8u2AmvEYcG+O87g4mm/U/TkqmCItVpNzGWqTqsJgSh4vDqwYtcJN8i2/G3YXmBlfm+SEHVd7vvoXRgrtcv1VQMQKblEX3FHIoBIBBCJACIRQCSSTKXQECSubMbHsBmmkKObRY52lvma6bkUDE5o4PBlwOFdSwA97SrPHUfJhgm8tGFS8nuE13r9aai+kQfXhGZ1AlSyYRJVW0dhH9Gj+a6RZlthcGoKHsLIiTRSZNTOomTD5CoG6LkJFBqmUGiYQuUWL2o7N6sSNp8m6VLn0VT2DQoNU4pcL0+v7BqZogDV92yEZV0AFv0MjNpZtO69hz5fBs71ryeQYpRFHwiBxzWRDv+T4LT1MsY0Rze7OAcsjfrTFL0/xZcydKnzaCh2R+RoAml5EMlNOxZ9AG0v34N2zXzIzxv716Oxf71i96b4avzcd8/iM89PoEudhzXTvyT/zqE8dxzbjY8x6k+DV+EnIZk18d81Mb3nxz98EjIHANDuzlLUA6nWB6rv2YjjnebFcCuo0DCF1r33cOv3fSjPHYcudZ4IUUnTc5EOZXBC2S+4UH013qIPoKHYzc3J/icpuDqUiZa7RsXzc7Kb65INk4uVmdefhoq/bwkZw7aX70aYb9NfX1i9Jpol14QGFde2oq7oAfaZI09oaNfMo3KLF5VbvOjzZeDqUBbsI+uYTw8p2DwM9oImQ/yNUTsLm3EKo0NpIbZhqT4fWaf4/cTnm+rnUlD7hRn2b/Vo+JU7wtgtTW+FhimcBdDuzoT9Wz3sKnzoRDTRAjS8PpD/SQoc3ozvqzHtbMRr7SN6xe8t/jsSOVUaT8LA2Ef0T1VkkgLN0tL+8I2fh6Svqq1enPzlg5BxfPHjQsXHb8V2JJZsmERd0QPZnVXXRDrsI3rV1nZWSjkLKchmfByRnsTEK8ubyr4JeUjb3Zmo/cKc+BEoPBpVbvGipuBhzNfo82Wg17sWDl8GXBOahIlQS4GxGaZkP0h9vgzUfmFmFh661Hl8feirkJ/t/LhQlSJlRUd7ei4Fjf3r0T6UiZrCh0yTHU2Cb1oaoVyTGoxOp8Hhy4B3Om3FqzuLPoC8he78duNjWPQzkiNMuLz+NNT3bBT1huW542G9n0zVxmBVbaq36AM4VfRAsXWf8CcW+L7971j48/RcyrIbaxZ9ALrUeejWfLf433n6AIzauWUtfoZ7wea7Rkld5I6DdxbbJmp5n1UJUHipGktEWq68/jR4/amir1ESDCn3c3UoEy33jJIgsOgD6Dj49eKfj3eacXUoU7X7W5WGweFdC4d3LRr71qOm8KEsU7lcGRnl70rINZGOlns5sid/afpqd2eqCs+qjUAsUxiMSGPcjnYyyP8kBfaRdbg6lBlzhTnw6lfQrplXrepKSIBi7Y8kij4fWadYn6vt5bvo9a5VdMU9qQBKBpiSqTmaNEebc7SzKHluEjbDY9iMU3HzTHKqQKFflUwN0KQ9Gy/0XoL/DqjSGhAzwK5JDVwTGgxOpCf1Jrqn6ssVcrSzMOpmkbfQyFt6HEZOad63pIc0uNBDcvgyFOkpEUCkp0p0MpVEAJEIIBIBRCKASCQCiEQAkQggEgFEIhFAJAKIRACRCCASiQAiEUAkAohEAJFIBBCJACIRQCQCiEQAkUgEEIkAIhFAJAKIRCKASAQQiQAiEUAkEgFEIoBIBBCJACKRCCASAUQigEgJr/8DT/8zQw7DMAQAAAAASUVORK5CYII="/>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

@ -1 +0,0 @@
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><title>NetworkingContentDelivery</title><path fill="#fbbf93" d="M39.74 56.97L24.12 77.94l-8.18-20.93 14.92-.91 8.88.87zm20.36 0l15.78 21.09 8.02-21.03-14.76-.93-9.04.87z"/><path fill="#6b3a19" d="M39.74 42.97L24.12 21.94l-8.18 21.05 15.05.9 8.75-.92zm20.36 0l15.78-21.03 8.18 21.05-14.92.91-9.04-.93z"/><path fill="#9d5025" d="M60.1 42.97l15.78-1.17V21.94L60.1 26.02v16.95z"/><path fill="#f58536" d="M84.06 42.99l-8.18-1.19V21.94l8.18 4.09v16.96z"/><path fill="#9d5025" d="M60.1 56.97l15.78 1.23v19.86L60.1 73.92V56.97z"/><path fill="#f58536" d="M83.9 57.03l-8.02 1.17v19.86l8.02-4.01V57.03zM39.74 42.97L24.12 41.8V21.94l15.62 4.08v16.95z"/><path fill="#9d5025" d="M15.94 42.99l8.18-1.19V21.94l-8.18 4.09v16.96z"/><path fill="#f58536" d="M39.74 56.97L24.12 58.2v19.86l15.62-4.14V56.97z"/><path fill="#9d5025" d="M15.94 57.01l8.18 1.19v19.86l-8.18-4.09V57.01z"/><path fill="#fbbf93" d="M66.26 59.59L50 57.98l-16.42 1.59L50 91l16.26-31.41z"/><path fill="#6b3a19" d="M66.26 40.41L50 42.02l-16.42-1.59L50 9l16.26 31.41z"/><path fill="#f58536" d="M66.26 40.41L50 38.05V9l16.26 8.13v23.28z"/><path fill="#9d5025" d="M33.58 40.43L50 38.05V9l-16.42 8.21v23.22z"/><path fill="#f58536" d="M66.26 59.59L50 61.95V91l16.26-8.13V59.59z"/><path fill="#9d5025" d="M33.58 59.57L50 61.95V91l-16.42-8.21V59.57z"/></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 347 B

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

@ -1 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250"><path fill="#dd0031" d="M125 30L31.9 63.2l14.2 123.1L125 230l78.9-43.7 14.2-123.1z"/><path fill="#c3002f" d="M125 30v22.2-.1V230l78.9-43.7 14.2-123.1L125 30z"/><path fill="#fff" d="M125 52.1L66.8 182.6h21.7l11.7-29.2h49.4l11.7 29.2H183L125 52.1zm17 83.3h-34l17-40.9 17 40.9z"/></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.896 0L1 5.312L3.272 25.008L15.896 32L28.52 25.008L30.792 5.312L15.896 0Z" fill="#DD0031"/>
<path d="M15.896 0V3.552V3.536V32L28.52 25.008L30.792 5.312L15.896 0Z" fill="#C3002F"/>
<path d="M15.8957 3.53564L6.58374 24.4156H10.0557L11.9277 19.7436H19.8317L21.7037 24.4156H25.1757L15.8957 3.53564ZM18.6157 16.8636H13.1757L15.8957 10.3196L18.6157 16.8636Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 345 B

After

Width:  |  Height:  |  Size: 483 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 566 B

@ -1 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 260.16199 184.413" height="184.413" width="260.162"><path d="M45.018 121.284c2.96 3.65 6.25 7.35 9.87 11.07-10.54 3.17-17.45 9.06-21.76 14.26-6.82 8.23-10.43 19.1-9.6 28.43H5.378c3.64-7.9 18.17-30.72 39.64-53.76zm210.26 58.71h-22.07c-50.63-26.42-95.08-45.05-142.3-49.12.1-6.57 1.27-14.01 3.52-22.3l-4.35-1.17c-2.31 8.52-3.52 16.23-3.66 23.13-4.92-.33-9.87-.49-14.87-.49-4.23 0-8.09.39-11.61 1.07-4.59-4.58-8.5-8.96-11.82-13.11 21.78-22.68 57.65-43.2 88.87-50.92 8.79 29.22 27.66 49.24 50.56 62.71a96.13 96.13 0 0 0 4.95-3.02l39.95 43.01 1.75-.15c10.91-.94 17.11 4.98 18.75 6.82 1.21 1.34 1.93 2.57 2.33 3.54z" fill="#d1a41a"/><path d="M235.788 36.134c.81 39.69-19.44 71.28-47.79 87.48-48.12-23.97-57.18-84.71-48.98-117.29 2.28 12.46 6.43 20.27 15.39 24.1 19.54-5.59 46.43-6.03 66.24-.57 8.25-6 11.45-15.17 13.2-23.18 2.18 9.32 1.93 29.46 1.94 29.46z" fill="#ffdc76"/><path d="M122.089 95.468l-22.3-14.957 14.957-6.8zm-20.939 1.359l-16.59-8.43 8.703-5.167zm-22.028 10.607L67.7 99.547l7.615-5.711zm110.68 33.72l12.51-5.71-5.44-5.168zm6.799 10.334l15.773-4.079-4.352-4.623zm-7.886-108.233l5.438-18.764-13.87.272zm-37.8 15.5l-11.966.816-1.36-7.886zm-1.905 10.606l-6.797 1.904-1.36-5.166zm76.145-7.885l8.974 1.359 1.904-5.983zm-1.903 11.149l6.797 2.447 1.632-4.895z"/><path d="M133.21 90.587h26.246v3.24H133.21zm0-7.777h26.246v3.24H133.21zm80.14 7.777h26.245v3.24H213.35zm0-7.777h26.245v3.24H213.35zm-9.249-19.21h-42.768v-2.915h13.31c1.638-7.018 1.962-13.725-.014-17.125-.844-1.446-2.01-2.122-3.674-2.122-7.61 0-10.753 8.047-10.884 8.39l.002-.003-2.73-1.024c.156-.42 3.964-10.279 13.612-10.279 2.692 0 4.834 1.237 6.191 3.57 2.41 4.141 2.127 11.305.494 18.592h23.355c3.102-9.115 9.58-13.413 20.405-13.413v2.915c-11.732 0-15.018 4.974-17.366 10.498h12.743l-.03 2.902-12.646.014z"/><path d="M206.018 78.002l.019-.003c-3.46-5.1-4.555-9.455-3.109-14.413l-2.97.015c-1.035 3.3-.62 8.273 1.928 12.54h-29.674c1.805-3.617 3.48-8.026 4.702-12.54h-3.02c-1.348 4.787-3.242 9.524-5.373 13.277l-.69 1.213 16.653 10.482-9.375 6.178 1.606 2.435 10.478-6.908 11.312 7.382 1.553-2.468-10.488-6.488s15.682-10.186 16.461-10.684l-.013-.018zm-18.86 8.808l-12.318-7.754 24.072.006-11.754 7.749z"/><path d="M240.682 32.617c-.019-5.07-1.598-26.5-4.5-32.4-7.87 2.99-22.19 12.68-25.43 22.588-15.533-2.32-33.043-2.045-48.382.609C159.808 12.754 146.946 4.596 137.243 0c-4.093 6.906-5.906 22.92-5.445 34.28l-.054.035c1.8 47.7 25.2 77.4 55.8 95.4 31.48-17.988 53.97-53.057 53.1-97.12l.038.022zm-26.197-9.196c.115.02.229.042.344.063-.114-.021-.228-.043-.344-.063zm-1.958-.338c.276.044.554.094.83.14l-.83-.14zm23.257 12.976c.81 39.69-19.44 71.279-47.79 87.48-48.118-23.977-57.182-84.71-48.977-117.29 2.283 12.456 6.425 20.268 15.394 24.1 19.533-5.591 46.423-6.033 66.23-.57 8.256-6.002 11.457-15.17 13.205-23.18 2.183 9.322 1.932 29.456 1.938 29.46z"/><path d="M256.305 173.375c-4.942-5.528-14.623-8.145-22.707-7.951-5.738-6.83-39.004-41.862-39.004-41.862l-2.306 2.904 40.162 43.238 1.744-.15c10.912-.934 17.115 4.984 18.756 6.82 1.204 1.347 1.931 2.575 2.327 3.539H233.2c-50.624-26.416-95.078-45.044-142.297-49.112.103-6.572 1.273-14.01 3.518-22.3l-4.343-1.176c-2.308 8.52-3.524 16.236-3.66 23.133-4.92-.326-9.873-.495-14.869-.495-4.236 0-8.095.393-11.614 1.077-4.59-4.587-8.5-8.959-11.823-13.108 21.936-22.85 58.15-43.498 89.534-51.092l-1.015-4.397c-33.792 8.149-70.78 30.335-91.391 51.762-9.565-12.91-13.36-23.504-14.487-31.532-1.424-10.14.997-19.442 7-26.9C47.15 44.1 60.501 43.277 74.23 45.586c-.268 2.168.017 4.24.885 5.522 3.631 5.363 23.144 7.246 34.791 2.05-8.595-12.045-26.005-17.926-30.83-15.57-1.598.781-2.803 2.215-3.63 3.887-4.745-.85-9.458-1.48-12.902-1.456-12.108.09-21.364 4.32-28.296 12.933-6.802 8.45-9.551 18.944-7.95 30.347 1.516 10.8 6.863 22.286 15.825 34.198a306.088 306.088 0 0 0-4.313 4.723C15.967 146.66 0 172.87 0 177.213v2.25h28.816l-.505-2.668c-1.627-8.6 1.623-19.35 8.28-27.385 4.179-5.044 11.1-10.8 21.967-13.457 9.663 9.43 21.975 19.446 35.679 29.11h21.414v-2.25c0-2.54-1.26-4.762-3.545-6.257-3.383-2.212-8.605-2.517-13.402-.881-4.573-5.093-7.137-11.897-7.691-20.347 46.474 4.115 90.927 22.883 141.085 49.085h27.597l.362-1.809c.515-2.575-.888-6.025-3.752-9.23zm-223.18-26.836c-6.815 8.227-10.428 19.094-9.6 28.424H5.372c3.647-7.894 18.176-30.712 39.643-53.76 2.958 3.656 6.253 7.35 9.872 11.073-10.54 3.168-17.45 9.06-21.761 14.263z"/></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.62052 19.5767C5.98205 20.0225 6.38388 20.4744 6.82602 20.9288C5.53869 21.3159 4.69472 22.0353 4.16831 22.6704C3.33533 23.6756 2.89441 25.0033 2.99579 26.1428H0.778992C1.22357 25.1779 2.99823 22.3907 5.62052 19.5767ZM31.3011 26.7474H28.6056C22.4217 23.5205 16.9927 21.2451 11.2254 20.748C11.2376 19.9455 11.3805 19.0368 11.6553 18.0243L11.124 17.8814C10.8419 18.922 10.6941 19.8637 10.677 20.7065C10.0761 20.6662 9.47151 20.6466 8.86082 20.6466C8.34418 20.6466 7.87273 20.6943 7.44281 20.7773C6.8822 20.2179 6.40464 19.683 5.99915 19.1761C8.6593 16.406 13.0404 13.8997 16.8535 12.9568C17.9271 16.5257 20.2318 18.9709 23.0288 20.6161C23.234 20.4992 23.4356 20.3762 23.6333 20.2472L28.5127 25.5004L28.7265 25.482C30.059 25.3672 30.8162 26.0903 31.0165 26.315C31.1643 26.4787 31.2523 26.6289 31.3011 26.7474Z" fill="#D1A41A"/>
<path d="M28.9207 9.17668C29.0196 14.0243 26.5463 17.8826 23.0837 19.8613C17.2065 16.9336 16.0999 9.515 17.1014 5.53577C17.3799 7.0576 17.8868 8.01149 18.9811 8.47928C21.3677 7.79653 24.652 7.74279 27.0715 8.40966C28.0791 7.67683 28.47 6.55684 28.6837 5.57851C28.95 6.71684 28.9194 9.17668 28.9207 9.17668Z" fill="#FFDC76"/>
<path d="M15.0338 16.4236L12.3101 14.5968L14.1369 13.7662L15.0338 16.4236ZM12.4763 16.5896L10.4501 15.56L11.513 14.9289L12.4763 16.5896ZM9.78589 17.8851L8.39084 16.9218L9.32092 16.2243L9.78589 17.8851ZM23.3041 22.0036L24.832 21.3062L24.1676 20.6749L23.3041 22.0036ZM24.1345 23.2657L26.0609 22.7675L25.5294 22.2029L24.1345 23.2657ZM23.1713 10.0464L23.8355 7.75464L22.1414 7.78786L23.1713 10.0464ZM18.5545 11.9396L17.093 12.0392L16.9269 11.076L18.5545 11.9396ZM18.3218 13.2349L17.4917 13.4675L17.3256 12.8365L18.3218 13.2349ZM27.622 12.2719L28.718 12.4379L28.9506 11.7071L27.622 12.2719ZM27.3896 13.6336L28.2197 13.9325L28.4191 13.3346L27.3896 13.6336Z" fill="black"/>
<path d="M16.3921 15.8274H19.5977V16.2232H16.3921V15.8274ZM16.3921 14.8776H19.5977V15.2733H16.3921V14.8776ZM26.1802 15.8274H29.3856V16.2232H26.1802V15.8274ZM26.1802 14.8776H29.3856V15.2733H26.1802V14.8776ZM25.0505 12.5313H19.8269V12.1753H21.4526C21.6526 11.3181 21.6922 10.4989 21.4509 10.0837C21.3478 9.90707 21.2054 9.82451 21.0021 9.82451C20.0727 9.82451 19.6888 10.8073 19.6728 10.8492L19.673 10.8489L19.3396 10.7238C19.3587 10.6725 19.8238 9.46835 21.0021 9.46835C21.3309 9.46835 21.5925 9.61944 21.7583 9.90438C22.0526 10.4102 22.0181 11.2851 21.8186 12.1752H24.6711C25.05 11.0619 25.8412 10.5369 27.1634 10.5369V10.893C25.7304 10.893 25.3291 11.5005 25.0423 12.1752H26.5987L26.5951 12.5296L25.0505 12.5313Z" fill="black"/>
<path d="M25.2846 14.2903L25.287 14.29C24.8644 13.6671 24.7306 13.1352 24.9072 12.5296L24.5445 12.5314C24.4181 12.9345 24.4688 13.5419 24.78 14.063H21.1557C21.3761 13.6213 21.5807 13.0828 21.7299 12.5314H21.3611C21.1965 13.1161 20.9651 13.6947 20.7049 14.1531L20.6206 14.3012L22.6545 15.5814L21.5095 16.336L21.7056 16.6334L22.9854 15.7897L24.367 16.6913L24.5567 16.3899L23.2757 15.5975C23.2757 15.5975 25.1911 14.3534 25.2862 14.2925L25.2846 14.2903ZM22.9811 15.3661L21.4766 14.4191L24.4167 14.4198L22.9811 15.3662V15.3661Z" fill="black"/>
<path d="M29.5184 8.74712C29.5161 8.12789 29.3232 5.51048 28.9688 4.78987C28.0076 5.15506 26.2586 6.33857 25.8628 7.54871C23.9657 7.26535 21.827 7.29894 19.9536 7.62309C19.6407 6.32111 18.0697 5.32471 16.8846 4.76337C16.3847 5.60685 16.1633 7.56276 16.2196 8.95024L16.213 8.95451C16.4328 14.7805 19.2909 18.4079 23.0283 20.6064C26.8731 18.4094 29.62 14.1262 29.5138 8.74444L29.5184 8.74712ZM26.3188 7.62395C26.3328 7.62639 26.3467 7.62908 26.3608 7.63164C26.3469 7.62908 26.3329 7.62639 26.3188 7.62395ZM26.0796 7.58266C26.1133 7.58804 26.1473 7.59415 26.181 7.59976L26.0796 7.58266ZM28.9202 9.16752C29.0191 14.0152 26.5458 17.8734 23.0832 19.8521C17.2062 16.9236 16.0992 9.50584 17.1013 5.5266C17.3801 7.04795 17.886 8.00208 18.9815 8.47011C21.3672 7.78724 24.6515 7.73326 27.0706 8.4005C28.079 7.66743 28.47 6.54767 28.6835 5.56935C28.9501 6.70792 28.9194 9.16703 28.9202 9.16752Z" fill="black"/>
<path d="M31.4266 25.9389C30.823 25.2638 29.6405 24.9441 28.6532 24.9678C27.9524 24.1336 23.8893 19.8549 23.8893 19.8549L23.6077 20.2096L28.513 25.4906L28.726 25.4723C30.0587 25.3582 30.8164 26.081 31.0168 26.3052C31.1638 26.4698 31.2526 26.6197 31.301 26.7375H28.6046C22.4215 23.5111 16.992 21.2359 11.2248 20.7391C11.2374 19.9364 11.3803 19.0279 11.6545 18.0154L11.124 17.8718C10.8421 18.9124 10.6936 19.8548 10.677 20.6972C10.0761 20.6574 9.47114 20.6367 8.86094 20.6367C8.34357 20.6367 7.87224 20.6847 7.44244 20.7683C6.88183 20.208 6.40427 19.674 5.99841 19.1673C8.67761 16.3764 13.1007 13.8545 16.9339 12.927L16.8099 12.39C12.6826 13.3853 8.165 16.095 5.64763 18.7121C4.47938 17.1353 4.01587 15.8414 3.87822 14.8608C3.7043 13.6224 3.99999 12.4862 4.73318 11.5753C5.88091 10.1496 7.51157 10.0491 9.18839 10.3311C9.15566 10.5959 9.19047 10.849 9.29648 11.0056C9.73996 11.6606 12.1232 11.8906 13.5458 11.2559C12.496 9.7848 10.3696 9.06651 9.78027 9.35427C9.58509 9.44966 9.43792 9.6248 9.33691 9.82902C8.75737 9.7252 8.18173 9.64825 7.76109 9.65119C6.28225 9.66218 5.15175 10.1788 4.30509 11.2308C3.47431 12.2629 3.13856 13.5446 3.3341 14.9373C3.51926 16.2564 4.17233 17.6592 5.26693 19.1141C5.08933 19.3046 4.91373 19.4969 4.74015 19.691C2.0723 22.676 0.122131 25.8773 0.122131 26.4077V26.6825H3.64164L3.57996 26.3567C3.38125 25.3063 3.77819 23.9933 4.59126 23.0119C5.10167 22.3959 5.94699 21.6928 7.27425 21.3683C8.45447 22.5201 9.95822 23.7434 11.632 24.9237H14.2474V24.6489C14.2474 24.3387 14.0936 24.0673 13.8145 23.8847C13.4013 23.6145 12.7635 23.5773 12.1776 23.7771C11.619 23.1551 11.3059 22.324 11.2382 21.292C16.9144 21.7946 22.3438 24.0869 28.47 27.2871H31.8406L31.8848 27.0661C31.9477 26.7516 31.7764 26.3303 31.4266 25.9388V25.9389ZM4.16793 22.6613C3.33557 23.6661 2.89428 24.9934 2.99541 26.1329H0.778254C1.22369 25.1687 2.99822 22.3818 5.62015 19.5668C5.98143 20.0133 6.38387 20.4645 6.82589 20.9192C5.53856 21.3061 4.69459 22.0258 4.16805 22.6613H4.16793Z" fill="black"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@ -0,0 +1,14 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3323_440)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9896 4.59551C17.9911 5.19847 17.8736 5.7958 17.6439 6.35329C17.4141 6.91077 17.0767 7.41747 16.6508 7.84434C16.225 8.27122 15.7191 8.60989 15.1622 8.84097C14.6052 9.07205 14.0082 9.191 13.4052 9.191C12.8023 9.191 12.2052 9.07205 11.6483 8.84097C11.0914 8.60989 10.5855 8.27122 10.1596 7.84434C9.73379 7.41747 9.39634 6.91077 9.1666 6.35329C8.93687 5.7958 8.81936 5.19847 8.82081 4.59551C8.81936 3.99254 8.93687 3.3952 9.1666 2.83771C9.39634 2.28023 9.73379 1.77355 10.1596 1.34667C10.5855 0.919793 11.0914 0.581113 11.6483 0.350031C12.2052 0.118949 12.8023 0 13.4052 0C14.0082 0 14.6052 0.118949 15.1622 0.350031C15.7191 0.581113 16.225 0.919793 16.6508 1.34667C17.0767 1.77355 17.4141 2.28023 17.6439 2.83771C17.8736 3.3952 17.9911 3.99254 17.9896 4.59551V4.59551Z" fill="#E9000D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9896 16.0171C17.9911 16.6201 17.8736 17.2174 17.6439 17.7749C17.4141 18.3324 17.0767 18.8391 16.6508 19.266C16.225 19.6929 15.7191 20.0315 15.1622 20.2626C14.6052 20.4937 14.0082 20.6126 13.4052 20.6126C12.8023 20.6126 12.2052 20.4937 11.6483 20.2626C11.0914 20.0315 10.5855 19.6929 10.1596 19.266C9.73379 18.8391 9.39634 18.3324 9.1666 17.7749C8.93687 17.2174 8.81936 16.6201 8.82081 16.0171C8.81936 15.4142 8.93687 14.8168 9.1666 14.2593C9.39634 13.7019 9.73379 13.1952 10.1596 12.7683C10.5855 12.3414 11.0914 12.0027 11.6483 11.7717C12.2052 11.5406 12.8023 11.4216 13.4052 11.4216C14.0082 11.4216 14.6052 11.5406 15.1622 11.7717C15.7191 12.0027 16.225 12.3414 16.6508 12.7683C17.0767 13.1952 17.4141 13.7019 17.6439 14.2593C17.8736 14.8168 17.9911 15.4142 17.9896 16.0171V16.0171Z" fill="#FFD100"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9896 27.4206C17.9911 26.8176 17.8736 26.2203 17.6439 25.6628C17.4141 25.1053 17.0767 24.5986 16.6508 24.1718C16.225 23.7449 15.7191 23.4062 15.1622 23.1751C14.6052 22.9441 14.0082 22.8251 13.4052 22.8251C12.8023 22.8251 12.2052 22.9441 11.6483 23.1751C11.0914 23.4062 10.5855 23.7449 10.1596 24.1718C9.73379 24.5986 9.39634 25.1053 9.1666 25.6628C8.93687 26.2203 8.81936 26.8176 8.82081 27.4206C8.81936 28.0236 8.93687 28.6209 9.1666 29.1784C9.39634 29.7359 9.73379 30.2426 10.1596 30.6694C10.5855 31.0963 11.0914 31.435 11.6483 31.6661C12.2052 31.8972 12.8023 32.0161 13.4052 32.0161C14.0082 32.0161 14.6052 31.8972 15.1622 31.6661C15.7191 31.435 16.225 31.0963 16.6508 30.6694C17.0767 30.2426 17.4141 29.7359 17.6439 29.1784C17.8736 28.6209 17.9911 28.0236 17.9896 27.4206V27.4206Z" fill="#00A434"/>
<path d="M6.82297 21.9327L7.18353 23.8122C6.48089 23.9383 5.85221 24.0013 5.2975 24.0013C4.39147 24.0013 3.68883 23.8792 3.1896 23.6349C2.69035 23.3906 2.33903 23.0695 2.13564 22.6715C1.93224 22.2736 1.83055 21.4363 1.83055 20.1596V12.9373H0V11.2824H1.83055V8.17359L4.31289 6.89697V11.2824H6.82297V12.9373H4.31289V20.2778C4.31288 20.8846 4.3568 21.2747 4.44464 21.4481C4.53246 21.6215 4.67576 21.7594 4.87454 21.8618C5.0733 21.9643 5.3576 22.0155 5.72741 22.0155C6.00476 22.0155 6.36995 21.9879 6.82297 21.9327V21.9327Z" fill="black"/>
<path d="M19.1047 20.1596L22.7664 19.657C22.9222 20.2959 23.2381 20.7809 23.7142 21.1121C24.1903 21.4432 24.8569 21.6088 25.7138 21.6088C26.6574 21.6088 27.3672 21.453 27.8433 21.1413C28.1636 20.9231 28.3237 20.631 28.3237 20.2647C28.3237 20.0154 28.2371 19.8089 28.064 19.6453C27.8822 19.4895 27.4754 19.3453 26.8435 19.2129C23.9003 18.6285 22.0349 18.0948 21.2472 17.6117C20.1565 16.9416 19.6111 16.0105 19.6111 14.8184C19.6111 13.7432 20.0829 12.8393 21.0264 12.1069C21.97 11.3745 23.4329 11.0083 25.4152 11.0083C27.3023 11.0083 28.7046 11.2849 29.6222 11.8381C30.5397 12.3913 31.1716 13.2094 31.5179 14.2925L28.077 14.8651C27.9298 14.3821 27.6507 14.012 27.2395 13.7548C26.8283 13.4977 26.2419 13.3692 25.4801 13.3692C24.5193 13.3692 23.8311 13.4899 23.4156 13.7315C23.1386 13.9029 23.0001 14.125 23.0001 14.3977C23.0001 14.6314 23.1213 14.8301 23.3636 14.9937C23.6926 15.2119 24.8287 15.5197 26.7721 15.917C28.7154 16.3144 30.0723 16.8014 30.8427 17.3779C31.6045 17.9623 31.9854 18.7765 31.9854 19.8206C31.9854 20.9582 31.4573 21.936 30.4013 22.7542C29.3452 23.5723 27.7827 23.9813 25.7139 23.9813C23.8355 23.9813 22.3487 23.6385 21.2537 22.9528C20.1587 22.2672 19.4424 21.3361 19.1048 20.1596L19.1047 20.1596Z" fill="#4A4942"/>
</g>
<defs>
<clipPath id="clip0_3323_440">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 B

@ -0,0 +1,11 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3969_167)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.95102 0.390259H25.049C28.8882 0.390259 32 3.42636 32 7.17192V24.8273C32 28.5737 28.8882 31.6098 25.049 31.6098H6.95102C3.1118 31.6098 0 28.5737 0 24.8281V7.1727C0 3.42636 3.1118 0.390259 6.95102 0.390259Z" fill="#FF4100"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.3131 12.1834C27.3338 12.3716 27.2791 12.5603 27.1611 12.7083C27.0431 12.8563 26.8713 12.9515 26.6833 12.9733L22.5202 13.4182C22.2077 13.4516 21.9191 13.6007 21.711 13.8361C21.5029 14.0715 21.3904 14.3762 21.3955 14.6904C21.408 15.4404 21.6484 16.1686 22.0846 16.7782L26.0519 22.3251C26.1626 22.4796 26.2082 22.6714 26.179 22.8592C26.1498 23.0471 26.0481 23.2159 25.8958 23.3296L24.9412 24.0344C24.8662 24.0898 24.7809 24.1297 24.6902 24.1517C24.5996 24.1738 24.5054 24.1775 24.4133 24.1626C24.3212 24.1478 24.233 24.1147 24.1539 24.0654C24.0747 24.016 24.0062 23.9513 23.9524 23.8751L21.3767 20.2748C21.2197 20.0554 20.9855 19.9035 20.7212 19.8497C20.4568 19.7958 20.1819 19.844 19.9516 19.9844C19.3998 20.3211 18.9647 20.8192 18.7051 21.4111L15.79 28.0609C15.7169 28.2312 15.5796 28.3657 15.4079 28.4354C15.2363 28.5051 15.044 28.5043 14.8729 28.4332L14.8558 28.4254L13.7779 27.9384C13.6082 27.8603 13.4752 27.7197 13.4069 27.5458C13.3385 27.372 13.34 27.1784 13.4111 27.0057L13.4189 26.9885L15.175 22.9799C15.2942 22.7082 15.3082 22.4018 15.2143 22.1203C15.1204 21.8389 14.9253 21.6022 14.6669 21.4564C14.0528 21.1105 13.3462 20.9648 12.6454 21.0396L5.58826 21.7936C5.49509 21.803 5.40098 21.7938 5.31137 21.7667C5.22175 21.7395 5.13838 21.6949 5.06606 21.6354C4.99374 21.576 4.93389 21.5028 4.88997 21.4201C4.84604 21.3374 4.8189 21.2468 4.81011 21.1536L4.68679 19.9618C4.66594 19.7735 4.72049 19.5846 4.83853 19.4365C4.95656 19.2883 5.12847 19.1929 5.31665 19.1711L9.7264 18.7005C10.2954 18.6396 10.7239 18.1542 10.7145 17.5821C10.7033 16.9234 10.4921 16.2837 10.1088 15.7479L5.75372 9.65856C5.64303 9.50403 5.59738 9.31225 5.62657 9.12443C5.65576 8.93661 5.75746 8.76772 5.90982 8.65407L6.86435 7.95007C6.93938 7.89464 7.02472 7.85474 7.11537 7.83271C7.20603 7.81069 7.30016 7.80698 7.39226 7.82181C7.48436 7.83664 7.57258 7.86971 7.65173 7.91907C7.73089 7.96844 7.79939 8.03311 7.85323 8.10929L10.4156 11.6917C10.6048 11.9559 10.887 12.1388 11.2055 12.2036C11.5239 12.2685 11.8551 12.2105 12.1326 12.0414C12.7975 11.6356 13.3217 11.0354 13.6343 10.322L16.4324 3.93915C16.5055 3.7689 16.6427 3.63433 16.8144 3.56464C16.9861 3.49495 17.1783 3.49574 17.3494 3.56686L17.3666 3.57466L18.4445 4.06168C18.7957 4.2209 18.9572 4.63534 18.8113 4.99437L18.8035 5.01154L17.0396 9.03573C16.9148 9.32062 16.9004 9.64168 16.999 9.93662C17.0977 10.2315 17.3024 10.4793 17.5734 10.6318C18.2165 10.994 18.9565 11.147 19.6909 11.0689L26.4117 10.3509C26.5048 10.3415 26.5989 10.3506 26.6886 10.3778C26.7782 10.4049 26.8615 10.4495 26.9339 10.509C27.0062 10.5685 27.066 10.6417 27.11 10.7244C27.1539 10.8071 27.181 10.8976 27.1898 10.9909L27.3131 12.1834ZM16.3902 18.3415C17.0112 18.3415 17.6068 18.0948 18.0459 17.6557C18.485 17.2166 18.7317 16.621 18.7317 16C18.7317 15.379 18.485 14.7835 18.0459 14.3444C17.6068 13.9053 17.0112 13.6586 16.3902 13.6586C15.7692 13.6586 15.1737 13.9053 14.7345 14.3444C14.2954 14.7835 14.0487 15.379 14.0487 16C14.0487 16.621 14.2954 17.2166 14.7345 17.6557C15.1737 18.0948 15.7692 18.3415 16.3902 18.3415ZM16.3902 17.561C16.8042 17.561 17.2012 17.3965 17.494 17.1038C17.7867 16.8111 17.9512 16.414 17.9512 16C17.9512 15.586 17.7867 15.189 17.494 14.8962C17.2012 14.6035 16.8042 14.4391 16.3902 14.4391C15.9762 14.4391 15.5792 14.6035 15.2864 14.8962C14.9937 15.189 14.8292 15.586 14.8292 16C14.8292 16.414 14.9937 16.8111 15.2864 17.1038C15.5792 17.3965 15.9762 17.561 16.3902 17.561V17.561Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_3969_167">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -1,29 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
height="200px" viewBox="0 0 200 200" enable-background="new 0 0 200 200" xml:space="preserve">
<symbol id="Apollo_icon" viewBox="-100 -100 200 200">
<polygon fill="none" points="100,-100 -100,-100 -100,100 100,100 "/>
<g>
<polygon fill="#112B49" points="9.53,39.316 -9.066,39.316 -35.915,-30.367 -19.096,-30.367 -14.707,-18.562 10.663,-18.562
6.069,-5.502 -10.633,-5.502 0.232,24.481 19.561,-30.367 36.38,-30.367 "/>
<g>
<path fill="#112B49" d="M73.877,20.682c-0.045,0.238-0.11,0.467-0.196,0.688c-0.021,0.076-0.092,0.219-0.092,0.219
c-0.607,1.317-1.936,2.234-3.482,2.234c-2.118,0-3.835-1.717-3.835-3.835c0-0.431,0.074-0.843,0.205-1.229l-0.01-0.004
C68.158,12.728,69.033,6.432,69.033,0c0-18.439-7.181-35.775-20.219-48.814C35.775-61.854,18.439-69.034,0-69.034
s-35.776,7.181-48.814,20.22C-61.854-35.775-69.034-18.439-69.034,0s7.181,35.775,20.22,48.814
C-35.776,61.854-18.439,69.033,0,69.033c16.466,0,32.048-5.73,44.479-16.24c-0.418-1.063-0.651-2.22-0.651-3.432
c0-5.178,4.198-9.375,9.375-9.375c5.178,0,9.376,4.197,9.376,9.375s-4.198,9.375-9.376,9.375c-1.129,0-2.212-0.199-3.216-0.565
C36.562,69.72,19.099,76.705,0,76.705c-42.363,0-76.704-34.342-76.704-76.705S-42.363-76.705,0-76.705
c42.362,0,76.704,34.342,76.704,76.705C76.704,7.166,75.715,14.102,73.877,20.682z"/>
</g>
</g>
</symbol>
<g id="Layer_1">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3221_275)">
<path d="M17.9877 7.79896H14.1088L8.5083 22.3342H12.0166L12.9321 19.8718H18.2241L17.2658 17.1476H13.7819L16.0483 10.8934L20.0801 22.3342H23.5884L17.9877 7.79896Z" fill="#112B49"/>
<path d="M31.4099 11.6859C31.4005 11.6363 31.3869 11.5885 31.369 11.5424C31.3646 11.5265 31.3498 11.4967 31.3498 11.4967C31.2232 11.222 30.946 11.0307 30.6235 11.0307C30.1817 11.0307 29.8236 11.3889 29.8236 11.8307C29.8236 11.9206 29.839 12.0065 29.8663 12.087L29.8642 12.0879C30.217 13.345 30.3995 14.6583 30.3995 16C30.3995 19.8462 28.9016 23.4624 26.182 26.1822C23.4621 28.9022 19.846 30.3999 15.9998 30.3999C12.1536 30.3999 8.53723 28.902 5.81761 26.1822C3.09758 23.4624 1.5999 19.8462 1.5999 16C1.5999 12.1538 3.09779 8.53764 5.81761 5.81782C8.53723 3.09779 12.1536 1.60031 15.9998 1.60031C19.4345 1.60031 22.6847 2.79554 25.2777 4.98784C25.1905 5.20957 25.1419 5.45091 25.1419 5.70372C25.1419 6.78381 26.0176 7.65927 27.0975 7.65927C28.1776 7.65927 29.0532 6.78381 29.0532 5.70372C29.0532 4.62364 28.1776 3.74818 27.0975 3.74818C26.862 3.74818 26.6361 3.78969 26.4266 3.86603C23.6263 1.45701 19.9837 -8.2185e-07 15.9998 -8.2185e-07C7.16324 -8.2185e-07 0 7.16344 0 16C0 24.8366 7.16324 32 15.9998 32C24.8361 32 31.9996 24.8366 31.9996 16C31.9996 14.5052 31.7933 13.0584 31.4099 11.6859Z" fill="#112B49"/>
</g>
<g id="Layer_2">
<use xlink:href="#Apollo_icon" width="200" height="200" x="-100" y="-100" transform="matrix(1 0 0 -1 100 100)" overflow="visible"/>
</g>
</svg>
<defs>
<clipPath id="clip0_3221_275">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,10 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3468_318)">
<path d="M2.14673 0V32L29.8534 16L2.14673 0ZM7.68006 9.6L13.4134 12.9067L7.68006 16.2133V9.6ZM16.7334 14.8267L18.7734 16L7.68006 22.4V20.0533L16.7334 14.8267Z" fill="#FF0000"/>
</g>
<defs>
<clipPath id="clip0_3468_318">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 424 B

@ -1,19 +1,16 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0.817021C18.05 0.817021 20.0383 1.21838 21.9095 2.00987C23.7174 2.77454 25.3412 3.86948 26.7359 5.26414C28.1306 6.65879 29.2255 8.28262 29.9902 10.0905C30.7816 11.9617 31.183 13.95 31.183 16C31.183 18.0501 30.7816 20.0385 29.9901 21.9099C29.2255 23.7178 28.1305 25.3415 26.7359 26.7362C25.3413 28.1308 23.7174 29.2256 21.9095 29.9903C20.0383 30.7816 18.05 31.183 16 31.183C13.95 31.183 11.9617 30.7816 10.0905 29.9902C8.28262 29.2256 6.65879 28.1307 5.26414 26.7361C3.86948 25.3415 2.7746 23.7177 2.00994 21.9098C1.21838 20.0385 0.817021 18.0501 0.817021 16C0.817021 13.95 1.21838 11.9617 2.00987 10.0905C2.77454 8.28262 3.86948 6.65879 5.26414 5.26414C6.65879 3.86948 8.28262 2.7746 10.0905 2.00987C11.9617 1.21838 13.95 0.817021 16 0.817021ZM16 0C7.16371 0 0 7.16371 0 16C0 24.837 7.16371 32 16 32C24.8363 32 32 24.837 32 16C32 7.16371 24.8363 0 16 0Z" fill="url(#paint0_linear_2207_82)"/>
<path d="M15.8096 7.09807C15.8094 7.09793 15.8085 7.09779 15.8083 7.09766C13.0989 12.817 10.3891 18.5387 7.67969 24.2595C8.84074 24.2595 10.002 24.2595 11.1631 24.2595C13.3563 19.8297 15.5491 15.4008 17.7423 10.9724L15.8096 7.09807Z" fill="url(#paint1_linear_2207_82)"/>
<path d="M19.419 14.1934C18.3013 16.5155 17.1826 18.8381 16.0643 21.1616L16 21.2903H16.0643C17.1394 21.2903 18.2154 21.2903 19.2904 21.2903C19.7203 22.2787 20.1503 23.2686 20.5809 24.2585C21.8279 24.2585 23.0752 24.2585 24.3222 24.2585C22.6886 20.9031 21.0534 17.5472 19.419 14.1934Z" fill="url(#paint2_linear_2207_82)"/>
<g clip-path="url(#clip0_3468_643)">
<path d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32Z" fill="url(#paint0_linear_3468_643)"/>
<path d="M15.8076 7.09758C15.8072 7.09732 15.8069 7.09706 15.8065 7.0968C13.0971 12.8167 10.3869 18.5382 7.67749 24.2581C8.83865 24.2581 10.0002 24.2581 11.1614 24.2581C13.3541 19.8297 15.5476 15.3999 17.7402 10.9714L15.8076 7.09758Z" fill="white"/>
<path d="M19.4194 14.1936C18.3012 16.5159 17.1827 18.839 16.0645 21.1613L16 21.2904H16.0645C17.1397 21.2904 18.2152 21.2904 19.2903 21.2904C19.7204 22.2795 20.1506 23.269 20.5806 24.2581C21.8279 24.2581 23.0754 24.2581 24.3226 24.2581C22.6884 20.9035 21.0537 17.5482 19.4194 14.1936Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_2207_82" x1="4.10961" y1="26.7063" x2="27.8904" y2="5.29401" gradientUnits="userSpaceOnUse">
<stop stop-color="#5437DC"/>
<stop offset="1" stop-color="#EE79FF"/>
</linearGradient>
<linearGradient id="paint1_linear_2207_82" x1="7.67976" y1="15.6786" x2="17.7424" y2="15.6786" gradientUnits="userSpaceOnUse">
<stop stop-color="#5437DC"/>
<stop offset="1" stop-color="#EE79FF"/>
</linearGradient>
<linearGradient id="paint2_linear_2207_82" x1="15.9999" y1="19.2259" x2="24.3221" y2="19.2259" gradientUnits="userSpaceOnUse">
<linearGradient id="paint0_linear_3468_643" x1="4.10956" y1="26.7062" x2="27.8904" y2="5.29382" gradientUnits="userSpaceOnUse">
<stop stop-color="#5437DC"/>
<stop offset="1" stop-color="#EE79FF"/>
</linearGradient>
<clipPath id="clip0_3468_643">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -1 +1,10 @@
<svg height="256" preserveAspectRatio="xMidYMid" viewBox="0 0 256 256" width="256" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" x1="50%" x2="50%" y1="82.799084%" y2="-5.781339%"><stop offset="0" stop-color="#2684ff"/><stop offset=".82" stop-color="#0052cc"/></linearGradient><circle cx="128" cy="128.433426" fill="url(#a)" r="59.86478"/><path d="m1.61622537 59.2547248 32.18351583 38.1192816c1.1895886 1.3988403 2.8901894 2.2625519 4.7214565 2.3979625s3.6404097-.4687778 5.0228063-1.6774361c52.1180816-46.7312884 116.656667-46.7312884 168.911992 0 1.382397 1.2086583 3.191539 1.8128467 5.022806 1.6774361s3.531868-.9991222 4.721457-2.3979625l32.183516-38.1192816c2.432063-2.8842722 2.079561-7.1909293-.789148-9.6413304-75.483726-66.1511925-175.5682846-66.1511925-251.18925358 0-2.86870915 2.4504011-3.22121134 6.7570582-.78914805 9.6413304z" fill="#2684ff"/></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 27.144C20.1494 27.144 23.5131 23.8455 23.5131 19.7767C23.5131 15.7076 20.1494 12.4093 16 12.4093C11.8506 12.4093 8.48682 15.7076 8.48682 19.7767C8.48682 23.8455 11.8506 27.144 16 27.144Z" fill="url(#paint0_linear_3468_273)"/>
<path d="M0.200971 11.2726L4.23659 15.9457C4.53712 16.3246 5.09523 16.3667 5.4387 16.0298C11.9644 10.3044 20.0356 10.3044 26.5613 16.0298C26.9047 16.3246 27.4629 16.2825 27.7634 15.9457L31.799 11.2726C32.0995 10.9359 32.0567 10.3886 31.7131 10.0939C22.268 1.96871 9.73191 1.96871 0.286835 10.0939C-0.0566221 10.3886 -0.0995543 10.9359 0.200971 11.2726Z" fill="#2684FF"/>
<defs>
<linearGradient id="paint0_linear_3468_273" x1="16.0032" y1="24.6046" x2="16.0032" y2="11.574" gradientUnits="userSpaceOnUse">
<stop stop-color="#2684FF"/>
<stop offset="0.824" stop-color="#0052CC"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 920 B

After

Width:  |  Height:  |  Size: 946 B

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9044 0.00044848C15.0371 0.00164782 17.1698 -0.0019502 19.3025 0.00164782C19.3145 2.6342 19.3001 5.26794 19.3097 7.90049C21.1345 6.03552 22.9544 4.16335 24.7804 2.30078C26.3597 3.90909 27.9728 5.48742 29.5425 7.10533C27.6973 8.9715 25.8016 10.7861 23.9576 12.6523C26.6388 12.6547 29.3188 12.6523 32 12.6547V19.0088C29.3501 19.0124 26.7001 19.0064 24.0502 19.0124C25.9447 20.8857 27.8886 22.7075 29.7807 24.5833C28.1893 26.1424 26.5859 27.6908 25.0053 29.2631C23.1998 27.4641 21.3895 25.6687 19.608 23.8457C19.2784 23.5195 19.3422 23.0241 19.3374 22.6032C19.2784 19.2966 19.3157 15.9888 19.3109 12.6811C16.0511 12.6799 12.7913 12.6847 9.53155 12.6787C9.0083 12.6463 8.36958 12.7278 7.99428 12.2793C6.21403 10.539 4.45543 8.77601 2.67999 7.03217C4.19922 5.51501 5.7413 4.02183 7.25211 2.49507C9.13701 4.28449 11.0183 6.0775 12.9044 7.86571C12.9032 5.24396 12.902 2.6222 12.9044 0.00044848V0.00044848Z" fill="#2A82F5"/>
<path d="M0.00360862 13.7041C6.09736 13.6933 12.1911 13.7101 18.2849 13.6957C18.2837 19.7967 18.2837 25.8989 18.2849 32C16.2111 31.9868 14.1361 31.9976 12.0612 31.994C12.06 29.4166 12.0624 26.838 12.06 24.2595C9.82866 26.4878 7.58531 28.7054 5.36481 30.9446C3.89129 29.4934 2.43221 28.0266 0.967109 26.5658C3.21046 24.335 5.43458 22.0839 7.69718 19.8735C5.13265 19.8903 2.56813 19.8795 0.00360862 19.8783C-0.00120287 17.8202 -0.00120287 15.7621 0.00360862 13.7041V13.7041Z" fill="#FD6100"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,6 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.44977 18.594C2.38282 18.594 2.34677 18.5459 2.30729 18.5064C1.77857 17.9795 1.25328 17.449 0.72113 16.9237C0.6147 16.819 0.611266 16.7521 0.72113 16.6507C0.771726 16.6059 0.819861 16.5583 0.865326 16.5083L15.8909 1.48097C16.1416 1.22863 16.09 1.19601 16.3784 1.48612L31.4229 16.5392C31.471 16.5873 31.5174 16.6371 31.5671 16.6834C31.653 16.7589 31.6513 16.8207 31.5671 16.9048C31.0212 17.4456 30.4753 17.988 29.938 18.5391C29.8127 18.6661 29.7526 18.5837 29.6685 18.503C26.8929 15.7923 23.3667 13.9783 19.5473 13.2965C18.4148 13.0883 17.2656 12.9837 16.1141 12.9841C11.0916 12.9946 6.26906 14.9526 2.66091 18.4463C2.5974 18.5013 2.54418 18.5786 2.44977 18.594ZM22.33 11.2554C22.3107 11.1539 22.2573 11.0619 22.1789 10.9945C20.2254 9.04902 18.2736 7.09834 16.3235 5.14253C16.1519 4.97087 16.0677 5.00177 15.9167 5.15283C13.9631 7.11665 12.0062 9.07763 10.0458 11.0357C9.99776 11.0838 9.90508 11.1181 9.95654 11.2503C13.9974 10.0744 18.29 10.0762 22.33 11.2554Z" fill="#0053AC"/>
<path d="M16.2412 15.6346C20.6168 15.7341 24.505 17.2533 27.7546 20.3586C27.9125 20.508 27.9039 20.5784 27.7546 20.7209C27.2499 21.2084 26.752 21.7028 26.268 22.2092C26.1203 22.362 26.0482 22.3551 25.8972 22.2092C24.4655 20.829 22.7577 19.7679 20.8863 19.0957C19.0148 18.4234 17.0221 18.1553 15.0395 18.309C11.8918 18.5506 8.91726 19.8453 6.59544 21.9843C6.46155 22.1045 6.33624 22.3139 6.19548 22.3276C6.02381 22.3431 5.90708 22.1045 5.77147 21.9723C5.34231 21.5535 4.9286 21.114 4.4943 20.7054C4.34838 20.5647 4.3707 20.4874 4.5046 20.3621C6.31838 18.5965 8.51297 17.2705 10.9196 16.4859C12.8748 15.8525 14.3546 15.6843 16.2412 15.6346Z" fill="#0053AC"/>
<path d="M24.1668 24.2623C24.1668 24.3378 24.0981 24.3739 24.0534 24.4185C23.5385 24.9335 23.0235 25.4365 22.5222 25.9634C22.3849 26.1042 22.3059 26.0922 22.1789 25.9634C21.481 25.3001 20.6775 24.7577 19.8014 24.3584C18.2365 23.6358 16.4936 23.3898 14.7899 23.6511C13.0862 23.9124 11.4972 24.6694 10.2209 25.8278C9.91018 26.1111 9.91018 26.1094 9.60803 25.8072L8.2639 24.4631C8.06134 24.2588 8.06307 24.2571 8.27939 24.0546C9.83715 22.5543 11.8018 21.5454 13.9288 21.1535C17.762 20.4668 21.1283 21.447 24.0053 24.0838C24.0551 24.1284 24.1032 24.1782 24.1495 24.2262C24.1582 24.2383 24.1582 24.2502 24.1668 24.2623Z" fill="#0053AC"/>
<path d="M16.1312 31.2386C15.6141 31.2376 15.1088 31.0834 14.6791 30.7955C14.2495 30.5076 13.9148 30.0989 13.7172 29.621C13.5196 29.143 13.4679 28.6173 13.5689 28.1101C13.6697 27.6028 13.9186 27.1368 14.2841 26.7709C14.6496 26.405 15.1152 26.1554 15.6223 26.0539C16.1294 25.9524 16.6553 26.0032 17.1335 26.2002C17.6116 26.3972 18.0208 26.7314 18.3092 27.1607C18.5977 27.5899 18.7525 28.095 18.7542 28.6122C18.7577 28.9577 18.6922 29.3005 18.5616 29.6205C18.4311 29.9405 18.2381 30.2313 17.9938 30.4758C17.7496 30.7203 17.4591 30.9137 17.1393 31.0447C16.8195 31.1757 16.4768 31.2416 16.1312 31.2386Z" fill="#0053AC"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.1304 3.89136L7 10.5H12.3043V32L15.1304 29.7392V3.89136Z" fill="#5A29E4"/>
<path d="M17.4565 27.8043L25.7174 21.0217H20.2826V0L17.4783 1.95652V27.8043H17.4565Z" fill="#5A29E4"/>
</svg>

After

Width:  |  Height:  |  Size: 293 B

@ -0,0 +1,23 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.6679 0.92407H20.137L10.3072 30.0489C10.2061 30.3482 10.0138 30.6082 9.75721 30.7924C9.50063 30.9767 9.19274 31.0758 8.87687 31.0759H1.50757C1.26824 31.0759 1.03235 31.0189 0.819404 30.9097C0.60646 30.8005 0.422584 30.6421 0.282989 30.4477C0.143393 30.2533 0.0520909 30.0285 0.0166346 29.7918C-0.0188217 29.5551 0.00258754 29.3134 0.0790907 29.0866L9.23726 1.95106C9.33825 1.65166 9.53062 1.39148 9.78727 1.20717C10.0439 1.02287 10.3519 0.923724 10.6679 0.923706V0.92407Z" fill="url(#paint0_linear_3468_673)"/>
<path d="M24.4278 20.4591H9.41204C9.27244 20.459 9.13603 20.5008 9.02058 20.5793C8.90513 20.6578 8.81599 20.7692 8.76477 20.8991C8.71355 21.029 8.70263 21.1712 8.73344 21.3074C8.76424 21.4436 8.83533 21.5673 8.93746 21.6625L18.5862 30.6683C18.8671 30.9303 19.237 31.076 19.6212 31.0759H28.1237L24.4278 20.4591Z" fill="#0078D4"/>
<path d="M10.6679 0.924083C10.3485 0.922857 10.0371 1.0238 9.77909 1.21216C9.52111 1.40053 9.33012 1.66645 9.23401 1.97107L0.0903918 29.0619C0.00874163 29.2895 -0.0168922 29.5334 0.0156587 29.773C0.0482096 30.0126 0.137988 30.2408 0.277398 30.4384C0.416809 30.6359 0.601751 30.797 0.816578 30.908C1.03141 31.0189 1.2698 31.0765 1.51159 31.0759H9.07109C9.35264 31.0256 9.61579 30.9014 9.83366 30.7162C10.0515 30.5309 10.2163 30.2911 10.3112 30.0213L12.1346 24.6474L18.6478 30.7224C18.9208 30.9482 19.2632 31.073 19.6174 31.0759H28.0882L24.373 20.4591L13.5427 20.4616L20.1712 0.924083H10.6679Z" fill="url(#paint1_linear_3468_673)"/>
<path d="M22.7622 1.94961C22.6613 1.65069 22.4692 1.39094 22.213 1.20696C21.9567 1.02298 21.6492 0.924036 21.3337 0.924072H10.7805C11.096 0.92409 11.4035 1.02305 11.6597 1.20703C11.916 1.391 12.1081 1.65072 12.209 1.94961L21.3675 29.0863C21.4441 29.3131 21.4655 29.5549 21.4301 29.7916C21.3947 30.0283 21.3034 30.2533 21.1638 30.4477C21.0242 30.6422 20.8403 30.8006 20.6273 30.9099C20.4144 31.0192 20.1784 31.0762 19.939 31.0762H30.4926C30.7319 31.0762 30.9678 31.0191 31.1808 30.9098C31.3937 30.8005 31.5776 30.642 31.7171 30.4476C31.8567 30.2531 31.9479 30.0282 31.9833 29.7915C32.0187 29.5548 31.9973 29.313 31.9207 29.0863L22.7622 1.94961Z" fill="url(#paint2_linear_3468_673)"/>
<defs>
<linearGradient id="paint0_linear_3468_673" x1="14.1191" y1="3.15843" x2="4.28524" y2="32.2101" gradientUnits="userSpaceOnUse">
<stop stop-color="#114A8B"/>
<stop offset="1" stop-color="#0669BC"/>
</linearGradient>
<linearGradient id="paint1_linear_3468_673" x1="17.191" y1="16.6973" x2="14.9163" y2="17.4665" gradientUnits="userSpaceOnUse">
<stop stop-opacity="0.3"/>
<stop offset="0.071" stop-opacity="0.2"/>
<stop offset="0.321" stop-opacity="0.1"/>
<stop offset="0.623" stop-opacity="0.05"/>
<stop offset="1" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear_3468_673" x1="15.9398" y1="2.31109" x2="26.7345" y2="31.0701" gradientUnits="userSpaceOnUse">
<stop stop-color="#3CCBF4"/>
<stop offset="1" stop-color="#2892DF"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,11 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3986_94)">
<path d="M9.78557 13.447L16.0009 7.2323L22.2182 13.4495L25.8346 9.8337L16.0009 0L6.16974 9.83058L9.78557 13.4464M0 16.0009L3.61646 12.3839L7.2323 16.0009L3.61584 19.6155L0 16.0009ZM9.78557 18.5542L16.0009 24.7683L22.2182 18.5511L25.8365 22.165L16.0009 32.0019L6.16974 22.1701L6.16474 22.1644L9.78557 18.5536M24.7683 16.0009L28.3842 12.3851L32.0019 16.0009L28.386 19.6168L24.7683 16.0009Z" fill="#F3BA2F"/>
<path d="M19.6674 16.0009L16.0009 12.3289L13.2883 15.0403L12.9758 15.3528L12.3339 15.9947L12.3289 15.9997L12.3339 16.0047L16.0009 19.6712L19.6699 16.0022H19.6668" fill="#F3BA2F"/>
</g>
<defs>
<clipPath id="clip0_3986_94">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +1,31 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="430" class="img-fluid mb-3 mb-md-0" viewBox="0 0 1024 860" focusable="false" role="img"><title>Bootstrap</title><defs><linearGradient id="c" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#5c24ae"/><stop offset="100%" stop-color="#30135a"/></linearGradient><path id="b" d="M355.967 242.807l-322 216.395c-44.275 29.754-44.275 78.443 0 108.197l322 216.395c44.275 29.754 116.725 29.754 161 0l322-216.395c44.275-29.754 44.275-78.443 0-108.197l-322-216.395c-44.275-29.754-116.725-29.754-161 0z"/><filter id="a" width="108%" height="112%" x="-4%" y="-4.3%" filterUnits="objectBoundingBox"><feOffset dy="10" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="10"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/></filter><linearGradient id="f" x1="50%" x2="50%" y1="-17.303%" y2="100%"><stop offset="0%" stop-color="#7331d4"/><stop offset="100%" stop-color="#461b84"/></linearGradient><path id="e" d="M355.967 132.807l-322 216.395c-44.275 29.754-44.275 78.443 0 108.197l322 216.395c44.275 29.754 116.725 29.754 161 0l322-216.395c44.275-29.754 44.275-78.443 0-108.197l-322-216.395c-44.275-29.754-116.725-29.754-161 0z"/><filter id="d" width="108%" height="112%" x="-4%" y="-4.3%" filterUnits="objectBoundingBox"><feOffset dy="10" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="10"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/></filter><linearGradient id="i" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#905bdd"/><stop offset="100%" stop-color="#5521a0"/></linearGradient><path id="h" d="M355.967 22.807l-322 216.395c-44.275 29.754-44.275 78.443 0 108.197l322 216.395c44.275 29.754 116.725 29.754 161 0l322-216.395c44.275-29.754 44.275-78.443 0-108.197l-322-216.395c-44.275-29.754-116.725-29.754-161 0z"/><filter id="g" width="108%" height="112%" x="-4%" y="-4.3%" filterUnits="objectBoundingBox"><feOffset dy="10" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="10"/><feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/></filter></defs><g fill="none"><g transform="translate(75 23)"><use fill="#000" filter="url(#a)" xlink:href="#b"/><use fill="url(#c)" xlink:href="#b"/></g><g transform="translate(75 23)"><use fill="#000" filter="url(#d)" xlink:href="#e"/><use fill="url(#f)" xlink:href="#e"/></g><g transform="translate(75 23)"><use fill="#000" filter="url(#g)" xlink:href="#h"/><use fill="url(#i)" xlink:href="#h"/></g><path fill="#fff" d="M558.273 447.667L308.036 279.5l97.982-65.847c42.83-28.784 96.789-31.483 134.245-6.311 26.044 17.502 31.214 46.615 11.444 65.724l1.389.934c38.324-19.932 84.107-18.527 117.396 3.845 44.046 29.6 38.671 68.419-14.561 104.193l-97.658 65.629zM447.112 331.01l49.942-33.562c36.935-24.822 42.31-48.249 15.224-66.451-24.798-16.665-55.49-14.453-85.851 5.95l-59.641 40.081 80.326 53.982zm176.532 35.663c37.63-25.289 42.136-48.832 13.203-68.276-28.932-19.444-64.163-15.614-104.042 11.186l-58.789 39.508 87.92 59.084 61.708-41.502z"/></g></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3323_410)">
<path d="M3.53006 6.3325C3.46969 4.59875 4.8205 3 6.64638 3H25.3559C27.1818 3 28.5326 4.59875 28.4722 6.3325C28.4142 7.99794 28.4896 10.1553 29.0325 11.9144C29.5772 13.6789 30.4957 14.7942 32 14.9375V16.5625C30.4957 16.7058 29.5772 17.8211 29.0325 19.5856C28.4896 21.3447 28.4142 23.5021 28.4722 25.1676C28.5326 26.9013 27.1818 28.5 25.3559 28.5H6.64638C4.8205 28.5 3.46969 26.9013 3.53012 25.1676C3.58806 23.5021 3.51275 21.3447 2.96975 19.5856C2.42512 17.8211 1.50437 16.7058 0 16.5625V14.9375C1.50431 14.7942 2.42512 13.6789 2.96975 11.9144C3.51275 10.1553 3.58806 7.99794 3.53006 6.3325V6.3325Z" fill="url(#paint0_linear_3323_410)"/>
<g filter="url(#filter0_d_3323_410)">
<path d="M16.694 22.5286C19.6501 22.5286 21.4314 21.0812 21.4314 18.6939C21.4314 16.8893 20.1604 15.5829 18.2731 15.3761V15.3009C19.6597 15.0753 20.7478 13.7877 20.7478 12.3497C20.7478 10.3008 19.1301 8.96606 16.6651 8.96606H11.1189V22.5286H16.694ZM13.2758 10.6861H16.1452C17.7051 10.6861 18.5909 11.3816 18.5909 12.641C18.5909 13.9851 17.5606 14.7369 15.6926 14.7369H13.2758V10.6861V10.6861ZM13.2758 20.8086V16.3442H16.1259C18.1672 16.3442 19.2264 17.0961 19.2264 18.5623C19.2264 20.0285 18.1961 20.8086 16.2511 20.8086H13.2758V20.8086Z" fill="url(#paint1_linear_3323_410)"/>
<path d="M16.694 22.5286C19.6501 22.5286 21.4314 21.0812 21.4314 18.6939C21.4314 16.8893 20.1604 15.5829 18.2731 15.3761V15.3009C19.6597 15.0753 20.7478 13.7877 20.7478 12.3497C20.7478 10.3008 19.1301 8.96606 16.6651 8.96606H11.1189V22.5286H16.694ZM13.2758 10.6861H16.1452C17.7051 10.6861 18.5909 11.3816 18.5909 12.641C18.5909 13.9851 17.5606 14.7369 15.6926 14.7369H13.2758V10.6861V10.6861ZM13.2758 20.8086V16.3442H16.1259C18.1672 16.3442 19.2264 17.0961 19.2264 18.5623C19.2264 20.0285 18.1961 20.8086 16.2511 20.8086H13.2758V20.8086Z" stroke="white"/>
</g>
</g>
<defs>
<filter id="filter0_d_3323_410" x="-5.3811" y="-3.53394" width="43.3125" height="46.5625" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="8"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3323_410"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3323_410" result="shape"/>
</filter>
<linearGradient id="paint0_linear_3323_410" x1="4.75494" y1="3.67488" x2="32.7175" y2="25.8716" gradientUnits="userSpaceOnUse">
<stop stop-color="#9013FE"/>
<stop offset="1" stop-color="#6610F2"/>
</linearGradient>
<linearGradient id="paint1_linear_3323_410" x1="12.0943" y1="9.85875" x2="18.3447" y2="20.4295" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#F1E5FC"/>
</linearGradient>
<clipPath id="clip0_3323_410">
<rect width="32" height="25.5" fill="white" transform="translate(0 3)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.1444 0.38736C8.56002 3.74989 5.22991 7.27915 2.35791 14.0733V26.3065L29.6636 31.6151V19.741L19.1444 0.38736ZM28.2148 29.9701L3.81054 25.1554V21.5604L28.2152 26.3099L28.2148 29.9701ZM28.2148 24.7267L3.81054 19.912V16.317L28.2152 21.0627L28.2148 24.7267Z" fill="#7CC2E4" stroke="white" stroke-width="0.1" stroke-miterlimit="10"/>
</svg>

After

Width:  |  Height:  |  Size: 444 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 B

@ -0,0 +1,5 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.806 13.873L28.172 16.943C30.324 16.103 31.617 15.032 31.617 13.873V8.935C31.617 6.213 24.537 4 15.806 4C7.076 4 0 6.213 0 8.935V13.873C0 16.596 7.076 18.806 15.806 18.806V13.873Z" fill="#D33C44"/>
<path d="M28.171 21.879L15.805 18.806V23.74L28.171 26.814C30.324 25.97 31.617 24.903 31.617 23.74V18.806C31.618 19.969 30.324 21.036 28.171 21.879Z" fill="#D33C44"/>
<path d="M0 18.806V23.741C0 26.465 7.076 28.674 15.806 28.674V23.741C7.076 23.741 0 21.53 0 18.806Z" fill="#D33C44"/>
</svg>

After

Width:  |  Height:  |  Size: 597 B

@ -1,4 +1,7 @@
<svg width="2447" height="2447" viewBox="0 0 2447 2447" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2137.38 2446.66H313.938C171.216 2446.66 55 2330.45 55 2187.72V363.601C55 220.879 171.216 104.663 313.938 104.663H2137.38C2280.1 104.663 2396.32 220.879 2396.32 363.601V2187.04C2397 2330.45 2280.78 2446.66 2137.38 2446.66ZM313.938 248.064C250.053 248.064 198.402 299.716 198.402 363.601V2187.04C198.402 2250.93 250.053 2302.58 313.938 2302.58H2137.38C2201.27 2302.58 2252.92 2250.93 2252.92 2187.04V363.601C2252.92 299.716 2201.27 248.064 2137.38 248.064H313.938Z" fill="#676B74"/>
<path d="M1748.63 492.051C1718.05 492.051 1693.58 467.584 1693.58 437.001V55.0499C1693.58 24.4666 1718.05 0 1748.63 0C1779.22 0 1803.68 24.4666 1803.68 55.0499V436.322C1803.68 466.905 1779.22 492.051 1748.63 492.051ZM697.249 492.051C666.666 492.051 642.199 467.584 642.199 437.001V55.0499C642.199 24.4666 666.666 0 697.249 0C727.832 0 752.299 24.4666 752.299 55.0499V436.322C752.979 466.905 727.832 492.051 697.249 492.051ZM1291.92 1724.9C1063.57 1724.9 878.03 1539.36 878.03 1311C878.03 1082.65 1063.57 897.11 1291.92 897.11C1395.23 897.11 1493.77 935.169 1569.89 1004.49C1579.41 1012.65 1580.09 1027.6 1571.25 1036.43C1563.1 1045.95 1548.14 1046.63 1539.31 1037.79C1471.35 975.947 1383.67 941.965 1291.92 941.965C1088.72 941.965 923.565 1107.11 923.565 1310.32C923.565 1513.53 1088.72 1678.68 1291.92 1678.68C1383.67 1678.68 1471.35 1644.7 1539.31 1582.85C1548.82 1574.7 1563.1 1575.38 1571.25 1584.21C1579.41 1593.73 1578.73 1608 1569.89 1616.16C1493.77 1686.84 1395.23 1724.9 1291.92 1724.9Z" fill="#676B74"/>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.8212 20.7503C20.8052 21.6519 19.5364 22.7739 17.2358 22.7739H15.8601C14.1953 22.7739 12.6811 22.1687 11.5973 21.0719C10.5385 20.0002 9.95572 18.5334 9.95572 16.9411V15.0588C9.95572 13.4665 10.5385 11.9997 11.5973 10.9279C12.6811 9.83109 14.1953 9.2269 15.8601 9.2269H17.2358C19.5392 9.2269 20.8052 10.3479 21.8212 11.2496C22.8762 12.1791 23.7862 12.9915 26.2132 12.9915C26.5833 12.9914 26.9529 12.9618 27.3184 12.9032L27.31 12.8818C27.1647 12.5208 26.9942 12.1704 26.7997 11.8333L25.1777 9.02333C23.6908 6.44835 20.9342 4.85708 17.9608 4.85718H14.7158C11.7425 4.85708 8.98585 6.44835 7.49898 9.02333L5.87695 11.8333C4.39063 14.4086 4.39063 17.5913 5.87695 20.1665L7.49898 22.9765C8.98585 25.5515 11.7425 27.1428 14.7158 27.1427H17.9608C20.9342 27.1428 23.6908 25.5515 25.1777 22.9765L26.7997 20.1712C26.9942 19.834 27.1647 19.4837 27.31 19.1227L27.3184 19.1022C26.9531 19.0415 26.5835 19.0105 26.2132 19.0093C23.7862 19.0093 22.8762 19.817 21.8212 20.7512" fill="#006BFF"/>
<path d="M17.2358 10.9326H15.8601C13.3262 10.9326 11.6614 12.7424 11.6614 15.0588V16.9411C11.6614 19.2575 13.3262 21.0673 15.8601 21.0673H17.2358C20.9279 21.0673 20.6378 17.3027 26.2132 17.3027C26.7414 17.3021 27.2686 17.3506 27.7878 17.4477C27.957 16.49 27.957 15.5099 27.7878 14.5522C27.2685 14.6488 26.7414 14.6973 26.2132 14.6972C20.636 14.6972 20.9279 10.9326 17.2358 10.9326" fill="#006BFF"/>
<path d="M30.9909 18.8234C30.0415 18.1281 28.9465 17.6574 27.7887 17.4468V17.4747C27.689 18.0297 27.5332 18.5731 27.3239 19.0967C28.2803 19.2448 29.1879 19.6187 29.9712 20.1871C29.9712 20.1945 29.9665 20.2038 29.9638 20.2122C28.1213 26.1781 22.5685 30.2748 16.3246 30.2748C8.49366 30.2748 2.04978 23.8309 2.04978 16C2.04978 8.16908 8.49366 1.72521 16.3246 1.72521C22.5685 1.72521 28.1213 5.82192 29.9638 11.7878C29.9638 11.7962 29.9684 11.8055 29.9712 11.8129C29.188 12.3814 28.2804 12.7549 27.3239 12.9023C27.533 13.4266 27.6887 13.9707 27.7887 14.5262C27.7881 14.5349 27.7881 14.5436 27.7887 14.5523C28.9464 14.3421 30.0415 13.8717 30.9909 13.1766C31.9037 12.5008 31.7271 11.7376 31.5886 11.2859C29.5258 4.59541 23.3 0 16.2988 0C7.52146 0 0.298828 7.22263 0.298828 16C0.298828 24.7774 7.52146 32 16.2988 32C23.3 32 29.5258 27.4046 31.5886 20.7141C31.7271 20.2624 31.9037 19.4992 30.9909 18.8234" fill="#006BFF"/>
<path d="M27.3183 12.9023C26.953 12.963 26.5834 12.9941 26.213 12.9953C23.786 12.9953 22.876 12.1875 21.8219 11.2533C20.805 10.3517 19.539 9.22974 17.2356 9.22974H15.8599C14.1942 9.22974 12.6809 9.83486 11.5971 10.9317C10.5384 12.0035 9.95557 13.4703 9.95557 15.0625V16.9448C9.95557 18.5371 10.5384 20.0039 11.5971 21.0757C12.6809 22.1725 14.1942 22.7767 15.8599 22.7767H17.2356C19.539 22.7767 20.805 21.6557 21.8219 20.754C22.876 19.8245 23.786 19.0121 26.213 19.0121C26.5832 19.0122 26.9528 19.0418 27.3183 19.1004C27.5281 18.577 27.6837 18.0335 27.783 17.4784C27.7836 17.4691 27.7836 17.4598 27.783 17.4505C27.2637 17.3542 26.7366 17.306 26.2084 17.3064C20.6312 17.3064 20.9231 21.0719 17.231 21.0719H15.8553C13.3214 21.0719 11.6566 19.2612 11.6566 16.9448V15.0588C11.6566 12.7424 13.3214 10.9326 15.8553 10.9326H17.231C20.9231 10.9326 20.6331 14.6963 26.2084 14.6963C26.7367 14.6972 27.2638 14.649 27.783 14.5522V14.5262C27.6831 13.9706 27.5274 13.4266 27.3183 12.9023" fill="#0AE8F0"/>
<path d="M27.3183 12.9023C26.953 12.963 26.5834 12.9941 26.213 12.9953C23.786 12.9953 22.876 12.1875 21.8219 11.2533C20.805 10.3517 19.539 9.22974 17.2356 9.22974H15.8599C14.1942 9.22974 12.6809 9.83486 11.5971 10.9317C10.5384 12.0035 9.95557 13.4703 9.95557 15.0625V16.9448C9.95557 18.5371 10.5384 20.0039 11.5971 21.0757C12.6809 22.1725 14.1942 22.7767 15.8599 22.7767H17.2356C19.539 22.7767 20.805 21.6557 21.8219 20.754C22.876 19.8245 23.786 19.0121 26.213 19.0121C26.5832 19.0122 26.9528 19.0418 27.3183 19.1004C27.5281 18.577 27.6837 18.0335 27.783 17.4784C27.7836 17.4691 27.7836 17.4598 27.783 17.4505C27.2637 17.3542 26.7366 17.306 26.2084 17.3064C20.6312 17.3064 20.9231 21.0719 17.231 21.0719H15.8553C13.3214 21.0719 11.6566 19.2612 11.6566 16.9448V15.0588C11.6566 12.7424 13.3214 10.9326 15.8553 10.9326H17.231C20.9231 10.9326 20.6331 14.6963 26.2084 14.6963C26.7367 14.6972 27.2638 14.649 27.783 14.5522V14.5262C27.6831 13.9706 27.5274 13.4266 27.3183 12.9023" fill="#0AE8F0"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

@ -0,0 +1,5 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.9763 9.40308C9.82246 9.40308 4.89938 14.3508 4.89938 20.48C4.89938 26.6092 9.84707 31.5569 15.9763 31.5569C22.1055 31.5569 27.0532 26.6092 27.0532 20.48C27.0532 14.3508 22.0071 9.40308 15.9763 9.40308ZM15.9763 28.2092C11.7671 28.2092 8.39477 24.8369 8.39477 20.6277C8.39477 16.4185 11.7671 13.0462 15.9763 13.0462C20.1855 13.0462 23.5578 16.4185 23.5578 20.6277C23.5578 24.8369 20.2102 28.2092 15.9763 28.2092Z" fill="#02BDF6"/>
<path d="M27.2994 3.86462C24.0502 1.82154 20.0871 0.49231 15.9763 0.49231C11.8655 0.49231 7.90246 1.82154 4.65323 3.86462C3.69323 4.57846 3.44707 5.90769 3.93938 6.86769L5.51477 9.74769C5.884 10.3385 6.72092 10.5846 7.21323 10.1169C8.17323 9.40308 9.13323 8.66462 10.2163 8.19692C10.4625 8.07385 10.5855 7.82769 10.5855 7.60616V5.90769C10.5855 5.66154 10.7086 5.41539 10.9548 5.41539C12.5302 4.82462 14.204 4.57846 15.9025 4.57846H16.0255H16.1486C17.8471 4.57846 19.5209 4.82462 21.0963 5.41539C21.3425 5.41539 21.4655 5.66154 21.4655 5.90769V7.60616C21.4655 7.85231 21.5886 8.09846 21.8348 8.19692C22.9178 8.68923 23.8778 9.40308 24.8378 10.1169C25.3302 10.6092 26.1671 10.3631 26.5363 9.74769L28.1117 6.86769C28.5055 5.90769 28.284 4.57846 27.2994 3.86462Z" fill="#02BDF6"/>
<path d="M15.9763 24.5908C18.233 24.5908 20.0625 22.7613 20.0625 20.5046C20.0625 18.2479 18.233 16.4185 15.9763 16.4185C13.7196 16.4185 11.8902 18.2479 11.8902 20.5046C11.8902 22.7613 13.7196 24.5908 15.9763 24.5908Z" fill="#02BDF6"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

@ -0,0 +1,25 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3795_56)">
<path d="M4.64369 15.9573C4.6444 14.8291 4.232 13.7395 3.48424 12.8941C2.73649 12.0487 1.70505 11.5058 0.584408 11.3679C-0.19464 14.378 -0.19464 17.5367 0.584408 20.5468C1.70505 20.4089 2.73649 19.866 3.48424 19.0206C4.232 18.1752 4.6444 17.0856 4.64369 15.9573" fill="#E72429"/>
<path d="M7.33225 14.5099C7.04492 14.5099 6.76405 14.5951 6.5252 14.7547C6.28634 14.9143 6.10023 15.1411 5.99044 15.4064C5.88064 15.6717 5.8521 15.9636 5.90841 16.2452C5.96472 16.5268 6.10336 16.7853 6.30678 16.9881C6.5102 17.1908 6.76925 17.3288 7.05114 17.3843C7.33303 17.4399 7.62509 17.4107 7.89035 17.3003C8.15561 17.19 8.38213 17.0035 8.54126 16.7644C8.70038 16.5253 8.78495 16.2444 8.78426 15.9573C8.78332 15.5731 8.62993 15.205 8.35773 14.9336C8.08553 14.6623 7.71674 14.5099 7.33225 14.5099" fill="#E72429"/>
<path d="M27.3566 15.9573C27.3559 17.0856 27.7683 18.1752 28.516 19.0206C29.2638 19.866 30.2952 20.4089 31.4159 20.5468C32.1949 17.5367 32.1949 14.378 31.4159 11.3679C30.2952 11.5058 29.2638 12.0487 28.516 12.8941C27.7683 13.7395 27.3559 14.8291 27.3566 15.9573" fill="#E72429"/>
<path d="M24.6679 14.5099C24.3806 14.5099 24.0997 14.5951 23.8609 14.7547C23.622 14.9143 23.4359 15.1411 23.3261 15.4064C23.2163 15.6717 23.1878 15.9636 23.2441 16.2452C23.3004 16.5268 23.4391 16.7853 23.6425 16.9881C23.8459 17.1908 24.1049 17.3288 24.3868 17.3843C24.6687 17.4399 24.9608 17.4107 25.226 17.3003C25.4913 17.19 25.7178 17.0035 25.877 16.7644C26.0361 16.5253 26.1206 16.2444 26.1199 15.9573C26.119 15.5731 25.9656 15.205 25.6934 14.9336C25.4212 14.6623 25.0524 14.5099 24.6679 14.5099" fill="#E72429"/>
<path d="M15.9701 27.3497C14.8396 27.3511 13.7488 27.7658 12.9033 28.5157C12.0579 29.2655 11.5164 30.2987 11.3809 31.4201C14.3938 32.1932 17.5534 32.1932 20.5664 31.4201C20.4276 30.3006 19.8842 29.2704 19.0383 28.5233C18.1924 27.7763 17.1025 27.3639 15.9736 27.3639" fill="#E72429"/>
<path d="M15.9701 23.2122C15.6352 23.213 15.3108 23.3298 15.0523 23.5427C14.7939 23.7556 14.6172 24.0514 14.5525 24.3798C14.4877 24.7082 14.5389 25.0489 14.6972 25.3438C14.8556 25.6388 15.1113 25.8698 15.421 25.9975C15.7306 26.1252 16.0749 26.1418 16.3954 26.0443C16.7158 25.9469 16.9926 25.7414 17.1785 25.463C17.3644 25.1846 17.448 24.8504 17.4151 24.5173C17.3822 24.1842 17.2347 23.8728 16.9979 23.6361C16.8628 23.5014 16.7026 23.3947 16.5262 23.3219C16.3499 23.2492 16.1609 23.2119 15.9701 23.2122" fill="#E72429"/>
<path d="M15.9701 4.63914C17.0989 4.6391 18.1888 4.22676 19.0347 3.47974C19.8805 2.73272 20.424 1.70253 20.5628 0.583055C17.5504 -0.194266 14.3898 -0.194353 11.3773 0.582804C11.5161 1.70233 12.0595 2.73257 12.9054 3.47964C13.7512 4.22671 14.8412 4.63908 15.9701 4.63914" fill="#E72429"/>
<path d="M15.9701 5.87476C15.6352 5.87557 15.3108 5.99237 15.0523 6.20526C14.7939 6.41816 14.6172 6.71399 14.5525 7.0424C14.4877 7.37081 14.5389 7.71149 14.6972 8.00645C14.8556 8.3014 15.1113 8.5324 15.421 8.66012C15.7306 8.78784 16.0749 8.80438 16.3954 8.70692C16.7158 8.60946 16.9926 8.40404 17.1785 8.12561C17.3644 7.84719 17.448 7.51298 17.4151 7.17988C17.3822 6.84678 17.2347 6.53538 16.9979 6.2987C16.8628 6.16403 16.7026 6.05727 16.5262 5.98453C16.3499 5.91179 16.1609 5.87449 15.9701 5.87476" fill="#E72429"/>
<path d="M24.025 24.0065C23.2288 24.8042 22.7514 25.8649 22.6825 26.9895C22.6135 28.114 22.9578 29.225 23.6505 30.1139C26.3242 28.5308 28.5523 26.2958 30.1263 23.6181C29.2356 22.9313 28.1252 22.5919 27.0024 22.6634C25.8796 22.7349 24.8213 23.2123 24.025 24.0065" fill="#E72429"/>
<path d="M21.0892 21.0728C20.8541 21.3099 20.7085 21.6211 20.6771 21.9534C20.6457 22.2857 20.7304 22.6186 20.9169 22.8955C21.1035 23.1723 21.3802 23.3761 21.7001 23.4721C22.02 23.568 22.3633 23.5503 22.6716 23.4218C22.9799 23.2934 23.2342 23.0622 23.3911 22.7676C23.548 22.4729 23.598 22.1331 23.5324 21.8058C23.4669 21.4785 23.2899 21.184 23.0315 20.9724C22.7732 20.7609 22.4495 20.6452 22.1155 20.6453C21.9247 20.6455 21.7358 20.6834 21.5597 20.7567C21.3835 20.8301 21.2237 20.9375 21.0892 21.0728" fill="#E72429"/>
<path d="M7.95049 7.94352C8.74694 7.14683 9.22486 6.08695 9.29447 4.96299C9.36408 3.83903 9.02059 2.72834 8.32852 1.8396C5.6514 3.41684 3.41846 5.64695 1.83862 8.32127C2.72827 9.01381 3.84051 9.35764 4.96609 9.28807C6.09167 9.2185 7.15303 8.74033 7.95049 7.94352" fill="#E72429"/>
<path d="M8.83365 8.82605C8.63047 9.02893 8.49206 9.28746 8.43594 9.56895C8.37982 9.85044 8.40851 10.1422 8.51838 10.4074C8.62824 10.6726 8.81435 10.8993 9.05315 11.0588C9.29196 11.2183 9.57274 11.3034 9.85996 11.3034C10.1472 11.3034 10.428 11.2183 10.6668 11.0588C10.9056 10.8993 11.0917 10.6726 11.2016 10.4074C11.3114 10.1422 11.3401 9.85044 11.284 9.56895C11.2279 9.28746 11.0895 9.02893 10.8863 8.82605C10.614 8.5542 10.2449 8.40149 9.85996 8.40149C9.47507 8.40149 9.10592 8.5542 8.83365 8.82605" fill="#E72429"/>
<path d="M24.025 7.92933C24.8227 8.72451 25.8832 9.20161 27.0078 9.27115C28.1324 9.3407 29.2437 8.99792 30.1334 8.30709C28.5501 5.62975 26.3121 3.39823 23.6294 1.8219C22.9386 2.71299 22.5976 3.82564 22.6704 4.95046C22.7433 6.07527 23.2251 7.13469 24.0251 7.92933" fill="#E72429"/>
<path d="M23.1313 10.856C23.3344 10.6532 23.4729 10.3946 23.529 10.1131C23.5851 9.83164 23.5564 9.53984 23.4466 9.27464C23.3367 9.00944 23.1506 8.78276 22.9118 8.62328C22.673 8.46379 22.3922 8.37866 22.105 8.37866C21.8177 8.37866 21.5369 8.46379 21.2981 8.62328C21.0593 8.78276 20.8732 9.00944 20.7634 9.27464C20.6535 9.53984 20.6248 9.83164 20.6809 10.1131C20.7371 10.3946 20.8755 10.6532 21.0787 10.856C21.3509 11.1279 21.7201 11.2806 22.105 11.2806C22.4898 11.2806 22.859 11.1279 23.1313 10.856" fill="#E72429"/>
<path d="M7.94341 23.9782C7.14517 23.1828 6.08402 22.7056 4.95886 22.636C3.83371 22.5665 2.72179 22.9094 1.83154 23.6005C3.41085 26.2761 5.64378 28.5075 8.32127 30.0857C9.01287 29.1961 9.35603 28.085 9.28643 26.9606C9.21684 25.8363 8.73927 24.7759 7.94324 23.9782" fill="#E72429"/>
<path d="M8.83367 21.0551C8.59727 21.2923 8.45046 21.604 8.41822 21.9372C8.38599 22.2704 8.47033 22.6045 8.65688 22.8825C8.84343 23.1606 9.12066 23.3654 9.44137 23.4621C9.76207 23.5589 10.1064 23.5416 10.4158 23.4131C10.7251 23.2847 10.9804 23.053 11.138 22.7577C11.2957 22.4623 11.346 22.1215 11.2805 21.7932C11.2149 21.4649 11.0375 21.1695 10.7785 20.9572C10.5194 20.745 10.1948 20.629 9.85975 20.629C9.66908 20.6291 9.48028 20.6667 9.3042 20.7398C9.12812 20.8129 8.96822 20.9201 8.83367 21.0551" fill="#E72429"/>
</g>
<defs>
<clipPath id="clip0_3795_56">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 595 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 670 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 29 KiB

@ -0,0 +1,5 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="32" height="32" fill="black"/>
<path d="M7.87093 29.3911C9.86133 29.3911 11.4752 27.7585 11.4752 25.7446C11.4752 23.7308 9.86133 22.0982 7.87093 22.0982C5.88053 22.0982 4.26667 23.7308 4.26667 25.7446C4.26667 27.7585 5.88053 29.3911 7.87093 29.3911V29.3911Z" fill="white"/>
<path d="M19.7963 19.3986C22.1877 19.3986 24.0245 17.7857 24.6827 16.1729L27.8027 18.2065C26.208 21.0465 23.3664 23.045 19.5893 23.045C14.5643 23.045 9.98933 19.0129 9.98933 13.1226C9.98933 7.2672 14.5643 3.2 19.5893 3.2C23.4005 3.2 26.208 5.2336 27.7675 8.0736L24.6485 10.1072C24.0245 8.4944 22.2229 6.88149 19.7963 6.88149C15.9851 6.88149 13.9051 9.72149 13.9051 13.1575C13.9051 16.5936 15.9851 19.3986 19.7963 19.3986V19.3986Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 836 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.232 5.12073L23.6849 8.67027C23.5734 8.78107 23.4279 8.85132 23.2718 8.86983C23.1156 8.88835 22.9578 8.85405 22.8234 8.77243C20.987 7.66798 18.7996 7.30236 16.7039 7.74952C14.6081 8.19668 12.7605 9.42325 11.5348 11.181C10.6052 12.5195 10.0824 14.0982 10.0293 15.727C9.97623 17.3558 10.3952 18.9652 11.2357 20.3613C11.3172 20.4955 11.3515 20.6532 11.333 20.8091C11.3144 20.965 11.2442 21.1103 11.1336 21.2217L7.58402 24.7687C7.51264 24.8409 7.42646 24.8967 7.33142 24.9323C7.23638 24.9679 7.13475 24.9825 7.03354 24.975C6.93232 24.9675 6.83394 24.9381 6.74518 24.8889C6.65641 24.8397 6.57938 24.7718 6.5194 24.69C4.44924 21.845 3.46271 18.3545 3.73741 14.8469C4.01212 11.3392 5.53002 8.04487 8.01782 5.55691C10.5056 3.06896 13.7999 1.55086 17.3075 1.27595C20.8152 1.00103 24.3057 1.98736 27.1508 4.05735C27.2328 4.11714 27.3009 4.19402 27.3503 4.28269C27.3998 4.37136 27.4294 4.46969 27.4371 4.57091C27.4448 4.67213 27.4305 4.77382 27.3951 4.86896C27.3597 4.9641 27.304 5.04919 27.232 5.12073Z" fill="#4C58FF"/>
<path d="M27.232 26.8795L23.6849 23.3312C23.5734 23.2204 23.4279 23.1501 23.2718 23.1316C23.1156 23.1131 22.9578 23.1474 22.8234 23.229C21.507 24.021 19.9997 24.4394 18.4634 24.4394C16.9271 24.4394 15.4198 24.021 14.1034 23.229C13.9691 23.1477 13.8115 23.1136 13.6557 23.1321C13.4998 23.1506 13.3546 23.2207 13.2431 23.3312L9.69478 26.8795C9.6233 26.9511 9.56811 27.0374 9.53297 27.1323C9.49783 27.2272 9.48357 27.3286 9.49117 27.4295C9.49876 27.5304 9.52802 27.6285 9.57697 27.7171C9.62591 27.8057 9.69338 27.8827 9.77478 27.9429C12.2996 29.7799 15.3416 30.7694 18.464 30.7694C21.5864 30.7694 24.6284 29.7799 27.1532 27.9429C27.2347 27.8827 27.3023 27.8057 27.3512 27.7171C27.4002 27.6284 27.4294 27.5303 27.4369 27.4293C27.4443 27.3283 27.4299 27.2269 27.3946 27.132C27.3592 27.0371 27.3038 26.9509 27.232 26.8795ZM18.464 20.2198C19.0242 20.2294 19.5807 20.1273 20.1011 19.9195C20.6214 19.7118 21.0951 19.4025 21.4947 19.0097C21.8942 18.6169 22.2116 18.1485 22.4282 17.6318C22.6448 17.1151 22.7564 16.5604 22.7564 16.0001C22.7564 15.4398 22.6448 14.8851 22.4282 14.3684C22.2116 13.8517 21.8942 13.3833 21.4947 12.9905C21.0951 12.5977 20.6214 12.2884 20.1011 12.0807C19.5807 11.8729 19.0242 11.7708 18.464 11.7804C17.3574 11.7993 16.3024 12.2522 15.5265 13.0415C14.7506 13.8308 14.3158 14.8933 14.3158 16.0001C14.3158 17.1069 14.7506 18.1694 15.5265 18.9587C16.3024 19.748 17.3574 20.2009 18.464 20.2198Z" fill="#1F0256"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 897 B

@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.6802 8.00075C20.3266 8.00075 18.2946 9.40555 16.8802 11.4888L16.861 11.4728C16.0002 12.4616 11.6034 19.7128 8.28179 19.5176C6.47699 19.412 5.22899 18.02 5.22899 16.0392V15.9848C5.22899 14.1192 6.50899 12.5928 8.22419 12.5928C9.52339 12.5928 10.3458 13.1848 11.0786 14.1928L14.7202 11.492C13.4402 9.42795 11.3346 8.07115 8.19539 8.07115C3.36339 8.07115 0.000193149 11.716 0.000193149 16.0392V16.0968C-0.00715412 17.1467 0.195182 18.1875 0.59534 19.1582C0.995498 20.1289 1.58542 21.01 2.33053 21.7497C3.07564 22.4895 3.96093 23.073 4.93451 23.4661C5.90808 23.8593 6.95035 24.0541 8.00019 24.0392C14.0354 24.0392 19.0018 16.2088 20.429 14.0936H20.4482C21.2962 13.1048 22.1154 12.4936 23.3858 12.4936C25.197 12.4936 26.4386 13.9912 26.4386 15.9688V16.0264C26.4386 17.892 25.1586 19.4184 23.4434 19.4184C22.1442 19.4184 21.325 18.8264 20.589 17.8184L16.941 20.548C18.2402 22.612 20.333 23.9688 23.469 23.9688C28.301 23.9688 31.6802 20.324 31.6802 15.9976V15.9368C31.6862 14.8875 31.483 13.8475 31.0823 12.8778C30.6816 11.908 30.0915 11.0279 29.3466 10.2889C28.6017 9.54994 27.7168 8.96696 26.7439 8.57406C25.7709 8.18117 24.7294 7.98627 23.6802 8.00075V8.00075Z" fill="#E20678"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -1,19 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="8252 2133 134 27.328">
<defs>
<style>
.cls-1 {
fill: #39a8ef;
}
</style>
</defs>
<g id="Group_1203" data-name="Group 1203" transform="translate(8252 2133)">
<path id="Path_1743" data-name="Path 1743" class="cls-1" d="M67.236,21.834l-6.3-8.432,6.1-7.01H62.054L56.264,13.3V.5H52.2V21.834h4.064V17.872l1.829-1.93,4.064,5.892Z" transform="translate(0.831 0.008)"/>
<path id="Path_1744" data-name="Path 1744" class="cls-1" d="M69.738,4.876a2.472,2.472,0,0,0,2.438-2.438A2.472,2.472,0,0,0,69.738,0,2.407,2.407,0,0,0,67.3,2.438,2.407,2.407,0,0,0,69.738,4.876Z" transform="translate(1.071)"/>
<path id="Path_1745" data-name="Path 1745" class="cls-1" d="M71.562,21.942V6.5H67.6V21.942Z" transform="translate(1.076 0.103)"/>
<path id="Path_1746" data-name="Path 1746" class="cls-1" d="M94.164,21.834H90.1V.5h4.064V8.424a6.061,6.061,0,0,1,4.775-2.337c3.861,0,6.807,3.048,6.807,8.127,0,5.181-2.946,8.127-6.807,8.127a6.061,6.061,0,0,1-4.775-2.337Zm0-4.978a4.429,4.429,0,0,0,3.454,1.727c2.337,0,3.861-1.829,3.861-4.47s-1.524-4.47-3.861-4.47a4.525,4.525,0,0,0-3.454,1.829Zm35.049,5.588c-2.845,0-4.368-1.422-4.368-4.267V10.151H122.3V6.6h2.54V2.329h4.064V6.6h3.149v3.556h-3.149v7.01a1.536,1.536,0,0,0,1.422,1.727,2.368,2.368,0,0,0,1.422-.406l.813,3.048A5.749,5.749,0,0,1,129.213,22.444Z" transform="translate(1.435 0.008)"/>
<path id="Path_1747" data-name="Path 1747" class="cls-1" d="M84.993,20.635a7.842,7.842,0,0,1-11.175-2.946A7.824,7.824,0,0,1,76.663,6.716c3.962-2.235,8.331-.813,10.87,3.556l.406.813-9.854,5.689a4.14,4.14,0,0,0,5.588.914,6,6,0,0,0,2.743-3.353l2.845,1.422A9.3,9.3,0,0,1,84.993,20.635ZM83.266,10.577a3.572,3.572,0,0,0-4.978-1.118,3.73,3.73,0,0,0-1.524,4.876Z" transform="translate(1.157 0.09)"/>
<path id="Path_1748" data-name="Path 1748" class="cls-1" d="M23.061,4.868A13.236,13.236,0,0,0,0,13.91,13.311,13.311,0,0,0,13.309,27.32a13.506,13.506,0,0,0,9.854-4.368,11.424,11.424,0,0,1-3.657-2.946,8.275,8.275,0,0,1-6.1,2.641A8.534,8.534,0,1,1,19.4,8.018,9.936,9.936,0,0,1,23.061,4.868Z" transform="translate(0 0.008)"/>
<path id="Path_1749" data-name="Path 1749" class="cls-1" d="M27.026,21.955a8.128,8.128,0,1,1,8.026-8.127A8.065,8.065,0,0,1,27.026,21.955Zm0-3.861a4.267,4.267,0,1,0-4.267-4.267A4.293,4.293,0,0,0,27.026,18.094ZM43.89,21.955a8.128,8.128,0,1,1,8.026-8.127A8.065,8.065,0,0,1,43.89,21.955Zm0-3.861a4.267,4.267,0,1,0-4.267-4.267A4.293,4.293,0,0,0,43.89,18.094Z" transform="translate(0.303 0.091)"/>
<path id="Path_1750" data-name="Path 1750" class="cls-1" d="M114.326,21.955a8.128,8.128,0,1,1,8.026-8.127A8.065,8.065,0,0,1,114.326,21.955Zm.1-3.861a4.267,4.267,0,1,0-4.267-4.267A4.293,4.293,0,0,0,114.427,18.094Z" transform="translate(1.692 0.091)"/>
</g>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_3311_318" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="4" width="32" height="24">
<rect y="4" width="32" height="23.814" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_3311_318)">
<path d="M20.4772 7.87855C18.8767 6.10509 16.7737 4.86148 14.4485 4.31345C12.1234 3.76541 9.68641 3.93897 7.46238 4.81099C5.23834 5.68301 3.33286 7.21209 1.99985 9.19447C0.666831 11.1768 -0.0304155 13.5184 0.0010179 15.907C-0.0105798 17.4664 0.286508 19.0126 0.875162 20.4566C1.46382 21.9006 2.3324 23.2138 3.43086 24.3206C4.52933 25.4274 5.83596 26.3059 7.27546 26.9054C8.71496 27.505 10.2589 27.8138 11.8182 27.814C13.4648 27.8028 15.0914 27.4527 16.5967 26.7854C18.102 26.1182 19.4537 25.1481 20.5677 23.9356C19.3159 23.2979 18.2102 22.4071 17.3206 21.3198C16.629 22.0638 15.7906 22.6564 14.8583 23.06C13.9261 23.4636 12.9202 23.6695 11.9044 23.6647C10.6623 23.6617 9.43995 23.3534 8.34502 22.7669C7.25009 22.1805 6.31612 21.3338 5.62532 20.3015C4.93452 19.2692 4.50808 18.083 4.38353 16.8471C4.25898 15.6113 4.44015 14.3638 4.91109 13.2144C5.38202 12.065 6.12828 11.049 7.08418 10.2559C8.04007 9.46274 9.17629 8.91674 10.3928 8.66594C11.6093 8.41515 12.8689 8.46725 14.0605 8.81767C15.2522 9.16809 16.3394 9.80608 17.2265 10.6755C18.0635 9.49 19.1801 8.52932 20.4772 7.87855V7.87855Z" fill="#39A8EF"/>
<path d="M24.2665 23.124C22.8354 23.142 21.4312 22.734 20.2325 21.9519C19.0338 21.1699 18.0947 20.0491 17.5346 18.732C16.9745 17.4149 16.8186 15.961 17.0869 14.5551C17.3551 13.1492 18.0353 11.8548 19.041 10.8365C20.0467 9.81813 21.3325 9.1218 22.7349 8.83601C24.1373 8.55023 25.593 8.68789 26.917 9.23149C28.241 9.7751 29.3735 10.7001 30.1705 11.8889C30.9675 13.0777 31.393 14.4767 31.3929 15.9079C31.4001 16.8501 31.2214 17.7843 30.867 18.6573C30.5125 19.5302 29.9893 20.3246 29.3273 20.9949C28.6652 21.6653 27.8774 22.1984 27.009 22.5637C26.1406 22.9291 25.2086 23.1195 24.2665 23.124ZM24.2665 19.6958C25.0158 19.6958 25.7484 19.4736 26.3714 19.0573C26.9945 18.641 27.4801 18.0492 27.7668 17.3569C28.0536 16.6646 28.1286 15.9029 27.9824 15.1679C27.8362 14.433 27.4754 13.7579 26.9455 13.228C26.4157 12.6982 25.7406 12.3373 25.0056 12.1911C24.2707 12.0449 23.5089 12.12 22.8166 12.4067C22.1243 12.6935 21.5326 13.1791 21.1163 13.8022C20.7 14.4252 20.4778 15.1577 20.4778 15.9071C20.4838 16.91 20.885 17.8702 21.5942 18.5794C22.3034 19.2886 23.2635 19.6897 24.2665 19.6958ZM39.2403 23.124C37.8091 23.142 36.405 22.734 35.2063 21.9519C34.0076 21.1699 33.0685 20.0491 32.5084 18.732C31.9482 17.4149 31.7924 15.961 32.0606 14.5551C32.3288 13.1492 33.009 11.8548 34.0147 10.8365C35.0204 9.81813 36.3062 9.1218 37.7086 8.83601C39.1111 8.55023 40.5668 8.68789 41.8908 9.23149C43.2148 9.7751 44.3472 10.7001 45.1442 11.8889C45.9412 13.0777 46.3667 14.4767 46.3666 15.9079C46.3739 16.8501 46.1952 17.7843 45.8407 18.6573C45.4863 19.5302 44.963 20.3246 44.301 20.9949C43.639 21.6653 42.8512 22.1984 41.9828 22.5637C41.1144 22.9291 40.1824 23.1195 39.2403 23.124ZM39.2403 19.6958C39.9896 19.6958 40.7221 19.4736 41.3452 19.0573C41.9682 18.641 42.4538 18.0492 42.7406 17.3569C43.0273 16.6646 43.1024 15.9029 42.9562 15.1679C42.81 14.433 42.4491 13.7579 41.9193 13.228C41.3894 12.6982 40.7143 12.3373 39.9794 12.1911C39.2445 12.0449 38.4827 12.12 37.7904 12.4067C37.0981 12.6935 36.5064 13.1791 36.0901 13.8022C35.6737 14.4252 35.4515 15.1577 35.4515 15.9071C35.4576 16.91 35.8587 17.8702 36.5679 18.5794C37.2771 19.2886 38.2373 19.6897 39.2403 19.6958Z" fill="#39A8EF"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

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