This commit is contained in:
AzizbekFayziyev 2025-06-02 11:40:07 +05:00
commit 75a1aacc91
354 changed files with 36463 additions and 0 deletions

1
.env.example Normal file
View file

@ -0,0 +1 @@
API_URL="http://localhost:3000"

1
.eslintignore Normal file
View file

@ -0,0 +1 @@
submodules/

61
.eslintrc.json Normal file
View file

@ -0,0 +1,61 @@
{
"env": {
"es2021": true,
"node": true
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"no-console": "off",
"no-void": "off",
"import/extensions": "off",
"no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"func-names": "off",
"consistent-return": "off",
"no-restricted-syntax": "off",
"indent": ["error", "tab"],
"class-methods-use-this": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/no-explicit-any": "error",
"lines-between-class-members": "off",
"camelcase": "off",
"no-underscore-dangle": "off",
"no-shadow": "off",
"no-await-in-loop": "off",
"radix": "off",
"no-plusplus": "off",
"no-promise-executor-return": "off",
"import/no-duplicates": "off",
"import/prefer-default-export": "off",
"import/no-cycle": "off"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"]
}
}
}
}

33
.gitignore vendored Normal file
View file

@ -0,0 +1,33 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
.env*.local
.env
# vercel
.vercel

3
.husky/pre-commit Normal file
View file

@ -0,0 +1,3 @@
#!/bin/sh
npx lint-staged

8
.prettierignore Normal file
View file

@ -0,0 +1,8 @@
node_modules
build
dist
coverage
.next
.env
*.lock
submodules/

38
README.md Normal file
View file

@ -0,0 +1,38 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

8
jsconfig.json Normal file
View file

@ -0,0 +1,8 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}

View file

@ -0,0 +1,15 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
queryInterface.addColumn('Currencies', 'asset_info', {
type: Sequelize.JSONB,
allowNull: true,
});
},
async down(queryInterface, Sequelize) {
queryInterface.removeColumn('Currencies', 'asset_info');
},
};

View file

@ -0,0 +1,73 @@
'use strict';
async function updateColumnType(queryInterface, table, column, type, transaction) {
await queryInterface.changeColumn(
table,
column,
{
type: `${type} USING CAST("${column}" as ${type})`,
},
{ transaction },
);
}
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.sequelize.transaction(async (transaction) => {
await updateColumnType(queryInterface, 'Orders', 'price', 'VARCHAR', transaction);
await updateColumnType(queryInterface, 'Orders', 'amount', 'VARCHAR', transaction);
await updateColumnType(queryInterface, 'Orders', 'total', 'VARCHAR', transaction);
await updateColumnType(queryInterface, 'Orders', 'left', 'VARCHAR', transaction);
await updateColumnType(
queryInterface,
'Transactions',
'amount',
'VARCHAR',
transaction,
);
});
},
async down(queryInterface, Sequelize) {
queryInterface.sequelize.transaction(async (transaction) => {
await updateColumnType(
queryInterface,
'Orders',
'price',
'DOUBLE PRECISION',
transaction,
);
await updateColumnType(
queryInterface,
'Orders',
'amount',
'DOUBLE PRECISION',
transaction,
);
await updateColumnType(
queryInterface,
'Orders',
'total',
'DOUBLE PRECISION',
transaction,
);
await updateColumnType(
queryInterface,
'Orders',
'left',
'DOUBLE PRECISION',
transaction,
);
await updateColumnType(
queryInterface,
'Transactions',
'amount',
'DOUBLE PRECISION',
transaction,
);
});
},
};

View file

@ -0,0 +1,16 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
queryInterface.addColumn('Users', 'exchange_notifications_amount', {
type: Sequelize.INTEGER,
allowNull: false,
defaultValue: 0,
});
},
async down(queryInterface) {
queryInterface.removeColumn('Users', 'exchange_notifications_amount');
},
};

View file

@ -0,0 +1,16 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
queryInterface.addColumn('Currencies', 'whitelisted', {
type: Sequelize.BOOLEAN,
defaultValue: false,
allowNull: false,
});
},
async down(queryInterface, Sequelize) {
queryInterface.removeColumn('Currencies', 'whitelisted');
},
};

View file

@ -0,0 +1,16 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
queryInterface.addColumn('Orders', 'hasNotification', {
type: Sequelize.BOOLEAN,
defaultValue: false,
allowNull: false,
});
},
async down(queryInterface, Sequelize) {
queryInterface.removeColumn('Users', 'exchange_notifications_amount');
},
};

View file

@ -0,0 +1,16 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn('Users', 'isAdmin', {
type: Sequelize.BOOLEAN,
allowNull: false,
defaultValue: false,
});
},
async down(queryInterface, Sequelize) {
await queryInterface.removeColumn('Users', 'isAdmin');
},
};

View file

@ -0,0 +1,16 @@
'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn('Pairs', 'featured', {
type: Sequelize.BOOLEAN,
defaultValue: false,
allowNull: false,
});
},
down: async (queryInterface, Sequelize) => {
await queryInterface.removeColumn('Pairs', 'featured');
},
};

5
next-env.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.

37
next.config.js Normal file
View file

@ -0,0 +1,37 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/',
destination: '/dex',
permanent: false,
},
// {
// source: '/((?!maintenance).*)', // Match everything except "/maintenance"
// destination: '/maintenance',
// permanent: false,
// },
];
},
webpack: (config) => {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack', 'url-loader'],
});
return config;
},
async rewrites() {
return [
{
source: '/api/:path*',
destination: `${process.env.API_URL}/api/:path*`
}
]
},
};
export default nextConfig;

14062
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

75
package.json Normal file
View file

@ -0,0 +1,75 @@
{
"name": "zano-p2p",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 30289",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@react-hook/window-size": "^3.1.1",
"@tanstack/react-table": "^8.21.3",
"@types/jsonwebtoken": "^9.0.2",
"antd": "^5.23.2",
"apexcharts": "^3.41.0",
"axios": "^1.4.0",
"big.js": "^6.2.1",
"crypto-js": "^4.1.1",
"decimal.js": "^10.4.3",
"echarts": "^5.5.1",
"echarts-for-react": "^3.0.2",
"eslint-config-next": "13.2.4",
"express": "^4.18.2",
"jimp": "^0.22.8",
"jsonwebtoken": "^9.0.0",
"nanoid": "^4.0.1",
"next": "^13.2.4",
"next-themes": "^0.2.1",
"node-fetch": "^3.3.1",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.10.3",
"sequelize": "^6.37.3",
"sha256": "^0.2.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsx": "^4.15.7",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/big.js": "^6.2.0",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.17",
"@types/pg": "^8.10.2",
"@types/react": "18.2.16",
"@types/react-dom": "^18.2.7",
"@types/sha256": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "3.5.3",
"sass": "^1.59.2",
"url-loader": "^4.1.1"
}
}

12
prettier.config.cjs Normal file
View file

@ -0,0 +1,12 @@
/** @type {import("prettier").Config} */
module.exports = {
semi: true,
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
tabWidth: 4,
useTabs: true,
bracketSpacing: true,
arrowParens: 'always',
endOfLine: 'lf',
};

11
public/currencies/all.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_983_1016)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M9 3L10.7634 6.57295L14.7063 7.1459L11.8532 9.92705L12.5267 13.8541L9 12L5.47329 13.8541L6.14683 9.92705L3.29366 7.1459L7.23664 6.57295L9 3Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_983_1016">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 458 B

11
public/currencies/btc.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_31_643)">
<path d="M17.7306 11.1773C16.5284 15.9987 11.6445 18.933 6.82192 17.7307C2.00135 16.5287 -0.933233 11.645 0.269445 6.8239C1.47107 2.00189 6.35499 -0.932582 11.1761 0.269433C15.9983 1.47145 18.9327 6.35566 17.7304 11.1774L17.7305 11.1773H17.7306Z" fill="#F7931A"/>
<path d="M12.9691 7.71772C13.1482 6.52002 12.2363 5.87621 10.9892 5.44672L11.3938 3.82433L10.4061 3.57824L10.0123 5.15792C9.75259 5.09316 9.48593 5.03215 9.2209 4.97166L9.61757 3.38155L8.63047 3.13547L8.22571 4.75733C8.01083 4.70842 7.79978 4.66007 7.59502 4.60913L7.59617 4.60402L6.23409 4.26393L5.97135 5.31875C5.97135 5.31875 6.70415 5.48671 6.6887 5.49705C7.08867 5.59686 7.161 5.8616 7.14899 6.07144L6.68818 7.91973C6.71572 7.92672 6.75144 7.93684 6.79086 7.95268C6.75791 7.9445 6.72285 7.93557 6.68646 7.92686L6.04055 10.516C5.99167 10.6375 5.8676 10.8199 5.58797 10.7506C5.59786 10.765 4.87008 10.5715 4.87008 10.5715L4.3797 11.702L5.66505 12.0224C5.90417 12.0823 6.13849 12.1451 6.36925 12.2041L5.96052 13.8451L6.94709 14.0912L7.35186 12.4676C7.62138 12.5407 7.88294 12.6082 8.13899 12.6718L7.73559 14.2878L8.72335 14.5338L9.13203 12.8959C10.8163 13.2146 12.0827 13.0861 12.6158 11.5629C13.0453 10.3365 12.5944 9.62914 11.7083 9.16785C12.3537 9.01902 12.8398 8.5946 12.9694 7.71785L12.9691 7.71763L12.9691 7.71772ZM10.7124 10.8818C10.4071 12.1082 8.34203 11.4453 7.6725 11.279L8.21489 9.10498C8.88438 9.27211 11.0314 9.60283 10.7124 10.8818H10.7124ZM11.0178 7.69995C10.7394 8.81548 9.02059 8.24874 8.46302 8.10977L8.95477 6.13804C9.51233 6.27701 11.3079 6.53638 11.0179 7.69995H11.0178Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_31_643">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

11
public/currencies/cad.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_356_923)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M8.68118 15V3H9.45057V15H8.68118ZM10.7219 6.96094C10.6844 6.58281 10.5233 6.28906 10.2387 6.07969C9.9541 5.87031 9.56785 5.76563 9.07995 5.76563C8.74843 5.76563 8.46851 5.8125 8.2402 5.90625C8.01188 5.99688 7.83674 6.12344 7.71476 6.28594C7.59592 6.44844 7.53649 6.63281 7.53649 6.83906C7.53024 7.01094 7.5662 7.16094 7.64439 7.28906C7.72571 7.41719 7.83674 7.52813 7.97748 7.62188C8.11822 7.7125 8.28085 7.79219 8.46538 7.86094C8.64991 7.92656 8.84694 7.98281 9.05649 8.02969L9.9197 8.23594C10.3388 8.32969 10.7235 8.45469 11.0738 8.61094C11.4241 8.76719 11.7274 8.95937 11.9839 9.1875C12.2404 9.41563 12.439 9.68438 12.5797 9.99375C12.7236 10.3031 12.7971 10.6578 12.8002 11.0578C12.7971 11.6453 12.6469 12.1547 12.3498 12.5859C12.0558 13.0141 11.6305 13.3469 11.0738 13.5844C10.5202 13.8188 9.85246 13.9359 9.07057 13.9359C8.29493 13.9359 7.61937 13.8172 7.0439 13.5797C6.47155 13.3422 6.02431 12.9906 5.70217 12.525C5.38316 12.0563 5.21583 11.4766 5.2002 10.7859H7.16587C7.18777 11.1078 7.28003 11.3766 7.44266 11.5922C7.60843 11.8047 7.82892 11.9656 8.10415 12.075C8.3825 12.1813 8.69682 12.2344 9.04711 12.2344C9.39114 12.2344 9.68983 12.1844 9.94316 12.0844C10.1996 11.9844 10.3982 11.8453 10.539 11.6672C10.6797 11.4891 10.7501 11.2844 10.7501 11.0531C10.7501 10.8375 10.686 10.6563 10.5577 10.5094C10.4326 10.3625 10.2481 10.2375 10.0041 10.1344C9.76332 10.0312 9.46777 9.9375 9.11748 9.85313L8.07131 9.59063C7.26127 9.39375 6.62168 9.08594 6.15254 8.66719C5.68341 8.24844 5.4504 7.68438 5.45353 6.975C5.4504 6.39375 5.60522 5.88594 5.91797 5.45156C6.23386 5.01719 6.66703 4.67813 7.21748 4.43438C7.76793 4.19063 8.39345 4.06875 9.09402 4.06875C9.80711 4.06875 10.4295 4.19063 10.9612 4.43438C11.496 4.67813 11.912 5.01719 12.2091 5.45156C12.5062 5.88594 12.6595 6.38906 12.6688 6.96094H10.7219Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_356_923">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

12
public/currencies/ct.svg Normal file
View file

@ -0,0 +1,12 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1048_3365)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M13.0003 5.00005C12.2092 4.20893 11.2013 3.67017 10.104 3.45191C9.00667 3.23364 7.86928 3.34566 6.83564 3.77381C5.80199 4.20196 4.91852 4.927 4.29695 5.85726C3.67537 6.78751 3.34361 7.88119 3.34361 9C3.34361 10.1188 3.67537 11.2125 4.29695 12.1427C4.91852 13.073 5.80199 13.798 6.83564 14.2262C7.86928 14.6543 9.00667 14.7664 10.104 14.5481C11.2013 14.3298 12.2092 13.7911 13.0003 13L11.2804 11.28C10.8294 11.7309 10.2549 12.038 9.62944 12.1624C9.00397 12.2868 8.35566 12.223 7.76648 11.9789C7.17731 11.7349 6.67373 11.3216 6.31943 10.7914C5.96513 10.2611 5.77603 9.63772 5.77603 9C5.77603 8.36228 5.96513 7.73888 6.31943 7.20864C6.67373 6.67839 7.17731 6.26512 7.76648 6.02107C8.35566 5.77703 9.00397 5.71317 9.62944 5.83759C10.2549 5.962 10.8294 6.26909 11.2804 6.72003L13.0003 5.00005Z" fill="white"/>
<path d="M13.2428 7.58572L14.4675 8.29282V9.70702L13.2428 10.4141L12.0181 9.70702V8.29282L13.2428 7.58572Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1048_3365">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

11
public/currencies/eur.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_356_930)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M10.7736 7.48384L10.3066 8.52471H4L4.38208 7.48384H10.7736ZM9.87264 9.47529L9.35849 10.5399H4L4.38208 9.47529H9.87264ZM12 4.88403L11.2453 6.50951C11.1195 6.42079 10.967 6.32414 10.7877 6.21958C10.6116 6.11185 10.4088 6.02155 10.1792 5.94867C9.95283 5.87262 9.70126 5.8346 9.42453 5.8346C8.98742 5.8346 8.60692 5.9455 8.28302 6.1673C7.95912 6.3891 7.70755 6.73447 7.5283 7.20342C7.3522 7.67237 7.26415 8.2744 7.26415 9.00951C7.26415 9.75095 7.3522 10.3546 7.5283 10.8203C7.70755 11.283 7.95912 11.6236 8.28302 11.8422C8.60692 12.0577 8.98742 12.1654 9.42453 12.1654C9.70126 12.1654 9.95283 12.129 10.1792 12.0561C10.4057 11.9832 10.6038 11.8961 10.7736 11.7947C10.9465 11.6933 11.0912 11.5998 11.2075 11.5143L11.9717 13.1397C11.6289 13.4249 11.2406 13.6404 10.8066 13.7861C10.3726 13.9287 9.91195 14 9.42453 14C8.60063 14 7.87107 13.8035 7.23585 13.4106C6.60377 13.0146 6.10849 12.4458 5.75 11.7044C5.39151 10.9598 5.21226 10.0615 5.21226 9.00951C5.21226 7.96071 5.39151 7.06242 5.75 6.31464C6.10849 5.56686 6.60377 4.99493 7.23585 4.59886C7.87107 4.19962 8.60063 4 9.42453 4C9.93082 4 10.3994 4.07605 10.8302 4.22814C11.261 4.38023 11.6509 4.59886 12 4.88403Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_356_930">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,12 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_35_1723)">
<path d="M8.99444 17.9827C13.9555 17.9827 17.9772 13.961 17.9772 8.99999C17.9772 4.03897 13.9555 0.0172729 8.99444 0.0172729C4.03342 0.0172729 0.0117188 4.03897 0.0117188 8.99999C0.0117188 13.961 4.03342 17.9827 8.99444 17.9827Z" fill="#FEFEFE"/>
<path d="M5.28336 12.942C5.49144 12.942 5.688 12.8261 5.78016 12.641L7.10424 10.1268H5.058C4.74624 10.1268 4.49712 9.87263 4.49712 9.56591V8.43839C4.49712 8.12591 4.75128 7.87751 5.058 7.87751H8.29512L10.8094 3.11471C10.908 2.92967 11.0988 2.81447 11.3062 2.81447H15.5434C13.9018 1.07999 11.5841 -0.000732422 9.00576 -0.000732422C4.03488 -1.24218e-05 0 4.02911 0 9.00575C0 10.4162 0.324 11.7576 0.9072 12.9477H5.28264L5.28336 12.942Z" fill="#9B1C2E"/>
<path d="M12.7165 5.05801C12.5085 5.05801 12.3119 5.17321 12.2197 5.35825L10.8964 7.87249H12.9426C13.2544 7.87249 13.5035 8.12665 13.5035 8.43337V9.56089C13.5035 9.87337 13.2493 10.1218 12.9426 10.1218H9.7055L7.19126 14.8846C7.09262 15.0696 6.90254 15.1848 6.69446 15.1848H2.45654C4.09814 16.9193 6.41582 18 8.99414 18C13.965 18 17.9999 13.9709 17.9999 8.99425C17.9999 7.58377 17.6759 6.24241 17.0927 5.05225H12.7173L12.7165 5.05801Z" fill="#9B1C2E"/>
</g>
<defs>
<clipPath id="clip0_35_1723">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

11
public/currencies/jpy.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_356_916)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M7.42505 4L9.49722 9.03906L8.06189 10.123L5.25 4H7.42505ZM8.52727 8.99023L10.575 4H12.75L9.92342 10.123L8.52727 8.99023ZM10.0214 8.73633V14H7.92472V8.73633H10.0214ZM12.0005 8.84375V10.0498H5.78886V8.84375H12.0005ZM12.0005 10.7773V11.9834H5.78886V10.7773H12.0005Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_356_916">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 578 B

View file

@ -0,0 +1,12 @@
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="48" height="48" rx="24" fill="#1F8FEB" fill-opacity="0.15"/>
<g clip-path="url(#clip0_1914_2941)">
<path d="M33.5005 14.4999C31.6215 12.621 29.2276 11.3414 26.6214 10.823C24.0153 10.3046 21.3139 10.5707 18.859 11.5875C16.404 12.6044 14.3057 14.3264 12.8295 16.5358C11.3532 18.7452 10.5652 21.3428 10.5652 24C10.5652 26.6572 11.3532 29.2548 12.8295 31.4642C14.3057 33.6736 16.404 35.3956 18.859 36.4125C21.3139 37.4293 24.0153 37.6954 26.6214 37.177C29.2276 36.6586 31.6215 35.379 33.5005 33.5001L29.4154 29.415C28.3444 30.486 26.9799 31.2154 25.4944 31.5109C24.0089 31.8064 22.4691 31.6547 21.0698 31.0751C19.6705 30.4955 18.4744 29.5139 17.633 28.2546C16.7915 26.9952 16.3424 25.5146 16.3424 24C16.3424 22.4854 16.7915 21.0048 17.633 19.7454C18.4744 18.4861 19.6705 17.5045 21.0698 16.9249C22.4691 16.3453 24.0089 16.1936 25.4944 16.4891C26.9799 16.7846 28.3444 17.514 29.4154 18.585L33.5005 14.4999Z" fill="white"/>
<path d="M34.0764 20.6406L36.9852 22.32V25.6788L34.0764 27.3582L31.1676 25.6788V22.32L34.0764 20.6406Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1914_2941">
<rect width="28" height="28" fill="white" transform="translate(10 10)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,3 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M25.0036 12.2123C25.451 9.22342 23.1735 7.61681 20.0593 6.54503L21.0695 2.49638L18.6029 1.88227L17.6194 5.82433C16.9709 5.66274 16.305 5.51047 15.6431 5.35953L16.6337 1.39145L14.1686 0.777344L13.1578 4.82468C12.6212 4.70261 12.0941 4.58196 11.5827 4.45484L11.5856 4.4421L8.18403 3.5934L7.52787 6.22569C7.52787 6.22569 9.35792 6.64482 9.31936 6.67062C10.3182 6.91971 10.4988 7.58036 10.4689 8.10401L9.31804 12.7164C9.38682 12.7338 9.47603 12.7591 9.57448 12.7986C9.49219 12.7782 9.40462 12.7559 9.31375 12.7342L7.7007 19.1954C7.57863 19.4986 7.26879 19.9537 6.57043 19.7809C6.59515 19.8167 4.77763 19.3339 4.77763 19.3339L3.55298 22.155L6.76293 22.9545C7.36009 23.1041 7.94528 23.2607 8.52157 23.4079L7.50084 27.503L9.96464 28.1171L10.9755 24.0655C11.6486 24.248 12.3018 24.4164 12.9412 24.5752L11.9338 28.6077L14.4006 29.2218L15.4212 25.1344C19.6273 25.9297 22.7901 25.6091 24.1213 21.8079C25.194 18.7474 24.0679 16.9822 21.855 15.831C23.4668 15.4597 24.6808 14.4005 25.0044 12.2126L25.0037 12.2121L25.0036 12.2123ZM19.3678 20.1082C18.6055 23.1687 13.4483 21.5143 11.7762 21.0994L13.1308 15.6742C14.8027 16.0912 20.1645 16.9165 19.3679 20.1082H19.3678ZM20.1307 12.1679C19.4353 14.9517 15.1429 13.5374 13.7504 13.1906L14.9785 8.27021C16.3709 8.617 20.8551 9.26426 20.1309 12.1679H20.1307Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,15 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1026_7129)">
<path d="M14.9971 0.777344L14.8076 1.42555V20.2335L14.9971 20.4238L23.6664 15.2633L14.9971 0.777344Z" fill="#EDEDED"/>
<path d="M14.9972 0.777344L6.32764 15.2633L14.9972 20.4238V11.295V0.777344Z" fill="white"/>
<path d="M14.9972 22.0758L14.8904 22.207V28.9066L14.9972 29.2206L23.6718 16.918L14.9972 22.0758Z" fill="#EDEDED"/>
<path d="M14.9972 29.2206V22.0758L6.32764 16.918L14.9972 29.2206Z" fill="white"/>
<path d="M14.9971 20.4238L23.6664 15.2632L14.9971 11.2949V20.4238Z" fill="#DCDCDC"/>
<path d="M6.32764 15.2632L14.9972 20.4238V11.2949L6.32764 15.2632Z" fill="#EDEDED"/>
</g>
<defs>
<clipPath id="clip0_1026_7129">
<rect width="28.4444" height="28.4444" fill="white" transform="translate(0.777588 0.777344)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 878 B

View file

