switch to a fresh vue/vite project and appy just the basic sakai theme

This commit is contained in:
Chris Cromer 2023-01-25 20:55:24 -03:00
parent d9f45a4552
commit ae64fd8baf
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
361 changed files with 1706 additions and 354860 deletions

View File

@ -7,14 +7,7 @@ module.exports = {
parserOptions: {
ecmaVersion: 'latest'
},
rules: {
'vue/multi-word-component-names': 'off',
'vue/no-reserved-component-names': 'off',
'vue/component-tags-order': [
'error',
{
order: ['script', 'template', 'style']
}
]
globals: {
process: true
}
};

12
frontend/.gitignore vendored
View File

@ -14,9 +14,6 @@ dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
@ -27,10 +24,5 @@ coverage
*.sln
*.sw?
# Themes
public/themes/soho-light/
public/themes/soho-dark/
public/themes/viva-light/
public/themes/viva-dark/
public/themes/mira/
public/themes/nano/
test-results/
playwright-report/

View File

@ -1,10 +1,14 @@
{
"useTabs": false,
"tabWidth": 4,
"trailingComma": "none",
"semi": true,
"singleQuote": true,
"vueIndentScriptAndStyle": false,
"printWidth": 250,
"bracketSameLine": false
}
"useTabs": false,
"tabWidth": 4,
"trailingComma": "none",
"semi": true,
"singleQuote": true,
"vueIndentScriptAndStyle": true,
"singleAttributePerLine": true,
"printWidth": 250,
"bracketSameLine": false,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
}

View File

