Merge branch 'AliasIO:master' into sveltekit-patch

main
baseplate-admin 3 years ago committed by GitHub
commit 54d2777a61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,10 +2,10 @@
[![wappalyzer NPM](https://img.shields.io/badge/npm-wappalyzer-blue)](https://www.npmjs.com/package/wappalyzer)
[![wappalyzer-core NPM](https://img.shields.io/badge/npm-wappalyzer--core-blue)](https://www.npmjs.com/package/wappalyzer-core)
[![Github Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&link=https://github.com/sponsors/AliasIO)](https://github.com/sponsors/AliasIO)
<a href="https://www.wappalyzer.com/?utm_source=readme&utm_medium=github&utm_campaign=wappalyzer"><img src="https://www.wappalyzer.com/images/logo/icon_192.png" height="72" alt="Wappalyzer" align="left" /></a>
# Wappalyzer
# Wappalyzer
<br>
@ -38,14 +38,14 @@ node src/drivers/npm/cli.js https://example.com
### Chrome extension
* Go go `about:extensions`
* Go to `about:extensions`
* Enable 'Developer mode'
* Click 'Load unpacked'
* Select `src/drivers/webextension`
### Firefox extension
* Go go `about:debugging#/runtime/this-firefox`
* Go to `about:debugging#/runtime/this-firefox`
* Click 'Load Temporary Add-on'
* Select `src/drivers/webextension/manifest.json`
@ -247,7 +247,7 @@ Plus any of:
<td>String | Array</td>
<td>
The presence of one application can imply the presence of
another, e.g. WordpPress means PHP is also in use.
another, e.g. WordPress means PHP is also in use.
</td>
<td><code>"PHP"</code></td>
</tr>
@ -255,10 +255,10 @@ Plus any of:
<td><code>requires</code></td>
<td>String | Array</td>
<td>
Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS.
Similar to implies but detection only runs if the required technology has been identified. Useful for themes for a specific CMS.
</td>
<td><code>"WordPress"</code></td>
</tr>
</tr>
<tr>
<td><code>requiresCategory</code></td>
<td>String | Array</td>
@ -266,7 +266,7 @@ Plus any of:
Similar to requires; detection only runs if a technology in the required category has been identified.
</td>
<td><code>"Ecommerce"</code></td>
</tr>
</tr>
<tr>
<td><code>excludes</code></td>
<td>String | Array</td>
@ -387,7 +387,7 @@ Plus any of:
</tr>
<tr>
<td><code>xhr</code></td>
<td>String</td>
<td>String | Array</td>
<td>Hostnames of XHR requests.</td>
<td><code>"cdn\\.netlify\\.com"</code></td>
</tr>

@ -691,5 +691,13 @@
],
"name": "Shopify apps",
"priority": 9
},
"101": {
"groups": [
6,
16
],
"name": "Recruitment & staffing",
"priority": 9
}
}

@ -23,6 +23,7 @@ const aliases = {
w: 'maxWait',
n: 'noScripts',
N: 'noRedirect',
e: 'extended',
}
while (true) {
@ -77,6 +78,7 @@ Options:
-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
`)
process.exit(1)

@ -280,6 +280,7 @@ class Driver {
noScripts: false,
userAgent:
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',
extended: false,
...options,
}
@ -293,6 +294,7 @@ class Driver {
this.options.htmlMaxCols = parseInt(this.options.htmlMaxCols, 10)
this.options.htmlMaxRows = parseInt(this.options.htmlMaxRows, 10)
this.options.noScripts = Boolean(+this.options.noScripts)
this.options.extended = Boolean(+this.options.extended)
this.destroyed = false
}
@ -990,6 +992,34 @@ class Site {
this.error(error)
}
const patterns = this.options.extended
? this.detections.reduce(
(
patterns,
{
technology: { name, implies, excludes },
pattern: { regex, value, match, confidence, type, version },
}
) => {
patterns[name] = patterns[name] || []
patterns[name].push({
type,
regex: regex.source,
value: value.length <= 250 ? value : null,
match: match.length <= 250 ? match : null,
confidence,
version,
implies: implies.map(({ name }) => name),
excludes: excludes.map(({ name }) => name),
})
return patterns
},
{}
)
: undefined
const results = {
urls: this.analyzedUrls,
technologies: resolve(this.detections).map(
@ -1017,6 +1047,7 @@ class Site {
})),
})
),
patterns,
}
await this.emit('analyze', results)

@ -13,7 +13,7 @@
"software"
],
"homepage": "https://www.wappalyzer.com/",
"version": "6.9.12",
"version": "6.9.14",
"author": "Wappalyzer",
"license": "MIT",
"repository": {

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -191,5 +191,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -195,5 +195,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -193,5 +193,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -195,5 +195,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -195,5 +195,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -193,5 +193,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -195,5 +195,6 @@
"categoryName97": { "message": "Платформа клиентских данных" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Службы доставки" },
"categoryName100": { "message": "Приложении для Shopify" }
"categoryName100": { "message": "Приложении для Shopify" },
"categoryName101": { "message": "Подбор персонала" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -193,5 +193,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -197,5 +197,6 @@
"categoryName97": { "message": "Customer data platform" },
"categoryName98": { "message": "Cart abandonment" },
"categoryName99": { "message": "Shipping carriers" },
"categoryName100": { "message": "Shopify apps" }
"categoryName100": { "message": "Shopify apps" },
"categoryName101": { "message": "Recruitment & staffing" }
}

@ -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="M19.7647 0.446639L11.2273 4.15455L13.8378 0.146C14.545 0.0503999 15.2666 0 16.0001 0C17.2969 0 18.5573 0.15544 19.7647 0.446639ZM31.8541 18.1622L27.8455 20.7728L31.5534 12.2354C31.8446 13.4428 32 14.7032 32 16C32 16.7334 31.9496 17.455 31.8541 18.1622ZM0.07272 14.4758L5.9032 17.0081L0.36608 19.413C0.12712 18.313 0 17.1714 0 16C0 15.4858 0.02528 14.9776 0.07272 14.4758ZM12.5871 31.6339L14.9919 26.0968L17.5243 31.9273C17.0225 31.9747 16.5142 32 16.0001 32C14.8286 32 13.687 31.8729 12.5871 31.6339Z" fill="#2962FF"/>
<path d="M2.21027 13.8273L5.96414 8.06322L4.40623 5.67096C4.94388 5.07444 5.52579 4.5186 6.14712 4.0088L15.4821 8.06322L2.21027 13.8273ZM18.7806 30.3976L24.5448 17.1258L28.599 26.4608C28.0893 27.082 27.5335 27.664 26.9369 28.2017L24.5448 26.6438L18.7806 30.3976ZM24.5447 8.06322L17.8144 6.64173L25.7394 3.51611C27.0163 4.46098 28.147 5.59165 29.0918 6.8685L25.9662 14.7934L24.5447 8.06322ZM6.44649 28.9275L5.96409 26.6438L3.68039 26.1614C3.15598 25.4902 2.68439 24.7755 2.27118 24.0243L12.6944 19.9135L8.58355 30.3367C7.8323 29.9235 7.11779 29.452 6.44649 28.9275Z" fill="#F44336"/>
<path d="M16.452 23.7513L15.0429 17.021L8.37122 15.5995L21.7144 10.2908L16.452 23.7513Z" fill="#0041F2"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@ -1 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g><path fill="#86addb" d="M281.313,453.477c-1.355,0-2.71,0-4.065,0c-5.2-0.969-8.31-4.916-11.308-8.592c-10.631-13.035-21.389-25.966-32.122-38.914c-15.775-19.032-31.576-38.042-47.344-57.079c-1.988-2.4-2.659-2.461-4.802-0.099c-4.776,5.264-9.381,10.683-14.408,15.716c-2.895,2.899-6.17,5.292-9.746,7.263c-6.251,3.446-13.272,1.657-17.227-4.24c-2.922-4.357-5.042-9.103-6.672-14.033c-6.558-19.83-12.975-39.71-19.063-59.686c-2.584-8.478-7.191-14.676-14.72-19.356c-28.572-17.762-57.001-35.753-85.476-53.671c-3.35-2.108-6.615-4.321-9.202-7.397c-4.806-5.715-3.741-13.997,2.243-18.376c3.644-2.666,7.757-4.098,12.019-5.266c2.504-0.686,5.056-1.188,7.538-1.972c17.096-4.661,34.205-9.258,51.283-13.978c21.314-5.891,42.647-11.722,63.992-17.505c17.316-4.692,34.613-9.475,51.925-14.188c18.837-5.128,37.715-10.113,56.554-15.232c22.324-6.066,44.71-11.901,66.997-18.11c14.128-3.936,28.344-7.576,42.499-11.428c18.293-4.978,36.574-10.007,54.878-14.941c25.062-6.755,50.064-13.725,75.133-20.455c3.048-0.818,6.2-0.866,9.275-1.454c0.452,0,0.903,0,1.355,0c2.434,0.613,5.061,0.4,7.052,2.6c1.764,1.95,3.023,3.895,2.765,6.592c0,2.352,0.001,4.703,0.001,7.052c0.177,1.874-0.341,3.499-1.441,5.066c-16.951,24.152-30.808,50.189-45.898,75.474c-10.236,17.151-20.366,34.366-30.573,51.534c-20.068,33.755-40.026,67.575-60.132,101.307c-17.851,29.949-35.58,59.971-53.083,90.125c-7.986,13.759-16.369,27.275-24.485,40.953c-1.441,2.428-3.142,4.686-4.886,6.907C287.888,450.995,285.262,453.322,281.313,453.477z"/></g></svg>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.5819 28.3423C17.4972 28.3423 17.4126 28.3423 17.3279 28.3423C17.0029 28.2818 16.8085 28.0351 16.6211 27.8053C15.9567 26.9906 15.2843 26.1825 14.6135 25.3732C13.6276 24.1837 12.64 22.9956 11.6545 21.8058C11.5303 21.6558 11.4883 21.652 11.3544 21.7996C11.0559 22.1286 10.7681 22.4673 10.4539 22.7818C10.2729 22.963 10.0683 23.1126 9.84475 23.2358C9.45407 23.4511 9.01525 23.3393 8.76807 22.9708C8.58544 22.6985 8.45294 22.4018 8.35107 22.0937C7.94119 20.8543 7.54013 19.6118 7.15963 18.3633C6.99813 17.8335 6.71019 17.4461 6.23963 17.1536C4.45388 16.0435 2.67707 14.919 0.897382 13.7991C0.688007 13.6674 0.483945 13.5291 0.322258 13.3368C0.0218827 12.9796 0.0884452 12.462 0.462445 12.1883C0.690195 12.0217 0.947257 11.9322 1.21363 11.8592C1.37013 11.8163 1.52963 11.785 1.68476 11.736C2.75326 11.4446 3.82257 11.1573 4.88994 10.8623C6.22207 10.4941 7.55538 10.1297 8.88944 9.76827C9.97169 9.47502 11.0528 9.17608 12.1348 8.88152C13.3121 8.56102 14.4919 8.24946 15.6694 7.92952C17.0646 7.5504 18.4637 7.18571 19.8567 6.79765C20.7397 6.55165 21.6282 6.32415 22.5129 6.0834C23.6562 5.77227 24.7987 5.45796 25.9427 5.14959C27.5091 4.7274 29.0717 4.29177 30.6386 3.87115C30.8291 3.82002 31.0261 3.81702 31.2182 3.78027C31.2465 3.78027 31.2747 3.78027 31.3029 3.78027C31.4551 3.81859 31.6192 3.80527 31.7437 3.94277C31.8539 4.06465 31.9326 4.18621 31.9165 4.35477C31.9165 4.50177 31.9166 4.64871 31.9166 4.79552C31.9276 4.91265 31.8952 5.01421 31.8265 5.11215C30.7671 6.62165 29.901 8.24896 28.9579 9.82927C28.3181 10.9012 27.685 11.9771 27.0471 13.0501C25.7928 15.1598 24.5454 17.2736 23.2888 19.3818C22.1731 21.2536 21.0651 23.13 19.9711 25.0146C19.472 25.8746 18.9481 26.7193 18.4408 27.5742C18.3507 27.726 18.2444 27.8671 18.1354 28.0059C17.9929 28.1872 17.8287 28.3326 17.5819 28.3423Z" fill="#86ADDB"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

@ -0,0 +1,34 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.95507 2.00422C1.92641 2.00422 1.89776 2.00422 1.86738 2.00641C1.81991 2.00768 1.79679 2.00932 1.77368 2.01132C1.72621 2.01569 1.69812 2.01906 1.67023 2.02306C1.62811 2.02961 1.60633 2.03334 1.58456 2.03753C1.53269 2.04763 1.50575 2.05336 1.4791 2.05991C1.44672 2.0681 1.42265 2.07465 1.39887 2.08147C1.35369 2.09539 1.33459 2.10158 1.31548 2.10795C1.26868 2.12415 1.24442 2.13325 1.22035 2.14289C1.17794 2.16045 1.16132 2.16755 1.1447 2.17483L1.11604 2.18766C1.09694 2.19675 1.07784 2.20585 1.05873 2.21495L1.0275 2.23133C1.01174 2.23979 0.995979 2.24825 0.980505 2.25699L0.949558 2.275L0.910873 2.29875L0.882218 2.31731C0.863115 2.32987 0.844011 2.3427 0.824908 2.3558L0.791382 2.38119L0.761007 2.40384L0.72834 2.42923L0.699685 2.45298C0.680582 2.46844 0.662338 2.48428 0.644954 2.50047L0.621457 2.52176C0.610186 2.53214 0.599106 2.54269 0.588217 2.55343L0.567872 2.57363C0.544565 2.5971 0.521928 2.62112 0.499959 2.64569C0.482479 2.66561 0.47159 2.67817 0.460988 2.691L0.445514 2.70983C0.434912 2.72294 0.424309 2.73713 0.41428 2.74914C0.386389 2.78635 0.366713 2.81365 0.3478 2.84113L0.336911 2.85723C0.32736 2.87161 0.317808 2.88617 0.308256 2.90091L0.29794 2.91783L0.289917 2.93148L4.07411 5.14578L4.87531 6.00043C4.79155 5.87373 4.78438 5.71428 4.85646 5.58123C4.92854 5.44817 5.06911 5.36135 5.22605 5.35296H18.1197C18.1653 5.35624 18.2108 5.35842 18.2572 5.35842C19.2184 5.34481 19.9908 4.60016 19.9936 3.68453C19.9964 2.76889 19.2286 2.01995 18.2676 2.00098L1.95507 2.00422Z" fill="url(#paint0_linear_2598_21)"/>
<path d="M22.7375 13.3152L16.3445 24.3257C16.2686 24.4547 16.1315 24.536 15.9812 24.5409C15.831 24.5459 15.6887 24.4739 15.6044 24.3501L11.5422 17.3553C11.5088 17.2756 11.4696 17.1985 11.4247 17.1247L4.66659 5.45884C4.27791 4.75991 4.27621 3.91174 4.66208 3.21127C5.04796 2.51081 5.76767 2.05562 6.56924 2.00506L1.98092 2.00085C1.69394 1.99226 1.40877 2.04882 1.14706 2.16624C1.10452 2.18571 1.07091 2.20218 1.03778 2.21959C0.949116 2.26854 0.928409 2.28118 0.907889 2.29428L0.808493 2.36167C0.757383 2.39995 0.741758 2.41231 0.726322 2.42485C0.686883 2.4578 0.672765 2.47015 0.658834 2.48269C0.623255 2.51499 0.605183 2.53239 0.587676 2.55008C0.553038 2.58518 0.537413 2.60184 0.522164 2.61888C0.495621 2.64836 0.478396 2.66886 0.461454 2.68964C0.430392 2.72755 0.414579 2.74833 0.399049 2.76939C0.379565 2.79578 0.363752 2.81909 0.348221 2.84267C0.321113 2.88423 0.306147 2.90838 0.291746 2.93337C-0.096377 3.5294 -0.0882764 4.25297 0.262661 4.83323L0.42898 5.12188L14.3027 29.0175C14.4389 29.2688 14.631 29.4859 14.8643 29.6524C14.9024 29.6792 14.9336 29.6999 14.9654 29.7198C15.0534 29.7702 15.0748 29.7817 15.0964 29.7928L15.2037 29.8436C15.2629 29.8685 15.2817 29.8758 15.3006 29.8829C15.349 29.9 15.3668 29.906 15.3847 29.9118C15.4307 29.9262 15.4547 29.9329 15.479 29.9393C15.5272 29.9512 15.5495 29.9564 15.5719 29.9613C15.6106 29.9694 15.6372 29.9739 15.6637 29.9781C15.7123 29.9851 15.7383 29.9888 15.7645 29.9913C15.7978 29.9941 15.8261 29.9961 15.8543 29.9978C15.9037 29.9978 15.932 30 15.9602 30C15.9992 30 16.0229 30 16.0463 29.9983C16.0966 29.9969 16.1223 29.9949 16.1488 29.9921C16.1819 29.9893 16.2101 29.9857 16.2361 29.9817C16.283 29.9744 16.307 29.9702 16.3307 29.9655C16.3677 29.9582 16.3934 29.952 16.4191 29.9458C16.4645 29.9339 16.4853 29.928 16.506 29.9217C16.5473 29.909 16.571 29.9009 16.5947 29.8925C16.6401 29.876 16.6571 29.8692 16.674 29.8621C16.7201 29.8428 16.7415 29.8332 16.7627 29.8239L16.8339 29.7883C16.8909 29.7574 16.9064 29.7487 16.9214 29.7397C17.008 29.685 17.0304 29.6698 17.0524 29.6541C17.0733 29.6391 17.0984 29.6203 17.1275 29.5976C17.1703 29.5639 17.2114 29.5285 17.2509 29.4912C17.3021 29.4427 17.3418 29.4013 17.3794 29.3581C17.4221 29.3092 17.459 29.2624 17.4938 29.2138C17.529 29.1645 17.5617 29.1136 17.592 29.061L17.9676 28.4217L18.0495 28.2813L25.7295 15.0558C26.0641 14.5242 26.082 13.8539 25.7764 13.3053C25.4708 12.7567 24.8899 12.4163 24.2592 12.4164C23.6254 12.4179 23.0417 12.7619 22.7375 13.3152Z" fill="url(#paint1_linear_2598_21)"/>
<path d="M30.1374 2H23.6784C22.7431 2.01832 21.9937 2.84716 21.9937 3.86331C21.9937 4.87946 22.7431 5.7083 23.6784 5.72662C23.7236 5.72662 23.768 5.7242 23.8123 5.72056H26.7369C26.9512 5.7525 27.1109 5.95132 27.111 6.18624C27.111 6.23951 27.1026 6.29239 27.0861 6.34258L25.5442 9.24358C25.0904 10.1472 25.397 11.2792 26.2288 11.7721C27.0607 12.265 28.1029 11.932 28.5567 11.0284L31.7465 5.02796C31.7757 4.97322 31.8026 4.91686 31.8271 4.8589L31.8302 4.85132C31.8453 4.81517 31.8594 4.77851 31.8726 4.74134L31.8748 4.73558C31.8807 4.71862 31.8865 4.70135 31.8921 4.68408L31.9005 4.65742C31.9079 4.63338 31.9149 4.60904 31.9214 4.5844C31.9253 4.57046 31.9289 4.55622 31.9326 4.54228C31.9362 4.52835 31.939 4.51532 31.942 4.50199C31.9451 4.48866 31.9496 4.46715 31.9532 4.44957C31.9557 4.43715 31.9582 4.42473 31.9605 4.41231C31.9647 4.38867 31.9686 4.36484 31.9722 4.3408C31.9737 4.33091 31.9751 4.32081 31.9764 4.31051C31.9797 4.28506 31.9828 4.2593 31.9853 4.23355C31.9853 4.22991 31.9853 4.22658 31.9853 4.22295C31.9881 4.19265 31.99 4.16235 31.9914 4.13387C31.9914 4.12619 31.9914 4.11842 31.9914 4.11054C31.9914 4.08024 31.9937 4.04995 31.9937 4.01965C31.9944 2.90518 31.1634 2.001 30.1374 2Z" fill="url(#paint2_linear_2598_21)"/>
<path d="M19.8815 9.40978C19.732 9.1562 19.4555 8.99998 19.1563 9H12.831C12.5319 8.99992 12.2554 9.15608 12.1058 9.40962C11.9562 9.66316 11.9563 9.97555 12.1059 10.2291L15.2688 15.5904C15.4184 15.8439 15.6948 16 15.9938 16C16.2929 16 16.5693 15.8439 16.7188 15.5904L19.8815 10.2294C20.031 9.97587 20.031 9.66356 19.8815 9.41007V9.40978Z" fill="url(#paint3_linear_2598_21)"/>
<defs>
<linearGradient id="paint0_linear_2598_21" x1="0.290705" y1="4.00042" x2="20.0194" y2="4.00042" gradientUnits="userSpaceOnUse">
<stop stop-color="#6500FF"/>
<stop offset="0.16" stop-color="#6A09FF"/>
<stop offset="0.43" stop-color="#7623FF"/>
<stop offset="0.77" stop-color="#8A4CFF"/>
<stop offset="0.99" stop-color="#996BFF"/>
</linearGradient>
<linearGradient id="paint1_linear_2598_21" x1="12.9979" y1="30.0034" x2="12.9979" y2="2" gradientUnits="userSpaceOnUse">
<stop stop-color="#6500FF"/>
<stop offset="0.16" stop-color="#6909FF"/>
<stop offset="0.43" stop-color="#7523FF"/>
<stop offset="0.77" stop-color="#894CFF"/>
<stop offset="0.99" stop-color="#976BFF"/>
</linearGradient>
<linearGradient id="paint2_linear_2598_21" x1="26.9791" y1="12.0255" x2="26.9791" y2="2" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF6E06"/>
<stop offset="0.28" stop-color="#FF770C"/>
<stop offset="0.75" stop-color="#FF911C"/>
<stop offset="1" stop-color="#FFA126"/>
</linearGradient>
<linearGradient id="paint3_linear_2598_21" x1="4600.07" y1="4199.2" x2="4600.07" y2="2460.61" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF6E06"/>
<stop offset="0.28" stop-color="#FF770C"/>
<stop offset="0.75" stop-color="#FF911C"/>
<stop offset="1" stop-color="#FFA126"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,22 @@
<svg width="57" height="57" viewBox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4_13)">
<path d="M28.0065 56.013C43.4741 56.013 56.013 43.4741 56.013 28.0065C56.013 12.5389 43.4741 0 28.0065 0C12.5389 0 0 12.5389 0 28.0065C0 43.4741 12.5389 56.013 28.0065 56.013Z" fill="#00243F"/>
<path d="M23.0217 15.0928L33.6009 36.6099H43.8472L33.028 15.0928H23.0217Z" fill="url(#paint0_linear_4_13)"/>
<path d="M33.0257 15.0928L22.4466 36.6099H12.2002L23.0194 15.0928H33.0257Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_4_13" x1="44.8098" y1="35.4744" x2="21.9821" y2="16.2829" gradientUnits="userSpaceOnUse">
<stop offset="0.00217554" stop-color="#4FBFA2"/>
<stop offset="0.2202" stop-color="#4EBEA4"/>
<stop offset="0.3471" stop-color="#49BBA8"/>
<stop offset="0.4505" stop-color="#3FB8AF"/>
<stop offset="0.5414" stop-color="#2CB3BA"/>
<stop offset="0.6241" stop-color="#00AEC7"/>
<stop offset="0.6997" stop-color="#00A7D6"/>
<stop offset="0.7333" stop-color="#00A3E0"/>
</linearGradient>
<clipPath id="clip0_4_13">
<rect width="56.01" height="56.01" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -1,36 +0,0 @@
<?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" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1296px" height="936px" viewBox="0 0 1296 936" enable-background="new 0 0 1296 936" xml:space="preserve">
<g>
<g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="648.0005" y1="934.1094" x2="648.0004" y2="1.8911">
<stop offset="0" style="stop-color:#7ACCD5"/>
<stop offset="1" style="stop-color:#46B685"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M648.004,934.109c-257.021,0-466.117-209.093-466.117-466.113
c0-257.013,209.097-466.105,466.117-466.105c257.01,0,466.109,209.092,466.109,466.105
C1114.113,725.017,905.014,934.109,648.004,934.109z M648.004,27.393c-242.962,0-440.615,197.649-440.615,440.604
c0,242.95,197.653,440.619,440.615,440.619c242.95,0,440.607-197.669,440.607-440.619
C1088.611,225.042,890.954,27.393,648.004,27.393z"/>
</g>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="347.7788" y1="657.2461" x2="649.5283" y2="375.8602">
<stop offset="0" style="stop-color:#242424"/>
<stop offset="0.3465" style="stop-color:#202020"/>
<stop offset="0.6628" style="stop-color:#151515"/>
<stop offset="0.9665" style="stop-color:#030303"/>
<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="648.012,468.004 550.721,269.903 356.029,666.094 550.721,666.094 "/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="692.0781" y1="237.2676" x2="798.6146" y2="698.7279">
<stop offset="0" style="stop-color:#7ACCD5"/>
<stop offset="1" style="stop-color:#46B685"/>
</linearGradient>
<polygon fill="url(#SVGID_3_)" points="550.721,269.903 745.295,269.903 939.971,666.094 745.295,666.094 "/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 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 fill-rule="evenodd" clip-rule="evenodd" d="M18.708 22.5633C16.6415 22.5633 14.8929 20.9339 14.8929 18.7518C14.8929 16.5682 16.3674 14.7748 18.7449 14.7748C21.1229 14.7748 22.524 16.6976 22.524 18.7114C22.524 20.9024 21.0417 22.5633 18.708 22.5633ZM12.6158 15.3339L11.8855 12.9416C11.45 11.6833 11.321 10.9588 10.0932 9.66255C9.67239 9.21766 8.08083 8.2393 8.27867 8.45288C10.2959 10.6306 11.3274 13.2684 11.7251 14.0012C11.3594 13.5573 10.9313 13.1592 10.4426 12.6631C10.0262 12.2408 9.59168 11.8599 9.17878 11.605C8.90712 11.4367 8.75456 11.3437 8.47848 11.201C7.23584 10.5553 6.0311 10.1645 5.56849 10.0489C5.00352 9.90813 4.44692 9.87171 4.44692 9.87171C4.44692 9.87171 6.24764 11.3919 7.0193 12.3599C7.79097 13.3275 8.57838 14.1946 9.44847 14.5494C10.3186 14.9043 10.6212 15.0056 11.3058 15.1095C11.8959 15.1986 12.6158 15.3339 12.6158 15.3339ZM18.8733 13.2143C16.9693 13.2143 15.9481 13.8678 15.2325 14.5785L15.0371 14.7832L15.0366 8.40121H13.3914V18.8458C13.3914 22.0599 15.8669 24.0624 18.7075 24.0624C21.8369 24.0624 24.2056 21.6544 24.2056 18.5588C24.2061 15.6848 21.7351 13.2143 18.8733 13.2143ZM32 16.0002C32 24.8365 24.8365 32 16.0002 32C7.16399 32 0 24.8365 0 16.0002C0 7.16399 7.1635 0 15.9998 0C24.836 0 32 7.1635 32 16.0002Z" fill="#73C41D"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 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="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="#FFD500"/>
<path d="M19.2435 12.6779L18.4594 14.6715C18.879 14.9398 19.2233 15.3112 19.4595 15.7505C19.6957 16.1897 19.8161 16.6822 19.8092 17.1813C19.7934 17.7358 19.6165 18.2736 19.3003 18.7287C18.9841 19.1838 18.5423 19.5365 18.0291 19.7435C17.5159 19.9505 16.9536 20.0027 16.4112 19.8939C15.8688 19.785 15.3699 19.5197 14.9757 19.1306C14.5815 18.7415 14.3091 18.2455 14.1919 17.7033C14.0748 17.1612 14.1179 16.5966 14.3162 16.0787C14.5144 15.5608 14.859 15.1123 15.3078 14.788C15.7566 14.4637 16.29 14.2778 16.8426 14.2532L17.5792 12.2094C16.8794 12.0961 16.1635 12.1362 15.4807 12.3271C14.7979 12.5179 14.1644 12.8548 13.6239 13.3147C13.0834 13.7746 12.6487 14.3465 12.3497 14.9911C12.0508 15.6356 11.8947 16.3374 11.8922 17.0483H11.8863V22.1917H14.1288V21.3852C14.9775 21.9214 15.9622 22.2013 16.9652 22.1917C17.6304 22.2112 18.2926 22.0957 18.9121 21.8521C19.5316 21.6085 20.0956 21.2417 20.5702 20.774C21.0447 20.3062 21.4201 19.747 21.6737 19.13C21.9273 18.5131 22.0538 17.8511 22.0458 17.1838C22.0598 16.2421 21.803 15.3163 21.306 14.5172C20.809 13.7181 20.093 13.0795 19.2435 12.6779V12.6779Z" fill="#002840"/>
<path d="M11.8863 12.4327C12.525 11.7822 13.2861 11.2653 14.1255 10.9118V7.69171H11.8863V12.4327Z" fill="#002840"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1004 B

@ -1,3 +1,3 @@
<svg width="42" height="64" viewBox="0 0 42 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 44L3.81818 16L19.0909 0L38.1818 20L26.7273 32L42 48L19.0909 64L0 44Z" fill="#00D1B2"/>
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 44L14.8182 16L30.0909 0L49.1818 20L37.7273 32L53 48L30.0909 64L11 44Z" fill="#00D1B2"/>
</svg>

Before

Width:  |  Height:  |  Size: 242 B

After

Width:  |  Height:  |  Size: 244 B

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 550"><defs><style>.cls-1{fill:#f16334;}</style></defs><circle class="cls-1" cx="742.67" cy="412.51" r="14.65"/><circle class="cls-1" cx="704.94" cy="412.51" r="14.65"/><circle class="cls-1" cx="669.29" cy="412.51" r="14.65"/><circle class="cls-1" cx="488.56" cy="412.51" r="14.65"/><circle class="cls-1" cx="89.9" cy="225.67" r="14.65"/><path class="cls-1" d="M850,224.67a63.3,63.3,0,0,0-85-84.24,113.46,113.46,0,0,0-225.28,19.25,10.78,10.78,0,1,0,21.56,0,91.9,91.9,0,1,1,183.8,0c0,.06,0,.12,0,.18a10.77,10.77,0,0,0,18.39,7.82,41.75,41.75,0,1,1,59,59,10.79,10.79,0,0,0,7.62,18.41,9.4,9.4,0,0,1,2.29,0,118.33,118.33,0,1,1,0,236.65H38a10.79,10.79,0,0,0,0,21.57H832.41A139.9,139.9,0,0,0,972.29,363.46C972.29,292.28,918.86,233.35,850,224.67Z"/><path class="cls-1" d="M704.94,262.36H653.6v.08a10.39,10.39,0,0,0-2.09.11,6.72,6.72,0,0,0-2,.64,6.08,6.08,0,0,0-1.83,1,7,7,0,0,0-1.62,1.4,9.48,9.48,0,0,0-2.37,3.46,10.67,10.67,0,0,0-.86,4.09,10.26,10.26,0,0,0,.86,4.1,8.92,8.92,0,0,0,2.37,3.56,10.61,10.61,0,0,0,7.55,3.12h0v0h51.34a40.61,40.61,0,0,1,40.56,40.56V365H603.3a40.61,40.61,0,0,1-40.56-40.56V222c0-.06,0-.12,0-.18a10.81,10.81,0,0,0-15-9.91,10.54,10.54,0,0,0-3.45,2.26,10.85,10.85,0,0,0-3.13,7.65h0V324.48a62.17,62.17,0,0,0,61.08,62.07v.05H757.32v-.21a10.67,10.67,0,0,0,9.74-10.57V324.48A62.19,62.19,0,0,0,704.94,262.36Z"/><path class="cls-1" d="M507.25,265.56a11,11,0,0,0-3.55-2.37,10.36,10.36,0,0,0-6.26-.64,7,7,0,0,0-1.94.64,8.58,8.58,0,0,0-1.94,1,18.51,18.51,0,0,0-1.61,1.4,10.61,10.61,0,0,0-2.27,3.46,9,9,0,0,0-.86,4.09v0h0v51.34A40.61,40.61,0,0,1,448.23,365H408.72V324.48h.07a62.19,62.19,0,0,0-61.67-62.1v0H295.78a40.49,40.49,0,0,1-38.92-29.77H397.43v0a13.53,13.53,0,0,0,4.16-.75,11.07,11.07,0,0,0,5.82-5.93,11.41,11.41,0,0,0,0-8.19,12.62,12.62,0,0,0-2.36-3.56,10.76,10.76,0,0,0-7.62-3V211H243.93v.15a11.2,11.2,0,0,0-3.63.71,10.54,10.54,0,0,0-3.45,2.26,11,11,0,0,0-3.23,7.65c0,.08,0,.15,0,.23a62.18,62.18,0,0,0,62.11,61.9h50.89a40.61,40.61,0,0,1,40.56,40.56h-.07V365H243.92a40.61,40.61,0,0,1-40.56-40.56V221.8h0a10.84,10.84,0,0,0-3.12-7.65,10.58,10.58,0,0,0-3.46-2.26,11,11,0,0,0-8.3,0,10.54,10.54,0,0,0-3.45,2.26,11,11,0,0,0-3.23,7.65c0,.06,0,.1,0,.15V324.48a62.2,62.2,0,0,0,62.13,62.12H448.23a62.2,62.2,0,0,0,62.13-62.12V273.21s0-.06,0-.1A10.91,10.91,0,0,0,507.25,265.56Z"/><path class="cls-1" d="M151.46,221.79a10.84,10.84,0,0,0-3.12-7.65,10.54,10.54,0,0,0-3.45-2.26,11,11,0,0,0-8.3,0,12.2,12.2,0,0,0-3.56,2.26,11.34,11.34,0,0,0-3.13,7.65c0,.06,0,.1,0,.15V324.48A40.6,40.6,0,0,1,89.38,365H48.81V221.84a.43.43,0,0,0,0-.05,11.33,11.33,0,0,0-3.12-7.65,12.33,12.33,0,0,0-3.56-2.26,10.76,10.76,0,0,0-8.19,0,9.87,9.87,0,0,0-3.56,2.26,11.34,11.34,0,0,0-3.13,7.65h0v154h0v0a10.62,10.62,0,0,0,3.13,7.55A10.77,10.77,0,0,0,34,385.78a10.52,10.52,0,0,0,4.08.76v.06H89.38a62.19,62.19,0,0,0,62.12-62.12V221.8h0Z"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@ -0,0 +1,10 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32C24.8366 32 32 24.8366 32 16Z" fill="url(#paint0_linear_2582_91)"/>
<path d="M8.6609 16.6833L19.5673 5.85199C19.771 5.64964 20.099 5.89588 19.9614 6.14795L15.9021 13.5879C15.8115 13.7538 15.9316 13.9562 16.1206 13.9562H23.1357C23.3617 13.9562 23.4708 14.233 23.3056 14.3873L11.0126 25.8602C10.7922 26.0659 10.4641 25.7761 10.6411 25.532L16.4603 17.5042C16.5796 17.3396 16.462 17.109 16.2587 17.109H8.83637C8.61411 17.109 8.50319 16.84 8.6609 16.6833V16.6833Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_2582_91" x1="16" y1="0" x2="16" y2="32" gradientUnits="userSpaceOnUse">
<stop stop-color="#7BCBD4"/>
<stop offset="1" stop-color="#29C6B7"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 879 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,8 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.8342 2.66841C10.4234 4.84788 9.89089 8.06449 9.61703 11.3262C9.13015 17.098 9.43445 20.9459 9.43445 20.9459L1.23365 28.6568C1.23365 28.6568 0.594629 24.3279 0.275118 19.4579C0.0773247 16.4517 0.0164661 13.7913 0.00125122 12.1829C0.00125122 12.0928 0.046895 12.0026 0.046895 11.9124C0.046895 11.8072 0.183829 10.725 1.24887 9.73292C2.42041 8.63566 10.9559 2.02208 10.8342 2.66841Z" fill="#1496FF"/>
<path d="M10.8342 2.6684C10.4234 4.84788 9.89089 8.06448 9.61703 11.3262C9.61703 11.3262 0.53377 10.259 0.00125122 12.4234C0.00125122 12.3182 0.1534 10.9955 1.21844 9.98843C2.38998 8.87615 10.9559 2.02207 10.8342 2.6684Z" fill="#1284EA"/>
<path d="M0.00125043 11.9124C0.00125043 12.0627 0.00125043 12.228 0.00125043 12.4084C0.0925394 12.0176 0.244687 11.732 0.579413 11.3262C1.24887 10.4845 2.34433 10.259 2.78556 10.1989C5.00693 9.91329 8.29333 9.55255 11.595 9.46236C17.4527 9.28199 21.3172 9.76298 21.3172 9.76298L29.518 2.05214C29.518 2.05214 25.2122 1.24047 20.2978 0.669302C17.0875 0.29353 14.2575 0.0981286 12.6752 0.00794338C12.5687 0.00794338 11.4276 -0.142365 10.3625 0.864703C9.19101 1.96196 3.31808 7.46326 0.959784 9.68783C-0.0748245 10.6799 0.00125043 11.8072 0.00125043 11.9124Z" fill="#B4DC00"/>
<path d="M29.2289 21.7576C27.0076 22.0582 23.7364 22.419 20.4196 22.5242C14.5618 22.7196 10.6821 22.2386 10.6821 22.2386L2.46605 29.9494C2.46605 29.9494 6.81749 30.7912 11.7167 31.3473C14.714 31.693 17.3918 31.8734 19.0046 31.9636C19.1111 31.9636 19.3089 31.8734 19.4154 31.8734C19.5219 31.8734 20.663 31.678 21.728 30.6709C22.9148 29.5737 29.8832 21.6825 29.2289 21.7576Z" fill="#6F2DA8"/>
<path d="M29.2289 21.7576C27.0076 22.0582 23.7364 22.419 20.4196 22.5242C20.4196 22.5242 21.0586 31.5427 18.8372 31.9485C18.9437 31.9485 20.45 31.8734 21.515 30.8814C22.6866 29.7841 29.8832 21.6825 29.2289 21.7576Z" fill="#591F91"/>
<path d="M19.3393 31.9936C19.1872 31.9786 19.0198 31.9786 18.8372 31.9636C19.248 31.8884 19.5219 31.7532 19.9631 31.4525C20.8456 30.8212 21.1347 29.7691 21.2107 29.3332C21.6063 27.1537 22.1236 23.9371 22.3975 20.6754C22.8691 14.9035 22.5649 11.0707 22.5649 11.0707L30.7656 3.35983C30.7656 3.35983 31.3742 7.64363 31.709 12.5136C31.922 15.7002 31.9828 18.4959 31.9981 20.0591C31.9981 20.1643 32.0893 21.2917 31.0243 22.2987C29.8528 23.396 23.995 28.9273 21.6367 31.1519C20.5869 32.1289 19.4458 31.9936 19.3393 31.9936Z" fill="#73BE28"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 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.5833 30.9953C7.11521 30.9953 0.250001 24.1307 0.250001 15.6625C0.250001 7.19429 7.11521 0.328704 15.5833 0.328704H27.0837C29.2011 0.328704 30.9166 2.04555 30.9166 4.1626V15.6625C30.9166 24.1307 24.0514 30.9953 15.5833 30.9953Z" fill="#7052CC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5597 14.0331C17.2269 14.0331 18.5779 12.6823 18.5779 11.0149C18.5779 9.34752 17.2269 7.9958 15.5597 7.9958C13.8916 7.9958 12.5406 9.34752 12.5406 11.0149C12.5406 12.6823 13.8916 14.0331 15.5597 14.0331ZM22.2353 19.4782C20.9115 21.7796 18.4288 23.33 15.5832 23.33C12.7534 23.33 10.2804 21.7966 8.95399 19.515C10.276 17.2127 12.7588 15.664 15.6034 15.664C18.434 15.664 20.9062 17.1974 22.2353 19.4782Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 830 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="M16.1529 12.459C15.9429 12.4632 15.7388 12.5293 15.5662 12.649C15.3936 12.7687 15.2602 12.9368 15.1828 13.132C15.1053 13.3272 15.0872 13.541 15.1307 13.7465C15.1742 13.952 15.2775 14.14 15.4275 14.2871C15.5775 14.4341 15.7675 14.5336 15.9738 14.5731C16.1802 14.6126 16.3935 14.5902 16.5872 14.5089C16.7809 14.4276 16.9462 14.2909 17.0625 14.116C17.1788 13.941 17.2408 13.7357 17.2409 13.5256C17.2409 13.3837 17.2126 13.2433 17.1577 13.1124C17.1028 12.9816 17.0223 12.8631 16.921 12.7637C16.8196 12.6644 16.6995 12.5863 16.5676 12.534C16.4357 12.4816 16.2947 12.4561 16.1529 12.459V12.459ZM12.1102 12.459C11.9002 12.4632 11.6961 12.5293 11.5235 12.649C11.3509 12.7687 11.2176 12.9368 11.1401 13.132C11.0626 13.3272 11.0445 13.541 11.088 13.7465C11.1316 13.952 11.2348 14.14 11.3848 14.2871C11.5348 14.4341 11.7249 14.5336 11.9312 14.5731C12.1375 14.6126 12.3509 14.5902 12.5445 14.5089C12.7382 14.4276 12.9035 14.2909 13.0198 14.116C13.1361 13.941 13.1982 13.7357 13.1982 13.5256C13.1983 13.3834 13.1699 13.2427 13.1147 13.1116C13.0596 12.9805 12.9787 12.8618 12.877 12.7624C12.7753 12.6631 12.6548 12.585 12.5225 12.5329C12.3902 12.4808 12.2488 12.4556 12.1067 12.459H12.1102ZM28.4444 13.8812C28.4472 11.5261 27.7816 9.21849 26.5249 7.22663C25.2683 5.23477 23.4722 3.64039 21.3454 2.62876C19.2186 1.61713 16.8484 1.22979 14.5102 1.51173C12.172 1.79367 9.96184 2.73333 8.13647 4.22152C6.31111 5.7097 4.94552 7.68532 4.19837 9.9188C3.45123 12.1523 3.35321 14.5519 3.91571 16.8389C4.47821 19.1259 5.67812 21.2063 7.37603 22.8384C9.07394 24.4705 11.2001 25.5873 13.5075 26.059V30.5959C13.5075 30.5959 18.6809 29.0847 24.3627 23.7407C28.416 19.9221 28.4409 14.4714 28.4409 14.4714C28.4373 14.2794 28.4409 14.0767 28.4409 13.8705L28.4444 13.8812ZM24.8391 14.0945C24.8391 14.0945 24.8391 17.8776 21.9947 20.5265C19.6108 22.7525 16.7325 24.3806 13.5964 25.2767V21.9132C12.0752 21.4324 10.7169 20.5396 9.67209 19.3339C8.62732 18.1281 7.93696 16.6566 7.67757 15.0824C7.41818 13.5082 7.59991 11.8929 8.20259 10.4157C8.80528 8.93854 9.80536 7.65715 11.0919 6.7137C12.3785 5.77025 13.9012 5.20161 15.4913 5.07085C17.0813 4.9401 18.6765 5.25233 20.0999 5.97293C21.5233 6.69353 22.7193 7.79432 23.5552 9.15322C24.3911 10.5121 24.8343 12.076 24.8355 13.6714C24.8355 13.8136 24.8355 13.9559 24.8355 14.0945H24.8391ZM19.8862 12.459C19.6762 12.4632 19.4721 12.5293 19.2995 12.649C19.1269 12.7687 18.9936 12.9368 18.9161 13.132C18.8386 13.3272 18.8205 13.541 18.864 13.7465C18.9076 13.952 19.0108 14.14 19.1608 14.2871C19.3108 14.4341 19.5009 14.5336 19.7072 14.5731C19.9135 14.6126 20.1269 14.5902 20.3205 14.5089C20.5142 14.4276 20.6795 14.2909 20.7958 14.116C20.9121 13.941 20.9742 13.7357 20.9742 13.5256C20.9742 13.3837 20.946 13.2433 20.891 13.1124C20.8361 12.9816 20.7556 12.8631 20.6543 12.7637C20.553 12.6644 20.4329 12.5863 20.301 12.534C20.1691 12.4816 20.0281 12.4561 19.8862 12.459V12.459Z" fill="#00BCD3"/>
</svg>

After

Width:  |  Height:  |  Size: 2.9 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="M16.0035 31.3548C11.9878 31.4136 8.71356 27.9693 8.78887 23.9896C8.82069 22.0754 9.60703 20.2511 10.9769 18.9137C12.3467 17.5762 14.1892 16.8336 16.1037 16.8476C19.9286 16.8579 23.131 20.1405 23.2001 23.9689C23.2733 28.0246 19.93 31.417 16.0035 31.3548V31.3548ZM21.9074 24.1472C21.9316 20.8598 19.3033 18.1762 16.0346 18.1513C12.7658 18.1265 10.1016 20.7699 10.074 24.0566C10.057 25.6363 10.668 27.1579 11.7727 28.2872C12.8773 29.4165 14.3852 30.0609 15.9648 30.0787C19.1976 30.1195 21.8832 27.4387 21.9074 24.1472ZM8.80338 9.38562C8.797 8.60083 8.94592 7.82253 9.24156 7.09553C9.5372 6.36853 9.97373 5.70719 10.526 5.14958C11.0783 4.59197 11.7354 4.14911 12.4595 3.8465C13.1837 3.54389 13.9605 3.38751 14.7453 3.38635C18.0065 3.38013 20.6928 6.07334 20.6976 9.35315C20.7031 12.6799 18.059 15.3731 14.7785 15.3828C11.4496 15.3918 8.81305 12.7442 8.80338 9.38562V9.38562ZM10.1099 9.34831C10.104 9.95663 10.2179 10.5602 10.4452 11.1245C10.6725 11.6887 11.0087 12.2027 11.4347 12.6371C11.8606 13.0714 12.3679 13.4176 12.9277 13.6559C13.4874 13.8942 14.0886 14.0199 14.6969 14.0258C15.3053 14.0318 15.9088 13.9179 16.4731 13.6906C17.0374 13.4632 17.5514 13.127 17.9857 12.7011C18.4201 12.2751 18.7663 11.7678 19.0045 11.2081C19.2428 10.6483 19.3685 10.0471 19.3745 9.43882C19.3911 6.84579 17.339 4.73157 14.7868 4.71084C12.2214 4.69288 10.1299 6.76564 10.1099 9.34831V9.34831ZM18.2607 1.86079C18.2629 1.5381 18.3932 1.2295 18.6229 1.00288C18.7367 0.890664 18.8714 0.801955 19.0195 0.741816C19.1675 0.681676 19.3259 0.651283 19.4857 0.652372C19.6455 0.653461 19.8035 0.68601 19.9507 0.748162C20.0979 0.810313 20.2314 0.900849 20.3436 1.0146C20.4558 1.12835 20.5446 1.26309 20.6047 1.41113C20.6648 1.55916 20.6952 1.71759 20.6941 1.87738C20.6959 2.03876 20.6654 2.19887 20.6044 2.3483C20.5434 2.49772 20.4532 2.63345 20.339 2.74751C20.2248 2.86157 20.089 2.95166 19.9395 3.01248C19.79 3.0733 19.6298 3.10363 19.4684 3.10169C18.7844 3.09685 18.2607 2.55793 18.2607 1.86079V1.86079Z" fill="#38B2A7"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 96 96" xml:space="preserve" class="w-full md:w-3/4 p-8">
<rect x="-0.6" width="96" height="96" style="fill:#200F46;"></rect>
<g>
<polygon points="39.4,13 24.4,13 22.3,23 37.3,23 " style="fill: #FFFFFF;"></polygon>
<polygon points="59.4,13 57.4,23 72.4,23 74.4,13 " style="fill:#3DF0AF;"></polygon>
<path d="M68.4,64c0-16-6-24-20-22c-3.9,0.6-7.7,2.8-11,5V28h-11v45h-5v9h16v-7v-2v-2.9c0-13,6.5-16,12-16s8,2.9,8,9.9 v9v9h16v-9h-5V64z" style="fill:#3DF0AF;"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 752 B

@ -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_2558_24)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9485 17.2335C24.9545 18.2412 24.5866 19.2154 23.916 19.9676C23.2454 20.7199 22.3198 21.1968 21.318 21.3062L21.5973 24.6226L16.3609 21.3295H10.0773C9.00521 21.3172 7.98121 20.8827 7.22746 20.1203C6.47372 19.3578 6.05103 18.3289 6.05108 17.2568V11.9797C6.05103 10.9075 6.47372 9.8786 7.22746 9.11613C7.98121 8.35366 9.00521 7.91921 10.0773 7.90694H20.9224C21.9955 7.91764 23.0209 8.3515 23.7759 9.11409C24.5309 9.87674 24.9544 10.9065 24.9544 11.9797V17.2568L24.9485 17.2335ZM20.9224 1.74548H10.0773C7.38705 1.76701 4.8153 2.85476 2.92613 4.77011C1.03696 6.68547 -0.0153256 9.272 0.000168715 11.9622V17.2393C-0.00341541 19.0521 0.474018 20.8333 1.38373 22.4013C2.29343 23.9693 3.60286 25.2678 5.17836 26.1644L0.285272 31.2728L13.5449 27.456H20.9165C23.6067 27.4345 26.1785 26.3467 28.0677 24.4314C29.9569 22.516 31.0091 19.9295 30.9936 17.2393V11.9622C31.0122 9.27206 29.9617 6.68465 28.0731 4.76878C26.1846 2.85292 23.6125 1.76547 20.9224 1.74548Z" fill="#03B388"/>
</g>
<defs>
<clipPath id="clip0_2558_24">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

@ -0,0 +1,6 @@
<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="#3E484A"/>
<path d="M31.6988 30.3151L25.6748 24.2901C25.4846 24.1036 25.2287 23.9991 24.9623 23.9991C24.6959 23.9991 24.4401 24.1036 24.2498 24.2901L18.2258 30.3151C18.0821 30.4521 17.9836 30.6296 17.9432 30.8239C17.9029 31.0183 17.9227 31.2203 18 31.4031C18.0773 31.586 18.2084 31.7409 18.376 31.8474C18.5435 31.9539 18.7395 32.0068 18.9378 31.9991H30.9868C31.184 32.0041 31.3781 31.9495 31.5439 31.8426C31.7097 31.7356 31.8394 31.5813 31.9162 31.3996C31.9931 31.2179 32.0134 31.0173 31.9746 30.8239C31.9358 30.6304 31.8397 30.4532 31.6988 30.3151Z" fill="#C3C6CC"/>
<path d="M31.8985 8.67508L30.0115 3.07308C29.9264 2.81974 29.7906 2.58635 29.6125 2.38708L0.228516 31.7701C0.400957 31.9244 0.62621 32.0064 0.857516 31.9991H9.20352C9.43677 32.0002 9.66796 31.9553 9.88384 31.8669C10.0997 31.7786 10.296 31.6485 10.4615 31.4841L31.4985 10.4471C31.7272 10.2206 31.8863 9.93342 31.9572 9.61947C32.028 9.30552 32.0077 8.97785 31.8985 8.67508V8.67508Z" fill="#E1E3E6"/>
<path d="M28.9265 1.98608L23.3245 0.100081C23.0217 -0.00908381 22.694 -0.0294323 22.3801 0.0414366C22.0661 0.112306 21.779 0.271438 21.5525 0.50008L0.514454 21.537C0.183512 21.8719 -0.00130264 22.3242 0.000454177 22.795V31.141C-0.00689208 31.3724 0.0751143 31.5976 0.229453 31.7701L29.6135 2.38711C29.4139 2.20839 29.1802 2.07196 28.9265 1.98608V1.98608Z" fill="#C3C6CC"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

@ -0,0 +1,13 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2600_9)">
<path d="M9.59998 19.1996L12.8 9.59961L27.2 23.9996L22.4 31.9996L16 25.5996H12.8" fill="#00E8FF"/>
<path d="M16 25.6004V12.8004L22.4 6.40039V19.2004L16 25.6004ZM3.19995 25.6004L9.59995 32.0004L12.8 25.6004L9.59995 19.2004H6.39995" fill="#283198"/>
<path d="M9.59995 19.2V6.4L16 0V12.8L9.59995 19.2ZM22.4 32V19.2L28.8 12.8V25.6L22.4 32ZM3.19995 25.6V12.8L9.59995 19.2" fill="#324FFF"/>
<path d="M9.59998 32.0002V19.2002L16 25.6002" fill="#00FFFF"/>
</g>
<defs>
<clipPath id="clip0_2600_9">
<rect width="32" height="32" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 691 B

@ -0,0 +1,11 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.7764 0L31.0244 12.0133C31.1049 12.3149 31.125 12.6293 31.0835 12.9387C31.042 13.248 30.9397 13.546 30.7826 13.8157C30.6254 14.0853 30.4165 14.3213 30.1679 14.5099C29.9192 14.6985 29.6357 14.836 29.3337 14.9147L18.9408 17.6729C17.7061 18.0018 16.9497 19.2347 17.2119 20.4596L17.9924 23.352C18.073 23.6536 18.0932 23.9683 18.0518 24.2777C18.0104 24.5872 17.9081 24.8855 17.751 25.1553C17.5939 25.4251 17.3849 25.6612 17.1362 25.8499C16.8875 26.0387 16.6039 26.1764 16.3017 26.2551L5.9097 29.016C5.60755 29.0947 5.32394 29.2324 5.07521 29.4212C4.82648 29.6099 4.61754 29.846 4.4604 30.1158C4.30327 30.3856 4.20105 30.6839 4.15962 30.9934C4.1182 31.3028 4.13839 31.6175 4.21904 31.9191L0.96926 19.8987C0.888615 19.597 0.868423 19.2824 0.909847 18.9729C0.95127 18.6634 1.05349 18.3652 1.21062 18.0954C1.36776 17.8256 1.5767 17.5895 1.82544 17.4007C2.07417 17.212 2.35777 17.0743 2.65993 16.9956L13.0528 14.2356C14.3026 13.9031 15.0599 12.6427 14.7684 11.4018L14.0013 8.56178C13.9208 8.26025 13.9007 7.94577 13.9422 7.63645C13.9837 7.32713 14.0859 7.02907 14.2431 6.75942C14.4002 6.48977 14.6091 6.25386 14.8578 6.06525C15.1064 5.87664 15.3899 5.73907 15.6919 5.66044L26.0848 2.90133C26.3869 2.8228 26.6705 2.6853 26.9193 2.49673C27.168 2.30817 27.377 2.07227 27.5342 1.80261C27.6915 1.53295 27.7938 1.23485 27.8353 0.925487C27.8769 0.616121 27.8569 0.30159 27.7764 0V0Z" fill="url(#paint0_linear_2606_7)"/>
<defs>
<linearGradient id="paint0_linear_2606_7" x1="2.45529" y1="20.389" x2="29.7905" y2="12.3067" gradientUnits="userSpaceOnUse">
<stop stop-color="#C0D653"/>
<stop offset="0.44522" stop-color="#9AB625"/>
<stop offset="0.56346" stop-color="#FF8314"/>
<stop offset="1" stop-color="#FFAC47"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@ -0,0 +1,7 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.0123 7.38477H20.4554L15.2 15.9632H10.7569L16.0123 7.38477Z" fill="#8DC220"/>
<path d="M5.50154 7.38477H9.94462L4.68923 15.9632L9.94462 24.5417H5.50154L0.246155 15.9755L5.50154 7.38477Z" fill="#00BAF3"/>
<path d="M10.7569 15.9632H15.2L9.9446 7.38477H5.50153L10.7569 15.9632Z" fill="#00AC71"/>
<path d="M20.4554 7.38477H16.0123L21.28 15.9632L16.0123 24.5417H20.4554L25.7231 15.9632L20.4554 7.38477Z" fill="#FFC439"/>
<path d="M26.4862 7.38477H22.0431L27.2985 15.9632L22.0308 24.5417H26.4738L31.7415 15.9632L26.4862 7.38477Z" fill="#D91A61"/>
</svg>

After

Width:  |  Height:  |  Size: 656 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="M0.125 2H11.1505C11.1505 2 21.1659 17.1316 21.4639 17.5383C21.7628 17.9441 21.7997 17.5383 21.7997 17.5383C21.3381 15.195 20.8369 14.1434 20.8369 10.4016V2H31.8204V30.0284H20.8372C20.8372 30.0284 11.0272 15.704 10.7301 15.3082C10.435 14.9126 10.3963 15.3082 10.3963 15.3082C10.7736 17.2424 11.1085 17.5659 11.1085 20.9212V30.0284H0.125V2Z" fill="#57B04B"/>
</svg>

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 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="M24.0727 31.4793L8.15565 15.5607V18.3709L21.264 31.4793H24.0727ZM20.0742 31.4793L8.15565 19.5607V22.4029L17.232 31.4793H20.0742ZM16.0073 31.4793L8.15565 23.6276V26.4349L13.2 31.4793H16.0073ZM23.728 10.8655V8.05818L12.7375 19.0473L14.1411 20.4509L23.728 10.8655ZM27.7542 0L10.7215 17.0327L12.1251 18.4349L27.7542 2.80727V0ZM23.7207 0L8.70255 15.0153L10.1077 16.4189L23.7222 2.80873L23.7207 0ZM4.36365 10.8582H7.19419V31.4793H4.36365V10.8582Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 569 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 844 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,14 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.00110441 17.7108V17.681C-0.00416192 17.6327 0.00954247 17.5843 0.0392942 17.546C0.0690459 17.5078 0.11249 17.4827 0.160358 17.4762H10.4119C10.4478 17.4789 10.4819 17.4935 10.5087 17.5178C10.5355 17.542 10.5535 17.5746 10.56 17.6102C12.5229 25.0862 14.3858 27.5807 16.0006 27.5807C18.2449 27.5807 20.0078 22.7407 20.8782 19.7622C20.9411 19.5462 21.2152 19.6319 21.1782 19.859C19.3264 32 13.771 32 11.9859 32C6.40088 31.9925 1.66401 26.0021 0.00110441 17.7108ZM31.9926 17.6586C31.9946 17.6128 31.9787 17.568 31.9482 17.5339C31.9177 17.4998 31.8752 17.4791 31.8296 17.4762H22.6855C22.6449 17.479 22.6067 17.497 22.5786 17.5266C22.5505 17.5562 22.5345 17.5954 22.5337 17.6363C21.8966 24.0251 20.2745 28.6678 17.482 31.2479C17.4631 31.2666 17.448 31.2889 17.4378 31.3136C17.4275 31.3382 17.4222 31.3646 17.4222 31.3913C17.4222 31.4179 17.4275 31.4444 17.4378 31.469C17.448 31.4936 17.4631 31.5159 17.482 31.5346C17.4984 31.5535 17.5186 31.5687 17.5412 31.5793C18.3449 31.8367 19.1829 31.9698 20.0263 31.9739C25.6336 31.9739 30.3704 25.8792 32 17.6586H31.9926Z" fill="url(#paint0_linear_2560_3)"/>
<path d="M31.9929 14.2818C31.9924 14.2905 31.9924 14.2992 31.9929 14.3079C32.0016 14.3547 31.9918 14.4031 31.9655 14.4428C31.9392 14.4825 31.8985 14.5102 31.8521 14.5201H21.5895C21.5537 14.5189 21.5193 14.5052 21.4923 14.4815C21.4653 14.4577 21.4473 14.4253 21.4414 14.3898C19.4785 6.90634 17.6156 4.41187 16.0008 4.41187C13.7565 4.41187 11.9935 9.25189 11.1232 12.2304C11.0602 12.4463 10.7862 12.3607 10.8232 12.1336C12.6787 0 18.2378 0 20.0007 0C25.6005 0 30.3374 5.99046 31.9929 14.2818ZM0.00137114 14.3302C-0.00170262 14.376 0.0132743 14.4212 0.0430691 14.4561C0.072864 14.4909 0.115087 14.5125 0.160625 14.5163H9.31216C9.35316 14.5136 9.39171 14.4958 9.42042 14.4662C9.44913 14.4367 9.46597 14.3975 9.46771 14.3563C10.1047 7.96742 11.7269 3.30611 14.5194 0.744619C14.5382 0.72623 14.5532 0.704234 14.5634 0.679934C14.5736 0.655634 14.5788 0.629521 14.5788 0.603141C14.5788 0.576761 14.5736 0.550649 14.5634 0.526349C14.5532 0.502048 14.5382 0.480053 14.5194 0.461664C14.503 0.442754 14.4828 0.427531 14.4601 0.416987C13.6582 0.156937 12.8213 0.0225718 11.9787 0.0186155C6.36782 0.0186155 1.63094 6.11332 0.00137114 14.3302Z" fill="url(#paint1_linear_2560_3)"/>
<defs>
<linearGradient id="paint0_linear_2560_3" x1="30.2519" y1="24.7325" x2="0.864038" y2="24.7325" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF8F1C"/>
<stop offset="1" stop-color="#ED2024"/>
</linearGradient>
<linearGradient id="paint1_linear_2560_3" x1="-28948.7" y1="21411" x2="-26409.9" y2="21411" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF8F1C"/>
<stop offset="1" stop-color="#ED2024"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 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="M15.8301 20.0732C14.5323 24.6954 13.4621 28.5781 13.375 29.1043C13.3414 29.3718 13.2108 29.6177 13.008 29.7953C12.8051 29.973 12.5441 30.0699 12.2745 30.0678C12.2342 30.0678 12.1933 30.0678 12.1519 30.0678C11.8634 30.0339 11.6001 29.8875 11.419 29.6605C11.2379 29.4335 11.1537 29.1441 11.1847 28.8554C11.2327 28.4216 12.1021 25.2252 13.1634 21.4243C11.663 22.1229 10.4292 22.5745 9.6683 22.6687C9.54577 22.6858 9.42223 22.6947 9.29852 22.6954C8.55363 22.6954 8.17852 22.3398 7.99185 22.0269C7.87322 21.8226 7.82351 21.5855 7.85008 21.3507C7.87665 21.1159 7.97809 20.8959 8.1394 20.7232C8.3007 20.5505 8.5133 20.4344 8.74575 20.3919C8.97819 20.3494 9.21813 20.3829 9.43007 20.4874C10.0843 20.3949 11.759 19.7069 13.9599 18.5656C15.0639 14.6421 16.2052 10.6403 16.7741 8.64917C16.8598 8.37513 17.0492 8.14544 17.3019 8.00913C17.5546 7.87281 17.8506 7.84066 18.1267 7.91954C18.4027 7.99842 18.6371 8.18208 18.7796 8.43133C18.9222 8.68057 18.9616 8.97566 18.8896 9.25361C18.2141 11.6181 17.4283 14.3772 16.6656 17.0758C17.615 16.5265 18.6212 15.9185 19.631 15.2625C25.1296 11.7069 28.8754 8.30783 29.631 6.14072C29.9154 5.33183 29.7074 4.9585 29.3056 4.64739C28.3421 3.89894 25.3803 3.8065 19.9545 5.78694C11.823 8.75405 3.23274 14.5158 2.41319 17.5203C2.49691 17.5367 2.5821 17.5444 2.66741 17.5434C2.81464 17.5316 2.96273 17.5496 3.10285 17.5963C3.24297 17.643 3.37226 17.7174 3.48302 17.8151C3.59377 17.9129 3.68372 18.0319 3.74751 18.1651C3.8113 18.2983 3.84762 18.443 3.8543 18.5905C3.86099 18.7381 3.8379 18.8855 3.78642 19.0239C3.73494 19.1623 3.65612 19.289 3.55466 19.3963C3.45319 19.5036 3.33116 19.5895 3.19583 19.6486C3.06051 19.7078 2.91465 19.7391 2.76696 19.7407C2.53408 19.7514 1.3323 19.7692 0.63363 18.9407C0.433402 18.6959 0.293522 18.4075 0.225275 18.0987C0.157028 17.7899 0.162326 17.4693 0.240742 17.1629C0.788297 14.5976 4.28874 11.7887 7.12785 9.8705C10.9022 7.35839 14.9562 5.29414 19.2079 3.71939C23.087 2.29717 28.223 1.01361 30.6639 2.90694C31.8016 3.79583 32.2141 5.06872 31.8265 6.50872C31.327 8.37005 29.1243 11.6483 21.471 16.6918C19.5634 17.9487 17.6079 19.1114 15.8301 20.0732Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

@ -0,0 +1,11 @@
<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="M20.4582 0.00363524C19.2603 0.0616553 18.1004 0.396199 17.1101 0.967141C16.5066 1.31464 16.3896 1.39427 16.0246 1.69918C15.6577 2.0078 15.1095 2.58924 14.9111 2.88366L14.8488 2.97376L14.7808 2.92007C14.7426 2.88983 14.6212 2.79786 14.5086 2.71639C12.9792 1.58067 10.9086 1.31464 9.12044 2.02323C8.2607 2.36209 7.48041 2.92871 6.91509 3.62188C6.78026 3.7873 6.78027 3.7873 6.52336 3.88791C4.60287 4.64958 2.91259 5.99513 1.75396 7.68884C0.757459 9.14181 0.180682 10.7639 0.0261378 12.5452C-0.0228251 13.0903 -0.000563958 14.0093 0.0725895 14.5951C0.366367 16.9813 1.55109 19.2243 3.37427 20.8489C4.17234 21.5612 4.92148 22.0612 5.87153 22.5142C7.06516 23.0827 8.22126 23.3981 9.57131 23.5228C9.88101 23.5505 9.92044 23.5592 9.95606 23.6024C10.3185 24.0382 10.9303 24.6474 11.3303 24.9714C11.6444 25.227 12.1309 25.5702 12.4266 25.7442L12.6988 25.9053L14.4908 27.6348C16.3362 29.418 16.4138 29.4846 16.7229 29.618C16.7941 29.6482 16.9353 29.6995 17.0415 29.7297C17.2139 29.7809 17.2648 29.7877 17.5851 29.7854C17.8772 29.7854 17.97 29.7791 18.1093 29.7403C18.3102 29.6864 18.5619 29.5772 18.7389 29.4655C18.8182 29.4143 19.4814 28.7915 20.5244 27.7848L22.1822 26.1843L22.5245 26.0016C23.5099 25.4757 24.4056 24.7634 25.2207 23.8555C25.5591 23.4802 26.0386 22.8235 26.2618 22.4284C26.35 22.2716 26.3546 22.2673 26.5643 22.1581C27.5105 21.6668 28.2534 21.1279 29.0247 20.3811C31.19 18.2732 32.2534 15.3697 31.9487 12.3866C31.712 10.0646 30.64 7.90117 28.9203 6.27845C28.6089 5.98465 28.2356 5.66925 27.9588 5.46741L27.8376 5.37728L27.765 5.12607C27.4952 4.18604 26.9689 3.22684 26.3151 2.48431C25.1126 1.11713 23.4796 0.262875 21.6518 0.0462246C21.3778 0.0141284 20.7298 -0.00932671 20.4582 0.00363524Z" fill="#FFE69D"/>
<path d="M20.4582 0.00363524C19.2603 0.0616553 18.1004 0.396199 17.1101 0.967141C16.5066 1.31464 16.3896 1.39427 16.0246 1.69918C15.6577 2.0078 15.1095 2.58924 14.9111 2.88366L14.8488 2.97376L14.7808 2.92007C14.7426 2.88983 14.6212 2.79786 14.5086 2.71639C12.9792 1.58067 10.9086 1.31464 9.12044 2.02323C8.2607 2.36209 7.48041 2.92871 6.91509 3.62188C6.78026 3.7873 6.78027 3.7873 6.52336 3.88791C4.60287 4.64958 2.91259 5.99513 1.75396 7.68884C0.757459 9.14181 0.180682 10.7639 0.0261378 12.5452C-0.0228251 13.0903 -0.000563958 14.0093 0.0725895 14.5951C0.366367 16.9813 1.55109 19.2243 3.37427 20.8489C4.17234 21.5612 4.92148 22.0612 5.87153 22.5142C7.06516 23.0827 8.22126 23.3981 9.57131 23.5228C9.88101 23.5505 9.92044 23.5592 9.95606 23.6024C10.3185 24.0382 10.9303 24.6474 11.3303 24.9714C11.6444 25.227 12.1309 25.5702 12.4266 25.7442L12.6988 25.9053L14.4908 27.6348C16.3362 29.418 16.4138 29.4846 16.7229 29.618C16.7941 29.6482 16.9353 29.6995 17.0415 29.7297C17.2139 29.7809 17.2648 29.7877 17.5851 29.7854C17.8772 29.7854 17.97 29.7791 18.1093 29.7403C18.3102 29.6864 18.5619 29.5772 18.7389 29.4655C18.8182 29.4143 19.4814 28.7915 20.5244 27.7848L22.1822 26.1843L22.5245 26.0016C23.5099 25.4757 24.4056 24.7634 25.2207 23.8555C25.5591 23.4802 26.0386 22.8235 26.2618 22.4284C26.35 22.2716 26.3546 22.2673 26.5643 22.1581C27.5105 21.6668 28.2534 21.1279 29.0247 20.3811C31.19 18.2732 32.2534 15.3697 31.9487 12.3866C31.712 10.0646 30.64 7.90117 28.9203 6.27845C28.6089 5.98465 28.2356 5.66925 27.9588 5.46741L27.8376 5.37728L27.765 5.12607C27.4952 4.18604 26.9689 3.22684 26.3151 2.48431C25.1126 1.11713 23.4796 0.262875 21.6518 0.0462246C21.3778 0.0141284 20.7298 -0.00932671 20.4582 0.00363524ZM21.5636 1.58746C22.5288 1.72696 23.4018 2.07261 24.1511 2.61763C25.2715 3.42869 26.0034 4.52984 26.3286 5.89268C26.4097 6.23773 26.4716 6.32166 26.8562 6.59634C27.8311 7.29812 28.6331 8.15425 29.2186 9.12019C29.3649 9.3603 29.6301 9.87571 29.7471 10.1417C30.1032 10.9614 30.3176 11.8373 30.3944 12.7921C30.4232 13.144 30.4103 13.9489 30.3702 14.2729C30.1381 16.1962 29.323 17.8701 27.9616 19.2287C27.6875 19.5009 27.2144 19.9194 27.1991 19.9021C27.1945 19.8978 27.2034 19.8058 27.2169 19.6965C27.2542 19.3725 27.1856 19.1534 26.9866 18.9731C26.8589 18.8571 26.7456 18.8016 26.5803 18.7713C26.2376 18.709 25.8858 18.8917 25.7403 19.2046C25.7116 19.2694 25.6742 19.4194 25.6518 19.5589C25.5545 20.2286 25.0572 21.4347 24.6178 22.0741C23.99 22.9864 23.2163 23.7376 22.2814 24.3425C21.2164 25.0313 20.085 25.4418 18.7343 25.6282C18.3987 25.6732 17.397 25.6924 17.0192 25.6603C15.1388 25.4955 13.4631 24.7826 12.0845 23.5574C11.2114 22.7846 10.5087 21.7198 10.2187 20.739C10.1373 20.4625 10.1125 20.3465 10.0705 20.0354C10.0311 19.7348 9.95606 19.5675 9.80087 19.4342C9.65971 19.3145 9.52488 19.2608 9.3392 19.2478C8.95004 19.22 8.61872 19.4515 8.5214 19.8187C8.4928 19.9348 8.49088 19.986 8.51249 20.1922C8.56339 20.673 8.69821 21.2051 8.88834 21.6748C8.9373 21.7933 8.97227 21.8921 8.97037 21.8939C8.96783 21.8964 8.87498 21.881 8.76686 21.8593C5.99744 21.3081 3.69477 19.5719 2.47064 17.1165C2.15457 16.4814 1.95299 15.9234 1.79845 15.2605C1.31644 13.1933 1.64139 10.9873 2.69766 9.14365C2.91703 8.76158 3.26617 8.25732 3.55297 7.90981C3.8582 7.53823 4.52592 6.89014 4.91003 6.59447C5.21272 6.35806 5.5911 6.09636 5.60635 6.11117C5.61079 6.1155 5.59998 6.25316 5.57965 6.41795C5.54912 6.66917 5.54912 6.7704 5.56884 7.02964C5.58219 7.20184 5.60889 7.39071 5.62861 7.44811C5.71 7.68884 5.92496 7.87771 6.19014 7.94438C6.53481 8.02769 6.91509 7.85425 7.07597 7.53391C7.12938 7.43146 7.1313 7.40984 7.1313 6.97595C7.13385 6.62225 7.14273 6.48708 7.17325 6.34326C7.28392 5.84082 7.54019 5.34521 7.94019 4.86253C8.01331 4.77424 8.12587 4.6329 8.19009 4.55081C8.25433 4.46749 8.4025 4.31318 8.51696 4.20763C9.54714 3.26141 10.9837 2.93736 12.3452 3.34043C12.9684 3.52497 13.598 3.90704 14.0094 4.34713L14.0997 4.44403L14.0469 4.61561C13.9185 5.02978 13.8409 5.54702 13.839 5.99946C13.839 6.87963 14.0603 7.71908 14.5328 8.63752C14.7541 9.06466 14.9728 9.22513 15.3308 9.22762C15.4765 9.22762 15.5299 9.21897 15.6361 9.17143C15.872 9.06466 16.0024 8.9227 16.0736 8.69554C16.1531 8.44619 16.1327 8.34312 15.9095 7.89252C15.5229 7.11358 15.3906 6.57039 15.4148 5.89268C15.4434 5.19273 15.6488 4.6045 16.0908 3.96752C16.6504 3.1645 17.4013 2.52751 18.2924 2.1047C18.4755 2.01891 18.7235 1.91151 18.8448 1.8683C19.2404 1.72449 19.8063 1.60228 20.2592 1.55722C20.5314 1.5313 21.2939 1.54858 21.5636 1.58746Z" fill="#C83B50"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.5343 14.7771C21.2914 14.8394 21.1209 14.9382 20.9313 15.1209C20.653 15.3869 20.5333 15.6702 20.5333 16.0542C20.5314 16.5115 20.7547 16.9066 21.1546 17.1572C21.353 17.2818 21.5254 17.3337 21.7887 17.3461C22.076 17.3615 22.2395 17.3312 22.4762 17.222C22.693 17.1208 22.9376 16.8998 23.0485 16.7091C23.3492 16.1893 23.2607 15.5369 22.8384 15.1252C22.5821 14.8783 22.2949 14.758 21.9278 14.7431C21.7446 14.7364 21.6626 14.7431 21.5343 14.7771Z" fill="#C83B50"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6998 14.829C11.3328 14.9167 10.9793 15.1957 10.8158 15.5284C10.7096 15.745 10.6785 15.8783 10.6785 16.1147C10.6785 16.4641 10.8088 16.7708 11.0632 17.0202C11.2489 17.2023 11.4454 17.314 11.6838 17.3745C12.1551 17.4924 12.6365 17.3634 12.9792 17.0332C13.3194 16.7023 13.4498 16.2326 13.3309 15.7777C13.2686 15.5395 13.1668 15.3716 12.9773 15.1833C12.8444 15.0518 12.7738 15.0006 12.6238 14.9321C12.5195 14.8846 12.3827 14.8352 12.3185 14.8222C12.164 14.7926 11.8479 14.7945 11.6998 14.829Z" fill="#C83B50"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5077 19.0001C13.5077 19.0668 13.6139 19.468 13.6864 19.6809C14.1264 20.9382 15.1274 21.8851 16.3318 22.1789C16.845 22.3035 17.4173 22.3035 17.9388 22.1789C19.0727 21.9042 20.0467 21.0308 20.5066 19.8741C20.6242 19.5822 20.7547 19.1291 20.7565 19.0088C20.7565 18.9896 20.0164 18.9835 17.1319 18.9835C15.1388 18.9835 13.5077 18.9921 13.5077 19.0001Z" fill="#C83B50"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4635 30.4103C14.4665 30.4118 14.8177 30.6155 14.8206 30.617C15.1848 30.832 15.2668 31.3154 15.049 31.6729C14.8329 32.0274 14.3369 32.0872 13.9697 31.8841C13.9644 31.8829 13.6746 31.7146 13.6701 31.712C13.3005 31.4999 13.1775 31.0349 13.3962 30.676C13.6157 30.3158 14.0939 30.1979 14.4635 30.4103Z" fill="#F3909F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.22572 25.781C8.22878 25.03 9.24677 24.8033 9.62678 25.3366C9.86489 25.6684 9.92438 26.2713 10.7684 27.4002C11.0721 27.8075 11.3468 28.2015 11.7772 28.5778C12.0733 28.837 12.4564 29.0844 12.9203 29.3378C13.627 29.7228 13.1951 30.9718 12.2564 30.6783C11.8718 30.5598 11.4613 30.3036 11.095 30.0134C10.6219 29.6399 10.2342 29.2355 9.86638 28.7911C9.18724 27.9704 8.22265 26.3276 8.22572 25.781Z" fill="#F3909F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.593 30.4056C20.5899 30.4073 20.2387 30.6108 20.2359 30.6126C19.8719 30.8273 19.7898 31.311 20.0075 31.6685C20.2237 32.023 20.7195 32.0828 21.0869 31.8793C21.0921 31.8784 21.3821 31.7099 21.3864 31.7076C21.756 31.4952 21.8791 31.0302 21.6604 30.6715C21.4409 30.3114 20.9626 30.1935 20.593 30.4056Z" fill="#F3909F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.7263 25.6683C26.7233 24.9172 25.7054 24.6906 25.3254 25.2239C25.0872 25.5557 25.0278 26.1586 24.1836 27.2874C23.8801 27.6948 23.6051 28.0888 23.1749 28.4651C22.8788 28.7243 22.4957 28.9717 22.0318 29.225C21.3251 29.6102 21.7572 30.859 22.6957 30.5658C23.0803 30.447 23.4909 30.1908 23.8572 29.9006C24.3302 29.5272 24.7179 29.1228 25.0857 28.6784C25.7648 27.8577 26.7294 26.2149 26.7263 25.6683Z" fill="#F3909F"/>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 512 512">
<path fill="#005EFF" d="M0 0h512v512H0z"/>
<path fill="#fff" fill-rule="evenodd" d="M262.643 89.588c-8-4.704-16.694-8.067-26.083-10.09a97.038 97.038 0 0 0-26.37-3.64c-37.771 0-71.021 21.774-90.373 54.775-3.664 5.936-6.857 12.294-9.579 19.074-5.491 14.441-8.238 30.06-8.238 46.859l.001.522-.001.483c0 5.315.303 10.55.89 15.684 1.161 10.655 3.458 20.859 6.89 30.611 5.188 14.44 12.358 27.113 21.511 38.017 8.512 9.812 18.382 17.835 29.612 24.068 14.782 8.525 31.535 13.335 49.287 13.335 31.167 0 59.256-14.826 78.998-38.551v83.402h-27.129c-7.955 0-11.933 9.282-6.301 14.721l57.478 55.559c3.486 3.368 9.162 3.368 12.648 0l57.477-55.559c5.631-5.439 1.654-14.721-6.302-14.721h-26.542V82.653a4 4 0 0 0-4-4h-45.548a4 4 0 0 0-4 4v38.764c-8.848-13.262-20.291-23.872-34.326-31.83Zm50.6 274.549c-.079-.229-.177-.214-.292 0h.292Zm-89.529-94.889c39.586 0 71.676-32.091 71.676-71.677 0-39.585-32.09-71.676-71.676-71.676s-71.676 32.091-71.676 71.676c0 39.586 32.09 71.677 71.676 71.677Z" clip-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 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="M31.9944 19.1098C31.9944 21.0698 31.1811 22.9498 29.7277 24.2831C29.6344 24.3765 29.4877 24.3765 29.3944 24.2831C28.8611 23.7765 28.2344 23.3765 27.5544 23.0965C27.1411 22.9365 26.4744 22.8431 26.4744 22.2565C26.4744 22.1365 26.5144 22.0165 26.5677 21.9098C26.5811 21.8965 26.5811 21.8831 26.5944 21.8698C27.1411 21.0565 27.5011 20.1365 27.6477 19.1631V19.1498C27.6877 18.8965 27.7144 18.6431 27.7144 18.3765V18.3898C27.6611 16.9365 26.4344 15.8031 24.9811 15.8565C23.6077 15.9098 22.5011 17.0165 22.4477 18.3898C22.4611 18.6431 22.4744 18.8965 22.5144 19.1631V19.1765C22.6611 20.1498 23.0211 21.0698 23.5677 21.8831C23.5811 21.8965 23.5811 21.9098 23.5944 21.9231C23.6611 22.0298 23.6877 22.1365 23.6877 22.2698C23.6877 22.8298 23.0744 22.9098 22.6744 23.0698C22.5544 23.1231 22.4877 23.2698 22.5411 23.3898C22.5544 23.4165 22.5677 23.4431 22.5811 23.4565C22.7411 23.6431 22.9011 23.8431 23.0611 24.0431C23.5144 24.6431 23.9144 25.2965 24.2344 25.9898L24.2477 26.0031C24.2611 26.0165 24.2611 26.0298 24.2611 26.0431L24.2744 26.0698C24.2744 26.0831 24.2744 26.0965 24.2744 26.1231C24.2744 26.2431 24.1944 26.3365 24.0877 26.3631C24.0744 26.3631 24.0611 26.3631 24.0344 26.3631C23.9677 26.3631 23.9144 26.3365 23.8744 26.2965C22.4611 24.7898 20.8877 23.5898 18.8877 23.0031C18.8477 22.9898 18.7944 22.9631 18.7544 22.9365C18.7277 22.9231 18.7011 22.9098 18.6744 22.8831C18.2077 22.5631 18.1277 21.9765 18.3811 21.4965C18.7411 20.8031 19.1811 20.1765 19.4744 19.4431C20.2344 17.5631 20.7011 15.2431 19.4344 13.4698C18.0877 11.5631 15.4611 11.1098 13.5544 12.4565C13.5277 12.4698 13.5144 12.4831 13.4877 12.5098C13.1277 12.7765 12.8077 13.1098 12.5411 13.4698C11.2744 15.2431 11.7411 17.5631 12.5011 19.4431C12.7944 20.1765 13.2344 20.8031 13.5944 21.4965C13.8477 21.9765 13.7677 22.5631 13.3011 22.8831L13.2211 22.9365C13.1811 22.9631 13.1277 22.9765 13.0877 23.0031C11.0877 23.5898 9.5144 24.7898 8.10106 26.2965C8.06106 26.3365 7.9944 26.3631 7.92773 26.3631C7.9144 26.3631 7.90106 26.3631 7.8744 26.3631C7.76773 26.3365 7.68773 26.2431 7.68773 26.1231C7.68773 26.1098 7.68773 26.0965 7.68773 26.0698C7.68773 26.0565 7.68773 26.0565 7.70106 26.0431C7.70106 26.0298 7.7144 26.0165 7.7144 26.0031L7.72773 25.9898C8.04773 25.2965 8.4344 24.6431 8.90106 24.0431C9.04773 23.8431 9.20773 23.6431 9.38106 23.4565C9.4744 23.3631 9.46106 23.2031 9.36773 23.1231C9.34106 23.1098 9.32773 23.0831 9.30106 23.0831C8.90106 22.9231 8.28773 22.8431 8.28773 22.2831C8.28773 22.1631 8.32773 22.0431 8.38106 21.9365C8.3944 21.9231 8.3944 21.9098 8.40773 21.8965C8.9544 21.0831 9.3144 20.1631 9.46106 19.1898V19.1765C9.50106 18.9231 9.52773 18.6698 9.52773 18.4031V18.3898C9.4744 16.9365 8.26106 15.8031 6.80773 15.8565C5.4344 15.9098 4.32773 17.0165 4.2744 18.3898C4.28773 18.6431 4.30106 18.8965 4.34106 19.1631V19.1765C4.48773 20.1498 4.84773 21.0698 5.3944 21.8831C5.40773 21.8965 5.40773 21.9098 5.42106 21.9231C5.48773 22.0298 5.5144 22.1365 5.5144 22.2698C5.5144 22.8565 4.8344 22.9498 4.4344 23.1098C3.7544 23.3898 3.12773 23.7898 2.5944 24.2965C2.50106 24.3898 2.3544 24.3898 2.26106 24.2965C-0.565602 21.6831 -0.765602 17.2831 1.7944 14.4165C2.92773 13.1498 4.48773 12.3498 6.18106 12.1631C6.2744 12.1498 6.34106 12.0965 6.38106 12.0165C8.6744 6.62981 14.8344 4.14981 20.1411 6.46981C22.5944 7.54981 24.5544 9.53648 25.5944 12.0165C25.6344 12.0965 25.7011 12.1498 25.7944 12.1631C29.3277 12.5231 31.9944 15.5231 31.9944 19.1098Z" fill="#1999E3"/>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

@ -0,0 +1,9 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.994507 17.9413L8.90745 12.0957" stroke="#84154F" stroke-width="0.3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.90403 12.2051L4.76367 20.986" stroke="#84154F" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.85632 20.7489L18.7911 6.5127" stroke="#84154F" stroke-width="0.6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.844 6.66016L7.41418 25.2524" stroke="#84154F" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.51221 25.2065L22.7629 12.0605" stroke="#84154F" stroke-width="0.8" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.8051 12.1094L19.1007 20.5666" stroke="#84154F" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.3365 20.5588L30.1229 14.041" stroke="#84154F" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 958 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 832 B

@ -0,0 +1,6 @@
<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="M15.25 23.3433C16.5027 23.1817 17.7117 22.802 18.8076 22.1921C21.5144 20.686 23.078 18.0971 23.2103 14.9018L23.2219 14.6252H26.9681C26.732 12.7305 26.0138 10.9838 24.9419 9.50977L21.1094 11.9695C22.2753 13.7972 22.4256 15.823 21.5404 17.8465C20.4917 20.2433 18.0197 22.3437 15.25 23.3433Z" fill="#EE3524"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.0246 15.2021H23.7714C23.5524 18.435 21.8564 21.1556 19.088 22.6961C17.508 23.5752 15.7096 24.0127 13.8733 24.0127C12.4504 24.0127 11.0046 23.749 9.61963 23.2261C11.2844 24.2648 13.1551 24.833 15.0929 24.8388H15.1224C18.6219 24.8388 21.7633 22.9877 23.5302 19.8827L23.6799 19.62L25.8567 20.9998C26.6221 19.4973 27.0564 17.7991 27.0564 16.0003C27.0564 15.7315 27.0435 15.4662 27.0246 15.2021Z" fill="#EE3524"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.1231 25.4154H15.0919C11.6053 25.4051 8.32933 23.6789 5.99805 20.7075C7.76947 24.4563 11.5863 27.057 16.0003 27.057C20.0924 27.057 23.6696 24.8208 25.5814 21.5076L23.8793 20.4287C21.9829 23.5585 18.7334 25.4154 15.1231 25.4154Z" fill="#EE3524"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 0C7.16343 0 0 7.16343 0 16C0 24.8366 7.16343 32 16 32C24.8366 32 32 24.8366 32 16C32 7.16343 24.8366 0 16 0ZM16 27.6339C9.57469 27.6339 4.36609 22.4253 4.36609 16C4.36609 9.57501 9.57469 4.36641 16 4.36641C22.4253 4.36641 27.6339 9.57501 27.6339 16C27.6339 22.4253 22.4253 27.6339 16 27.6339Z" fill="#EE3524"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 994 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 419 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="M28.9822 18.3648V13.0482L3 0V5.85319L23.1351 15.6646L3 25.61V31.3291L28.9822 18.3648Z" fill="#73AF37"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 558 B

@ -0,0 +1,5 @@
<svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 4H26.5V24H6.5V4Z" fill="white"/>
<path d="M18.778 15.213H12.313V18.255H18.623C18.996 18.255 19.338 18.103 19.618 17.86C19.866 17.616 20.022 17.251 20.022 16.795C20.0306 16.4024 19.9105 16.0179 19.68 15.7C19.431 15.395 19.151 15.213 18.778 15.213V15.213ZM18.996 11.531C19.276 11.349 19.4 10.953 19.4 10.436C19.4 9.98 19.276 9.645 19.058 9.432C18.833 9.23853 18.5468 9.13085 18.25 9.128H12.312V11.866H18.126C18.436 11.866 18.747 11.714 18.996 11.531V11.531Z" fill="#0AB3AF"/>
<path d="M29.277 0H3.952C3.145 0 2.5 0.643 2.5 1.415V26.695C2.5 27.468 3.145 27.95 3.92 27.95H7.662V33L12.308 27.982H29.278C30.052 27.982 30.536 27.5 30.536 26.696V1.447C30.536 0.675 30.052 0.032 29.246 0.032L29.276 0H29.277ZM25.02 20.488C24.6876 21.0718 24.2098 21.5596 23.633 21.904C23.02 22.289 22.343 22.644 21.568 22.804C20.794 22.997 19.955 23.158 19.084 23.158H7.662V5.146H20.632C21.277 5.146 21.825 5.275 22.342 5.564C22.825 5.822 23.277 6.175 23.632 6.594C24.3546 7.47186 24.7432 8.5771 24.729 9.714C24.729 10.55 24.503 11.354 24.083 12.126C23.6478 12.903 22.9673 13.5138 22.148 13.863C23.18 14.152 23.987 14.667 24.599 15.406C25.18 16.178 25.471 17.176 25.471 18.43C25.471 19.234 25.309 19.91 24.987 20.488H25.019H25.02Z" fill="#0AB3AF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 671 B

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="M1.91992 1.27979H8.76792V22.9118C8.76792 26.1758 10.3679 27.8398 12.9919 27.8398C13.2479 27.8398 13.4399 27.7758 13.4399 27.7758C12.2879 29.5038 10.8159 30.9118 7.42392 30.9118C3.83992 30.9118 1.91992 28.4158 1.91992 24.7038V1.27979V1.27979Z" fill="#231F20"/>
<path d="M10.624 20.6718V22.9118C10.624 25.0878 11.84 25.9198 13.12 25.9198C14.464 25.9198 15.168 25.0238 15.808 23.9998C16.896 22.2718 30.208 1.27979 30.208 1.27979H23.104L10.624 20.6718Z" fill="#00ADEF"/>
</svg>

After

Width:  |  Height:  |  Size: 579 B

@ -1,6 +0,0 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M25.577 22.0564C25.577 22.4648 25.2616 22.7996 24.8768 22.7996H19.9951C19.6104 22.7996 19.2949 22.4648 19.2949 22.0564V16.875C19.2949 16.4666 19.6104 16.1318 19.9951 16.1318H24.8768C25.2616 16.1318 25.577 16.4666 25.577 16.875V22.0564Z" fill="#07BFDD"/>
<path d="M31.9383 15.5242C31.9383 15.9326 31.6229 16.2674 31.2381 16.2674H26.3564C25.9717 16.2674 25.6562 15.9326 25.6562 15.5242V10.3428C25.6562 9.93441 25.9717 9.59961 26.3564 9.59961H31.2381C31.6229 9.59961 31.9383 9.93441 31.9383 10.3428V15.5242Z" fill="#007FFF"/>
<path d="M13.0345 22.0564C13.0345 22.4648 12.719 22.7996 12.3343 22.7996H7.4526C7.06784 22.7996 6.75244 22.4648 6.75244 22.0564V16.875C6.75244 16.4666 7.06784 16.1318 7.4526 16.1318H12.3343C12.719 16.1318 13.0345 16.4666 13.0345 16.875V22.0564Z" fill="#1DA5F8"/>
<path d="M6.68198 15.5252C6.68198 15.9336 6.36654 16.2684 5.98178 16.2684H1.10009C0.715335 16.2684 0.399902 15.9348 0.399902 15.5252V10.3438C0.399902 9.93538 0.715335 9.60059 1.10009 9.60059H5.98178C6.36654 9.60059 6.68198 9.93538 6.68198 10.3438V15.5252Z" fill="#8CC936"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 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 fill-rule="evenodd" clip-rule="evenodd" d="M20.1158 16.9298C21.1535 15.0981 21.683 13.4677 21.6632 12.2075C21.6389 10.6608 21.0232 9.5088 20.1166 8.74537C17.3867 6.45203 12.0107 7.67565 12.0838 12.2798C12.1105 14.017 12.9539 16.2654 15.1474 18.977C15.1474 18.977 16.3703 17.8821 16.6385 16.9C10.8152 8.98613 23.056 8.55489 16.9661 17.3297C16.9661 17.3297 16.2621 18.4749 15.3661 19.2421C13.4667 21.0326 11.747 21.5987 10.2476 21.3526C5.04152 20.4993 4.21105 12.7309 3.82552 8.11223H0.00304762L0 8.26613V9.12937C0.199619 18.2951 6.68571 31.0456 17.0514 21.0166C18.0777 19.988 18.6621 19.169 18.6621 19.169C19.1884 18.4507 19.6737 17.7034 20.1158 16.9305V16.9298ZM28.9242 12.9465C28.2255 18.3286 25.1078 22.8757 20.4069 20.372C20.3139 20.5001 20.2168 20.6251 20.1158 20.7469C19.6676 21.2759 19.1627 21.7541 18.6103 22.1732C18.597 22.1658 18.5829 22.16 18.5684 22.1557C19.0865 22.481 19.603 22.74 20.1158 22.9374C25.9215 25.1812 31.2175 19.633 31.728 12.6958L29.0004 12.5739C28.9664 12.6962 28.9409 12.8207 28.9242 12.9465" fill="#00756A"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 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 fill-rule="evenodd" clip-rule="evenodd" d="M19.1358 9.15991H13.242L9.7879 17.3864L6.33383 9.15991H0.440002C2.58098 14.2589 4.7211 19.3588 6.86292 24.4572L4.49037 30.1076H10.3842C13.3315 23.088 16.2074 16.134 19.1357 9.16005L19.1358 9.15991Z" fill="#6101D1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.1928 1.91992H31.5357L25.7999 15.7794H19.457L25.1928 1.91992ZM21.0161 17.116C22.991 17.116 24.5922 18.717 24.5922 20.6921C24.5922 22.6672 22.9912 24.2682 21.0161 24.2682C19.0411 24.2682 17.44 22.6672 17.44 20.6921C17.44 18.7172 19.0411 17.116 21.0161 17.116Z" fill="#6101D1"/>
</svg>

After

Width:  |  Height:  |  Size: 697 B

@ -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="M31.9903 19.0544C31.9903 14.9022 28.636 11.5379 24.5014 11.5379L20.3618 11.5253V7.51649C20.3618 3.36417 17.0075 0 12.8729 0C10.1182 0 7.7147 1.49323 6.41261 3.71672C5.27861 4.37897 4.3328 5.33332 3.678 6.47403C1.47524 7.78345 0 10.1908 0 12.9456V23.5719C0 27.7243 4.15968 32 8.29675 32H19.1199C21.9173 32 24.3558 30.4589 25.6404 28.1775C26.7041 27.5329 27.5973 26.6365 28.232 25.5738C30.4749 24.2744 31.9903 21.8446 31.9903 19.0544Z" fill="white"/>
<path d="M19.1248 16.9647L14.9852 16.9521V12.9432C14.9852 8.79096 11.6309 5.42676 7.49631 5.42676C3.36174 5.42676 0.00738525 8.79349 0.00738525 12.9432V23.5697C0.00738525 27.7221 4.16707 31.9978 8.30416 31.9978H19.1273C23.2644 31.9978 26.6162 28.6311 26.6162 24.4812C26.6137 20.3314 23.2619 16.9647 19.1248 16.9647Z" fill="#582DB4"/>
<path opacity="0.5" d="M21.8068 14.2401L17.6722 14.2274C17.6697 14.2274 17.6648 14.2249 17.6648 14.2198V10.3093C17.6648 6.01592 14.1222 2.52331 9.84975 2.70713C5.86572 2.87836 2.68701 6.17456 2.68701 10.2186V21.3965C2.68701 25.5513 6.34492 29.2756 10.487 29.2756H21.7165C25.9942 29.2756 29.4738 25.7201 29.2908 21.4317C29.1201 17.4305 25.8336 14.2401 21.8068 14.2401Z" fill="#FE50B8"/>
<path opacity="0.5" d="M24.5086 11.5379L20.369 11.5253V7.51649C20.369 3.36417 17.0147 0 12.8801 0C8.74557 0 5.39124 3.36669 5.39124 7.51649V19.0544C5.39124 23.8817 8.44202 26.571 12.5791 26.571H24.5111C28.6482 26.571 32 23.2043 32 19.0544C32 14.9046 28.6457 11.5379 24.5086 11.5379Z" fill="#FF0088"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 960 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

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

Loading…
Cancel
Save