@ -0,0 +1,4 @@
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.5196 0.851564H29.1924C30.7929 0.851527 32.1395 0.851496 33.2418 0.942042C34.3949 1.03675 35.4932 1.2426 36.5365 1.77703C38.1256 2.59109 39.4177 3.89005 40.2274 5.48773C40.759 6.5366 40.9637 7.6408 41.0579 8.80002C41.148 9.90826 41.148 11.2621 41.1479 12.8712V17.3271C41.148 18.9362 41.148 20.2901 41.0579 21.3983C40.9637 22.5575 40.759 23.6617 40.2274 24.7106C39.4177 26.3083 38.1256 27.6073 36.5365 28.4213C35.4932 28.9557 34.3949 29.1616 33.2418 29.2563C32.1395 29.3469 30.7928 29.3468 29.1923 29.3468H15.238C14.2578 29.3468 13.3733 28.7556 12.9941 27.8469C12.6148 26.9382 12.8148 25.8895 13.5015 25.1863L25.0249 13.3852L28.4981 16.8131L21.0372 24.4537H29.0948C30.8186 24.4537 31.965 24.4518 32.8455 24.3794C33.6975 24.3095 34.0841 24.1859 34.3269 24.0615C35.0002 23.7166 35.5477 23.1662 35.8908 22.4892C36.0145 22.2451 36.1374 21.8565 36.207 20.9999C36.279 20.1147 36.2809 18.9621 36.2809 17.2291V12.9692C36.2809 11.2363 36.279 10.0837 36.207 9.19848C36.1374 8.34185 36.0145 7.95327 35.8908 7.70916C35.5477 7.03218 35.0002 6.48177 34.3269 6.13683C34.0841 6.01245 33.6975 5.8889 32.8455 5.81891C31.965 5.74659 30.8186 5.74468 29.0948 5.74468H24.6178C22.8751 5.74468 21.7153 5.74661 20.8252 5.82009C19.9631 5.89125 19.5734 6.01689 19.3298 6.14283C18.6524 6.49298 18.1038 7.05131 17.7638 7.73658C17.6415 7.98304 17.5213 8.37632 17.461 9.24378C17.3988 10.1395 17.411 11.3055 17.4322 13.0573L17.4567 15.0693L12.59 15.129L12.5644 13.0183C12.5446 11.3911 12.528 10.023 12.6058 8.90286C12.6871 7.73185 12.8813 6.61501 13.4085 5.55245C14.2109 3.93521 15.5056 2.61755 17.1044 1.79118C18.1548 1.24824 19.2632 1.03944 20.4269 0.943381C21.54 0.851496 22.901 0.851527 24.5196 0.851564Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.15336 36.1801C10.0338 36.2524 11.1803 36.2543 12.904 36.2543H17.4562C19.0279 36.2543 20.0732 36.2528 20.8784 36.1923C21.6588 36.1337 22.0166 36.03 22.2407 35.9267C23.0194 35.5675 23.6441 34.9395 24.0013 34.1566C24.1042 33.9313 24.2073 33.5716 24.2656 32.787C24.3257 31.9775 24.3273 30.9266 24.3273 29.3464H29.1943L29.1943 29.4357C29.1944 30.9031 29.1944 32.1379 29.1191 33.1513C29.0405 34.2102 28.8699 35.2222 28.4251 36.1969C27.5821 38.0444 26.1078 39.5266 24.2701 40.3741C23.3006 40.8213 22.294 40.9928 21.2408 41.0719C20.2327 41.1475 19.0046 41.1475 17.545 41.1475L12.8065 41.1475C11.206 41.1475 9.85934 41.1475 8.75703 41.057C7.60398 40.9623 6.50566 40.7564 5.46238 40.222C3.87321 39.4079 2.58117 38.109 1.77145 36.5113C1.23987 35.4624 1.03511 34.3582 0.940907 33.199C0.850843 32.0908 0.850876 30.7369 0.850912 29.1278V24.6719C0.850876 23.0628 0.850843 21.7089 0.940907 20.6007C1.03511 19.4415 1.23987 18.3373 1.77145 17.2884C2.58117 15.6907 3.87321 14.3918 5.46238 13.5777C6.50566 13.0433 7.60398 12.8374 8.75703 12.7427C9.85936 12.6522 11.206 12.6522 12.8066 12.6522H26.7608C28.1048 12.6522 29.1943 13.7476 29.1943 15.0988C29.1943 16.45 28.1048 17.5454 26.7608 17.5454H12.904C11.1803 17.5454 10.0338 17.5473 9.15336 17.6196C8.3013 17.6896 7.91479 17.8131 7.67198 17.9375C6.9986 18.2824 6.45112 18.8329 6.10802 19.5098C5.9843 19.7539 5.86141 20.1425 5.7918 20.9992C5.71986 21.8843 5.71796 23.0369 5.71796 24.7699V29.0298C5.71796 30.7628 5.71986 31.9154 5.7918 32.8005C5.86141 33.6572 5.9843 34.0458 6.10802 34.2899C6.45112 34.9668 6.9986 35.5173 7.67198 35.8622C7.91479 35.9866 8.3013 36.1101 9.15336 36.1801Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,12 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1048_3365)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M13.0003 5.00005C12.2092 4.20893 11.2013 3.67017 10.104 3.45191C9.00667 3.23364 7.86928 3.34566 6.83564 3.77381C5.80199 4.20196 4.91852 4.927 4.29695 5.85726C3.67537 6.78751 3.34361 7.88119 3.34361 9C3.34361 10.1188 3.67537 11.2125 4.29695 12.1427C4.91852 13.073 5.80199 13.798 6.83564 14.2262C7.86928 14.6543 9.00667 14.7664 10.104 14.5481C11.2013 14.3298 12.2092 13.7911 13.0003 13L11.2804 11.28C10.8294 11.7309 10.2549 12.038 9.62944 12.1624C9.00397 12.2868 8.35566 12.223 7.76648 11.9789C7.17731 11.7349 6.67373 11.3216 6.31943 10.7914C5.96513 10.2611 5.77603 9.63772 5.77603 9C5.77603 8.36228 5.96513 7.73888 6.31943 7.20864C6.67373 6.67839 7.17731 6.26512 7.76648 6.02107C8.35566 5.77703 9.00397 5.71317 9.62944 5.83759C10.2549 5.962 10.8294 6.26909 11.2804 6.72003L13.0003 5.00005Z" fill="white"/>
<path d="M13.2428 7.58572L14.4675 8.29282V9.70702L13.2428 10.4141L12.0181 9.70702V8.29282L13.2428 7.58572Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1048_3365">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

11
public/currencies/usd.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_356_923)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M8.68118 15V3H9.45057V15H8.68118ZM10.7219 6.96094C10.6844 6.58281 10.5233 6.28906 10.2387 6.07969C9.9541 5.87031 9.56785 5.76563 9.07995 5.76563C8.74843 5.76563 8.46851 5.8125 8.2402 5.90625C8.01188 5.99688 7.83674 6.12344 7.71476 6.28594C7.59592 6.44844 7.53649 6.63281 7.53649 6.83906C7.53024 7.01094 7.5662 7.16094 7.64439 7.28906C7.72571 7.41719 7.83674 7.52813 7.97748 7.62188C8.11822 7.7125 8.28085 7.79219 8.46538 7.86094C8.64991 7.92656 8.84694 7.98281 9.05649 8.02969L9.9197 8.23594C10.3388 8.32969 10.7235 8.45469 11.0738 8.61094C11.4241 8.76719 11.7274 8.95937 11.9839 9.1875C12.2404 9.41563 12.439 9.68438 12.5797 9.99375C12.7236 10.3031 12.7971 10.6578 12.8002 11.0578C12.7971 11.6453 12.6469 12.1547 12.3498 12.5859C12.0558 13.0141 11.6305 13.3469 11.0738 13.5844C10.5202 13.8188 9.85246 13.9359 9.07057 13.9359C8.29493 13.9359 7.61937 13.8172 7.0439 13.5797C6.47155 13.3422 6.02431 12.9906 5.70217 12.525C5.38316 12.0563 5.21583 11.4766 5.2002 10.7859H7.16587C7.18777 11.1078 7.28003 11.3766 7.44266 11.5922C7.60843 11.8047 7.82892 11.9656 8.10415 12.075C8.3825 12.1813 8.69682 12.2344 9.04711 12.2344C9.39114 12.2344 9.68983 12.1844 9.94316 12.0844C10.1996 11.9844 10.3982 11.8453 10.539 11.6672C10.6797 11.4891 10.7501 11.2844 10.7501 11.0531C10.7501 10.8375 10.686 10.6563 10.5577 10.5094C10.4326 10.3625 10.2481 10.2375 10.0041 10.1344C9.76332 10.0312 9.46777 9.9375 9.11748 9.85313L8.07131 9.59063C7.26127 9.39375 6.62168 9.08594 6.15254 8.66719C5.68341 8.24844 5.4504 7.68438 5.45353 6.975C5.4504 6.39375 5.60522 5.88594 5.91797 5.45156C6.23386 5.01719 6.66703 4.67813 7.21748 4.43438C7.76793 4.19063 8.39345 4.06875 9.09402 4.06875C9.80711 4.06875 10.4295 4.19063 10.9612 4.43438C11.496 4.67813 11.912 5.01719 12.2091 5.45156C12.5062 5.88594 12.6595 6.38906 12.6688 6.96094H10.7219Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_356_923">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1048_3346)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M13.2204 7.82411C13.4091 6.56319 12.4483 5.8854 11.1345 5.43324L11.5607 3.72522L10.5201 3.46614L10.1052 5.1292C9.8316 5.06103 9.55066 4.99679 9.27143 4.93311L9.68934 3.25908L8.64937 3L8.22293 4.70747C7.99654 4.65597 7.77418 4.60507 7.55846 4.55144L7.55966 4.54607L6.12462 4.18802L5.84781 5.29852C5.84781 5.29852 6.61986 5.47534 6.60359 5.48623C7.02498 5.59131 7.10119 5.87002 7.08853 6.09094L6.60303 8.03678C6.63205 8.04414 6.66969 8.0548 6.71122 8.07147C6.6765 8.06285 6.63956 8.05345 6.60122 8.04428L5.92072 10.7701C5.86922 10.898 5.73851 11.09 5.44389 11.0171C5.45432 11.0322 4.68755 10.8285 4.68755 10.8285L4.1709 12.0187L5.5251 12.356C5.77702 12.4191 6.0239 12.4852 6.26702 12.5473L5.8364 14.2749L6.87582 14.534L7.30227 12.8247C7.58622 12.9017 7.86179 12.9727 8.13156 13.0397L7.70655 14.7409L8.74722 15L9.17779 13.2756C10.9523 13.6112 12.2865 13.4759 12.8482 11.8722C13.3007 10.5811 12.8256 9.83641 11.8921 9.35078C12.572 9.1941 13.0842 8.74727 13.2207 7.82425L13.2204 7.82402L13.2204 7.82411ZM10.8428 11.1552C10.5212 12.4463 8.34548 11.7484 7.64008 11.5734L8.21152 9.28459C8.91687 9.46054 11.1789 9.80872 10.8428 11.1552H10.8428ZM11.1646 7.8054C10.8712 8.97981 9.06038 8.38316 8.47295 8.23685L8.99104 6.16105C9.57847 6.30736 11.4702 6.58042 11.1647 7.8054H11.1646Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_1048_3346">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,16 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1048_3354)">
<circle cx="9" cy="9" r="9" fill="#1F8FEB"/>
<path d="M8.99889 3L8.91895 3.27346V11.208L8.99889 11.2883L12.6562 9.11125L8.99889 3Z" fill="#EDEDED"/>
<path d="M8.99876 3L5.34131 9.11125L8.99876 11.2883V7.43712V3Z" fill="white"/>
<path d="M8.99867 11.9857L8.95361 12.041V14.8674L8.99867 14.9999L12.6583 9.80971L8.99867 11.9857Z" fill="#EDEDED"/>
<path d="M8.99876 14.9999V11.9857L5.34131 9.80971L8.99876 14.9999Z" fill="white"/>
<path d="M8.99902 11.2884L12.6564 9.11129L8.99902 7.43716V11.2884Z" fill="#DCDCDC"/>
<path d="M5.34131 9.11129L8.99876 11.2884V7.43716L5.34131 9.11129Z" fill="#EDEDED"/>
</g>
<defs>
<clipPath id="clip0_1048_3354">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 846 B

12
public/currencies/xmr.svg Normal file
View file

@ -0,0 +1,12 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_35_1703)">
<path d="M17.9977 8.99911C17.9977 13.969 13.9691 17.9982 8.99883 17.9982C4.02858 17.9982 0 13.969 0 8.99911C0 4.0292 4.02868 0 8.99883 0C13.969 0 17.9977 4.02882 17.9977 8.99911Z" fill="white"/>
<path d="M8.99885 0C4.03038 0 -0.00534107 4.0349 0.000983987 8.99883C0.00222983 9.99195 0.160596 10.9473 0.457825 11.8409H3.15019V4.27061L8.99885 10.1192L14.8472 4.27061V11.841H17.5402C17.8378 10.9475 17.9954 9.99215 17.9972 8.99897C18.0056 4.02987 13.9679 0.00119793 8.99885 0.00119793V0Z" fill="#F26822"/>
<path d="M7.65382 11.4638L5.10142 8.91125V13.6749H3.15L1.30859 13.6752C2.88808 16.2666 5.7426 18 8.99885 18C12.2551 18 15.1098 16.2662 16.6895 13.6748H12.8957V8.91125L10.3432 11.4638L8.99856 12.8084L7.65392 11.4638H7.65382Z" fill="#4D4D4D"/>
</g>
<defs>
<clipPath id="clip0_35_1703">
<rect width="17.9981" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 995 B

View file

@ -0,0 +1,41 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_30_630)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5936 6.55123e-07H12.6717C13.3835 -1.56574e-05 13.9824 -2.96388e-05 14.4726 0.0404162C14.9854 0.0827233 15.4738 0.174675 15.9378 0.413398C16.6445 0.777032 17.2191 1.35727 17.5792 2.07094C17.8156 2.53946 17.9067 3.0327 17.9486 3.55051C17.9886 4.04555 17.9886 4.6503 17.9886 5.36909V7.35949C17.9886 8.07827 17.9886 8.68302 17.9486 9.17806C17.9067 9.69588 17.8156 10.1891 17.5792 10.6576C17.2191 11.3713 16.6445 11.9515 15.9378 12.3152C15.4738 12.5539 14.9854 12.6458 14.4726 12.6882C13.9824 12.7286 13.3835 12.7286 12.6717 12.7286H6.46591C6.03 12.7286 5.63664 12.4645 5.46797 12.0586C5.2993 11.6527 5.38824 11.1842 5.69362 10.8701L10.8184 5.59868L12.3629 7.12989L9.04494 10.5429H12.6283C13.3949 10.5429 13.9048 10.542 14.2963 10.5097C14.6753 10.4784 14.8472 10.4232 14.9551 10.3677C15.2546 10.2136 15.4981 9.96774 15.6507 9.66534C15.7057 9.5563 15.7603 9.38272 15.7913 9.00008C15.8233 8.60467 15.8241 8.08982 15.8241 7.31572V5.41286C15.8241 4.63875 15.8233 4.1239 15.7913 3.7285C15.7603 3.34585 15.7057 3.17227 15.6507 3.06323C15.4981 2.76083 15.2546 2.51497 14.9551 2.36088C14.8472 2.30532 14.6753 2.25013 14.2963 2.21887C13.9048 2.18657 13.3949 2.18572 12.6283 2.18572H10.6373C9.86231 2.18572 9.34651 2.18657 8.95064 2.2194C8.56727 2.25118 8.39397 2.30731 8.28562 2.36356C7.98435 2.51997 7.74037 2.76938 7.58916 3.07548C7.53478 3.18557 7.48131 3.36124 7.45451 3.74873C7.42684 4.14886 7.43228 4.66969 7.44173 5.45221L7.45258 6.35096L5.28826 6.37761L5.27687 5.43476C5.26808 4.70793 5.26068 4.09679 5.29529 3.59644C5.33147 3.07337 5.41781 2.57448 5.65227 2.09985C6.00912 1.37744 6.58493 0.788853 7.29591 0.41972C7.76305 0.177191 8.25599 0.0839239 8.77351 0.0410147C9.26854 -2.97658e-05 9.87379 -1.57868e-05 10.5936 6.55123e-07Z" fill="url(#paint0_linear_30_630)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5936 6.55123e-07H12.6717C13.3835 -1.56574e-05 13.9824 -2.96388e-05 14.4726 0.0404162C14.9854 0.0827233 15.4738 0.174675 15.9378 0.413398C16.6445 0.777032 17.2191 1.35727 17.5792 2.07094C17.8156 2.53946 17.9067 3.0327 17.9486 3.55051C17.9886 4.04555 17.9886 4.6503 17.9886 5.36909V7.35949C17.9886 8.07827 17.9886 8.68302 17.9486 9.17806C17.9067 9.69588 17.8156 10.1891 17.5792 10.6576C17.2191 11.3713 16.6445 11.9515 15.9378 12.3152C15.4738 12.5539 14.9854 12.6458 14.4726 12.6882C13.9824 12.7286 13.3835 12.7286 12.6717 12.7286H6.46591C6.03 12.7286 5.63664 12.4645 5.46797 12.0586C5.2993 11.6527 5.38824 11.1842 5.69362 10.8701L10.8184 5.59868L12.3629 7.12989L9.04494 10.5429H12.6283C13.3949 10.5429 13.9048 10.542 14.2963 10.5097C14.6753 10.4784 14.8472 10.4232 14.9551 10.3677C15.2546 10.2136 15.4981 9.96774 15.6507 9.66534C15.7057 9.5563 15.7603 9.38272 15.7913 9.00008C15.8233 8.60467 15.8241 8.08982 15.8241 7.31572V5.41286C15.8241 4.63875 15.8233 4.1239 15.7913 3.7285C15.7603 3.34585 15.7057 3.17227 15.6507 3.06323C15.4981 2.76083 15.2546 2.51497 14.9551 2.36088C14.8472 2.30532 14.6753 2.25013 14.2963 2.21887C13.9048 2.18657 13.3949 2.18572 12.6283 2.18572H10.6373C9.86231 2.18572 9.34651 2.18657 8.95064 2.2194C8.56727 2.25118 8.39397 2.30731 8.28562 2.36356C7.98435 2.51997 7.74037 2.76938 7.58916 3.07548C7.53478 3.18557 7.48131 3.36124 7.45451 3.74873C7.42684 4.14886 7.43228 4.66969 7.44173 5.45221L7.45258 6.35096L5.28826 6.37761L5.27687 5.43476C5.26808 4.70793 5.26068 4.09679 5.29529 3.59644C5.33147 3.07337 5.41781 2.57448 5.65227 2.09985C6.00912 1.37744 6.58493 0.788853 7.29591 0.41972C7.76305 0.177191 8.25599 0.0839239 8.77351 0.0410147C9.26854 -2.97658e-05 9.87379 -1.57868e-05 10.5936 6.55123e-07Z" fill="url(#paint1_radial_30_630)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5936 6.55123e-07H12.6717C13.3835 -1.56574e-05 13.9824 -2.96388e-05 14.4726 0.0404162C14.9854 0.0827233 15.4738 0.174675 15.9378 0.413398C16.6445 0.777032 17.2191 1.35727 17.5792 2.07094C17.8156 2.53946 17.9067 3.0327 17.9486 3.55051C17.9886 4.04555 17.9886 4.6503 17.9886 5.36909V7.35949C17.9886 8.07827 17.9886 8.68302 17.9486 9.17806C17.9067 9.69588 17.8156 10.1891 17.5792 10.6576C17.2191 11.3713 16.6445 11.9515 15.9378 12.3152C15.4738 12.5539 14.9854 12.6458 14.4726 12.6882C13.9824 12.7286 13.3835 12.7286 12.6717 12.7286H6.46591C6.03 12.7286 5.63664 12.4645 5.46797 12.0586C5.2993 11.6527 5.38824 11.1842 5.69362 10.8701L10.8184 5.59868L12.3629 7.12989L9.04494 10.5429H12.6283C13.3949 10.5429 13.9048 10.542 14.2963 10.5097C14.6753 10.4784 14.8472 10.4232 14.9551 10.3677C15.2546 10.2136 15.4981 9.96774 15.6507 9.66534C15.7057 9.5563 15.7603 9.38272 15.7913 9.00008C15.8233 8.60467 15.8241 8.08982 15.8241 7.31572V5.41286C15.8241 4.63875 15.8233 4.1239 15.7913 3.7285C15.7603 3.34585 15.7057 3.17227 15.6507 3.06323C15.4981 2.76083 15.2546 2.51497 14.9551 2.36088C14.8472 2.30532 14.6753 2.25013 14.2963 2.21887C13.9048 2.18657 13.3949 2.18572 12.6283 2.18572H10.6373C9.86231 2.18572 9.34651 2.18657 8.95064 2.2194C8.56727 2.25118 8.39397 2.30731 8.28562 2.36356C7.98435 2.51997 7.74037 2.76938 7.58916 3.07548C7.53478 3.18557 7.48131 3.36124 7.45451 3.74873C7.42684 4.14886 7.43228 4.66969 7.44173 5.45221L7.45258 6.35096L5.28826 6.37761L5.27687 5.43476C5.26808 4.70793 5.26068 4.09679 5.29529 3.59644C5.33147 3.07337 5.41781 2.57448 5.65227 2.09985C6.00912 1.37744 6.58493 0.788853 7.29591 0.41972C7.76305 0.177191 8.25599 0.0839239 8.77351 0.0410147C9.26854 -2.97658e-05 9.87379 -1.57868e-05 10.5936 6.55123e-07Z" fill="url(#paint2_radial_30_630)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.5936 6.55123e-07H12.6717C13.3835 -1.56574e-05 13.9824 -2.96388e-05 14.4726 0.0404162C14.9854 0.0827233 15.4738 0.174675 15.9378 0.413398C16.6445 0.777032 17.2191 1.35727 17.5792 2.07094C17.8156 2.53946 17.9067 3.0327 17.9486 3.55051C17.9886 4.04555 17.9886 4.6503 17.9886 5.36909V7.35949C17.9886 8.07827 17.9886 8.68302 17.9486 9.17806C17.9067 9.69588 17.8156 10.1891 17.5792 10.6576C17.2191 11.3713 16.6445 11.9515 15.9378 12.3152C15.4738 12.5539 14.9854 12.6458 14.4726 12.6882C13.9824 12.7286 13.3835 12.7286 12.6717 12.7286H6.46591C6.03 12.7286 5.63664 12.4645 5.46797 12.0586C5.2993 11.6527 5.38824 11.1842 5.69362 10.8701L10.8184 5.59868L12.3629 7.12989L9.04494 10.5429H12.6283C13.3949 10.5429 13.9048 10.542 14.2963 10.5097C14.6753 10.4784 14.8472 10.4232 14.9551 10.3677C15.2546 10.2136 15.4981 9.96774 15.6507 9.66534C15.7057 9.5563 15.7603 9.38272 15.7913 9.00008C15.8233 8.60467 15.8241 8.08982 15.8241 7.31572V5.41286C15.8241 4.63875 15.8233 4.1239 15.7913 3.7285C15.7603 3.34585 15.7057 3.17227 15.6507 3.06323C15.4981 2.76083 15.2546 2.51497 14.9551 2.36088C14.8472 2.30532 14.6753 2.25013 14.2963 2.21887C13.9048 2.18657 13.3949 2.18572 12.6283 2.18572H10.6373C9.86231 2.18572 9.34651 2.18657 8.95064 2.2194C8.56727 2.25118 8.39397 2.30731 8.28562 2.36356C7.98435 2.51997 7.74037 2.76938 7.58916 3.07548C7.53478 3.18557 7.48131 3.36124 7.45451 3.74873C7.42684 4.14886 7.43228 4.66969 7.44173 5.45221L7.45258 6.35096L5.28826 6.37761L5.27687 5.43476C5.26808 4.70793 5.26068 4.09679 5.29529 3.59644C5.33147 3.07337 5.41781 2.57448 5.65227 2.09985C6.00912 1.37744 6.58493 0.788853 7.29591 0.41972C7.76305 0.177191 8.25599 0.0839239 8.77351 0.0410147C9.26854 -2.97658e-05 9.87379 -1.57868e-05 10.5936 6.55123e-07Z" fill="url(#paint3_radial_30_630)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75997 15.7811C4.15154 15.8134 4.66139 15.8143 5.42797 15.8143H7.45241C8.15141 15.8143 8.61627 15.8136 8.97437 15.7866C9.32141 15.7604 9.48056 15.7141 9.58022 15.6679C9.92652 15.5075 10.2043 15.2269 10.3632 14.8773C10.4089 14.7766 10.4548 14.6159 10.4807 14.2655C10.5074 13.9039 10.5082 13.4344 10.5082 12.7286H12.6726L12.6726 12.7685C12.6727 13.4239 12.6727 13.9755 12.6392 14.4282C12.6042 14.9012 12.5284 15.3532 12.3306 15.7886C11.9556 16.6139 11.3 17.276 10.4827 17.6546C10.0516 17.8543 9.60392 17.9309 9.13551 17.9662C8.68721 18 8.14102 18 7.4919 18L5.3846 18C4.67281 18 4.07394 18 3.58371 17.9596C3.07093 17.9173 2.58248 17.8253 2.11851 17.5866C1.41177 17.223 0.837174 16.6427 0.477072 15.9291C0.240667 15.4605 0.14961 14.9673 0.107713 14.4495C0.0676594 13.9544 0.0676737 13.3497 0.0676899 12.6309V10.6405C0.0676737 9.92173 0.0676594 9.31697 0.107713 8.82193C0.14961 8.30412 0.240668 7.81088 0.477072 7.34236C0.837174 6.62869 1.41177 6.04846 2.11851 5.68482C2.58248 5.4461 3.07093 5.35415 3.58372 5.31184C4.07395 5.27139 4.67283 5.27141 5.38463 5.27143H11.5904C12.1881 5.27143 12.6726 5.76071 12.6726 6.36428C12.6726 6.96785 12.1881 7.45714 11.5904 7.45714H5.42798C4.66139 7.45714 4.15154 7.45799 3.75997 7.4903C3.38104 7.52156 3.20915 7.57675 3.10117 7.63231C2.8017 7.78639 2.55823 8.03225 2.40564 8.33465C2.35062 8.4437 2.29597 8.61727 2.26501 8.99992C2.23302 9.39533 2.23218 9.91018 2.23218 10.6843V12.5871C2.23218 13.3612 2.23302 13.8761 2.26501 14.2715C2.29597 14.6541 2.35062 14.8277 2.40564 14.9368C2.55823 15.2392 2.8017 15.485 3.10117 15.6391C3.20915 15.6947 3.38104 15.7499 3.75997 15.7811Z" fill="url(#paint4_linear_30_630)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.75997 15.7811C4.15154 15.8134 4.66139 15.8143 5.42797 15.8143H7.45241C8.15141 15.8143 8.61627 15.8136 8.97437 15.7866C9.32141 15.7604 9.48056 15.7141 9.58022 15.6679C9.92652 15.5075 10.2043 15.2269 10.3632 14.8773C10.4089 14.7766 10.4548 14.6159 10.4807 14.2655C10.5074 13.9039 10.5082 13.4344 10.5082 12.7286H12.6726L12.6726 12.7685C12.6727 13.4239 12.6727 13.9755 12.6392 14.4282C12.6042 14.9012 12.5284 15.3532 12.3306 15.7886C11.9556 16.6139 11.3 17.276 10.4827 17.6546C10.0516 17.8543 9.60392 17.9309 9.13551 17.9662C8.68721 18 8.14102 18 7.4919 18L5.3846 18C4.67281 18 4.07394 18 3.58371 17.9596C3.07093 17.9173 2.58248 17.8253 2.11851 17.5866C1.41177 17.223 0.837174 16.6427 0.477072 15.9291C0.240667 15.4605 0.14961 14.9673 0.107713 14.4495C0.0676594 13.9544 0.0676737 13.3497 0.0676899 12.6309V10.6405C0.0676737 9.92173 0.0676594 9.31697 0.107713 8.82193C0.14961 8.30412 0.240668 7.81088 0.477072 7.34236C0.837174 6.62869 1.41177 6.04846 2.11851 5.68482C2.58248 5.4461 3.07093 5.35415 3.58372 5.31184C4.07395 5.27139 4.67283 5.27141 5.38463 5.27143H11.5904C12.1881 5.27143 12.6726 5.76071 12.6726 6.36428C12.6726 6.96785 12.1881 7.45714 11.5904 7.45714H5.42798C4.66139 7.45714 4.15154 7.45799 3.75997 7.4903C3.38104 7.52156 3.20915 7.57675 3.10117 7.63231C2.8017 7.78639 2.55823 8.03225 2.40564 8.33465C2.35062 8.4437 2.29597 8.61727 2.26501 8.99992C2.23302 9.39533 2.23218 9.91018 2.23218 10.6843V12.5871C2.23218 13.3612 2.23302 13.8761 2.26501 14.2715C2.29597 14.6541 2.35062 14.8277 2.40564 14.9368C2.55823 15.2392 2.8017 15.485 3.10117 15.6391C3.20915 15.6947 3.38104 15.7499 3.75997 15.7811Z" fill="url(#paint5_radial_30_630)"/>
</g>
<defs>
<linearGradient id="paint0_linear_30_630" x1="8.60677" y1="12.6297" x2="8.75136" y2="-0.016212" gradientUnits="userSpaceOnUse">
<stop offset="0.43118" stop-color="#498FFD"/>
<stop offset="1" stop-color="#16D1D6"/>
</linearGradient>
<radialGradient id="paint1_radial_30_630" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(5.11938 3.85385) rotate(-15.5605) scale(8.17868 8.16021)">
<stop stop-color="#18CFD7"/>
<stop offset="1" stop-color="#18CFD7" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint2_radial_30_630" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.8984 7.46745) rotate(152.373) scale(3.06146 3.05526)">
<stop stop-color="#4990FE"/>
<stop offset="0.353962" stop-color="#4990FE"/>
<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_30_630" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(6.15268 11.5973) rotate(-45.9158) scale(5.56964 5.56109)">
<stop stop-color="#4990FE"/>
<stop offset="0.405688" stop-color="#4990FE"/>
<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint4_linear_30_630" x1="12.7397" y1="18.0501" x2="12.7862" y2="5.14458" gradientUnits="userSpaceOnUse">
<stop stop-color="#2950FF"/>
<stop offset="0.821717" stop-color="#498FFD"/>
</linearGradient>
<radialGradient id="paint5_radial_30_630" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.7397 12.6297) rotate(129.312) scale(5.50455 5.44751)">
<stop offset="0.337169" stop-color="#2950FF"/>
<stop offset="0.792226" stop-color="#2950FF" stop-opacity="0"/>
</radialGradient>
<clipPath id="clip0_30_630">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