@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) 2018-2022 PrimeTek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@ -1,4 +1,4 @@
# sakai-vue
# alai-frontend
This template should help get you started developing with Vue 3 in Vite.
@ -13,23 +13,48 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
npm install
yarn
```
### Compile and Hot-Reload for Development
```sh
npm run dev
yarn dev
```
### Compile and Minify for Production
```sh
npm run build
yarn build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
yarn test:unit
```
### Run End-to-End Tests with [Playwright](https://playwright.dev)
```sh
# Install browsers for the first run
npx playwright install
# When testing on CI, must build the project first
yarn build
# Runs the end-to-end tests
yarn test:e2e
# Runs the tests only on Chromium
yarn test:e2e --project=chromium
# Runs the tests of a specific file
yarn test:e2e tests/example.spec.ts
# Runs the tests in debug mode
yarn test:e2e --debug
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
yarn lint
```

8
frontend/e2e/vue.spec.js Normal file
View File

@ -0,0 +1,8 @@
import { test, expect } from '@playwright/test';
// See here how to get started:
// https://playwright.dev/docs/intro
test('visits the app root url', async ({ page }) => {
await page.goto('/');
await expect(page.getByTestId('greetings')).toHaveText('You did it!');
});

View File

@ -1,17 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alai</title>
<link id="theme-css" rel="stylesheet" type="text/css" href="/themes/lara-dark-blue/theme.css">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alai</title>
<link id="theme-css" rel="stylesheet" type="text/css" href="/themes/vela-blue/theme.css">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

View File

@ -1,29 +1,36 @@
{
"name": "sakai-vue",
"version": "3.5.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"axios": "^1.2.3",
"chart.js": "3.3.2",
"primeflex": "^3.2.1",
"primeicons": "^6.0.1",
"primevue": "^3.22.1",
"vue": "^3.2.41",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"vite": "^3.1.8"
}
"name": "alai-frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"test:e2e": "playwright test",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"pinia": "^2.0.28",
"primeflex": "^3.3.0",
"primeicons": "^6.0.1",
"primevue": "^3.22.3",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.2.6",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.3",
"playwright": "^1.29.2",
"prettier": "^2.7.1",
"sass": "^1.57.1",
"vite": "^4.0.0",
"vitest": "^0.25.6"
}
}

View File

@ -0,0 +1,112 @@
// @ts-check
import { devices } from '@playwright/test';
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
/**
* @see https://playwright.dev/docs/test-configuration
* @type {import('@playwright/test').PlaywrightTestConfig}
*/
const config = {
testDir: './e2e',
/* Maximum time one test can run for. */
timeout: 30 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 5000
},
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 0,
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://localhost:5173',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
/* Only on CI systems run the tests headless */
headless: !!process.env.CI
},
/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: {
...devices['Desktop Chrome']
}
},
{
name: 'firefox',
use: {
...devices['Desktop Firefox']
}
}
/*{
name: 'webkit',
use: {
...devices['Desktop Safari']
}
}*/
/* Test against mobile viewports. */
// {
// name: 'Mobile Chrome',
// use: {
// ...devices['Pixel 5'],
// },
// },
// {
// name: 'Mobile Safari',
// use: {
// ...devices['iPhone 12'],
// },
// },
/* Test against branded browsers. */
// {
// name: 'Microsoft Edge',
// use: {
// channel: 'msedge',
// },
// },
// {
// name: 'Google Chrome',
// use: {
// channel: 'chrome',
// },
// },
],
/* Folder for test artifacts such as screenshots, videos, traces, etc. */
// outputDir: 'test-results/',
/* Run your local dev server before starting the tests */
webServer: {
/**
* Use the dev server by default for faster feedback loop.
* Use the preview server on CI for more realistic testing.
*/
command: process.env.CI ? 'vite preview --port 5173' : 'vite dev',
port: 5173,
reuseExistingServer: !process.env.CI
}
};
export default config;

View File

@ -1,11 +0,0 @@
<filesMatch "\.(html)$">
FileETag None
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</filesMatch>
<Files "*.json">
Header set Access-Control-Allow-Origin "*"
</Files>

View File

@ -1,247 +0,0 @@
{
"data": [
{"name": "Afghanistan", "code": "AF"},
{"name": "Åland Islands", "code": "AX"},
{"name": "Albania", "code": "AL"},
{"name": "Algeria", "code": "DZ"},
{"name": "American Samoa", "code": "AS"},
{"name": "Andorra", "code": "AD"},
{"name": "Angola", "code": "AO"},
{"name": "Anguilla", "code": "AI"},
{"name": "Antarctica", "code": "AQ"},
{"name": "Antigua and Barbuda", "code": "AG"},
{"name": "Argentina", "code": "AR"},
{"name": "Armenia", "code": "AM"},
{"name": "Aruba", "code": "AW"},
{"name": "Australia", "code": "AU"},
{"name": "Austria", "code": "AT"},
{"name": "Azerbaijan", "code": "AZ"},
{"name": "Bahamas", "code": "BS"},
{"name": "Bahrain", "code": "BH"},
{"name": "Bangladesh", "code": "BD"},
{"name": "Barbados", "code": "BB"},
{"name": "Belarus", "code": "BY"},
{"name": "Belgium", "code": "BE"},
{"name": "Belize", "code": "BZ"},
{"name": "Benin", "code": "BJ"},
{"name": "Bermuda", "code": "BM"},
{"name": "Bhutan", "code": "BT"},
{"name": "Bolivia", "code": "BO"},
{"name": "Bosnia and Herzegovina", "code": "BA"},
{"name": "Botswana", "code": "BW"},
{"name": "Bouvet Island", "code": "BV"},
{"name": "Brazil", "code": "BR"},
{"name": "British Indian Ocean Territory", "code": "IO"},
{"name": "Brunei Darussalam", "code": "BN"},
{"name": "Bulgaria", "code": "BG"},
{"name": "Burkina Faso", "code": "BF"},
{"name": "Burundi", "code": "BI"},
{"name": "Cambodia", "code": "KH"},
{"name": "Cameroon", "code": "CM"},
{"name": "Canada", "code": "CA"},
{"name": "Cape Verde", "code": "CV"},
{"name": "Cayman Islands", "code": "KY"},
{"name": "Central African Republic", "code": "CF"},
{"name": "Chad", "code": "TD"},
{"name": "Chile", "code": "CL"},
{"name": "China", "code": "CN"},
{"name": "Christmas Island", "code": "CX"},
{"name": "Cocos (Keeling) Islands", "code": "CC"},
{"name": "Colombia", "code": "CO"},
{"name": "Comoros", "code": "KM"},
{"name": "Congo", "code": "CG"},
{"name": "Congo, The Democratic Republic of the", "code": "CD"},
{"name": "Cook Islands", "code": "CK"},
{"name": "Costa Rica", "code": "CR"},
{"name": "Cote D\"Ivoire", "code": "CI"},
{"name": "Croatia", "code": "HR"},
{"name": "Cuba", "code": "CU"},
{"name": "Cyprus", "code": "CY"},
{"name": "Czech Republic", "code": "CZ"},
{"name": "Denmark", "code": "DK"},
{"name": "Djibouti", "code": "DJ"},
{"name": "Dominica", "code": "DM"},
{"name": "Dominican Republic", "code": "DO"},
{"name": "Ecuador", "code": "EC"},
{"name": "Egypt", "code": "EG"},
{"name": "El Salvador", "code": "SV"},
{"name": "Equatorial Guinea", "code": "GQ"},
{"name": "Eritrea", "code": "ER"},
{"name": "Estonia", "code": "EE"},
{"name": "Ethiopia", "code": "ET"},
{"name": "Falkland Islands (Malvinas)", "code": "FK"},
{"name": "Faroe Islands", "code": "FO"},
{"name": "Fiji", "code": "FJ"},
{"name": "Finland", "code": "FI"},
{"name": "France", "code": "FR"},
{"name": "French Guiana", "code": "GF"},
{"name": "French Polynesia", "code": "PF"},
{"name": "French Southern Territories", "code": "TF"},
{"name": "Gabon", "code": "GA"},
{"name": "Gambia", "code": "GM"},
{"name": "Georgia", "code": "GE"},
{"name": "Germany", "code": "DE"},
{"name": "Ghana", "code": "GH"},
{"name": "Gibraltar", "code": "GI"},
{"name": "Greece", "code": "GR"},
{"name": "Greenland", "code": "GL"},
{"name": "Grenada", "code": "GD"},
{"name": "Guadeloupe", "code": "GP"},
{"name": "Guam", "code": "GU"},
{"name": "Guatemala", "code": "GT"},
{"name": "Guernsey", "code": "GG"},
{"name": "Guinea", "code": "GN"},
{"name": "Guinea-Bissau", "code": "GW"},
{"name": "Guyana", "code": "GY"},
{"name": "Haiti", "code": "HT"},
{"name": "Heard Island and Mcdonald Islands", "code": "HM"},
{"name": "Holy See (Vatican City State)", "code": "VA"},
{"name": "Honduras", "code": "HN"},
{"name": "Hong Kong", "code": "HK"},
{"name": "Hungary", "code": "HU"},
{"name": "Iceland", "code": "IS"},
{"name": "India", "code": "IN"},
{"name": "Indonesia", "code": "ID"},
{"name": "Iran, Islamic Republic Of", "code": "IR"},
{"name": "Iraq", "code": "IQ"},
{"name": "Ireland", "code": "IE"},
{"name": "Isle of Man", "code": "IM"},
{"name": "Israel", "code": "IL"},
{"name": "Italy", "code": "IT"},
{"name": "Jamaica", "code": "JM"},
{"name": "Japan", "code": "JP"},
{"name": "Jersey", "code": "JE"},
{"name": "Jordan", "code": "JO"},
{"name": "Kazakhstan", "code": "KZ"},
{"name": "Kenya", "code": "KE"},
{"name": "Kiribati", "code": "KI"},
{"name": "Korea, Democratic People\"S Republic of", "code": "KP"},
{"name": "Korea, Republic of", "code": "KR"},
{"name": "Kuwait", "code": "KW"},
{"name": "Kyrgyzstan", "code": "KG"},
{"name": "Lao People\"S Democratic Republic", "code": "LA"},
{"name": "Latvia", "code": "LV"},
{"name": "Lebanon", "code": "LB"},
{"name": "Lesotho", "code": "LS"},
{"name": "Liberia", "code": "LR"},
{"name": "Libyan Arab Jamahiriya", "code": "LY"},
{"name": "Liechtenstein", "code": "LI"},
{"name": "Lithuania", "code": "LT"},
{"name": "Luxembourg", "code": "LU"},
{"name": "Macao", "code": "MO"},
{"name": "Macedonia, The Former Yugoslav Republic of", "code": "MK"},
{"name": "Madagascar", "code": "MG"},
{"name": "Malawi", "code": "MW"},
{"name": "Malaysia", "code": "MY"},
{"name": "Maldives", "code": "MV"},
{"name": "Mali", "code": "ML"},
{"name": "Malta", "code": "MT"},
{"name": "Marshall Islands", "code": "MH"},
{"name": "Martinique", "code": "MQ"},
{"name": "Mauritania", "code": "MR"},
{"name": "Mauritius", "code": "MU"},
{"name": "Mayotte", "code": "YT"},
{"name": "Mexico", "code": "MX"},
{"name": "Micronesia, Federated States of", "code": "FM"},
{"name": "Moldova, Republic of", "code": "MD"},
{"name": "Monaco", "code": "MC"},
{"name": "Mongolia", "code": "MN"},
{"name": "Montserrat", "code": "MS"},
{"name": "Morocco", "code": "MA"},
{"name": "Mozambique", "code": "MZ"},
{"name": "Myanmar", "code": "MM"},
{"name": "Namibia", "code": "NA"},
{"name": "Nauru", "code": "NR"},
{"name": "Nepal", "code": "NP"},
{"name": "Netherlands", "code": "NL"},
{"name": "Netherlands Antilles", "code": "AN"},
{"name": "New Caledonia", "code": "NC"},
{"name": "New Zealand", "code": "NZ"},
{"name": "Nicaragua", "code": "NI"},
{"name": "Niger", "code": "NE"},
{"name": "Nigeria", "code": "NG"},
{"name": "Niue", "code": "NU"},
{"name": "Norfolk Island", "code": "NF"},
{"name": "Northern Mariana Islands", "code": "MP"},
{"name": "Norway", "code": "NO"},
{"name": "Oman", "code": "OM"},
{"name": "Pakistan", "code": "PK"},
{"name": "Palau", "code": "PW"},
{"name": "Palestinian Territory, Occupied", "code": "PS"},
{"name": "Panama", "code": "PA"},
{"name": "Papua New Guinea", "code": "PG"},
{"name": "Paraguay", "code": "PY"},
{"name": "Peru", "code": "PE"},
{"name": "Philippines", "code": "PH"},
{"name": "Pitcairn", "code": "PN"},
{"name": "Poland", "code": "PL"},
{"name": "Portugal", "code": "PT"},
{"name": "Puerto Rico", "code": "PR"},
{"name": "Qatar", "code": "QA"},
{"name": "Reunion", "code": "RE"},
{"name": "Romania", "code": "RO"},
{"name": "Russian Federation", "code": "RU"},
{"name": "RWANDA", "code": "RW"},
{"name": "Saint Helena", "code": "SH"},
{"name": "Saint Kitts and Nevis", "code": "KN"},
{"name": "Saint Lucia", "code": "LC"},
{"name": "Saint Pierre and Miquelon", "code": "PM"},
{"name": "Saint Vincent and the Grenadines", "code": "VC"},
{"name": "Samoa", "code": "WS"},
{"name": "San Marino", "code": "SM"},
{"name": "Sao Tome and Principe", "code": "ST"},
{"name": "Saudi Arabia", "code": "SA"},
{"name": "Senegal", "code": "SN"},
{"name": "Serbia and Montenegro", "code": "CS"},
{"name": "Seychelles", "code": "SC"},
{"name": "Sierra Leone", "code": "SL"},
{"name": "Singapore", "code": "SG"},
{"name": "Slovakia", "code": "SK"},
{"name": "Slovenia", "code": "SI"},
{"name": "Solomon Islands", "code": "SB"},
{"name": "Somalia", "code": "SO"},
{"name": "South Africa", "code": "ZA"},
{"name": "South Georgia and the South Sandwich Islands", "code": "GS"},
{"name": "Spain", "code": "ES"},
{"name": "Sri Lanka", "code": "LK"},
{"name": "Sudan", "code": "SD"},
{"name": "Suriname", "code": "SR"},
{"name": "Svalbard and Jan Mayen", "code": "SJ"},
{"name": "Swaziland", "code": "SZ"},
{"name": "Sweden", "code": "SE"},
{"name": "Switzerland", "code": "CH"},
{"name": "Syrian Arab Republic", "code": "SY"},
{"name": "Taiwan, Province of China", "code": "TW"},
{"name": "Tajikistan", "code": "TJ"},
{"name": "Tanzania, United Republic of", "code": "TZ"},
{"name": "Thailand", "code": "TH"},
{"name": "Timor-Leste", "code": "TL"},
{"name": "Togo", "code": "TG"},
{"name": "Tokelau", "code": "TK"},
{"name": "Tonga", "code": "TO"},
{"name": "Trinidad and Tobago", "code": "TT"},
{"name": "Tunisia", "code": "TN"},
{"name": "Turkey", "code": "TR"},
{"name": "Turkmenistan", "code": "TM"},
{"name": "Turks and Caicos Islands", "code": "TC"},
{"name": "Tuvalu", "code": "TV"},
{"name": "Uganda", "code": "UG"},
{"name": "Ukraine", "code": "UA"},
{"name": "United Arab Emirates", "code": "AE"},
{"name": "United Kingdom", "code": "GB"},
{"name": "United States", "code": "US"},
{"name": "United States Minor Outlying Islands", "code": "UM"},
{"name": "Uruguay", "code": "UY"},
{"name": "Uzbekistan", "code": "UZ"},
{"name": "Vanuatu", "code": "VU"},
{"name": "Venezuela", "code": "VE"},
{"name": "Viet Nam", "code": "VN"},
{"name": "Virgin Islands, British", "code": "VG"},
{"name": "Virgin Islands, U.S.", "code": "VI"},
{"name": "Wallis and Futuna", "code": "WF"},
{"name": "Western Sahara", "code": "EH"},
{"name": "Yemen", "code": "YE"},
{"name": "Zambia", "code": "ZM"},
{"name": "Zimbabwe", "code": "ZW"}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -1,804 +0,0 @@
{
"data": [
{
"id": 1000,
"name": "James Butt",
"country": {
"name": "Algeria",
"code": "dz"
},
"company": "Benton, John B Jr",
"date": "2015-09-13",
"status": "unqualified",
"activity": 17,
"representative": {
"name": "Ioni Bowcher",
"image": "ionibowcher.png"
}
},
{
"id": 1001,
"name": "Josephine Darakjy",
"country": {
"name": "Egypt",
"code": "eg"
},
"company": "Chanay, Jeffrey A Esq",
"date": "2019-02-09",
"status": "proposal",
"activity": 0,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1002,
"name": "Art Venere",
"country": {
"name": "Panama",
"code": "pa"
},
"company": "Chemel, James L Cpa",
"date": "2017-05-13",
"status": "qualified",
"activity": 63,
"representative": {
"name": "Asiya Javayant",
"image": "asiyajavayant.png"
}
},
{
"id": 1003,
"name": "Lenna Paprocki",
"country": {
"name": "Slovenia",
"code": "si"
},
"company": "Feltz Printing Service",
"date": "2020-09-15",
"status": "new",
"activity": 37,
"representative": {
"name": "Xuxue Feng",
"image": "xuxuefeng.png"
}
},
{
"id": 1004,
"name": "Donette Foller",
"country": {
"name": "South Africa",
"code": "za"
},
"company": "Printing Dimensions",
"date": "2016-05-20",
"status": "proposal",
"activity": 33,
"representative": {
"name": "Asiya Javayant",
"image": "asiyajavayant.png"
}
},
{
"id": 1005,
"name": "Simona Morasca",
"country": {
"name": "Egypt",
"code": "eg"
},
"company": "Chapman, Ross E Esq",
"date": "2018-02-16",
"status": "qualified",
"activity": 68,
"representative": {
"name": "Ivan Magalhaes",
"image": "ivanmagalhaes.png"
}
},
{
"id": 1006,
"name": "Mitsue Tollner",
"country": {
"name": "Paraguay",
"code": "py"
},
"company": "Morlong Associates",
"date": "2018-02-19",
"status": "renewal",
"activity": 54,
"representative": {
"name": "Ivan Magalhaes",
"image": "ivanmagalhaes.png"
}
},
{
"id": 1007,
"name": "Leota Dilliard",
"country": {
"name": "Serbia",
"code": "rs"
},
"company": "Commercial Press",
"date": "2019-08-13",
"status": "renewal",
"activity": 69,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1008,
"name": "Sage Wieser",
"country": {
"name": "Egypt",
"code": "eg"
},
"company": "Truhlar And Truhlar Attys",
"date": "2018-11-21",
"status": "unqualified",
"activity": 76,
"representative": {
"name": "Ivan Magalhaes",
"image": "ivanmagalhaes.png"
}
},
{
"id": 1009,
"name": "Kris Marrier",
"country": {
"name": "Mexico",
"code": "mx"
},
"company": "King, Christopher A Esq",
"date": "2015-07-07",
"status": "proposal",
"activity": 3,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1010,
"name": "Minna Amigon",
"country": {
"name": "Romania",
"code": "ro"
},
"company": "Dorl, James J Esq",
"date": "2018-11-07",
"status": "qualified",
"activity": 38,
"representative": {
"name": "Anna Fali",
"image": "annafali.png"
}
},
{
"id": 1011,
"name": "Abel Maclead",
"country": {
"name": "Singapore",
"code": "sg"
},
"company": "Rangoni Of Florence",
"date": "2017-03-11",
"status": "qualified",
"activity": 87,
"representative": {
"name": "Bernardo Dominic",
"image": "bernardodominic.png"
}
},
{
"id": 1012,
"name": "Kiley Caldarera",
"country": {
"name": "Serbia",
"code": "rs"
},
"company": "Feiner Bros",
"date": "2015-10-20",
"status": "unqualified",
"activity": 80,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1013,
"name": "Graciela Ruta",
"country": {
"name": "Chile",
"code": "cl"
},
"company": "Buckley Miller \u0026 Wright",
"date": "2016-07-25",
"status": "negotiation",
"activity": 59,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1014,
"name": "Cammy Albares",
"country": {
"name": "Philippines",
"code": "ph"
},
"company": "Rousseaux, Michael Esq",
"date": "2019-06-25",
"status": "new",
"activity": 90,
"representative": {
"name": "Asiya Javayant",
"image": "asiyajavayant.png"
}
},
{
"id": 1015,
"name": "Mattie Poquette",
"country": {
"name": "Venezuela",
"code": "ve"
},
"company": "Century Communications",
"date": "2017-12-12",
"status": "negotiation",
"activity": 52,
"representative": {
"name": "Anna Fali",
"image": "annafali.png"
}
},
{
"id": 1016,
"name": "Meaghan Garufi",
"country": {
"name": "Malaysia",
"code": "my"
},
"company": "Bolton, Wilbur Esq",
"date": "2018-07-04",
"status": "unqualified",
"activity": 31,
"representative": {
"name": "Ivan Magalhaes",
"image": "ivanmagalhaes.png"
}
},
{
"id": 1017,
"name": "Gladys Rim",
"country": {
"name": "Netherlands",
"code": "nl"
},
"company": "T M Byxbee Company Pc",
"date": "2020-02-27",
"status": "renewal",
"activity": 48,
"representative": {
"name": "Stephen Shaw",
"image": "stephenshaw.png"
}
},
{
"id": 1018,
"name": "Yuki Whobrey",
"country": {
"name": "Israel",
"code": "il"
},
"company": "Farmers Insurance Group",
"date": "2017-12-21",
"status": "negotiation",
"activity": 16,
"representative": {
"name": "Bernardo Dominic",
"image": "bernardodominic.png"
}
},
{
"id": 1019,
"name": "Fletcher Flosi",
"country": {
"name": "Argentina",
"code": "ar"
},
"company": "Post Box Services Plus",
"date": "2016-01-04",
"status": "renewal",
"activity": 19,
"representative": {
"name": "Xuxue Feng",
"image": "xuxuefeng.png"
}
},
{
"id": 1020,
"name": "Bette Nicka",
"country": {
"name": "Paraguay",
"code": "py"
},
"company": "Sport En Art",
"date": "2016-10-21",
"status": "renewal",
"activity": 100,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1021,
"name": "Veronika Inouye",
"country": {
"name": "Ecuador",
"code": "ec"
},
"company": "C 4 Network Inc",
"date": "2017-03-24",
"status": "renewal",
"activity": 72,
"representative": {
"name": "Ioni Bowcher",
"image": "ionibowcher.png"
}
},
{
"id": 1022,
"name": "Willard Kolmetz",
"country": {
"name": "Tunisia",
"code": "tn"
},
"company": "Ingalls, Donald R Esq",
"date": "2017-04-15",
"status": "renewal",
"activity": 94,
"representative": {
"name": "Asiya Javayant",
"image": "asiyajavayant.png"
}
},
{
"id": 1023,
"name": "Maryann Royster",
"country": {
"name": "Belarus",
"code": "by"
},
"company": "Franklin, Peter L Esq",
"date": "2017-03-11",
"status": "qualified",
"activity": 56,
"representative": {
"name": "Elwin Sharvill",
"image": "elwinsharvill.png"
}
},
{
"id": 1024,
"name": "Alisha Slusarski",
"country": {
"name": "Iceland",
"code": "is"
},
"company": "Wtlz Power 107 Fm",
"date": "2018-03-27",
"status": "qualified",
"activity": 7,
"representative": {
"name": "Stephen Shaw",
"image": "stephenshaw.png"
}
},
{
"id": 1025,
"name": "Allene Iturbide",
"country": {
"name": "Italy",
"code": "it"
},
"company": "Ledecky, David Esq",
"date": "2016-02-20",
"status": "qualified",
"activity": 1,
"representative": {
"name": "Ivan Magalhaes",
"image": "ivanmagalhaes.png"
}
},
{
"id": 1026,
"name": "Chanel Caudy",
"country": {
"name": "Argentina",
"code": "ar"
},
"company": "Professional Image Inc",
"date": "2018-06-24",
"status": "new",
"activity": 26,
"representative": {
"name": "Ioni Bowcher",
"image": "ionibowcher.png"
}
},
{
"id": 1027,
"name": "Ezekiel Chui",
"country": {
"name": "Ireland",
"code": "ie"
},
"company": "Sider, Donald C Esq",
"date": "2016-09-24",
"status": "new",
"activity": 76,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1028,
"name": "Willow Kusko",
"country": {
"name": "Romania",
"code": "ro"
},
"company": "U Pull It",
"date": "2020-04-11",
"status": "qualified",
"activity": 7,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1029,
"name": "Bernardo Figeroa",
"country": {
"name": "Israel",
"code": "il"
},
"company": "Clark, Richard Cpa",
"date": "2018-04-11",
"status": "renewal",
"activity": 81,
"representative": {
"name": "Ioni Bowcher",
"image": "ionibowcher.png"
}
},
{
"id": 1030,
"name": "Ammie Corrio",
"country": {
"name": "Hungary",
"code": "hu"
},
"company": "Moskowitz, Barry S",
"date": "2016-06-11",
"status": "negotiation",
"activity": 56,
"representative": {
"name": "Asiya Javayant",
"image": "asiyajavayant.png"
}
},
{
"id": 1031,
"name": "Francine Vocelka",
"country": {
"name": "Honduras",
"code": "hn"
},
"company": "Cascade Realty Advisors Inc",
"date": "2017-08-02",
"status": "qualified",
"activity": 94,
"representative": {
"name": "Ioni Bowcher",
"image": "ionibowcher.png"
}
},
{
"id": 1032,
"name": "Ernie Stenseth",
"country": {
"name": "Australia",
"code": "au"
},
"company": "Knwz Newsradio",
"date": "2018-06-06",
"status": "renewal",
"activity": 68,
"representative": {
"name": "Xuxue Feng",
"image": "xuxuefeng.png"
}
},
{
"id": 1033,
"name": "Albina Glick",
"country": {
"name": "Ukraine",
"code": "ua"
},
"company": "Giampetro, Anthony D",
"date": "2019-08-08",
"status": "proposal",
"activity": 85,
"representative": {
"name": "Bernardo Dominic",
"image": "bernardodominic.png"
}
},
{
"id": 1034,
"name": "Alishia Sergi",
"country": {
"name": "Qatar",
"code": "qa"
},
"company": "Milford Enterprises Inc",
"date": "2018-05-19",
"status": "negotiation",
"activity": 46,
"representative": {
"name": "Ivan Magalhaes",
"image": "ivanmagalhaes.png"
}
},
{
"id": 1035,
"name": "Solange Shinko",
"country": {
"name": "Cameroon",
"code": "cm"
},
"company": "Mosocco, Ronald A",
"date": "2015-02-12",
"status": "qualified",
"activity": 32,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1036,
"name": "Jose Stockham",
"country": {
"name": "Italy",
"code": "it"
},
"company": "Tri State Refueler Co",
"date": "2018-04-25",
"status": "qualified",
"activity": 77,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1037,
"name": "Rozella Ostrosky",
"country": {
"name": "Venezuela",
"code": "ve"
},
"company": "Parkway Company",
"date": "2016-02-27",
"status": "unqualified",
"activity": 66,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1038,
"name": "Valentine Gillian",
"country": {
"name": "Paraguay",
"code": "py"
},
"company": "Fbs Business Finance",
"date": "2019-09-17",
"status": "qualified",
"activity": 25,
"representative": {
"name": "Bernardo Dominic",
"image": "bernardodominic.png"
}
},
{
"id": 1039,
"name": "Kati Rulapaugh",
"country": {
"name": "Puerto Rico",
"code": "pr"
},
"company": "Eder Assocs Consltng Engrs Pc",
"date": "2016-12-03",
"status": "renewal",
"activity": 51,
"representative": {
"name": "Ioni Bowcher",
"image": "ionibowcher.png"
}
},
{
"id": 1040,
"name": "Youlanda Schemmer",
"country": {
"name": "Bolivia",
"code": "bo"
},
"company": "Tri M Tool Inc",
"date": "2017-12-15",
"status": "negotiation",
"activity": 49,
"representative": {
"name": "Xuxue Feng",
"image": "xuxuefeng.png"
}
},
{
"id": 1041,
"name": "Dyan Oldroyd",
"country": {
"name": "Argentina",
"code": "ar"
},
"company": "International Eyelets Inc",
"date": "2017-02-02",
"status": "qualified",
"activity": 5,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1042,
"name": "Roxane Campain",
"country": {
"name": "France",
"code": "fr"
},
"company": "Rapid Trading Intl",
"date": "2018-12-25",
"status": "unqualified",
"activity": 100,
"representative": {
"name": "Anna Fali",
"image": "annafali.png"
}
},
{
"id": 1043,
"name": "Lavera Perin",
"country": {
"name": "Vietnam",
"code": "vn"
},
"company": "Abc Enterprises Inc",
"date": "2018-04-10",
"status": "qualified",
"activity": 71,
"representative": {
"name": "Stephen Shaw",
"image": "stephenshaw.png"
}
},
{
"id": 1044,
"name": "Erick Ferencz",
"country": {
"name": "Belgium",
"code": "be"
},
"company": "Cindy Turner Associates",
"date": "2018-05-06",
"status": "unqualified",
"activity": 54,
"representative": {
"name": "Amy Elsner",
"image": "amyelsner.png"
}
},
{
"id": 1045,
"name": "Fatima Saylors",
"country": {
"name": "Canada",
"code": "ca"
},
"company": "Stanton, James D Esq",
"date": "2019-07-10",
"status": "renewal",
"activity": 93,
"representative": {
"name": "Onyama Limba",
"image": "onyamalimba.png"
}
},
{
"id": 1046,
"name": "Jina Briddick",
"country": {
"name": "Mexico",
"code": "mx"
},
"company": "Grace Pastries Inc",
"date": "2018-02-19",
"status": "unqualified",
"activity": 97,
"representative": {
"name": "Xuxue Feng",
"image": "xuxuefeng.png"
}
},
{
"id": 1047,
"name": "Kanisha Waycott",
"country": {
"name": "Ecuador",
"code": "ec"
},
"company": "Schroer, Gene E Esq",
"date": "2019-11-27",
"status": "new",
"activity": 80,
"representative": {
"name": "Xuxue Feng",
"image": "xuxuefeng.png"
}
},
{
"id": 1048,
"name": "Emerson Bowley",
"country": {
"name": "Finland",
"code": "fi"
},
"company": "Knights Inn",
"date": "2018-11-24",
"status": "new",
"activity": 63,
"representative": {
"name": "Stephen Shaw",
"image": "stephenshaw.png"
}
},
{
"id": 1049,
"name": "Blair Malet",
"country": {
"name": "Finland",
"code": "fi"
},
"company": "Bollinger Mach Shp \u0026 Shipyard",
"date": "2018-04-19",
"status": "new",
"activity": 92,
"representative": {
"name": "Asiya Javayant",
"image": "asiyajavayant.png"
}
}
]
}

View File

@ -1,68 +0,0 @@
{
"data": [
{
"id": 1,
"title": "All Day Event",
"start": "2021-01-03"
},
{
"id": 2,
"title": "Long Event",
"start": "2021-01-09",
"end": "2021-01-12"
},
{
"id": 3,
"title": "Repeating Event",
"start": "2021-01-11T16:00:00"
},
{
"id": 4,
"title": "Repeating Event",
"start": "2021-01-18T16:00:00"
},
{
"id": 5,
"title": "Conference",
"start": "2021-01-13",
"end": "2021-01-15"
},
{
"id": 6,
"title": "Meeting",
"start": "2021-01-14T10:30:00",
"end": "2021-01-14T12:30:00"
},
{
"id": 7,
"title": "Lunch",
"start": "2021-01-14T12:00:00"
},
{
"id": 8,
"title": "Meeting",
"start": "2021-01-14T14:30:00"
},
{
"id": 9,
"title": "Happy Hour",
"start": "2021-01-14T17:30:00"
},
{
"id": 10,
"title": "Dinner",
"start": "2021-01-14T20:00:00"
},
{
"id": 11,
"title": "Birthday Party",
"start": "2021-01-15T07:00:00"
},
{
"id": 12,
"title": "Click for Google",
"url": "http://google.com/",
"start": "2021-01-30"
}
]
}

File diff suppressed because one or more lines are too long

View File

@ -1,94 +0,0 @@
{
"data":[
{
"itemImageSrc": "demo/images/galleria/galleria1.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria1s.jpg",
"alt": "Description for Image 1",
"title": "Title 1"
},
{
"itemImageSrc": "demo/images/galleria/galleria2.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria2s.jpg",
"alt": "Description for Image 2",
"title": "Title 2"
},
{
"itemImageSrc": "demo/images/galleria/galleria3.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria3s.jpg",
"alt": "Description for Image 3",
"title": "Title 3"
},
{
"itemImageSrc": "demo/images/galleria/galleria4.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria4s.jpg",
"alt": "Description for Image 4",
"title": "Title 4"
},
{
"itemImageSrc": "demo/images/galleria/galleria5.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria5s.jpg",
"alt": "Description for Image 5",
"title": "Title 5"
},
{
"itemImageSrc": "demo/images/galleria/galleria6.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria6s.jpg",
"alt": "Description for Image 6",
"title": "Title 6"
},
{
"itemImageSrc": "demo/images/galleria/galleria7.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria7s.jpg",
"alt": "Description for Image 7",
"title": "Title 7"
},
{
"itemImageSrc": "demo/images/galleria/galleria8.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria8s.jpg",
"alt": "Description for Image 8",
"title": "Title 8"
},
{
"itemImageSrc": "demo/images/galleria/galleria9.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria9s.jpg",
"alt": "Description for Image 9",
"title": "Title 9"
},
{
"itemImageSrc": "demo/images/galleria/galleria10.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria10s.jpg",
"alt": "Description for Image 10",
"title": "Title 10"
},
{
"itemImageSrc": "demo/images/galleria/galleria11.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria11s.jpg",
"alt": "Description for Image 11",
"title": "Title 11"
},
{
"itemImageSrc": "demo/images/galleria/galleria12.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria12s.jpg",
"alt": "Description for Image 12",
"title": "Title 12"
},
{
"itemImageSrc": "demo/images/galleria/galleria13.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria13s.jpg",
"alt": "Description for Image 13",
"title": "Title 13"
},
{
"itemImageSrc": "demo/images/galleria/galleria14.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria14s.jpg",
"alt": "Description for Image 14",
"title": "Title 14"
},
{
"itemImageSrc": "demo/images/galleria/galleria15.jpg",
"thumbnailImageSrc": "demo/images/galleria/galleria15s.jpg",
"alt": "Description for Image 15",
"title": "Title 15"
}
]
}

View File

@ -1,341 +0,0 @@
{
"data": [
{
"id": "1000",
"code": "f230fh0g3",
"name": "Bamboo Watch",
"description": "Product Description",
"image": "bamboo-watch.jpg",
"price": 65,
"category": "Accessories",
"quantity": 24,
"inventoryStatus": "INSTOCK",
"rating": 5,
"orders": [
{
"id": "1000",
"productCode": "f230fh0g3",
"date": "2020-09-13",
"amount": 65,
"quantity": 1,
"customer": "David James",
"status": "PENDING"
},
{
"id": "1001",
"productCode": "f230fh0g3",
"date": "2020-05-14",
"amount": 130,
"quantity": 2,
"customer": "Leon Rodrigues",
"status": "DELIVERED"
},
{
"id": "1002",
"productCode": "f230fh0g3",
"date": "2019-01-04",
"amount": 65,
"quantity": 1,
"customer": "Juan Alejandro",
"status": "RETURNED"
},
{
"id": "1003",
"productCode": "f230fh0g3",
"date": "2020-09-13",
"amount": 195,
"quantity": 3,
"customer": "Claire Morrow",
"status": "CANCELLED"
}
]
},
{
"id": "1001",
"code": "nvklal433",
"name": "Black Watch",
"description": "Product Description",
"image": "black-watch.jpg",
"price": 72,
"category": "Accessories",
"quantity": 61,
"inventoryStatus": "INSTOCK",
"rating": 4,
"orders": [
{
"id": "2000",
"productCode": "nvklal433",
"date": "2020-05-14",
"amount": 72,
"quantity": 1,
"customer": "Maisha Jefferson",
"status": "DELIVERED"
},
{
"id": "2001",
"productCode": "nvklal433",
"date": "2020-02-28",
"amount": 144,
"quantity": 2,
"customer": "Octavia Murillo",
"status": "PENDING"
}
]
},
{
"id": "1002",
"code": "zz21cz3c1",
"name": "Blue Band",
"description": "Product Description",
"image": "blue-band.jpg",
"price": 79,
"category": "Fitness",
"quantity": 2,
"inventoryStatus": "LOWSTOCK",
"rating": 3,
"orders": [
{
"id": "3000",
"productCode": "zz21cz3c1",
"date": "2020-07-05",
"amount": 79,
"quantity": 1,
"customer": "Stacey Leja",
"status": "DELIVERED"
},
{
"id": "3001",
"productCode": "zz21cz3c1",
"date": "2020-02-06",
"amount": 79,
"quantity": 1,
"customer": "Ashley Wickens",
"status": "DELIVERED"
}
]
},
{
"id": "1003",
"code": "244wgerg2",
"name": "Blue T-Shirt",
"description": "Product Description",
"image": "blue-t-shirt.jpg",
"price": 29,
"category": "Clothing",
"quantity": 25,
"inventoryStatus": "INSTOCK",
"rating": 5,
"orders": []
},
{
"id": "1004",
"code": "h456wer53",
"name": "Bracelet",
"description": "Product Description",
"image": "bracelet.jpg",
"price": 15,
"category": "Accessories",
"quantity": 73,
"inventoryStatus": "INSTOCK",
"rating": 4,
"orders": [
{
"id": "5000",
"productCode": "h456wer53",
"date": "2020-09-05",
"amount": 60,
"quantity": 4,
"customer": "Mayumi Misaki",
"status": "PENDING"
},
{
"id": "5001",
"productCode": "h456wer53",
"date": "2019-04-16",
"amount": 2,
"quantity": 30,
"customer": "Francesco Salvatore",
"status": "DELIVERED"
}
]
},
{
"id": "1005",
"code": "av2231fwg",
"name": "Brown Purse",
"description": "Product Description",
"image": "brown-purse.jpg",
"price": 120,
"category": "Accessories",
"quantity": 0,
"inventoryStatus": "OUTOFSTOCK",
"rating": 4,
"orders": [
{
"id": "6000",
"productCode": "av2231fwg",
"date": "2020-01-25",
"amount": 120,
"quantity": 1,
"customer": "Isabel Sinclair",
"status": "RETURNED"
},
{
"id": "6001",
"productCode": "av2231fwg",
"date": "2019-03-12",
"amount": 240,
"quantity": 2,
"customer": "Lionel Clifford",
"status": "DELIVERED"
},
{
"id": "6002",
"productCode": "av2231fwg",
"date": "2019-05-05",
"amount": 120,
"quantity": 1,
"customer": "Cody Chavez",
"status": "DELIVERED"
}
]
},
{
"id": "1006",
"code": "bib36pfvm",
"name": "Chakra Bracelet",
"description": "Product Description",
"image": "chakra-bracelet.jpg",
"price": 32,
"category": "Accessories",
"quantity": 5,
"inventoryStatus": "LOWSTOCK",
"rating": 3,
"orders": [
{
"id": "7000",
"productCode": "bib36pfvm",
"date": "2020-02-24",
"amount": 32,
"quantity": 1,
"customer": "Arvin Darci",
"status": "DELIVERED"
},
{
"id": "7001",
"productCode": "bib36pfvm",
"date": "2020-01-14",
"amount": 64,
"quantity": 2,
"customer": "Izzy Jones",
"status": "PENDING"
}
]
},
{
"id": "1007",
"code": "mbvjkgip5",
"name": "Galaxy Earrings",
"description": "Product Description",
"image": "galaxy-earrings.jpg",
"price": 34,
"category": "Accessories",
"quantity": 23,
"inventoryStatus": "INSTOCK",
"rating": 5,
"orders": [
{
"id": "8000",
"productCode": "mbvjkgip5",
"date": "2020-06-19",
"amount": 34,
"quantity": 1,
"customer": "Jennifer Smith",
"status": "DELIVERED"
}
]
},
{
"id": "1008",
"code": "vbb124btr",
"name": "Game Controller",
"description": "Product Description",
"image": "game-controller.jpg",
"price": 99,
"category": "Electronics",
"quantity": 2,
"inventoryStatus": "LOWSTOCK",
"rating": 4,
"orders": [
{
"id": "9000",
"productCode": "vbb124btr",
"date": "2020-01-05",
"amount": 99,
"quantity": 1,
"customer": "Jeanfrancois David",
"status": "DELIVERED"
},
{
"id": "9001",
"productCode": "vbb124btr",
"date": "2020-01-19",
"amount": 198,
"quantity": 2,
"customer": "Ivar Greenwood",
"status": "RETURNED"
}
]
},
{
"id": "1009",
"code": "cm230f032",
"name": "Gaming Set",
"description": "Product Description",
"image": "gaming-set.jpg",
"price": 299,
"category": "Electronics",
"quantity": 63,
"inventoryStatus": "INSTOCK",
"rating": 3,
"orders": [
{
"id": "10000",
"productCode": "cm230f032",
"date": "2020-06-24",
"amount": 299,
"quantity": 1,
"customer": "Kadeem Mujtaba",
"status": "PENDING"
},
{
"id": "10001",
"productCode": "cm230f032",
"date": "2020-05-11",
"amount": 299,
"quantity": 1,
"customer": "Ashley Wickens",
"status": "DELIVERED"
},
{
"id": "10002",
"productCode": "cm230f032",
"date": "2019-02-07",
"amount": 299,
"quantity": 1,
"customer": "Julie Johnson",
"status": "DELIVERED"
},
{
"id": "10003",
"productCode": "cm230f032",
"date": "2020-04-26",
"amount": 299,
"quantity": 1,
"customer": "Tony Costa",
"status": "CANCELLED"
}
]
}
]
}

View File

@ -1,15 +0,0 @@
{
"data": [
{"id": "1000","code": "f230fh0g3","name": "Bamboo Watch","description": "Product Description","image": "bamboo-watch.jpg","price": 65,"category": "Accessories","quantity": 24,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1001","code": "nvklal433","name": "Black Watch","description": "Product Description","image": "black-watch.jpg","price": 72,"category": "Accessories","quantity": 61,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1002","code": "zz21cz3c1","name": "Blue Band","description": "Product Description","image": "blue-band.jpg","price": 79,"category": "Fitness","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 3},
{"id": "1003","code": "244wgerg2","name": "Blue T-Shirt","description": "Product Description","image": "blue-t-shirt.jpg","price": 29,"category": "Clothing","quantity": 25,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1004","code": "h456wer53","name": "Bracelet","description": "Product Description","image": "bracelet.jpg","price": 15,"category": "Accessories","quantity": 73,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1005","code": "av2231fwg","name": "Brown Purse","description": "Product Description","image": "brown-purse.jpg","price": 120,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
{"id": "1006","code": "bib36pfvm","name": "Chakra Bracelet","description": "Product Description","image": "chakra-bracelet.jpg","price": 32,"category": "Accessories","quantity": 5,"inventoryStatus": "LOWSTOCK","rating": 3},
{"id": "1007","code": "mbvjkgip5","name": "Galaxy Earrings","description": "Product Description","image": "galaxy-earrings.jpg","price": 34,"category": "Accessories","quantity": 23,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1008","code": "vbb124btr","name": "Game Controller","description": "Product Description","image": "game-controller.jpg","price": 99,"category": "Electronics","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 4},
{"id": "1009","code": "cm230f032","name": "Gaming Set","description": "Product Description","image": "gaming-set.jpg","price": 299,"category": "Electronics","quantity": 63,"inventoryStatus": "INSTOCK","rating": 3}
]
}

View File

@ -1,36 +0,0 @@
{
"data": [
{"id": "1000","code": "f230fh0g3","name": "Bamboo Watch","description": "Product Description","image": "bamboo-watch.jpg","price": 65,"category": "Accessories","quantity": 24,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1001","code": "nvklal433","name": "Black Watch","description": "Product Description","image": "black-watch.jpg","price": 72,"category": "Accessories","quantity": 61,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1002","code": "zz21cz3c1","name": "Blue Band","description": "Product Description","image": "blue-band.jpg","price": 79,"category": "Fitness","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 3},
{"id": "1003","code": "244wgerg2","name": "Blue T-Shirt","description": "Product Description","image": "blue-t-shirt.jpg","price": 29,"category": "Clothing","quantity": 25,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1004","code": "h456wer53","name": "Bracelet","description": "Product Description","image": "bracelet.jpg","price": 15,"category": "Accessories","quantity": 73,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1005","code": "av2231fwg","name": "Brown Purse","description": "Product Description","image": "brown-purse.jpg","price": 120,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
{"id": "1006","code": "bib36pfvm","name": "Chakra Bracelet","description": "Product Description","image": "chakra-bracelet.jpg","price": 32,"category": "Accessories","quantity": 5,"inventoryStatus": "LOWSTOCK","rating": 3},
{"id": "1007","code": "mbvjkgip5","name": "Galaxy Earrings","description": "Product Description","image": "galaxy-earrings.jpg","price": 34,"category": "Accessories","quantity": 23,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1008","code": "vbb124btr","name": "Game Controller","description": "Product Description","image": "game-controller.jpg","price": 99,"category": "Electronics","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 4},
{"id": "1009","code": "cm230f032","name": "Gaming Set","description": "Product Description","image": "gaming-set.jpg","price": 299,"category": "Electronics","quantity": 63,"inventoryStatus": "INSTOCK","rating": 3},
{"id": "1010","code": "plb34234v","name": "Gold Phone Case","description": "Product Description","image": "gold-phone-case.jpg","price": 24,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
{"id": "1011","code": "4920nnc2d","name": "Green Earbuds","description": "Product Description","image": "green-earbuds.jpg","price": 89,"category": "Electronics","quantity": 23,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1012","code": "250vm23cc","name": "Green T-Shirt","description": "Product Description","image": "green-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 74,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1013","code": "fldsmn31b","name": "Grey T-Shirt","description": "Product Description","image": "grey-t-shirt.jpg","price": 48,"category": "Clothing","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 3},
{"id": "1014","code": "waas1x2as","name": "Headphones","description": "Product Description","image": "headphones.jpg","price": 175,"category": "Electronics","quantity": 8,"inventoryStatus": "LOWSTOCK","rating": 5},
{"id": "1015","code": "vb34btbg5","name": "Light Green T-Shirt","description": "Product Description","image": "light-green-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 34,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1016","code": "k8l6j58jl","name": "Lime Band","description": "Product Description","image": "lime-band.jpg","price": 79,"category": "Fitness","quantity": 12,"inventoryStatus": "INSTOCK","rating": 3},
{"id": "1017","code": "v435nn85n","name": "Mini Speakers","description": "Product Description","image": "mini-speakers.jpg","price": 85,"category": "Clothing","quantity": 42,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1018","code": "09zx9c0zc","name": "Painted Phone Case","description": "Product Description","image": "painted-phone-case.jpg","price": 56,"category": "Accessories","quantity": 41,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1019","code": "mnb5mb2m5","name": "Pink Band","description": "Product Description","image": "pink-band.jpg","price": 79,"category": "Fitness","quantity": 63,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1020","code": "r23fwf2w3","name": "Pink Purse","description": "Product Description","image": "pink-purse.jpg","price": 110,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
{"id": "1021","code": "pxpzczo23","name": "Purple Band","description": "Product Description","image": "purple-band.jpg","price": 79,"category": "Fitness","quantity": 6,"inventoryStatus": "LOWSTOCK","rating": 3},
{"id": "1022","code": "2c42cb5cb","name": "Purple Gemstone Necklace","description": "Product Description","image": "purple-gemstone-necklace.jpg","price": 45,"category": "Accessories","quantity": 62,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1023","code": "5k43kkk23","name": "Purple T-Shirt","description": "Product Description","image": "purple-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 5},
{"id": "1024","code": "lm2tny2k4","name": "Shoes","description": "Product Description","image": "shoes.jpg","price": 64,"category": "Clothing","quantity": 0,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1025","code": "nbm5mv45n","name": "Sneakers","description": "Product Description","image": "sneakers.jpg","price": 78,"category": "Clothing","quantity": 52,"inventoryStatus": "INSTOCK","rating": 4},
{"id": "1026","code": "zx23zc42c","name": "Teal T-Shirt","description": "Product Description","image": "teal-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 3,"inventoryStatus": "LOWSTOCK","rating": 3},
{"id": "1027","code": "acvx872gc","name": "Yellow Earbuds","description": "Product Description","image": "yellow-earbuds.jpg","price": 89,"category": "Electronics","quantity": 35,"inventoryStatus": "INSTOCK","rating": 3},
{"id": "1028","code": "tx125ck42","name": "Yoga Mat","description": "Product Description","image": "yoga-mat.jpg","price": 20,"category": "Fitness","quantity": 15,"inventoryStatus": "INSTOCK","rating": 5},
{"id": "1029","code": "gwuby345v","name": "Yoga Set","description": "Product Description","image": "yoga-set.jpg","price": 20,"category": "Fitness","quantity": 25,"inventoryStatus": "INSTOCK","rating": 8}
]
}

View File

@ -1,54 +0,0 @@
{
"root": [
{
"key": "0",
"label": "Documents",
"data": "Documents Folder",
"icon": "pi pi-fw pi-inbox",
"children": [{
"key": "0-0",
"label": "Work",
"data": "Work Folder",
"icon": "pi pi-fw pi-cog",
"children": [{ "key": "0-0-0", "label": "Expenses.doc", "icon": "pi pi-fw pi-file", "data": "Expenses Document" }, { "key": "0-0-1", "label": "Resume.doc", "icon": "pi pi-fw pi-file", "data": "Resume Document" }]
},
{
"key": "0-1",
"label": "Home",
"data": "Home Folder",
"icon": "pi pi-fw pi-home",
"children": [{ "key": "0-1-0", "label": "Invoices.txt", "icon": "pi pi-fw pi-file", "data": "Invoices for this month" }]
}]
},
{
"key": "1",
"label": "Events",
"data": "Events Folder",
"icon": "pi pi-fw pi-calendar",
"children": [
{ "key": "1-0", "label": "Meeting", "icon": "pi pi-fw pi-calendar-plus", "data": "Meeting" },
{ "key": "1-1", "label": "Product Launch", "icon": "pi pi-fw pi-calendar-plus", "data": "Product Launch" },
{ "key": "1-2", "label": "Report Review", "icon": "pi pi-fw pi-calendar-plus", "data": "Report Review" }]
},
{
"key": "2",
"label": "Movies",
"data": "Movies Folder",
"icon": "pi pi-fw pi-star",
"children": [{
"key": "2-0",
"icon": "pi pi-fw pi-star",
"label": "Al Pacino",
"data": "Pacino Movies",
"children": [{ "key": "2-0-0", "label": "Scarface", "icon": "pi pi-fw pi-video", "data": "Scarface Movie" }, { "key": "2-0-1", "label": "Serpico", "icon": "pi pi-fw pi-video", "data": "Serpico Movie" }]
},
{
"key": "2-1",
"label": "Robert De Niro",
"icon": "pi pi-fw pi-star",
"data": "De Niro Movies",
"children": [{ "key": "2-1-0", "label": "Goodfellas", "icon": "pi pi-fw pi-video", "data": "Goodfellas Movie" }, { "key": "2-1-1", "label": "Untouchables", "icon": "pi pi-fw pi-video", "data": "Untouchables Movie" }]
}]
}
]
}

View File

@ -1,353 +0,0 @@
{
"root":
[
{
"key": "0",
"data":{
"name":"Applications",
"size":"100kb",
"type":"Folder"
},
"children":[
{
"key": "0-0",
"data":{
"name":"React",
"size":"25kb",
"type":"Folder"
},
"children":[
{
"key": "0-0-0",
"data":{
"name":"react.app",
"size":"10kb",
"type":"Application"
}
},
{
"key": "0-0-1",
"data":{
"name":"native.app",
"size":"10kb",
"type":"Application"
}
},
{
"key": "0-0-2",
"data":{
"name":"mobile.app",
"size":"5kb",
"type":"Application"
}
}
]
},
{
"key": "0-1",
"data":{
"name":"editor.app",
"size":"25kb",
"type":"Application"
}
},
{
"key": "0-2",
"data":{
"name":"settings.app",
"size":"50kb",
"type":"Application"
}
}
]
},
{
"key": "1",
"data":{
"name":"Cloud",
"size":"20kb",
"type":"Folder"
},
"children":[
{
"key": "1-0",
"data":{
"name":"backup-1.zip",
"size":"10kb",
"type":"Zip"
}
},
{
"key": "1-1",
"data":{
"name":"backup-2.zip",
"size":"10kb",
"type":"Zip"
}
}
]
},
{
"key": "2",
"data": {
"name":"Desktop",
"size":"150kb",
"type":"Folder"
},
"children":[
{
"key": "2-0",
"data":{
"name":"note-meeting.txt",
"size":"50kb",
"type":"Text"
}
},
{
"key": "2-1",
"data":{
"name":"note-todo.txt",
"size":"100kb",
"type":"Text"
}
}
]
},
{
"key": "3",
"data":{
"name":"Documents",
"size":"75kb",
"type":"Folder"
},
"children":[
{
"key": "3-0",
"data":{
"name":"Work",
"size":"55kb",
"type":"Folder"
},
"children":[
{
"key": "3-0-0",
"data":{
"name":"Expenses.doc",
"size":"30kb",
"type":"Document"
}
},
{
"key": "3-0-1",
"data":{
"name":"Resume.doc",
"size":"25kb",
"type":"Resume"
}
}
]
},
{
"key": "3-1",
"data":{
"name":"Home",
"size":"20kb",
"type":"Folder"
},
"children":[
{
"key": "3-1-0",
"data":{
"name":"Invoices",
"size":"20kb",
"type":"Text"
}
}
]
}
]
},
{
"key": "4",
"data": {
"name":"Downloads",
"size":"25kb",
"type":"Folder"
},
"children":[
{
"key": "4-0",
"data": {
"name":"Spanish",
"size":"10kb",
"type":"Folder"
},
"children":[
{
"key": "4-0-0",
"data":{
"name":"tutorial-a1.txt",
"size":"5kb",
"type":"Text"
}
},
{
"key": "4-0-1",
"data":{
"name":"tutorial-a2.txt",
"size":"5kb",
"type":"Text"
}
}
]
},
{
"key": "4-1",
"data":{
"name":"Travel",
"size":"15kb",
"type":"Text"
},
"children":[
{
"key": "4-1-0",
"data":{
"name":"Hotel.pdf",
"size":"10kb",
"type":"PDF"
}
},
{
"key": "4-1-1",
"data":{
"name":"Flight.pdf",
"size":"5kb",
"type":"PDF"
}
}
]
}
]
},
{
"key": "5",
"data": {
"name":"Main",
"size":"50kb",
"type":"Folder"
},
"children":[
{
"key": "5-0",
"data":{
"name":"bin",
"size":"50kb",
"type":"Link"
}
},
{
"key": "5-1",
"data":{
"name":"etc",
"size":"100kb",
"type":"Link"
}
},
{
"key": "5-2",
"data":{
"name":"var",
"size":"100kb",
"type":"Link"
}
}
]
},
{
"key": "6",
"data":{
"name":"Other",
"size":"5kb",
"type":"Folder"
},
"children":[
{
"key": "6-0",
"data":{
"name":"todo.txt",
"size":"3kb",
"type":"Text"
}
},
{
"key": "6-1",
"data":{
"name":"logo.png",
"size":"2kb",
"type":"Picture"
}
}
]
},
{
"key": "7",
"data":{
"name":"Pictures",
"size":"150kb",
"type":"Folder"
},
"children":[
{
"key": "7-0",
"data":{
"name":"barcelona.jpg",
"size":"90kb",
"type":"Picture"
}
},
{
"key": "7-1",
"data":{
"name":"primeng.png",
"size":"30kb",
"type":"Picture"
}
},
{
"key": "7-2",
"data":{
"name":"prime.jpg",
"size":"30kb",
"type":"Picture"
}
}
]
},
{
"key": "8",
"data":{
"name":"Videos",
"size":"1500kb",
"type":"Folder"
},
"children":[
{
"key": "8-0",
"data":{
"name":"primefaces.mkv",
"size":"1000kb",
"type":"Video"
}
},
{
"key": "8-1",
"data":{
"name":"intro.avi",
"size":"500kb",
"type":"Video"
}
}
]
}
]
}

View File

@ -1,46 +0,0 @@
<svg width="440" height="316" viewBox="0 0 440 316" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1404_1811)">
<path opacity="0.1" d="M433.033 212.258C422.828 233.31 402.106 247.387 380.632 256.67C351.721 269.172 319.884 274.131 288.485 272.034C282.982 271.668 277.496 271.083 272.027 270.279C253.031 267.507 234.512 262.115 216.998 254.254C211.944 251.978 206.992 249.493 202.142 246.799C194.042 242.31 186.28 237.234 178.92 231.612C177.069 230.199 175.243 228.75 173.443 227.265C172.195 226.235 170.958 225.183 169.702 224.161C167.052 222.006 164.325 219.959 161.283 218.427C160.365 217.964 159.424 217.549 158.463 217.182C148.83 213.518 137.723 214.901 127.694 217.758C120.066 219.932 112.63 222.909 105.01 225.033C101.62 226.007 98.1665 226.741 94.674 227.23C86.8766 228.217 78.9581 227.522 71.452 225.19L70.8106 224.991C69.7352 224.653 68.6687 224.283 67.6112 223.881L66.9697 223.635C65.9455 223.241 64.943 222.817 63.9623 222.364L63.3209 222.072C62.2967 221.595 61.2942 221.092 60.3135 220.562C59.9601 220.378 59.6106 220.178 59.2649 219.99C53.6852 216.874 48.6132 212.925 44.224 208.279C44.0973 208.152 43.9782 208.022 43.8399 207.895C43.2292 207.234 42.6301 206.562 42.0501 205.875C41.835 205.621 41.6199 205.368 41.4087 205.107C40.7199 204.267 40.0554 203.408 39.4152 202.529C39.3192 202.403 39.227 202.272 39.1349 202.145C36.5121 198.517 34.3378 194.585 32.6591 190.434C32.6054 190.308 32.5554 190.177 32.5093 190.05C31.9972 188.732 31.5299 187.391 31.1074 186.029C30.9346 185.46 30.7694 184.877 30.6235 184.308C30.5735 184.139 30.5274 183.966 30.4852 183.797C28.365 175.451 28.123 166.774 28.123 158.148C28.123 157.142 28.123 156.137 28.123 155.133C28.1845 141.179 28.3996 126.987 30.4583 113.225C30.4583 113.129 30.4852 113.033 30.5006 112.941C31.1896 108.308 32.1268 103.715 33.3082 99.1826C34.5447 94.4268 36.1249 89.7671 38.0364 85.2402C42.7722 74.1017 49.6589 63.9656 57.3061 54.5708C76.5681 30.9301 101.83 11.0843 131.397 3.65602C163.257 -4.34454 198.666 3.32187 224.365 23.7823C232.201 30.0198 239.241 37.4059 248.04 42.1878C255.722 46.3513 264.714 48.0758 272.941 44.7996C279.739 42.0917 284.164 40.7474 291.8 41.1584C307.607 42.0527 323.191 45.3167 338.029 50.8413C338.628 51.0602 339.227 51.2868 339.822 51.5134C378.504 66.3123 411.754 95.7143 429.038 133.497C429.497 134.496 429.941 135.502 430.371 136.516C440.676 160.587 444.402 188.798 433.033 212.258Z" fill="#F79530"/>
<path opacity="0.1" d="M46.2061 285.915C64.9326 285.915 80.1135 283.476 80.1135 280.468C80.1135 277.461 64.9326 275.022 46.2061 275.022C27.4796 275.022 12.2988 277.461 12.2988 280.468C12.2988 283.476 27.4796 285.915 46.2061 285.915Z" fill="#F79530"/>
<path d="M404.822 41.9265H49.4057C46.7562 41.9265 44.6084 44.0743 44.6084 46.7238V243.896C44.6084 246.545 46.7562 248.693 49.4057 248.693H404.822C407.471 248.693 409.619 246.545 409.619 243.896V46.7238C409.619 44.0743 407.471 41.9265 404.822 41.9265Z" fill="url(#paint0_linear_1404_1811)"/>
<path d="M404.283 44.8341H49.9848C47.3353 44.8341 45.1875 46.9819 45.1875 49.6314V243.208C45.1875 245.857 47.3353 248.005 49.9848 248.005H404.283C406.933 248.005 409.08 245.857 409.08 243.208V49.6314C409.08 46.9819 406.933 44.8341 404.283 44.8341Z" fill="white"/>
<path d="M404.283 44.8341H49.9848C47.3353 44.8341 45.1875 46.9819 45.1875 49.6314V243.208C45.1875 245.857 47.3353 248.005 49.9848 248.005H404.283C406.933 248.005 409.08 245.857 409.08 243.208V49.6314C409.08 46.9819 406.933 44.8341 404.283 44.8341Z" fill="white"/>
<path opacity="0.04" d="M404.283 44.8341H49.9848C47.3353 44.8341 45.1875 46.9819 45.1875 49.6314V243.208C45.1875 245.857 47.3353 248.005 49.9848 248.005H404.283C406.933 248.005 409.08 245.857 409.08 243.208V49.6314C409.08 46.9819 406.933 44.8341 404.283 44.8341Z" fill="white"/>
<path d="M407.233 42.5027H47.035C46.545 42.5027 46.0751 42.6973 45.7286 43.0438C45.3821 43.3903 45.1875 43.8602 45.1875 44.3502V52.1587H409.065V44.3502C409.065 43.8628 408.873 43.3952 408.529 43.0492C408.186 42.7032 407.72 42.5067 407.233 42.5027Z" fill="#5A5773"/>
<path d="M52.4546 49.8273C53.8334 49.8273 54.9512 48.7095 54.9512 47.3307C54.9512 45.9519 53.8334 44.8341 52.4546 44.8341C51.0758 44.8341 49.958 45.9519 49.958 47.3307C49.958 48.7095 51.0758 49.8273 52.4546 49.8273Z" fill="white"/>
<path d="M59.1763 49.8273C60.5551 49.8273 61.6728 48.7095 61.6728 47.3307C61.6728 45.9519 60.5551 44.8341 59.1763 44.8341C57.7974 44.8341 56.6797 45.9519 56.6797 47.3307C56.6797 48.7095 57.7974 49.8273 59.1763 49.8273Z" fill="white"/>
<path d="M65.8979 49.8273C67.2768 49.8273 68.3945 48.7095 68.3945 47.3307C68.3945 45.9519 67.2768 44.8341 65.8979 44.8341C64.5191 44.8341 63.4014 45.9519 63.4014 47.3307C63.4014 48.7095 64.5191 49.8273 65.8979 49.8273Z" fill="white"/>
<path opacity="0.2" d="M172.813 70.3184H75.1582V78.607H172.813V70.3184Z" fill="#F79530"/>
<path opacity="0.1" d="M379.11 103.553H75.1582V231.055H379.11V103.553Z" fill="#5A5773"/>
<path opacity="0.1" d="M253.125 111.869H247.921V101.76C247.921 90.3524 238.826 80.8693 227.418 80.6965C224.668 80.6676 221.938 81.1833 219.388 82.214C216.837 83.2447 214.516 84.77 212.558 86.7019C210.599 88.6338 209.043 90.9341 207.978 93.4704C206.912 96.0066 206.36 98.7286 206.351 101.479V111.869H201.158C198.863 111.876 196.664 112.791 195.042 114.414C193.419 116.036 192.504 118.235 192.497 120.53V162.096C192.504 164.391 193.419 166.59 195.042 168.213C196.664 169.836 198.863 170.75 201.158 170.757H253.125C255.42 170.75 257.618 169.835 259.241 168.213C260.863 166.59 261.777 164.391 261.783 162.096V120.53C261.777 118.236 260.863 116.037 259.241 114.414C257.618 112.791 255.42 111.876 253.125 111.869ZM230.176 138.89V153.777C230.181 154.565 229.886 155.326 229.352 155.905C228.817 156.484 228.082 156.838 227.295 156.896C226.885 156.915 226.475 156.851 226.09 156.707C225.705 156.563 225.353 156.343 225.056 156.059C224.759 155.775 224.522 155.434 224.36 155.057C224.199 154.679 224.115 154.272 224.115 153.861V138.882C222.71 138.197 221.579 137.056 220.906 135.645C220.233 134.234 220.058 132.636 220.409 131.113C220.761 129.59 221.618 128.231 222.842 127.257C224.065 126.284 225.582 125.754 227.146 125.754C228.709 125.754 230.226 126.284 231.45 127.257C232.673 128.231 233.53 129.59 233.882 131.113C234.234 132.636 234.059 134.234 233.386 135.645C232.713 137.056 231.581 138.197 230.176 138.882V138.89ZM241.868 111.869H212.412V101.479C212.412 97.5749 213.963 93.8303 216.724 91.0694C219.485 88.3085 223.23 86.7574 227.134 86.7574C231.039 86.7574 234.783 88.3085 237.544 91.0694C240.305 93.8303 241.856 97.5749 241.856 101.479L241.868 111.869Z" fill="black"/>
<path d="M253.125 111.101H247.921V100.992C247.921 89.5843 238.826 80.1011 227.418 79.9283C224.668 79.8994 221.938 80.4151 219.388 81.4458C216.837 82.4765 214.516 84.0018 212.558 85.9337C210.599 87.8656 209.043 90.1659 207.978 92.7022C206.912 95.2384 206.36 97.9604 206.351 100.711V111.101H201.158C198.863 111.108 196.664 112.023 195.042 113.646C193.419 115.268 192.504 117.467 192.497 119.762V161.328C192.504 163.623 193.419 165.822 195.042 167.445C196.664 169.067 198.863 169.982 201.158 169.989H253.125C255.42 169.982 257.618 169.067 259.241 167.444C260.863 165.822 261.777 163.623 261.783 161.328V119.762C261.777 117.468 260.863 115.269 259.241 113.646C257.618 112.023 255.42 111.108 253.125 111.101ZM230.176 138.121V153.009C230.181 153.797 229.886 154.558 229.352 155.137C228.817 155.716 228.082 156.07 227.295 156.128C226.885 156.147 226.475 156.083 226.09 155.939C225.705 155.795 225.353 155.575 225.056 155.291C224.759 155.007 224.522 154.666 224.36 154.288C224.199 153.911 224.115 153.504 224.115 153.093V138.114C222.71 137.429 221.579 136.287 220.906 134.876C220.233 133.465 220.058 131.868 220.409 130.345C220.761 128.821 221.618 127.462 222.842 126.489C224.065 125.516 225.582 124.986 227.146 124.986C228.709 124.986 230.226 125.516 231.45 126.489C232.673 127.462 233.53 128.821 233.882 130.345C234.234 131.868 234.059 133.465 233.386 134.876C232.713 136.287 231.581 137.429 230.176 138.114V138.121ZM241.868 111.101H212.412V100.711C212.412 96.8067 213.963 93.0621 216.724 90.3012C219.485 87.5403 223.23 85.9892 227.134 85.9892C231.039 85.9892 234.783 87.5403 237.544 90.3012C240.305 93.0621 241.856 96.8067 241.856 100.711L241.868 111.101Z" fill="#F79530"/>
<path opacity="0.1" d="M379.11 91.2819H348.345V98.545H379.11V91.2819Z" fill="#5A5773"/>
<path opacity="0.1" d="M332.006 174.556C331.978 175.074 331.904 175.588 331.787 176.092C331.787 175.95 331.787 175.87 331.756 175.858C331.641 175.827 331.779 175.24 332.006 174.556Z" fill="black"/>
<g opacity="0.1">
<path opacity="0.1" d="M339.112 109.607C339.161 108.977 339.074 108.345 338.858 107.752C338.685 107.357 338.537 106.952 338.417 106.538C338.4 106.602 338.387 106.668 338.378 106.734C338.313 107.337 338.651 107.886 338.858 108.474C338.993 108.838 339.078 109.219 339.112 109.607Z" fill="black"/>
<path opacity="0.1" d="M368.456 107.583C368.276 108.673 367.392 109.699 367.304 110.847C367.283 111.044 367.283 111.242 367.304 111.439C367.496 110.098 368.683 108.911 368.456 107.583Z" fill="black"/>
<path opacity="0.1" d="M363.705 115.368C363.609 114.669 362.764 114.385 362.319 113.832C362.045 113.468 361.897 113.026 361.896 112.572C361.865 113.286 361.877 114.016 362.319 114.554C362.76 115.092 363.432 115.322 363.647 115.875C363.702 115.712 363.721 115.539 363.705 115.368Z" fill="black"/>
</g>
<path d="M47.2969 176.142H45.1152V225.267H47.2969V176.142Z" fill="#535461"/>
<path d="M61.0089 225.117L60.8706 227.33L60.6786 230.452L60.5979 231.754L60.4059 234.881L60.3214 236.183L60.1293 239.306L57.9285 274.822C57.8346 276.351 57.1613 277.786 56.0458 278.835C54.9303 279.884 53.4566 280.468 51.9252 280.468H40.4871C38.9561 280.468 37.4829 279.884 36.368 278.835C35.2531 277.786 34.5805 276.35 34.4876 274.822L32.2753 239.306L32.0832 236.183L32.0026 234.881L31.8144 231.747L31.7337 230.445L31.5417 227.322L31.4034 225.11C31.3772 224.685 31.4382 224.26 31.5827 223.86C31.7272 223.459 31.9521 223.093 32.2436 222.783C32.5351 222.473 32.887 222.227 33.2776 222.058C33.6681 221.889 34.0891 221.802 34.5145 221.803H57.9016C58.3276 221.802 58.7491 221.889 59.14 222.059C59.5309 222.228 59.8829 222.475 60.1742 222.786C60.4655 223.097 60.6899 223.464 60.8335 223.865C60.9771 224.266 61.0368 224.692 61.0089 225.117Z" fill="#3F3D56"/>
<path d="M60.8699 227.33L60.6779 230.452H31.7292L31.5371 227.33H60.8699Z" fill="#9D9CB5"/>
<path d="M60.598 231.755L60.4059 234.881H32.0064L31.8105 231.755H60.598Z" fill="#9D9CB5"/>
<path d="M60.3212 236.183L60.1292 239.306H32.2828L32.0869 236.183H60.3212Z" fill="#9D9CB5"/>
<path d="M28.2074 194.556C40.913 203.747 46.2058 218.127 46.2058 218.127C46.2058 218.127 30.8922 217.601 18.1673 208.41C5.44248 199.218 0.168945 184.838 0.168945 184.838C0.168945 184.838 15.4979 185.364 28.2074 194.556Z" fill="#F79530"/>
<path d="M0.188477 184.838C0.188477 184.838 16.082 193.672 21.1789 200.97C26.2758 208.268 46.2061 218.131 46.2061 218.131" stroke="#535461" stroke-width="2" stroke-miterlimit="10"/>
<path d="M36.4075 176.054C43.3211 181.047 46.2056 188.883 46.2056 188.883C46.2056 188.883 37.8709 188.598 30.9534 183.594C24.036 178.589 21.1592 170.765 21.1592 170.765C21.1592 170.765 29.4939 171.03 36.4075 176.054Z" fill="#F79530"/>
<path d="M21.1592 170.746C21.1592 170.746 29.8088 175.547 32.582 179.522C35.3551 183.498 46.2056 188.863 46.2056 188.863" stroke="#535461" stroke-width="2" stroke-miterlimit="10"/>
<path d="M56.2571 188.468C48.3103 197.198 46.6318 208.605 46.6318 208.605C46.6318 208.605 57.8318 205.859 65.7748 197.129C73.7177 188.399 75.4 176.987 75.4 176.987C75.4 176.987 64.2 179.734 56.2571 188.468Z" fill="#F79530"/>
<path d="M75.4 176.987C75.4 176.987 65.0527 185.937 62.4217 192.105C59.7907 198.273 46.6318 208.621 46.6318 208.621" stroke="#535461" stroke-width="2" stroke-miterlimit="10"/>
</g>
<defs>
<linearGradient id="paint0_linear_1404_1811" x1="227.112" y1="248.693" x2="227.112" y2="41.9265" gradientUnits="userSpaceOnUse">
<stop stop-color="#808080" stop-opacity="0.25"/>
<stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
<stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
</linearGradient>
<clipPath id="clip0_1404_1811">
<rect width="440" height="314.918" fill="white" transform="translate(0 0.541016)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,16 +0,0 @@
<svg width="82" height="61" viewBox="0 0 82 61" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1404_1719)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2459 29.411C26.2351 29.646 26.2297 29.8824 26.2297 30.1202C26.2297 38.5664 33.0807 45.4135 41.5321 45.4135C49.9833 45.4135 56.8344 38.5664 56.8344 30.1202C56.8344 29.8768 56.8288 29.6348 56.8176 29.3943C58.3428 29.1611 59.8641 28.893 61.3802 28.5901L61.5392 28.5583C61.5789 29.0737 61.5991 29.5945 61.5991 30.1202C61.5991 41.1964 52.6148 50.1754 41.5321 50.1754C30.4493 50.1754 21.465 41.1964 21.465 30.1202C21.465 29.602 21.4846 29.0883 21.5233 28.5801L21.5732 28.5901C23.1257 28.9003 24.6837 29.174 26.2459 29.411ZM50.4928 17.7217C47.9742 15.9003 44.8785 14.8267 41.5321 14.8267C38.1795 14.8267 35.0789 15.9042 32.5578 17.7315C30.512 17.5258 28.4716 17.2491 26.4403 16.9016C30.1182 12.7106 35.516 10.0648 41.5321 10.0648C47.5402 10.0648 52.9317 12.7037 56.6093 16.885C54.5784 17.2348 52.5383 17.5138 50.4928 17.7217ZM66.2393 27.6187C66.3217 28.4414 66.3638 29.2759 66.3638 30.1202C66.3638 43.8263 55.2463 54.9373 41.5321 54.9373C27.8178 54.9373 16.7003 43.8263 16.7003 30.1202C16.7003 29.2832 16.7417 28.4561 16.8226 27.6404L12.131 26.7026C12.0019 27.824 11.9355 28.9643 11.9355 30.1202C11.9355 46.4563 25.1864 59.6992 41.5321 59.6992C57.8778 59.6992 71.1285 46.4563 71.1285 30.1202C71.1285 28.9568 71.0614 27.8093 70.9307 26.681L66.2393 27.6187ZM66.8921 14.8622L61.8629 15.8674C57.3703 9.47833 49.9391 5.30292 41.5321 5.30292C33.1165 5.30292 25.6787 9.48679 21.1876 15.8868L16.16 14.8819C21.3382 6.28869 30.7636 0.541016 41.5321 0.541016C52.2923 0.541016 61.7115 6.27988 66.8921 14.8622Z" fill="#F57C00"/>
<mask id="mask0_1404_1719" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="13" width="82" height="16">
<path d="M41 28.0889C16.2672 29.3327 0.5 13.8744 0.5 13.8744C0.5 13.8744 25.2765 22.4209 41 22.4209C56.7235 22.4209 81.5 13.8744 81.5 13.8744C81.5 13.8744 65.7328 26.8451 41 28.0889Z" fill="white"/>
</mask>
<g mask="url(#mask0_1404_1719)">
<path d="M0.500296 13.8744L6.09662 -2.3304L-11.5117 26.112L0.500296 13.8744ZM41.0003 28.0889L40.1383 10.9677L41.0003 28.0889ZM81.5003 13.8744L92.4014 27.1101L75.904 -2.3304L81.5003 13.8744ZM0.500296 13.8744C-11.5117 26.112 -11.5067 26.1169 -11.5016 26.1218C-11.4999 26.1236 -11.4948 26.1286 -11.4912 26.1321C-11.4841 26.1391 -11.4767 26.1462 -11.4691 26.1536C-11.4539 26.1685 -11.4376 26.1843 -11.4202 26.2011C-11.3856 26.2346 -11.3468 26.2719 -11.3038 26.313C-11.2179 26.3951 -11.1153 26.4919 -10.9962 26.6026C-10.7581 26.8237 -10.4537 27.1005 -10.0843 27.4242C-9.34664 28.0709 -8.34457 28.9099 -7.09097 29.8713C-4.59368 31.7861 -1.03827 34.2319 3.47055 36.6096C12.4685 41.3548 25.6588 46.025 41.8623 45.2101L40.1383 10.9677C31.609 11.3966 24.5493 8.95957 19.4804 6.28647C16.9559 4.95512 15.0237 3.61409 13.7917 2.66943C13.1807 2.20091 12.7577 1.84202 12.5365 1.64815C12.4264 1.55161 12.368 1.49747 12.363 1.49285C12.3606 1.49058 12.3717 1.50081 12.3964 1.52446C12.4088 1.53629 12.4246 1.55149 12.4439 1.57017C12.4536 1.5795 12.4641 1.58972 12.4754 1.60081C12.4811 1.60636 12.4871 1.61213 12.4932 1.61813C12.4963 1.62112 12.5011 1.62579 12.5026 1.62728C12.5074 1.632 12.5123 1.63678 0.500296 13.8744ZM41.8623 45.2101C57.0359 44.4471 69.4127 40.0936 77.9907 35.9492C82.2948 33.8697 85.71 31.8109 88.1282 30.2087C89.34 29.4057 90.3099 28.7119 91.0245 28.1796C91.3821 27.9134 91.6766 27.6868 91.9064 27.5066C92.0213 27.4165 92.1202 27.3378 92.2027 27.2715C92.2439 27.2383 92.2812 27.2082 92.3143 27.1814C92.3309 27.1678 92.3464 27.1552 92.3609 27.1433C92.3681 27.1374 92.3752 27.1316 92.3819 27.1261C92.3853 27.1234 92.3901 27.1194 92.3918 27.1179C92.3966 27.114 92.4014 27.1101 81.5003 13.8744C70.5992 0.638688 70.6039 0.63489 70.6085 0.631143C70.6099 0.629959 70.6144 0.626256 70.6172 0.623886C70.623 0.619143 70.6286 0.61459 70.6339 0.610227C70.6446 0.601501 70.6544 0.59353 70.6633 0.586305C70.6811 0.571855 70.6953 0.560381 70.7059 0.551796C70.7273 0.53463 70.7345 0.528983 70.728 0.53415C70.7147 0.544532 70.6464 0.597905 70.5245 0.688674C70.2802 0.870619 69.8251 1.19985 69.1722 1.63239C67.8611 2.50105 65.7889 3.76259 63.0595 5.08126C57.5707 7.73313 49.6975 10.487 40.1383 10.9677L41.8623 45.2101ZM81.5003 13.8744C75.904 -2.33039 75.9054 -2.3309 75.9068 -2.33137C75.9071 -2.33148 75.9083 -2.33192 75.909 -2.33215C75.9103 -2.33261 75.9113 -2.33293 75.9119 -2.33313C75.9131 -2.33354 75.9128 -2.33343 75.911 -2.33282C75.9075 -2.33162 75.8981 -2.32842 75.8832 -2.32329C75.8531 -2.31303 75.8003 -2.29506 75.7259 -2.26989C75.5767 -2.21954 75.3411 -2.14049 75.027 -2.03683C74.3982 -1.82936 73.4584 -1.5244 72.2725 -1.15442C69.8917 -0.411748 66.5645 0.578588 62.7991 1.56456C54.8229 3.65318 46.5108 5.27805 41.0003 5.27805V39.5637C51.2133 39.5637 63.1512 36.9154 71.4941 34.7308C75.8883 33.5801 79.7379 32.4338 82.4941 31.574C83.8766 31.1428 84.9953 30.78 85.783 30.5201C86.177 30.39 86.489 30.2855 86.7106 30.2107C86.8214 30.1733 86.9097 30.1433 86.9743 30.1212C87.0067 30.1101 87.0331 30.1011 87.0536 30.094C87.0638 30.0905 87.0724 30.0876 87.0797 30.0851C87.0832 30.0838 87.0864 30.0827 87.0893 30.0817C87.0907 30.0813 87.0925 30.0806 87.0932 30.0804C87.095 30.0797 87.0966 30.0792 81.5003 13.8744ZM41.0003 5.27805C35.4898 5.27805 27.1777 3.65318 19.2015 1.56456C15.4361 0.578588 12.1089 -0.411748 9.72812 -1.15442C8.54214 -1.5244 7.60238 -1.82936 6.97362 -2.03683C6.65951 -2.14049 6.42385 -2.21954 6.27479 -2.26989C6.20028 -2.29506 6.14748 -2.31303 6.11744 -2.32329C6.10241 -2.32842 6.09308 -2.33162 6.08956 -2.33282C6.08781 -2.33343 6.0875 -2.33354 6.08867 -2.33313C6.08927 -2.33293 6.09022 -2.33261 6.09155 -2.33215C6.0922 -2.33192 6.09348 -2.33148 6.0938 -2.33137C6.09517 -2.3309 6.09662 -2.33039 0.500296 13.8744C-5.09603 30.0792 -5.09438 30.0797 -5.09265 30.0804C-5.09194 30.0806 -5.09011 30.0813 -5.08869 30.0817C-5.08586 30.0827 -5.08264 30.0838 -5.07904 30.0851C-5.07186 30.0876 -5.06315 30.0905 -5.05294 30.094C-5.03251 30.1011 -5.00607 30.1101 -4.97373 30.1212C-4.90907 30.1433 -4.82081 30.1733 -4.71002 30.2107C-4.48847 30.2855 -4.17645 30.39 -3.78237 30.5201C-2.99475 30.78 -1.87602 31.1428 -0.493517 31.574C2.26265 32.4338 6.11224 33.5801 10.5065 34.7308C18.8494 36.9154 30.7872 39.5637 41.0003 39.5637V5.27805Z" fill="#F57C00"/>
</g>
</g>
<defs>
<clipPath id="clip0_1404_1719">
<rect width="81" height="60" fill="white" transform="translate(0.5 0.541016)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 640 KiB

View File

@ -1,3 +0,0 @@
<svg width="48" height="50" viewBox="0 0 48 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.1548 9.65956L23.9913 4.86169L5.54723 14.5106L0.924465 12.0851L23.9913 0L37.801 7.23403L33.1548 9.65956ZM23.9931 19.3085L42.4255 9.65955L47.0717 12.0851L23.9931 24.1595L10.1952 16.9361L14.8297 14.5106L23.9931 19.3085ZM4.6345 25.8937L0 23.4681V37.9149L23.0669 50V45.1489L4.6345 35.4894V25.8937ZM18.4324 28.2658L0 18.6169V13.7658L23.0669 25.8403V40.2977L18.4324 37.8615V28.2658ZM38.7301 23.468V18.6169L24.9205 25.8403V49.9999L29.555 47.5743V28.2659L38.7301 23.468ZM43.3546 35.4892V16.1914L48.0008 13.7659V37.9148L34.1912 45.1488V40.2977L43.3546 35.4892Z" fill="#616161"/>
</svg>

Before

Width:  |  Height:  |  Size: 724 B

View File

@ -1,74 +0,0 @@
<svg width="442" height="240" viewBox="0 0 442 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1403_1652)">
<path d="M63.8232 207.705H375.823V188.896C375.823 184.968 371.089 181.102 362.835 178.288L362.751 178.259C357.178 176.293 321.555 162.302 302.286 162.725C292.108 162.948 283.394 164.673 276.386 167.853C254.574 177.754 225.921 181.412 210.783 178.539C197.442 176.006 160.818 171.817 147.285 172.006C128.333 172.267 128.277 175.433 108.823 185.652C101.393 189.551 98.6139 190.041 63.8232 193.152V207.705Z" fill="#F2F2F2"/>
<path d="M13.524 180.059C12.8446 169.969 17.1283 159.775 26.0046 156.03C24.2102 166.426 26.421 177.979 32.1215 187.994C34.3418 191.895 37.1931 196.06 36.5863 200.136C36.2088 202.672 34.4835 204.685 32.3752 205.996C30.2669 207.307 27.7826 208.007 25.3286 208.694L24.9049 209.139C19.0726 200.106 14.2034 190.15 13.524 180.059Z" fill="#F2F2F2"/>
<path d="M26.1355 156.215C21.7335 162.992 19.7778 171.069 20.592 179.109C20.7267 180.946 21.138 182.752 21.8121 184.465C22.5493 186.182 23.6799 187.701 25.1126 188.901C26.4387 190.056 27.91 191.102 28.972 192.52C29.4961 193.212 29.8753 194.002 30.087 194.843C30.2986 195.685 30.3384 196.561 30.2039 197.418C29.8943 199.449 28.8428 201.146 27.7506 202.761C26.538 204.554 25.2467 206.393 25.0267 208.7C25.0001 208.98 24.5533 208.861 24.5799 208.582C24.9626 204.568 28.3475 202.128 29.4852 198.473C29.7946 197.589 29.9001 196.648 29.7938 195.718C29.6876 194.788 29.3723 193.895 28.8716 193.104C27.8821 191.605 26.3657 190.524 25.0143 189.365C23.5993 188.209 22.4484 186.764 21.6391 185.126C20.8829 183.441 20.4037 181.645 20.2201 179.808C19.7611 175.845 19.9492 171.835 20.7768 167.933C21.6621 163.639 23.3599 159.553 25.7788 155.896C25.9272 155.673 26.2829 155.993 26.1355 156.215V156.215Z" fill="white"/>
<path d="M20.1952 176.408C18.735 176.122 17.4003 175.388 16.3767 174.309C15.3531 173.229 14.6916 171.857 14.4841 170.383C14.452 170.097 14.8982 170.096 14.9303 170.383C15.1212 171.755 15.7374 173.033 16.6921 174.036C17.6469 175.04 18.8922 175.719 20.253 175.978C20.2816 175.982 20.3092 175.991 20.3342 176.005C20.3592 176.019 20.3812 176.038 20.3988 176.061C20.4164 176.084 20.4294 176.11 20.4368 176.137C20.4443 176.165 20.4462 176.194 20.4424 176.223C20.4385 176.251 20.429 176.279 20.4145 176.303C20.4 176.328 20.3806 176.35 20.3576 176.367C20.3346 176.384 20.3084 176.397 20.2805 176.404C20.2527 176.411 20.2236 176.413 20.1952 176.408Z" fill="white"/>
<path d="M24.3737 188.393C25.4633 187.581 26.3685 186.547 27.0299 185.36C27.6913 184.173 28.0938 182.86 28.2109 181.506C28.2386 181.227 28.6854 181.346 28.6577 181.624C28.533 183.033 28.1112 184.399 27.4202 185.632C26.7292 186.865 25.7847 187.938 24.6488 188.78C24.4315 188.939 24.1576 188.551 24.3737 188.393Z" fill="white"/>
<path d="M22.1824 163.969C22.6916 164.188 23.2484 164.273 23.7997 164.216C24.3511 164.16 24.8788 163.963 25.3329 163.645C25.5476 163.483 25.8213 163.872 25.608 164.033C25.1049 164.382 24.522 164.598 23.9132 164.662C23.3044 164.726 22.6892 164.636 22.1246 164.399C22.066 164.382 22.0149 164.346 21.9796 164.296C21.9442 164.246 21.9268 164.186 21.9301 164.125C21.9342 164.097 21.9444 164.07 21.9599 164.047C21.9754 164.023 21.9959 164.003 22.02 163.988C22.044 163.974 22.071 163.964 22.0991 163.961C22.1271 163.958 22.1556 163.96 22.1824 163.969H22.1824Z" fill="white"/>
<path d="M58.3897 172.47C58.259 172.576 58.1284 172.681 57.9983 172.79C56.2533 174.214 54.6452 175.797 53.195 177.52C53.0805 177.651 52.9667 177.786 52.8568 177.92C49.3873 182.166 46.8476 187.094 45.4022 192.383C44.8093 194.54 44.3932 196.742 44.158 198.966C43.8277 202.069 43.725 205.493 42.3922 208.085C42.257 208.356 42.1029 208.618 41.931 208.867L25.5646 209.698C25.5238 209.681 25.4836 209.668 25.4426 209.651L24.7949 209.714C24.7989 209.596 24.8056 209.475 24.8096 209.357C24.8116 209.288 24.8172 209.22 24.8192 209.151C24.8217 209.106 24.8244 209.06 24.824 209.018C24.8247 209.003 24.8257 208.988 24.8272 208.976C24.8267 208.935 24.8309 208.896 24.8311 208.858C24.8667 208.177 24.9059 207.496 24.9528 206.814C24.9521 206.811 24.9521 206.811 24.955 206.807C25.2363 201.681 26.1669 196.612 27.7246 191.72C27.7727 191.578 27.82 191.431 27.8756 191.288C28.602 189.168 29.5214 187.119 30.6221 185.167C31.2235 184.111 31.8856 183.09 32.6049 182.11C34.4674 179.586 36.7711 177.419 39.4047 175.715C42.0929 173.925 45.1185 172.702 48.2959 172.122C51.4734 171.543 54.7358 171.618 57.883 172.344C58.0528 172.385 58.2191 172.426 58.3897 172.47Z" fill="#F2F2F2"/>
<path d="M58.393 172.681C50.7214 174.61 43.9947 179.223 39.4323 185.685C38.4307 187.061 37.6815 188.604 37.2196 190.242C36.8171 191.945 36.8828 193.725 37.4098 195.394C37.8715 197.016 38.5279 198.648 38.5949 200.299C38.6318 201.107 38.4769 201.912 38.1431 202.648C37.8092 203.385 37.3058 204.031 36.6739 204.536C35.1526 205.8 33.1818 206.377 31.225 206.873C29.0524 207.423 26.782 207.959 25.1706 209.473C24.9753 209.656 24.6536 209.303 24.8486 209.119C27.6523 206.485 32.1411 206.78 35.3914 204.856C36.908 203.958 38.0934 202.56 38.1474 200.656C38.1945 198.99 37.519 197.307 37.0376 195.666C36.5013 194.036 36.372 192.3 36.6611 190.609C37.0309 188.946 37.7144 187.368 38.6749 185.96C40.7581 182.799 43.3961 180.041 46.4614 177.82C50.0094 175.228 54.0183 173.334 58.2741 172.239C58.5421 172.169 58.6592 172.612 58.3931 172.681H58.393Z" fill="white"/>
<path d="M40.7415 183.519C38.4672 181.368 37.8981 178.056 39.3987 175.782C39.5466 175.558 39.941 175.826 39.793 176.051C38.3872 178.181 38.9307 181.237 41.0567 183.247C41.2804 183.459 40.9639 183.729 40.7415 183.519Z" fill="white"/>
<path d="M37.0697 194.587C38.45 194.691 39.8372 194.514 41.147 194.066C42.4568 193.618 43.6619 192.909 44.6892 191.981C44.8852 191.798 45.2069 192.152 45.0112 192.334C43.9398 193.297 42.6838 194.033 41.3195 194.496C39.9552 194.96 38.5109 195.141 37.0745 195.029C36.7849 195.011 36.7817 194.569 37.0697 194.587Z" fill="white"/>
<path d="M50.1378 175.837C50.4819 176.317 50.9274 176.715 51.4428 177.002C51.9581 177.29 52.5306 177.46 53.1194 177.502C53.4085 177.515 53.4114 177.957 53.1242 177.944C52.4738 177.896 51.8416 177.707 51.2715 177.39C50.7014 177.073 50.207 176.636 49.8226 176.109C49.7817 176.068 49.7585 176.012 49.7578 175.954C49.7572 175.895 49.7792 175.839 49.8192 175.796C49.8675 175.761 49.9274 175.746 49.9866 175.753C50.0458 175.761 50.0999 175.791 50.1378 175.837Z" fill="white"/>
<path d="M423.283 180.059C423.962 169.969 419.679 159.775 410.802 156.03C412.597 166.426 410.386 177.979 404.685 187.994C402.465 191.895 399.614 196.06 400.221 200.136C400.598 202.672 402.323 204.685 404.432 205.996C406.54 207.307 409.024 208.007 411.478 208.694L411.902 209.139C417.734 200.106 422.604 190.15 423.283 180.059Z" fill="#F2F2F2"/>
<path d="M410.672 156.215C415.074 162.992 417.029 171.069 416.215 179.109C416.081 180.946 415.669 182.752 414.995 184.465C414.258 186.182 413.127 187.701 411.695 188.901C410.369 190.056 408.897 191.102 407.835 192.52C407.311 193.212 406.932 194.002 406.72 194.843C406.509 195.685 406.469 196.561 406.603 197.418C406.913 199.449 407.965 201.146 409.057 202.761C410.269 204.554 411.561 206.393 411.781 208.7C411.807 208.98 412.254 208.861 412.227 208.582C411.845 204.568 408.46 202.128 407.322 198.473C407.013 197.589 406.907 196.648 407.013 195.718C407.12 194.788 407.435 193.895 407.936 193.104C408.925 191.605 410.442 190.524 411.793 189.365C413.208 188.209 414.359 186.764 415.168 185.126C415.924 183.441 416.404 181.645 416.587 179.808C417.046 175.845 416.858 171.835 416.03 167.933C415.145 163.639 413.447 159.553 411.028 155.896C410.88 155.673 410.524 155.993 410.672 156.215V156.215Z" fill="white"/>
<path d="M416.611 176.408C418.072 176.122 419.406 175.388 420.43 174.309C421.453 173.229 422.115 171.857 422.323 170.383C422.355 170.097 421.908 170.096 421.876 170.383C421.685 171.755 421.069 173.033 420.114 174.036C419.16 175.04 417.914 175.719 416.554 175.978C416.525 175.982 416.497 175.991 416.472 176.005C416.447 176.019 416.425 176.038 416.408 176.061C416.39 176.084 416.377 176.11 416.37 176.137C416.362 176.165 416.36 176.194 416.364 176.223C416.368 176.251 416.378 176.279 416.392 176.303C416.407 176.328 416.426 176.35 416.449 176.367C416.472 176.384 416.498 176.397 416.526 176.404C416.554 176.411 416.583 176.413 416.611 176.408Z" fill="white"/>
<path d="M412.433 188.393C411.343 187.581 410.438 186.547 409.777 185.36C409.115 184.173 408.713 182.86 408.596 181.506C408.568 181.227 408.121 181.346 408.149 181.624C408.273 183.033 408.695 184.399 409.386 185.632C410.077 186.865 411.022 187.938 412.158 188.78C412.375 188.939 412.649 188.551 412.433 188.393Z" fill="white"/>
<path d="M414.624 163.969C414.115 164.188 413.558 164.273 413.007 164.216C412.455 164.16 411.927 163.963 411.473 163.645C411.259 163.483 410.985 163.872 411.198 164.033C411.701 164.382 412.284 164.598 412.893 164.662C413.502 164.726 414.117 164.636 414.682 164.399C414.74 164.382 414.791 164.346 414.827 164.296C414.862 164.246 414.88 164.186 414.876 164.125C414.872 164.097 414.862 164.07 414.846 164.047C414.831 164.023 414.81 164.003 414.786 163.988C414.762 163.974 414.735 163.964 414.707 163.961C414.679 163.958 414.651 163.96 414.624 163.969H414.624Z" fill="white"/>
<path d="M378.417 172.471C378.548 172.576 378.678 172.681 378.808 172.79C380.553 174.214 382.161 175.797 383.612 177.52C383.726 177.651 383.84 177.786 383.95 177.92C387.419 182.167 389.959 187.094 391.404 192.383C391.997 194.54 392.413 196.742 392.649 198.966C392.979 202.069 393.082 205.493 394.414 208.085C394.55 208.356 394.704 208.618 394.876 208.867L411.242 209.698C411.283 209.681 411.323 209.668 411.364 209.651L412.012 209.714C412.008 209.596 412.001 209.475 411.997 209.357C411.995 209.288 411.989 209.22 411.987 209.151C411.985 209.106 411.982 209.06 411.983 209.018C411.982 209.003 411.981 208.988 411.979 208.976C411.98 208.935 411.976 208.896 411.975 208.858C411.94 208.177 411.901 207.496 411.854 206.814C411.855 206.811 411.855 206.811 411.852 206.807C411.57 201.681 410.64 196.612 409.082 191.72C409.034 191.578 408.987 191.431 408.931 191.288C408.205 189.168 407.285 187.119 406.185 185.167C405.583 184.111 404.921 183.09 404.202 182.11C402.339 179.586 400.036 177.419 397.402 175.715C394.714 173.925 391.688 172.702 388.511 172.122C385.333 171.543 382.071 171.618 378.924 172.344C378.754 172.385 378.588 172.426 378.417 172.471Z" fill="#F2F2F2"/>
<path d="M378.414 172.681C386.086 174.61 392.812 179.223 397.375 185.685C398.376 187.061 399.126 188.604 399.587 190.242C399.99 191.945 399.924 193.725 399.397 195.394C398.936 197.016 398.279 198.648 398.212 200.299C398.175 201.107 398.33 201.912 398.664 202.648C398.998 203.385 399.501 204.031 400.133 204.536C401.654 205.8 403.625 206.377 405.582 206.873C407.755 207.423 410.025 207.959 411.636 209.473C411.832 209.656 412.153 209.303 411.958 209.119C409.155 206.485 404.666 206.78 401.416 204.856C399.899 203.958 398.714 202.56 398.66 200.656C398.613 198.99 399.288 197.307 399.769 195.666C400.306 194.036 400.435 192.3 400.146 190.609C399.776 188.946 399.093 187.368 398.132 185.96C396.049 182.799 393.411 180.041 390.346 177.82C386.798 175.228 382.789 173.334 378.533 172.239C378.265 172.169 378.148 172.612 378.414 172.681Z" fill="white"/>
<path d="M396.066 183.519C398.34 181.368 398.909 178.056 397.408 175.782C397.26 175.558 396.866 175.826 397.014 176.051C398.42 178.181 397.876 181.237 395.75 183.247C395.527 183.459 395.843 183.729 396.066 183.519Z" fill="white"/>
<path d="M399.737 194.587C398.356 194.691 396.969 194.514 395.659 194.066C394.35 193.618 393.145 192.909 392.117 191.981C391.921 191.798 391.6 192.152 391.795 192.334C392.867 193.297 394.123 194.033 395.487 194.496C396.851 194.96 398.296 195.141 399.732 195.029C400.022 195.011 400.025 194.569 399.737 194.587Z" fill="white"/>
<path d="M386.669 175.837C386.325 176.317 385.879 176.715 385.364 177.002C384.849 177.29 384.276 177.46 383.687 177.502C383.398 177.515 383.395 177.957 383.683 177.944C384.333 177.896 384.965 177.707 385.535 177.39C386.105 177.073 386.6 176.636 386.984 176.109C387.025 176.068 387.048 176.012 387.049 175.954C387.05 175.895 387.028 175.839 386.987 175.796C386.939 175.761 386.879 175.746 386.82 175.753C386.761 175.761 386.707 175.791 386.669 175.837Z" fill="white"/>
<path d="M28.0342 130.104H25.0342V131.104H28.0342V130.104Z" fill="#E6E6E6"/>
<path d="M405.601 131.104H399.511V130.104H405.601V131.104ZM393.421 131.104H387.331V130.104H393.421V131.104ZM381.242 131.104H375.152V130.104H381.242V131.104ZM369.062 131.104H362.972V130.104H369.062V131.104ZM356.883 131.104H350.793V130.104H356.883V131.104ZM344.703 131.104H338.613V130.104H344.703V131.104ZM332.523 131.104H326.434V130.104H332.523V131.104ZM320.344 131.104H314.254V130.104H320.344L320.344 131.104ZM308.164 131.104H302.075V130.104H308.164V131.104ZM295.985 131.104H289.895V130.104H295.985V131.104ZM283.805 131.104H277.715V130.104H283.805V131.104ZM271.626 131.104H265.536V130.104H271.626V131.104ZM259.446 131.104H253.356V130.104H259.446V131.104ZM247.266 131.104H241.177V130.104H247.266V131.104ZM235.087 131.104H228.997V130.104H235.087V131.104ZM222.907 131.104H216.818V130.104H222.907V131.104ZM210.728 131.104H204.638V130.104H210.728V131.104ZM198.548 131.104H192.458V130.104H198.548V131.104ZM186.369 131.104H180.279V130.104H186.369V131.104ZM174.189 131.104H168.099V130.104H174.189V131.104ZM162.01 131.104H155.92V130.104H162.01V131.104ZM149.83 131.104H143.74V130.104H149.83V131.104ZM137.65 131.104H131.561V130.104H137.65V131.104ZM125.471 131.104H119.381V130.104H125.471L125.471 131.104ZM113.291 131.104H107.202V130.104H113.291V131.104ZM101.112 131.104H95.0219V130.104H101.112V131.104ZM88.932 131.104H82.8422V130.104H88.932V131.104ZM76.7526 131.104H70.6628V130.104H76.7526V131.104ZM64.5729 131.104H58.4831V130.104H64.5729V131.104ZM52.3933 131.104H46.3037V130.104H52.3933V131.104ZM40.2138 131.104H34.124V130.104H40.2138V131.104Z" fill="#E6E6E6"/>
<path d="M414.69 130.104H411.69V131.104H414.69V130.104Z" fill="#E6E6E6"/>
<path d="M28.0342 123.104H25.0342V124.104H28.0342V123.104Z" fill="#E6E6E6"/>
<path d="M405.601 124.104H399.511V123.104H405.601V124.104ZM393.421 124.104H387.331V123.104H393.421V124.104ZM381.242 124.104H375.152V123.104H381.242V124.104ZM369.062 124.104H362.972V123.104H369.062V124.104ZM356.883 124.104H350.793V123.104H356.883V124.104ZM344.703 124.104H338.613V123.104H344.703V124.104ZM332.523 124.104H326.434V123.104H332.523V124.104ZM320.344 124.104H314.254V123.104H320.344L320.344 124.104ZM308.164 124.104H302.075V123.104H308.164V124.104ZM295.985 124.104H289.895V123.104H295.985V124.104ZM283.805 124.104H277.715V123.104H283.805V124.104ZM271.626 124.104H265.536V123.104H271.626V124.104ZM259.446 124.104H253.356V123.104H259.446V124.104ZM247.266 124.104H241.177V123.104H247.266V124.104ZM235.087 124.104H228.997V123.104H235.087V124.104ZM222.907 124.104H216.818V123.104H222.907V124.104ZM210.728 124.104H204.638V123.104H210.728V124.104ZM198.548 124.104H192.458V123.104H198.548V124.104ZM186.369 124.104H180.279V123.104H186.369V124.104ZM174.189 124.104H168.099V123.104H174.189V124.104ZM162.01 124.104H155.92V123.104H162.01V124.104ZM149.83 124.104H143.74V123.104H149.83V124.104ZM137.65 124.104H131.561V123.104H137.65V124.104ZM125.471 124.104H119.381V123.104H125.471L125.471 124.104ZM113.291 124.104H107.202V123.104H113.291V124.104ZM101.112 124.104H95.0219V123.104H101.112V124.104ZM88.932 124.104H82.8422V123.104H88.932V124.104ZM76.7526 124.104H70.6628V123.104H76.7526V124.104ZM64.5729 124.104H58.4831V123.104H64.5729V124.104ZM52.3933 124.104H46.3037V123.104H52.3933V124.104ZM40.2138 124.104H34.124V123.104H40.2138V124.104Z" fill="#E6E6E6"/>
<path d="M414.69 123.104H411.69V124.104H414.69V123.104Z" fill="#E6E6E6"/>
<path d="M28.0342 108.604H25.0342V109.604H28.0342V108.604Z" fill="#E6E6E6"/>
<path d="M405.601 109.604H399.511V108.604H405.601V109.604ZM393.421 109.604H387.331V108.604H393.421V109.604ZM381.242 109.604H375.152V108.604H381.242V109.604ZM369.062 109.604H362.972V108.604H369.062V109.604ZM356.883 109.604H350.793V108.604H356.883V109.604ZM344.703 109.604H338.613V108.604H344.703V109.604ZM332.523 109.604H326.434V108.604H332.523V109.604ZM320.344 109.604H314.254V108.604H320.344L320.344 109.604ZM308.164 109.604H302.075V108.604H308.164V109.604ZM295.985 109.604H289.895V108.604H295.985V109.604ZM283.805 109.604H277.715V108.604H283.805V109.604ZM271.626 109.604H265.536V108.604H271.626V109.604ZM259.446 109.604H253.356V108.604H259.446V109.604ZM247.266 109.604H241.177V108.604H247.266V109.604ZM235.087 109.604H228.997V108.604H235.087V109.604ZM222.907 109.604H216.818V108.604H222.907V109.604ZM210.728 109.604H204.638V108.604H210.728V109.604ZM198.548 109.604H192.458V108.604H198.548V109.604ZM186.369 109.604H180.279V108.604H186.369V109.604ZM174.189 109.604H168.099V108.604H174.189V109.604ZM162.01 109.604H155.92V108.604H162.01V109.604ZM149.83 109.604H143.74V108.604H149.83V109.604ZM137.65 109.604H131.561V108.604H137.65V109.604ZM125.471 109.604H119.381V108.604H125.471L125.471 109.604ZM113.291 109.604H107.202V108.604H113.291V109.604ZM101.112 109.604H95.0219V108.604H101.112V109.604ZM88.932 109.604H82.8422V108.604H88.932V109.604ZM76.7526 109.604H70.6628V108.604H76.7526V109.604ZM64.5729 109.604H58.4831V108.604H64.5729V109.604ZM52.3933 109.604H46.3037V108.604H52.3933V109.604ZM40.2138 109.604H34.124V108.604H40.2138V109.604Z" fill="#E6E6E6"/>
<path d="M414.69 108.604H411.69V109.604H414.69V108.604Z" fill="#E6E6E6"/>
<path d="M28.0342 98.6045H25.0342V99.6045H28.0342V98.6045Z" fill="#E6E6E6"/>
<path d="M405.601 99.6045H399.511V98.6045H405.601V99.6045ZM393.421 99.6045H387.331V98.6045H393.421V99.6045ZM381.242 99.6045H375.152V98.6045H381.242V99.6045ZM369.062 99.6045H362.972V98.6045H369.062V99.6045ZM356.883 99.6045H350.793V98.6045H356.883V99.6045ZM344.703 99.6045H338.613V98.6045H344.703V99.6045ZM332.523 99.6045H326.434V98.6045H332.523V99.6045ZM320.344 99.6045H314.254V98.6045H320.344L320.344 99.6045ZM308.164 99.6045H302.075V98.6045H308.164V99.6045ZM295.985 99.6045H289.895V98.6045H295.985V99.6045ZM283.805 99.6045H277.715V98.6045H283.805V99.6045ZM271.626 99.6045H265.536V98.6045H271.626V99.6045ZM259.446 99.6045H253.356V98.6045H259.446V99.6045ZM247.266 99.6045H241.177V98.6045H247.266V99.6045ZM235.087 99.6045H228.997V98.6045H235.087V99.6045ZM222.907 99.6045H216.818V98.6045H222.907V99.6045ZM210.728 99.6045H204.638V98.6045H210.728V99.6045ZM198.548 99.6045H192.458V98.6045H198.548V99.6045ZM186.369 99.6045H180.279V98.6045H186.369V99.6045ZM174.189 99.6045H168.099V98.6045H174.189V99.6045ZM162.01 99.6045H155.92V98.6045H162.01V99.6045ZM149.83 99.6045H143.74V98.6045H149.83V99.6045ZM137.65 99.6045H131.561V98.6045H137.65V99.6045ZM125.471 99.6045H119.381V98.6045H125.471L125.471 99.6045ZM113.291 99.6045H107.202V98.6045H113.291V99.6045ZM101.112 99.6045H95.0219V98.6045H101.112V99.6045ZM88.932 99.6045H82.8422V98.6045H88.932V99.6045ZM76.7526 99.6045H70.6628V98.6045H76.7526V99.6045ZM64.5729 99.6045H58.4831V98.6045H64.5729V99.6045ZM52.3933 99.6045H46.3037V98.6045H52.3933V99.6045ZM40.2138 99.6045H34.124V98.6045H40.2138V99.6045Z" fill="#E6E6E6"/>
<path d="M414.69 98.6045H411.69V99.6045H414.69V98.6045Z" fill="#E6E6E6"/>
<path d="M28.0342 77.1045H25.0342V78.1045H28.0342V77.1045Z" fill="#E6E6E6"/>
<path d="M405.601 78.1045H399.511V77.1045H405.601V78.1045ZM393.421 78.1045H387.331V77.1045H393.421V78.1045ZM381.242 78.1045H375.152V77.1045H381.242V78.1045ZM369.062 78.1045H362.972V77.1045H369.062V78.1045ZM356.883 78.1045H350.793V77.1045H356.883V78.1045ZM344.703 78.1045H338.613V77.1045H344.703V78.1045ZM332.523 78.1045H326.434V77.1045H332.523V78.1045ZM320.344 78.1045H314.254V77.1045H320.344L320.344 78.1045ZM308.164 78.1045H302.075V77.1045H308.164V78.1045ZM295.985 78.1045H289.895V77.1045H295.985V78.1045ZM283.805 78.1045H277.715V77.1045H283.805V78.1045ZM271.626 78.1045H265.536V77.1045H271.626V78.1045ZM259.446 78.1045H253.356V77.1045H259.446V78.1045ZM247.266 78.1045H241.177V77.1045H247.266V78.1045ZM235.087 78.1045H228.997V77.1045H235.087V78.1045ZM222.907 78.1045H216.818V77.1045H222.907V78.1045ZM210.728 78.1045H204.638V77.1045H210.728V78.1045ZM198.548 78.1045H192.458V77.1045H198.548V78.1045ZM186.369 78.1045H180.279V77.1045H186.369V78.1045ZM174.189 78.1045H168.099V77.1045H174.189V78.1045ZM162.01 78.1045H155.92V77.1045H162.01V78.1045ZM149.83 78.1045H143.74V77.1045H149.83V78.1045ZM137.65 78.1045H131.561V77.1045H137.65V78.1045ZM125.471 78.1045H119.381V77.1045H125.471L125.471 78.1045ZM113.291 78.1045H107.202V77.1045H113.291V78.1045ZM101.112 78.1045H95.0219V77.1045H101.112V78.1045ZM88.932 78.1045H82.8422V77.1045H88.932V78.1045ZM76.7526 78.1045H70.6628V77.1045H76.7526V78.1045ZM64.5729 78.1045H58.4831V77.1045H64.5729V78.1045ZM52.3933 78.1045H46.3037V77.1045H52.3933V78.1045ZM40.2138 78.1045H34.124V77.1045H40.2138V78.1045Z" fill="#E6E6E6"/>
<path d="M414.69 77.1045H411.69V78.1045H414.69V77.1045Z" fill="#E6E6E6"/>
<path d="M170.487 48.3306C170.487 53.7136 168.891 58.9758 165.9 63.4516C162.91 67.9275 158.659 71.416 153.685 73.476C148.712 75.536 143.24 76.075 137.96 75.0248C132.68 73.9746 127.831 71.3824 124.024 67.576C120.218 63.7696 117.626 58.92 116.576 53.6404C115.526 48.3608 116.065 42.8883 118.125 37.915C120.185 32.9417 123.673 28.691 128.149 25.7003C132.625 22.7097 137.887 21.1134 143.27 21.1134C146.849 21.0975 150.395 21.7906 153.704 23.1528C157.014 24.5149 160.02 26.5191 162.551 29.0496C165.081 31.5802 167.086 34.5869 168.448 37.8962C169.81 41.2055 170.503 44.7519 170.487 48.3306Z" fill="#F2F2F2"/>
<path d="M374.769 84.0475C389.801 84.0475 401.986 71.8619 401.986 56.8303C401.986 41.7987 389.801 29.6132 374.769 29.6132C359.737 29.6132 347.552 41.7987 347.552 56.8303C347.552 71.8619 359.737 84.0475 374.769 84.0475Z" fill="#F2F2F2"/>
<path d="M324.987 27.8786C324.978 33.2616 323.372 38.5209 320.373 42.9915C317.375 47.462 313.118 50.9429 308.141 52.9941C303.164 55.0453 297.691 55.5746 292.413 54.5151C287.135 53.4555 282.29 50.8547 278.49 47.0416C274.691 43.2285 272.107 38.3743 271.066 33.0928C270.026 27.8113 270.574 22.3398 272.643 17.3702C274.712 12.4006 278.208 8.15603 282.689 5.17331C287.17 2.19059 292.435 0.603658 297.818 0.613202C301.395 0.610261 304.937 1.3142 308.241 2.68456C311.545 4.05493 314.546 6.06469 317.07 8.59837C319.595 11.132 321.594 14.1397 322.953 17.4484C324.311 20.7572 325.003 24.3018 324.987 27.8786Z" fill="#F2F2F2"/>
<path d="M222.77 99.0474C237.801 99.0474 249.987 86.8618 249.987 71.8302C249.987 56.7986 237.801 44.613 222.77 44.613C207.738 44.613 195.553 56.7986 195.553 71.8302C195.553 86.8618 207.738 99.0474 222.77 99.0474Z" fill="#F2F2F2"/>
<path d="M65.2699 111.547C80.3015 111.547 92.4871 99.3618 92.4871 84.3302C92.4871 69.2986 80.3015 57.113 65.2699 57.113C50.2383 57.113 38.0527 69.2986 38.0527 84.3302C38.0527 99.3618 50.2383 111.547 65.2699 111.547Z" fill="#F2F2F2"/>
<path d="M55.5527 97.2948H74.3709V91.5675H62.6607V87.0675H73.4504V81.3403H62.6607V76.8403H74.422V71.113H55.5527V97.2948Z" fill="#E91E63"/>
<path d="M132.053 61.2949H139.161V52.6529H141.615L146.217 61.2949H153.939L148.621 51.5279C151.408 50.1856 153.07 47.6415 153.07 44.0109C153.07 38.437 149.171 35.1132 143.354 35.1132H132.053V61.2949ZM139.161 47.1302V40.7893H141.666C144.159 40.7893 145.655 41.7609 145.655 44.0109C145.655 46.2481 144.159 47.1302 141.666 47.1302H139.161Z" fill="#E91E63"/>
<path d="M212.053 84.7948H219.161V76.1528H221.615L226.217 84.7948H233.939L228.621 75.0278C231.408 73.6855 233.07 71.1414 233.07 67.5108C233.07 61.9369 229.171 58.613 223.354 58.613H212.053V84.7948ZM219.161 70.6301V64.2892H221.666C224.159 64.2892 225.655 65.2608 225.655 67.5108C225.655 69.748 224.159 70.6301 221.666 70.6301H219.161Z" fill="#E91E63"/>
<path d="M364.052 69.7948H371.16V61.1528H373.614L378.217 69.7948H385.938L380.62 60.0278C383.407 58.6855 385.069 56.1414 385.069 52.5107C385.069 46.9369 381.17 43.613 375.353 43.613H364.052V69.7948ZM371.16 55.6301V49.2892H373.665C376.158 49.2892 377.654 50.2608 377.654 52.5107C377.654 54.748 376.158 55.6301 373.665 55.6301H371.16Z" fill="#E91E63"/>
<path d="M310.518 28.062C310.518 19.3177 304.893 14.6132 297.785 14.6132C290.626 14.6132 285.052 19.3177 285.052 28.062C285.052 36.7552 290.626 41.5108 297.785 41.5108C304.893 41.5108 310.518 36.8063 310.518 28.062ZM303.205 28.062C303.205 32.7665 301.313 35.3233 297.785 35.3233C294.256 35.3233 292.364 32.7665 292.364 28.062C292.364 23.3575 294.256 20.8006 297.785 20.8006C301.313 20.8006 303.205 23.3575 303.205 28.062Z" fill="#E91E63"/>
<path d="M57.0862 82.595C57.0699 82.5498 57.0551 82.5041 57.0391 82.4589C57.0073 82.4869 56.9769 82.5158 56.9424 82.5419L57.0862 82.595Z" fill="#2F2E41"/>
<path d="M65.2777 132.376H62.6797V208.527H65.2777V132.376Z" fill="#3F3D56"/>
<path d="M143.06 96.8104H140.462V208.527H143.06V96.8104Z" fill="#3F3D56"/>
<path d="M221.001 120.193H218.403V208.527H221.001V120.193Z" fill="#3F3D56"/>
<path d="M298.943 77.325H296.345V208.527H298.943V77.325Z" fill="#3F3D56"/>
<path d="M376.885 107.203H374.287V208.527H376.885V107.203Z" fill="#3F3D56"/>
<path d="M141.921 106.549C146.31 106.549 149.868 102.991 149.868 98.6011C149.868 94.2116 146.31 90.6532 141.921 90.6532C137.531 90.6532 133.973 94.2116 133.973 98.6011C133.973 102.991 137.531 106.549 141.921 106.549Z" fill="#E91E63"/>
<path d="M297.804 85.7645C302.194 85.7645 305.752 82.2061 305.752 77.8166C305.752 73.4272 302.194 69.8688 297.804 69.8688C293.415 69.8688 289.856 73.4272 289.856 77.8166C289.856 82.2061 293.415 85.7645 297.804 85.7645Z" fill="#E91E63"/>
<path d="M219.863 128.632C224.252 128.632 227.811 125.074 227.811 120.685C227.811 116.295 224.252 112.737 219.863 112.737C215.473 112.737 211.915 116.295 211.915 120.685C211.915 125.074 215.473 128.632 219.863 128.632Z" fill="#E91E63"/>
<path d="M63.9791 140.324C68.3686 140.324 71.927 136.765 71.927 132.376C71.927 127.986 68.3686 124.428 63.9791 124.428C59.5896 124.428 56.0312 127.986 56.0312 132.376C56.0312 136.765 59.5896 140.324 63.9791 140.324Z" fill="#E91E63"/>
<path d="M375.746 114.343C380.135 114.343 383.694 110.785 383.694 106.395C383.694 102.006 380.135 98.4474 375.746 98.4474C371.356 98.4474 367.798 102.006 367.798 106.395C367.798 110.785 371.356 114.343 375.746 114.343Z" fill="#E91E63"/>
<path d="M431.498 207.742H9.55162L6.90234 209.066C6.90236 209.418 7.04192 209.755 7.29034 210.003C7.53875 210.251 7.87567 210.391 8.22699 210.391H431.498C431.849 210.391 432.186 210.251 432.435 210.003C432.683 209.755 432.823 209.418 432.823 209.066C432.823 208.715 432.683 208.378 432.435 208.13C432.186 207.881 431.849 207.742 431.498 207.742Z" fill="#3F3D56"/>
<path d="M8.00061 216.387C12.3901 216.387 15.9485 212.829 15.9485 208.439C15.9485 204.05 12.3901 200.491 8.00061 200.491C3.61112 200.491 0.0527344 204.05 0.0527344 208.439C0.0527344 212.829 3.61112 216.387 8.00061 216.387Z" fill="#3F3D56"/>
<path d="M64.0006 239.387C68.3901 239.387 71.9485 235.829 71.9485 231.439C71.9485 227.05 68.3901 223.491 64.0006 223.491C59.6111 223.491 56.0527 227.05 56.0527 231.439C56.0527 235.829 59.6111 239.387 64.0006 239.387Z" fill="#E6E6E6"/>
<path d="M142.001 239.387C146.39 239.387 149.948 235.829 149.948 231.439C149.948 227.05 146.39 223.491 142.001 223.491C137.611 223.491 134.053 227.05 134.053 231.439C134.053 235.829 137.611 239.387 142.001 239.387Z" fill="#E6E6E6"/>
<path d="M220.001 239.387C224.39 239.387 227.948 235.829 227.948 231.439C227.948 227.05 224.39 223.491 220.001 223.491C215.611 223.491 212.053 227.05 212.053 231.439C212.053 235.829 215.611 239.387 220.001 239.387Z" fill="#E6E6E6"/>
<path d="M297.5 239.387C301.889 239.387 305.448 235.829 305.448 231.439C305.448 227.05 301.889 223.491 297.5 223.491C293.11 223.491 289.552 227.05 289.552 231.439C289.552 235.829 293.11 239.387 297.5 239.387Z" fill="#E6E6E6"/>
<path d="M375.5 239.387C379.889 239.387 383.448 235.829 383.448 231.439C383.448 227.05 379.889 223.491 375.5 223.491C371.11 223.491 367.552 227.05 367.552 231.439C367.552 235.829 371.11 239.387 375.5 239.387Z" fill="#E6E6E6"/>
<path d="M434 216.387C438.389 216.387 441.948 212.829 441.948 208.439C441.948 204.05 438.389 200.491 434 200.491C429.61 200.491 426.052 204.05 426.052 208.439C426.052 212.829 429.61 216.387 434 216.387Z" fill="#3F3D56"/>
</g>
<defs>
<clipPath id="clip0_1403_1652">
<rect width="441.895" height="238.774" fill="white" transform="translate(0.0527344 0.613159)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 28 KiB

View File

@ -1,16 +0,0 @@
<svg width="82" height="61" viewBox="0 0 82 61" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1399_1534)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2459 29.4832C26.2351 29.7181 26.2297 29.9546 26.2297 30.1923C26.2297 38.6386 33.0807 45.4856 41.5321 45.4856C49.9833 45.4856 56.8344 38.6386 56.8344 30.1923C56.8344 29.949 56.8288 29.707 56.8176 29.4664C58.3428 29.2333 59.8641 28.9652 61.3802 28.6622L61.5392 28.6304C61.5789 29.1458 61.5991 29.6667 61.5991 30.1923C61.5991 41.2685 52.6148 50.2475 41.5321 50.2475C30.4493 50.2475 21.465 41.2685 21.465 30.1923C21.465 29.6741 21.4846 29.1605 21.5233 28.6522L21.5732 28.6622C23.1257 28.9725 24.6837 29.2461 26.2459 29.4832ZM50.4928 17.7938C47.9742 15.9725 44.8785 14.8989 41.5321 14.8989C38.1795 14.8989 35.0789 15.9763 32.5578 17.8036C30.512 17.5979 28.4716 17.3213 26.4403 16.9737C30.1182 12.7828 35.516 10.137 41.5321 10.137C47.5402 10.137 52.9317 12.7758 56.6093 16.9572C54.5784 17.307 52.5383 17.5859 50.4928 17.7938ZM66.2393 27.6909C66.3217 28.5135 66.3638 29.348 66.3638 30.1923C66.3638 43.8984 55.2463 55.0094 41.5321 55.0094C27.8178 55.0094 16.7003 43.8984 16.7003 30.1923C16.7003 29.3553 16.7417 28.5282 16.8226 27.7126L12.131 26.7748C12.0019 27.8961 11.9355 29.0364 11.9355 30.1923C11.9355 46.5284 25.1864 59.7714 41.5321 59.7714C57.8778 59.7714 71.1285 46.5284 71.1285 30.1923C71.1285 29.029 71.0614 27.8814 70.9307 26.7532L66.2393 27.6909ZM66.8921 14.9343L61.8629 15.9395C57.3703 9.55047 49.9391 5.37506 41.5321 5.37506C33.1165 5.37506 25.6787 9.55893 21.1876 15.959L16.16 14.954C21.3382 6.36084 30.7636 0.613159 41.5321 0.613159C52.2923 0.613159 61.7115 6.35203 66.8921 14.9343Z" fill="#E91E63"/>
<mask id="mask0_1399_1534" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="13" width="82" height="16">
<path d="M41 28.161C16.2672 29.4048 0.5 13.9465 0.5 13.9465C0.5 13.9465 25.2765 22.493 41 22.493C56.7235 22.493 81.5 13.9465 81.5 13.9465C81.5 13.9465 65.7328 26.9173 41 28.161Z" fill="white"/>
</mask>
<g mask="url(#mask0_1399_1534)">
<path d="M0.500296 13.9465L6.09662 -2.25825L-11.5117 26.1842L0.500296 13.9465ZM41.0003 28.161L40.1383 11.0399L41.0003 28.161ZM81.5003 13.9465L92.4014 27.1823L75.904 -2.25825L81.5003 13.9465ZM0.500296 13.9465C-11.5117 26.1842 -11.5067 26.189 -11.5016 26.194C-11.4999 26.1958 -11.4948 26.2007 -11.4912 26.2043C-11.4841 26.2112 -11.4767 26.2184 -11.4691 26.2258C-11.4539 26.2406 -11.4376 26.2565 -11.4202 26.2732C-11.3856 26.3067 -11.3468 26.3441 -11.3038 26.3851C-11.2179 26.4672 -11.1153 26.5641 -10.9962 26.6747C-10.7581 26.8959 -10.4537 27.1726 -10.0843 27.4964C-9.34664 28.143 -8.34457 28.9821 -7.09097 29.9434C-4.59368 31.8583 -1.03827 34.3041 3.47055 36.6818C12.4685 41.4269 25.6588 46.0971 41.8623 45.2823L40.1383 11.0399C31.609 11.4687 24.5493 9.03171 19.4804 6.35861C16.9559 5.02726 15.0237 3.68623 13.7917 2.74158C13.1807 2.27305 12.7577 1.91417 12.5365 1.72029C12.4264 1.62376 12.368 1.56961 12.363 1.56499C12.3606 1.56272 12.3717 1.57296 12.3964 1.59661C12.4088 1.60843 12.4246 1.62363 12.4439 1.64231C12.4536 1.65164 12.4641 1.66186 12.4754 1.67296C12.4811 1.6785 12.4871 1.68427 12.4932 1.69027C12.4963 1.69326 12.5011 1.69793 12.5026 1.69942C12.5074 1.70415 12.5123 1.70892 0.500296 13.9465ZM41.8623 45.2823C57.0359 44.5192 69.4127 40.1658 77.9907 36.0213C82.2948 33.9419 85.71 31.883 88.1282 30.2808C89.34 29.4779 90.3099 28.7841 91.0245 28.2518C91.3821 27.9855 91.6766 27.7589 91.9064 27.5787C92.0213 27.4886 92.1202 27.41 92.2027 27.3437C92.2439 27.3105 92.2812 27.2804 92.3143 27.2535C92.3309 27.24 92.3464 27.2273 92.3609 27.2154C92.3681 27.2095 92.3752 27.2038 92.3819 27.1983C92.3853 27.1955 92.3901 27.1915 92.3918 27.1901C92.3966 27.1862 92.4014 27.1823 81.5003 13.9465C70.5992 0.710831 70.6039 0.707034 70.6085 0.703287C70.6099 0.702102 70.6144 0.6984 70.6172 0.696029C70.623 0.691287 70.6286 0.686734 70.6339 0.682371C70.6446 0.673644 70.6544 0.665674 70.6633 0.658449C70.6811 0.643999 70.6953 0.632525 70.7059 0.623939C70.7273 0.606773 70.7345 0.601126 70.728 0.606294C70.7147 0.616676 70.6464 0.670049 70.5245 0.760818C70.2802 0.942763 69.8251 1.27199 69.1722 1.70453C67.8611 2.5732 65.7889 3.83473 63.0595 5.15341C57.5707 7.80527 49.6975 10.5591 40.1383 11.0399L41.8623 45.2823ZM81.5003 13.9465C75.904 -2.25825 75.9054 -2.25876 75.9068 -2.25922C75.9071 -2.25934 75.9083 -2.25978 75.909 -2.26C75.9103 -2.26046 75.9113 -2.26079 75.9119 -2.26099C75.9131 -2.26139 75.9128 -2.26129 75.911 -2.26068C75.9075 -2.25948 75.8981 -2.25628 75.8832 -2.25115C75.8531 -2.24089 75.8003 -2.22292 75.7259 -2.19775C75.5767 -2.14739 75.3411 -2.06835 75.027 -1.96469C74.3982 -1.75721 73.4584 -1.45225 72.2725 -1.08228C69.8917 -0.339604 66.5645 0.650732 62.7991 1.6367C54.8229 3.72532 46.5108 5.3502 41.0003 5.3502V39.6359C51.2133 39.6359 63.1512 36.9875 71.4941 34.8029C75.8883 33.6523 79.7379 32.506 82.4941 31.6462C83.8766 31.2149 84.9953 30.8522 85.783 30.5923C86.177 30.4622 86.489 30.3577 86.7106 30.2828C86.8214 30.2454 86.9097 30.2154 86.9743 30.1933C87.0067 30.1823 87.0331 30.1732 87.0536 30.1662C87.0638 30.1626 87.0724 30.1597 87.0797 30.1572C87.0832 30.156 87.0864 30.1548 87.0893 30.1539C87.0907 30.1534 87.0925 30.1527 87.0932 30.1525C87.095 30.1519 87.0966 30.1513 81.5003 13.9465ZM41.0003 5.3502C35.4898 5.3502 27.1777 3.72532 19.2015 1.6367C15.4361 0.650732 12.1089 -0.339604 9.72812 -1.08228C8.54214 -1.45225 7.60238 -1.75721 6.97362 -1.96469C6.65951 -2.06835 6.42385 -2.14739 6.27479 -2.19775C6.20028 -2.22292 6.14748 -2.24089 6.11744 -2.25115C6.10241 -2.25628 6.09308 -2.25948 6.08956 -2.26068C6.08781 -2.26129 6.0875 -2.26139 6.08867 -2.26099C6.08927 -2.26079 6.09022 -2.26046 6.09155 -2.26C6.0922 -2.25978 6.09348 -2.25934 6.0938 -2.25922C6.09517 -2.25876 6.09662 -2.25825 0.500296 13.9465C-5.09603 30.1513 -5.09438 30.1519 -5.09265 30.1525C-5.09194 30.1527 -5.09011 30.1534 -5.08869 30.1539C-5.08586 30.1548 -5.08264 30.156 -5.07904 30.1572C-5.07186 30.1597 -5.06315 30.1626 -5.05294 30.1662C-5.03251 30.1732 -5.00607 30.1823 -4.97373 30.1933C-4.90907 30.2154 -4.82081 30.2454 -4.71002 30.2828C-4.48847 30.3577 -4.17645 30.4622 -3.78237 30.5923C-2.99475 30.8522 -1.87602 31.2149 -0.493517 31.6462C2.26265 32.506 6.11224 33.6523 10.5065 34.8029C18.8494 36.9875 30.7872 39.6359 41.0003 39.6359V5.3502Z" fill="#E91E63"/>
</g>
</g>
<defs>
<clipPath id="clip0_1399_1534">
<rect width="81" height="60" fill="white" transform="translate(0.5 0.613159)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1009 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,73 +0,0 @@
<svg width="312" height="282" viewBox="0 0 312 282" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1426_1746)">
<path d="M59.502 192.103C59.1036 192.291 58.6568 192.353 58.2222 192.279C57.7877 192.205 57.3864 191.999 57.0727 191.69C56.759 191.38 56.548 190.981 56.4684 190.548C56.3889 190.114 56.4445 189.667 56.6277 189.266C56.5947 189.046 56.5709 188.888 56.5378 188.669C56.5019 188.633 56.4658 188.597 56.4296 188.562C52.7838 184.97 46.6074 187.587 46.6192 192.704C46.6297 197.246 46.204 201.978 47.4104 206.281C47.9445 208.183 48.8044 209.978 49.9519 211.585C42.7366 204.929 37.0368 196.799 33.239 187.747C32.2883 185.475 31.4655 183.151 30.7743 180.786C30.2093 178.847 29.7308 176.888 29.3387 174.907C27.2227 164.158 27.6868 153.06 30.6929 142.524C33.0496 139.583 34.4479 135.99 34.6996 132.229C34.7944 130.875 34.6928 129.515 34.3979 128.19C34.0724 128.38 33.7341 128.554 33.3992 128.72C33.2943 128.771 33.1838 128.824 33.0788 128.874L33.0392 128.893C32.6678 129.068 32.2537 129.132 31.8467 129.078C31.4398 129.023 31.0573 128.852 30.7454 128.585C30.4335 128.318 30.2054 127.966 30.0886 127.572C29.9718 127.179 29.9713 126.76 30.0871 126.366C30.1594 126.121 30.2317 125.876 30.3041 125.631C30.412 125.254 30.5279 124.881 30.6357 124.504C30.6506 124.466 30.6633 124.428 30.6737 124.389C30.7989 123.958 30.9265 123.534 31.0517 123.103C30.2702 122.566 29.3751 122.216 28.4361 122.081C25.1966 121.644 22.0472 124.201 21.1511 127.34C20.2494 130.482 21.2739 133.934 23.1579 136.601C24.7691 138.886 26.9534 140.685 29.243 142.308C29.1773 142.547 29.1037 142.784 29.0381 143.023C27.8445 147.419 27.0846 151.921 26.7693 156.465C25.4692 152.066 23.1431 148.037 19.9825 144.712C16.914 141.665 12.7525 139.757 8.89865 137.624C4.26952 135.063 -1.24463 139.329 0.249425 144.405C0.263894 144.454 0.278475 144.503 0.293172 144.552C0.756118 144.607 1.21658 144.678 1.67454 144.765C2.25113 144.878 2.7802 145.162 3.19244 145.581C3.60468 145.999 3.88086 146.533 3.98478 147.111C4.08871 147.689 4.01553 148.285 3.77485 148.821C3.53416 149.357 3.1372 149.808 2.63596 150.115L2.58463 150.146C3.28232 151.44 4.07742 152.68 4.96302 153.854C7.47099 157.116 10.6258 159.825 14.2297 161.81C17.8337 163.796 21.809 165.016 25.9064 165.393C26.1738 165.414 26.4355 165.437 26.7005 165.453C27.0496 171.611 28.198 177.699 30.1169 183.561C31.2597 187.015 32.68 190.371 34.3639 193.597L34.2974 193.485C32.0204 190.068 28.6338 187.541 24.7095 186.331C18.9028 184.587 12.2491 185.832 6.39276 184.926C3.5737 184.49 1.43907 187.468 2.91853 189.907C2.94214 189.946 2.96585 189.985 2.98968 190.024C3.80319 190.016 4.61637 190.06 5.4245 190.153C5.88746 190.208 6.34792 190.279 6.80586 190.367C7.38246 190.479 7.91155 190.764 8.3238 191.182C8.73604 191.601 9.01221 192.134 9.11614 192.713C9.22006 193.291 9.14689 193.887 8.9062 194.423C8.66551 194.959 8.26854 195.41 7.7673 195.716L7.71591 195.748C7.67877 195.77 7.64724 195.79 7.61015 195.812C9.98322 198.151 12.7413 200.065 15.7637 201.469C19.4737 203.147 23.4874 204.05 27.5587 204.122C31.6299 204.194 35.6729 203.433 39.4398 201.887L39.4455 201.884C42.3174 205.89 45.5977 209.586 49.2337 212.913L64.9845 206.331C64.9678 206.132 64.9431 205.931 64.9208 205.734C63.5012 206.435 62.0011 206.96 60.454 207.296C61.0233 205.374 61.5879 203.44 62.1573 201.518C62.1721 201.48 62.1848 201.442 62.1953 201.402C62.4814 200.421 62.7754 199.442 63.0615 198.461L63.0614 198.46C62.1529 196.197 60.9568 194.061 59.5027 192.103L59.502 192.103ZM26.6375 164.159L26.6411 164.145L26.6422 164.171L26.6375 164.159ZM36.2921 197.068L36.0292 196.82C35.9429 196.597 35.8509 196.377 35.7509 196.154C35.7249 196.092 35.6876 196.034 35.6617 195.972C35.8753 196.34 36.0832 196.711 36.3025 197.077L36.2921 197.068Z" fill="#F2F2F2"/>
<path d="M204.039 83.8617C203.452 86.2284 203.173 88.6608 203.207 91.099L203.207 91.1C203.85 91.8954 204.498 92.6847 205.141 93.4801C205.165 93.5122 205.192 93.5428 205.22 93.5719C206.487 95.126 207.753 96.6924 209.02 98.2465C207.463 98.5327 205.876 98.6272 204.296 98.5279C204.351 98.7176 204.406 98.9134 204.468 99.1031H221.538C223.61 94.631 225.212 89.9558 226.317 85.1527H226.323C230.395 85.1269 234.419 84.2697 238.147 82.6336C241.876 80.9975 245.231 78.6171 248.007 75.6383C250.255 73.1774 252.062 70.3481 253.349 67.2742C253.306 67.2681 253.269 67.2619 253.227 67.2558L253.167 67.2467C252.586 67.1571 252.046 66.8943 251.618 66.4926C251.189 66.0909 250.891 65.569 250.764 64.9954C250.637 64.4218 250.686 63.8232 250.905 63.2779C251.124 62.7327 251.503 62.2664 251.991 61.94C252.38 61.683 252.777 61.4399 253.184 61.2106C253.893 60.8125 254.627 60.459 255.38 60.1522C255.387 60.1071 255.394 60.0621 255.401 60.0171C255.826 57.1963 252.708 55.2719 250.275 56.7611C245.22 59.8546 238.601 61.2718 233.916 65.1204C230.762 67.7497 228.612 71.3869 227.828 75.418L227.81 75.5465C228.12 71.9214 228.136 68.2771 227.859 64.6493C227.369 58.5003 226.081 52.441 224.029 46.624C224.267 46.5077 224.5 46.3854 224.738 46.263C228.374 44.3349 231.571 41.6766 234.131 38.4547C236.69 35.2329 238.557 31.5171 239.613 27.5401C239.977 26.1156 240.233 24.6654 240.378 23.202L240.318 23.1929C239.737 23.1033 239.197 22.8405 238.769 22.4388C238.34 22.0371 238.042 21.5152 237.915 20.9416C237.788 20.368 237.837 19.7694 238.056 19.2242C238.275 18.679 238.654 18.2126 239.142 17.8862C239.531 17.6293 239.928 17.3862 240.335 17.1569C240.329 17.106 240.324 17.0551 240.318 17.0042C239.74 11.7453 233.007 9.93477 229.724 14.0833C226.99 17.5371 223.886 20.9018 222.23 24.8969C220.596 29.1837 220.003 33.7972 220.5 38.3579C218.457 34.2869 216.02 30.4259 213.223 26.8304C213.07 26.6346 212.911 26.4449 212.758 26.2491C214.245 23.869 215.567 21.3665 216.172 18.6376C216.882 15.4498 216.497 11.8704 214.453 9.31899C212.416 6.76754 208.524 5.62338 205.704 7.2754C204.889 7.76182 204.198 8.42977 203.684 9.22717C203.966 9.57594 204.247 9.91857 204.529 10.2673C204.554 10.2994 204.58 10.3301 204.608 10.3592C204.853 10.6651 205.104 10.9649 205.349 11.2708C205.51 11.4689 205.671 11.6671 205.832 11.8655C206.091 12.1843 206.252 12.5711 206.296 12.9794C206.34 13.3876 206.265 13.7999 206.081 14.1665C205.896 14.5332 205.609 14.8386 205.255 15.046C204.9 15.2534 204.493 15.3539 204.083 15.3355L204.039 15.3336C203.923 15.3274 203.801 15.3213 203.684 15.3152C203.311 15.2907 202.932 15.2601 202.559 15.2112C202.797 16.547 203.228 17.8413 203.837 19.0537C205.52 22.4265 208.195 25.2026 211.504 27.0078C218.34 35.5694 223.048 45.6305 225.24 56.3648C225.644 58.3411 225.958 60.3337 226.182 62.3427C226.456 64.7907 226.593 67.2522 226.592 69.7156C226.579 79.5322 224.454 89.2311 220.364 98.1547C220.802 96.2288 220.904 94.2414 220.663 92.2809C220.117 87.8455 217.9 83.6435 216.158 79.4486C214.196 74.7223 207.488 74.6897 205.509 79.409C205.489 79.4559 205.47 79.5027 205.451 79.5496C205.505 79.7651 205.544 79.9198 205.598 80.1353C205.922 80.4345 206.145 80.826 206.239 81.2567C206.333 81.6874 206.292 82.1365 206.122 82.5432C205.952 82.9498 205.661 83.2944 205.289 83.5302C204.916 83.766 204.48 83.8816 204.04 83.8613L204.039 83.8617ZM223.588 45.4186L223.579 45.3943L223.588 45.4064V45.4186ZM227.363 79.5053C227.425 79.0831 227.473 78.6609 227.529 78.2387C227.529 78.306 227.516 78.3733 227.516 78.4407C227.51 78.6854 227.51 78.924 227.516 79.1627L227.369 79.493L227.363 79.5053Z" fill="#F2F2F2"/>
<path d="M186.841 189.054H134.615C133.876 189.055 133.168 189.35 132.646 189.873C132.124 190.396 131.832 191.105 131.833 191.844V274.345H189.63V191.844C189.631 191.477 189.559 191.114 189.418 190.776C189.278 190.437 189.073 190.13 188.814 189.871C188.555 189.612 188.247 189.406 187.909 189.266C187.57 189.126 187.207 189.054 186.841 189.054ZM160.904 235.931C159.27 235.923 157.706 235.271 156.551 234.116C155.396 232.961 154.744 231.397 154.737 229.764V220.248C154.737 218.612 155.386 217.044 156.543 215.887C157.699 214.731 159.268 214.081 160.904 214.081C162.539 214.081 164.108 214.731 165.264 215.887C166.421 217.044 167.071 218.612 167.071 220.248V229.764C167.063 231.397 166.411 232.961 165.256 234.116C164.101 235.271 162.537 235.923 160.904 235.931Z" fill="#E6E6E6"/>
<path d="M131.653 271.707V279.666C131.654 280.079 131.818 280.474 132.11 280.766C132.402 281.057 132.797 281.222 133.209 281.222H188.254C188.666 281.22 189.06 281.056 189.352 280.764C189.643 280.473 189.808 280.078 189.81 279.666V271.707L131.653 271.707Z" fill="#CCCCCC"/>
<path d="M273.322 60.3008H50.0766C48.1585 60.3038 46.3199 61.0671 44.9637 62.4234C43.6074 63.7796 42.8441 65.6182 42.8411 67.5362V218.184C42.8429 220.102 43.6058 221.941 44.9623 223.298C46.3189 224.654 48.1582 225.417 50.0766 225.419H273.322C275.241 225.417 277.08 224.654 278.437 223.298C279.793 221.941 280.556 220.102 280.558 218.184V67.5362C280.555 65.6182 279.792 63.7796 278.435 62.4234C277.079 61.0671 275.241 60.3038 273.322 60.3008Z" fill="#E6E6E6"/>
<path d="M271.458 65.5249H51.9423C50.915 65.5273 49.9306 65.9371 49.2051 66.6644C48.4795 67.3916 48.0721 68.3769 48.072 69.4042V216.316C48.0732 217.342 48.4813 218.326 49.2069 219.052C49.9324 219.777 50.9162 220.185 51.9423 220.186H271.458C272.484 220.185 273.468 219.777 274.193 219.052C274.919 218.326 275.327 217.342 275.328 216.316V69.4042C275.328 68.3769 274.921 67.3916 274.195 66.6644C273.47 65.9371 272.485 65.5273 271.458 65.5249Z" fill="white"/>
<path d="M76.0195 211.765C76.0243 214.64 75.512 217.493 74.5071 220.187H51.9415C50.9158 220.186 49.9326 219.777 49.2073 219.052C48.482 218.327 48.0738 217.344 48.072 216.318V187.936C49.3328 187.732 50.608 187.63 51.8852 187.63C55.0546 187.63 58.1931 188.254 61.1212 189.467C64.0494 190.68 66.7101 192.458 68.9512 194.699C71.1923 196.94 72.97 199.6 74.1828 202.529C75.3956 205.457 76.0197 208.595 76.0195 211.765Z" fill="#2196F3"/>
<path d="M275.328 69.4042V197.277C258.438 202.2 240.404 201.486 223.955 195.243C207.507 189 193.541 177.568 184.171 162.678C174.801 147.788 170.537 130.25 172.026 112.72C173.514 95.1899 180.674 78.6221 192.421 65.5249H271.458C272.485 65.5273 273.47 65.9371 274.195 66.6644C274.921 67.3916 275.328 68.3769 275.328 69.4042Z" fill="#E6E6E6"/>
<path d="M260.424 85.7684H55.023C54.8094 85.7639 54.606 85.6758 54.4566 85.5231C54.3071 85.3704 54.2234 85.1653 54.2234 84.9516C54.2234 84.7379 54.3071 84.5327 54.4566 84.3801C54.606 84.2274 54.8094 84.1393 55.023 84.1348H260.424C260.638 84.1393 260.841 84.2274 260.991 84.3801C261.14 84.5327 261.224 84.7379 261.224 84.9516C261.224 85.1653 261.14 85.3704 260.991 85.5231C260.841 85.6758 260.638 85.7639 260.424 85.7684Z" fill="#CACACA"/>
<path d="M69.0047 79.9641C71.6485 79.9641 73.7917 77.7731 73.7917 75.0704C73.7917 72.3677 71.6485 70.1768 69.0047 70.1768C66.361 70.1768 64.2178 72.3677 64.2178 75.0704C64.2178 77.7731 66.361 79.9641 69.0047 79.9641Z" fill="#3F3D56"/>
<path d="M85.5414 79.9641C88.1851 79.9641 90.3283 77.7731 90.3283 75.0704C90.3283 72.3677 88.1851 70.1768 85.5414 70.1768C82.8976 70.1768 80.7544 72.3677 80.7544 75.0704C80.7544 77.7731 82.8976 79.9641 85.5414 79.9641Z" fill="#3F3D56"/>
<path d="M102.078 79.9641C104.722 79.9641 106.865 77.7731 106.865 75.0704C106.865 72.3677 104.722 70.1768 102.078 70.1768C99.4347 70.1768 97.2915 72.3677 97.2915 75.0704C97.2915 77.7731 99.4347 79.9641 102.078 79.9641Z" fill="#3F3D56"/>
<path d="M250.468 71.3896H238.721C238.488 71.3943 238.266 71.49 238.103 71.6563C237.94 71.8226 237.849 72.0462 237.849 72.2791C237.849 72.512 237.94 72.7356 238.103 72.9019C238.266 73.0682 238.488 73.1639 238.721 73.1685H250.468C250.701 73.1639 250.922 73.0682 251.086 72.9019C251.249 72.7356 251.34 72.512 251.34 72.2791C251.34 72.0462 251.249 71.8226 251.086 71.6563C250.922 71.49 250.701 71.3943 250.468 71.3896Z" fill="#3F3D56"/>
<path d="M250.468 74.7285H238.721C238.488 74.7332 238.266 74.8289 238.103 74.9952C237.94 75.1615 237.849 75.3851 237.849 75.618C237.849 75.8509 237.94 76.0745 238.103 76.2408C238.266 76.4071 238.488 76.5028 238.721 76.5074H250.468C250.701 76.5028 250.922 76.4071 251.086 76.2408C251.249 76.0745 251.34 75.8509 251.34 75.618C251.34 75.3851 251.249 75.1615 251.086 74.9952C250.922 74.8289 250.701 74.7332 250.468 74.7285Z" fill="#3F3D56"/>
<path d="M250.468 78.0625H238.721C238.488 78.0671 238.266 78.1629 238.103 78.3292C237.94 78.4955 237.849 78.7191 237.849 78.952C237.849 79.1848 237.94 79.4084 238.103 79.5747C238.266 79.741 238.488 79.8368 238.721 79.8414H250.468C250.701 79.8368 250.922 79.741 251.086 79.5747C251.249 79.4084 251.34 79.1848 251.34 78.952C251.34 78.7191 251.249 78.4955 251.086 78.3292C250.922 78.1629 250.701 78.0671 250.468 78.0625Z" fill="#3F3D56"/>
<path d="M141.055 29.2889C141.778 27.7637 138.426 24.6593 133.568 22.3551C128.709 20.0508 124.185 19.4193 123.461 20.9445C122.738 22.4696 126.09 25.574 130.948 27.8783C135.807 30.1825 140.331 30.8141 141.055 29.2889Z" fill="#2F2E41"/>
<path d="M181.151 44.9977C182.445 43.9141 180.696 39.6934 177.244 35.5705C173.792 31.4477 169.944 28.984 168.65 30.0677C167.356 31.1513 169.105 35.372 172.557 39.4948C176.009 43.6176 179.856 46.0814 181.151 44.9977Z" fill="#2F2E41"/>
<path d="M154.19 53.6241C164.944 53.6241 173.662 44.9061 173.662 34.1519C173.662 23.3977 164.944 14.6797 154.19 14.6797C143.436 14.6797 134.718 23.3977 134.718 34.1519C134.718 44.9061 143.436 53.6241 154.19 53.6241Z" fill="#2F2E41"/>
<path d="M162.432 49.4336H156.516V60.0324H162.432V49.4336Z" fill="#2F2E41"/>
<path d="M150.601 49.4336H144.685V60.0324H150.601V49.4336Z" fill="#2F2E41"/>
<path d="M157.502 62.0044C160.225 62.0044 162.432 61.1767 162.432 60.1558C162.432 59.1348 160.225 58.3071 157.502 58.3071C154.779 58.3071 152.572 59.1348 152.572 60.1558C152.572 61.1767 154.779 62.0044 157.502 62.0044Z" fill="#2F2E41"/>
<path d="M145.671 61.7578C148.393 61.7578 150.601 60.9301 150.601 59.9092C150.601 58.8882 148.393 58.0605 145.671 58.0605C142.948 58.0605 140.741 58.8882 140.741 59.9092C140.741 60.9301 142.948 61.7578 145.671 61.7578Z" fill="#2F2E41"/>
<path d="M148.076 9.6746C149.814 2.67239 157.489 -1.44825 165.218 0.470877C172.947 2.39001 177.803 9.62223 176.064 16.6244C174.326 23.6266 168.557 23.6492 160.828 21.7301C153.099 19.8109 146.337 16.6768 148.076 9.6746Z" fill="#E6E6E6"/>
<path d="M151.279 36.5348C154.864 36.5348 157.771 33.6283 157.771 30.0428C157.771 26.4574 154.864 23.5508 151.279 23.5508C147.693 23.5508 144.787 26.4574 144.787 30.0428C144.787 33.6283 147.693 36.5348 151.279 36.5348Z" fill="white"/>
<path d="M150.871 34.8534C152.066 34.8534 153.035 33.8845 153.035 32.6894C153.035 31.4943 152.066 30.5254 150.871 30.5254C149.676 30.5254 148.707 31.4943 148.707 32.6894C148.707 33.8845 149.676 34.8534 150.871 34.8534Z" fill="#3F3D56"/>
<path d="M159.528 41.7967C159.956 44.1484 154.22 48.1738 151.868 48.6019C150.739 48.8074 149.574 48.556 148.63 47.9028C147.686 47.2496 147.041 46.2483 146.835 45.119L146.834 45.1106C146.408 42.7585 148.226 41.9262 150.578 41.5004C152.93 41.0746 159.102 39.4447 159.528 41.7967Z" fill="white"/>
<path d="M228.504 178.2C231.781 173.937 233.352 169.647 232.014 168.618C230.675 167.59 226.934 170.212 223.657 174.475C220.38 178.738 218.809 183.028 220.147 184.057C221.485 185.086 225.227 182.464 228.504 178.2Z" fill="#2F2E41"/>
<path d="M246.339 192.429C257.094 192.429 265.812 183.711 265.812 172.957C265.812 162.203 257.094 153.485 246.339 153.485C235.585 153.485 226.867 162.203 226.867 172.957C226.867 183.711 235.585 192.429 246.339 192.429Z" fill="#2F2E41"/>
<path d="M255.212 188.239H249.297V198.838H255.212V188.239Z" fill="#2F2E41"/>
<path d="M243.381 188.239H237.465V198.838H243.381V188.239Z" fill="#2F2E41"/>
<path d="M250.283 200.81C253.006 200.81 255.213 199.982 255.213 198.961C255.213 197.94 253.006 197.112 250.283 197.112C247.561 197.112 245.354 197.94 245.354 198.961C245.354 199.982 247.561 200.81 250.283 200.81Z" fill="#2F2E41"/>
<path d="M238.452 200.563C241.174 200.563 243.381 199.735 243.381 198.714C243.381 197.693 241.174 196.866 238.452 196.866C235.729 196.866 233.522 197.693 233.522 198.714C233.522 199.735 235.729 200.563 238.452 200.563Z" fill="#2F2E41"/>
<path d="M245.846 174.682C249.522 174.682 252.502 171.703 252.502 168.027C252.502 164.352 249.522 161.372 245.846 161.372C242.171 161.372 239.191 164.352 239.191 168.027C239.191 171.703 242.171 174.682 245.846 174.682Z" fill="white"/>
<path d="M245.394 173.41C246.619 173.41 247.612 172.417 247.612 171.192C247.612 169.967 246.619 168.974 245.394 168.974C244.168 168.974 243.175 169.967 243.175 171.192C243.175 172.417 244.168 173.41 245.394 173.41Z" fill="#3F3D56"/>
<path d="M265.228 154.848C266.8 147.807 261.774 140.692 254.002 138.956C246.23 137.221 238.655 141.522 237.083 148.564C235.51 155.605 240.661 158.202 248.433 159.938C256.205 161.673 263.656 161.89 265.228 154.848Z" fill="#2196F3"/>
<path d="M269.355 189.863C270.874 189.127 270.203 184.607 267.857 179.769C265.51 174.931 262.377 171.606 260.858 172.343C259.339 173.079 260.01 177.598 262.356 182.437C264.703 187.275 267.836 190.6 269.355 189.863Z" fill="#2F2E41"/>
<path d="M255.904 179.982C255.904 181.887 250.997 185.651 245.552 185.651C240.106 185.651 235.001 180.285 235.001 178.379C235.001 176.474 240.106 178.749 245.552 178.749C250.997 178.749 255.904 178.076 255.904 179.982Z" fill="white"/>
<path d="M231.741 257.988C242.495 257.988 251.213 249.27 251.213 238.516C251.213 227.762 242.495 219.044 231.741 219.044C220.987 219.044 212.269 227.762 212.269 238.516C212.269 249.27 220.987 257.988 231.741 257.988Z" fill="#2F2E41"/>
<path d="M228.783 253.798H222.868V264.397H228.783V253.798Z" fill="#2F2E41"/>
<path d="M240.614 253.798H234.698V264.397H240.614V253.798Z" fill="#2F2E41"/>
<path d="M231.803 267.982C232.239 267.058 230.596 265.368 228.135 264.205C225.673 263.042 223.323 262.849 222.887 263.772C222.452 264.695 224.094 266.386 226.556 267.548C229.018 268.711 231.367 268.905 231.803 267.982Z" fill="#2F2E41"/>
<path d="M243.745 267.482C244.128 266.536 242.393 264.94 239.87 263.917C237.347 262.895 234.99 262.833 234.607 263.779C234.223 264.725 235.958 266.321 238.481 267.344C241.005 268.366 243.361 268.428 243.745 267.482Z" fill="#2F2E41"/>
<path d="M212.852 220.408C211.28 213.366 216.306 206.251 224.078 204.516C231.85 202.78 239.426 207.082 240.998 214.123C242.57 221.165 237.419 223.762 229.647 225.497C221.875 227.233 214.425 227.449 212.852 220.408Z" fill="#2196F3"/>
<path d="M254.888 230.524C256.832 224.883 256.972 219.816 255.201 219.206C253.431 218.595 250.419 222.673 248.475 228.314C246.531 233.954 246.391 239.022 248.162 239.632C249.933 240.242 252.944 236.164 254.888 230.524Z" fill="#2F2E41"/>
<path d="M216.046 236.608C217.371 235.284 215.026 230.79 210.809 226.57C206.592 222.349 202.099 220.001 200.774 221.325C199.45 222.649 201.794 227.143 206.011 231.364C210.228 235.584 214.721 237.932 216.046 236.608Z" fill="#2F2E41"/>
<path d="M84.3804 273.007C95.1346 273.007 103.853 264.289 103.853 253.535C103.853 242.781 95.1346 234.062 84.3804 234.062C73.6262 234.062 64.9082 242.781 64.9082 253.535C64.9082 264.289 73.6262 273.007 84.3804 273.007Z" fill="#2F2E41"/>
<path d="M81.422 268.817H75.5063V279.416H81.422V268.817Z" fill="#2F2E41"/>
<path d="M93.2535 268.817H87.3379V279.416H93.2535V268.817Z" fill="#2F2E41"/>
<path d="M80.436 281.387C83.1586 281.387 85.3657 280.56 85.3657 279.539C85.3657 278.518 83.1586 277.69 80.436 277.69C77.7134 277.69 75.5063 278.518 75.5063 279.539C75.5063 280.56 77.7134 281.387 80.436 281.387Z" fill="#2F2E41"/>
<path d="M92.2676 281.141C94.9902 281.141 97.1973 280.313 97.1973 279.292C97.1973 278.271 94.9902 277.443 92.2676 277.443C89.545 277.443 87.3379 278.271 87.3379 279.292C87.3379 280.313 89.545 281.141 92.2676 281.141Z" fill="#2F2E41"/>
<path d="M65.4915 235.426C63.9192 228.385 68.9452 221.269 76.7174 219.534C84.4896 217.799 92.0647 222.1 93.637 229.141C95.2093 236.183 90.0584 238.78 82.2862 240.515C74.5141 242.251 67.0638 242.467 65.4915 235.426Z" fill="#3F3D56"/>
<path d="M109.348 258.531C110.224 256.875 106.659 253.272 101.385 250.482C96.1112 247.692 91.1261 246.773 90.2503 248.429C89.3745 250.084 92.9397 253.688 98.2134 256.477C103.487 259.267 108.472 260.187 109.348 258.531Z" fill="#2F2E41"/>
<path d="M81.6781 155.67C86.5365 153.366 89.8886 150.262 89.1652 148.737C88.4418 147.211 83.9169 147.843 79.0586 150.147C74.2002 152.451 70.8481 155.556 71.5715 157.081C72.2949 158.606 76.8198 157.975 81.6781 155.67Z" fill="#2F2E41"/>
<path d="M40.0691 167.287C43.521 163.164 45.2701 158.943 43.9758 157.86C42.6815 156.776 38.834 159.24 35.3821 163.363C31.9302 167.485 30.1811 171.706 31.4753 172.79C32.7696 173.873 36.6172 171.41 40.0691 167.287Z" fill="#2F2E41"/>
<path d="M58.4363 181.416C69.1905 181.416 77.9085 172.698 77.9085 161.944C77.9085 151.19 69.1905 142.472 58.4363 142.472C47.6821 142.472 38.9641 151.19 38.9641 161.944C38.9641 172.698 47.6821 181.416 58.4363 181.416Z" fill="#2F2E41"/>
<path d="M56.1099 177.226H50.1943V187.824H56.1099V177.226Z" fill="#2F2E41"/>
<path d="M67.9415 177.226H62.0259V187.824H67.9415V177.226Z" fill="#2F2E41"/>
<path d="M55.124 189.796C57.8466 189.796 60.0537 188.969 60.0537 187.948C60.0537 186.927 57.8466 186.099 55.124 186.099C52.4014 186.099 50.1943 186.927 50.1943 187.948C50.1943 188.969 52.4014 189.796 55.124 189.796Z" fill="#2F2E41"/>
<path d="M66.9556 189.55C69.6782 189.55 71.8853 188.722 71.8853 187.701C71.8853 186.68 69.6782 185.853 66.9556 185.853C64.233 185.853 62.0259 186.68 62.0259 187.701C62.0259 188.722 64.233 189.55 66.9556 189.55Z" fill="#2F2E41"/>
<path d="M64.5505 137.467C62.8118 130.464 55.1368 126.344 47.408 128.263C39.6791 130.182 34.8231 137.414 36.5618 144.416C38.3006 151.419 44.0691 151.441 51.7979 149.522C59.5268 147.603 66.2892 144.469 64.5505 137.467Z" fill="#2196F3"/>
<path d="M61.3475 164.327C64.9329 164.327 67.8395 161.42 67.8395 157.835C67.8395 154.249 64.9329 151.343 61.3475 151.343C57.762 151.343 54.8555 154.249 54.8555 157.835C54.8555 161.42 57.762 164.327 61.3475 164.327Z" fill="white"/>
<path d="M61.7553 162.645C62.9505 162.645 63.9193 161.677 63.9193 160.481C63.9193 159.286 62.9505 158.317 61.7553 158.317C60.5602 158.317 59.5913 159.286 59.5913 160.481C59.5913 161.677 60.5602 162.645 61.7553 162.645Z" fill="#3F3D56"/>
<path d="M57.2751 171.361C57.1733 171.92 57.1826 172.494 57.3025 173.049C57.4225 173.605 57.6507 174.131 57.9741 174.599C58.2975 175.066 58.7098 175.465 59.1875 175.773C59.6651 176.081 60.1988 176.292 60.758 176.394C61.3171 176.496 61.8909 176.486 62.4464 176.366C63.002 176.246 63.5285 176.018 63.9959 175.695C64.4633 175.371 64.8624 174.959 65.1704 174.481C65.4784 174.004 65.6894 173.47 65.7912 172.911L65.7927 172.903C66.2185 170.551 64.3999 169.718 62.0479 169.292C59.6958 168.867 57.7008 169.009 57.2751 171.361Z" fill="white"/>
<path d="M311.462 281.219L10.0011 281.358C9.93027 281.358 9.86009 281.345 9.7946 281.318C9.7291 281.291 9.66957 281.251 9.61942 281.201C9.56926 281.151 9.52947 281.092 9.50231 281.026C9.47516 280.961 9.46118 280.891 9.46118 280.82C9.46118 280.749 9.47516 280.679 9.50231 280.614C9.52947 280.548 9.56926 280.489 9.61942 280.439C9.66957 280.389 9.7291 280.349 9.7946 280.322C9.86009 280.295 9.93027 280.281 10.0011 280.282L311.462 280.143C311.604 280.143 311.741 280.2 311.841 280.301C311.942 280.402 311.998 280.538 311.998 280.681C311.998 280.823 311.942 280.96 311.841 281.061C311.741 281.162 311.604 281.219 311.462 281.219Z" fill="#CACACA"/>
</g>
<defs>
<clipPath id="clip0_1426_1746">
<rect width="312" height="281.387" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

View File

@ -1,33 +0,0 @@
<svg width="312" height="282" viewBox="0 0 312 282" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1426_1876)">
<path d="M59.502 192.103C59.1036 192.291 58.6568 192.353 58.2222 192.279C57.7877 192.205 57.3864 191.999 57.0727 191.69C56.759 191.38 56.548 190.981 56.4684 190.548C56.3889 190.114 56.4445 189.667 56.6277 189.266C56.5947 189.046 56.5709 188.888 56.5378 188.669C56.5019 188.633 56.4658 188.597 56.4296 188.562C52.7838 184.97 46.6074 187.587 46.6192 192.704C46.6297 197.246 46.204 201.978 47.4104 206.281C47.9445 208.183 48.8044 209.978 49.9519 211.585C42.7366 204.929 37.0368 196.799 33.239 187.747C32.2883 185.475 31.4655 183.151 30.7743 180.786C30.2093 178.847 29.7308 176.888 29.3387 174.907C27.2227 164.158 27.6868 153.06 30.6929 142.524C33.0496 139.583 34.4479 135.99 34.6996 132.229C34.7944 130.875 34.6928 129.515 34.3979 128.19C34.0724 128.38 33.7341 128.554 33.3992 128.72C33.2943 128.771 33.1838 128.824 33.0788 128.874L33.0392 128.893C32.6678 129.068 32.2537 129.132 31.8467 129.078C31.4398 129.023 31.0573 128.852 30.7454 128.585C30.4335 128.318 30.2054 127.966 30.0886 127.572C29.9718 127.179 29.9713 126.76 30.0871 126.366C30.1594 126.121 30.2317 125.876 30.3041 125.631C30.412 125.254 30.5279 124.881 30.6357 124.504C30.6506 124.466 30.6633 124.428 30.6737 124.389C30.7989 123.958 30.9265 123.534 31.0517 123.103C30.2702 122.566 29.3751 122.216 28.4361 122.081C25.1966 121.644 22.0472 124.201 21.1511 127.34C20.2494 130.482 21.2739 133.934 23.1579 136.601C24.7691 138.886 26.9534 140.685 29.243 142.308C29.1773 142.547 29.1037 142.784 29.0381 143.023C27.8445 147.419 27.0846 151.921 26.7693 156.465C25.4692 152.066 23.1431 148.037 19.9825 144.712C16.914 141.665 12.7525 139.757 8.89865 137.624C4.26952 135.063 -1.24463 139.329 0.249425 144.405C0.263894 144.454 0.278475 144.503 0.293172 144.552C0.756118 144.607 1.21658 144.678 1.67454 144.765C2.25113 144.878 2.7802 145.162 3.19244 145.581C3.60468 145.999 3.88086 146.533 3.98478 147.111C4.08871 147.689 4.01553 148.285 3.77485 148.821C3.53416 149.357 3.1372 149.808 2.63596 150.115L2.58463 150.146C3.28232 151.44 4.07742 152.68 4.96302 153.854C7.47099 157.116 10.6258 159.825 14.2297 161.81C17.8337 163.796 21.809 165.016 25.9064 165.393C26.1738 165.414 26.4355 165.437 26.7005 165.453C27.0496 171.611 28.198 177.699 30.1169 183.561C31.2597 187.015 32.68 190.371 34.3639 193.597L34.2974 193.485C32.0204 190.068 28.6338 187.541 24.7095 186.331C18.9028 184.587 12.2491 185.832 6.39276 184.926C3.5737 184.49 1.43907 187.468 2.91853 189.907C2.94214 189.946 2.96585 189.985 2.98968 190.024C3.80319 190.016 4.61637 190.06 5.4245 190.153C5.88746 190.208 6.34792 190.279 6.80586 190.367C7.38246 190.479 7.91155 190.764 8.3238 191.182C8.73604 191.601 9.01221 192.134 9.11614 192.713C9.22006 193.291 9.14689 193.887 8.9062 194.423C8.66551 194.959 8.26854 195.41 7.7673 195.716L7.71591 195.748C7.67877 195.77 7.64724 195.79 7.61015 195.812C9.98322 198.151 12.7413 200.065 15.7637 201.469C19.4737 203.147 23.4874 204.05 27.5587 204.122C31.6299 204.194 35.6729 203.433 39.4398 201.887L39.4455 201.884C42.3174 205.89 45.5977 209.586 49.2337 212.913L64.9845 206.331C64.9678 206.132 64.9431 205.931 64.9208 205.734C63.5012 206.435 62.0011 206.96 60.454 207.296C61.0233 205.374 61.5879 203.44 62.1573 201.518C62.1721 201.48 62.1848 201.442 62.1953 201.402C62.4814 200.421 62.7754 199.442 63.0615 198.461L63.0614 198.46C62.1529 196.197 60.9568 194.061 59.5027 192.103L59.502 192.103ZM26.6375 164.159L26.6411 164.145L26.6422 164.171L26.6375 164.159ZM36.2921 197.068L36.0292 196.82C35.9429 196.597 35.8509 196.377 35.7509 196.154C35.7249 196.092 35.6876 196.034 35.6617 195.972C35.8753 196.34 36.0832 196.711 36.3025 197.077L36.2921 197.068Z" fill="#F2F2F2"/>
<path d="M204.04 83.8617C203.453 86.2284 203.173 88.6608 203.207 91.099L203.207 91.1C203.85 91.8954 204.498 92.6847 205.141 93.4801C205.166 93.5122 205.192 93.5428 205.22 93.5719C206.487 95.126 207.754 96.6924 209.02 98.2465C207.463 98.5327 205.877 98.6272 204.296 98.5279C204.352 98.7176 204.407 98.9134 204.468 99.1031H221.539C223.61 94.631 225.212 89.9558 226.317 85.1527H226.323C230.395 85.1269 234.419 84.2697 238.148 82.6336C241.876 80.9975 245.232 78.6171 248.008 75.6383C250.255 73.1774 252.062 70.3481 253.349 67.2742C253.306 67.2681 253.27 67.2619 253.227 67.2558L253.167 67.2467C252.587 67.1571 252.047 66.8943 251.618 66.4926C251.189 66.0909 250.892 65.569 250.765 64.9954C250.638 64.4218 250.687 63.8232 250.906 63.2779C251.125 62.7327 251.503 62.2664 251.992 61.94C252.38 61.683 252.778 61.4399 253.184 61.2106C253.893 60.8125 254.627 60.459 255.381 60.1522C255.388 60.1071 255.394 60.0621 255.401 60.0171C255.826 57.1963 252.708 55.2719 250.275 56.7611C245.221 59.8546 238.602 61.2718 233.917 65.1204C230.762 67.7497 228.612 71.3869 227.829 75.418L227.81 75.5465C228.12 71.9214 228.137 68.2771 227.859 64.6493C227.369 58.5003 226.082 52.441 224.029 46.624C224.268 46.5077 224.5 46.3854 224.739 46.263C228.374 44.3349 231.571 41.6766 234.131 38.4547C236.69 35.2329 238.557 31.5171 239.613 27.5401C239.977 26.1156 240.233 24.6654 240.378 23.202L240.318 23.1929C239.738 23.1033 239.198 22.8405 238.769 22.4388C238.34 22.0371 238.043 21.5152 237.916 20.9416C237.789 20.368 237.838 19.7694 238.057 19.2242C238.276 18.679 238.654 18.2126 239.143 17.8862C239.531 17.6293 239.929 17.3862 240.335 17.1569C240.33 17.106 240.324 17.0551 240.319 17.0042C239.74 11.7453 233.007 9.93477 229.724 14.0833C226.99 17.5371 223.886 20.9018 222.23 24.8969C220.596 29.1837 220.003 33.7972 220.5 38.3579C218.457 34.2869 216.02 30.4259 213.224 26.8304C213.071 26.6346 212.912 26.4449 212.759 26.2491C214.245 23.869 215.567 21.3665 216.173 18.6376C216.882 15.4498 216.497 11.8704 214.453 9.31899C212.416 6.76754 208.524 5.62338 205.704 7.2754C204.889 7.76182 204.198 8.42977 203.685 9.22717C203.966 9.57594 204.248 9.91857 204.529 10.2673C204.554 10.2994 204.58 10.3301 204.609 10.3592C204.853 10.6651 205.104 10.9649 205.349 11.2708C205.51 11.4689 205.672 11.6671 205.833 11.8655C206.091 12.1843 206.253 12.5711 206.297 12.9794C206.341 13.3876 206.266 13.7999 206.081 14.1665C205.896 14.5332 205.609 14.8386 205.255 15.046C204.9 15.2534 204.494 15.3539 204.083 15.3355L204.04 15.3336C203.923 15.3274 203.801 15.3213 203.685 15.3152C203.311 15.2907 202.932 15.2601 202.559 15.2112C202.797 16.547 203.228 17.8413 203.838 19.0537C205.52 22.4265 208.196 25.2026 211.504 27.0078C218.34 35.5694 223.048 45.6305 225.24 56.3648C225.644 58.3411 225.958 60.3337 226.183 62.3427C226.457 64.7907 226.594 67.2522 226.593 69.7156C226.579 79.5322 224.455 89.2311 220.364 98.1547C220.803 96.2288 220.904 94.2414 220.664 92.2809C220.118 87.8455 217.9 83.6435 216.158 79.4486C214.196 74.7223 207.489 74.6897 205.509 79.409C205.49 79.4559 205.47 79.5027 205.451 79.5496C205.505 79.7651 205.544 79.9198 205.598 80.1353C205.922 80.4345 206.146 80.826 206.239 81.2567C206.333 81.6874 206.292 82.1365 206.122 82.5432C205.952 82.9498 205.661 83.2944 205.289 83.5302C204.916 83.766 204.48 83.8816 204.04 83.8613L204.04 83.8617ZM223.588 45.4186L223.579 45.3943L223.588 45.4064V45.4186ZM227.364 79.5053C227.425 79.0831 227.474 78.6609 227.529 78.2387C227.529 78.306 227.517 78.3733 227.517 78.4407C227.51 78.6854 227.51 78.924 227.517 79.1627L227.37 79.493L227.364 79.5053Z" fill="#F2F2F2"/>
<path d="M186.841 189.054H134.615C133.876 189.055 133.168 189.35 132.646 189.873C132.124 190.396 131.832 191.105 131.833 191.844V274.345H189.63V191.844C189.631 191.477 189.559 191.114 189.418 190.776C189.278 190.437 189.073 190.13 188.814 189.871C188.555 189.612 188.247 189.406 187.909 189.266C187.57 189.126 187.207 189.054 186.841 189.054ZM160.904 235.931C159.27 235.923 157.706 235.271 156.551 234.116C155.396 232.961 154.744 231.397 154.737 229.764V220.248C154.737 218.612 155.386 217.044 156.543 215.887C157.699 214.731 159.268 214.081 160.904 214.081C162.539 214.081 164.108 214.731 165.264 215.887C166.421 217.044 167.071 218.612 167.071 220.248V229.764C167.063 231.397 166.411 232.961 165.256 234.116C164.101 235.271 162.537 235.923 160.904 235.931Z" fill="#E6E6E6"/>
<path d="M131.653 271.707V279.666C131.654 280.079 131.818 280.474 132.11 280.766C132.402 281.057 132.797 281.222 133.209 281.222H188.254C188.666 281.22 189.06 281.056 189.352 280.764C189.643 280.473 189.808 280.078 189.81 279.666V271.707L131.653 271.707Z" fill="#CCCCCC"/>
<path d="M273.322 60.3008H50.0766C48.1585 60.3038 46.3199 61.0671 44.9637 62.4234C43.6074 63.7796 42.8441 65.6182 42.8411 67.5362V218.184C42.8429 220.102 43.6058 221.941 44.9623 223.298C46.3189 224.654 48.1582 225.417 50.0766 225.419H273.322C275.241 225.417 277.08 224.654 278.437 223.298C279.793 221.941 280.556 220.102 280.558 218.184V67.5362C280.555 65.6182 279.792 63.7796 278.435 62.4234C277.079 61.0671 275.241 60.3038 273.322 60.3008Z" fill="#E6E6E6"/>
<path d="M271.458 65.5249H51.9423C50.915 65.5273 49.9306 65.9371 49.2051 66.6644C48.4795 67.3916 48.0721 68.3769 48.072 69.4042V216.316C48.0732 217.342 48.4813 218.326 49.2069 219.052C49.9324 219.777 50.9162 220.185 51.9423 220.186H271.458C272.484 220.185 273.468 219.777 274.193 219.052C274.919 218.326 275.327 217.342 275.328 216.316V69.4042C275.328 68.3769 274.921 67.3916 274.195 66.6644C273.47 65.9371 272.485 65.5273 271.458 65.5249Z" fill="white"/>
<path d="M275.328 69.4042V197.277C258.438 202.2 240.403 201.486 223.955 195.243C207.507 189 193.54 177.568 184.17 162.678C174.8 147.788 170.537 130.25 172.025 112.72C173.514 95.1899 180.674 78.6221 192.42 65.5249H271.458C272.485 65.5273 273.47 65.9371 274.195 66.6644C274.921 67.3916 275.328 68.3769 275.328 69.4042Z" fill="#E6E6E6"/>
<path d="M260.424 85.7684H55.023C54.8094 85.7639 54.606 85.6758 54.4566 85.5231C54.3071 85.3704 54.2234 85.1653 54.2234 84.9516C54.2234 84.7379 54.3071 84.5327 54.4566 84.3801C54.606 84.2274 54.8094 84.1393 55.023 84.1348H260.424C260.638 84.1393 260.841 84.2274 260.991 84.3801C261.14 84.5327 261.224 84.7379 261.224 84.9516C261.224 85.1653 261.14 85.3704 260.991 85.5231C260.841 85.6758 260.638 85.7639 260.424 85.7684Z" fill="#CACACA"/>
<path d="M69.0047 79.9641C71.6485 79.9641 73.7917 77.7731 73.7917 75.0704C73.7917 72.3677 71.6485 70.1768 69.0047 70.1768C66.361 70.1768 64.2178 72.3677 64.2178 75.0704C64.2178 77.7731 66.361 79.9641 69.0047 79.9641Z" fill="#3F3D56"/>
<path d="M85.5416 79.9641C88.1854 79.9641 90.3286 77.7731 90.3286 75.0704C90.3286 72.3677 88.1854 70.1768 85.5416 70.1768C82.8978 70.1768 80.7546 72.3677 80.7546 75.0704C80.7546 77.7731 82.8978 79.9641 85.5416 79.9641Z" fill="#3F3D56"/>
<path d="M102.078 79.9641C104.722 79.9641 106.865 77.7731 106.865 75.0704C106.865 72.3677 104.722 70.1768 102.078 70.1768C99.4345 70.1768 97.2913 72.3677 97.2913 75.0704C97.2913 77.7731 99.4345 79.9641 102.078 79.9641Z" fill="#3F3D56"/>
<path d="M250.468 71.3896H238.721C238.488 71.3943 238.266 71.49 238.103 71.6563C237.94 71.8226 237.849 72.0462 237.849 72.2791C237.849 72.512 237.94 72.7356 238.103 72.9019C238.266 73.0682 238.488 73.1639 238.721 73.1685H250.468C250.701 73.1639 250.922 73.0682 251.086 72.9019C251.249 72.7356 251.34 72.512 251.34 72.2791C251.34 72.0462 251.249 71.8226 251.086 71.6563C250.922 71.49 250.701 71.3943 250.468 71.3896Z" fill="#3F3D56"/>
<path d="M250.468 74.7285H238.721C238.488 74.7332 238.266 74.8289 238.103 74.9952C237.94 75.1615 237.849 75.3851 237.849 75.618C237.849 75.8509 237.94 76.0745 238.103 76.2408C238.266 76.4071 238.488 76.5028 238.721 76.5074H250.468C250.701 76.5028 250.922 76.4071 251.086 76.2408C251.249 76.0745 251.34 75.8509 251.34 75.618C251.34 75.3851 251.249 75.1615 251.086 74.9952C250.922 74.8289 250.701 74.7332 250.468 74.7285Z" fill="#3F3D56"/>
<path d="M250.468 78.0625H238.721C238.488 78.0671 238.266 78.1629 238.103 78.3292C237.94 78.4955 237.849 78.7191 237.849 78.952C237.849 79.1848 237.94 79.4084 238.103 79.5747C238.266 79.741 238.488 79.8368 238.721 79.8414H250.468C250.701 79.8368 250.922 79.741 251.086 79.5747C251.249 79.4084 251.34 79.1848 251.34 78.952C251.34 78.7191 251.249 78.4955 251.086 78.3292C250.922 78.1629 250.701 78.0671 250.468 78.0625Z" fill="#3F3D56"/>
<path d="M159.528 41.7967C159.956 44.1484 154.22 48.1738 151.868 48.6019C150.739 48.8074 149.574 48.556 148.63 47.9028C147.686 47.2496 147.041 46.2483 146.835 45.119L146.834 45.1106C146.408 42.7585 148.226 41.9262 150.578 41.5004C152.93 41.0746 159.102 39.4447 159.528 41.7967Z" fill="white"/>
<path d="M84.3802 273.007C95.1344 273.007 103.852 264.289 103.852 253.535C103.852 242.781 95.1344 234.062 84.3802 234.062C73.626 234.062 64.908 242.781 64.908 253.535C64.908 264.289 73.626 273.007 84.3802 273.007Z" fill="#2F2E41"/>
<path d="M81.4222 268.817H75.5066V279.416H81.4222V268.817Z" fill="#2F2E41"/>
<path d="M93.2535 268.817H87.3379V279.416H93.2535V268.817Z" fill="#2F2E41"/>
<path d="M80.436 281.387C83.1586 281.387 85.3657 280.56 85.3657 279.539C85.3657 278.518 83.1586 277.69 80.436 277.69C77.7134 277.69 75.5063 278.518 75.5063 279.539C75.5063 280.56 77.7134 281.387 80.436 281.387Z" fill="#2F2E41"/>
<path d="M92.2676 281.141C94.9902 281.141 97.1973 280.313 97.1973 279.292C97.1973 278.271 94.9902 277.443 92.2676 277.443C89.545 277.443 87.3379 278.271 87.3379 279.292C87.3379 280.313 89.545 281.141 92.2676 281.141Z" fill="#2F2E41"/>
<path d="M65.4912 235.426C63.919 228.385 68.9449 221.269 76.7171 219.534C84.4893 217.799 92.0645 222.1 93.6368 229.141C95.2091 236.183 90.0582 238.78 82.286 240.515C74.5138 242.251 67.0635 242.467 65.4912 235.426Z" fill="#3F3D56"/>
<path d="M109.348 258.531C110.224 256.875 106.659 253.272 101.385 250.482C96.1114 247.692 91.1263 246.773 90.2505 248.429C89.3747 250.084 92.94 253.688 98.2137 256.477C103.487 259.267 108.472 260.187 109.348 258.531Z" fill="#2F2E41"/>
<path d="M57.2751 171.361C57.1733 171.92 57.1826 172.494 57.3025 173.049C57.4225 173.605 57.6507 174.131 57.9741 174.599C58.2975 175.066 58.7098 175.465 59.1875 175.773C59.6651 176.081 60.1988 176.292 60.758 176.394C61.3171 176.496 61.8909 176.486 62.4464 176.366C63.002 176.246 63.5285 176.018 63.9959 175.695C64.4633 175.371 64.8624 174.959 65.1704 174.481C65.4784 174.004 65.6894 173.47 65.7912 172.911L65.7927 172.903C66.2185 170.551 64.3999 169.718 62.0479 169.292C59.6958 168.867 57.7008 169.009 57.2751 171.361Z" fill="white"/>
<path d="M311.462 281.219L10.0011 281.358C9.93027 281.358 9.86009 281.345 9.7946 281.318C9.7291 281.291 9.66957 281.251 9.61942 281.201C9.56926 281.151 9.52947 281.092 9.50231 281.026C9.47516 280.961 9.46118 280.891 9.46118 280.82C9.46118 280.749 9.47516 280.679 9.50231 280.614C9.52947 280.548 9.56926 280.489 9.61942 280.439C9.66957 280.389 9.7291 280.349 9.7946 280.322C9.86009 280.295 9.93027 280.281 10.0011 280.282L311.462 280.143C311.604 280.143 311.741 280.2 311.841 280.301C311.942 280.402 311.998 280.538 311.998 280.681C311.998 280.823 311.942 280.96 311.841 281.061C311.741 281.162 311.604 281.219 311.462 281.219Z" fill="#CACACA"/>
</g>
<defs>
<clipPath id="clip0_1426_1876">
<rect width="312" height="281.387" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1.3 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 274 KiB

View File

@ -1,5 +0,0 @@
<svg width="26" height="9" viewBox="0 0 26 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.48909 1.58248C1.52909 1.78248 1.56909 2.00915 1.60909 2.26248C1.66242 2.50248 1.71576 2.75582 1.76909 3.02248C1.82242 3.27582 1.86909 3.53582 1.90909 3.80248C1.94909 4.06915 1.98242 4.32248 2.00909 4.56248C2.16909 4.21582 2.34242 3.84915 2.52909 3.46248C2.71576 3.07582 2.91576 2.72248 3.12909 2.40248C3.35576 2.06915 3.58909 1.79582 3.82909 1.58248C4.08242 1.36915 4.35576 1.26248 4.64909 1.26248C5.08909 1.26248 5.45576 1.42248 5.74909 1.74248C6.05576 2.06248 6.30909 2.46248 6.50909 2.94248C6.72242 3.40915 6.88909 3.90248 7.00909 4.42248C7.12909 4.94248 7.22909 5.40248 7.30909 5.80248C7.38909 6.16248 7.22909 6.42915 6.82909 6.60248C6.64242 6.69582 6.50242 6.70915 6.40909 6.64248C6.31576 6.57582 6.26242 6.50915 6.24909 6.44248C6.18243 6.28248 6.09576 6.00248 5.98909 5.60248C5.89576 5.20248 5.78242 4.79582 5.64909 4.38248C5.52909 3.96915 5.38909 3.60915 5.22909 3.30248C5.06909 2.99582 4.88909 2.85582 4.68909 2.88248C4.44909 2.89582 4.23576 3.07582 4.04909 3.42248C3.88909 3.70248 3.72242 4.01582 3.54909 4.36248C3.38909 4.69582 3.22909 5.04248 3.06909 5.40248C2.90909 5.74915 2.74909 6.10248 2.58909 6.46248C2.44242 6.80915 2.30242 7.12915 2.16909 7.42248C2.07576 7.51582 1.95576 7.58248 1.80909 7.62248C1.67576 7.64915 1.53576 7.63582 1.38909 7.58248C1.25576 7.54248 1.14909 7.47582 1.06909 7.38248C0.989091 7.28915 0.949091 7.19582 0.949091 7.10248C0.829091 6.06248 0.702424 5.11582 0.569091 4.26248C0.449091 3.40915 0.289091 2.53582 0.0890909 1.64248C-0.00424246 1.33582 -0.0242424 1.09582 0.0290909 0.922483C0.0957576 0.735816 0.295758 0.662483 0.629091 0.702483C1.09576 0.782483 1.38242 1.07582 1.48909 1.58248Z" fill="#00BCD4"/>
<path d="M13.5257 3.48248C13.0057 3.78915 12.4457 4.02915 11.8457 4.20248C11.2457 4.36248 10.599 4.44248 9.90565 4.44248C9.93232 4.90915 10.0657 5.28248 10.3057 5.56248C10.5457 5.82915 10.8457 5.98915 11.2057 6.04248C11.419 6.06915 11.6323 6.06248 11.8457 6.02248C12.0723 5.98248 12.279 5.92248 12.4657 5.84248C12.6657 5.74915 12.8457 5.64915 13.0057 5.54248C13.1657 5.43582 13.3057 5.32915 13.4257 5.22248C13.5457 5.11582 13.6723 5.04915 13.8057 5.02248C13.939 4.98248 14.039 4.97582 14.1057 5.00248C14.2923 5.06915 14.359 5.26915 14.3057 5.60248C14.0923 6.02915 13.7857 6.39582 13.3857 6.70248C12.9857 6.99582 12.539 7.18248 12.0457 7.26248C11.619 7.34248 11.179 7.32248 10.7257 7.20248C10.2723 7.08248 9.86565 6.84915 9.50565 6.50248C9.19899 6.19582 8.96565 5.83582 8.80565 5.42248C8.64565 5.00915 8.54565 4.58248 8.50565 4.14248C8.46565 3.72915 8.49899 3.33582 8.60565 2.96248C8.72565 2.58915 8.90565 2.26248 9.14565 1.98248C9.38565 1.68915 9.68565 1.44915 10.0457 1.26248C10.4057 1.07582 10.8257 0.969149 11.3057 0.942483C11.879 0.902483 12.399 1.00915 12.8657 1.26248C13.3323 1.51582 13.659 1.86915 13.8457 2.32248C13.9523 2.57582 13.979 2.79582 13.9257 2.98248C13.8857 3.16915 13.7523 3.33582 13.5257 3.48248ZM11.2257 2.12248C11.0923 2.14915 10.9457 2.19582 10.7857 2.26248C10.639 2.32915 10.499 2.41582 10.3657 2.52248C10.2457 2.61582 10.1323 2.72915 10.0257 2.86248C9.93232 2.98248 9.87899 3.12248 9.86565 3.28248C10.0923 3.28248 10.339 3.26248 10.6057 3.22248C10.8857 3.18248 11.1523 3.13582 11.4057 3.08248C11.6723 3.01582 11.9123 2.94248 12.1257 2.86248C12.3523 2.78248 12.539 2.69582 12.6857 2.60248C12.579 2.34915 12.379 2.19582 12.0857 2.14248C11.8057 2.07582 11.519 2.06915 11.2257 2.12248Z" fill="#00BCD4"/>
<path d="M22.8174 7.72248C22.7107 7.86915 22.5907 7.96915 22.4574 8.02248C22.324 8.06248 22.204 8.08248 22.0974 8.08248C21.9107 8.06915 21.7374 8.00915 21.5774 7.90248C21.4174 7.78248 21.3174 7.66248 21.2774 7.54248C21.1974 7.31582 21.1107 7.06248 21.0174 6.78248C20.924 6.50248 20.8307 6.22248 20.7374 5.94248C20.6574 5.64915 20.5707 5.36915 20.4774 5.10248C20.384 4.82248 20.2974 4.56915 20.2174 4.34248C19.9507 4.80915 19.6974 5.28248 19.4574 5.76248C19.2174 6.22915 18.9507 6.71582 18.6574 7.22248C18.524 7.42248 18.3707 7.56248 18.1974 7.64248C18.024 7.70915 17.8774 7.73582 17.7574 7.72248C17.584 7.70915 17.424 7.64248 17.2774 7.52248C17.144 7.40248 17.0374 7.28915 16.9574 7.18248C16.8107 6.94248 16.664 6.63582 16.5174 6.26248C16.3707 5.87582 16.2307 5.47582 16.0974 5.06248C15.9774 4.63582 15.864 4.21582 15.7574 3.80248C15.6507 3.37582 15.564 2.99582 15.4974 2.66248C15.4574 2.43582 15.4574 2.22248 15.4974 2.02248C15.5507 1.82248 15.6707 1.70915 15.8574 1.68248C16.084 1.66915 16.2907 1.74915 16.4774 1.92248C16.664 2.08248 16.7707 2.24248 16.7974 2.40248C16.8507 2.66915 16.9107 2.96248 16.9774 3.28248C17.0574 3.58915 17.1374 3.90248 17.2174 4.22248C17.3107 4.54248 17.3974 4.85582 17.4774 5.16248C17.5707 5.46915 17.664 5.74248 17.7574 5.98248C17.9574 5.66248 18.1774 5.29582 18.4174 4.88248C18.6707 4.45582 18.9107 4.04915 19.1374 3.66248C19.364 3.26248 19.5707 2.91582 19.7574 2.62248C19.944 2.32915 20.0907 2.14915 20.1974 2.08248C20.2774 2.02915 20.3907 2.03582 20.5374 2.10248C20.684 2.15582 20.7907 2.23582 20.8574 2.34248C21.1507 2.92915 21.3907 3.57582 21.5774 4.28248C21.7774 4.97582 21.9707 5.62248 22.1574 6.22248C22.344 5.98248 22.544 5.66915 22.7574 5.28248C22.9707 4.88248 23.1774 4.46248 23.3774 4.02248C23.5774 3.58248 23.764 3.14248 23.9374 2.70248C24.1107 2.26248 24.2507 1.86915 24.3574 1.52248C24.464 1.16248 24.6107 0.98915 24.7974 1.00248C25.0374 1.02915 25.244 1.10915 25.4174 1.24248C25.5907 1.37582 25.6574 1.51582 25.6174 1.66248C25.324 2.83582 24.944 3.91582 24.4774 4.90248C24.0107 5.87582 23.4574 6.81582 22.8174 7.72248Z" fill="#00BCD4"/>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,4 +0,0 @@
<svg width="136" height="50" viewBox="0 0 136 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.6296 2.54563C26.1341 2.29006 25.5718 2.15557 24.9996 2.15571C24.4273 2.15559 23.8651 2.29008 23.3694 2.54563L4.0434 12.512C3.54782 12.7676 3.13631 13.1351 2.85018 13.5778C2.56407 14.0205 2.41345 14.5226 2.41346 15.0338V34.9664C2.41345 35.4775 2.56407 35.9796 2.85018 36.4223C3.13629 36.8648 3.54782 37.2325 4.0434 37.488L23.3694 47.4544C23.865 47.7099 24.4272 47.8445 24.9995 47.8445C25.5718 47.8445 26.1339 47.7099 26.6296 47.4544L45.9556 37.488C46.4513 37.2325 46.8627 36.8648 47.1487 36.4223C47.4348 35.9796 47.5855 35.4775 47.5855 34.9664V15.0338C47.5855 14.5226 47.4348 14.0205 47.1487 13.5778C46.8627 13.1351 46.4513 12.7676 45.9556 12.512L26.6296 2.54563ZM22.163 0.67894C23.0256 0.234483 24.0038 0.00034737 24.9996 0H25.0006C25.9965 0.000378982 26.9748 0.234512 27.8373 0.67894L47.1633 10.6453C48.0246 11.0911 48.7399 11.7311 49.2379 12.5012C49.7356 13.2713 49.9985 14.1445 50 15.0338V34.9664C49.9982 35.8557 49.7353 36.7291 49.2374 37.4993C48.7394 38.2692 48.0238 38.9093 47.1623 39.3549L27.8363 49.3213C26.9738 49.766 25.9955 50 24.9996 50C24.0038 50 23.0255 49.766 22.163 49.3213L2.83692 39.3549C1.97551 38.9091 1.26015 38.2692 0.76232 37.499C0.264497 36.7291 0.00163253 35.8557 0 34.9664V15.0338C0.00158164 14.1445 0.264393 13.2713 0.762174 12.5011C1.25996 11.731 1.97528 11.0911 2.83667 10.6453L22.163 0.67894ZM11.8723 23.4917C12.1662 23.491 12.4574 23.5422 12.7289 23.6429C13.0004 23.7434 13.2469 23.891 13.4541 24.0771L16.4483 26.7515L22.5959 21.2604C23.2336 20.6918 24.0978 20.3725 24.9989 20.3725C25.8999 20.3725 26.7641 20.6918 27.4017 21.2604L35.9497 28.8955L38.5916 26.5358C39.0116 26.1616 39.5802 25.9514 40.1735 25.9514C40.7666 25.9514 41.3355 26.1616 41.7552 26.5358L45.2158 29.6293V16.0793C45.2158 15.6217 45.081 15.1723 44.8246 14.776C44.5684 14.3798 44.2001 14.0508 43.7565 13.822L26.4579 4.90115C26.0143 4.67234 25.5109 4.55188 24.9986 4.55188C24.4863 4.55188 23.983 4.67234 23.5392 4.90115L6.24044 13.822C5.79682 14.0508 5.42841 14.3798 5.17224 14.776C4.91608 15.1723 4.78119 15.6217 4.78109 16.0793V28.9969L10.2894 24.0769C10.4967 23.8906 10.7435 23.7429 11.0151 23.6427C11.2869 23.5422 11.5782 23.4908 11.8723 23.4917ZM4.78109 31.946V33.9219C4.78126 34.3415 4.89492 34.7548 5.11238 35.1267C5.32985 35.4989 5.64467 35.8182 6.03006 36.0583L14.798 28.2265L12.3672 26.0553C12.3021 25.9973 12.2249 25.9512 12.14 25.9198C12.055 25.8883 11.9639 25.8721 11.872 25.8721C11.78 25.8721 11.689 25.8883 11.604 25.9198C11.519 25.9512 11.4418 25.9973 11.3768 26.0553L4.78109 31.946ZM43.9675 36.058L37.6017 30.371L39.6778 28.5155C39.8091 28.3982 39.9873 28.3323 40.1732 28.3323C40.3589 28.3323 40.537 28.3982 40.6684 28.5155L45.2162 32.5777V33.9216C45.216 34.3412 45.1025 34.7545 44.8851 35.1265C44.6677 35.4984 44.353 35.818 43.9675 36.058ZM35.9517 31.8448L34.3014 30.371L25.7534 22.7361C25.5539 22.5581 25.2836 22.4583 25.0017 22.4583C24.7198 22.4583 24.4495 22.5581 24.25 22.7361L18.1024 28.2272L16.4518 29.7015L8.11768 37.1446L23.5415 45.0991C23.9852 45.3279 24.4885 45.4483 25.0008 45.4483C25.5131 45.4483 26.0166 45.3279 26.4602 45.0991L41.8839 37.1446L35.9517 31.8448Z" fill="#212121"/>
<path d="M81.892 13.448C82.452 14.036 82.732 14.736 82.732 15.548V26.804C82.732 27.616 82.452 28.316 81.892 28.904L80.548 30.248C79.988 30.808 79.302 31.088 78.49 31.088H71.602C70.482 31.088 69.922 31.648 69.922 32.768V39.74C69.922 40.86 69.362 41.42 68.242 41.42H67.78C66.66 41.42 66.1 40.86 66.1 39.74V12.944C66.1 11.824 66.66 11.264 67.78 11.264H78.49C79.302 11.264 79.988 11.544 80.548 12.104L81.892 13.448ZM78.952 16.766C78.952 15.646 78.392 15.086 77.272 15.086H71.644C70.524 15.086 69.964 15.646 69.964 16.766V25.586C69.964 26.706 70.524 27.266 71.644 27.266H77.23C78.35 27.266 78.91 26.706 78.91 25.586L78.952 16.766ZM100.176 31.886C100.176 33.006 99.6158 33.566 98.4958 33.566H92.0278C90.9078 33.566 90.3478 34.126 90.3478 35.246V35.834C90.3478 36.954 90.9078 37.514 92.0278 37.514H98.4958C99.6158 37.514 100.176 38.074 100.176 39.194V39.656C100.176 40.776 99.6158 41.336 98.4958 41.336H90.7678C89.9558 41.336 89.2698 41.042 88.7098 40.454L87.3658 39.11C86.8058 38.55 86.5258 37.864 86.5258 37.052V24.872C86.5258 24.06 86.8058 23.374 87.3658 22.814L88.7098 21.47C89.2698 20.91 89.9558 20.63 90.7678 20.63H95.9338C96.7458 20.63 97.4318 20.91 97.9918 21.47L99.3358 22.814C99.8958 23.374 100.176 24.06 100.176 24.872V31.886ZM90.3478 28.526C90.3478 29.646 90.9078 30.206 92.0278 30.206H94.6738C95.7938 30.206 96.3538 29.646 96.3538 28.526V26.09C96.3538 24.97 95.7938 24.41 94.6738 24.41H92.0278C90.9078 24.41 90.3478 24.97 90.3478 26.09V28.526ZM108.652 41.336C107.84 41.336 107.154 41.056 106.594 40.496L105.208 39.11C104.648 38.55 104.368 37.864 104.368 37.052V32.18C104.368 31.76 104.438 31.396 104.578 31.088C104.718 30.752 104.942 30.43 105.25 30.122L106.594 28.778C107.154 28.218 107.84 27.938 108.652 27.938H112.642C113.762 27.938 114.322 27.378 114.322 26.258V26.132C114.322 25.012 113.762 24.452 112.642 24.452H106.174C105.054 24.452 104.494 23.892 104.494 22.772V22.31C104.494 21.19 105.054 20.63 106.174 20.63H113.86C114.672 20.63 115.358 20.91 115.918 21.47L117.304 22.856C117.864 23.416 118.144 24.102 118.144 24.914V39.656C118.144 40.776 117.584 41.336 116.464 41.336H108.652ZM114.322 33.062C114.322 31.942 113.762 31.382 112.642 31.382H109.87C108.75 31.382 108.19 31.942 108.19 33.062V36.212C108.19 37.332 108.75 37.892 109.87 37.892H112.642C113.762 37.892 114.322 37.332 114.322 36.212V33.062ZM128.622 35.582C128.286 34.966 127.908 34.658 127.488 34.658C127.236 34.658 127.026 34.784 126.858 35.036C126.69 35.288 126.606 35.652 126.606 36.128V39.698C126.606 40.818 126.046 41.378 124.926 41.378H124.464C123.344 41.378 122.784 40.818 122.784 39.698V12.482C122.784 11.362 123.344 10.802 124.464 10.802H124.926C126.046 10.802 126.606 11.362 126.606 12.482V24.326C126.606 24.774 126.676 25.124 126.816 25.376C126.984 25.628 127.194 25.754 127.446 25.754C127.838 25.754 128.244 25.488 128.664 24.956L131.184 21.722C131.744 20.994 132.416 20.63 133.2 20.63H133.83C134.278 20.63 134.628 20.728 134.88 20.924C135.132 21.12 135.258 21.372 135.258 21.68C135.258 21.96 135.146 22.282 134.922 22.646L130.848 28.694C130.596 29.058 130.47 29.45 130.47 29.87C130.47 30.262 130.568 30.64 130.764 31.004L135.258 39.362C135.426 39.698 135.51 40.006 135.51 40.286C135.51 40.622 135.384 40.888 135.132 41.084C134.88 41.28 134.544 41.378 134.124 41.378H133.242C132.318 41.378 131.646 40.986 131.226 40.202L128.622 35.582Z" fill="#212121"/>
</svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1,52 +0,0 @@
<svg width="312" height="282" viewBox="0 0 312 282" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1426_1811)">
<path d="M59.502 192.103C59.1036 192.291 58.6568 192.353 58.2222 192.279C57.7877 192.205 57.3864 191.999 57.0727 191.69C56.759 191.38 56.548 190.981 56.4684 190.548C56.3889 190.114 56.4445 189.667 56.6277 189.266C56.5947 189.046 56.5709 188.888 56.5378 188.669C56.5019 188.633 56.4658 188.597 56.4296 188.562C52.7838 184.97 46.6074 187.587 46.6192 192.704C46.6297 197.246 46.204 201.978 47.4104 206.281C47.9445 208.183 48.8044 209.978 49.9519 211.585C42.7366 204.929 37.0368 196.799 33.239 187.747C32.2883 185.475 31.4655 183.151 30.7743 180.786C30.2093 178.847 29.7308 176.888 29.3387 174.907C27.2227 164.158 27.6868 153.06 30.6929 142.524C33.0496 139.583 34.4479 135.99 34.6996 132.229C34.7944 130.875 34.6928 129.515 34.3979 128.19C34.0724 128.38 33.7341 128.554 33.3992 128.72C33.2943 128.771 33.1838 128.824 33.0788 128.874L33.0392 128.893C32.6678 129.068 32.2537 129.132 31.8467 129.078C31.4398 129.023 31.0573 128.852 30.7454 128.585C30.4335 128.318 30.2054 127.966 30.0886 127.572C29.9718 127.179 29.9713 126.76 30.0871 126.366C30.1594 126.121 30.2317 125.876 30.3041 125.631C30.412 125.254 30.5279 124.881 30.6357 124.504C30.6506 124.466 30.6633 124.428 30.6737 124.389C30.7989 123.958 30.9265 123.534 31.0517 123.103C30.2702 122.566 29.3751 122.216 28.4361 122.081C25.1966 121.644 22.0472 124.201 21.1511 127.34C20.2494 130.482 21.2739 133.934 23.1579 136.601C24.7691 138.886 26.9534 140.685 29.243 142.308C29.1773 142.547 29.1037 142.784 29.0381 143.023C27.8445 147.419 27.0846 151.921 26.7693 156.465C25.4692 152.066 23.1431 148.037 19.9825 144.712C16.914 141.665 12.7525 139.757 8.89865 137.624C4.26952 135.063 -1.24463 139.329 0.249425 144.405C0.263894 144.454 0.278475 144.503 0.293172 144.552C0.756118 144.607 1.21658 144.678 1.67454 144.765C2.25113 144.878 2.7802 145.162 3.19244 145.581C3.60468 145.999 3.88086 146.533 3.98478 147.111C4.08871 147.689 4.01553 148.285 3.77485 148.821C3.53416 149.357 3.1372 149.808 2.63596 150.115L2.58463 150.146C3.28232 151.44 4.07742 152.68 4.96302 153.854C7.47099 157.116 10.6258 159.825 14.2297 161.81C17.8337 163.796 21.809 165.016 25.9064 165.393C26.1738 165.414 26.4355 165.437 26.7005 165.453C27.0496 171.611 28.198 177.699 30.1169 183.561C31.2597 187.015 32.68 190.371 34.3639 193.597L34.2974 193.485C32.0204 190.068 28.6338 187.541 24.7095 186.331C18.9028 184.587 12.2491 185.832 6.39276 184.926C3.5737 184.49 1.43907 187.468 2.91853 189.907C2.94214 189.946 2.96585 189.985 2.98968 190.024C3.80319 190.016 4.61637 190.06 5.4245 190.153C5.88746 190.208 6.34792 190.279 6.80586 190.367C7.38246 190.479 7.91155 190.764 8.3238 191.182C8.73604 191.601 9.01221 192.134 9.11614 192.713C9.22006 193.291 9.14689 193.887 8.9062 194.423C8.66551 194.959 8.26854 195.41 7.7673 195.716L7.71591 195.748C7.67877 195.77 7.64724 195.79 7.61015 195.812C9.98322 198.151 12.7413 200.065 15.7637 201.469C19.4737 203.147 23.4874 204.05 27.5587 204.122C31.6299 204.194 35.6729 203.433 39.4398 201.887L39.4455 201.884C42.3174 205.89 45.5977 209.586 49.2337 212.913L64.9845 206.331C64.9678 206.132 64.9431 205.931 64.9208 205.734C63.5012 206.435 62.0011 206.96 60.454 207.296C61.0233 205.374 61.5879 203.44 62.1573 201.518C62.1721 201.48 62.1848 201.442 62.1953 201.402C62.4814 200.421 62.7754 199.442 63.0615 198.461L63.0614 198.46C62.1529 196.197 60.9568 194.061 59.5027 192.103L59.502 192.103ZM26.6375 164.159L26.6411 164.145L26.6422 164.171L26.6375 164.159ZM36.2921 197.068L36.0292 196.82C35.9429 196.597 35.8509 196.377 35.7509 196.154C35.7249 196.092 35.6876 196.034 35.6617 195.972C35.8753 196.34 36.0832 196.711 36.3025 197.077L36.2921 197.068Z" fill="#F2F2F2"/>
<path d="M204.04 83.8617C203.453 86.2284 203.173 88.6608 203.207 91.099L203.207 91.1C203.85 91.8954 204.498 92.6847 205.141 93.4801C205.166 93.5122 205.192 93.5428 205.22 93.5719C206.487 95.126 207.754 96.6924 209.02 98.2465C207.463 98.5327 205.877 98.6272 204.296 98.5279C204.352 98.7176 204.407 98.9134 204.468 99.1031H221.539C223.61 94.631 225.212 89.9558 226.317 85.1527H226.323C230.395 85.1269 234.419 84.2697 238.148 82.6336C241.876 80.9975 245.232 78.6171 248.008 75.6383C250.255 73.1774 252.062 70.3481 253.349 67.2742C253.306 67.2681 253.27 67.2619 253.227 67.2558L253.167 67.2467C252.587 67.1571 252.047 66.8943 251.618 66.4926C251.189 66.0909 250.892 65.569 250.765 64.9954C250.638 64.4218 250.687 63.8232 250.906 63.2779C251.125 62.7327 251.503 62.2664 251.992 61.94C252.38 61.683 252.778 61.4399 253.184 61.2106C253.893 60.8125 254.627 60.459 255.381 60.1522C255.388 60.1071 255.394 60.0621 255.401 60.0171C255.826 57.1963 252.708 55.2719 250.275 56.7611C245.221 59.8546 238.602 61.2718 233.917 65.1204C230.762 67.7497 228.612 71.3869 227.829 75.418L227.81 75.5465C228.12 71.9214 228.137 68.2771 227.859 64.6493C227.369 58.5003 226.082 52.441 224.029 46.624C224.268 46.5077 224.5 46.3854 224.739 46.263C228.374 44.3349 231.571 41.6766 234.131 38.4547C236.69 35.2329 238.557 31.5171 239.613 27.5401C239.977 26.1156 240.233 24.6654 240.378 23.202L240.318 23.1929C239.738 23.1033 239.198 22.8405 238.769 22.4388C238.34 22.0371 238.043 21.5152 237.916 20.9416C237.789 20.368 237.838 19.7694 238.057 19.2242C238.276 18.679 238.654 18.2126 239.143 17.8862C239.531 17.6293 239.929 17.3862 240.335 17.1569C240.33 17.106 240.324 17.0551 240.319 17.0042C239.74 11.7453 233.007 9.93477 229.724 14.0833C226.99 17.5371 223.886 20.9018 222.23 24.8969C220.596 29.1837 220.003 33.7972 220.5 38.3579C218.457 34.2869 216.02 30.4259 213.224 26.8304C213.071 26.6346 212.912 26.4449 212.759 26.2491C214.245 23.869 215.567 21.3665 216.173 18.6376C216.882 15.4498 216.497 11.8704 214.453 9.31899C212.416 6.76754 208.524 5.62338 205.704 7.2754C204.889 7.76182 204.198 8.42977 203.685 9.22717C203.966 9.57594 204.248 9.91857 204.529 10.2673C204.554 10.2994 204.58 10.3301 204.609 10.3592C204.853 10.6651 205.104 10.9649 205.349 11.2708C205.51 11.4689 205.672 11.6671 205.833 11.8655C206.091 12.1843 206.253 12.5711 206.297 12.9794C206.341 13.3876 206.266 13.7999 206.081 14.1665C205.896 14.5332 205.609 14.8386 205.255 15.046C204.9 15.2534 204.494 15.3539 204.083 15.3355L204.04 15.3336C203.923 15.3274 203.801 15.3213 203.685 15.3152C203.311 15.2907 202.932 15.2601 202.559 15.2112C202.797 16.547 203.228 17.8413 203.838 19.0537C205.52 22.4265 208.196 25.2026 211.504 27.0078C218.34 35.5694 223.048 45.6305 225.24 56.3648C225.644 58.3411 225.958 60.3337 226.183 62.3427C226.457 64.7907 226.594 67.2522 226.593 69.7156C226.579 79.5322 224.455 89.2311 220.364 98.1547C220.803 96.2288 220.904 94.2414 220.664 92.2809C220.118 87.8455 217.9 83.6435 216.158 79.4486C214.196 74.7223 207.489 74.6897 205.509 79.409C205.49 79.4559 205.47 79.5027 205.451 79.5496C205.505 79.7651 205.544 79.9198 205.598 80.1353C205.922 80.4345 206.146 80.826 206.239 81.2567C206.333 81.6874 206.292 82.1365 206.122 82.5432C205.952 82.9498 205.661 83.2944 205.289 83.5302C204.916 83.766 204.48 83.8816 204.04 83.8613L204.04 83.8617ZM223.588 45.4186L223.579 45.3943L223.588 45.4064V45.4186ZM227.364 79.5053C227.425 79.0831 227.474 78.6609 227.529 78.2387C227.529 78.306 227.517 78.3733 227.517 78.4407C227.51 78.6854 227.51 78.924 227.517 79.1627L227.37 79.493L227.364 79.5053Z" fill="#F2F2F2"/>
<path d="M186.841 189.054H134.615C133.876 189.055 133.168 189.35 132.646 189.873C132.124 190.396 131.832 191.105 131.833 191.844V274.345H189.63V191.844C189.631 191.477 189.559 191.114 189.418 190.776C189.278 190.437 189.073 190.13 188.814 189.871C188.555 189.612 188.247 189.406 187.909 189.266C187.57 189.126 187.207 189.054 186.841 189.054ZM160.904 235.931C159.27 235.923 157.706 235.271 156.551 234.116C155.396 232.961 154.744 231.397 154.737 229.764V220.248C154.737 218.612 155.386 217.044 156.543 215.887C157.699 214.731 159.268 214.081 160.904 214.081C162.539 214.081 164.108 214.731 165.264 215.887C166.421 217.044 167.071 218.612 167.071 220.248V229.764C167.063 231.397 166.411 232.961 165.256 234.116C164.101 235.271 162.537 235.923 160.904 235.931Z" fill="#E6E6E6"/>
<path d="M131.653 271.707V279.666C131.654 280.079 131.818 280.474 132.11 280.766C132.402 281.057 132.797 281.222 133.209 281.222H188.254C188.666 281.22 189.06 281.056 189.352 280.764C189.643 280.473 189.808 280.078 189.81 279.666V271.707L131.653 271.707Z" fill="#CCCCCC"/>
<path d="M273.322 60.3008H50.0766C48.1585 60.3038 46.3199 61.0671 44.9637 62.4234C43.6074 63.7796 42.8441 65.6182 42.8411 67.5362V218.184C42.8429 220.102 43.6058 221.941 44.9623 223.298C46.3189 224.654 48.1582 225.417 50.0766 225.419H273.322C275.241 225.417 277.08 224.654 278.437 223.298C279.793 221.941 280.556 220.102 280.558 218.184V67.5362C280.555 65.6182 279.792 63.7796 278.435 62.4234C277.079 61.0671 275.241 60.3038 273.322 60.3008Z" fill="#E6E6E6"/>
<path d="M271.458 65.5249H51.9423C50.915 65.5273 49.9306 65.9371 49.2051 66.6644C48.4795 67.3916 48.0721 68.3769 48.072 69.4042V216.316C48.0732 217.342 48.4813 218.326 49.2069 219.052C49.9324 219.777 50.9162 220.185 51.9423 220.186H271.458C272.484 220.185 273.468 219.777 274.193 219.052C274.919 218.326 275.327 217.342 275.328 216.316V69.4042C275.328 68.3769 274.921 67.3916 274.195 66.6644C273.47 65.9371 272.485 65.5273 271.458 65.5249Z" fill="white"/>
<path d="M275.328 69.4042V197.277C258.438 202.2 240.403 201.486 223.955 195.243C207.507 189 193.54 177.568 184.17 162.678C174.8 147.788 170.537 130.25 172.025 112.72C173.514 95.1899 180.674 78.6221 192.42 65.5249H271.458C272.485 65.5273 273.47 65.9371 274.195 66.6644C274.921 67.3916 275.328 68.3769 275.328 69.4042Z" fill="#E6E6E6"/>
<path d="M260.424 85.7684H55.023C54.8094 85.7639 54.606 85.6758 54.4566 85.5231C54.3071 85.3704 54.2234 85.1653 54.2234 84.9516C54.2234 84.7379 54.3071 84.5327 54.4566 84.3801C54.606 84.2274 54.8094 84.1393 55.023 84.1348H260.424C260.638 84.1393 260.841 84.2274 260.991 84.3801C261.14 84.5327 261.224 84.7379 261.224 84.9516C261.224 85.1653 261.14 85.3704 260.991 85.5231C260.841 85.6758 260.638 85.7639 260.424 85.7684Z" fill="#CACACA"/>
<path d="M69.0047 79.9641C71.6485 79.9641 73.7917 77.7731 73.7917 75.0704C73.7917 72.3677 71.6485 70.1768 69.0047 70.1768C66.361 70.1768 64.2178 72.3677 64.2178 75.0704C64.2178 77.7731 66.361 79.9641 69.0047 79.9641Z" fill="#3F3D56"/>
<path d="M85.5416 79.9641C88.1854 79.9641 90.3286 77.7731 90.3286 75.0704C90.3286 72.3677 88.1854 70.1768 85.5416 70.1768C82.8978 70.1768 80.7546 72.3677 80.7546 75.0704C80.7546 77.7731 82.8978 79.9641 85.5416 79.9641Z" fill="#3F3D56"/>
<path d="M102.078 79.9641C104.722 79.9641 106.865 77.7731 106.865 75.0704C106.865 72.3677 104.722 70.1768 102.078 70.1768C99.4345 70.1768 97.2913 72.3677 97.2913 75.0704C97.2913 77.7731 99.4345 79.9641 102.078 79.9641Z" fill="#3F3D56"/>
<path d="M250.468 71.3896H238.721C238.488 71.3943 238.266 71.49 238.103 71.6563C237.94 71.8226 237.849 72.0462 237.849 72.2791C237.849 72.512 237.94 72.7356 238.103 72.9019C238.266 73.0682 238.488 73.1639 238.721 73.1685H250.468C250.701 73.1639 250.922 73.0682 251.086 72.9019C251.249 72.7356 251.34 72.512 251.34 72.2791C251.34 72.0462 251.249 71.8226 251.086 71.6563C250.922 71.49 250.701 71.3943 250.468 71.3896Z" fill="#3F3D56"/>
<path d="M250.468 74.7285H238.721C238.488 74.7332 238.266 74.8289 238.103 74.9952C237.94 75.1615 237.849 75.3851 237.849 75.618C237.849 75.8509 237.94 76.0745 238.103 76.2408C238.266 76.4071 238.488 76.5028 238.721 76.5074H250.468C250.701 76.5028 250.922 76.4071 251.086 76.2408C251.249 76.0745 251.34 75.8509 251.34 75.618C251.34 75.3851 251.249 75.1615 251.086 74.9952C250.922 74.8289 250.701 74.7332 250.468 74.7285Z" fill="#3F3D56"/>
<path d="M250.468 78.0625H238.721C238.488 78.0671 238.266 78.1629 238.103 78.3292C237.94 78.4955 237.849 78.7191 237.849 78.952C237.849 79.1848 237.94 79.4084 238.103 79.5747C238.266 79.741 238.488 79.8368 238.721 79.8414H250.468C250.701 79.8368 250.922 79.741 251.086 79.5747C251.249 79.4084 251.34 79.1848 251.34 78.952C251.34 78.7191 251.249 78.4955 251.086 78.3292C250.922 78.1629 250.701 78.0671 250.468 78.0625Z" fill="#3F3D56"/>
<path d="M159.528 41.7967C159.956 44.1484 154.22 48.1738 151.868 48.6019C150.739 48.8074 149.574 48.556 148.63 47.9028C147.686 47.2496 147.041 46.2483 146.835 45.119L146.834 45.1106C146.408 42.7585 148.226 41.9262 150.578 41.5004C152.93 41.0746 159.102 39.4447 159.528 41.7967Z" fill="white"/>
<path d="M228.504 178.2C231.781 173.937 233.352 169.647 232.014 168.618C230.676 167.59 226.934 170.212 223.657 174.475C220.38 178.738 218.809 183.028 220.147 184.057C221.486 185.086 225.227 182.464 228.504 178.2Z" fill="#2F2E41"/>
<path d="M246.339 192.429C257.094 192.429 265.812 183.711 265.812 172.957C265.812 162.203 257.094 153.485 246.339 153.485C235.585 153.485 226.867 162.203 226.867 172.957C226.867 183.711 235.585 192.429 246.339 192.429Z" fill="#2F2E41"/>
<path d="M255.212 188.239H249.297V198.838H255.212V188.239Z" fill="#2F2E41"/>
<path d="M243.381 188.239H237.466V198.838H243.381V188.239Z" fill="#2F2E41"/>
<path d="M250.283 200.81C253.006 200.81 255.213 199.982 255.213 198.961C255.213 197.94 253.006 197.112 250.283 197.112C247.56 197.112 245.353 197.94 245.353 198.961C245.353 199.982 247.56 200.81 250.283 200.81Z" fill="#2F2E41"/>
<path d="M238.451 200.563C241.174 200.563 243.381 199.735 243.381 198.714C243.381 197.693 241.174 196.866 238.451 196.866C235.729 196.866 233.522 197.693 233.522 198.714C233.522 199.735 235.729 200.563 238.451 200.563Z" fill="#2F2E41"/>
<path d="M245.846 174.682C249.522 174.682 252.501 171.703 252.501 168.027C252.501 164.352 249.522 161.372 245.846 161.372C242.171 161.372 239.191 164.352 239.191 168.027C239.191 171.703 242.171 174.682 245.846 174.682Z" fill="white"/>
<path d="M245.394 173.41C246.619 173.41 247.612 172.417 247.612 171.192C247.612 169.967 246.619 168.974 245.394 168.974C244.169 168.974 243.176 169.967 243.176 171.192C243.176 172.417 244.169 173.41 245.394 173.41Z" fill="#3F3D56"/>
<path d="M265.228 154.848C266.8 147.807 261.774 140.692 254.002 138.956C246.23 137.221 238.655 141.522 237.082 148.564C235.51 155.605 240.661 158.202 248.433 159.938C256.205 161.673 263.655 161.89 265.228 154.848Z" fill="#2196F3"/>
<path d="M269.355 189.863C270.874 189.127 270.203 184.607 267.857 179.769C265.51 174.931 262.377 171.606 260.858 172.343C259.339 173.079 260.01 177.598 262.357 182.437C264.703 187.275 267.836 190.6 269.355 189.863Z" fill="#2F2E41"/>
<path d="M255.904 179.982C255.904 181.887 250.997 185.651 245.552 185.651C240.106 185.651 235.001 180.285 235.001 178.379C235.001 176.474 240.106 178.749 245.552 178.749C250.997 178.749 255.904 178.076 255.904 179.982Z" fill="white"/>
<path d="M231.741 257.988C242.495 257.988 251.213 249.27 251.213 238.516C251.213 227.762 242.495 219.044 231.741 219.044C220.987 219.044 212.269 227.762 212.269 238.516C212.269 249.27 220.987 257.988 231.741 257.988Z" fill="#2F2E41"/>
<path d="M228.783 253.798H222.867V264.397H228.783V253.798Z" fill="#2F2E41"/>
<path d="M240.614 253.798H234.698V264.397H240.614V253.798Z" fill="#2F2E41"/>
<path d="M231.803 267.982C232.239 267.058 230.596 265.368 228.135 264.205C225.673 263.042 223.323 262.849 222.887 263.772C222.452 264.695 224.094 266.386 226.556 267.548C229.018 268.711 231.367 268.905 231.803 267.982Z" fill="#2F2E41"/>
<path d="M243.745 267.482C244.128 266.536 242.394 264.94 239.87 263.917C237.347 262.895 234.991 262.833 234.607 263.779C234.224 264.725 235.958 266.321 238.482 267.344C241.005 268.366 243.361 268.428 243.745 267.482Z" fill="#2F2E41"/>
<path d="M212.852 220.408C211.28 213.366 216.306 206.251 224.078 204.516C231.85 202.78 239.426 207.082 240.998 214.123C242.57 221.165 237.419 223.762 229.647 225.497C221.875 227.233 214.425 227.449 212.852 220.408Z" fill="#2196F3"/>
<path d="M254.888 230.524C256.832 224.883 256.972 219.816 255.201 219.206C253.431 218.595 250.419 222.673 248.475 228.314C246.531 233.954 246.391 239.022 248.162 239.632C249.933 240.242 252.944 236.164 254.888 230.524Z" fill="#2F2E41"/>
<path d="M216.046 236.608C217.371 235.284 215.026 230.79 210.809 226.57C206.592 222.349 202.099 220.001 200.774 221.325C199.45 222.649 201.794 227.143 206.011 231.364C210.228 235.584 214.721 237.932 216.046 236.608Z" fill="#2F2E41"/>
<path d="M84.3802 273.007C95.1344 273.007 103.852 264.289 103.852 253.535C103.852 242.781 95.1344 234.062 84.3802 234.062C73.626 234.062 64.908 242.781 64.908 253.535C64.908 264.289 73.626 273.007 84.3802 273.007Z" fill="#2F2E41"/>
<path d="M81.4222 268.817H75.5066V279.416H81.4222V268.817Z" fill="#2F2E41"/>
<path d="M93.2535 268.817H87.3379V279.416H93.2535V268.817Z" fill="#2F2E41"/>
<path d="M80.436 281.387C83.1586 281.387 85.3657 280.56 85.3657 279.539C85.3657 278.518 83.1586 277.69 80.436 277.69C77.7134 277.69 75.5063 278.518 75.5063 279.539C75.5063 280.56 77.7134 281.387 80.436 281.387Z" fill="#2F2E41"/>
<path d="M92.2676 281.141C94.9902 281.141 97.1973 280.313 97.1973 279.292C97.1973 278.271 94.9902 277.443 92.2676 277.443C89.545 277.443 87.3379 278.271 87.3379 279.292C87.3379 280.313 89.545 281.141 92.2676 281.141Z" fill="#2F2E41"/>
<path d="M65.4912 235.426C63.919 228.385 68.9449 221.269 76.7171 219.534C84.4893 217.799 92.0645 222.1 93.6368 229.141C95.2091 236.183 90.0582 238.78 82.286 240.515C74.5138 242.251 67.0635 242.467 65.4912 235.426Z" fill="#3F3D56"/>
<path d="M109.348 258.531C110.224 256.875 106.659 253.272 101.385 250.482C96.1114 247.692 91.1263 246.773 90.2505 248.429C89.3747 250.084 92.94 253.688 98.2137 256.477C103.487 259.267 108.472 260.187 109.348 258.531Z" fill="#2F2E41"/>
<path d="M57.2751 171.361C57.1733 171.92 57.1826 172.494 57.3025 173.049C57.4225 173.605 57.6507 174.131 57.9741 174.599C58.2975 175.066 58.7098 175.465 59.1875 175.773C59.6651 176.081 60.1988 176.292 60.758 176.394C61.3171 176.496 61.8909 176.486 62.4464 176.366C63.002 176.246 63.5285 176.018 63.9959 175.695C64.4633 175.371 64.8624 174.959 65.1704 174.481C65.4784 174.004 65.6894 173.47 65.7912 172.911L65.7927 172.903C66.2185 170.551 64.3999 169.718 62.0479 169.292C59.6958 168.867 57.7008 169.009 57.2751 171.361Z" fill="white"/>
<path d="M311.462 281.219L10.0011 281.358C9.93027 281.358 9.86009 281.345 9.7946 281.318C9.7291 281.291 9.66957 281.251 9.61942 281.201C9.56926 281.151 9.52947 281.092 9.50231 281.026C9.47516 280.961 9.46118 280.891 9.46118 280.82C9.46118 280.749 9.47516 280.679 9.50231 280.614C9.52947 280.548 9.56926 280.489 9.61942 280.439C9.66957 280.389 9.7291 280.349 9.7946 280.322C9.86009 280.295 9.93027 280.281 10.0011 280.282L311.462 280.143C311.604 280.143 311.741 280.2 311.841 280.301C311.942 280.402 311.998 280.538 311.998 280.681C311.998 280.823 311.942 280.96 311.841 281.061C311.741 281.162 311.604 281.219 311.462 281.219Z" fill="#CACACA"/>
</g>
<defs>
<clipPath id="clip0_1426_1811">
<rect width="312" height="281.387" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

View File

@ -1,9 +0,0 @@
<svg width="54" height="40" viewBox="0 0 54 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.1637 19.2467C17.1566 19.4033 17.1529 19.561 17.1529 19.7194C17.1529 25.3503 21.7203 29.915 27.3546 29.915C32.9887 29.915 37.5561 25.3503 37.5561 19.7194C37.5561 19.5572 37.5524 19.3959 37.5449 19.2355C38.5617 19.0801 39.5759 18.9013 40.5867 18.6994L40.6926 18.6782C40.7191 19.0218 40.7326 19.369 40.7326 19.7194C40.7326 27.1036 34.743 33.0896 27.3546 33.0896C19.966 33.0896 13.9765 27.1036 13.9765 19.7194C13.9765 19.374 13.9896 19.0316 14.0154 18.6927L14.0486 18.6994C15.0837 18.9062 16.1223 19.0886 17.1637 19.2467ZM33.3284 11.4538C31.6493 10.2396 29.5855 9.52381 27.3546 9.52381C25.1195 9.52381 23.0524 10.2421 21.3717 11.4603C20.0078 11.3232 18.6475 11.1387 17.2933 10.907C19.7453 8.11308 23.3438 6.34921 27.3546 6.34921C31.36 6.34921 34.9543 8.10844 37.4061 10.896C36.0521 11.1292 34.692 11.3152 33.3284 11.4538ZM43.826 18.0518C43.881 18.6003 43.9091 19.1566 43.9091 19.7194C43.9091 28.8568 36.4973 36.2642 27.3546 36.2642C18.2117 36.2642 10.8 28.8568 10.8 19.7194C10.8 19.1615 10.8276 18.61 10.8816 18.0663L7.75383 17.4411C7.66775 18.1886 7.62354 18.9488 7.62354 19.7194C7.62354 30.6102 16.4574 39.4388 27.3546 39.4388C38.2517 39.4388 47.0855 30.6102 47.0855 19.7194C47.0855 18.9439 47.0407 18.1789 46.9536 17.4267L43.826 18.0518ZM44.2613 9.54743L40.9084 10.2176C37.9134 5.95821 32.9593 3.1746 27.3546 3.1746C21.7442 3.1746 16.7856 5.96385 13.7915 10.2305L10.4399 9.56057C13.892 3.83178 20.1756 0 27.3546 0C34.5281 0 40.8075 3.82591 44.2613 9.54743Z" fill="#2196F3"/>
<mask id="mask0_1413_1551" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="8" width="54" height="11">
<path d="M27 18.3652C10.5114 19.1944 0 8.88892 0 8.88892C0 8.88892 16.5176 14.5866 27 14.5866C37.4824 14.5866 54 8.88892 54 8.88892C54 8.88892 43.4886 17.5361 27 18.3652Z" fill="white"/>
</mask>
<g mask="url(#mask0_1413_1551)">
<path d="M-4.673e-05 8.88887L3.73084 -1.91434L-8.00806 17.0473L-4.673e-05 8.88887ZM27 18.3652L26.4253 6.95109L27 18.3652ZM54 8.88887L61.2673 17.7127L50.2691 -1.91434L54 8.88887ZM-4.673e-05 8.88887C-8.00806 17.0473 -8.00469 17.0505 -8.00132 17.0538C-8.00018 17.055 -7.99675 17.0583 -7.9944 17.0607C-7.98963 17.0653 -7.98474 17.0701 -7.97966 17.075C-7.96949 17.0849 -7.95863 17.0955 -7.94707 17.1066C-7.92401 17.129 -7.89809 17.1539 -7.86944 17.1812C-7.8122 17.236 -7.74377 17.3005 -7.66436 17.3743C-7.50567 17.5218 -7.30269 17.7063 -7.05645 17.9221C-6.56467 18.3532 -5.89662 18.9125 -5.06089 19.5534C-3.39603 20.83 -1.02575 22.4605 1.98012 24.0457C7.97874 27.2091 16.7723 30.3226 27.5746 29.7793L26.4253 6.95109C20.7391 7.23699 16.0326 5.61231 12.6534 3.83024C10.9703 2.94267 9.68222 2.04866 8.86091 1.41888C8.45356 1.10653 8.17155 0.867278 8.0241 0.738027C7.95072 0.673671 7.91178 0.637576 7.90841 0.634492C7.90682 0.63298 7.91419 0.639805 7.93071 0.65557C7.93897 0.663455 7.94952 0.673589 7.96235 0.686039C7.96883 0.692262 7.97582 0.699075 7.98338 0.706471C7.98719 0.710167 7.99113 0.714014 7.99526 0.718014C7.99729 0.720008 8.00047 0.723119 8.00148 0.724116C8.00466 0.727265 8.00796 0.730446 -4.673e-05 8.88887ZM27.5746 29.7793C37.6904 29.2706 45.9416 26.3684 51.6602 23.6054C54.5296 22.2191 56.8064 20.8465 58.4186 19.7784C59.2265 19.2431 59.873 18.7805 60.3494 18.4257C60.5878 18.2482 60.7841 18.0971 60.9374 17.977C61.014 17.9169 61.0799 17.8645 61.1349 17.8203C61.1624 17.7981 61.1872 17.7781 61.2093 17.7602C61.2203 17.7512 61.2307 17.7427 61.2403 17.7348C61.2452 17.7308 61.2499 17.727 61.2544 17.7233C61.2566 17.7215 61.2598 17.7188 61.261 17.7179C61.2642 17.7153 61.2673 17.7127 54 8.88887C46.7326 0.0650536 46.7357 0.0625219 46.7387 0.0600241C46.7397 0.0592345 46.7427 0.0567658 46.7446 0.0551857C46.7485 0.0520238 46.7521 0.0489887 46.7557 0.0460799C46.7628 0.0402623 46.7694 0.0349487 46.7753 0.0301318C46.7871 0.0204986 46.7966 0.0128495 46.8037 0.00712562C46.818 -0.00431848 46.8228 -0.00808311 46.8184 -0.00463784C46.8096 0.00228345 46.764 0.0378652 46.6828 0.0983779C46.5199 0.219675 46.2165 0.439161 45.7812 0.727519C44.9072 1.30663 43.5257 2.14765 41.7061 3.02677C38.0469 4.79468 32.7981 6.63058 26.4253 6.95109L27.5746 29.7793ZM54 8.88887C50.2691 -1.91433 50.27 -1.91467 50.271 -1.91498C50.2712 -1.91506 50.272 -1.91535 50.2724 -1.9155C50.2733 -1.91581 50.274 -1.91602 50.2743 -1.91616C50.2752 -1.91643 50.275 -1.91636 50.2738 -1.91595C50.2714 -1.91515 50.2652 -1.91302 50.2552 -1.9096C50.2351 -1.90276 50.1999 -1.89078 50.1503 -1.874C50.0509 -1.84043 49.8938 -1.78773 49.6844 -1.71863C49.2652 -1.58031 48.6387 -1.377 47.8481 -1.13035C46.2609 -0.635237 44.0427 0.0249875 41.5325 0.6823C36.215 2.07471 30.6736 3.15796 27 3.15796V26.0151C33.8087 26.0151 41.7672 24.2495 47.3292 22.7931C50.2586 22.026 52.825 21.2618 54.6625 20.6886C55.5842 20.4011 56.33 20.1593 56.8551 19.986C57.1178 19.8993 57.3258 19.8296 57.4735 19.7797C57.5474 19.7548 57.6062 19.7348 57.6493 19.72C57.6709 19.7127 57.6885 19.7066 57.7021 19.7019C57.7089 19.6996 57.7147 19.6976 57.7195 19.696C57.7219 19.6952 57.7241 19.6944 57.726 19.6938C57.7269 19.6934 57.7281 19.693 57.7286 19.6929C57.7298 19.6924 57.7309 19.692 54 8.88887ZM27 3.15796C23.3263 3.15796 17.7849 2.07471 12.4674 0.6823C9.95717 0.0249875 7.73904 -0.635237 6.15184 -1.13035C5.36118 -1.377 4.73467 -1.58031 4.3155 -1.71863C4.10609 -1.78773 3.94899 -1.84043 3.84961 -1.874C3.79994 -1.89078 3.76474 -1.90276 3.74471 -1.9096C3.73469 -1.91302 3.72848 -1.91515 3.72613 -1.91595C3.72496 -1.91636 3.72476 -1.91643 3.72554 -1.91616C3.72593 -1.91602 3.72657 -1.91581 3.72745 -1.9155C3.72789 -1.91535 3.72874 -1.91506 3.72896 -1.91498C3.72987 -1.91467 3.73084 -1.91433 -4.673e-05 8.88887C-3.73093 19.692 -3.72983 19.6924 -3.72868 19.6929C-3.72821 19.693 -3.72698 19.6934 -3.72603 19.6938C-3.72415 19.6944 -3.72201 19.6952 -3.71961 19.696C-3.71482 19.6976 -3.70901 19.6996 -3.7022 19.7019C-3.68858 19.7066 -3.67095 19.7127 -3.6494 19.72C-3.60629 19.7348 -3.54745 19.7548 -3.47359 19.7797C-3.32589 19.8296 -3.11788 19.8993 -2.85516 19.986C-2.33008 20.1593 -1.58425 20.4011 -0.662589 20.6886C1.17485 21.2618 3.74125 22.026 6.67073 22.7931C12.2327 24.2495 20.1913 26.0151 27 26.0151V3.15796Z" fill="#2196F3"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

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