BIN
public/social-banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

16
public/ui/featured.svg Normal file
View file

@ -0,0 +1,16 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="8" cy="8" r="8" fill="#D9D9D9"/>
<circle cx="8" cy="8" r="8" fill="url(#paint0_radial_3027_8265)"/>
<g clip-path="url(#clip0_3027_8265)">
<path d="M8 3.25L9.46946 6.22746L12.7553 6.70492L10.3776 9.02254L10.9389 12.2951L8 10.75L5.06107 12.2951L5.62236 9.02254L3.24472 6.70492L6.53054 6.22746L8 3.25Z" fill="white"/>
</g>
<defs>
<radialGradient id="paint0_radial_3027_8265" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="rotate(45) scale(22.6274 39.2097)">
<stop stop-color="#A366FF"/>
<stop offset="1" stop-color="#601FFF"/>
</radialGradient>
<clipPath id="clip0_3027_8265">
<rect width="10" height="10" fill="white" transform="translate(3 3)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 803 B

11
public/ui/whitelisted.svg Normal file
View file

@ -0,0 +1,11 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="8" cy="8" r="8" fill="#1F8FEB"/>
<circle cx="8" cy="8" r="8" fill="url(#paint0_radial_2734_8770)"/>
<path d="M4.25 8L6.75 10.5L11.75 5.5" stroke="white" stroke-width="1.5"/>
<defs>
<radialGradient id="paint0_radial_2734_8770" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="rotate(45) scale(22.6274 28.7635)">
<stop stop-color="#16D1D6"/>
<stop offset="1" stop-color="#274CFF"/>
</radialGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 542 B

91
shared/utils.ts Normal file
View file

@ -0,0 +1,91 @@
import Decimal from 'decimal.js';
export function validateTokensInput(input: string | number, decimal_point = 12) {
let inputVal = input;
if (typeof inputVal === 'number') {
inputVal = inputVal.toString();
}
if (inputVal === '') {
return {
valid: false,
error: 'Invalid input',
};
}
inputVal = inputVal.replace(/[^0-9.,]/g, '');
const MAX_NUMBER = new Decimal(2).pow(64).minus(1);
if (decimal_point < 0 || decimal_point > 18) {
return {
valid: false,
error: 'Invalid decimal point',
};
}
const dotInput = inputVal.replace(/,/g, '');
const decimalDevider = new Decimal(10).pow(decimal_point);
const maxAllowedNumber = MAX_NUMBER.div(decimalDevider);
const minAllowedNumber = new Decimal(1).div(decimalDevider);
const rounded = (() => {
if (dotInput.replace('.', '').length > 20) {
const decimalParts = dotInput.split('.');
if (decimalParts.length === 2 && decimalParts[1].length > 1) {
const beforeDotLength = decimalParts[0].length;
const roundedInput = new Decimal(dotInput).toFixed(
Math.max(20 - beforeDotLength, 0),
);
if (roundedInput.replace(/./g, '').length <= 20) {
return roundedInput;
}
}
return false;
}
return dotInput;
})();
const decimalsAmount = dotInput.split('.')[1]?.length || 0;
if (decimalsAmount > decimal_point) {
return {
valid: false,
error: 'Invalid amount - too many decimal points',
};
}
if (rounded === false) {
return {
valid: false,
error: 'Invalid amount - number is too big or has too many decimal points',
};
}
const dotInputDecimal = new Decimal(rounded);
if (dotInputDecimal.gt(maxAllowedNumber)) {
return {
valid: false,
error: 'Invalid amount - number is too big',
};
}
if (dotInputDecimal.lt(minAllowedNumber)) {
return {
valid: false,
error: 'Invalid amount - number is too small',
};
}
return {
valid: true,
};
}

View file

@ -0,0 +1,11 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2880_8841)">
<path d="M9 1C13.4183 1 17 4.58173 17 9C17 13.4183 13.4183 17 9 17C4.58173 17 1 13.4183 1 9C1 4.58173 4.58173 1 9 1Z" stroke="#16D1D6" stroke-width="1.5" stroke-miterlimit="10"/>
<path d="M7.84766 12.7288L11.5765 8.99995L7.84766 5.27113" stroke="#16D1D6" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="square"/>
</g>
<defs>
<clipPath id="clip0_2880_8841">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 572 B

View file

@ -0,0 +1,3 @@
<svg width="14" height="18" viewBox="0 0 14 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.49998 16.3334C5.49998 17.1618 6.17155 17.8334 6.99998 17.8334C7.82841 17.8334 8.49998 17.1618 8.49998 16.3334L5.49998 16.3334ZM8.49998 1.66669C8.49998 0.83826 7.82841 0.166687 6.99998 0.166687C6.17155 0.166687 5.49998 0.83826 5.49998 1.66669L8.49998 1.66669ZM1.35126 4.27744C0.768096 4.86583 0.772333 5.81557 1.36073 6.39873C1.94912 6.9819 2.89886 6.97766 3.48203 6.38927L1.35126 4.27744ZM4.01834 3.7173L5.08373 4.77322L4.01834 3.7173ZM9.98161 3.7173L11.047 2.66138L11.047 2.66138L9.98161 3.7173ZM10.5179 6.38927C11.1011 6.97767 12.0508 6.9819 12.6392 6.39874C13.2276 5.81557 13.2319 4.86583 12.6487 4.27744L10.5179 6.38927ZM6.71276 1.68492L6.5231 0.196957L6.5231 0.196957L6.71276 1.68492ZM7.2872 1.68492L7.47686 0.196958L7.47686 0.196958L7.2872 1.68492ZM8.49998 16.3334L8.49998 1.66669L5.49998 1.66669L5.49998 16.3334L8.49998 16.3334ZM3.48203 6.38927L5.08373 4.77322L2.95296 2.66138L1.35126 4.27744L3.48203 6.38927ZM8.91623 4.77322L10.5179 6.38927L12.6487 4.27744L11.047 2.66138L8.91623 4.77322ZM5.08373 4.77322C5.74722 4.10378 6.15721 3.69333 6.49188 3.42456C6.80289 3.1748 6.90024 3.17316 6.90242 3.17288L6.5231 0.196957C5.74685 0.295899 5.13566 0.666063 4.61339 1.08549C4.11479 1.48591 3.56679 2.04205 2.95296 2.66138L5.08373 4.77322ZM11.047 2.66138C10.4332 2.04205 9.88516 1.48591 9.38657 1.08549C8.8643 0.666063 8.25311 0.2959 7.47686 0.196958L7.09754 3.17288C7.09972 3.17316 7.19707 3.1748 7.50807 3.42456C7.84274 3.69333 8.25274 4.10378 8.91623 4.77322L11.047 2.66138ZM6.90241 3.17288C6.96721 3.16462 7.03275 3.16462 7.09754 3.17288L7.47686 0.196958C7.16021 0.156597 6.83975 0.156597 6.5231 0.196957L6.90241 3.17288Z" fill="white" fill-opacity="0.7"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 2L12 8L6 14" stroke="#1F8FEB" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 211 B

View file

@ -0,0 +1,3 @@
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.5 1.5L9 6L4.5 10.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

View file

@ -0,0 +1,3 @@
<svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.3337 7.00001C16.8859 7.00001 17.3337 6.55229 17.3337 6.00001C17.3337 5.44772 16.8859 5.00001 16.3337 5.00001V7.00001ZM1.66699 5.00001C1.11471 5.00001 0.666993 5.44772 0.666993 6.00001C0.666993 6.55229 1.11471 7.00001 1.66699 7.00001L1.66699 5.00001ZM4.62971 11.2936C5.02198 11.6824 5.65513 11.6795 6.04391 11.2873C6.43269 10.895 6.42987 10.2619 6.0376 9.87309L4.62971 11.2936ZM3.7176 8.98164L4.42155 8.27139V8.27139L3.7176 8.98164ZM3.7176 3.01837L3.01366 2.30812V2.30812L3.7176 3.01837ZM6.0376 2.12693C6.42987 1.73815 6.43269 1.10499 6.04391 0.712727C5.65514 0.320464 5.02198 0.317639 4.62971 0.706417L6.0376 2.12693ZM1.68522 6.28723L0.69325 6.41367L0.69325 6.41367L1.68522 6.28723ZM1.68522 5.71278L0.69325 5.58634L0.69325 5.58635L1.68522 5.71278ZM16.3337 5.00001L1.66699 5.00001L1.66699 7.00001L16.3337 7.00001V5.00001ZM6.0376 9.87309L4.42155 8.27139L3.01366 9.6919L4.62971 11.2936L6.0376 9.87309ZM4.42155 3.72863L6.0376 2.12693L4.62971 0.706417L3.01366 2.30812L4.42155 3.72863ZM4.42155 8.27139C3.76046 7.61617 3.32574 7.18317 3.03502 6.82118C2.75698 6.47497 2.69392 6.29198 2.6772 6.16079L0.69325 6.41367C0.775748 7.0609 1.08449 7.58646 1.47564 8.07351C1.85412 8.54479 2.38597 9.06979 3.01366 9.6919L4.42155 8.27139ZM3.01366 2.30812C2.38597 2.93023 1.85412 3.45522 1.47564 3.9265C1.08449 4.41355 0.775748 4.93911 0.69325 5.58634L2.6772 5.83922C2.69392 5.70803 2.75698 5.52504 3.03502 5.17883C3.32574 4.81684 3.76046 4.38384 4.42155 3.72863L3.01366 2.30812ZM2.6772 6.16079C2.66359 6.05402 2.66359 5.94599 2.6772 5.83922L0.69325 5.58635C0.65824 5.86102 0.65824 6.13899 0.69325 6.41367L2.6772 6.16079Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,4 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="3.50977" y="24.7227" width="30" height="2.5" rx="1.25" transform="rotate(-45 3.50977 24.7227)" fill="white"/>
<rect x="5.27734" y="3.50951" width="30" height="2.5" rx="1.25" transform="rotate(45 5.27734 3.50951)" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 340 B

View file

@ -0,0 +1,3 @@
<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.25 12.25L1 7L6.25 1.75" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 218 B

View file

@ -0,0 +1,4 @@
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.499978 5.86421C0.223844 5.86422 0 6.08808 0 6.36421C0 9.57895 0 12.7937 0 16.0084C0 17.2034 0.796678 18 1.9917 18H16.0102C17.2067 18 18.0019 17.2049 18.0019 16.0123C18.0019 12.796 18.0019 9.57974 18.0019 6.36348C18.0019 6.08733 17.778 5.86347 17.5018 5.86349L0.499978 5.86421ZM12.6862 8.60846C12.6863 8.33238 12.9101 8.10862 13.1862 8.10862H14.4913C14.7675 8.10862 14.9913 8.33248 14.9913 8.60862V9.90663C14.9913 10.1828 14.7675 10.4066 14.4913 10.4066H13.1857C12.9095 10.4066 12.6856 10.1827 12.6857 9.90647L12.6862 8.60846ZM3.01052 8.60862C3.01052 8.33248 3.23438 8.10862 3.51052 8.10862H4.80863C5.08478 8.10862 5.30863 8.33248 5.30863 8.60862V9.91736C5.30863 10.1935 5.08478 10.4174 4.80863 10.4174H3.51052C3.23438 10.4174 3.01052 10.1935 3.01052 9.91736V8.60862ZM5.31383 14.7836C5.31392 15.0598 5.09004 15.2838 4.81383 15.2838H3.50669C3.23055 15.2838 3.00669 15.0599 3.00669 14.7838V13.4858C3.00669 13.2096 3.23055 12.9858 3.50669 12.9858H4.8134C5.08947 12.9858 5.3133 13.2095 5.3134 13.4856L5.31383 14.7836ZM10.1452 14.7836C10.1453 15.0598 9.92143 15.2838 9.64522 15.2838H8.35111C8.07497 15.2838 7.85111 15.0599 7.85111 14.7838V13.4896C7.85111 13.2135 8.07497 12.9896 8.35111 12.9896H9.64479C9.92087 12.9896 10.1447 13.2134 10.1448 13.4894L10.1452 14.7836ZM10.1498 9.90341C10.1499 10.1796 9.92603 10.4036 9.64982 10.4036H8.35571C8.07956 10.4036 7.85571 10.1797 7.85571 9.90357V8.60556C7.85571 8.32942 8.07956 8.10556 8.35571 8.10556H9.64939C9.92546 8.10556 10.1493 8.32932 10.1494 8.60539L10.1498 9.90341ZM14.9965 14.7829C14.9966 15.0591 14.7727 15.283 14.4965 15.283H13.184C12.9079 15.283 12.684 15.0592 12.684 14.783V13.4934C12.684 13.2173 12.9079 12.9934 13.184 12.9934H14.4961C14.7722 12.9934 14.996 13.2172 14.9961 13.4933L14.9965 14.7829Z" fill="white"/>
<path d="M18.0016 4.42434C18.0017 4.70048 17.7778 4.92434 17.5017 4.92434H0.532752C0.25661 4.92434 0.0308556 4.70047 0.0225602 4.42446C0.0121582 4.07834 0.00279426 3.73699 0.0442445 3.40229C0.149191 2.55969 0.904501 1.89709 1.75557 1.87028C2.60663 1.84347 3.45234 1.86186 4.30187 1.86032H4.54701C4.5516 1.78372 4.5585 1.72551 4.5585 1.66499C4.5585 1.26284 4.5585 0.860687 4.5585 0.458534C4.5585 0.142175 4.70098 -0.00106812 5.01122 -0.00106812C5.25329 -0.00106812 5.49612 -0.00106812 5.73819 -0.00106812C6.04001 -0.00106812 6.18709 0.141409 6.19169 0.442449C6.19629 0.838473 6.19169 1.23373 6.19169 1.62976C6.19169 1.6987 6.19169 1.76764 6.19169 1.8496H11.7968C11.7968 1.78066 11.8083 1.71325 11.8083 1.64661C11.8083 1.25748 11.8083 0.867581 11.8083 0.478451C11.8083 0.138345 11.9485 0.000463893 12.2832 -0.00106812C12.5199 -0.00106812 12.7559 -0.00106812 12.9918 -0.00106812C13.2936 -0.00106812 13.4399 0.144472 13.4415 0.44398C13.4415 0.846132 13.4415 1.24828 13.4415 1.65044V1.86262H13.6628C14.4549 1.86262 15.2462 1.86262 16.0376 1.86262C17.2004 1.86262 17.9986 2.66233 18.0009 3.82129C18.0013 4.02177 18.0015 4.22202 18.0016 4.42434Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,3 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.33333 20.6667C5.78105 20.6667 5.33333 21.1144 5.33333 21.6667C5.33333 22.219 5.78105 22.6667 6.33333 22.6667L6.33333 20.6667ZM23.6667 21.6667L23.6667 20.6667L23.6667 21.6667ZM19.0454 26.2164C18.6126 26.5596 18.54 27.1885 18.8831 27.6213C19.2262 28.0541 19.8552 28.1267 20.288 27.7836L19.0454 26.2164ZM22.0173 25.1362L22.6386 25.9198L22.0173 25.1362ZM22.0173 18.1971L21.396 18.9807L22.0173 18.1971ZM20.288 15.5498C19.8552 15.2066 19.2262 15.2793 18.8831 15.712C18.54 16.1448 18.6126 16.7738 19.0454 17.1169L20.288 15.5498ZM24.9735 22.0009L25.961 22.1582L25.961 22.1582L24.9735 22.0009ZM24.9735 21.3324L25.961 21.1751L25.961 21.1751L24.9735 21.3324ZM23.6667 9.33334C24.219 9.33334 24.6667 8.88562 24.6667 8.33334C24.6667 7.78105 24.219 7.33334 23.6667 7.33334L23.6667 9.33334ZM6.33333 8.33334L6.33333 9.33334L6.33333 9.33334L6.33333 8.33334ZM9.71204 14.4502C10.1448 14.7934 10.7738 14.7207 11.1169 14.288C11.46 13.8552 11.3874 13.2262 10.9546 12.8831L9.71204 14.4502ZM7.98271 11.8029L7.36141 12.5865L7.98271 11.8029ZM7.98271 4.8638L7.36141 4.08022L7.98271 4.8638ZM10.9546 3.78358C11.3874 3.44045 11.46 2.81147 11.1169 2.37871C10.7738 1.94596 10.1448 1.8733 9.71204 2.21643L10.9546 3.78358ZM5.02652 8.66756L4.03897 8.8249L4.03897 8.8249L5.02652 8.66756ZM5.02652 7.99912L4.03897 7.84177L4.03897 7.84178L5.02652 7.99912ZM6.33333 22.6667L23.6667 22.6667L23.6667 20.6667L6.33333 20.6667L6.33333 22.6667ZM20.288 27.7836L22.6386 25.9198L21.396 24.3526L19.0454 26.2164L20.288 27.7836ZM22.6386 17.4136L20.288 15.5498L19.0454 17.1169L21.396 18.9807L22.6386 17.4136ZM22.6386 25.9198C23.5567 25.1918 24.3136 24.5937 24.85 24.0593C25.3909 23.5205 25.8393 22.9225 25.961 22.1582L23.9859 21.8435C23.9634 21.9851 23.871 22.2116 23.4385 22.6424C23.0015 23.0776 22.3524 23.5943 21.396 24.3526L22.6386 25.9198ZM21.396 18.9807C22.3524 19.7391 23.0015 20.2557 23.4385 20.691C23.871 21.1218 23.9634 21.3482 23.9859 21.4898L25.961 21.1751C25.8393 20.4109 25.3909 19.8128 24.85 19.274C24.3136 18.7397 23.5567 18.1415 22.6386 17.4136L21.396 18.9807ZM23.6667 7.33334L6.33333 7.33334L6.33333 9.33334L23.6667 9.33334L23.6667 7.33334ZM10.9546 12.8831L8.604 11.0193L7.36141 12.5865L9.71204 14.4502L10.9546 12.8831ZM8.604 5.64738L10.9546 3.78358L9.71204 2.21643L7.36141 4.08022L8.604 5.64738ZM8.604 11.0193C7.64757 10.2609 6.99845 9.74431 6.56151 9.30905C6.12903 8.87824 6.03662 8.6518 6.01406 8.51022L4.03897 8.8249C4.16074 9.58913 4.60913 10.1872 5.15002 10.726C5.68645 11.2603 6.44327 11.8585 7.36141 12.5865L8.604 11.0193ZM7.36141 4.08022C6.44327 4.80821 5.68645 5.40633 5.15002 5.94069C4.60913 6.4795 4.16074 7.07755 4.03897 7.84177L6.01406 8.15646C6.03662 8.01488 6.12904 7.78843 6.56151 7.35763C6.99846 6.92236 7.64757 6.40573 8.604 5.64738L7.36141 4.08022ZM6.01406 8.51022C6.00464 8.4511 6 8.39208 6 8.33334L4 8.33334C4 8.49785 4.01303 8.66209 4.03897 8.8249L6.01406 8.51022ZM6 8.33334C6 8.2746 6.00464 8.21558 6.01406 8.15646L4.03897 7.84178C4.01303 8.00459 4 8.16883 4 8.33334L6 8.33334ZM6.33333 7.33334L5 7.33334L5 9.33334L6.33333 9.33334L6.33333 7.33334ZM25.961 22.1582C25.987 21.9954 26 21.8312 26 21.6667L24 21.6667C24 21.7254 23.9954 21.7844 23.9859 21.8435L25.961 22.1582ZM26 21.6667C26 21.5022 25.987 21.3379 25.961 21.1751L23.9859 21.4898C23.9954 21.5489 24 21.6079 24 21.6667L26 21.6667ZM23.6667 22.6667L25 22.6667L25 20.6667L23.6667 20.6667L23.6667 22.6667Z" fill="#FAFAFA"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,3 @@
<svg width="324" height="52" viewBox="0 0 324 52" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 45.0556V45.0556C7.79599 41.1396 15.3903 41.1396 21.1863 45.0556L25.2976 47.8333C29.0236 50.3507 33.9057 50.3507 37.6317 47.8333L41.743 45.0556C42.985 44.2164 44.6124 44.2164 45.8544 45.0556V45.0556C47.0964 45.8947 48.7237 45.8947 49.9657 45.0556L67.439 33.25C70.13 31.4319 73.6559 31.4319 76.3469 33.25V33.25C79.0379 35.0681 82.5638 35.0681 85.2548 33.25L89.2887 30.5245C91.7954 28.8309 94.7514 27.9259 97.7766 27.9259H102.971C105.492 27.9259 107.956 27.1718 110.045 25.7604V25.7604C114.318 22.8731 119.918 22.8731 124.191 25.7604L128.62 28.7525C131.395 30.6276 134.668 31.6296 138.017 31.6296V31.6296C141.367 31.6296 144.639 32.6316 147.415 34.5067L151.349 37.1652C154.495 39.2903 158.204 40.4259 162 40.4259V40.4259C165.796 40.4259 169.505 39.2903 172.651 37.1652L186.815 27.5954C190.515 25.0952 194.879 23.7593 199.345 23.7593V23.7593C203.811 23.7593 208.174 22.4233 211.875 19.9231L213.088 19.1034C217.529 16.1032 222.765 14.5 228.124 14.5H231.447C234.641 14.5 237.761 13.5447 240.407 11.757V11.757C245.82 8.09973 252.912 8.09973 258.326 11.757L274.171 22.4629C276.761 24.213 279.816 25.1481 282.942 25.1481V25.1481C286.068 25.1481 289.123 24.213 291.713 22.4629L322 2" stroke="#16D1D6" stroke-width="4" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,10 @@
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1511_3610)">
<path d="M8.51448 2.791e-07C6.25813 -0.000577216 4.09386 0.895052 2.49729 2.49006C0.900725 4.08506 0.00249547 6.24895 0 8.50616C0.0238988 13.195 3.74849 16.9594 8.41092 17C9.53473 17.0139 10.6501 16.8043 11.6922 16.3834C12.7344 15.9625 13.6826 15.3386 14.4817 14.548C15.2808 13.7574 15.9149 12.8159 16.3472 11.7781C16.7795 10.7402 17.0014 9.62685 17 8.50253C17.0094 3.84049 13.1747 2.791e-07 8.51448 2.791e-07ZM11.0304 11.5606C10.9032 11.6033 10.7665 11.6094 10.636 11.5781C10.5055 11.5469 10.3865 11.4795 10.2924 11.3838C9.50399 10.6028 8.71895 9.81796 7.93729 9.02924C7.86493 8.95197 7.80921 8.86065 7.77358 8.76095C7.73795 8.66125 7.72318 8.5553 7.73017 8.44965C7.73017 7.69474 7.73017 6.94055 7.73017 6.18636C7.73017 5.40175 7.7251 4.61713 7.73017 3.83324C7.73356 3.66569 7.79285 3.50408 7.89862 3.37412C8.00439 3.24416 8.15056 3.1533 8.31388 3.116C8.65353 3.03559 9.02433 3.18845 9.16917 3.50505C9.23164 3.65405 9.26247 3.81441 9.25969 3.97596C9.26693 5.31578 9.26693 6.65559 9.25969 7.9954C9.25669 8.05442 9.26683 8.11337 9.28937 8.16799C9.31192 8.22262 9.3463 8.27155 9.39005 8.31127C10.0418 8.95606 10.6902 9.60447 11.3353 10.2565C11.7763 10.697 11.6076 11.3961 11.0304 11.5606Z" fill="white" fill-opacity="0.7"/>
</g>
<defs>
<clipPath id="clip0_1511_3610">
<rect width="17" height="17" fill="none"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.688 6.75h13.5l-3.376-3.375M16.313 11.25h-13.5l3.374 3.375" stroke="#1F8FEB" stroke-width="1.5" stroke-linecap="square"></path></svg>

After

Width:  |  Height:  |  Size: 239 B

View file

@ -0,0 +1,6 @@
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.6">
<rect x="3.39355" y="26.0208" width="2" height="32" rx="1" transform="rotate(-135 3.39355 26.0208)" fill="white"/>
<rect x="1.97949" y="3.3934" width="2" height="32" rx="1" transform="rotate(-45 1.97949 3.3934)" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 353 B

View file

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.222656" y="1.63611" width="2" height="20" rx="1" transform="rotate(-45 0.222656 1.63611)" fill="white"/>
<rect x="14.3652" y="0.221924" width="2" height="20" rx="1" transform="rotate(45 14.3652 0.221924)" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 334 B

View file

@ -0,0 +1,4 @@
<svg width="22" height="27" viewBox="0 0 22 27" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.8186 17.3306L19.1465 14.9744C19.2474 14.2494 19.3396 13.5866 19.4216 12.9787C19.5901 11.7293 19.6744 11.1046 19.3008 10.6773C18.9273 10.25 18.2852 10.25 17.0012 10.25H4.99881C3.71478 10.25 3.07276 10.25 2.69922 10.6773C2.32568 11.1046 2.40992 11.7293 2.5784 12.9787C2.66041 13.5868 2.75258 14.2491 2.85351 14.9744L3.18143 17.3307C3.53783 19.8916 3.71603 21.172 4.09387 22.2004C4.80043 24.1235 6.02179 25.5559 7.47957 26.171C8.25913 26.5 9.17277 26.5 11 26.5C12.8273 26.5 13.7409 26.5 14.5205 26.171C15.9782 25.5559 17.1996 24.1235 17.9062 22.2004C18.284 21.172 18.4622 19.8916 18.8186 17.3306ZM9.4375 12.75C9.4375 12.2322 9.01777 11.8125 8.5 11.8125C7.98223 11.8125 7.5625 12.2322 7.5625 12.75V22.75C7.5625 23.2678 7.98223 23.6875 8.5 23.6875C9.01777 23.6875 9.4375 23.2678 9.4375 22.75V12.75ZM14.4375 12.75C14.4375 12.2322 14.0178 11.8125 13.5 11.8125C12.9822 11.8125 12.5625 12.2322 12.5625 12.75V22.75C12.5625 23.2678 12.9822 23.6875 13.5 23.6875C14.0178 23.6875 14.4375 23.2678 14.4375 22.75V12.75Z" fill="white"/>
<path d="M11 0.5625C7.72081 0.5625 5.0625 3.22081 5.0625 6.5V6.8125H1C0.482233 6.8125 0.0625 7.23223 0.0625 7.75C0.0625 8.26777 0.482233 8.6875 1 8.6875H21C21.5178 8.6875 21.9375 8.26777 21.9375 7.75C21.9375 7.23223 21.5178 6.8125 21 6.8125H16.9375V6.5C16.9375 3.22081 14.2792 0.5625 11 0.5625Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="19" viewBox="0 0 24 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 9L8.66667 16L22 2" stroke="#1F8FEB" stroke-width="3" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 193 B

View file

@ -0,0 +1,6 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.6">
<rect x="2.18152" y="16.7275" width="1.28571" height="20.5714" rx="0.642857" transform="rotate(-135 2.18152 16.7275)" fill="white"/>
<rect x="1.27258" y="2.18164" width="1.28571" height="20.5714" rx="0.642857" transform="rotate(-45 1.27258 2.18164)" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 391 B

View file

@ -0,0 +1,10 @@
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1511_3629)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.50002 17C3.80561 17 3.89008e-05 13.1944 3.93112e-05 8.49998C3.97216e-05 3.80557 3.80561 -1.15349e-06 8.50002 -7.43092e-07C13.1944 -3.32694e-07 17 3.80557 17 8.49998C17 13.1944 13.1944 17 8.50002 17ZM7.86252 5.09999C7.86252 4.74791 8.14794 4.46249 8.50002 4.46249C8.8521 4.46249 9.13752 4.74791 9.13752 5.09999L9.13752 10.9958C9.1496 10.9863 9.16193 10.9766 9.1745 10.9665C9.44873 10.7462 9.77474 10.4187 10.2591 9.93003L11.4472 8.73121C11.6951 8.48115 12.0987 8.47935 12.3488 8.72719C12.5988 8.97504 12.6006 9.37868 12.3528 9.62874L11.1387 10.8537C10.687 11.3095 10.3103 11.6896 9.97286 11.9606C9.6189 12.2448 9.2469 12.4611 8.79369 12.5188C8.6962 12.5313 8.59811 12.5375 8.50002 12.5375C8.40193 12.5375 8.30384 12.5313 8.20635 12.5188C7.75313 12.4611 7.38114 12.2448 7.02718 11.9606C6.68971 11.6896 6.31301 11.3095 5.86133 10.8537L4.64724 9.62874C4.3994 9.37867 4.4012 8.97504 4.65126 8.72719C4.90133 8.47935 5.30497 8.48115 5.55281 8.73121L6.74098 9.93003C7.2253 10.4187 7.55131 10.7462 7.82554 10.9665C7.83811 10.9766 7.85044 10.9863 7.86252 10.9958L7.86252 5.09999Z" fill="white" fill-opacity="0.7"/>
</g>
<defs>
<clipPath id="clip0_1511_3629">
<rect width="17" height="17" fill="white" transform="translate(17 17) rotate(-180)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19 8.5L12 15.5L5 8.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

View file

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19 8.5L12 15.5L5 8.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 216 B

View file

@ -0,0 +1,4 @@
<svg width="20" height="25" viewBox="0 0 20 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.3613 1.8178L15.4848 1.88911C16.5519 2.50516 17.4418 3.01888 18.0934 3.52169C18.7811 4.05242 19.3269 4.66159 19.5556 5.51486C19.7842 6.36812 19.6161 7.16861 19.2858 7.9721C19.0566 8.5298 18.7196 9.15651 18.3134 9.87138L17.4422 9.35353L17.4309 9.34694L7.93355 3.86363L7.04537 3.34015C7.45691 2.63924 7.82772 2.04058 8.19278 1.56752C8.7235 0.879781 9.33267 0.333923 10.1859 0.105292C11.0392 -0.12334 11.8397 0.0448006 12.6432 0.375035C13.4044 0.687901 14.2942 1.20168 15.3613 1.8178Z" fill="white"/>
<path d="M6.01486 5.1206L1.24516 13.3818C0.836769 14.0878 0.513859 14.6461 0.394223 15.281C0.274588 15.916 0.372214 16.5535 0.495683 17.3597L0.528948 17.5776C0.756856 19.0743 0.944711 20.3079 1.22804 21.2435C1.52437 22.2219 1.97988 23.0687 2.87578 23.586C3.77168 24.1032 4.73285 24.0743 5.72834 23.8417C6.68018 23.6193 7.84249 23.1652 9.25261 22.6142L9.45797 22.5341C10.2179 22.2379 10.8188 22.0037 11.3089 21.5826C11.7989 21.1615 12.1209 20.6027 12.5282 19.8961L17.2866 11.6541L16.3967 11.1252L6.89302 5.63822L6.01486 5.1206Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,4 @@
<svg width="4" height="32" viewBox="0 0 4 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2L2 20" stroke="white" stroke-width="4" stroke-linecap="round"/>
<path d="M2 29L2 30" stroke="white" stroke-width="4" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 256 B

View file

@ -0,0 +1,4 @@
<svg width="22" height="18" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.75 9C8.75 7.75736 9.75736 6.75 11 6.75C12.2426 6.75 13.25 7.75736 13.25 9C13.25 10.2426 12.2426 11.25 11 11.25C9.75736 11.25 8.75 10.2426 8.75 9Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.35173 2.59572C6.92325 1.30899 8.85905 0.25 11 0.25C13.141 0.25 15.0768 1.30899 16.6483 2.59572C18.2284 3.88946 19.5204 5.47865 20.3886 6.68801L20.4602 6.78759C20.9829 7.51384 21.4131 8.11166 21.4131 9C21.4131 9.88835 20.9829 10.4862 20.4602 11.2124L20.3886 11.312C19.5204 12.5214 18.2284 14.1105 16.6483 15.4043C15.0768 16.691 13.141 17.75 11 17.75C8.85905 17.75 6.92325 16.691 5.35173 15.4043C3.77164 14.1105 2.47962 12.5214 1.61142 11.312L1.53981 11.2124C1.01715 10.4862 0.586914 9.88834 0.586914 9C0.586914 8.11166 1.01715 7.51384 1.53981 6.78759L1.61142 6.68801C2.47962 5.47865 3.77164 3.88946 5.35173 2.59572ZM11 5.25C8.92893 5.25 7.25 6.92893 7.25 9C7.25 11.0711 8.92893 12.75 11 12.75C13.0711 12.75 14.75 11.0711 14.75 9C14.75 6.92893 13.0711 5.25 11 5.25Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,4 @@
<svg width="22" height="18" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.4685 1.58566C21.792 1.3269 21.8444 0.85493 21.5857 0.531483C21.3269 0.208037 20.855 0.155596 20.5315 0.414353L17.2062 3.07461C17.0246 2.91149 16.8385 2.75146 16.6483 2.59572C15.0768 1.309 13.141 0.250005 11 0.250005C8.85908 0.250005 6.92328 1.309 5.35176 2.59572C3.77166 3.88947 2.47965 5.47865 1.61144 6.68802L1.53984 6.78759C1.01718 7.51384 0.586942 8.11166 0.586942 9C0.586942 9.88835 1.01718 10.4862 1.53984 11.2124L1.61144 11.312C2.1561 12.0707 2.86754 12.9788 3.71227 13.8697L0.531506 16.4144C0.20806 16.6731 0.155619 17.1451 0.414376 17.4685C0.673133 17.792 1.1451 17.8444 1.46855 17.5857L21.4685 1.58566ZM7.66178 10.7101L8.87453 9.73994C8.79386 9.5082 8.75003 9.25922 8.75003 9C8.75003 7.75736 9.75739 6.75 11 6.75C11.4362 6.75 11.8434 6.87412 12.1882 7.08897L13.4007 6.11902C12.7503 5.57645 11.9133 5.25 11 5.25C8.92896 5.25 7.25003 6.92894 7.25003 9C7.25003 9.61603 7.39857 10.1974 7.66178 10.7101Z" fill="white"/>
<path d="M19.6952 5.76482L14.6673 9.78714C14.3056 11.4803 12.8011 12.75 11 12.75L10.9639 12.7498L6.54805 16.2825C7.86737 17.1396 9.37457 17.75 11 17.75C13.141 17.75 15.0768 16.691 16.6483 15.4043C18.2284 14.1105 19.5204 12.5214 20.3886 11.312L20.4602 11.2124C20.9829 10.4862 21.4131 9.88835 21.4131 9C21.4131 8.11166 20.9829 7.51384 20.4602 6.7876L20.3886 6.68802C20.1811 6.39892 19.9493 6.08811 19.6952 5.76482Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,10 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3300_17753)">
<path d="M19 1.12592L1 1L7.68022 8.51134V19L12.2566 13.988V8.51134L19 1.12592Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_3300_17753">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 437 B

View file

@ -0,0 +1,3 @@
<svg width="24" height="19" viewBox="0 0 24 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 9L8.66667 16L22 2" stroke="#16D1D6" stroke-width="3" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 193 B

View file

@ -0,0 +1,5 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="13.75" width="30" height="2.5" rx="1.25" fill="white"/>
<rect y="3.75" width="30" height="2.5" rx="1.25" fill="white"/>
<rect y="23.75" width="30" height="2.5" rx="1.25" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 297 B

View file

@ -0,0 +1,4 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.079 28.0199C12.3872 31.0662 3.64753 26.7259 1.43215 18.7414C1.24508 18.024 1.10613 17.295 1.01619 16.5593C0.989738 16.4036 0.995751 16.2442 1.03385 16.091C1.07196 15.9378 1.14134 15.7939 1.23768 15.6685C1.33402 15.5431 1.45527 15.4387 1.59389 15.3619C1.73251 15.285 1.88553 15.2374 2.04345 15.2219C2.74552 15.1556 3.27179 15.5911 3.3752 16.3021C4.02097 20.7738 6.39721 23.9688 10.5752 25.7383C16.2779 28.1513 23.0505 25.4342 25.5749 19.7828C26.2398 18.3193 26.5928 16.7347 26.6119 15.1288C26.631 13.5229 26.3156 11.9305 25.6857 10.4518C25.0557 8.97312 24.1249 7.64018 22.9517 6.53691C21.7786 5.43365 20.3885 4.58395 18.8691 4.04133C14.3452 2.39986 9.03774 3.84815 5.98815 7.55862C5.95253 7.60091 5.92266 7.64777 5.84337 7.75522C6.40181 7.61348 6.87752 7.49117 7.36127 7.37115C8.09437 7.18711 8.72865 7.53575 8.90446 8.21703C9.06992 8.8583 8.68384 9.48243 7.98521 9.66647C6.51902 10.0528 5.05014 10.4316 3.57858 10.8027C2.81216 10.9947 2.17674 10.5021 2.05723 9.65961C1.83738 8.10501 1.61446 6.55079 1.38848 4.99695C1.33633 4.69359 1.40355 4.38189 1.5762 4.1265C1.74884 3.87111 2.01367 3.69162 2.31577 3.62525C2.47049 3.59036 2.63072 3.58711 2.78674 3.6157C2.94276 3.6443 3.09132 3.70413 3.22339 3.79157C3.35545 3.87902 3.46828 3.99225 3.55502 4.12439C3.64175 4.25654 3.70059 4.40484 3.72796 4.56029C3.82103 5.02553 3.87274 5.49991 3.94398 5.97087C3.95318 6.03374 3.96811 6.0966 3.99339 6.21777C4.09566 6.0966 4.1646 6.01316 4.23584 5.932C6.66494 3.14058 9.71454 1.51511 13.4007 1.08988C20.079 0.317155 26.4551 4.49286 28.3878 10.9021C29.4194 14.272 29.1372 17.9048 27.5975 21.077C26.0577 24.2492 23.3734 26.728 20.079 28.0199Z" fill="white"/>
<path d="M19.9755 19.7554C19.7847 19.8363 19.5752 19.863 19.3701 19.8325C19.165 19.8021 18.9725 19.7156 18.8138 19.5828C17.2649 18.359 15.7205 17.129 14.1808 15.8929C14.0429 15.7807 13.9331 15.6381 13.8601 15.4765C13.7871 15.3148 13.7529 15.1384 13.7602 14.9613C13.7602 12.5441 13.7602 10.1261 13.7602 7.7073C13.7553 7.548 13.7825 7.38934 13.8404 7.24072C13.8982 7.0921 13.9855 6.95656 14.097 6.84213C14.2085 6.72771 14.342 6.63674 14.4895 6.57461C14.6371 6.51248 14.7956 6.48047 14.9558 6.48047C15.116 6.48047 15.2746 6.51248 15.4221 6.57461C15.5697 6.63674 15.7032 6.72771 15.8147 6.84213C15.9262 6.95656 16.0134 7.0921 16.0713 7.24072C16.1291 7.38934 16.1564 7.548 16.1514 7.7073C16.1606 8.79209 16.1514 9.87916 16.1514 10.9628C16.1514 12.0282 16.1514 13.0947 16.1514 14.1635C16.1463 14.2468 16.1628 14.33 16.1992 14.4053C16.2356 14.4805 16.2908 14.5452 16.3594 14.5933C17.654 15.6167 18.9452 16.6455 20.2329 17.6796C21.0096 18.298 20.8649 19.4125 19.9755 19.7554Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,3 @@
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.333662 17C0.333662 7.79521 7.79558 0.333292 17.0003 0.333292C26.2051 0.333293 33.667 7.79521 33.667 17C33.667 26.2047 26.2051 33.6666 17.0003 33.6666C7.79558 33.6666 0.333661 26.2047 0.333662 17ZM17.0003 26.5833C16.31 26.5833 15.7503 26.0236 15.7503 25.3333L15.7503 15.3333C15.7503 14.6429 16.31 14.0833 17.0003 14.0833C17.6907 14.0833 18.2503 14.6429 18.2503 15.3333L18.2503 25.3333C18.2503 26.0236 17.6907 26.5833 17.0003 26.5833ZM17.0003 8.66662C16.0799 8.66662 15.3337 9.41282 15.3337 10.3333C15.3337 11.2538 16.0799 12 17.0003 12C17.9208 12 18.667 11.2538 18.667 10.3333C18.667 9.41282 17.9208 8.66662 17.0003 8.66662Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 795 B

View file

@ -0,0 +1,17 @@
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3395_12582)">
<path d="M28 2.88675C31.094 1.10042 34.906 1.10042 38 2.88675L55.7128 13.1132C58.8068 14.8996 60.7128 18.2008 60.7128 21.7735V42.2265C60.7128 45.7992 58.8068 49.1004 55.7128 50.8867L38 61.1133C34.906 62.8996 31.094 62.8996 28 61.1133L10.2872 50.8867C7.19318 49.1004 5.28719 45.7992 5.28719 42.2265V21.7735C5.28719 18.2008 7.19318 14.8996 10.2872 13.1132L28 2.88675Z" fill="#D9D9D9"/>
<path d="M28 2.88675C31.094 1.10042 34.906 1.10042 38 2.88675L55.7128 13.1132C58.8068 14.8996 60.7128 18.2008 60.7128 21.7735V42.2265C60.7128 45.7992 58.8068 49.1004 55.7128 50.8867L38 61.1133C34.906 62.8996 31.094 62.8996 28 61.1133L10.2872 50.8867C7.19318 49.1004 5.28719 45.7992 5.28719 42.2265V21.7735C5.28719 18.2008 7.19318 14.8996 10.2872 13.1132L28 2.88675Z" fill="url(#paint0_radial_3395_12582)"/>
<path d="M30.1249 18.9974C30.0568 17.3626 31.3637 16 33 16C34.6363 16 35.9432 17.3626 35.8751 18.9974L35.0833 38.0017C35.0367 39.1186 34.1178 40 33 40C31.8822 40 30.9633 39.1186 30.9167 38.0017L30.1249 18.9974Z" fill="white"/>
<rect x="31" y="44" width="4" height="4" rx="2" fill="white"/>
</g>
<defs>
<radialGradient id="paint0_radial_3395_12582" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14 7.42857) rotate(47.9649) scale(76.1664 95.4935)">
<stop stop-color="#16D1D6"/>
<stop offset="1" stop-color="#274CFF"/>
</radialGradient>
<clipPath id="clip0_3395_12582">
<rect width="64" height="64" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.833659 9.99999C0.833659 4.93738 4.93772 0.833321 10.0003 0.833322C15.0629 0.833322 19.167 4.93738 19.167 9.99999C19.167 15.0626 15.0629 19.1667 10.0003 19.1667C4.93771 19.1667 0.833659 15.0626 0.833659 9.99999ZM10.0003 15.2708C9.62063 15.2708 9.31283 14.963 9.31283 14.5833L9.31283 9.08332C9.31283 8.70363 9.62063 8.39582 10.0003 8.39582C10.38 8.39582 10.6878 8.70363 10.6878 9.08332L10.6878 14.5833C10.6878 14.963 10.38 15.2708 10.0003 15.2708ZM10.0003 5.41666C9.49407 5.41666 9.08366 5.82706 9.08366 6.33332C9.08366 6.83958 9.49407 7.24999 10.0003 7.24999C10.5066 7.24999 10.917 6.83958 10.917 6.33332C10.917 5.82706 10.5066 5.41666 10.0003 5.41666Z" fill="#1F8FEB"/>
</svg>

After

Width:  |  Height:  |  Size: 825 B

View file

@ -0,0 +1,12 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2717_14922)">
<circle cx="9" cy="9" r="8.25" stroke="#1F8FEB" stroke-width="1.5"/>
<line x1="9" y1="14.5" x2="9" y2="7.5" stroke="#1F8FEB" stroke-width="2"/>
<line x1="9" y1="5.5" x2="9" y2="3.5" stroke="#1F8FEB" stroke-width="2"/>
</g>
<defs>
<clipPath id="clip0_2717_14922">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 469 B

View file

@ -0,0 +1,10 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.6" clip-path="url(#clip0_2281_2905)">
<path d="M9 0C4.02961 0 0 4.02961 0 9C0 13.9704 4.02961 18 9 18C13.9704 18 18 13.9704 18 9C18 4.02961 13.9704 0 9 0ZM10.1398 12.7821C10.1398 12.9318 10.1103 13.08 10.053 13.2183C9.99573 13.3566 9.91177 13.4822 9.80594 13.588C9.7001 13.6939 9.57445 13.7778 9.43617 13.8351C9.29789 13.8924 9.14968 13.9219 9 13.9219C8.85032 13.9219 8.70211 13.8924 8.56383 13.8351C8.42555 13.7778 8.2999 13.6939 8.19406 13.588C8.08823 13.4822 8.00427 13.3566 7.94699 13.2183C7.88972 13.08 7.86023 12.9318 7.86023 12.7821V8.2227C7.86023 8.07302 7.88972 7.92481 7.94699 7.78653C8.00427 7.64824 8.08823 7.5226 8.19406 7.41676C8.2999 7.31092 8.42555 7.22697 8.56383 7.16969C8.70211 7.11241 8.85032 7.08293 9 7.08293C9.14968 7.08293 9.29789 7.11241 9.43617 7.16969C9.57445 7.22697 9.7001 7.31092 9.80594 7.41676C9.91177 7.5226 9.99573 7.64824 10.053 7.78653C10.1103 7.92481 10.1398 8.07302 10.1398 8.2227V12.7821ZM9 6.35766C8.77458 6.35766 8.55421 6.29081 8.36678 6.16557C8.17935 6.04033 8.03326 5.86233 7.94699 5.65406C7.86073 5.4458 7.83816 5.21663 7.88213 4.99553C7.92611 4.77444 8.03467 4.57135 8.19406 4.41195C8.35346 4.25256 8.55655 4.144 8.77764 4.10003C8.99874 4.05605 9.2279 4.07862 9.43617 4.16488C9.64443 4.25115 9.82244 4.39724 9.94768 4.58467C10.0729 4.7721 10.1398 4.99247 10.1398 5.21789C10.1398 5.36758 10.1104 5.51581 10.0531 5.65411C9.99584 5.79242 9.91189 5.91808 9.80604 6.02393C9.70019 6.12978 9.57453 6.21373 9.43622 6.27099C9.29792 6.32825 9.14969 6.3577 9 6.35766Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2281_2905">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,3 @@
<svg width="18" height="20" viewBox="0 0 18 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.72917 5.41671C3.72917 2.50571 6.089 0.145874 9 0.145874C11.911 0.145874 14.2708 2.50571 14.2708 5.41671V6.43761C14.2708 6.49885 14.2628 6.55822 14.2478 6.61473C15.5642 7.09845 16.5903 8.16046 17.0257 9.50038C17.25 10.1908 17.25 11.0439 17.25 12.75C17.25 14.4562 17.25 15.3093 17.0257 15.9997C16.5723 17.395 15.4783 18.489 14.083 18.9424C13.3926 19.1667 12.5395 19.1667 10.8333 19.1667H7.16665C5.46049 19.1667 4.6074 19.1667 3.91701 18.9424C2.52166 18.489 1.4277 17.395 0.974324 15.9997C0.75 15.3093 0.75 14.4562 0.75 12.75C0.75 11.0439 0.75 10.1908 0.974324 9.50038C1.40969 8.16046 2.43578 7.09845 3.7522 6.61473C3.73717 6.55822 3.72917 6.49885 3.72917 6.43761V5.41671ZM5.10417 6.36466C5.62642 6.33337 6.28182 6.33337 7.16667 6.33337H10.8333C11.7182 6.33337 12.3736 6.33337 12.8958 6.36466V5.41671C12.8958 3.2651 11.1516 1.52087 9 1.52087C6.84839 1.52087 5.10417 3.2651 5.10417 5.41671V6.36466ZM9 10.2292C9.3797 10.2292 9.6875 10.537 9.6875 10.9167V14.5834C9.6875 14.9631 9.3797 15.2709 9 15.2709C8.6203 15.2709 8.3125 14.9631 8.3125 14.5834V10.9167C8.3125 10.537 8.6203 10.2292 9 10.2292Z" fill="white" fill-opacity="0.7"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,51 @@
<svg width="244" height="48" viewBox="0 0 244 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.0474871H34.4448C36.3357 0.0474438 37.9266 0.0474066 39.2289 0.154856C40.5912 0.26725 41.8888 0.511532 43.1213 1.14573C44.9988 2.11177 46.5252 3.65324 47.4818 5.5492C48.1099 6.79388 48.3518 8.10424 48.4631 9.47988C48.5695 10.795 48.5694 12.4016 48.5694 14.3112V19.5989C48.5694 21.5085 48.5695 23.1151 48.4631 24.4302C48.3518 25.8058 48.1099 27.1162 47.4818 28.3609C46.5252 30.2568 44.9988 31.7983 43.1213 32.7643C41.8888 33.3985 40.5912 33.6428 39.2289 33.7552C37.9266 33.8627 36.3357 33.8626 34.4448 33.8626H17.9589C16.8009 33.8626 15.756 33.161 15.3079 32.0827C14.8598 31.0044 15.0961 29.7598 15.9073 28.9254L29.5214 14.9211L33.6246 18.989L24.8102 28.056H34.3296C36.3661 28.056 37.7205 28.0537 38.7607 27.9679C39.7674 27.8848 40.224 27.7382 40.5108 27.5906C41.3064 27.1813 41.9532 26.5281 42.3585 25.7247C42.5047 25.435 42.6499 24.9739 42.7321 23.9574C42.8171 22.9069 42.8194 21.5391 42.8194 19.4826V14.4274C42.8194 12.3709 42.8171 11.0032 42.7321 9.95272C42.6499 8.93617 42.5047 8.47504 42.3585 8.18536C41.9532 7.38198 41.3064 6.72882 40.5108 6.31948C40.224 6.17188 39.7674 6.02526 38.7607 5.9422C37.7205 5.85638 36.3661 5.85412 34.3296 5.85412H29.0403C26.9816 5.85412 25.6114 5.8564 24.5597 5.9436C23.5413 6.02805 23.0809 6.17715 22.793 6.3266C21.9927 6.74213 21.3446 7.40469 20.9429 8.2179C20.7984 8.51037 20.6564 8.97707 20.5852 10.0065C20.5117 11.0695 20.5261 12.4531 20.5512 14.532L20.5801 16.9196L14.8305 16.9904L14.8002 14.4856C14.7769 12.5547 14.7572 10.9311 14.8491 9.60191C14.9453 8.21229 15.1746 6.88694 15.7975 5.626C16.7455 3.70683 18.2751 2.14318 20.1639 1.16253C21.4048 0.518217 22.7144 0.27044 24.0892 0.156446C25.4042 0.0474063 27.0121 0.0474434 28.9243 0.0474871Z" fill="url(#paint0_linear_1010_3168)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.0474871H34.4448C36.3357 0.0474438 37.9266 0.0474066 39.2289 0.154856C40.5912 0.26725 41.8888 0.511532 43.1213 1.14573C44.9988 2.11177 46.5252 3.65324 47.4818 5.5492C48.1099 6.79388 48.3518 8.10424 48.4631 9.47988C48.5695 10.795 48.5694 12.4016 48.5694 14.3112V19.5989C48.5694 21.5085 48.5695 23.1151 48.4631 24.4302C48.3518 25.8058 48.1099 27.1162 47.4818 28.3609C46.5252 30.2568 44.9988 31.7983 43.1213 32.7643C41.8888 33.3985 40.5912 33.6428 39.2289 33.7552C37.9266 33.8627 36.3357 33.8626 34.4448 33.8626H17.9589C16.8009 33.8626 15.756 33.161 15.3079 32.0827C14.8598 31.0044 15.0961 29.7598 15.9073 28.9254L29.5214 14.9211L33.6246 18.989L24.8102 28.056H34.3296C36.3661 28.056 37.7205 28.0537 38.7607 27.9679C39.7674 27.8848 40.224 27.7382 40.5108 27.5906C41.3064 27.1813 41.9532 26.5281 42.3585 25.7247C42.5047 25.435 42.6499 24.9739 42.7321 23.9574C42.8171 22.9069 42.8194 21.5391 42.8194 19.4826V14.4274C42.8194 12.3709 42.8171 11.0032 42.7321 9.95272C42.6499 8.93617 42.5047 8.47504 42.3585 8.18536C41.9532 7.38198 41.3064 6.72882 40.5108 6.31948C40.224 6.17188 39.7674 6.02526 38.7607 5.9422C37.7205 5.85638 36.3661 5.85412 34.3296 5.85412H29.0403C26.9816 5.85412 25.6114 5.8564 24.5597 5.9436C23.5413 6.02805 23.0809 6.17715 22.793 6.3266C21.9927 6.74213 21.3446 7.40469 20.9429 8.2179C20.7984 8.51037 20.6564 8.97707 20.5852 10.0065C20.5117 11.0695 20.5261 12.4531 20.5512 14.532L20.5801 16.9196L14.8305 16.9904L14.8002 14.4856C14.7769 12.5547 14.7572 10.9311 14.8491 9.60191C14.9453 8.21229 15.1746 6.88694 15.7975 5.626C16.7455 3.70683 18.2751 2.14318 20.1639 1.16253C21.4048 0.518217 22.7144 0.27044 24.0892 0.156446C25.4042 0.0474063 27.0121 0.0474434 28.9243 0.0474871Z" fill="url(#paint1_radial_1010_3168)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.0474871H34.4448C36.3357 0.0474438 37.9266 0.0474066 39.2289 0.154856C40.5912 0.26725 41.8888 0.511532 43.1213 1.14573C44.9988 2.11177 46.5252 3.65324 47.4818 5.5492C48.1099 6.79388 48.3518 8.10424 48.4631 9.47988C48.5695 10.795 48.5694 12.4016 48.5694 14.3112V19.5989C48.5694 21.5085 48.5695 23.1151 48.4631 24.4302C48.3518 25.8058 48.1099 27.1162 47.4818 28.3609C46.5252 30.2568 44.9988 31.7983 43.1213 32.7643C41.8888 33.3985 40.5912 33.6428 39.2289 33.7552C37.9266 33.8627 36.3357 33.8626 34.4448 33.8626H17.9589C16.8009 33.8626 15.756 33.161 15.3079 32.0827C14.8598 31.0044 15.0961 29.7598 15.9073 28.9254L29.5214 14.9211L33.6246 18.989L24.8102 28.056H34.3296C36.3661 28.056 37.7205 28.0537 38.7607 27.9679C39.7674 27.8848 40.224 27.7382 40.5108 27.5906C41.3064 27.1813 41.9532 26.5281 42.3585 25.7247C42.5047 25.435 42.6499 24.9739 42.7321 23.9574C42.8171 22.9069 42.8194 21.5391 42.8194 19.4826V14.4274C42.8194 12.3709 42.8171 11.0032 42.7321 9.95272C42.6499 8.93617 42.5047 8.47504 42.3585 8.18536C41.9532 7.38198 41.3064 6.72882 40.5108 6.31948C40.224 6.17188 39.7674 6.02526 38.7607 5.9422C37.7205 5.85638 36.3661 5.85412 34.3296 5.85412H29.0403C26.9816 5.85412 25.6114 5.8564 24.5597 5.9436C23.5413 6.02805 23.0809 6.17715 22.793 6.3266C21.9927 6.74213 21.3446 7.40469 20.9429 8.2179C20.7984 8.51037 20.6564 8.97707 20.5852 10.0065C20.5117 11.0695 20.5261 12.4531 20.5512 14.532L20.5801 16.9196L14.8305 16.9904L14.8002 14.4856C14.7769 12.5547 14.7572 10.9311 14.8491 9.60191C14.9453 8.21229 15.1746 6.88694 15.7975 5.626C16.7455 3.70683 18.2751 2.14318 20.1639 1.16253C21.4048 0.518217 22.7144 0.27044 24.0892 0.156446C25.4042 0.0474063 27.0121 0.0474434 28.9243 0.0474871Z" fill="url(#paint2_radial_1010_3168)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.0474871H34.4448C36.3357 0.0474438 37.9266 0.0474066 39.2289 0.154856C40.5912 0.26725 41.8888 0.511532 43.1213 1.14573C44.9988 2.11177 46.5252 3.65324 47.4818 5.5492C48.1099 6.79388 48.3518 8.10424 48.4631 9.47988C48.5695 10.795 48.5694 12.4016 48.5694 14.3112V19.5989C48.5694 21.5085 48.5695 23.1151 48.4631 24.4302C48.3518 25.8058 48.1099 27.1162 47.4818 28.3609C46.5252 30.2568 44.9988 31.7983 43.1213 32.7643C41.8888 33.3985 40.5912 33.6428 39.2289 33.7552C37.9266 33.8627 36.3357 33.8626 34.4448 33.8626H17.9589C16.8009 33.8626 15.756 33.161 15.3079 32.0827C14.8598 31.0044 15.0961 29.7598 15.9073 28.9254L29.5214 14.9211L33.6246 18.989L24.8102 28.056H34.3296C36.3661 28.056 37.7205 28.0537 38.7607 27.9679C39.7674 27.8848 40.224 27.7382 40.5108 27.5906C41.3064 27.1813 41.9532 26.5281 42.3585 25.7247C42.5047 25.435 42.6499 24.9739 42.7321 23.9574C42.8171 22.9069 42.8194 21.5391 42.8194 19.4826V14.4274C42.8194 12.3709 42.8171 11.0032 42.7321 9.95272C42.6499 8.93617 42.5047 8.47504 42.3585 8.18536C41.9532 7.38198 41.3064 6.72882 40.5108 6.31948C40.224 6.17188 39.7674 6.02526 38.7607 5.9422C37.7205 5.85638 36.3661 5.85412 34.3296 5.85412H29.0403C26.9816 5.85412 25.6114 5.8564 24.5597 5.9436C23.5413 6.02805 23.0809 6.17715 22.793 6.3266C21.9927 6.74213 21.3446 7.40469 20.9429 8.2179C20.7984 8.51037 20.6564 8.97707 20.5852 10.0065C20.5117 11.0695 20.5261 12.4531 20.5512 14.532L20.5801 16.9196L14.8305 16.9904L14.8002 14.4856C14.7769 12.5547 14.7572 10.9311 14.8491 9.60191C14.9453 8.21229 15.1746 6.88694 15.7975 5.626C16.7455 3.70683 18.2751 2.14318 20.1639 1.16253C21.4048 0.518217 22.7144 0.27044 24.0892 0.156446C25.4042 0.0474063 27.0121 0.0474434 28.9243 0.0474871Z" fill="url(#paint3_radial_1010_3168)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7713 41.9721C11.8115 42.0579 13.1659 42.0602 15.2024 42.0602H20.5804C22.4373 42.0602 23.6722 42.0583 24.6235 41.9866C25.5454 41.9171 25.9682 41.794 26.233 41.6713C27.1529 41.2452 27.891 40.4999 28.313 39.5708C28.4344 39.3035 28.5563 38.8765 28.6252 37.9455C28.6962 36.9849 28.698 35.7378 28.698 33.8626H34.4481L34.4481 33.9685C34.4481 35.7099 34.4481 37.1752 34.3592 38.3778C34.2663 39.6344 34.0648 40.8353 33.5393 41.992C32.5434 44.1844 30.8016 45.9434 28.6305 46.9491C27.4851 47.4797 26.2959 47.6833 25.0516 47.7771C23.8607 47.8669 22.4097 47.8669 20.6853 47.8668L15.0872 47.8668C13.1963 47.8669 11.6054 47.8669 10.3031 47.7595C8.94084 47.6471 7.64326 47.4028 6.41071 46.7686C4.53323 45.8025 3.00679 44.2611 2.05017 42.3651C1.42215 41.1204 1.18026 39.8101 1.06895 38.4344C0.962551 37.1193 0.962589 35.5127 0.962635 33.6031V28.3154C0.962589 26.4058 0.962551 24.7992 1.06895 23.4841C1.18026 22.1085 1.42215 20.7981 2.05017 19.5534C3.00679 17.6575 4.53323 16.116 6.41071 15.15C7.64326 14.5158 8.94084 14.2715 10.3031 14.1591C11.6054 14.0516 13.1963 14.0517 15.0873 14.0517H31.5731C33.1609 14.0517 34.4481 15.3516 34.4481 16.955C34.4481 18.5585 33.1609 19.8583 31.5731 19.8583H15.2024C13.1659 19.8583 11.8115 19.8606 10.7713 19.9464C9.76466 20.0295 9.30802 20.1761 9.02117 20.3237C8.22562 20.733 7.57883 21.3862 7.17348 22.1896C7.02732 22.4793 6.88213 22.9404 6.79988 23.9569C6.7149 25.0074 6.71266 26.3752 6.71266 28.4317V33.4869C6.71266 35.5434 6.7149 36.9111 6.79988 37.9616C6.88213 38.9781 7.02732 39.4393 7.17348 39.729C7.57883 40.5323 8.22562 41.1855 9.02117 41.5948C9.30803 41.7424 9.76466 41.889 10.7713 41.9721Z" fill="url(#paint4_linear_1010_3168)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7713 41.9721C11.8115 42.0579 13.1659 42.0602 15.2024 42.0602H20.5804C22.4373 42.0602 23.6722 42.0583 24.6235 41.9866C25.5454 41.9171 25.9682 41.794 26.233 41.6713C27.1529 41.2452 27.891 40.4999 28.313 39.5708C28.4344 39.3035 28.5563 38.8765 28.6252 37.9455C28.6962 36.9849 28.698 35.7378 28.698 33.8626H34.4481L34.4481 33.9685C34.4481 35.7099 34.4481 37.1752 34.3592 38.3778C34.2663 39.6344 34.0648 40.8353 33.5393 41.992C32.5434 44.1844 30.8016 45.9434 28.6305 46.9491C27.4851 47.4797 26.2959 47.6833 25.0516 47.7771C23.8607 47.8669 22.4097 47.8669 20.6853 47.8668L15.0872 47.8668C13.1963 47.8669 11.6054 47.8669 10.3031 47.7595C8.94084 47.6471 7.64326 47.4028 6.41071 46.7686C4.53323 45.8025 3.00679 44.2611 2.05017 42.3651C1.42215 41.1204 1.18026 39.8101 1.06895 38.4344C0.962551 37.1193 0.962589 35.5127 0.962635 33.6031V28.3154C0.962589 26.4058 0.962551 24.7992 1.06895 23.4841C1.18026 22.1085 1.42215 20.7981 2.05017 19.5534C3.00679 17.6575 4.53323 16.116 6.41071 15.15C7.64326 14.5158 8.94084 14.2715 10.3031 14.1591C11.6054 14.0516 13.1963 14.0517 15.0873 14.0517H31.5731C33.1609 14.0517 34.4481 15.3516 34.4481 16.955C34.4481 18.5585 33.1609 19.8583 31.5731 19.8583H15.2024C13.1659 19.8583 11.8115 19.8606 10.7713 19.9464C9.76466 20.0295 9.30802 20.1761 9.02117 20.3237C8.22562 20.733 7.57883 21.3862 7.17348 22.1896C7.02732 22.4793 6.88213 22.9404 6.79988 23.9569C6.7149 25.0074 6.71266 26.3752 6.71266 28.4317V33.4869C6.71266 35.5434 6.7149 36.9111 6.79988 37.9616C6.88213 38.9781 7.02732 39.4393 7.17348 39.729C7.57883 40.5323 8.22562 41.1855 9.02117 41.5948C9.30803 41.7424 9.76466 41.889 10.7713 41.9721Z" fill="url(#paint5_radial_1010_3168)"/>
<path d="M78.3378 32.1516V35.1122C78.3378 35.5347 77.9964 35.8798 77.5754 35.8798H61.2969C61.2746 35.8798 61.2496 35.8798 61.2273 35.8773C60.4103 35.8547 59.6923 35.4322 59.2587 34.7973C59.2562 34.7922 59.254 34.7871 59.249 34.7823C59.0509 34.447 58.9371 34.0547 58.9371 33.6319C58.9371 33.1645 59.0781 32.7343 59.3183 32.3742C59.3382 32.3442 59.3581 32.3143 59.3801 32.2866L71.7414 15.006H60.6704C60.252 15.006 59.9102 14.6608 59.9102 14.2357V11.2777C59.9102 10.8527 60.252 10.5075 60.6704 10.5075H76.1861C76.2035 10.5075 76.2208 10.5075 76.2382 10.51C76.2429 10.51 76.2505 10.5075 76.258 10.51C77.1024 10.5326 77.8428 10.9877 78.2685 11.6652C78.2735 11.6729 78.276 11.6776 78.2786 11.6827C78.4517 12.0027 78.5482 12.368 78.5482 12.7555C78.5482 13.2203 78.4072 13.653 78.1669 14.0132C78.1474 14.0431 78.1275 14.0708 78.1051 14.1007L65.7416 31.3839H77.5754C77.9964 31.3839 78.3378 31.7291 78.3378 32.1516Z" fill="white"/>
<path d="M88.7496 32.0767C85.9612 32.0767 83.9335 29.8838 83.9335 26.8507C83.9335 23.78 85.9612 21.5871 88.7496 21.5871C91.5351 21.5871 93.526 23.78 93.526 26.8507C93.526 29.8838 91.5351 32.0767 88.7496 32.0767ZM97.4731 17.8213H94.2887C93.8678 17.8213 93.526 18.1664 93.526 18.5893V20.707C92.0799 18.6616 89.8365 17.4538 87.2291 17.4538C82.5221 17.4538 79.0826 21.4046 79.0826 26.8507C79.0826 32.2967 82.5221 36.21 87.2291 36.21C89.8365 36.21 92.0799 35.0048 93.526 32.9918V35.0748C93.526 35.5197 93.8851 35.8798 94.3234 35.8798H97.4731C97.9139 35.8798 98.2705 35.5197 98.2705 35.0748V18.624C98.2705 18.1814 97.9139 17.8213 97.4731 17.8213Z" fill="white"/>
<path d="M112.472 17.4545C110.01 17.4545 107.981 18.6243 106.823 20.5631V18.5886C106.823 18.0769 106.534 17.8209 106.063 17.8209H102.876C102.407 17.8209 102.118 18.0769 102.118 18.5886V35.0758C102.118 35.5875 102.407 35.8807 102.876 35.8807H106.063C106.534 35.8807 106.823 35.5875 106.823 35.0758V25.2784C106.823 22.8655 108.344 21.2572 110.624 21.2572C112.833 21.2572 114.318 22.8655 114.318 25.2784V35.0758C114.318 35.5203 114.674 35.8807 115.113 35.8807H118.264C118.703 35.8807 119.06 35.5203 119.06 35.0758V24.5846C119.06 20.379 116.344 17.4545 112.472 17.4545Z" fill="white"/>
<path d="M131.356 32.0767C128.568 32.0767 126.579 29.8838 126.579 26.8507C126.579 23.78 128.568 21.5871 131.356 21.5871C134.181 21.5871 136.172 23.78 136.172 26.8507C136.172 29.8838 134.181 32.0767 131.356 32.0767ZM131.393 17.4538C125.782 17.4538 121.726 21.4046 121.726 26.8507C121.726 32.2967 125.782 36.21 131.393 36.21C136.969 36.21 141.023 32.2967 141.023 26.8507C141.023 21.4046 136.969 17.4538 131.393 17.4538Z" fill="white"/>
<path d="M149.142 10.47H167.382C167.678 10.47 167.9 10.692 167.9 11.025V12.616C167.9 12.986 167.715 13.171 167.382 13.171H159.76V35.482C159.76 35.815 159.575 36 159.242 36H157.281C156.948 36 156.763 35.815 156.763 35.482V13.171H149.142C148.809 13.171 148.624 12.986 148.624 12.616V11.025C148.624 10.692 148.809 10.47 149.142 10.47Z" fill="#1F8FEB"/>
<path d="M176.923 17.5C177.256 17.426 177.478 17.648 177.478 17.981V19.72C177.478 20.053 177.293 20.238 176.923 20.275C172.816 20.423 170.448 22.791 170.448 26.824V35.482C170.448 35.778 170.263 36 169.893 36H168.154C167.784 36 167.599 35.815 167.599 35.482V18.425C167.599 18.092 167.784 17.87 168.154 17.87H169.893C170.263 17.87 170.448 18.092 170.448 18.425V22.273C171.558 19.387 173.778 17.722 176.923 17.5Z" fill="#1F8FEB"/>
<path d="M195.462 17.87H197.238C197.571 17.87 197.756 18.092 197.756 18.425V35.482C197.756 35.815 197.571 36 197.238 36H195.462C195.129 36 194.944 35.815 194.944 35.482V32.67C193.353 34.927 190.8 36.333 187.692 36.333C182.475 36.333 178.701 32.374 178.701 26.935C178.701 21.496 182.475 17.574 187.692 17.574C190.8 17.574 193.353 18.943 194.944 21.2V18.425C194.944 18.092 195.129 17.87 195.462 17.87ZM188.284 33.854C192.132 33.854 194.944 30.968 194.944 26.935C194.944 22.939 192.132 20.053 188.284 20.053C184.399 20.053 181.587 22.939 181.587 26.935C181.587 30.968 184.399 33.854 188.284 33.854Z" fill="#1F8FEB"/>
<path d="M218.297 10.47H220.073C220.406 10.47 220.591 10.692 220.591 11.025V35.482C220.591 35.778 220.406 36 220.073 36H218.297C217.964 36 217.779 35.815 217.779 35.482V32.67C216.188 34.927 213.635 36.333 210.527 36.333C205.31 36.333 201.537 32.374 201.537 26.935C201.537 21.496 205.31 17.574 210.527 17.574C213.635 17.574 216.188 18.943 217.779 21.2V11.025C217.779 10.692 217.964 10.47 218.297 10.47ZM211.119 33.854C214.967 33.854 217.779 30.968 217.779 26.935C217.779 22.939 214.967 20.053 211.119 20.053C207.234 20.053 204.422 22.939 204.422 26.935C204.422 30.968 207.234 33.854 211.119 33.854Z" fill="#1F8FEB"/>
<path d="M243.5 26.935C243.5 27.416 243.463 27.749 242.908 27.749H227.147C227.517 31.412 230.254 34.002 233.991 34.002C236.84 34.002 239.356 32.189 240.244 29.599C240.355 29.451 240.466 29.377 240.725 29.377H242.575C242.982 29.377 243.167 29.636 243.019 30.006C241.835 33.706 238.172 36.333 233.954 36.333C228.405 36.333 224.372 32.374 224.372 26.935C224.372 21.496 228.405 17.574 233.954 17.574C239.504 17.574 243.5 21.459 243.5 26.935ZM233.991 19.905C230.439 19.905 227.739 22.236 227.221 25.64H240.836C240.318 22.273 237.543 19.905 233.991 19.905Z" fill="#1F8FEB"/>
<rect x="117" y="3" width="28" height="11" rx="5.5" fill="url(#paint6_linear_1010_3168)"/>
<path d="M124.739 8.46C125.107 8.54 125.4 8.7 125.619 8.94C125.837 9.17467 125.947 9.47333 125.947 9.836C125.947 10.9453 125.237 11.5 123.819 11.5H121.107V5.828H123.651C124.259 5.828 124.72 5.948 125.035 6.188C125.355 6.428 125.515 6.772 125.515 7.22C125.515 7.85467 125.256 8.268 124.739 8.46ZM122.235 6.804V8.188H123.539C124.125 8.188 124.419 7.948 124.419 7.468C124.419 7.24933 124.347 7.084 124.203 6.972C124.059 6.86 123.856 6.804 123.595 6.804H122.235ZM123.827 10.516C124.461 10.516 124.779 10.276 124.779 9.796C124.779 9.32667 124.424 9.092 123.715 9.092H122.235V10.516H123.827ZM126.685 11.5V5.828H130.805V6.852H127.781V8.22H130.325V9.188H127.781V10.484H130.933V11.5H126.685ZM133.211 11.5V6.892H131.403V5.828H136.171V6.892H134.363V11.5H133.211ZM140.228 11.5L139.732 10.42H137.252L136.764 11.5H135.532L138.124 5.804H138.86L141.46 11.5H140.228ZM138.492 7.3L138.06 8.46L137.636 9.468H139.356L138.932 8.46L138.492 7.3Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_1010_3168" x1="23.6462" y1="33.6" x2="24.0303" y2="0.00441651" gradientUnits="userSpaceOnUse">
<stop offset="0.43118" stop-color="#498FFD"/>
<stop offset="1" stop-color="#16D1D6"/>
</linearGradient>
<radialGradient id="paint1_radial_1010_3168" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.3818 10.2857) rotate(-15.561) scale(21.727 21.6786)">
<stop stop-color="#18CFD7"/>
<stop offset="1" stop-color="#18CFD7" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint2_radial_1010_3168" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.0775 19.8857) rotate(152.372) scale(8.13294 8.11663)">
<stop stop-color="#4990FE"/>
<stop offset="0.353962" stop-color="#4990FE"/>
<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_1010_3168" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.1268 30.8572) rotate(-45.9169) scale(14.7962 14.7735)">
<stop stop-color="#4990FE"/>
<stop offset="0.405688" stop-color="#4990FE"/>
<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint4_linear_1010_3168" x1="34.6262" y1="48" x2="34.7497" y2="13.7147" gradientUnits="userSpaceOnUse">
<stop stop-color="#2950FF"/>
<stop offset="0.821717" stop-color="#498FFD"/>
</linearGradient>
<radialGradient id="paint5_radial_1010_3168" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(34.6262 33.6) rotate(129.311) scale(14.6233 14.4717)">
<stop offset="0.337169" stop-color="#2950FF"/>
<stop offset="0.792226" stop-color="#2950FF" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint6_linear_1010_3168" x1="117" y1="14" x2="130.324" y2="-6.52643" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D89FF"/>
<stop offset="1" stop-color="#16D1D6"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -0,0 +1,51 @@
<svg width="244" height="48" viewBox="0 0 244 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.047365H34.4448C36.3357 0.0473217 37.9266 0.0472845 39.2289 0.154734C40.5912 0.267128 41.8888 0.51141 43.1213 1.14561C44.9988 2.11165 46.5252 3.65311 47.4818 5.54908C48.1099 6.79376 48.3518 8.10411 48.4631 9.47975C48.5695 10.7949 48.5694 12.4015 48.5694 14.311V19.5988C48.5694 21.5083 48.5695 23.1149 48.4631 24.4301C48.3518 25.8057 48.1099 27.1161 47.4818 28.3608C46.5252 30.2567 44.9988 31.7982 43.1213 32.7642C41.8888 33.3984 40.5912 33.6427 39.2289 33.7551C37.9266 33.8625 36.3357 33.8625 34.4448 33.8625H17.9589C16.8009 33.8625 15.756 33.1609 15.3079 32.0826C14.8598 31.0043 15.0961 29.7597 15.9073 28.9252L29.5214 14.921L33.6246 18.9888L24.8102 28.0558H34.3296C36.3661 28.0558 37.7205 28.0536 38.7607 27.9677C39.7674 27.8847 40.224 27.7381 40.5108 27.5905C41.3064 27.1811 41.9532 26.528 42.3585 25.7246C42.5047 25.4349 42.6499 24.9738 42.7321 23.9572C42.8171 22.9068 42.8194 21.539 42.8194 19.4825V14.4273C42.8194 12.3708 42.8171 11.003 42.7321 9.9526C42.6499 8.93605 42.5047 8.47491 42.3585 8.18523C41.9532 7.38186 41.3064 6.7287 40.5108 6.31936C40.224 6.17176 39.7674 6.02514 38.7607 5.94208C37.7205 5.85626 36.3661 5.854 34.3296 5.854H29.0403C26.9816 5.854 25.6114 5.85628 24.5597 5.94348C23.5413 6.02793 23.0809 6.17703 22.793 6.32647C21.9927 6.742 21.3446 7.40457 20.9429 8.21778C20.7984 8.51025 20.6564 8.97694 20.5852 10.0064C20.5117 11.0694 20.5261 12.453 20.5512 14.5319L20.5801 16.9195L14.8305 16.9903L14.8002 14.4855C14.7769 12.5546 14.7572 10.931 14.8491 9.60178C14.9453 8.21216 15.1746 6.88682 15.7975 5.62588C16.7455 3.70671 18.2751 2.14306 20.1639 1.1624C21.4048 0.518095 22.7144 0.270318 24.0892 0.156324C25.4042 0.0472842 27.0121 0.0473213 28.9243 0.047365Z" fill="url(#paint0_linear_1048_2584)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.047365H34.4448C36.3357 0.0473217 37.9266 0.0472845 39.2289 0.154734C40.5912 0.267128 41.8888 0.51141 43.1213 1.14561C44.9988 2.11165 46.5252 3.65311 47.4818 5.54908C48.1099 6.79376 48.3518 8.10411 48.4631 9.47975C48.5695 10.7949 48.5694 12.4015 48.5694 14.311V19.5988C48.5694 21.5083 48.5695 23.1149 48.4631 24.4301C48.3518 25.8057 48.1099 27.1161 47.4818 28.3608C46.5252 30.2567 44.9988 31.7982 43.1213 32.7642C41.8888 33.3984 40.5912 33.6427 39.2289 33.7551C37.9266 33.8625 36.3357 33.8625 34.4448 33.8625H17.9589C16.8009 33.8625 15.756 33.1609 15.3079 32.0826C14.8598 31.0043 15.0961 29.7597 15.9073 28.9252L29.5214 14.921L33.6246 18.9888L24.8102 28.0558H34.3296C36.3661 28.0558 37.7205 28.0536 38.7607 27.9677C39.7674 27.8847 40.224 27.7381 40.5108 27.5905C41.3064 27.1811 41.9532 26.528 42.3585 25.7246C42.5047 25.4349 42.6499 24.9738 42.7321 23.9572C42.8171 22.9068 42.8194 21.539 42.8194 19.4825V14.4273C42.8194 12.3708 42.8171 11.003 42.7321 9.9526C42.6499 8.93605 42.5047 8.47491 42.3585 8.18523C41.9532 7.38186 41.3064 6.7287 40.5108 6.31936C40.224 6.17176 39.7674 6.02514 38.7607 5.94208C37.7205 5.85626 36.3661 5.854 34.3296 5.854H29.0403C26.9816 5.854 25.6114 5.85628 24.5597 5.94348C23.5413 6.02793 23.0809 6.17703 22.793 6.32647C21.9927 6.742 21.3446 7.40457 20.9429 8.21778C20.7984 8.51025 20.6564 8.97694 20.5852 10.0064C20.5117 11.0694 20.5261 12.453 20.5512 14.5319L20.5801 16.9195L14.8305 16.9903L14.8002 14.4855C14.7769 12.5546 14.7572 10.931 14.8491 9.60178C14.9453 8.21216 15.1746 6.88682 15.7975 5.62588C16.7455 3.70671 18.2751 2.14306 20.1639 1.1624C21.4048 0.518095 22.7144 0.270318 24.0892 0.156324C25.4042 0.0472842 27.0121 0.0473213 28.9243 0.047365Z" fill="url(#paint1_radial_1048_2584)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.047365H34.4448C36.3357 0.0473217 37.9266 0.0472845 39.2289 0.154734C40.5912 0.267128 41.8888 0.51141 43.1213 1.14561C44.9988 2.11165 46.5252 3.65311 47.4818 5.54908C48.1099 6.79376 48.3518 8.10411 48.4631 9.47975C48.5695 10.7949 48.5694 12.4015 48.5694 14.311V19.5988C48.5694 21.5083 48.5695 23.1149 48.4631 24.4301C48.3518 25.8057 48.1099 27.1161 47.4818 28.3608C46.5252 30.2567 44.9988 31.7982 43.1213 32.7642C41.8888 33.3984 40.5912 33.6427 39.2289 33.7551C37.9266 33.8625 36.3357 33.8625 34.4448 33.8625H17.9589C16.8009 33.8625 15.756 33.1609 15.3079 32.0826C14.8598 31.0043 15.0961 29.7597 15.9073 28.9252L29.5214 14.921L33.6246 18.9888L24.8102 28.0558H34.3296C36.3661 28.0558 37.7205 28.0536 38.7607 27.9677C39.7674 27.8847 40.224 27.7381 40.5108 27.5905C41.3064 27.1811 41.9532 26.528 42.3585 25.7246C42.5047 25.4349 42.6499 24.9738 42.7321 23.9572C42.8171 22.9068 42.8194 21.539 42.8194 19.4825V14.4273C42.8194 12.3708 42.8171 11.003 42.7321 9.9526C42.6499 8.93605 42.5047 8.47491 42.3585 8.18523C41.9532 7.38186 41.3064 6.7287 40.5108 6.31936C40.224 6.17176 39.7674 6.02514 38.7607 5.94208C37.7205 5.85626 36.3661 5.854 34.3296 5.854H29.0403C26.9816 5.854 25.6114 5.85628 24.5597 5.94348C23.5413 6.02793 23.0809 6.17703 22.793 6.32647C21.9927 6.742 21.3446 7.40457 20.9429 8.21778C20.7984 8.51025 20.6564 8.97694 20.5852 10.0064C20.5117 11.0694 20.5261 12.453 20.5512 14.5319L20.5801 16.9195L14.8305 16.9903L14.8002 14.4855C14.7769 12.5546 14.7572 10.931 14.8491 9.60178C14.9453 8.21216 15.1746 6.88682 15.7975 5.62588C16.7455 3.70671 18.2751 2.14306 20.1639 1.1624C21.4048 0.518095 22.7144 0.270318 24.0892 0.156324C25.4042 0.0472842 27.0121 0.0473213 28.9243 0.047365Z" fill="url(#paint2_radial_1048_2584)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9243 0.047365H34.4448C36.3357 0.0473217 37.9266 0.0472845 39.2289 0.154734C40.5912 0.267128 41.8888 0.51141 43.1213 1.14561C44.9988 2.11165 46.5252 3.65311 47.4818 5.54908C48.1099 6.79376 48.3518 8.10411 48.4631 9.47975C48.5695 10.7949 48.5694 12.4015 48.5694 14.311V19.5988C48.5694 21.5083 48.5695 23.1149 48.4631 24.4301C48.3518 25.8057 48.1099 27.1161 47.4818 28.3608C46.5252 30.2567 44.9988 31.7982 43.1213 32.7642C41.8888 33.3984 40.5912 33.6427 39.2289 33.7551C37.9266 33.8625 36.3357 33.8625 34.4448 33.8625H17.9589C16.8009 33.8625 15.756 33.1609 15.3079 32.0826C14.8598 31.0043 15.0961 29.7597 15.9073 28.9252L29.5214 14.921L33.6246 18.9888L24.8102 28.0558H34.3296C36.3661 28.0558 37.7205 28.0536 38.7607 27.9677C39.7674 27.8847 40.224 27.7381 40.5108 27.5905C41.3064 27.1811 41.9532 26.528 42.3585 25.7246C42.5047 25.4349 42.6499 24.9738 42.7321 23.9572C42.8171 22.9068 42.8194 21.539 42.8194 19.4825V14.4273C42.8194 12.3708 42.8171 11.003 42.7321 9.9526C42.6499 8.93605 42.5047 8.47491 42.3585 8.18523C41.9532 7.38186 41.3064 6.7287 40.5108 6.31936C40.224 6.17176 39.7674 6.02514 38.7607 5.94208C37.7205 5.85626 36.3661 5.854 34.3296 5.854H29.0403C26.9816 5.854 25.6114 5.85628 24.5597 5.94348C23.5413 6.02793 23.0809 6.17703 22.793 6.32647C21.9927 6.742 21.3446 7.40457 20.9429 8.21778C20.7984 8.51025 20.6564 8.97694 20.5852 10.0064C20.5117 11.0694 20.5261 12.453 20.5512 14.5319L20.5801 16.9195L14.8305 16.9903L14.8002 14.4855C14.7769 12.5546 14.7572 10.931 14.8491 9.60178C14.9453 8.21216 15.1746 6.88682 15.7975 5.62588C16.7455 3.70671 18.2751 2.14306 20.1639 1.1624C21.4048 0.518095 22.7144 0.270318 24.0892 0.156324C25.4042 0.0472842 27.0121 0.0473213 28.9243 0.047365Z" fill="url(#paint3_radial_1048_2584)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7713 41.972C11.8115 42.0578 13.1659 42.0601 15.2024 42.0601H20.5804C22.4373 42.0601 23.6722 42.0582 24.6235 41.9865C25.5454 41.917 25.9682 41.7939 26.233 41.6712C27.1529 41.245 27.891 40.4997 28.313 39.5707C28.4344 39.3034 28.5563 38.8764 28.6252 37.9454C28.6962 36.9848 28.698 35.7377 28.698 33.8625H34.4481L34.4481 33.9684C34.4481 35.7098 34.4481 37.1751 34.3592 38.3777C34.2663 39.6343 34.0648 40.8352 33.5393 41.9919C32.5434 44.1843 30.8016 45.9432 28.6305 46.949C27.4851 47.4796 26.2959 47.6832 25.0516 47.777C23.8607 47.8668 22.4097 47.8667 20.6853 47.8667L15.0872 47.8667C13.1963 47.8667 11.6054 47.8668 10.3031 47.7593C8.94084 47.6469 7.64326 47.4027 6.41071 46.7685C4.53323 45.8024 3.00679 44.2609 2.05017 42.365C1.42215 41.1203 1.18026 39.8099 1.06895 38.4343C0.962551 37.1192 0.962589 35.5126 0.962635 33.603V28.3153C0.962589 26.4057 0.962551 24.7991 1.06895 23.484C1.18026 22.1083 1.42215 20.798 2.05017 19.5533C3.00679 17.6573 4.53323 16.1159 6.41071 15.1498C7.64326 14.5156 8.94084 14.2714 10.3031 14.159C11.6054 14.0515 13.1963 14.0515 15.0873 14.0516H31.5731C33.1609 14.0516 34.4481 15.3515 34.4481 16.9549C34.4481 18.5584 33.1609 19.8582 31.5731 19.8582H15.2024C13.1659 19.8582 11.8115 19.8605 10.7713 19.9463C9.76466 20.0294 9.30802 20.176 9.02117 20.3236C8.22562 20.7329 7.57883 21.3861 7.17348 22.1895C7.02732 22.4791 6.88213 22.9403 6.79988 23.9568C6.7149 25.0073 6.71266 26.375 6.71266 28.4315V33.4867C6.71266 35.5432 6.7149 36.911 6.79988 37.9615C6.88213 38.978 7.02732 39.4391 7.17348 39.7288C7.57883 40.5322 8.22562 41.1854 9.02117 41.5947C9.30803 41.7423 9.76466 41.8889 10.7713 41.972Z" fill="url(#paint4_linear_1048_2584)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7713 41.972C11.8115 42.0578 13.1659 42.0601 15.2024 42.0601H20.5804C22.4373 42.0601 23.6722 42.0582 24.6235 41.9865C25.5454 41.917 25.9682 41.7939 26.233 41.6712C27.1529 41.245 27.891 40.4997 28.313 39.5707C28.4344 39.3034 28.5563 38.8764 28.6252 37.9454C28.6962 36.9848 28.698 35.7377 28.698 33.8625H34.4481L34.4481 33.9684C34.4481 35.7098 34.4481 37.1751 34.3592 38.3777C34.2663 39.6343 34.0648 40.8352 33.5393 41.9919C32.5434 44.1843 30.8016 45.9432 28.6305 46.949C27.4851 47.4796 26.2959 47.6832 25.0516 47.777C23.8607 47.8668 22.4097 47.8667 20.6853 47.8667L15.0872 47.8667C13.1963 47.8667 11.6054 47.8668 10.3031 47.7593C8.94084 47.6469 7.64326 47.4027 6.41071 46.7685C4.53323 45.8024 3.00679 44.2609 2.05017 42.365C1.42215 41.1203 1.18026 39.8099 1.06895 38.4343C0.962551 37.1192 0.962589 35.5126 0.962635 33.603V28.3153C0.962589 26.4057 0.962551 24.7991 1.06895 23.484C1.18026 22.1083 1.42215 20.798 2.05017 19.5533C3.00679 17.6573 4.53323 16.1159 6.41071 15.1498C7.64326 14.5156 8.94084 14.2714 10.3031 14.159C11.6054 14.0515 13.1963 14.0515 15.0873 14.0516H31.5731C33.1609 14.0516 34.4481 15.3515 34.4481 16.9549C34.4481 18.5584 33.1609 19.8582 31.5731 19.8582H15.2024C13.1659 19.8582 11.8115 19.8605 10.7713 19.9463C9.76466 20.0294 9.30802 20.176 9.02117 20.3236C8.22562 20.7329 7.57883 21.3861 7.17348 22.1895C7.02732 22.4791 6.88213 22.9403 6.79988 23.9568C6.7149 25.0073 6.71266 26.375 6.71266 28.4315V33.4867C6.71266 35.5432 6.7149 36.911 6.79988 37.9615C6.88213 38.978 7.02732 39.4391 7.17348 39.7288C7.57883 40.5322 8.22562 41.1854 9.02117 41.5947C9.30803 41.7423 9.76466 41.8889 10.7713 41.972Z" fill="url(#paint5_radial_1048_2584)"/>
<path d="M78.3378 32.1516V35.1122C78.3378 35.5347 77.9964 35.8799 77.5754 35.8799H61.2969C61.2746 35.8799 61.2496 35.8799 61.2273 35.8773C60.4103 35.8547 59.6923 35.4322 59.2587 34.7973C59.2562 34.7922 59.254 34.7871 59.249 34.7823C59.0509 34.447 58.9371 34.0548 58.9371 33.6319C58.9371 33.1645 59.0781 32.7343 59.3183 32.3742C59.3382 32.3443 59.3581 32.3143 59.3801 32.2866L71.7414 15.006H60.6704C60.252 15.006 59.9102 14.6609 59.9102 14.2358V11.2778C59.9102 10.8527 60.252 10.5075 60.6704 10.5075H76.1861C76.2035 10.5075 76.2208 10.5075 76.2382 10.5101C76.2429 10.5101 76.2505 10.5075 76.258 10.5101C77.1024 10.5327 77.8428 10.9877 78.2685 11.6653C78.2735 11.6729 78.276 11.6777 78.2786 11.6828C78.4517 12.0028 78.5482 12.368 78.5482 12.7555C78.5482 13.2204 78.4072 13.6531 78.1669 14.0132C78.1474 14.0431 78.1275 14.0708 78.1051 14.1008L65.7416 31.384H77.5754C77.9964 31.384 78.3378 31.7291 78.3378 32.1516Z" fill="#0C0C3A"/>
<path d="M88.7496 32.0767C85.9612 32.0767 83.9335 29.8838 83.9335 26.8507C83.9335 23.78 85.9612 21.5871 88.7496 21.5871C91.5351 21.5871 93.526 23.78 93.526 26.8507C93.526 29.8838 91.5351 32.0767 88.7496 32.0767ZM97.4731 17.8213H94.2887C93.8678 17.8213 93.526 18.1664 93.526 18.5893V20.707C92.0799 18.6616 89.8365 17.4538 87.2291 17.4538C82.5221 17.4538 79.0826 21.4046 79.0826 26.8507C79.0826 32.2967 82.5221 36.21 87.2291 36.21C89.8365 36.21 92.0799 35.0048 93.526 32.9918V35.0748C93.526 35.5197 93.8851 35.8798 94.3234 35.8798H97.4731C97.9139 35.8798 98.2705 35.5197 98.2705 35.0748V18.624C98.2705 18.1814 97.9139 17.8213 97.4731 17.8213Z" fill="#0C0C3A"/>
<path d="M112.472 17.4543C110.01 17.4543 107.981 18.6242 106.823 20.563V18.5885C106.823 18.0768 106.534 17.8208 106.063 17.8208H102.876C102.407 17.8208 102.118 18.0768 102.118 18.5885V35.0757C102.118 35.5874 102.407 35.8806 102.876 35.8806H106.063C106.534 35.8806 106.823 35.5874 106.823 35.0757V25.2783C106.823 22.8654 108.344 21.2571 110.624 21.2571C112.833 21.2571 114.318 22.8654 114.318 25.2783V35.0757C114.318 35.5202 114.674 35.8806 115.113 35.8806H118.264C118.703 35.8806 119.06 35.5202 119.06 35.0757V24.5845C119.06 20.3789 116.344 17.4543 112.472 17.4543Z" fill="#0C0C3A"/>
<path d="M131.356 32.0767C128.568 32.0767 126.579 29.8838 126.579 26.8507C126.579 23.78 128.568 21.5871 131.356 21.5871C134.181 21.5871 136.172 23.78 136.172 26.8507C136.172 29.8838 134.181 32.0767 131.356 32.0767ZM131.393 17.4538C125.782 17.4538 121.726 21.4046 121.726 26.8507C121.726 32.2967 125.782 36.21 131.393 36.21C136.969 36.21 141.023 32.2967 141.023 26.8507C141.023 21.4046 136.969 17.4538 131.393 17.4538Z" fill="#0C0C3A"/>
<path d="M149.142 10.47H167.382C167.678 10.47 167.9 10.692 167.9 11.025V12.616C167.9 12.986 167.715 13.171 167.382 13.171H159.76V35.482C159.76 35.815 159.575 36 159.242 36H157.281C156.948 36 156.763 35.815 156.763 35.482V13.171H149.142C148.809 13.171 148.624 12.986 148.624 12.616V11.025C148.624 10.692 148.809 10.47 149.142 10.47Z" fill="#1F8FEB"/>
<path d="M176.923 17.5C177.256 17.426 177.478 17.648 177.478 17.981V19.72C177.478 20.053 177.293 20.238 176.923 20.275C172.816 20.423 170.448 22.791 170.448 26.824V35.482C170.448 35.778 170.263 36 169.893 36H168.154C167.784 36 167.599 35.815 167.599 35.482V18.425C167.599 18.092 167.784 17.87 168.154 17.87H169.893C170.263 17.87 170.448 18.092 170.448 18.425V22.273C171.558 19.387 173.778 17.722 176.923 17.5Z" fill="#1F8FEB"/>
<path d="M195.462 17.87H197.238C197.571 17.87 197.756 18.092 197.756 18.425V35.482C197.756 35.815 197.571 36 197.238 36H195.462C195.129 36 194.944 35.815 194.944 35.482V32.67C193.353 34.927 190.8 36.333 187.692 36.333C182.475 36.333 178.701 32.374 178.701 26.935C178.701 21.496 182.475 17.574 187.692 17.574C190.8 17.574 193.353 18.943 194.944 21.2V18.425C194.944 18.092 195.129 17.87 195.462 17.87ZM188.284 33.854C192.132 33.854 194.944 30.968 194.944 26.935C194.944 22.939 192.132 20.053 188.284 20.053C184.399 20.053 181.587 22.939 181.587 26.935C181.587 30.968 184.399 33.854 188.284 33.854Z" fill="#1F8FEB"/>
<path d="M218.297 10.47H220.073C220.406 10.47 220.591 10.692 220.591 11.025V35.482C220.591 35.778 220.406 36 220.073 36H218.297C217.964 36 217.779 35.815 217.779 35.482V32.67C216.188 34.927 213.635 36.333 210.527 36.333C205.31 36.333 201.537 32.374 201.537 26.935C201.537 21.496 205.31 17.574 210.527 17.574C213.635 17.574 216.188 18.943 217.779 21.2V11.025C217.779 10.692 217.964 10.47 218.297 10.47ZM211.119 33.854C214.967 33.854 217.779 30.968 217.779 26.935C217.779 22.939 214.967 20.053 211.119 20.053C207.234 20.053 204.422 22.939 204.422 26.935C204.422 30.968 207.234 33.854 211.119 33.854Z" fill="#1F8FEB"/>
<path d="M243.5 26.935C243.5 27.416 243.463 27.749 242.908 27.749H227.147C227.517 31.412 230.254 34.002 233.991 34.002C236.84 34.002 239.356 32.189 240.244 29.599C240.355 29.451 240.466 29.377 240.725 29.377H242.575C242.982 29.377 243.167 29.636 243.019 30.006C241.835 33.706 238.172 36.333 233.954 36.333C228.405 36.333 224.372 32.374 224.372 26.935C224.372 21.496 228.405 17.574 233.954 17.574C239.504 17.574 243.5 21.459 243.5 26.935ZM233.991 19.905C230.439 19.905 227.739 22.236 227.221 25.64H240.836C240.318 22.273 237.543 19.905 233.991 19.905Z" fill="#1F8FEB"/>
<rect x="117" y="3" width="28" height="11" rx="5.5" fill="url(#paint6_linear_1048_2584)"/>
<path d="M124.739 8.46C125.107 8.54 125.4 8.7 125.619 8.94C125.837 9.17467 125.947 9.47333 125.947 9.836C125.947 10.9453 125.237 11.5 123.819 11.5H121.107V5.828H123.651C124.259 5.828 124.72 5.948 125.035 6.188C125.355 6.428 125.515 6.772 125.515 7.22C125.515 7.85467 125.256 8.268 124.739 8.46ZM122.235 6.804V8.188H123.539C124.125 8.188 124.419 7.948 124.419 7.468C124.419 7.24933 124.347 7.084 124.203 6.972C124.059 6.86 123.856 6.804 123.595 6.804H122.235ZM123.827 10.516C124.461 10.516 124.779 10.276 124.779 9.796C124.779 9.32667 124.424 9.092 123.715 9.092H122.235V10.516H123.827ZM126.685 11.5V5.828H130.805V6.852H127.781V8.22H130.325V9.188H127.781V10.484H130.933V11.5H126.685ZM133.211 11.5V6.892H131.403V5.828H136.171V6.892H134.363V11.5H133.211ZM140.228 11.5L139.732 10.42H137.252L136.764 11.5H135.532L138.124 5.804H138.86L141.46 11.5H140.228ZM138.492 7.3L138.06 8.46L137.636 9.468H139.356L138.932 8.46L138.492 7.3Z" fill="white"/>
<defs>
<linearGradient id="paint0_linear_1048_2584" x1="23.6462" y1="33.5999" x2="24.0303" y2="0.00429444" gradientUnits="userSpaceOnUse">
<stop offset="0.43118" stop-color="#498FFD"/>
<stop offset="1" stop-color="#16D1D6"/>
</linearGradient>
<radialGradient id="paint1_radial_1048_2584" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.3818 10.2856) rotate(-15.561) scale(21.727 21.6786)">
<stop stop-color="#18CFD7"/>
<stop offset="1" stop-color="#18CFD7" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint2_radial_1048_2584" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(27.0775 19.8856) rotate(152.372) scale(8.13294 8.11663)">
<stop stop-color="#4990FE"/>
<stop offset="0.353962" stop-color="#4990FE"/>
<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
</radialGradient>
<radialGradient id="paint3_radial_1048_2584" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.1268 30.857) rotate(-45.9169) scale(14.7962 14.7735)">
<stop stop-color="#4990FE"/>
<stop offset="0.405688" stop-color="#4990FE"/>
<stop offset="1" stop-color="#4990FE" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint4_linear_1048_2584" x1="34.6262" y1="47.9999" x2="34.7497" y2="13.7146" gradientUnits="userSpaceOnUse">
<stop stop-color="#2950FF"/>
<stop offset="0.821717" stop-color="#498FFD"/>
</linearGradient>
<radialGradient id="paint5_radial_1048_2584" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(34.6262 33.5999) rotate(129.311) scale(14.6233 14.4717)">
<stop offset="0.337169" stop-color="#2950FF"/>
<stop offset="0.792226" stop-color="#2950FF" stop-opacity="0"/>
</radialGradient>
<linearGradient id="paint6_linear_1048_2584" x1="117" y1="14" x2="130.324" y2="-6.52643" gradientUnits="userSpaceOnUse">
<stop stop-color="#4D89FF"/>
<stop offset="1" stop-color="#16D1D6"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -0,0 +1,5 @@
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.387 7.38168V6.2446C16.387 3.76447 14.3761 1.75356 11.896 1.75356H5.95466C3.47576 1.75356 1.46484 3.76447 1.46484 6.2446V19.8091C1.46484 22.2892 3.47576 24.3002 5.95466 24.3002H11.9082C14.381 24.3002 16.387 22.2953 16.387 19.8225V18.6733" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M24.667 13.0267H9.99219" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21.0977 9.474L24.6661 13.0266L21.0977 16.5804" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 688 B

View file

@ -0,0 +1,3 @@
<svg width="26" height="28" viewBox="0 0 26 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.6031 23.4868L13.1877 24.2981L12.6031 23.4868ZM12.6667 23.4411L13.2461 24.2561L12.6667 23.4411ZM16.0844 22.3361L16.0908 23.336L16.0844 22.3361ZM7.47508 24.1644L8.40469 24.533L7.47508 24.1644ZM9.47017 25.7446L8.88551 24.9333V24.9333L9.47017 25.7446ZM24.7576 17.9856L25.7179 18.2647L24.7576 17.9856ZM20.6882 22.0914L20.9719 23.0503L20.6882 22.0914ZM4.27606 2.65547L4.73326 3.54483L4.27606 2.65547ZM1.65396 5.30101L2.54659 5.7518L1.65396 5.30101ZM21.7239 2.65547L21.2667 3.54483L21.7239 2.65547ZM24.346 5.30101L23.4534 5.7518L24.346 5.30101ZM8 14.5C7.44772 14.5 7 14.9477 7 15.5C7 16.0523 7.44772 16.5 8 16.5V14.5ZM18 16.5C18.5523 16.5 19 16.0523 19 15.5C19 14.9477 18.5523 14.5 18 14.5V16.5ZM8 9C7.44772 9 7 9.44772 7 10C7 10.5523 7.44772 11 8 11V9ZM18 11C18.5523 11 19 10.5523 19 10C19 9.44772 18.5523 9 18 9V11ZM15.4 0.995659H10.6V2.99566H15.4V0.995659ZM0 11.6815V17.7695H2V11.6815H0ZM26 13.1153V11.6815H24V13.1153H26ZM5.52599 23.3359H6.24809V21.3359H5.52599V23.3359ZM10.0548 26.5559L13.1877 24.2981L12.0184 22.6755L8.88551 24.9333L10.0548 26.5559ZM16.1625 23.3359H16.8211V21.3359H16.1625V23.3359ZM13.1877 24.2981C13.2206 24.2744 13.2336 24.265 13.2461 24.2561L12.0872 22.6261C12.0683 22.6395 12.0494 22.6532 12.0184 22.6755L13.1877 24.2981ZM16.1625 21.3359C16.1244 21.3359 16.1011 21.3359 16.0779 21.3361L16.0908 23.336C16.1061 23.3359 16.122 23.3359 16.1625 23.3359V21.3359ZM13.2461 24.2561C14.08 23.6633 15.0727 23.3426 16.0908 23.336L16.0779 21.3361C14.6475 21.3453 13.255 21.7959 12.0872 22.6261L13.2461 24.2561ZM6.24809 23.3359C6.46346 23.3359 6.63739 23.564 6.54547 23.7959L8.40469 24.533C9.00721 23.0132 7.90257 21.3359 6.24809 21.3359V23.3359ZM6.54547 23.7959C5.70097 25.926 8.13946 27.9362 10.0548 26.5559L8.88551 24.9333C8.80248 24.9932 8.73875 25.0022 8.69172 24.9996C8.63582 24.9965 8.56902 24.9737 8.50694 24.9245C8.4449 24.8754 8.40451 24.8132 8.38663 24.7538C8.37116 24.7024 8.36542 24.632 8.40469 24.533L6.54547 23.7959ZM24 13.1153C24 14.1429 23.9999 15.1328 23.9703 15.9693C23.9396 16.8402 23.8788 17.4261 23.7973 17.7065L25.7179 18.2647C25.8788 17.711 25.9392 16.8842 25.9691 16.0399C26.0001 15.1609 26 14.1327 26 13.1153H24ZM16.8211 23.3359C18.7771 23.3359 19.9713 23.3463 20.9719 23.0503L20.4045 21.1324C19.7517 21.3256 18.919 21.3359 16.8211 21.3359V23.3359ZM23.7973 17.7065C23.3165 19.3609 22.0359 20.6498 20.4045 21.1324L20.9719 23.0503C23.2624 22.3727 25.0487 20.5672 25.7179 18.2647L23.7973 17.7065ZM0 17.7695C0 20.8353 2.46569 23.3359 5.52599 23.3359V21.3359C3.58701 21.3359 2 19.7476 2 17.7695H0ZM10.6 0.995659C8.93649 0.995659 7.62818 0.994867 6.57706 1.08152C5.51399 1.16915 4.62584 1.35125 3.81885 1.76611L4.73326 3.54483C5.20975 3.29988 5.8034 3.15207 6.74137 3.07475C7.69127 2.99645 8.90319 2.99566 10.6 2.99566V0.995659ZM2 11.6815C2 9.96997 2.00076 8.74592 2.07848 7.78619C2.15528 6.83787 2.30227 6.23559 2.54659 5.7518L0.76133 4.85022C0.35169 5.66138 0.171704 6.55416 0.0850079 7.62476C-0.000764132 8.68395 0 10.0027 0 11.6815H2ZM3.81885 1.76611C2.50101 2.44358 1.43123 3.52372 0.761329 4.85022L2.54659 5.7518C3.02718 4.80016 3.79316 4.02812 4.73326 3.54483L3.81885 1.76611ZM15.4 2.99566C17.0968 2.99566 18.3087 2.99645 19.2586 3.07475C20.1966 3.15207 20.7903 3.29988 21.2667 3.54483L22.1811 1.76611C21.3742 1.35125 20.486 1.16915 19.4229 1.08152C18.3718 0.994867 17.0635 0.995659 15.4 0.995659V2.99566ZM26 11.6815C26 10.0027 26.0008 8.68395 25.915 7.62476C25.8283 6.55416 25.6483 5.66138 25.2387 4.85022L23.4534 5.7518C23.6977 6.23559 23.8447 6.83787 23.9215 7.78619C23.9992 8.74592 24 9.96997 24 11.6815H26ZM21.2667 3.54483C22.2068 4.02812 22.9728 4.80017 23.4534 5.7518L25.2387 4.85022C24.5688 3.52372 23.499 2.44358 22.1811 1.76611L21.2667 3.54483ZM8 16.5H18V14.5H8V16.5ZM8 11L18 11V9L8 9V11Z" fill="#FAFAFA"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -0,0 +1,5 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="moon_icon">
<path id="Vector" d="M27 19.1909C26.2328 21.1012 25.0039 22.7913 23.4233 24.1101C21.8426 25.4288 19.9596 26.335 17.9429 26.7475C15.9261 27.16 13.8385 27.0659 11.867 26.4737C9.8955 25.8814 8.10165 24.8095 6.64605 23.3539C5.19046 21.8983 4.11855 20.1045 3.52631 18.133C2.93407 16.1615 2.83999 14.0739 3.25248 12.0572C3.66498 10.0404 4.57117 8.15737 5.88993 6.57674C7.20869 4.99611 8.89884 3.76718 10.8091 3C10.2115 4.47494 9.90568 6.05175 9.90846 7.64313C9.91375 10.943 11.227 14.1063 13.5604 16.4396C15.8937 18.773 19.057 20.0862 22.3569 20.0915C23.9482 20.0943 25.5251 19.7885 27 19.1909Z" stroke="#0C0C3A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 800 B

View file

@ -0,0 +1,5 @@
<svg width="133" height="123" viewBox="0 0 133 123" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.7">
<path fill-rule="evenodd" clip-rule="evenodd" d="M131.468 8.57769C133.309 6.89836 133.441 4.04441 131.761 2.20322C130.082 0.362023 127.228 0.230807 125.387 1.91014L2.20395 114.264C0.362756 115.943 0.23154 118.797 1.91087 120.638C3.5902 122.479 6.44415 122.611 8.28534 120.931L28.1106 102.849C28.9798 102.948 29.8636 102.998 30.7593 102.998H34.4701C39.2745 102.998 42.5598 107.85 40.7754 112.31C38.2565 118.607 45.5089 124.3 51.028 120.358L67.1275 108.859L67.4546 108.627C72.5976 105.003 78.7262 103.039 85.0176 102.999L85.5113 102.998C87.435 102.998 88.3968 102.998 89.1255 102.964C105.008 102.212 117.714 89.5068 118.466 73.6259C118.501 72.8973 118.501 72.0352 118.501 70.311V53.6698C118.501 37.7796 118.501 29.2012 115.881 22.7943L131.468 8.57769ZM70.1993 64.4604L60.0587 73.7094H87.6674C90.2217 73.7094 92.2924 71.639 92.2924 69.0849C92.2924 66.5309 90.2217 64.4604 87.6674 64.4604H70.1993ZM101.665 7.70179C102.573 8.16442 103.455 8.67018 104.307 9.21647L74.1602 36.7132H38.334C35.7797 36.7132 33.709 38.7837 33.709 41.3377C33.709 43.8918 35.7797 45.9623 38.334 45.9623H64.0197L43.7386 64.4604H38.334C35.7797 64.4604 33.709 66.5309 33.709 69.0849C33.709 70.3667 34.2306 71.5266 35.073 72.3642L11.9631 93.4424C9.15694 89.5999 7.50072 84.8643 7.50072 79.742V53.6698C7.50072 36.4033 7.50072 27.77 10.8613 21.1751C13.8174 15.374 18.5343 10.6576 24.336 7.70179C30.9316 4.3415 39.5658 4.3415 56.834 4.3415H69.1674C86.4357 4.3415 95.0698 4.3415 101.665 7.70179Z" fill="white"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="133" height="125" viewBox="0 0 133 125" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.7" fill-rule="evenodd" clip-rule="evenodd" d="M105.79 6.22196C106.473 6.71814 107.134 7.24157 107.773 7.79074L80.4537 32.7083H38.3333C35.779 32.7083 33.7083 34.779 33.7083 37.3333C33.7083 39.8876 35.779 41.9583 38.3333 41.9583H70.3121L53.4095 57.375H38.3333C35.779 57.375 33.7083 59.4457 33.7083 62C33.7083 64.5543 35.779 66.625 38.3333 66.625H43.2679L8.63316 98.2149C7.5 91.0127 7.5 81.5165 7.5 68.1666V55.8333C7.5 32.71 7.5 21.1483 13.3886 13.0433C15.2904 10.4257 17.5924 8.12374 20.21 6.22196C28.315 0.333313 39.8767 0.333313 63 0.333313C86.1233 0.333313 97.685 0.333313 105.79 6.22196ZM80.1604 57.375L70.0188 66.625H87.6667C90.221 66.625 92.2917 64.5543 92.2917 62C92.2917 59.4457 90.221 57.375 87.6667 57.375H80.1604ZM53.1162 82.0416L42.9746 91.2916H56.8333C59.3876 91.2916 61.4583 89.221 61.4583 86.6666C61.4583 84.1123 59.3876 82.0416 56.8333 82.0416H53.1162ZM16.9401 115.037L8.28534 122.931C6.44415 124.611 3.5902 124.479 1.91087 122.638C0.23154 120.797 0.362756 117.943 2.20395 116.264L125.387 3.91014C127.228 2.23081 130.082 2.36202 131.761 4.20322C133.441 6.04441 133.309 8.89836 131.468 10.5777L117.007 23.7676C118.5 31.1948 118.5 41.1984 118.5 55.8333V68.1666C118.5 91.29 118.5 102.852 112.611 110.957C110.71 113.574 108.408 115.876 105.79 117.778C97.685 123.667 86.1233 123.667 63 123.667C39.8767 123.667 28.315 123.667 20.21 117.778C19.0563 116.94 17.9639 116.024 16.9401 115.037Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,4 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.100586" y="2.2207" width="3" height="25" rx="1.5" transform="rotate(-45 0.100586 2.2207)" fill="#FF6767"/>
<rect x="17.7783" y="0.0996094" width="3" height="25" rx="1.5" transform="rotate(45 17.7783 0.0996094)" fill="#FF6767"/>
</svg>

After

Width:  |  Height:  |  Size: 342 B

View file

@ -0,0 +1,3 @@
<svg width="26" height="28" viewBox="0 0 26 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.32634 25.3064L4.91413 24.4973L4.32634 25.3064ZM2.94364 23.9237L3.75266 23.3359L2.94364 23.9237ZM23.0564 23.9237L22.2473 23.3359L23.0564 23.9237ZM21.6737 25.3064L21.0859 24.4973L21.6737 25.3064ZM21.6737 2.69364L21.0859 3.50266L21.6737 2.69364ZM23.0564 4.07634L22.2473 4.66413L23.0564 4.07634ZM4.32634 2.69364L4.91413 3.50266L4.32634 2.69364ZM2.94364 4.07634L3.75266 4.66413L2.94364 4.07634ZM8 8C7.44772 8 7 8.44772 7 9C7 9.55229 7.44772 10 8 10V8ZM18 10C18.5523 10 19 9.55229 19 9C19 8.44772 18.5523 8 18 8V10ZM8 13C7.44772 13 7 13.4477 7 14C7 14.5523 7.44772 15 8 15V13ZM18 15C18.5523 15 19 14.5523 19 14C19 13.4477 18.5523 13 18 13V15ZM8 18C7.44772 18 7 18.4477 7 19C7 19.5523 7.44772 20 8 20V18ZM11.75 20C12.3023 20 12.75 19.5523 12.75 19C12.75 18.4477 12.3023 18 11.75 18V20ZM23.25 12.75V15.25H25.25V12.75H23.25ZM2.75 15.25V12.75H0.75V15.25H2.75ZM13 25.5C10.6341 25.5 8.94007 25.4986 7.62929 25.3566C6.33722 25.2166 5.5367 24.9497 4.91413 24.4973L3.73856 26.1154C4.75889 26.8567 5.95162 27.1866 7.41386 27.345C8.85739 27.5014 10.6787 27.5 13 27.5V25.5ZM0.75 15.25C0.75 17.5713 0.748627 19.3926 0.905023 20.8361C1.06345 22.2984 1.39331 23.4911 2.13463 24.5114L3.75266 23.3359C3.30033 22.7133 3.03337 21.9128 2.89339 20.6207C2.75137 19.3099 2.75 17.6159 2.75 15.25H0.75ZM4.91413 24.4973C4.46843 24.1735 4.07648 23.7816 3.75266 23.3359L2.13463 24.5114C2.5818 25.1269 3.12307 25.6682 3.73856 26.1154L4.91413 24.4973ZM23.25 15.25C23.25 17.6159 23.2486 19.3099 23.1066 20.6207C22.9666 21.9128 22.6997 22.7133 22.2473 23.3359L23.8654 24.5114C24.6067 23.4911 24.9366 22.2984 25.095 20.8361C25.2514 19.3926 25.25 17.5713 25.25 15.25H23.25ZM13 27.5C15.3213 27.5 17.1426 27.5014 18.5861 27.345C20.0484 27.1866 21.2411 26.8567 22.2614 26.1154L21.0859 24.4973C20.4633 24.9497 19.6628 25.2166 18.3707 25.3566C17.0599 25.4986 15.3659 25.5 13 25.5V27.5ZM22.2473 23.3359C21.9235 23.7816 21.5316 24.1735 21.0859 24.4973L22.2614 26.1154C22.8769 25.6682 23.4182 25.1269 23.8654 24.5114L22.2473 23.3359ZM13 2.5C15.3659 2.5 17.0599 2.50137 18.3707 2.64339C19.6628 2.78337 20.4633 3.05033 21.0859 3.50266L22.2614 1.88463C21.2411 1.14331 20.0484 0.813447 18.5861 0.655023C17.1426 0.498627 15.3213 0.5 13 0.5V2.5ZM25.25 12.75C25.25 10.4287 25.2514 8.60739 25.095 7.16386C24.9366 5.70162 24.6067 4.50889 23.8654 3.48856L22.2473 4.66413C22.6997 5.2867 22.9666 6.08722 23.1066 7.37929C23.2486 8.69007 23.25 10.3841 23.25 12.75H25.25ZM21.0859 3.50266C21.5316 3.82648 21.9235 4.21843 22.2473 4.66413L23.8654 3.48856C23.4182 2.87307 22.8769 2.3318 22.2614 1.88463L21.0859 3.50266ZM13 0.5C10.6787 0.5 8.85739 0.498627 7.41386 0.655023C5.95162 0.813447 4.75889 1.14331 3.73856 1.88463L4.91413 3.50266C5.5367 3.05033 6.33722 2.78337 7.62929 2.64339C8.94007 2.50137 10.6341 2.5 13 2.5V0.5ZM2.75 12.75C2.75 10.3841 2.75137 8.69007 2.89339 7.37929C3.03337 6.08722 3.30033 5.2867 3.75266 4.66413L2.13463 3.48856C1.39331 4.50889 1.06345 5.70162 0.905023 7.16386C0.748627 8.60739 0.75 10.4287 0.75 12.75H2.75ZM3.73856 1.88463C3.12307 2.3318 2.5818 2.87307 2.13463 3.48856L3.75266 4.66413C4.07648 4.21843 4.46843 3.82648 4.91413 3.50266L3.73856 1.88463ZM8 10H18V8H8V10ZM8 15H18V13H8V15ZM8 20H11.75V18H8V20Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,3 @@
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.5 15L1.5 8L8.5 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 214 B

View file

@ -0,0 +1,10 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="persons_icon">
<g id="WvJpQr">
<path id="Vector" d="M10.5982 17.0008C10.6053 17.0558 10.5911 17.1114 10.5583 17.158C10.5255 17.2046 10.4759 17.2393 10.4182 17.2563C9.70684 17.5425 8.95677 17.7406 8.18794 17.8451C5.92564 18.1834 3.71244 17.9436 1.52926 17.3647C1.40444 17.3317 1.28168 17.288 1.15414 17.2656C1.0266 17.2432 0.999317 17.1802 1.00068 17.0706C1.00682 16.6039 1.00068 16.1359 1.00068 15.6704H1.00546C1.00546 15.2505 0.99318 14.8305 1.00546 14.4111C1.06343 12.7287 2.46228 11.3504 4.30922 11.2432C5.35687 11.1797 6.40821 11.1865 7.45476 11.2638C9.02684 11.384 10.3316 12.5929 10.5416 14.0173C10.5739 14.2642 10.5892 14.5127 10.5873 14.7613C10.5982 15.5078 10.5901 16.2543 10.5982 17.0008Z" fill="#1F8FEB"/>
<path id="Vector_2" d="M16.9989 13.0197C17.0039 13.0664 16.9916 13.1133 16.9639 13.1527C16.9362 13.192 16.8949 13.2213 16.8469 13.2358C16.0401 13.5888 15.1841 13.7778 14.3072 13.8914C13.9309 13.9404 13.5498 13.9604 13.1714 13.9979C13.0742 14.0076 13.027 13.9863 13.0041 13.8908C12.6361 12.3628 11.651 11.3446 10.0646 10.8245C10.0424 10.8152 10.0208 10.8046 10 10.7929C11.1067 9.68171 11.3559 8.42409 10.7373 7H10.9574C11.7315 7 12.5049 7 13.2783 7C14.9106 7.0071 16.2442 7.88078 16.7983 9.30681C16.9364 9.67765 17.0034 10.0682 16.9961 10.4605C16.9934 11.3136 16.9934 12.1666 16.9989 13.0197Z" fill="#1F8FEB"/>
<path id="Vector_3" d="M8.99999 7.20928C8.99961 7.6031 8.92151 7.99299 8.77017 8.35659C8.61883 8.72019 8.39722 9.05037 8.11803 9.32821C7.83884 9.60604 7.50757 9.82607 7.14318 9.9757C6.7788 10.1253 6.38846 10.2016 5.99454 10.2002C5.60057 10.1997 5.21056 10.1216 4.8468 9.97034C4.48303 9.81908 4.15266 9.59763 3.87455 9.31864C3.59644 9.03966 3.37606 8.70861 3.226 8.34443C3.07594 7.98024 2.99915 7.59006 3.00001 7.19618C3.00289 6.40059 3.32104 5.63858 3.88477 5.07704C4.4485 4.51549 5.21185 4.20019 6.00764 4.2002C6.8034 4.20308 7.56548 4.5216 8.12653 5.08578C8.68758 5.64997 9.00173 6.41371 8.99999 7.20928Z" fill="#1F8FEB"/>
<path id="Vector_4" d="M15 2.99526C15.0011 3.38925 14.9245 3.7796 14.7746 4.14395C14.6246 4.50831 14.4043 4.83952 14.1261 5.11862C13.848 5.39772 13.5175 5.61922 13.1536 5.77046C12.7897 5.9217 12.3995 5.99969 12.0055 5.99997C11.6115 6.0017 11.221 5.92561 10.8565 5.77609C10.492 5.62656 10.1606 5.40655 9.88133 5.12865C9.60209 4.85076 9.38049 4.52046 9.22925 4.15673C9.07801 3.793 9.0001 3.40299 9.00001 3.00908C8.99788 2.21352 9.31181 1.44967 9.87279 0.885422C10.4338 0.321172 11.1959 0.00269805 11.9916 8.06252e-07C12.7875 -0.00058162 13.5512 0.31441 14.1151 0.875901C14.6791 1.43739 14.9973 2.19956 15 2.99526Z" fill="#1F8FEB"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,10 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="persons_icon">
<g id="WvJpQr">
<path id="Vector" d="M10.5982 17.0006C10.6053 17.0556 10.5911 17.1112 10.5583 17.1578C10.5255 17.2044 10.4759 17.2391 10.4182 17.2561C9.70684 17.5423 8.95677 17.7404 8.18794 17.8449C5.92564 18.1833 3.71244 17.9434 1.52926 17.3645C1.40444 17.3315 1.28168 17.2879 1.15414 17.2654C1.0266 17.243 0.999317 17.1801 1.00068 17.0704C1.00682 16.6037 1.00068 16.1357 1.00068 15.6703H1.00546C1.00546 15.2503 0.99318 14.8303 1.00546 14.4109C1.06343 12.7285 2.46228 11.3502 4.30922 11.243C5.35687 11.1795 6.40821 11.1863 7.45476 11.2636C9.02684 11.3839 10.3316 12.5927 10.5416 14.0171C10.5739 14.264 10.5892 14.5125 10.5873 14.7611C10.5982 15.5076 10.5901 16.2541 10.5982 17.0006Z" fill="white"/>
<path id="Vector_2" d="M16.9989 13.0197C17.0039 13.0664 16.9916 13.1133 16.9639 13.1527C16.9362 13.192 16.8949 13.2213 16.8469 13.2358C16.0401 13.5888 15.1841 13.7778 14.3072 13.8914C13.9309 13.9404 13.5498 13.9604 13.1714 13.9979C13.0742 14.0076 13.027 13.9863 13.0041 13.8908C12.6361 12.3628 11.651 11.3446 10.0646 10.8245C10.0424 10.8152 10.0208 10.8046 10 10.7929C11.1067 9.68171 11.3559 8.42409 10.7373 7H10.9574C11.7315 7 12.5049 7 13.2783 7C14.9106 7.0071 16.2442 7.88078 16.7983 9.30681C16.9364 9.67765 17.0034 10.0682 16.9961 10.4605C16.9934 11.3136 16.9934 12.1666 16.9989 13.0197Z" fill="white"/>
<path id="Vector_3" d="M8.99999 7.20909C8.99961 7.60292 8.92151 7.9928 8.77017 8.35641C8.61883 8.72001 8.39722 9.05019 8.11803 9.32802C7.83884 9.60586 7.50757 9.82589 7.14318 9.97552C6.7788 10.1251 6.38846 10.2014 5.99454 10.2C5.60057 10.1995 5.21056 10.1214 4.8468 9.97015C4.48303 9.81889 4.15266 9.59745 3.87455 9.31846C3.59644 9.03948 3.37606 8.70843 3.226 8.34424C3.07594 7.98006 2.99915 7.58987 3.00001 7.196C3.00289 6.40041 3.32104 5.6384 3.88477 5.07686C4.4485 4.51531 5.21185 4.20001 6.00764 4.20001C6.8034 4.2029 7.56548 4.52141 8.12653 5.0856C8.68758 5.64979 9.00173 6.41353 8.99999 7.20909Z" fill="white"/>
<path id="Vector_4" d="M15 2.99526C15.0011 3.38925 14.9245 3.7796 14.7746 4.14395C14.6246 4.50831 14.4043 4.83952 14.1261 5.11862C13.848 5.39772 13.5175 5.61922 13.1536 5.77046C12.7897 5.9217 12.3995 5.99969 12.0055 5.99997C11.6115 6.0017 11.221 5.92561 10.8565 5.77609C10.492 5.62656 10.1606 5.40655 9.88133 5.12865C9.60209 4.85076 9.38049 4.52046 9.22925 4.15673C9.07801 3.793 9.0001 3.40299 9.00001 3.00908C8.99788 2.21352 9.31181 1.44967 9.87279 0.885422C10.4338 0.321172 11.1959 0.00269805 11.9916 8.06252e-07C12.7875 -0.00058162 13.5512 0.31441 14.1151 0.875901C14.6791 1.43739 14.9973 2.19956 15 2.99526Z" fill="white"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,3 @@
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 11H21M11 21V11L11 1" stroke="white" stroke-width="2" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 193 B

View file

@ -0,0 +1,10 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.7" clip-path="url(#clip0_3287_13243)">
<path d="M2.41797 10C2.41797 9.5858 2.08218 9.25001 1.66797 9.25001C1.25376 9.25001 0.917969 9.5858 0.917969 10H2.41797ZM17.5846 10C17.5846 10.4142 17.9204 10.75 18.3346 10.75C18.7488 10.75 19.0846 10.4142 19.0846 10H17.5846ZM3.66831 4.58334L4.20831 5.10383L4.22366 5.0879L4.23805 5.0711L3.66831 4.58334ZM16.3343 15.4167L16.904 15.9044L16.9133 15.8936L16.9221 15.8824L16.3343 15.4167ZM3.47021 0.83669C3.47206 0.42248 3.13777 0.085199 2.72356 0.083351C2.30935 0.081503 1.97207 0.415788 1.97022 0.829997L3.47021 0.83669ZM2.71283 2.4881L1.96284 2.48476V2.48476L2.71283 2.4881ZM5.7795 5.55477L5.78285 6.30476H5.78285L5.7795 5.55477ZM7.43761 6.29738C7.85182 6.29553 8.1861 5.95825 8.18425 5.54404C8.1824 5.12983 7.84512 4.79555 7.43091 4.7974L7.43761 6.29738ZM3.05329 4.9189L2.46016 5.37792L2.46016 5.37792L3.05329 4.9189ZM3.3487 5.21431L2.88968 5.80744L2.88968 5.80744L3.3487 5.21431ZM16.4654 19.0963C16.4635 19.5105 16.7978 19.8478 17.212 19.8497C17.6262 19.8515 17.9635 19.5172 17.9653 19.103L16.4654 19.0963ZM17.2227 17.4449L17.9727 17.4483L17.2227 17.4449ZM14.1561 14.3782L14.1527 13.6282L14.1561 14.3782ZM12.498 13.6356C12.0838 13.6375 11.7495 13.9748 11.7513 14.389C11.7532 14.8032 12.0904 15.1375 12.5047 15.1356L12.498 13.6356ZM16.8823 15.0141L17.4754 14.5551L17.4754 14.5551L16.8823 15.0141ZM16.5869 14.7187L17.0459 14.1256H17.0459L16.5869 14.7187ZM3.19257 5.07693L2.66267 5.60769L3.19257 5.07693ZM10.0013 17.5833C5.81314 17.5833 2.41797 14.1882 2.41797 10H0.917969C0.917969 15.0166 4.98472 19.0833 10.0013 19.0833V17.5833ZM10.0013 2.41668C14.1895 2.41668 17.5846 5.81185 17.5846 10H19.0846C19.0846 4.98342 15.0179 0.916677 10.0013 0.916677V2.41668ZM4.23805 5.0711C5.63004 3.44516 7.69516 2.41668 10.0013 2.41668V0.916677C7.23861 0.916677 4.76339 2.15098 3.09858 4.09559L4.23805 5.0711ZM15.7646 14.9289C14.3726 16.5549 12.3074 17.5833 10.0013 17.5833V19.0833C12.764 19.0833 15.2392 17.849 16.904 15.9044L15.7646 14.9289ZM1.97022 0.829997L1.96284 2.48476L3.46282 2.49145L3.47021 0.83669L1.97022 0.829997ZM5.78285 6.30476L7.43761 6.29738L7.43091 4.7974L5.77615 4.80478L5.78285 6.30476ZM1.96284 2.48476C1.95997 3.12694 1.95641 3.67196 2.0043 4.11054C2.05384 4.5642 2.16612 4.99797 2.46016 5.37792L3.64642 4.45988C3.59117 4.38849 3.53027 4.26669 3.49544 3.9477C3.45895 3.61362 3.4598 3.16891 3.46282 2.49145L1.96284 2.48476ZM5.77615 4.80478C5.0987 4.8078 4.65398 4.80865 4.31991 4.77217C4.00092 4.73733 3.87911 4.67643 3.80772 4.62119L2.88968 5.80744C3.26963 6.10148 3.7034 6.21376 4.15707 6.2633C4.59565 6.3112 5.14066 6.30763 5.78285 6.30476L5.77615 4.80478ZM17.9653 19.103L17.9727 17.4483L16.4727 17.4416L16.4654 19.0963L17.9653 19.103ZM14.1527 13.6282L12.498 13.6356L12.5047 15.1356L14.1594 15.1282L14.1527 13.6282ZM17.9727 17.4483C17.9756 16.8061 17.9792 16.2611 17.9313 15.8225C17.8817 15.3688 17.7694 14.935 17.4754 14.5551L16.2892 15.4731C16.3444 15.5445 16.4053 15.6663 16.4401 15.9853C16.4766 16.3194 16.4758 16.7641 16.4727 17.4416L17.9727 17.4483ZM14.1594 15.1282C14.8369 15.1252 15.2816 15.1244 15.6157 15.1608C15.9346 15.1957 16.0565 15.2566 16.1278 15.3118L17.0459 14.1256C16.6659 13.8315 16.2322 13.7192 15.7785 13.6697C15.3399 13.6218 14.7949 13.6254 14.1527 13.6282L14.1594 15.1282ZM2.46016 5.37792C2.52277 5.45882 2.59042 5.53556 2.66267 5.60769L3.72247 4.54617C3.69534 4.51909 3.66994 4.49027 3.64642 4.45988L2.46016 5.37792ZM2.66267 5.60769C2.734 5.67891 2.80981 5.74563 2.88968 5.80744L3.80772 4.62119C3.77772 4.59797 3.74925 4.57291 3.72247 4.54617L2.66267 5.60769ZM3.12831 4.06286L2.65257 4.55645L3.73257 5.59741L4.20831 5.10383L3.12831 4.06286ZM17.4754 14.5551C17.4211 14.4849 17.3631 14.4179 17.3015 14.3543L16.2238 15.3977C16.247 15.4216 16.2688 15.4468 16.2892 15.4731L17.4754 14.5551ZM17.3015 14.3543C17.2219 14.2722 17.1365 14.1957 17.0459 14.1256L16.1278 15.3118C16.1619 15.3382 16.194 15.3669 16.2238 15.3977L17.3015 14.3543ZM16.9221 15.8824L17.3505 15.3418L16.1748 14.4103L15.7464 14.9509L16.9221 15.8824Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_3287_13243">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -0,0 +1,3 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.5 15C3.5 14.4477 3.05228 14 2.5 14C1.94772 14 1.5 14.4477 1.5 15H3.5ZM26.5 15C26.5 15.5523 26.9477 16 27.5 16C28.0523 16 28.5 15.5523 28.5 15H26.5ZM5.50052 6.875L6.22052 7.56898L6.24098 7.54774L6.26016 7.52534L5.50052 6.875ZM24.4995 23.125L25.2591 23.7753L25.2715 23.7609L25.2833 23.746L24.4995 23.125ZM5.07836 1.25446C5.08082 0.702182 4.63511 0.252474 4.08283 0.25001C3.53055 0.247546 3.08084 0.693259 3.07838 1.24554L5.07836 1.25446ZM4.06729 3.73214L3.0673 3.72768V3.72768L4.06729 3.73214ZM8.6673 8.33214L8.67176 9.33213H8.67176L8.6673 8.33214ZM11.1539 9.32106C11.7062 9.31859 12.1519 8.86888 12.1494 8.31661C12.147 7.76433 11.6973 7.31861 11.145 7.32108L11.1539 9.32106ZM4.57798 7.37834L3.78714 7.99036L3.78714 7.99036L4.57798 7.37834ZM5.0211 7.82146L4.40907 8.61229L4.40907 8.61229L5.0211 7.82146ZM24.8211 28.645C24.8186 29.1973 25.2643 29.647 25.8166 29.6495C26.3689 29.6519 26.8186 29.2062 26.8211 28.6539L24.8211 28.645ZM25.8321 26.1673L26.8321 26.1718L25.8321 26.1673ZM21.2321 21.5673L21.2277 20.5674L21.2321 21.5673ZM18.7455 20.5784C18.1933 20.5809 17.7476 21.0306 17.75 21.5829C17.7525 22.1352 18.2022 22.5809 18.7545 22.5784L18.7455 20.5784ZM25.3215 22.5211L26.1123 21.9091H26.1123L25.3215 22.5211ZM24.8783 22.078L25.4904 21.2872L25.4904 21.2872L24.8783 22.078ZM4.7869 7.61538L4.08036 8.32306L4.7869 7.61538ZM15 26.5C8.64873 26.5 3.5 21.3513 3.5 15H1.5C1.5 22.4558 7.54416 28.5 15 28.5V26.5ZM15 3.5C21.3513 3.5 26.5 8.64873 26.5 15H28.5C28.5 7.54416 22.4558 1.5 15 1.5V3.5ZM6.26016 7.52534C8.37088 5.05988 11.5027 3.5 15 3.5V1.5C10.894 1.5 7.21536 3.3343 4.74088 6.22466L6.26016 7.52534ZM23.7398 22.4747C21.6291 24.9401 18.4973 26.5 15 26.5V28.5C19.106 28.5 22.7846 26.6657 25.2591 23.7753L23.7398 22.4747ZM3.07838 1.24554L3.0673 3.72768L5.06729 3.7366L5.07836 1.25446L3.07838 1.24554ZM8.67176 9.33213L11.1539 9.32106L11.145 7.32108L8.66283 7.33215L8.67176 9.33213ZM3.0673 3.72768C3.06299 4.69389 3.05787 5.50306 3.12876 6.15222C3.20185 6.82149 3.36598 7.44615 3.78714 7.99036L5.36882 6.76631C5.26605 6.63351 5.17042 6.42481 5.11694 5.9351C5.06127 5.42528 5.06276 4.74985 5.06729 3.7366L3.0673 3.72768ZM8.66283 7.33215C7.64959 7.33667 6.97416 7.33817 6.46434 7.2825C5.97463 7.22902 5.76592 7.13339 5.63313 7.03062L4.40907 8.61229C4.95328 9.03345 5.57794 9.19759 6.24722 9.27068C6.89638 9.34157 7.70554 9.33644 8.67176 9.33213L8.66283 7.33215ZM26.8211 28.6539L26.8321 26.1718L24.8322 26.1629L24.8211 28.645L26.8211 28.6539ZM21.2277 20.5674L18.7455 20.5784L18.7545 22.5784L21.2366 22.5673L21.2277 20.5674ZM26.8321 26.1718C26.8365 25.2056 26.8416 24.3964 26.7707 23.7473C26.6976 23.078 26.5335 22.4533 26.1123 21.9091L24.5306 23.1332C24.6334 23.266 24.729 23.4747 24.7825 23.9644C24.8382 24.4742 24.8367 25.1496 24.8322 26.1629L26.8321 26.1718ZM21.2366 22.5673C22.2499 22.5628 22.9253 22.5613 23.4351 22.617C23.9248 22.6705 24.1335 22.7661 24.2663 22.8689L25.4904 21.2872C24.9462 20.866 24.3215 20.7019 23.6522 20.6288C23.0031 20.5579 22.1939 20.563 21.2277 20.5674L21.2366 22.5673ZM3.78714 7.99036C3.8778 8.1075 3.97575 8.21861 4.08036 8.32306L5.49343 6.9077C5.44898 6.86332 5.40735 6.8161 5.36882 6.76631L3.78714 7.99036ZM4.08036 8.32306C4.18365 8.42618 4.29342 8.52279 4.40907 8.61229L5.63313 7.03062C5.58397 6.99257 5.53732 6.95152 5.49343 6.9077L4.08036 8.32306ZM4.78052 6.18102L4.0669 6.92141L5.5069 8.30936L6.22052 7.56898L4.78052 6.18102ZM26.1123 21.9091C26.0337 21.8076 25.9496 21.7105 25.8605 21.6184L24.4236 23.0096C24.4615 23.0488 24.4972 23.09 24.5306 23.1332L26.1123 21.9091ZM25.8605 21.6184C25.7453 21.4995 25.6216 21.3887 25.4904 21.2872L24.2663 22.8689C24.3221 22.912 24.3746 22.9591 24.4236 23.0096L25.8605 21.6184ZM25.2833 23.746L25.9258 22.9351L24.3582 21.693L23.7157 22.504L25.2833 23.746Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,10 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_35_1686)">
<path d="M4.10234 12.4834C4.49286 12.0929 5.12603 12.0929 5.51656 12.4834C5.90708 12.8739 5.90708 13.5071 5.51656 13.8976L4.10234 12.4834ZM1.70711 17.7071C1.31659 18.0976 0.683422 18.0976 0.292896 17.7071C-0.0976295 17.3166 -0.0976315 16.6834 0.292891 16.2929L1.70711 17.7071ZM5.51656 13.8976L1.70711 17.7071L0.292891 16.2929L4.10234 12.4834L5.51656 13.8976ZM10.1428 13.7143C13.3777 13.7143 16 11.0919 16 7.85713H18C18 12.1965 14.4822 15.7143 10.1428 15.7143V13.7143ZM4.28569 7.85713C4.28569 11.0919 6.90802 13.7143 10.1428 13.7143V15.7143C5.80346 15.7143 2.28569 12.1965 2.28569 7.85713H4.28569ZM10.1428 2C6.90802 2 4.28569 4.62233 4.28569 7.85713H2.28569C2.28569 3.51775 5.80346 0 10.1428 0V2ZM10.1428 0C14.4822 0 18 3.51775 18 7.85713H16C16 4.62233 13.3777 2 10.1428 2V0Z" fill="white" fill-opacity="0.5"/>
</g>
<defs>
<clipPath id="clip0_35_1686">
<rect width="18" height="18" fill="white" transform="matrix(-1 0 0 1 18 0)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -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_1026_7020)">
<path d="M7.84303 22.7423C8.23355 22.3518 8.86672 22.3518 9.25724 22.7423C9.64777 23.1328 9.64777 23.766 9.25725 24.1565L7.84303 22.7423ZM2.48489 30.9289C2.09437 31.3194 1.4612 31.3194 1.07068 30.9289C0.680153 30.5384 0.680149 29.9052 1.07067 29.5147L2.48489 30.9289ZM9.25725 24.1565L2.48489 30.9289L1.07067 29.5147L7.84303 22.7423L9.25725 24.1565ZM18.0317 25.1583C24.2121 25.1583 29.2222 20.1481 29.2222 13.9678H31.2222C31.2222 21.2527 25.3166 27.1583 18.0317 27.1583V25.1583ZM6.84123 13.9678C6.84123 20.1481 11.8514 25.1583 18.0317 25.1583V27.1583C10.7468 27.1583 4.84123 21.2527 4.84123 13.9678H6.84123ZM18.0317 2.77734C11.8514 2.77734 6.84123 7.78748 6.84123 13.9678H4.84123C4.84123 6.68291 10.7468 0.777344 18.0317 0.777344V2.77734ZM18.0317 0.777344C25.3166 0.777344 31.2222 6.68291 31.2222 13.9678H29.2222C29.2222 7.78748 24.2121 2.77734 18.0317 2.77734V0.777344Z" fill="white" fill-opacity="0.5"/>
</g>
<defs>
<clipPath id="clip0_1026_7020">
<rect width="32" height="32" fill="white" transform="matrix(-1 0 0 1 32 0)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9672 1.38424e-06C13.0024 1.33899e-06 13.7145 0.482519 14.1154 1.3221C14.2369 1.5773 14.3584 1.83035 14.4872 2.08448C17.5823 8.4151 20.677 14.7457 23.7713 21.0764C24.3667 22.2966 23.7616 23.5426 22.3983 23.9028C22.1455 23.9646 21.8842 23.9949 21.6219 23.9929C19.7192 24.0004 17.8152 23.9929 15.9112 23.9929C14.3912 23.9929 13.5492 23.3345 13.3597 21.9985L11.9988 12.6763L11.9393 12.6666C11.864 13.1502 11.7874 13.6317 11.7145 14.1163C11.3549 16.5053 10.9964 18.8947 10.6392 21.2844C10.5906 21.6061 10.5456 21.9395 10.4946 22.2666C10.4276 22.7369 10.1705 23.1701 9.77045 23.4865C9.37041 23.8029 8.85438 23.9812 8.31726 23.9886C6.28208 24.0004 4.2469 24.0068 2.21171 23.9886C1.8498 23.9888 1.49336 23.9106 1.1737 23.7609C0.854051 23.6111 0.580968 23.3943 0.378444 23.1296C0.175921 22.8649 0.0501508 22.5604 0.0121911 22.2427C-0.0257687 21.9251 0.0252383 21.6041 0.160733 21.308C1.01855 19.4401 1.94076 17.5958 2.83381 15.7419C5.16425 10.9403 7.49469 6.13691 9.82513 1.33175C10.2309 0.493242 10.9308 0.00214529 11.9672 1.38424e-06Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7974 13.1185C23.3506 9.95742 22.179 7.08253 20.4235 4.4434C20.3623 4.35416 20.2791 4.2827 20.1822 4.23615C18.7022 3.55901 17.1456 3.06858 15.5474 2.77588C15.522 2.76745 15.4951 2.76422 15.4684 2.76636C15.4417 2.7685 15.4157 2.77597 15.3919 2.78834C15.3681 2.80072 15.3469 2.81775 15.3296 2.83845C15.3123 2.85916 15.2992 2.88313 15.2911 2.90898C15.1409 3.23031 14.9719 3.54309 14.8349 3.86918C14.7692 4.02509 14.6894 4.05932 14.5345 4.03935C14.1167 3.98421 13.698 3.93477 13.2774 3.9015C11.9996 3.80201 10.7147 3.84889 9.4472 4.04125C9.29418 4.06407 9.23129 4.00798 9.17026 3.87013C9.02319 3.53929 8.86172 3.21542 8.68585 2.89852C8.65896 2.86218 8.62389 2.83288 8.58356 2.81303C8.54322 2.79319 8.4988 2.78338 8.45397 2.78443C6.84632 3.069 5.28098 3.5597 3.79573 4.2447C3.70017 4.29369 3.61917 4.36751 3.56103 4.45861C0.871419 8.55705 -0.351816 13.0424 0.0875342 17.967C0.0899761 18.0363 0.10903 18.1039 0.143051 18.164C0.177072 18.2241 0.225035 18.275 0.2828 18.3121C1.92233 19.5142 3.73218 20.4578 5.65076 21.111C6.17554 21.2897 6.18681 21.3011 6.49004 20.8258C6.83175 20.2915 7.14718 19.7401 7.49547 19.163C6.76979 18.8512 6.0873 18.5688 5.46864 18.161C5.82162 17.7493 5.87138 17.7379 6.31354 17.929C6.33514 17.9376 6.35767 17.9442 6.37926 17.9537C8.8201 18.9928 11.3548 19.3646 13.9834 18.9881C15.3209 18.7917 16.6249 18.4078 17.8578 17.8472C17.9376 17.8121 18.054 17.7712 18.115 17.8045C18.2817 17.9145 18.4402 18.0368 18.5891 18.1705L16.4965 19.1915C16.919 19.8646 17.3283 20.5225 17.7517 21.1766C17.7817 21.2232 17.9169 21.2355 17.9883 21.2136C20.0647 20.5626 22.0188 19.5639 23.7693 18.2589C23.8393 18.2021 23.8856 18.1206 23.8988 18.0307C24.0594 16.3951 24.0254 14.7459 23.7974 13.1185ZM9.47443 14.7442C8.68022 15.5694 7.49829 15.5998 6.65808 14.8297C5.57284 13.8344 5.60946 11.9263 6.73318 10.9728C7.65882 10.1875 8.98626 10.3786 9.71288 11.4015C10.0189 11.8341 10.1766 12.3522 10.1776 13.1442C10.1481 13.7475 9.89735 14.3181 9.47443 14.7442ZM17.4344 14.7632C17.2507 14.9592 17.0298 15.1158 16.785 15.2234C16.5403 15.331 16.2765 15.3876 16.0097 15.3896C15.7428 15.3916 15.4783 15.3392 15.2319 15.2353C14.9855 15.1314 14.7624 14.9783 14.5758 14.7851C13.5788 13.7982 13.5882 12.0471 14.5946 11.0716C15.7014 9.99926 17.4654 10.4832 17.9901 12.0138C18.0887 12.299 18.1197 12.6108 18.1779 12.9103C18.1432 13.6243 17.9329 14.2527 17.4344 14.7632Z" fill="white" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.64972 11.6098C8.09337 8.78763 12.3891 6.92687 14.537 6.02792C20.6767 3.46091 21.9509 3.01508 22.7831 3.00015C22.9661 2.99702 23.3736 3.04251 23.6395 3.25883C23.8605 3.44112 23.9227 3.68764 23.9538 3.86056C23.9814 4.03348 24.0194 4.42757 23.9884 4.73521C23.6569 8.24909 22.2169 16.7762 21.4848 20.7119C21.1775 22.3772 20.5662 22.9356 19.9757 22.9901C18.6911 23.1088 17.7173 22.1373 16.4741 21.3181C14.53 20.0359 13.432 19.2379 11.5431 17.9869C9.36065 16.5411 10.7764 15.7463 12.0196 14.4477C12.3442 14.1078 18.0004 8.93589 18.1075 8.4668C18.1213 8.40812 18.1352 8.18937 18.004 8.07409C17.8762 7.95847 17.6862 7.99805 17.548 8.0293C17.3512 8.07374 14.2468 10.139 8.22443 14.2248C7.34387 14.8338 6.5462 15.1307 5.82794 15.115C5.04061 15.098 3.52131 14.6664 2.39212 14.2977C1.01084 13.8453 -0.0907762 13.606 0.00591302 12.8376C0.0542576 12.4376 0.603402 12.0282 1.64972 11.6098Z" fill="white" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.2144 2.39999H21.5265L14.2905 10.5329L22.8031 21.6H16.1378L10.9173 14.8879L4.9438 21.6H1.62966L9.36933 12.9009L1.20312 2.39999H8.03767L12.7566 8.53513L18.2144 2.39999ZM17.0519 19.6505H18.8872L7.04042 4.24713H5.07096L17.0519 19.6505Z" fill="white" fill-opacity="0.9"/>
</svg>

After

Width:  |  Height:  |  Size: 383 B

View file

@ -0,0 +1,3 @@
<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 0L11.645 5.35942L17.5595 6.21885L13.2798 10.3906L14.2901 16.2812L9 13.5L3.70993 16.2812L4.72025 10.3906L0.440492 6.21885L6.35497 5.35942L9 0Z" fill="white" fill-opacity="0.4"/>
</svg>

After

Width:  |  Height:  |  Size: 292 B

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