first commit
@@ -0,0 +1,2 @@
|
||||
# DO NOT MODIFY THIS FILE. THIS FILE IS FOR THE DOCKER BUILD
|
||||
NEXT_PUBLIC_API_BASE_URL=APP_NEXT_PUBLIC_API_BASE_URL
|
||||
@@ -0,0 +1 @@
|
||||
NEXT_PUBLIC_API_BASE_URL=http://localhost:4000
|
||||
@@ -0,0 +1,2 @@
|
||||
api.type.ts
|
||||
next-env.d.ts
|
||||
@@ -0,0 +1,70 @@
|
||||
# ABC User Feedback Frontend
|
||||
|
||||
ABC User Feedback Frontend is the web browser application that provides the beautiful admin UI. The client is built with NextJS, React Query, React Hook Form, Tailwind css, MUI, and many more.
|
||||
|
||||
## Setup
|
||||
|
||||
ABC User Feedback is using a mono-repo with multiple packages. To initialize all the packages on a local development environment, follow the [Getting Started With Local Development](/README.md#getting-started-with-local-development) section to do that in a few quick steps.
|
||||
|
||||
## Useful Targets
|
||||
|
||||
You can find a full list of targets in the [package.json](./package.json) file.
|
||||
|
||||
### `dev`
|
||||
|
||||
Runs the app in development mode.
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
||||
|
||||
The page will reload if you make edits.<br />
|
||||
You will also see any lint errors in the console.
|
||||
|
||||
```
|
||||
pnpm dev
|
||||
```
|
||||
|
||||
> **Note**
|
||||
> In order to run web properly, ui packages need to be built by the
|
||||
> `pnpm build:ui` command in root directory or `pnpm turbo run @ufb/ui#build` command in any directory.
|
||||
|
||||
### `generate-api-type`
|
||||
|
||||
Generate api type using open api specification. This command can run after running on server. The type file is generated in `src/types/api.type.ts`
|
||||
|
||||
```
|
||||
pnpm generate-api-type
|
||||
```
|
||||
|
||||
### `lint`
|
||||
|
||||
Performs a linting check using ESLint.
|
||||
|
||||
```
|
||||
pnpm lint
|
||||
```
|
||||
|
||||
### `format`
|
||||
|
||||
Performs a formatting code using Prettier.
|
||||
|
||||
```
|
||||
pnpm format
|
||||
```
|
||||
|
||||
### `build`
|
||||
|
||||
Builds the app. The distributable is expored to the `.next` folder.
|
||||
|
||||
```
|
||||
pnpm build
|
||||
```
|
||||
|
||||
## Environment Variables
|
||||
|
||||
| Environment | Description | Default Value |
|
||||
| ------------------------ | ------------------------------------------------------- | --------------------- |
|
||||
| NEXT_PUBLIC_API_BASE_URL | api base url in client side (ex. http://localhost:4000) | http://localhost:4000 |
|
||||
|
||||
## Learn More
|
||||
|
||||
To learn NextJS, check out the [NextJS documentation](https://nextjs.org/).
|
||||
@@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
echo "NEXT_PUBLIC_API_BASE_URL: $NEXT_PUBLIC_API_BASE_URL"
|
||||
|
||||
echo "Check that we have NEXT_PUBLIC_API_BASE_URL"
|
||||
|
||||
test -n "$NEXT_PUBLIC_API_BASE_URL"
|
||||
|
||||
find /app/apps/web/.next \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i "s#APP_NEXT_PUBLIC_API_BASE_URL#$NEXT_PUBLIC_API_BASE_URL#g"
|
||||
|
||||
echo "Starting Nextjs"
|
||||
exec "$@"
|
||||
@@ -0,0 +1,13 @@
|
||||
import baseConfig from '@ufb/eslint-config/base';
|
||||
import nextjsConfig from '@ufb/eslint-config/nextjs';
|
||||
import reactConfig from '@ufb/eslint-config/react';
|
||||
|
||||
/** @type {import('typescript-eslint').Config} */
|
||||
export default [
|
||||
{
|
||||
ignores: ['.next/**', 'jest.setup.ts', 'next-env.d.ts', '**/api.type.ts'],
|
||||
},
|
||||
...baseConfig,
|
||||
...reactConfig,
|
||||
...nextjsConfig,
|
||||
];
|
||||
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import nextJest from 'next/jest.js';
|
||||
import type { Config } from 'jest';
|
||||
|
||||
const createJestConfig = nextJest({ dir: './' });
|
||||
|
||||
const jestConfig = {
|
||||
coverageProvider: 'v8',
|
||||
testEnvironment: 'jest-fixed-jsdom',
|
||||
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
|
||||
moduleNameMapper: {
|
||||
'^@/(.*)$': '<rootDir>/src/$1',
|
||||
},
|
||||
extensionsToTreatAsEsm: ['.ts'],
|
||||
transform: {
|
||||
'^.+\\.(t|j)sx?$': '@swc/jest',
|
||||
},
|
||||
collectCoverageFrom: [
|
||||
'src/**/*.{ts,tsx}',
|
||||
'!src/**/*.d.ts',
|
||||
'!src/**/index.ts',
|
||||
],
|
||||
} satisfies Config;
|
||||
|
||||
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
|
||||
export default createJestConfig(jestConfig);
|
||||
@@ -0,0 +1,55 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import { faker } from '@faker-js/faker';
|
||||
import nextRouterMock from 'next-router-mock';
|
||||
|
||||
import '@testing-library/jest-dom';
|
||||
|
||||
Object.defineProperty(window, 'matchMedia', {
|
||||
writable: true,
|
||||
value: jest.fn().mockImplementation((query) => ({
|
||||
matches: false,
|
||||
media: query,
|
||||
onchange: null,
|
||||
addListener: jest.fn(), // deprecated
|
||||
removeListener: jest.fn(), // deprecated
|
||||
addEventListener: jest.fn(),
|
||||
removeEventListener: jest.fn(),
|
||||
dispatchEvent: jest.fn(),
|
||||
})),
|
||||
});
|
||||
// headless-ui
|
||||
global.ResizeObserver = require('resize-observer-polyfill');
|
||||
|
||||
jest.mock('next-i18next', () => ({
|
||||
useTranslation: () => ({ t: (str: string) => str }),
|
||||
}));
|
||||
|
||||
afterEach(() => jest.resetAllMocks());
|
||||
|
||||
jest.mock('next/router', () => ({
|
||||
useRouter: () => nextRouterMock,
|
||||
}));
|
||||
|
||||
jest.mock('@t3-oss/env-nextjs', () => ({
|
||||
createEnv: () => ({
|
||||
NEXT_PUBLIC_API_BASE_URL: process.env.NEXT_PUBLIC_API_BASE_URL,
|
||||
NODE_ENV: process.env.NODE_ENV,
|
||||
}),
|
||||
}));
|
||||
|
||||
faker.seed(100);
|
||||
@@ -0,0 +1,6 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
import "./.next/dev/types/routes.d.ts";
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
|
||||
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
/** @type {import('next-i18next').UserConfig} */
|
||||
const i18nConfig = {
|
||||
i18n: {
|
||||
defaultLocale: 'en',
|
||||
locales: ['en', 'zh', 'de', 'ja', 'ko'],
|
||||
},
|
||||
fallbackLng: {
|
||||
default: ['en'],
|
||||
},
|
||||
nonExplicitSupportedLngs: true,
|
||||
serializeConfig: false,
|
||||
};
|
||||
|
||||
export default i18nConfig;
|
||||
@@ -0,0 +1,32 @@
|
||||
import { fileURLToPath } from 'url';
|
||||
import createJiti from 'jiti';
|
||||
|
||||
import * as i18nConfig from './next-i18next.config.js';
|
||||
|
||||
createJiti(fileURLToPath(import.meta.url))('./src/env');
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
i18n: i18nConfig.default.i18n,
|
||||
output: 'standalone',
|
||||
typescript: { ignoreBuildErrors: true },
|
||||
transpilePackages: ['@ufb/react'],
|
||||
compiler: { removeConsole: process.env.NODE_ENV === 'production' },
|
||||
images: { remotePatterns: [{ hostname: '*' }] },
|
||||
devIndicators: false,
|
||||
async rewrites() {
|
||||
const internalApiBaseUrl =
|
||||
process.env.INTERNAL_API_BASE_URL ?? 'http://172.26.0.2:4000';
|
||||
|
||||
return {
|
||||
fallback: [
|
||||
{
|
||||
source: '/api/:path*',
|
||||
destination: `${internalApiBaseUrl}/api/:path*`,
|
||||
},
|
||||
],
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"name": "web",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "next build --turbopack",
|
||||
"clean": "git clean -xdf .next .turbo node_modules coverage .swc .cache",
|
||||
"dev": "next dev --turbopack",
|
||||
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path .prettierignore",
|
||||
"format:fix": "prettier --write --list-different \"./src/**/*.{js,cjs,mjs,ts,tsx,md,json}\"",
|
||||
"generate-api-type": "openapi-typescript http://0.0.0.0:4000/admin-docs-json --output src/shared/types/api.type.ts --default-non-nullable=false --empty-objects-unknown",
|
||||
"lint": "eslint",
|
||||
"start": "next start",
|
||||
"test": "SKIP_ENV_VALIDATION=1 jest --passWithNoTests",
|
||||
"test:snapshot": "jest -u",
|
||||
"test:ci": "jest --ci --passWithNoTests",
|
||||
"test:watch": "SKIP_ENV_VALIDATION=1 jest --watch --passWithNoTests",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@dnd-kit/core": "^6.3.1",
|
||||
"@dnd-kit/modifiers": "^9.0.0",
|
||||
"@dnd-kit/sortable": "^10.0.0",
|
||||
"@dnd-kit/utilities": "^3.2.2",
|
||||
"@faker-js/faker": "^10.4.0",
|
||||
"@hookform/resolvers": "^5.2.2",
|
||||
"@number-flow/react": "^0.6.0",
|
||||
"@radix-ui/react-slider": "^1.3.6",
|
||||
"@t3-oss/env-nextjs": "^0.13.11",
|
||||
"@tanstack/react-query": "^5.95.2",
|
||||
"@tanstack/react-query-devtools": "^5.95.2",
|
||||
"@tanstack/react-table": "^8.21.3",
|
||||
"@toss/use-overlay": "^1.4.2",
|
||||
"@ufb/react": "workspace:*",
|
||||
"@ufb/shared": "workspace:*",
|
||||
"@ufb/tailwindcss": "workspace:*",
|
||||
"axios": "^1.13.6",
|
||||
"axios-auth-refresh": "^5.0.2",
|
||||
"classnames": "^2.5.1",
|
||||
"clsx": "^2.1.1",
|
||||
"cookies-next": "^6.1.1",
|
||||
"countries-and-timezones": "^3.8.0",
|
||||
"date-fns": "^4.1.0",
|
||||
"dayjs": "^1.11.20",
|
||||
"formidable": "^3.5.4",
|
||||
"framer-motion": "^12.38.0",
|
||||
"i18next": "^25.10.5",
|
||||
"immer": "^11.1.4",
|
||||
"jwt-decode": "^4.0.0",
|
||||
"linkify": "^0.2.1",
|
||||
"linkify-react": "^4.3.2",
|
||||
"next": "^16.1.3",
|
||||
"next-i18next": "^15.4.3",
|
||||
"next-themes": "^0.4.6",
|
||||
"nuqs": "2.4.3",
|
||||
"pino": "^10.3.1",
|
||||
"react": "^19.2.4",
|
||||
"react-content-loader": "^7.1.2",
|
||||
"react-dom": "^19.2.4",
|
||||
"react-hook-form": "^7.72.0",
|
||||
"react-i18next": "^16.6.2",
|
||||
"react-select": "^5.10.2",
|
||||
"react-use": "^17.6.0",
|
||||
"recharts": "^3.5.0",
|
||||
"sharp": "^0.34.5",
|
||||
"swiper": "^12.1.2",
|
||||
"tailwind-merge": "^3.5.0",
|
||||
"tailwind-scrollbar-hide": "^4.0.0",
|
||||
"zod": "^4.3.6",
|
||||
"zustand": "^5.0.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.29.0",
|
||||
"@rollup/plugin-commonjs": "^29.0.2",
|
||||
"@svgr/webpack": "^8.1.0",
|
||||
"@swc/core": "1.13.5",
|
||||
"@swc/jest": "^0.2.39",
|
||||
"@testing-library/jest-dom": "^6.9.1",
|
||||
"@testing-library/react": "^16.3.2",
|
||||
"@testing-library/user-event": "^14.6.1",
|
||||
"@types/formidable": "^3.5.1",
|
||||
"@types/jest": "^30.0.0",
|
||||
"@types/node": "24.12.0",
|
||||
"@types/react": "^19.2.14",
|
||||
"@types/react-dom": "^19.2.3",
|
||||
"@ufb/eslint-config": "workspace:*",
|
||||
"@ufb/prettier-config": "workspace:*",
|
||||
"@ufb/tsconfig": "workspace:*",
|
||||
"autoprefixer": "^10.4.27",
|
||||
"eslint": "catalog:",
|
||||
"jest": "^30.3.0",
|
||||
"jest-environment-jsdom": "^30.3.0",
|
||||
"jest-fixed-jsdom": "^0.0.11",
|
||||
"jiti": "1.21.7",
|
||||
"next-router-mock": "^1.0.5",
|
||||
"openapi-typescript": "^7.13.0",
|
||||
"postcss": "^8.5.8",
|
||||
"prettier": "catalog:",
|
||||
"tailwindcss": "^3.4.19",
|
||||
"ts-toolbelt": "^9.6.0",
|
||||
"typescript": "catalog:"
|
||||
},
|
||||
"prettier": "@ufb/prettier-config"
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
export default {
|
||||
plugins: ['tailwindcss', 'autoprefixer'],
|
||||
};
|
||||
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 64 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.33464 2.95837C10.2321 2.95837 10.9596 2.23083 10.9596 1.33337H11.7096C11.7096 2.23083 12.4372 2.95837 13.3346 2.95837V3.70837C12.4372 3.70837 11.7096 4.43591 11.7096 5.33337H10.9596C10.9596 4.43591 10.2321 3.70837 9.33464 3.70837V2.95837ZM0.667969 7.33337C2.87711 7.33337 4.66797 5.54251 4.66797 3.33337H6.0013C6.0013 5.54251 7.79217 7.33337 10.0013 7.33337V8.66671C7.79217 8.66671 6.0013 10.4576 6.0013 12.6667H4.66797C4.66797 10.4576 2.87711 8.66671 0.667969 8.66671V7.33337ZM11.5013 9.33337C11.5013 10.53 10.5312 11.5 9.33464 11.5V12.5C10.5312 12.5 11.5013 13.4701 11.5013 14.6667H12.5013C12.5013 13.4701 13.4714 12.5 14.668 12.5V11.5C13.4714 11.5 12.5013 10.53 12.5013 9.33337H11.5013Z" fill="url(#paint0_linear_13920_243441)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_13920_243441" x1="8.00122" y1="1.00037" x2="8.00122" y2="15.0004" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#62A5F5"/>
|
||||
<stop offset="1" stop-color="#5FFFDC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,39 @@
|
||||
<svg width="90" height="64" viewBox="0 0 90 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Illustration">
|
||||
<g id="Group 34">
|
||||
<g id="Group 27">
|
||||
<path id="Vector 5" d="M66 51H25C22.7909 51 21 49.2091 21 47V17C21 14.7909 22.7909 13 25 13H66C68.2091 13 70 14.7909 70 17V47C70 49.2091 68.2091 51 66 51Z" fill="#E1E6EA"/>
|
||||
<path id="Rectangle 572" d="M21 17C21 14.7909 22.7909 13 25 13H66C68.2091 13 70 14.7909 70 17V20H21V17Z" fill="#BEC5CC"/>
|
||||
</g>
|
||||
<g id="Group 31">
|
||||
<g id="Rectangle 573">
|
||||
<rect x="27" y="24" width="37" height="22" rx="2" fill="#007AFF"/>
|
||||
<rect x="28" y="25" width="35" height="20" rx="1" stroke="black" stroke-opacity="0.12" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="API">
|
||||
<path id="Vector" d="M53.7233 39.6695C53.5915 39.6695 53.5195 39.5856 53.5195 39.4538V30.1279C53.5195 29.996 53.5915 29.9121 53.7233 29.9121H55.7851C55.9169 29.9121 56.0008 29.996 56.0008 30.1279V39.4538C56.0008 39.5856 55.9169 39.6695 55.7851 39.6695H53.7233Z" fill="white"/>
|
||||
<path id="Vector_2" d="M44.6764 39.6695C44.5446 39.6695 44.4727 39.5856 44.4727 39.4538V30.1279C44.4727 29.996 44.5446 29.9121 44.6764 29.9121H47.9369C50.634 29.9121 52.0365 31.1348 52.0365 33.4842C52.0365 35.8217 50.634 37.0683 47.9369 37.0683H46.918V39.4538C46.918 39.5856 46.8341 39.6695 46.7022 39.6695H44.6764ZM47.877 34.9946C48.8839 34.9946 49.5072 34.5751 49.5072 33.4603C49.5072 32.3934 48.8839 31.9859 47.877 31.9859H46.918V34.9946H47.877Z" fill="white"/>
|
||||
<path id="Vector_3" d="M33.642 39.6695C33.4861 39.6695 33.4142 39.5616 33.4742 39.4298L37.31 30.0679C37.346 29.9601 37.4419 29.9121 37.5497 29.9121H39.2279C39.3478 29.9121 39.4197 29.9601 39.4677 30.0679L43.3035 39.4298C43.3155 39.4657 43.3275 39.4897 43.3275 39.5137C43.3275 39.6096 43.2555 39.6695 43.1477 39.6695H40.9181C40.7982 39.6695 40.7143 39.6216 40.6783 39.5017L40.1389 37.9913H36.5908L36.0633 39.5017C36.0274 39.6216 35.9435 39.6695 35.8236 39.6695H33.642ZM37.298 35.9775H39.4197L38.3529 32.9688L37.298 35.9775Z" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group 32">
|
||||
<rect id="Rectangle 575" x="14" y="28.5" width="13" height="1" fill="#0055B2"/>
|
||||
<rect id="Rectangle 576" x="17" y="34.5" width="10" height="1" fill="#0055B2"/>
|
||||
<rect id="Rectangle 577" x="15" y="40.5" width="12" height="1" fill="#0055B2"/>
|
||||
<circle id="Ellipse 31" cx="13" cy="29" r="1.5" fill="white" stroke="#007AFF"/>
|
||||
<circle id="Ellipse 32" cx="15" cy="41" r="1.5" fill="white" stroke="#007AFF"/>
|
||||
<circle id="Ellipse 30" cx="17" cy="35" r="1.5" fill="white" stroke="#007AFF"/>
|
||||
</g>
|
||||
<g id="Group 33">
|
||||
<rect id="Rectangle 575_2" width="13" height="1" transform="matrix(-1 0 0 1 77 28.5)" fill="#0055B2"/>
|
||||
<rect id="Rectangle 576_2" width="10" height="1" transform="matrix(-1 0 0 1 74 34.5)" fill="#0055B2"/>
|
||||
<rect id="Rectangle 577_2" width="12" height="1" transform="matrix(-1 0 0 1 76 40.5)" fill="#0055B2"/>
|
||||
<circle id="Ellipse 31_2" cx="2" cy="2" r="1.5" transform="matrix(-1 0 0 1 80 27)" fill="white" stroke="#007AFF"/>
|
||||
<circle id="Ellipse 32_2" cx="2" cy="2" r="1.5" transform="matrix(-1 0 0 1 78 39)" fill="white" stroke="#007AFF"/>
|
||||
<circle id="Ellipse 30_2" cx="2" cy="2" r="1.5" transform="matrix(-1 0 0 1 76 33)" fill="white" stroke="#007AFF"/>
|
||||
</g>
|
||||
<circle id="Ellipse 33" cx="25.5" cy="16.75" r="1.5" fill="#EBEBEB"/>
|
||||
<circle id="Ellipse 34" cx="29.5" cy="16.75" r="1.5" fill="#EBEBEB"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,86 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M141.24 61.7199C141.28 53.0799 141.12 45.5199 140.48 43.0799C140 41.1599 130.88 37.5199 118.12 33.3599V59.3199L141.24 61.7199Z" fill="#3D3D3D"/>
|
||||
<path d="M141.96 61.6801C141.96 57.8001 141.96 53.9201 141.84 50.0401C141.8 48.6001 141.72 47.1601 141.6 45.7601C141.56 44.8401 141.44 43.9601 141.24 43.0801C141.08 42.6401 140.76 42.2401 140.36 41.9601C139.72 41.4801 139 41.0401 138.28 40.6401C135.92 39.4401 133.44 38.3601 130.96 37.4401C126.92 35.8801 122.8 34.4801 118.64 33.1601C118.44 33.0801 117.36 33.0401 117.36 33.4001V59.3601C117.36 59.5201 117.64 59.5201 117.76 59.5601L125.56 60.3601L138 61.6801L140.88 62.0001C141.16 62.0401 141.68 62.0801 141.88 61.8401C142.08 61.6001 141.8 61.5201 141.6 61.5201L133.8 60.7201L121.36 59.4401L118.48 59.1201L118.88 59.3201V33.3201L117.6 33.5601C121.28 34.7601 124.96 36.0001 128.6 37.3601C131.2 38.3201 133.8 39.3601 136.28 40.6001C137.08 40.9601 137.84 41.4001 138.56 41.9201C139 42.2001 139.4 42.5601 139.68 43.0001C139.96 43.6001 139.96 44.4801 140.04 45.1601C140.16 46.4801 140.24 47.8001 140.28 49.0801C140.48 53.3201 140.48 57.5201 140.44 61.7601C140.48 62.0801 141.96 62.0401 141.96 61.6801Z" fill="#3D3D3D"/>
|
||||
<path d="M76.36 89.4399L112.88 83.9199V65.1599L76.36 62.8799V89.4399Z" fill="#3D3D3D"/>
|
||||
<path d="M76.4 89.92L80.04 89.36L88.76 88.04L99.32 86.44L108.44 85.08C109.92 84.84 111.4 84.64 112.88 84.4H112.96C113.28 84.36 113.68 84.2 113.68 83.84V65.08C113.68 64.8 113.32 64.68 113.08 64.64L109.44 64.4L100.72 63.88L90.16 63.24L81 62.68C79.52 62.6 78.04 62.48 76.56 62.4H76.48C76.12 62.36 75.56 62.52 75.56 62.96V89.48C75.56 90.12 77.04 90.04 77.04 89.36V62.84L76.12 63.4L79.76 63.64L88.48 64.16L99.04 64.8L108.16 65.36L111.16 65.56C111.64 65.64 112.12 65.64 112.6 65.64H112.68L112.08 65.2V84L112.8 83.44L109.12 83.96L100.4 85.28L89.84 86.88L80.72 88.24C79.24 88.48 77.76 88.68 76.28 88.92H76.2C75.92 88.96 75.48 89.12 75.48 89.48C75.48 89.84 76.12 89.96 76.4 89.92Z" fill="#3D3D3D"/>
|
||||
<path d="M76.36 96.8798V121.2C88.76 117.12 101.8 112.72 112.92 109V90.7998L76.36 96.8798Z" fill="#3D3D3D"/>
|
||||
<path d="M75.64 96.72V121.04C75.64 121.4 76.6 121.68 76.88 121.6C86.52 118.4 96.16 115.2 105.76 111.96L113.4 109.36C113.52 109.32 113.56 109.28 113.56 109.16V90.96C113.56 90.56 112.6 90.36 112.32 90.4L108.68 91L99.96 92.44L89.4 94.2L80.28 95.72L77.28 96.2C76.8 96.24 76.32 96.32 75.84 96.44C75.8 96.44 75.8 96.44 75.76 96.44C75.4 96.48 75.76 96.84 75.88 96.92C76.16 97.12 76.52 97.2 76.88 97.16L80.52 96.56L89.24 95.12L99.8 93.36L108.92 91.84L111.92 91.32C112.4 91.24 112.88 91.2 113.36 91.08H113.44L112.2 90.52V108.72L112.36 108.52C102.96 111.68 93.56 114.84 84.12 117.96C81.36 118.88 78.56 119.8 75.8 120.72L77.04 121.28V96.96C77.04 96.68 75.64 96.24 75.64 96.72Z" fill="#3D3D3D"/>
|
||||
<path d="M118.12 107.24C131.24 102.8 140.48 99.6401 140.48 99.6401C140.48 99.6401 140.68 93.8801 140.88 86.1201L118.08 89.9201L118.12 107.24Z" fill="#3D3D3D"/>
|
||||
<path d="M118.4 107.76C125.44 105.4 132.44 103 139.48 100.6L140.76 100.16C141 100.08 141.16 99.88 141.2 99.64C141.36 95.12 141.48 90.64 141.6 86.12C141.6 85.76 141.28 85.48 140.92 85.48C140.84 85.48 140.8 85.48 140.76 85.52L133.08 86.8L120.8 88.88L118 89.36C117.76 89.4 117.36 89.6 117.36 89.92V107.2C117.36 108.04 118.84 108 118.84 107.24V89.92L118.2 90.48L125.92 89.2L138.2 87.16L141 86.68L140.16 86.04C140.04 90.56 139.92 95.04 139.76 99.56L140.2 99.04C135.44 100.68 130.68 102.28 125.88 103.92L117.8 106.64C117.48 106.72 117.28 107.08 117.4 107.4V107.44C117.64 107.8 118.04 107.92 118.4 107.76Z" fill="#3D3D3D"/>
|
||||
<path d="M118.12 65.48V83.16L140.96 79.72C141.04 75.68 141.16 71.28 141.2 66.92L118.12 65.48Z" fill="#3D3D3D"/>
|
||||
<path d="M117.6 65.0398V82.7198C117.6 83.0798 118 83.8798 118.44 83.7998L126.16 82.6398L138.48 80.7998L141.28 80.3998C141.4 80.3998 141.44 80.2798 141.44 80.1998C141.56 75.9198 141.6 71.6798 141.68 67.3998C141.68 66.9598 141.28 66.3598 140.84 66.3198L133.04 65.8398L120.6 65.0798L117.76 64.9198C117.44 64.9198 117.64 65.4798 117.72 65.5998C117.84 65.9198 118.12 66.1598 118.44 66.1998L126.24 66.6798L138.68 67.4398L141.52 67.5998L140.68 66.5198C140.64 70.7998 140.56 75.0398 140.44 79.3198L140.64 79.1198L132.92 80.2798L120.6 82.1198L117.8 82.5598L118.64 83.6398V65.9598C118.6 65.5998 118.44 65.2798 118.16 65.0398C118 64.8398 117.6 64.6798 117.6 65.0398Z" fill="#3D3D3D"/>
|
||||
<path d="M30.08 104.64C30.08 121.76 30.52 134.6 31.8 134.84C33.36 135.12 50.72 129.64 71.16 122.96V97.7998L30.08 104.64Z" fill="#3D3D3D"/>
|
||||
<path d="M29.4 104.36C29.4 110.92 29.44 117.48 29.72 124.04C29.8 126.2 29.92 128.36 30.12 130.52C30.24 131.68 30.32 132.96 30.76 134.04C31.12 134.88 32 135.36 32.88 135.2C34 135.04 35.08 134.76 36.16 134.44C40.64 133.24 45.08 131.84 49.52 130.48C56.04 128.44 62.56 126.36 69.04 124.2L71.76 123.32C71.8 123.32 71.84 123.28 71.8 123.2V98.0397C71.8 97.7197 70.88 97.3197 70.6 97.3597L66.52 98.0397L56.72 99.6797L44.84 101.68L34.6 103.36L31.2 103.92C30.68 104 30.12 104.08 29.6 104.2H29.52C29.2 104.24 29.48 104.52 29.6 104.6C29.88 104.84 30.2 104.96 30.56 105L34.64 104.32L44.44 102.68L56.32 100.68L66.56 98.9597L69.96 98.3997C70.48 98.3197 71.04 98.2397 71.56 98.1197C71.6 98.1197 71.6 98.1197 71.64 98.1197L70.44 97.4397V122.12C70.48 122.28 70.48 122.4 70.44 122.56V122.6C70.52 122.44 69.96 122.64 70.12 122.6C69.96 122.64 69.8 122.68 69.64 122.76L67.4 123.48L63.08 124.88C60.4 125.76 57.76 126.6 55.08 127.44C50.6 128.88 46.16 130.28 41.64 131.64C38.8 132.48 35.96 133.36 33.08 134.04C32.48 134.2 31.92 134.24 31.32 134.32C31.6 134.36 31.84 134.48 32.08 134.64C32.16 134.68 32.2 134.72 32.2 134.72C32.2 134.6 32.12 134.6 32.08 134.48C31.96 134.16 31.88 133.8 31.8 133.48C31.2 130.52 31.16 127.4 31.04 124.4C30.84 119.36 30.76 114.32 30.76 109.28C30.76 107.8 30.76 106.28 30.76 104.8C30.76 104.52 29.4 104 29.4 104.36Z" fill="#3D3D3D"/>
|
||||
<path d="M71.16 19.9596C49.84 14.5596 31.84 10.7996 31.8 12.4396C31.8 12.4396 31.24 29.2396 30.76 50.1996L71.16 54.3997V19.9596Z" fill="#3D3D3D"/>
|
||||
<path d="M71.44 19.3599C64 17.4799 56.52 15.6399 49.04 14.0399C46.2 13.4399 43.4 12.8399 40.56 12.3199C38.6 11.9599 36.64 11.6399 34.68 11.4799C33.76 11.3999 32.36 11.1599 31.52 11.7199C31 12.0799 31.08 12.7599 31.08 13.3599C30.96 17.3599 30.84 21.3599 30.72 25.3199C30.52 32.5199 30.32 39.7199 30.16 46.9599C30.12 47.9999 30.12 49.0799 30.08 50.1199C30.08 50.5199 30.36 50.8399 30.76 50.8799L34.76 51.2799L44.4 52.2799L56.04 53.4799L66.12 54.5199C67.76 54.6799 69.4 54.9199 71.04 55.0399H71.12C71.44 55.0799 71.96 54.8799 71.96 54.4799V24.3199C71.96 22.9199 71.96 21.5199 71.96 20.1199V20.0399C71.96 19.1999 70.48 18.9999 70.48 19.8399V52.8799C70.44 53.3199 70.44 53.7999 70.48 54.2399V54.2799L71.32 53.7199L67.32 53.2799L57.68 52.2799L46 51.0799L35.92 50.0399L32.56 49.6799C32.04 49.5999 31.52 49.5199 31 49.5199H30.92L31.6 50.2799C31.76 42.9199 31.96 35.5199 32.16 28.1599C32.28 23.6399 32.44 19.1199 32.56 14.6399L32.6 13.1599C32.64 12.9599 32.64 12.7599 32.6 12.5599C32.6 12.4799 32.68 12.3999 32.56 12.6399C32.52 12.6799 32.48 12.7199 32.44 12.7999C32.28 12.8799 32.56 12.7199 32.44 12.7999C32.6 12.7199 32.36 12.7999 32.48 12.7999C32.6 12.7999 32.88 12.7599 33.08 12.7599H33.28C33.44 12.7599 33.56 12.7599 33.72 12.7599C35.48 12.8799 37.2 13.1199 38.92 13.3999C41.52 13.8399 44.12 14.3599 46.72 14.8799C53.84 16.3599 60.88 18.0799 67.92 19.8399L70.88 20.5999C71.24 20.7199 71.64 20.5999 71.84 20.2799C72 19.9599 71.84 19.5599 71.48 19.3999C71.48 19.3999 71.44 19.3999 71.44 19.3599Z" fill="#3D3D3D"/>
|
||||
<path d="M112.92 58.7598V31.6798C101.8 28.1998 88.76 24.5198 76.36 21.2798V54.9198L112.92 58.7598Z" fill="#3D3D3D"/>
|
||||
<path d="M113.52 58.9997V31.9597C113.52 31.6397 113.08 31.2797 112.84 31.1997C103.44 28.2797 93.92 25.5597 84.4 22.9597C81.64 22.1997 78.88 21.4797 76.12 20.7597C75.96 20.7197 75.8 20.7997 75.72 20.9597C75.72 20.9997 75.68 21.0397 75.72 21.0797V54.7197C75.72 55.0797 76.24 55.5197 76.56 55.5197L80.2 55.9197L88.92 56.8397L99.44 57.9597L108.6 58.9197C110.08 59.0797 111.56 59.2397 113.04 59.3997H113.12C114 59.4797 113.2 58.3197 112.68 58.2797L109.04 57.8797L100.32 56.9597L89.8 55.8397L80.64 54.8797L77.64 54.5597C77.16 54.5197 76.68 54.3997 76.2 54.3997H76.12L76.96 55.1997V21.5997L76.56 21.9197C86.2 24.4397 95.8 27.1197 105.32 29.9197C107.88 30.6797 110.4 31.4397 112.92 32.2397L112.24 31.4797V58.5597C112.28 59.0397 113.52 59.7597 113.52 58.9997Z" fill="#3D3D3D"/>
|
||||
<path d="M71.16 62.5601L30.56 60.0801C30.32 72.2401 30.12 85.0401 30.08 96.4001L71.16 90.2001V62.5601Z" fill="#3D3D3D"/>
|
||||
<path d="M71.12 61.9198L67.08 61.6798L57.4 61.0798L45.64 60.3598L35.52 59.7198C33.88 59.6398 32.24 59.4398 30.6 59.3998H30.52C30.16 59.3598 29.84 59.6398 29.8 59.9998C29.8 59.9998 29.8 59.9998 29.8 60.0398C29.6 69.5998 29.48 79.1198 29.36 88.6798C29.36 91.2398 29.32 93.7998 29.32 96.3598C29.32 96.8398 29.88 97.0798 30.28 97.0398L34.4 96.3998L44.2 94.9198L56.08 93.1198L66.32 91.5598C67.96 91.3198 69.68 91.1598 71.32 90.7998H71.4C71.72 90.7598 71.92 90.4798 71.92 90.1598V62.5198C71.92 61.6798 70.44 61.5998 70.44 62.4798V90.1198L70.96 89.4798L66.88 90.0798L57.08 91.5598L45.2 93.3598L34.96 94.9198L31.56 95.4398C31.04 95.5198 30.48 95.5598 29.96 95.6798H29.88L30.84 96.3598C30.88 86.9598 31 77.5598 31.16 68.1198C31.2 65.4398 31.24 62.7198 31.32 60.0398L30.6 60.6798L34.64 60.9198L44.32 61.5598L56.08 62.2798L66.2 62.9198C67.84 62.9998 69.48 63.1998 71.12 63.2398H71.2C72.16 63.2798 72.04 61.9598 71.12 61.9198Z" fill="#3D3D3D"/>
|
||||
<path d="M46.08 21.2797C46.08 21.2797 50.44 23.4797 48.2 29.5197C45.96 35.5597 38.76 34.1597 37.4 29.1197C36.04 24.0797 38.92 18.1597 46.08 21.2797Z" fill="white"/>
|
||||
<path d="M125.68 68.96C125.68 68.96 128.08 70.16 126.84 73.44C125.6 76.72 121.72 75.96 120.96 73.24C120.2 70.52 121.8 67.24 125.68 68.96Z" fill="white"/>
|
||||
<path d="M125.52 91.2799C125.52 91.2799 127.92 92.4799 126.68 95.7599C125.44 99.0399 121.56 98.2799 120.8 95.5599C120.04 92.8399 121.6 89.5599 125.52 91.2799Z" fill="white"/>
|
||||
<path d="M125.36 38.4C125.36 38.4 127.76 39.6 126.52 42.88C125.28 46.16 121.4 45.4 120.64 42.68C119.88 39.96 121.44 36.68 125.36 38.4Z" fill="white"/>
|
||||
<path d="M45.76 66.3998C45.76 66.3998 50.12 68.5998 47.88 74.6398C45.64 80.6798 38.44 79.2798 37.08 74.2398C35.72 69.1998 38.6 63.2398 45.76 66.3998Z" fill="white"/>
|
||||
<path d="M45.44 107.4C45.44 107.4 49.8 109.6 47.56 115.64C45.32 121.68 38.12 120.28 36.76 115.24C35.4 110.2 38.28 104.24 45.44 107.4Z" fill="white"/>
|
||||
<path d="M86.84 27.3998C86.84 27.3998 90.52 29.2398 88.6 34.3198C86.68 39.3998 80.72 38.2398 79.6 33.9998C78.48 29.7598 80.84 24.7598 86.84 27.3998Z" fill="white"/>
|
||||
<path d="M87.28 66.7997C87.28 66.7997 90.96 68.6397 89.04 73.7197C87.12 78.7997 81.12 77.6397 80 73.3997C78.88 69.1597 81.24 64.1597 87.28 66.7997Z" fill="white"/>
|
||||
<path d="M86.8 98.7997C86.8 98.7997 90.48 100.64 88.56 105.72C86.68 110.76 80.64 109.64 79.52 105.4C78.4 101.16 80.8 96.1597 86.8 98.7997Z" fill="white"/>
|
||||
<path d="M43.16 84.5199C43.16 84.5199 42.16 87.5599 43.16 87.9199C43.68 88.0799 49.68 87.7999 55.44 87.3599V83.4399C49.44 83.9199 43.16 84.5199 43.16 84.5199Z" fill="#CECECE"/>
|
||||
<path d="M44.12 88.0798C43.8 88.0798 43.44 88.0798 43.12 88.0398C42 87.6798 42.92 84.7998 43.04 84.4798L43.08 84.3998H43.16C43.24 84.3998 49.52 83.7998 55.44 83.3198H55.6V87.5598H55.44C51.08 87.8398 46.2 88.0798 44.12 88.0798ZM43.28 84.6398C42.92 85.7598 42.6 87.5198 43.2 87.7598C43.68 87.9198 49.4 87.6398 55.28 87.1998V83.5998C49.84 84.0398 44.08 84.5598 43.28 84.6398Z" fill="#CECECE"/>
|
||||
<path d="M66.24 82.9197C65.88 82.6397 60.8 82.9997 55.48 83.3997V87.3197C61 86.8797 66.28 86.3597 66.24 85.9597C66.12 85.1997 67 83.4797 66.24 82.9197Z" fill="white"/>
|
||||
<path d="M84.16 48.52C84.16 48.52 83.56 51.56 84.48 52.08C84.96 52.36 90 52.92 95.72 53.52L95.88 49.64C89.88 49.08 84.16 48.52 84.16 48.52Z" fill="#CECECE"/>
|
||||
<path d="M95.84 53.7199H95.68C88.08 52.9199 84.8 52.4799 84.4 52.2399C83.4 51.6799 83.92 48.8399 84 48.5199L84.04 48.3999H84.16C84.2 48.3999 89.96 48.9199 95.92 49.5199H96.08L95.84 53.7199ZM84.24 48.7199C84.08 49.5999 83.88 51.5999 84.52 51.9999C85.04 52.2799 92.28 53.0799 95.56 53.3999L95.72 49.8399C90.36 49.2799 85.16 48.7999 84.24 48.7199Z" fill="#CECECE"/>
|
||||
<path d="M106.56 51.1597C106.24 50.8397 101.2 50.2397 95.88 49.6797L95.72 53.5597C101.24 54.1597 106.52 54.5597 106.56 54.1597C106.56 53.3597 107.24 51.8397 106.56 51.1597Z" fill="white"/>
|
||||
<path d="M84.36 41.1597C84.36 41.1597 83.76 44.1997 84.68 44.7197C85.16 44.9997 93.44 46.0797 99.16 46.7197L99.32 42.8397C93.36 42.2397 84.36 41.1597 84.36 41.1597Z" fill="#CECECE"/>
|
||||
<path d="M99.32 46.88H99.16C93.96 46.32 85.16 45.16 84.6 44.88C83.6 44.32 84.12 41.48 84.2 41.16L84.24 41.04H84.36C84.44 41.04 93.4 42.12 99.36 42.72H99.52L99.32 46.88ZM84.48 41.32C84.32 42.2 84.12 44.2 84.76 44.6C85.2 44.84 93.12 45.92 99.04 46.56L99.2 43C93.68 42.4 85.64 41.48 84.48 41.32Z" fill="#CECECE"/>
|
||||
<path d="M106.8 43.7598C106.48 43.4398 104.64 43.3598 99.36 42.8398L99.2 46.7198C104.72 47.3198 106.76 47.1998 106.8 46.7998C106.8 45.9998 107.44 44.4798 106.8 43.7598Z" fill="white"/>
|
||||
<path d="M108.92 103.52C108.76 103.4 103.88 104.76 99 106.16V110.24C103.92 108.8 108.84 107.28 108.92 107C109.12 106.4 109.28 103.76 108.92 103.52Z" fill="white"/>
|
||||
<path d="M89.12 109.08C89.12 109.08 88.48 112.92 89.12 112.92C89.44 112.92 94.2 111.64 98.96 110.24V106.16C94.04 107.6 89.12 109.08 89.12 109.08Z" fill="#CECECE"/>
|
||||
<path d="M89.12 113.08C89.04 113.08 88.92 113.04 88.88 112.96C88.44 112.44 88.88 109.6 88.96 109.04V108.96L89.04 108.92C89.08 108.92 94 107.44 98.88 106.04L99.08 106V110.4L98.96 110.44C94.64 111.64 89.52 113.08 89.12 113.08ZM89.28 109.2C88.96 111.04 88.92 112.72 89.16 112.8C89.44 112.8 93.84 111.6 98.88 110.16V106.4C94.4 107.64 89.96 109 89.28 109.2Z" fill="#CECECE"/>
|
||||
<path d="M51.56 38.1598C53.52 37.9198 55.96 37.3198 56.16 34.9598C56.2 34.5598 55.76 33.8798 55.28 34.0398C54.28 34.3598 53.4 35.1598 53.32 36.2798C53.28 37.3198 54 38.4798 55.08 38.6798C55.68 38.7198 56.28 38.5998 56.8 38.2798C57.44 37.9998 58.04 37.6398 58.64 37.3198C59.64 36.7198 60.6 36.0798 60.84 34.8798C60.84 34.4798 60.64 34.1198 60.28 33.9598C59.6 33.6398 58.84 33.8398 58.4 34.3998C57.96 35.0398 57.84 35.8798 58.08 36.5998C58.48 37.9998 59.84 39.1998 61.32 39.0798C62.64 38.9998 64.2 37.7198 64 36.2798C63.88 35.5598 63.08 34.8798 62.36 35.3198C61.72 35.6798 61.72 36.6398 61.96 37.2798C62.44 38.7598 64.16 39.6798 65.6 39.0398C66.24 38.7598 65.48 37.4798 64.8 37.7598C64.2 37.9998 63.28 37.7598 63.08 37.1198C63.04 36.9598 63.04 36.8398 63.08 36.6798C63.2 36.5998 63.16 36.4798 62.96 36.3598C62.84 36.0798 62.8 36.0398 62.76 36.2398C62.72 36.3198 62.68 36.3998 62.68 36.5198C62.48 36.9198 62.16 37.2798 61.76 37.4798C61 37.9198 60.04 37.7198 59.52 37.0398C59.28 36.7198 59.16 36.2798 59.28 35.8798C59.4 35.4398 59.8 35.0398 60.24 35.2798L59.68 34.3598C59.56 34.9998 58.84 35.4398 58.32 35.7598C57.56 36.2398 56.76 36.6798 55.92 37.0398C55.48 37.2398 54.68 37.4798 54.64 36.7598C54.6 36.0398 55.32 35.5598 55.88 35.3998L55 34.4798C54.84 36.3198 52.52 36.5998 51.12 36.7998C50.28 36.8798 50.88 38.2398 51.56 38.1598Z" fill="white"/>
|
||||
<path d="M53.12 45.36C54.72 44.6 56.24 43.68 57.68 42.64C58 42.44 58.08 42.08 57.92 41.76C57.88 41.68 57.84 41.64 57.76 41.6C57.08 40.92 55.88 41.24 55.4 42C55 42.76 54.92 43.64 55.2 44.44C55.96 46.48 58.68 45.8 60.16 45.08C61 44.68 61.68 43.96 62.04 43.12C62.32 42.32 62.2 41.24 61.24 41C59.04 40.44 58.68 44.08 59.08 45.44C59.36 46.44 60.16 47.24 61.16 47.52C62.12 47.76 63.12 47.48 63.76 46.72C64.36 45.96 63.2 45.16 62.64 45.84C61.88 46.8 60.76 45.92 60.48 45C60.32 44.32 60.36 43.6 60.6 42.92C60.64 42.84 60.88 42.36 60.84 42.28C60.68 41.88 60.64 42.44 60.68 42.4C60.64 42.52 60.64 42.64 60.56 42.8C60.08 43.92 58.6 44.36 57.48 44.44C57.08 44.52 56.64 44.28 56.56 43.84C56.56 43.76 56.52 43.72 56.56 43.64C56.52 43.36 56.56 43.08 56.6 42.84C56.64 42.72 56.68 42.64 56.76 42.52C56.56 42.32 56.76 42.48 56.76 42.52L56.84 41.44C55.4 42.48 53.88 43.36 52.28 44.16C51.96 44.32 51.84 44.72 52.04 45.04L52.08 45.08C52.32 45.48 52.76 45.56 53.12 45.36Z" fill="white"/>
|
||||
<path d="M95.64 83.4797C95.72 81.8397 96.88 80.3197 98.08 79.2397C98.68 78.6397 99.56 78.3997 100.4 78.5597C101.12 78.6797 101.8 78.9597 102.52 78.9997C103.16 79.0797 103.8 78.8797 104.28 78.4397C104.8 77.9197 104.96 77.1597 105.24 76.4797C105.84 74.9597 107.04 73.7597 108.56 73.1197C108.76 73.0397 108.24 72.7597 108.16 72.7197C108 72.6397 107.52 72.3197 107.28 72.4397C105.8 73.0397 104.64 74.1997 103.96 75.6397C103.64 76.3197 103.52 77.1197 103 77.7197C102.48 78.3197 101.72 78.3997 100.96 78.2397C99.48 77.9197 98.08 77.3597 96.8 78.4797C95.56 79.5197 94.36 81.1597 94.24 82.8397C94.24 83.1997 95.64 83.5197 95.64 83.4797Z" fill="#CECECE"/>
|
||||
<path d="M92.24 84.8001C98 84.2801 103.68 83.3601 109.32 82.0801C109.48 82.0401 108.92 81.7601 108.88 81.7601C108.6 81.6001 108.28 81.5601 107.96 81.5601C102.4 82.8401 96.76 83.7201 91.04 84.2401C90.72 84.2801 91.16 84.4801 91.24 84.5201C91.56 84.6801 91.92 84.8001 92.24 84.8001Z" fill="white"/>
|
||||
<path d="M130.04 72.9601C130.64 74.7601 130.68 77.3601 128.64 78.2801L129.88 78.6401C129.92 77.4801 130.72 76.4001 131.6 75.6801C132.28 75.1201 133.2 74.7201 134 75.3201C134.36 75.6001 134.6 76.0401 134.6 76.4801C134.6 76.6001 134.56 76.7201 134.52 76.8401C134.44 76.8801 134.44 76.8801 134.48 76.9201C134.6 77.0401 134.8 77.0801 134.96 77.0001C134.96 76.9601 134.88 76.8001 134.92 76.7201C134.96 76.6001 135 76.4801 135.08 76.4001C135.2 76.2401 135.4 76.0801 135.6 76.0001C135.76 75.9601 135.76 75.9601 135.84 76.0801C136.16 76.4001 136.16 76.8801 135.88 77.2001L137.24 77.3601C136.96 76.3201 137.36 75.2401 138.28 74.6401C139.04 74.2001 137.68 73.7601 137.24 74.0001C136 74.6801 135.4 76.1201 135.76 77.4801C135.88 77.9201 136.84 77.9201 137.12 77.6401C137.56 77.2401 137.68 76.6001 137.36 76.0801C136.96 75.4401 136.24 75.0801 135.48 75.1601C134.76 75.1601 134.08 75.4801 133.64 76.0001C133.28 76.3601 133.28 76.9601 133.64 77.3201C133.76 77.4401 133.92 77.5201 134.08 77.5601C134.72 77.8001 135.68 77.6401 136 76.9601C136.28 76.3201 136 75.6001 135.56 75.1201C134.56 74.0001 132.76 73.8801 131.44 74.4401C129.92 75.0801 128.48 76.7601 128.4 78.4401C128.36 78.9601 129.36 78.9201 129.64 78.8001C130.64 78.3601 131.36 77.5201 131.68 76.4801C132 75.2401 131.92 73.9201 131.48 72.7601C131.32 72.3201 129.84 72.3601 130.04 72.9601Z" fill="white"/>
|
||||
<path d="M128.2 100.4C129.16 99.5597 130.2 98.7997 131.16 97.8797C131.6 97.4397 132 96.9997 132.36 96.4797C132.6 96.1197 133.2 95.3597 132.8 94.9597C132.4 94.5597 131.52 94.8797 131.08 95.0797C130.6 95.3597 130.24 95.8397 130.04 96.3597C129.64 97.5997 130.52 98.5597 131.72 98.6797C133.04 98.7997 134.32 98.3197 135.24 97.3597C136.24 96.3597 136.6 94.9597 136.8 93.5997C136.92 92.8397 137.08 92.0797 137.12 91.2797C137.24 90.7197 136.88 90.1997 136.32 90.0797C135.68 89.9597 135 90.2397 134.64 90.7997C134.32 91.4797 134.12 92.1997 134.08 92.9197C133.96 94.3197 134.08 96.0397 135.48 96.7597C136.6 97.3597 138.6 96.9197 138.96 95.5997C139.08 95.1597 137.64 95.3197 137.52 95.7597C137.44 95.9997 137.32 96.3197 137.08 96.3197C136.72 96.3597 136.28 95.8797 136.08 95.5997C135.52 94.8797 135.48 93.8797 135.52 92.9997C135.56 92.4797 135.64 91.9997 135.76 91.4797C135.84 91.2397 135.92 91.0397 136 90.7997C136.04 90.7597 136.12 90.5997 136.12 90.5597C135.4 90.5197 135.2 90.5997 135.48 90.7597C135.52 90.7997 135.6 90.8397 135.6 90.8797C135.88 91.2397 135.64 91.9597 135.6 92.3597C135.52 92.8397 135.48 93.3197 135.4 93.7997C135.28 94.7197 135 95.6397 134.6 96.4797C134.24 97.0797 133.6 97.8797 132.88 97.9597C132.16 98.0397 131.52 97.5197 131.48 96.7997C131.48 96.6797 131.48 96.5997 131.48 96.4797C131.52 96.1597 131.68 95.8397 131.88 95.5597C131.96 95.4797 132 95.4397 132.08 95.3597C132.24 95.0797 131.6 95.3997 131.48 95.5997C131.36 95.7997 131.28 95.9997 131.2 96.1997C130.24 97.8397 128.52 98.8797 127.16 100.12C126.48 100.72 127.92 100.68 128.2 100.4Z" fill="white"/>
|
||||
<path d="M127.08 57.5197C126.92 55.4797 126.76 53.3597 127.28 51.3597C127.68 49.7997 128.56 48.0397 130.08 47.2797C132.2 46.2397 132.16 49.9997 132.16 51.1197C132.2 52.1197 132.16 53.1197 132.24 54.1197C132.28 54.9997 132.64 55.8397 133.52 56.1197C134.36 56.3597 135.28 55.9997 135.72 55.1997C135.88 54.8397 136.04 54.4797 136.12 54.0797C136.16 53.8797 136.28 53.6797 136.36 53.4797C136.4 53.4397 136.44 53.3597 136.48 53.2797C136.56 53.1197 136.64 53.2797 136.44 53.2397C136.8 53.3197 137.2 53.1997 137.44 52.8797C137.64 52.5597 137.36 52.3197 137.08 52.2397C136.2 52.0797 135.36 52.4797 134.96 53.2797C134.8 53.6397 134.64 53.9997 134.56 54.3997C134.52 54.5597 134.44 54.7197 134.36 54.8797C134.32 54.9597 134.28 55.0397 134.24 55.0797C134.08 55.3197 134.2 55.0397 134.28 55.1197C134.2 54.9597 134 54.9197 133.92 54.7197C133.8 54.4797 133.76 54.2397 133.76 53.9597C133.72 53.3997 133.72 52.8397 133.72 52.3197C133.68 51.1997 133.72 50.0397 133.64 48.9197C133.6 47.9597 133.2 47.0797 132.48 46.4797C131.68 45.9197 130.6 45.8397 129.72 46.2397C127.96 46.9597 126.76 48.6397 126.12 50.3597C125.28 52.6797 125.48 55.2397 125.64 57.6797C125.6 58.3997 127.08 58.1597 127.08 57.5197Z" fill="#CECECE"/>
|
||||
<path d="M125 58.6799H137.8C138.12 58.6799 138.36 58.4399 138.4 58.1199C138.44 57.6799 138.48 57.2399 138.44 56.7999C138.48 55.8399 138.48 54.8799 138.52 53.9199C138.56 51.8399 138.6 49.7199 138.6 47.6399C138.64 47.0799 138.64 46.5199 138.6 45.9599C138.52 45.0799 137.12 44.9999 137.2 45.9599C137.24 46.3999 137.24 46.8399 137.2 47.2799C137.2 48.1999 137.2 49.1599 137.16 50.0799C137.12 52.0799 137.12 54.2399 137.04 56.1599C137.04 56.7199 137.04 57.2399 136.96 57.7999L137.56 57.2399H124.76C123.92 57.2399 124.16 58.6799 125 58.6799Z" fill="white"/>
|
||||
<path d="M54.52 125.96C58.6 125.12 62.44 123.2 66.64 122.84C66.84 122.84 67.6 122.64 67.64 122.32C67.8 120.52 67.72 118.68 67.72 116.88C67.76 114.2 67.76 111.52 67.76 108.84C67.76 108.12 67.8 107.36 67.76 106.64C67.76 106.32 66.32 106.64 66.32 107.12C66.4 108.88 66.32 110.68 66.32 112.48C66.28 115.16 66.28 117.84 66.24 120.52C66.24 121.24 66.24 121.92 66.2 122.64L67.2 122.12C62.88 122.48 58.96 124.44 54.72 125.28C54.52 125.32 53.92 125.48 53.92 125.76C53.92 126.04 54.4 126 54.52 125.96Z" fill="white"/>
|
||||
<path d="M52.16 116.36C53.4 115.76 54.64 116.52 55.52 117.36C56.52 118.36 57.44 119.64 58.76 120.2C59.96 120.72 61.36 120.48 61.72 119.08C61.8 118.48 62.08 117.92 62.52 117.48C62.96 117.04 63.56 116.8 64.16 116.84C65.16 116.88 64.52 115.8 63.84 115.76C62.56 115.68 61.36 116.32 60.72 117.4C60.4 117.92 60.48 118.72 60.04 119.16C59.52 119.68 58.84 119.24 58.44 118.84C57.32 117.84 56.44 116.6 55.16 115.8C54 115.08 52.48 114.68 51.2 115.32C50.48 115.68 51.6 116.6 52.16 116.36Z" fill="#CECECE"/>
|
||||
<path d="M41.68 23.52C40.96 24.24 40.36 25.16 40.48 26.2C40.64 27.4 41.52 28.36 42.72 28.64C43.64 28.88 44.92 29 45.68 28.28C46.44 27.56 46.4 26.12 46 25.16C45.72 24.56 45.28 24.04 44.68 23.76C44.2 23.52 43.64 23.36 43.12 23.32C42.8 23.28 42.72 23.64 42.8 23.88C42.88 24.24 43.16 24.52 43.52 24.64C43.84 24.68 44.2 24.76 44.52 24.84C44.6 24.88 44.68 24.88 44.76 24.92L44.88 25C44.84 25 44.8 24.96 44.92 25.04L45 25.12C44.92 25.04 45.08 25.2 45 25.12L45.08 25.2C44.96 25.08 45.12 25.28 45.08 25.2C45.04 25.12 45.12 25.24 45.12 25.28C45.16 25.4 45.08 25.2 45.12 25.32C45.12 25.36 45.16 25.52 45.16 25.48C45.2 25.68 45.24 25.88 45.24 26.08C45.24 26.44 45.16 26.76 44.96 27.08C44.48 27.72 43.52 27.68 42.84 27.56C42.52 27.52 42.2 27.4 41.92 27.28C42 27.32 41.84 27.2 41.8 27.2C41.72 27.12 41.88 27.28 41.8 27.2C41.8 27.2 41.68 27.08 41.76 27.16C41.84 27.24 41.72 27.12 41.72 27.12C41.76 27.24 41.68 26.96 41.68 27.04C41.48 26.24 42.08 25.44 42.6 24.92C42.84 24.68 42.68 24.28 42.52 24.08C42.36 23.76 41.92 23.32 41.68 23.52Z" fill="#3D3D3D"/>
|
||||
<path d="M39.72 31.1601C40.44 30.2001 41.52 29.5601 42.68 29.3601C43.24 29.2001 43.84 29.2001 44.44 29.3201C44.96 29.5601 45.4 29.9601 45.64 30.4801C45.76 30.7201 46.28 30.8001 46.48 30.8401C46.56 30.8401 47.16 30.9601 47.04 30.7601C46.24 29.1201 44 28.6001 42.36 28.7201C40.8 28.8001 39.16 29.4001 38.28 30.7601C38.2 30.8801 39.52 31.4801 39.72 31.1601Z" fill="#3D3D3D"/>
|
||||
<path d="M81.92 29.9997C81.64 30.3597 81.48 30.7597 81.4 31.1997C81.28 31.6797 81.32 32.1597 81.48 32.6397C81.84 33.5597 82.92 34.0797 83.88 34.1197C84.68 34.1997 85.48 33.9197 86 33.3197C86.48 32.6797 86.64 31.8797 86.36 31.1197C85.96 29.9997 84.84 29.2797 83.64 29.3997C83.44 29.3997 83.32 29.5597 83.32 29.7597C83.32 29.8397 83.36 29.9197 83.44 29.9997C83.68 30.2797 84.08 30.3997 84.44 30.3597C84.32 30.3597 84.4 30.3597 84.44 30.3597C84.36 30.3197 84.6 30.3597 84.44 30.3597C84.48 30.3597 84.6 30.3997 84.48 30.3597C84.36 30.3197 84.52 30.3597 84.52 30.3997C84.52 30.4397 84.36 30.3197 84.48 30.3997L84.56 30.4397C84.56 30.4397 84.72 30.5597 84.6 30.4797C84.64 30.5197 84.68 30.5597 84.72 30.6397L84.76 30.7197C84.68 30.6397 84.76 30.6797 84.76 30.7197C84.76 30.7597 84.84 30.8397 84.84 30.9197C84.84 30.9597 84.88 30.9597 84.88 30.9997C84.88 31.0397 84.92 31.0797 84.92 31.0797C84.92 31.0397 84.92 31.1197 84.92 31.1197C84.92 31.1197 84.92 31.1997 84.96 31.1997C85 31.1997 85 31.3597 85 31.3997C85 31.4397 85 31.5197 85 31.5997C85 31.6397 85 31.6797 85 31.6797C85 31.6797 85 31.7997 85 31.7597C84.96 31.8797 84.96 32.0397 84.88 32.1597C84.84 32.2397 84.84 32.2797 84.8 32.3597H84.72L84.68 32.3997C84.56 32.5997 84.36 32.7597 84.12 32.8797L83.92 32.9597L83.84 32.9997C83.76 33.0397 83.96 32.9597 83.84 32.9997L83.64 33.0397H83.56C83.4 33.0797 83.68 33.0397 83.52 33.0397H83.32C83.2 33.0397 83.36 33.0397 83.36 33.0397C83.32 33.0397 83.28 33.0397 83.28 33.0397C83.24 33.0397 83.2 33.0397 83.16 32.9997C83.12 32.9597 83.32 33.0397 83.2 32.9997L83.12 32.9597C83.08 32.9597 82.92 32.9197 83.08 32.9197C83.12 32.9197 83.24 32.9197 83.08 32.9197C83.04 32.9197 83 32.8797 83 32.8397C83 32.7997 83.16 32.9597 83.04 32.8397L82.96 32.7597C82.88 32.6797 82.92 32.7197 82.96 32.7597C82.96 32.7197 82.92 32.7197 82.88 32.6797C82.84 32.6397 82.84 32.6397 82.8 32.5997C82.88 32.6797 82.8 32.5597 82.76 32.5597C82.64 32.2397 82.6 31.8797 82.68 31.5197C82.72 31.1597 82.88 30.8397 83.08 30.5197C83.28 30.2397 83 29.9597 82.76 29.8397C82.6 29.7597 82.4 29.6797 82.2 29.6797C82.04 29.6797 81.92 29.7197 81.8 29.7997L81.92 29.9997Z" fill="#3D3D3D"/>
|
||||
<path d="M81.76 35.08C82.44 34.48 83.32 34.16 84.2 34.08C85 34.08 85.72 34.72 86.28 35.36C86.76 35.88 88.04 35.24 87.44 34.6C86.68 33.72 85.6 33 84.4 33C83.08 33.04 81.84 33.48 80.84 34.32C80.6 34.52 80.44 34.88 80.72 35.12C81.04 35.32 81.44 35.32 81.76 35.08Z" fill="#3D3D3D"/>
|
||||
<path d="M123.92 39.4798C123.2 39.5198 122.56 39.8798 122.16 40.4798C121.8 40.9198 121.72 41.5598 121.96 42.0798C122.68 43.3598 124.52 42.9198 125.32 41.9998C125.56 41.7198 125.72 41.3598 125.68 40.9998C125.6 40.6798 125.48 40.3598 125.28 40.1198C125.2 39.9998 125.08 39.9198 124.96 39.9198C124.76 39.9198 124.6 39.9198 124.4 39.9998C124.24 40.0798 124.08 40.1998 123.96 40.3198C123.92 40.3998 123.8 40.5998 123.88 40.6798C124.04 40.8798 124.16 41.1598 124.24 41.3998V41.2798C124.24 41.3198 124.24 41.3998 124.24 41.4398C124.24 41.4798 124.24 41.5198 124.24 41.5198L124.2 41.5998V41.6398C124.2 41.6798 124.2 41.6398 124.24 41.5998C124.24 41.5998 124.2 41.6398 124.2 41.6798C124.12 41.7598 124.28 41.5998 124.24 41.6398C124.2 41.6798 124.12 41.7598 124.12 41.7598C124.12 41.7598 124.28 41.6398 124.16 41.7198L124.08 41.7598C123.96 41.8398 124.12 41.7198 124.12 41.7198C124.12 41.7198 124.08 41.7598 124.04 41.7598C123.88 41.7998 124 41.7598 124.04 41.7598H124C123.88 41.7998 124.16 41.7598 124.04 41.7598C124 41.7598 123.92 41.7598 123.88 41.7598C123.92 41.7598 124.04 41.7598 123.92 41.7598H123.84C123.76 41.7198 123.8 41.7598 123.84 41.7598C123.8 41.7598 123.8 41.7598 123.76 41.7198C123.72 41.7198 123.64 41.6398 123.6 41.6398C123.56 41.6398 123.68 41.6798 123.64 41.6398L123.56 41.5998C123.48 41.5198 123.4 41.4398 123.32 41.3598L123.4 41.4398C123.32 41.3198 123.24 41.1998 123.2 41.0398L123.24 41.1598C123.24 41.0798 123.2 40.9998 123.24 40.9198C123.24 40.8798 123.24 40.8398 123.24 40.7998C123.2 40.9198 123.24 40.7998 123.24 40.7598C123.28 40.6798 123.32 40.5998 123.36 40.5198C123.28 40.6398 123.4 40.3998 123.36 40.5198L123.44 40.4398C123.48 40.3998 123.48 40.3598 123.52 40.3598L123.44 40.4398L123.48 40.3998L123.56 40.3198C123.4 40.4398 123.64 40.2398 123.56 40.3198C123.72 40.1998 123.4 40.3998 123.52 40.3198H123.56C123.64 40.2798 123.6 40.3198 123.48 40.3598H123.56C123.44 40.3598 123.4 40.3998 123.48 40.3598H123.56C123.76 40.3598 123.96 40.2798 124.12 40.1598C124.28 40.0798 124.4 39.9598 124.44 39.7998C124.48 39.6798 124.48 39.5598 124.36 39.4398C124.24 39.3598 124.08 39.3198 123.96 39.3198L123.92 39.4798Z" fill="#3D3D3D"/>
|
||||
<path d="M121.52 43.36C121.92 43.36 122.32 43.36 122.72 43.28L122.96 43.24H123C122.88 43.24 123 43.24 123.04 43.24H123.16C123.28 43.24 123.04 43.24 123.12 43.24C123.12 43.24 123.28 43.24 123.16 43.24C123.04 43.24 123.2 43.24 123.24 43.24C123.28 43.24 123.32 43.28 123.32 43.28L123.4 43.32C123.36 43.28 123.36 43.32 123.4 43.32C123.52 43.4 123.6 43.48 123.72 43.56C123.92 43.76 124.08 43.96 124.24 44.16C124.48 44.4 124.84 44.48 125.2 44.36C125.36 44.32 125.88 44.12 125.68 43.88C125.08 42.84 123.88 42.28 122.68 42.56C122.48 42.6 122.32 42.6 122.16 42.64C122.16 42.64 122 42.64 122.12 42.64H122.04H122H121.92C121.64 42.64 121.12 42.68 121 42.96C120.88 43.24 121.36 43.32 121.52 43.36Z" fill="#3D3D3D"/>
|
||||
<path d="M122.72 70.3201C122.56 70.5601 122.44 70.8401 122.32 71.1201C122.2 71.4001 122.2 71.7201 122.24 72.0401C122.4 72.7201 122.96 73.2801 123.68 73.3601C124.28 73.4801 124.92 73.3601 125.44 73.0001C125.96 72.6401 126.2 71.9601 126.08 71.3601C126 71.0001 125.84 70.6401 125.64 70.3601C125.36 70.0401 125 69.8401 124.56 69.8001C124.2 69.7201 123.84 69.9601 123.76 70.3201V70.3601C123.76 70.7601 124.04 71.1201 124.44 71.1601L124.6 71.2001C124.68 71.2001 124.44 71.1601 124.52 71.1601L124.6 71.2001C124.68 71.2401 124.44 71.0801 124.52 71.1601C124.52 71.1601 124.4 71.0401 124.48 71.1201C124.48 71.1201 124.4 70.9601 124.44 71.0801C124.44 71.1201 124.48 71.1201 124.48 71.1601C124.52 71.2801 124.56 71.4001 124.64 71.4801C124.72 71.5601 124.64 71.4801 124.64 71.4401C124.64 71.4801 124.64 71.4801 124.68 71.5201C124.68 71.6001 124.72 71.6401 124.72 71.7201V71.5601C124.72 71.6401 124.72 71.7201 124.68 71.8001L124.72 71.6401C124.68 71.7201 124.68 71.8401 124.6 71.9201L124.68 71.7601C124.64 71.8401 124.56 71.9201 124.48 72.0001L124.6 71.8801L124.48 71.9601C124.44 72.0001 124.4 72.0001 124.36 72.0401C124.44 72.0001 124.48 72.0001 124.4 72.0001L124.32 72.0401L124.2 72.0801H124.04H123.88L123.76 72.0401C123.68 72.0001 123.72 72.0401 123.84 72.0801L123.76 72.0401L123.68 72.0001C123.6 71.9601 123.64 72.0001 123.76 72.0401C123.76 72.0401 123.6 71.9201 123.72 72.0001C123.84 72.0801 123.72 71.9601 123.68 71.9601C123.76 72.0801 123.76 72.0801 123.72 72.0401L123.68 71.9601C123.64 71.8801 123.68 71.9201 123.68 72.0401C123.68 72.0001 123.68 72.0001 123.68 71.9601C123.68 71.9201 123.68 71.8801 123.68 71.8001V71.9601C123.68 71.8401 123.68 71.7201 123.72 71.6401L123.68 71.8001C123.76 71.5601 123.88 71.3201 124 71.0801L123.92 71.2401L123.96 71.2001C124.08 71.0401 124.12 70.8801 124.08 70.7201C124.04 70.5201 123.92 70.3601 123.8 70.2801C123.64 70.1601 123.44 70.1201 123.24 70.1201C123.04 70.1201 122.88 70.2001 122.76 70.3601L122.72 70.3201Z" fill="#3D3D3D"/>
|
||||
<path d="M122.32 73.9597C122.48 73.9197 122.64 73.8797 122.76 73.8397L123.04 73.7997C122.92 73.8397 123.04 73.7997 123.12 73.7997C123.28 73.7997 123.44 73.7597 123.6 73.7597H123.68C123.76 73.7597 123.84 73.7597 123.92 73.7597C123.76 73.7197 123.96 73.7597 124 73.7997H124.04L124.16 73.8397C124.32 73.9197 124.44 73.9997 124.56 74.0397L124.72 74.1197C124.64 74.0797 124.8 74.1997 124.84 74.1997C124.88 74.1997 124.92 74.2797 124.96 74.3197C125 74.3597 125.04 74.3997 125.04 74.4397C125.28 74.6797 125.64 74.7997 126 74.6797C126.2 74.5997 126.64 74.3997 126.48 74.0797C126.28 73.7597 125.96 73.5197 125.64 73.3597C125.32 73.1597 124.92 72.9997 124.52 72.8797C123.64 72.7597 122.76 72.8397 121.92 73.1197C121.68 73.1997 121.28 73.3997 121.44 73.7197C121.6 74.0397 122.04 74.0397 122.32 73.9597Z" fill="#3D3D3D"/>
|
||||
<path d="M122.32 93.3601C122.16 93.8001 121.96 94.3601 122.2 94.8401C122.44 95.2401 122.88 95.4401 123.32 95.4001C123.64 95.4001 123.92 95.3201 124.24 95.2001C124.64 95.0801 125 94.8401 125.32 94.5601C125.72 94.1601 125.84 93.6001 125.72 93.0801C125.6 92.5201 125.04 92.1201 124.48 92.2001C124.32 92.2401 124.12 92.2801 123.96 92.3601C123.8 92.4401 123.64 92.5201 123.52 92.6401C123.48 92.6801 123.36 92.8001 123.4 92.8801C123.44 92.9601 123.6 92.9601 123.68 92.9201C123.6 92.9201 123.64 92.9201 123.68 92.9201H123.76C123.8 92.9201 123.72 92.9201 123.8 92.9201L123.88 92.9601C124 93.0001 124.08 93.0801 124.16 93.1201L124.12 93.0801C124.36 93.3201 124.48 93.6401 124.48 94.0001C124.48 94.2401 124.44 94.4401 124.32 94.6401L124.28 94.6801L124.24 94.7201C124.2 94.7601 124.32 94.6801 124.24 94.7201C124.16 94.7601 124.16 94.8001 124.24 94.7201C124.32 94.6401 124.24 94.7201 124.2 94.7201C124.16 94.7201 124.36 94.6401 124.24 94.6801C124.24 94.6801 124.4 94.6001 124.32 94.6401C124.36 94.6401 124.52 94.5601 124.4 94.6001C124.28 94.6401 124.56 94.5601 124.48 94.5601H124.4C124.32 94.6001 124.52 94.5601 124.44 94.5601H124.36H124.28C124.32 94.5601 124.36 94.5601 124.32 94.5601C124.28 94.5601 124.24 94.5601 124.16 94.5601H124.08C124.04 94.5601 124.12 94.5601 124.08 94.5601C124.04 94.5601 124 94.5201 123.96 94.5201C123.88 94.4801 123.8 94.4401 123.72 94.3601L123.76 94.4001C123.56 94.2001 123.48 93.9601 123.48 93.6801V93.7601C123.52 93.4401 123.56 93.1201 123.72 92.8001C123.76 92.7201 123.64 92.6801 123.56 92.6801C123.4 92.6801 123.24 92.7201 123.12 92.7601C122.92 92.8401 122.76 92.9201 122.6 93.0001C122.48 93.1201 122.36 93.2401 122.32 93.3601Z" fill="#3D3D3D"/>
|
||||
<path d="M122.08 96.0399C122.12 95.9999 122.32 95.8799 122.16 95.9599C122.24 95.9199 122.32 95.8799 122.4 95.8799L122.52 95.8399C122.6 95.8399 122.68 95.7999 122.76 95.7999C122.84 95.7999 122.84 95.7999 122.76 95.7999H123.04H123.28C123.36 95.7999 123.36 95.7999 123.28 95.7999L123.4 95.8399C123.56 95.8799 123.68 95.9199 123.84 95.9599C123.88 95.9599 123.96 95.9999 124 95.9999C123.88 95.9599 124.08 96.0399 124.12 96.0399C124.24 96.1199 124.4 96.1999 124.52 96.2799C124.52 96.2799 124.72 96.4399 124.64 96.3599L124.8 96.5199C125.08 96.7599 125.48 96.7599 125.8 96.5599C126.04 96.3999 126.32 95.9999 126.04 95.7199C125.48 95.1599 124.8 94.7999 124.04 94.6799C123.16 94.4799 122.2 94.6399 121.44 95.1199C121.2 95.2799 120.92 95.6799 121.2 95.9599C121.48 96.1999 121.88 96.1999 122.2 95.9999L122.08 96.0399Z" fill="#3D3D3D"/>
|
||||
<path d="M82.16 101.52C81.64 102.16 81.48 103 81.72 103.76C82 104.44 82.64 104.96 83.36 105.04C84.32 105.2 85.16 104.68 85.8 104.04C86.12 103.76 86.36 103.36 86.44 102.92C86.48 102.48 86.4 102.04 86.2 101.64C85.88 100.72 84.96 100.12 84 100.2C83.64 100.24 83.32 100.48 83.2 100.84C83.12 101.2 83.44 101.32 83.76 101.28C83.8 101.28 83.88 101.28 83.76 101.28H83.84C83.84 101.28 83.96 101.32 83.92 101.28C83.88 101.24 83.96 101.28 83.96 101.28C84.08 101.32 84.2 101.36 84.28 101.44C84.48 101.6 84.68 101.8 84.76 102.04C84.88 102.28 85 102.56 85.04 102.84C85.08 102.96 85.08 103.08 85.04 103.2C85.04 103.24 85 103.28 85 103.32C85 103.36 84.96 103.36 84.96 103.4C85 103.32 84.96 103.4 84.92 103.44L84.76 103.6H84.72C84.8 103.52 84.68 103.64 84.68 103.64L84.52 103.8L84.44 103.84C84.36 103.88 84.56 103.8 84.44 103.84C84.4 103.84 84.36 103.88 84.32 103.88C84.28 103.88 84.44 103.84 84.36 103.88L84.28 103.92C84.2 103.96 84.32 103.92 84.32 103.92C84.32 103.92 84.2 103.92 84.16 103.92C84.12 103.92 84.28 103.92 84.16 103.92H84.08C84.04 103.92 83.88 103.88 84 103.92C83.96 103.92 83.88 103.88 83.84 103.88L83.68 103.8C83.6 103.76 83.64 103.8 83.68 103.8C83.64 103.8 83.6 103.76 83.6 103.76C83.4 103.64 83.24 103.48 83.16 103.24C83.12 103.12 83.08 103 83.04 102.88C83.04 102.8 83.04 102.72 83 102.68V102.56C83 102.52 83 102.48 83 102.52C83 102.44 83.04 102.36 83.04 102.32C83.04 102.28 83.04 102.24 83.08 102.2C83.08 102.2 83.12 102.04 83.12 102.12C83.12 102.2 83.12 102.08 83.12 102.08C83.12 102.04 83.16 102 83.16 101.96L83.2 101.88C83.28 101.72 83.12 101.96 83.24 101.84C83.4 101.64 83.52 101.24 83.16 101.12C82.8 101.12 82.4 101.24 82.16 101.52Z" fill="#3D3D3D"/>
|
||||
<path d="M81.56 105.84C82.32 105.32 83.24 105.12 84.16 105.24C84.92 105.36 85.56 105.72 86 106.32C86.24 106.6 86.6 106.76 86.96 106.76C87.24 106.76 87.32 106.6 87.16 106.36C85.52 104.4 82.52 103.68 80.32 105.04C79.96 105.28 81.2 106.08 81.56 105.84Z" fill="#3D3D3D"/>
|
||||
<path d="M83.4 69.12C82.76 69.52 82.32 70.16 82.16 70.88C82.04 71.52 82.32 72.2 82.84 72.6C83.28 72.88 83.8 73.04 84.32 73.04C84.88 73.12 85.44 73 85.92 72.76C86.56 72.4 87 71.76 87.12 71C87.12 70.16 86.52 69.44 85.72 69.24C85.36 69.16 85 69.12 84.68 69.16C84.64 69.16 84.44 69.16 84.44 69.24C84.44 69.32 84.64 69.36 84.64 69.36C84.88 69.44 85.12 69.6 85.28 69.8C85.48 70.04 85.6 70.28 85.64 70.56C85.68 71.2 85.4 71.8 84.92 72.24C84.68 72.44 84.4 72.6 84.12 72.72C84 72.76 84.56 72.72 84.56 72.76C84.56 72.8 84.6 72.76 84.6 72.76C84.56 72.76 84.52 72.72 84.52 72.72C84.4 72.64 84.28 72.56 84.2 72.48C83.8 72.08 83.64 71.52 83.72 70.96C83.88 70.24 84.32 69.64 84.92 69.28C85.08 69.2 84.44 69.08 84.4 69.08C84.2 69.04 84 69.04 83.84 69.04C83.68 69.04 83.56 69.04 83.4 69.12Z" fill="#3D3D3D"/>
|
||||
<path d="M82.2 73.8797C82.6 73.6397 83.04 73.4397 83.52 73.3197C83.92 73.1997 84.36 73.1597 84.8 73.1997C85.56 73.3997 86.24 73.8397 86.76 74.3997C86.96 74.5997 87.4 74.5997 87.64 74.6397C87.72 74.6397 88.28 74.6797 88.2 74.5997C87.24 73.7197 86.04 73.1597 84.72 72.9997C83.36 72.7597 82 72.9597 80.8 73.6397C80.68 73.7197 81.24 73.8397 81.28 73.8797C81.48 73.9197 81.68 73.9597 81.84 73.9597C82 73.9197 82.12 73.9197 82.2 73.8797Z" fill="#3D3D3D"/>
|
||||
<path d="M40.92 69.0397C40.12 69.6397 39.68 70.6397 39.8 71.5997C39.88 72.7997 41 73.5997 42.08 73.9597C42.6 74.1597 43.16 74.2397 43.72 74.1997C44.2 74.0797 44.64 73.7597 44.92 73.3597C45.52 72.6397 45.68 71.6397 45.36 70.7197C44.8 69.5197 43.64 68.7197 42.32 68.6797C42 68.6797 42.2 69.0397 42.32 69.1597C42.56 69.4397 42.88 69.5997 43.24 69.6397C43.4 69.6397 43.52 69.6397 43.68 69.6797C43.56 69.6397 43.88 69.7197 43.72 69.6797C43.76 69.6797 43.84 69.7597 43.72 69.6797L43.84 69.7597C43.72 69.6797 43.84 69.7197 43.84 69.7597L43.92 69.8397C43.88 69.7997 43.92 69.8797 43.92 69.8797C44 69.9997 44.08 70.1597 44.16 70.3197C44.36 70.9997 44.24 71.7597 43.8 72.3197C43.6 72.6397 43.32 72.8797 43 73.0797C42.64 73.2397 42.24 73.2397 41.88 73.1197C41.72 73.0797 41.6 73.0397 41.44 72.9997L41.36 72.9597C41.24 72.9197 41.44 73.0397 41.36 72.9597C41.28 72.8797 41.28 72.8797 41.36 72.9597C41.24 72.8797 41.32 72.9197 41.36 72.9597C41.28 72.9197 41.32 72.9197 41.32 72.9197C41.28 72.8797 41.24 72.7997 41.2 72.7597C41.12 72.5597 41.08 72.3597 41.08 72.1997C41 71.3197 41.36 70.4797 42.04 69.9597C42.28 69.7997 41.96 69.4797 41.8 69.3597C41.64 69.2397 41.48 69.1197 41.32 69.0797C41.2 69.0397 41.04 68.9997 40.92 69.0397Z" fill="#3D3D3D"/>
|
||||
<path d="M39.2 75.7199C39.92 74.8799 41.28 74.7999 42.28 74.7999C43.28 74.7999 44.6 74.9999 45.4 75.7599C45.48 75.8399 45.84 76.1999 45.92 75.9999C46 75.7999 45.48 75.3199 45.4 75.2399C44.4 74.3199 43.12 73.7599 41.76 73.7199C41.08 73.6799 40.36 73.7599 39.68 73.8799C39.12 73.9599 38.6 74.2399 38.16 74.6399C37.96 74.8399 39.04 75.8799 39.2 75.7199Z" fill="#3D3D3D"/>
|
||||
<path d="M40.72 110.36C40 110.84 39.52 111.6 39.4 112.44C39.32 112.88 39.32 113.36 39.48 113.8C39.68 114.24 40 114.6 40.4 114.84C41.36 115.44 42.76 115.68 43.76 114.92C44.48 114.36 45.12 113.28 44.92 112.32C44.72 111.36 43.68 110.84 42.8 110.56C42.44 110.48 42.08 110.48 41.76 110.64C41.48 110.76 41.52 110.92 41.76 111C42.4 111.12 42.96 111.52 43.32 112.08C43.68 112.8 43.32 113.68 42.88 114.28C42.76 114.44 42.64 114.56 42.52 114.68C42.44 114.72 42.4 114.8 42.32 114.84C42.28 114.84 42.28 114.88 42.24 114.88C42.12 114.96 42.48 114.8 42.48 114.84C42.48 114.88 42.48 114.84 42.52 114.84L42.4 114.8C42.32 114.76 42.24 114.72 42.16 114.68C42 114.6 41.8 114.48 41.64 114.4C41.32 114.2 41.08 113.92 41 113.56C40.92 113.2 40.92 112.84 40.96 112.44C41.04 111.68 41.48 110.96 42.12 110.52C42.4 110.36 41.96 110.2 41.84 110.2C41.4 110.16 41.04 110.2 40.72 110.36Z" fill="#3D3D3D"/>
|
||||
<path d="M39.24 116.28C41.08 115.32 43.36 115.76 44.96 117C45.2 117.2 45.64 117.08 45.88 117C45.96 116.96 46.56 116.76 46.36 116.6C44.04 114.8 40.68 114.76 38.12 116.12C37.88 116.24 37.92 116.44 38.2 116.48C38.52 116.48 38.88 116.44 39.24 116.28Z" fill="#3D3D3D"/>
|
||||
<path d="M122.2 168.48C119.52 173.2 118.2 178.52 118.28 183.92C118.28 184.6 120.24 184.92 120.24 184.4C120.12 179 121.48 173.64 124.16 168.96C124.4 168.52 122.56 167.88 122.2 168.48Z" fill="#3D3D3D"/>
|
||||
<path d="M155.68 170.52C160 175.48 163.04 181.48 164.48 187.92C164.68 188.8 166.6 189.04 166.36 187.92C164.84 181.2 161.68 174.92 157.12 169.76C156.76 169.4 156.24 169.28 155.76 169.48C155.32 169.72 155.4 170.2 155.68 170.52Z" fill="#3D3D3D"/>
|
||||
<path d="M148.8 114.16L141.44 95.2003C141.44 95.2003 141.28 80.3203 143.24 78.6003C145.84 76.2803 151.76 75.6403 158.88 79.2003C165.68 82.5603 171.96 86.2403 169.36 101.32C168.96 103.6 169.96 116.52 168.28 118.12C165.4 120.88 156.28 121.92 148.8 114.16Z" fill="white"/>
|
||||
<path d="M149.76 113.88L147.16 107.2L143.16 96.88L142.6 95.48C142.52 95.32 142.44 95.12 142.4 94.92C142.36 94.68 142.36 94.4 142.4 94.16C142.4 93.52 142.4 92.84 142.4 92.2C142.44 90.24 142.48 88.24 142.6 86.28C142.68 84.32 142.92 82.4 143.28 80.48C143.4 79.88 143.6 79.28 143.88 78.72C143.92 78.64 143.92 78.68 143.92 78.68C143.92 78.68 143.96 78.6 144 78.6C144.12 78.48 144.24 78.36 144.4 78.28C144.72 78.04 145.12 77.84 145.48 77.68C145.92 77.52 146.36 77.36 146.84 77.28C147.44 77.16 148 77.12 148.6 77.12C150.08 77.12 151.56 77.28 153 77.68C155.64 78.4 158.16 79.48 160.52 80.88C162.12 81.72 163.6 82.8 164.88 84.04C168.12 87.28 169 91.84 168.84 96.28C168.76 98.04 168.6 99.76 168.32 101.48C168.24 102.08 168.2 102.68 168.2 103.24C168.16 105.28 168.24 107.32 168.24 109.36C168.28 111.48 168.2 113.64 168 115.76C167.96 116.48 167.8 117.16 167.52 117.8C167.24 118.24 166.84 118.6 166.36 118.84C166.2 118.92 166 119 165.84 119.08C166 119 165.68 119.12 165.68 119.16C165.56 119.2 165.48 119.24 165.36 119.28L165.2 119.32C165.24 119.32 165.4 119.28 165.2 119.32L164.88 119.4L164.56 119.48C164.36 119.52 164.48 119.48 164.52 119.48L164.28 119.52C163.28 119.68 162.24 119.76 161.2 119.64C158.44 119.4 155.8 118.48 153.52 116.96C152.12 116.04 150.84 114.96 149.68 113.76C149.32 113.36 147.52 114.08 147.88 114.44C151.96 118.68 157.76 121.32 163.72 120.36C164.84 120.2 165.96 119.88 167 119.4C167.8 119.08 168.52 118.6 169.16 118C169.52 117.52 169.76 116.92 169.84 116.32C170 115.4 170.12 114.44 170.16 113.48C170.28 111.16 170.28 108.84 170.24 106.52C170.24 104.8 170.08 103 170.28 101.28C170.44 99.8 170.72 98.28 170.84 96.76C170.96 95.28 170.96 93.76 170.8 92.28C170.6 90.04 169.92 87.84 168.8 85.88C166.8 82.52 163.4 80.6 160 78.88C156.96 77.36 153.6 76.24 150.16 76.2C147.64 76.16 144.8 76.64 142.76 78.24C141.6 79.16 141.4 80.68 141.16 82.08C140.84 84.2 140.68 86.36 140.6 88.52C140.52 90.36 140.48 92.2 140.48 94C140.4 94.56 140.44 95.12 140.6 95.64L144 104.4L147.64 113.8L147.84 114.36C148 114.92 149.92 114.32 149.76 113.88Z" fill="#3D3D3D"/>
|
||||
<path d="M135.88 115.08C135.88 115.08 136.68 114.16 137.6 112.92C138.52 111.68 138.56 110.76 135.08 107.4C128.28 100.8 132.96 93.7203 132.96 93.7203C132.96 93.7203 131.76 93.3203 130.2 91.7603C128.84 90.4003 128.4 86.7203 133.8 87.4803C135.04 87.6403 136.52 87.6803 137.92 86.2403C139.68 84.4003 140.72 82.6003 143.84 79.3203L143.8 81.3603C143.72 86.7203 146 91.8003 150 95.3203L150.48 95.3603C146.84 103.36 148.16 109.96 148.16 109.96C148.16 109.96 148.4 112.48 148.76 114.2C148.8 114.16 140 119.88 135.88 115.08Z" fill="white"/>
|
||||
<path d="M136.76 114.96C137.36 114.28 137.96 113.56 138.48 112.8C138.8 112.44 139 112 139.08 111.52C139.08 110.96 138.92 110.4 138.6 109.96C138 109.08 137.32 108.28 136.52 107.56C135.48 106.6 134.56 105.48 133.8 104.28C132.32 101.76 131.96 98.7599 132.84 95.9599C133.08 95.0799 133.44 94.2799 133.92 93.4799C133.96 93.4399 133.92 93.3599 133.88 93.3199C133.36 93.1199 132.92 92.8799 132.48 92.5599C131.76 92.1199 131.16 91.5199 130.72 90.8399C130.28 90.0399 130.04 88.9199 130.68 88.1599C130.76 88.0799 130.8 87.9999 130.88 87.9599C131.08 87.7999 130.8 87.9999 130.92 87.9199L130.96 87.8799C130.88 87.9199 130.88 87.9199 130.96 87.8799L130.88 87.9199C131 87.8799 131 87.8799 130.88 87.9199C131.2 87.8799 130.8 87.9199 131 87.8799C131.24 87.8399 131.44 87.8399 131.68 87.8399C132.68 87.8399 133.68 88.0799 134.68 87.9999C135.96 87.8799 137.16 87.3999 138.2 86.5999C138.88 85.9999 139.52 85.3199 140.08 84.5599C141.56 82.7199 143.04 80.8799 144.64 79.1599L142.84 79.6399C142.8 81.5999 142.76 83.5599 143.16 85.4799C143.72 88.3199 144.96 90.9999 146.8 93.2799C147.28 93.8799 147.84 94.4799 148.4 95.0399C148.64 95.2799 148.92 95.6399 149.2 95.7199C149.36 95.7599 149.52 95.7599 149.68 95.7599L149.52 95.5599C147.48 100.16 146.52 105.24 147.2 110.24C147.4 111.64 147.52 113.08 147.8 114.48L148 114.16C148.24 114 148.08 114.12 147.92 114.2C147.72 114.32 147.52 114.44 147.32 114.56L146.92 114.8L146.68 114.92C146.48 115 146.72 114.92 146.52 115C146.12 115.2 145.72 115.4 145.32 115.56L145.08 115.64L144.84 115.72C144.6 115.8 144.36 115.92 144.08 116C143.8 116.08 143.8 116.08 143.52 116.16C143.32 116.2 143 116.28 142.84 116.32C141.88 116.56 140.84 116.56 139.88 116.44C138.68 116.24 137.6 115.64 136.76 114.72C136.36 114.28 134.72 115.2 134.88 115.4C138.24 119.2 144.36 116.92 148.08 114.92C148.56 114.68 149 114.4 149.48 114.12C149.56 114.08 149.72 113.92 149.68 113.8C148.84 109.76 148.52 105.52 149.32 101.44C149.76 99.2399 150.44 97.0799 151.36 95.0399C151.4 94.9199 151.28 94.8799 151.2 94.8399C151.04 94.8399 150.92 94.8399 150.76 94.7999C150.56 94.6399 150.36 94.4399 150.2 94.2399C149.68 93.7199 149.2 93.1999 148.72 92.6399C146.04 89.3199 144.64 85.1999 144.68 80.9599C144.68 80.2799 144.68 79.5999 144.72 78.9199C144.72 78.7199 144 78.8799 143.92 78.8799C143.56 78.9599 143.2 79.1199 142.92 79.3999C141.4 80.9999 140 82.7199 138.64 84.4399C138.12 85.0799 137.6 85.7199 137.04 86.3199C136.76 86.6399 136.4 86.9199 136 87.0399C135.52 87.1199 135.04 87.0799 134.56 86.9999C132.72 86.7599 130.36 86.8799 129 88.3199C128.32 89.1199 128.2 90.2399 128.68 91.1599C129.08 91.9199 129.68 92.5599 130.36 93.0399C130.88 93.4799 131.48 93.8399 132.12 94.0799L132.08 93.9199C130.84 95.9199 130.32 98.2799 130.52 100.64C130.8 102.96 131.8 105.16 133.4 106.88C134.28 107.88 135.28 108.72 136.16 109.76C136.64 110.28 136.96 110.88 137.2 111.52C137.32 112 137.2 112.52 136.88 112.92C136.32 113.72 135.72 114.48 135.08 115.2C134.8 115.52 135.36 115.48 135.56 115.48C135.96 115.48 136.4 115.28 136.76 114.96Z" fill="#3D3D3D"/>
|
||||
<path d="M140.8 88.7602C140.8 88.7602 139.76 89.4402 140.52 90.4002C141.28 91.3602 142.44 90.4402 142.04 89.4402C141.92 88.9602 141.44 88.6402 140.92 88.7602C140.88 88.7602 140.84 88.7602 140.8 88.7602Z" fill="#3D3D3D"/>
|
||||
<path d="M147.36 98.2402C147.36 98.2402 150.08 93.3602 152.8 96.8402C155.52 100.32 150.52 104.56 147 104.16" fill="white"/>
|
||||
<path d="M148.2 98.64C148.28 98.48 148.4 98.32 148.52 98.16C148.64 98 148.72 97.84 148.84 97.72C148.92 97.64 148.96 97.56 149.04 97.48L149.16 97.32C149.32 97.16 149.12 97.36 149.24 97.24C149.4 97.08 149.6 96.92 149.8 96.76C149.84 96.72 150.16 96.52 149.92 96.68L150.28 96.48C150.32 96.44 150.56 96.4 150.28 96.48L150.48 96.44L150.68 96.4C150.64 96.4 150.44 96.4 150.6 96.4C150.68 96.4 150.72 96.4 150.8 96.4C150.56 96.4 150.72 96.4 150.8 96.4L150.92 96.44C151.04 96.48 151 96.48 150.88 96.44L151 96.48C151.08 96.52 151.16 96.56 151.2 96.6C151.04 96.52 151.2 96.6 151.24 96.64C151.4 96.72 151.52 96.84 151.64 96.96C151.68 97 151.84 97.2 151.92 97.28C152 97.36 152.04 97.44 152.08 97.52C152.12 97.6 152.16 97.64 152.2 97.72C152.48 98.2 152.6 98.76 152.52 99.32C152.44 99.84 152.24 100.36 151.96 100.8C151.8 101.08 151.6 101.32 151.36 101.56C151.48 101.44 151.28 101.64 151.28 101.64L151.16 101.76C151 101.92 150.84 102.04 150.68 102.16C150.52 102.28 150.4 102.36 150.24 102.48C150 102.64 150.4 102.4 150.12 102.56L149.88 102.68C149.68 102.76 149.52 102.88 149.32 102.96L149.12 103.04C149.08 103.04 148.8 103.16 149 103.08C148.64 103.2 148.28 103.28 147.92 103.36C147.64 103.4 148.08 103.36 147.88 103.36C147.8 103.36 147.68 103.36 147.6 103.36H147.36C147.32 103.36 146.96 103.32 147.24 103.36C146.76 103.32 146.2 103.4 146 103.92C145.92 104.36 146.2 104.76 146.6 104.88C146.64 104.88 146.68 104.88 146.72 104.88C148.44 105.04 150.16 104.56 151.56 103.6C152.84 102.76 154.04 101.48 154.4 99.96C154.76 98.24 154.08 96.52 152.64 95.48C151.28 94.48 149.6 94.68 148.28 95.64C147.52 96.24 146.88 96.96 146.4 97.8C146.2 98.16 146.28 98.6 146.64 98.8C146.68 98.84 146.72 98.84 146.76 98.88C147.24 99.12 147.96 99.08 148.2 98.64Z" fill="#3D3D3D"/>
|
||||
<path d="M140.48 97.3999V97.4399L140.52 97.2399C140.48 97.3999 140.44 97.5199 140.4 97.6799C140.4 97.7199 140.36 97.7599 140.36 97.7999C140.36 97.7599 140.44 97.6399 140.4 97.7599C140.36 97.8799 140.32 97.8799 140.28 97.9199L140.2 97.9999C140.12 98.1199 140.32 97.8799 140.24 97.9599C140.16 98.0399 140.16 98.0799 140.08 98.1199L140 98.1999C139.88 98.2799 139.96 98.2399 140 98.1999C139.96 98.2399 139.92 98.2399 139.92 98.2799L139.84 98.3199C139.68 98.3999 139.88 98.3199 139.92 98.2799C139.88 98.3199 139.76 98.3599 139.72 98.3999L139.48 98.4799C139.28 98.5599 139.68 98.4399 139.56 98.4399L139.44 98.4799C139.28 98.5199 139.12 98.5599 138.96 98.5999H138.84C138.72 98.6399 139.08 98.5599 138.88 98.5999L138.6 98.6399C138.32 98.6399 138.08 98.7599 137.88 98.8799C137.68 98.9999 137.52 99.1599 137.44 99.3999C137.36 99.5599 137.4 99.7599 137.56 99.8799C137.72 99.9999 137.92 100.08 138.12 100.04C139.12 99.9999 140.12 99.6799 140.96 99.1599C141.36 98.8799 141.72 98.5599 141.96 98.1599C142.2 97.7999 142.36 97.3599 142.44 96.9199C142.48 96.7599 142.28 96.5599 142.16 96.5199C141.96 96.4399 141.72 96.4399 141.48 96.4799C140.96 96.5999 140.6 96.9599 140.48 97.3999Z" fill="#3D3D3D"/>
|
||||
<path d="M162.08 96.4001C156.2 93.6801 151.56 88.8801 149.04 82.9201C148.64 81.9601 146.68 82.4001 147.12 83.4401C149.2 88.3601 152.68 92.5601 157.12 95.6001C158.4 96.4801 159.76 97.2401 161.16 97.8801C162.16 98.3201 163.24 96.9601 162.08 96.4001Z" fill="#3D3D3D"/>
|
||||
<path d="M154.68 102.68C155.36 106.88 153.44 112.12 156.72 115.6C157.16 116.08 158.76 114.88 158.36 114.48C155.16 111.08 157.08 105.92 156.4 101.8C156.28 101.12 154.56 102.08 154.68 102.68Z" fill="#3D3D3D"/>
|
||||
<path d="M160.72 102.24C160.76 105.16 160.96 108.08 161.28 111C161.4 111.48 161.64 111.88 162 112.16C162.16 112.28 162.64 112.6 162.6 112.16C162.28 109.24 162.08 106.32 162.04 103.4C161.96 102.92 161.68 102.52 161.32 102.24C161.12 102.08 160.68 101.8 160.72 102.24Z" fill="#3D3D3D"/>
|
||||
<path d="M132.28 116.4C132.28 116.4 140 110.4 148.8 113.24C157.6 116.08 163.08 170.4 163.08 170.4C163.08 170.4 138.8 177.64 118.12 168.84C118.12 168.88 118.64 135.68 132.28 116.4Z" fill="#CECECE"/>
|
||||
<path d="M133 117.12L133.12 117.04C132.92 117.16 133.32 116.88 133.12 117.04L133.36 116.88C133.84 116.56 134.32 116.28 134.8 116C136.36 115.12 138 114.44 139.76 114C142 113.4 144.32 113.28 146.6 113.64C147.24 113.76 147.88 113.92 148.48 114.08C148.6 114.12 148.68 114.16 148.8 114.2L148.88 114.24C149.08 114.32 148.68 114.12 148.8 114.2C148.92 114.28 149.04 114.36 149.16 114.4L149.32 114.52C149.6 114.72 149.2 114.4 149.36 114.56C149.6 114.8 149.88 115.04 150.08 115.32C150.16 115.4 150.2 115.48 150.28 115.56C150.12 115.36 150.44 115.76 150.28 115.56C150.44 115.76 150.52 115.92 150.68 116.12C151.2 116.92 151.64 117.76 152.04 118.6L152.2 118.96L152.28 119.16C152.16 118.92 152.28 119.12 152.28 119.16C152.4 119.44 152.48 119.68 152.6 119.96C152.84 120.52 153.04 121.08 153.24 121.68C153.68 122.92 154.08 124.2 154.44 125.48C156.2 131.48 157.4 137.64 158.48 143.76C159 146.8 159.52 149.92 159.96 153.04C160.36 155.76 160.72 158.48 161.08 161.2C161.36 163.2 161.6 165.24 161.8 167.24C161.92 168.2 161.96 169.24 162.12 170.2C162.12 170.24 162.12 170.28 162.12 170.32L162.8 169.44C159.72 170.32 156.6 170.96 153.4 171.36C146.32 172.44 139.16 172.52 132.04 171.6C127.32 171 122.72 169.76 118.32 167.92L119.08 168.88C119.08 167.72 119.16 166.6 119.24 165.44C119.44 162.44 119.68 159.76 120.04 156.72C120.56 152.6 121.24 148.48 122.12 144.44C123.08 139.84 124.36 135.36 125.96 130.92C127.56 126.48 129.64 122.24 132.16 118.28C132.48 117.8 132.8 117.32 133.12 116.88C133.76 115.96 132.12 114.84 131.44 115.84C128.76 119.76 126.52 123.96 124.84 128.4C123.12 132.88 121.72 137.48 120.64 142.16C119.68 146.32 118.92 150.56 118.36 154.8C117.92 158.04 117.6 161.24 117.36 164.48C117.2 165.88 117.16 167.32 117.16 168.72V168.76C117.2 169.2 117.48 169.6 117.92 169.72C125.6 172.96 134 174.2 142.28 174.12C148.28 174.08 154.24 173.4 160.08 172.12C161.16 171.88 162.28 171.64 163.36 171.32C163.76 171.24 164.04 170.88 164.04 170.44C163.8 167.88 163.48 165.32 163.16 162.76C162.44 156.88 161.6 151.04 160.6 145.2C159.6 138.84 158.24 132.52 156.6 126.28C155.92 123.76 155.08 121.24 154.08 118.84C153.32 117.04 152.44 115.16 151.08 113.68C150.56 113.08 149.92 112.64 149.16 112.32C146.96 111.48 144.4 111.32 142.08 111.52C138.56 111.88 135.16 113.12 132.28 115.12C132.04 115.28 131.84 115.44 131.64 115.6C131.24 115.92 131.4 116.6 131.68 116.92C132 117.4 132.6 117.44 133 117.12Z" fill="#CECECE"/>
|
||||
<path d="M115.84 93.1999C115.68 93.1999 115.48 93.1599 115.32 93.1199C114.113 94.5915 112.62 95.7784 111.045 96.6469L111.16 99.7199L111.64 113.76L111.5 122C113.687 120.969 116.398 119.949 118.68 119.08C122.84 117.48 127.12 116.16 131.48 115.2C134.92 114.48 138.64 113.8 142.08 114.68C144.32 115.28 146.84 116.56 147.32 119.08C147.48 120.32 147.28 121.6 146.68 122.72C145.8 124.44 144.64 126.04 143.2 127.36C140.96 129.56 138.44 131.4 135.68 132.84C129.8 135.92 123.4 137.96 116.8 138.84C113.64 139.28 110.48 139.44 107.28 139.24C104.64 139.12 102.08 138.6 99.6401 137.64C97.8001 136.88 96.5 135.76 95.5 134C94.46 132.16 94.2 130.08 94 128C93.52 122.48 93.8001 116.72 94.7601 111.32C95.6001 106.76 97.3 102.98 98.5 98.4999C98.7 97.6999 98.7201 96.2799 98.9601 95.4799C98.8801 95.3599 98.8 95.0799 98.5 94.9999C97.6 93.0266 96 89.4999 96 88.4999C96 87.7928 96.8 83.8999 99.5 82.4999C101.66 81.3799 103.26 81.2466 104 81.4999L102 77.4999C101.5 76.4999 101.66 74.6599 102.5 73.4999C103.58 71.9799 105.36 71.8799 106.6 73.0399L106.72 73.1599C106.84 73.2799 106.96 73.3599 107.04 73.4799C107.24 73.6799 107.44 73.8799 107.6 74.1199C108.04 74.7599 108.44 75.3999 108.8 76.0799C109.64 77.6799 110.36 79.3199 111.08 80.9599C111.72 82.3599 112.28 83.8399 113.04 85.1999C113.24 85.6399 113.52 86.0399 113.88 86.3999C114.36 86.7999 114.92 87.1199 115.52 87.3999C116.96 88.0799 118.48 88.6399 119.8 89.4799C120.76 90.1199 121.88 91.1599 121.44 92.4399C120.96 93.7999 118.92 93.6399 117.8 93.5199C117.12 93.4399 116.36 93.2799 115.84 93.1999Z" fill="white"/>
|
||||
<path d="M101.943 73.1464C103.023 71.6265 105.423 71.9065 106.663 73.0663L106.783 73.1865C106.903 73.3065 107.023 73.3868 107.103 73.5068C107.303 73.7066 107.503 73.9066 107.663 74.1464C108.103 74.7864 108.503 75.4264 108.863 76.1064C109.703 77.7063 110.423 79.3463 111.143 80.9863C111.783 82.3863 112.343 83.8665 113.103 85.2265C113.303 85.6665 113.583 86.0667 113.943 86.4267C114.423 86.8266 114.983 87.1467 115.583 87.4267C117.023 88.1067 118.543 88.6668 119.863 89.5068C120.823 90.1468 121.943 91.1868 121.503 92.4667C121.022 93.8263 118.983 93.6668 117.863 93.5468C117.183 93.4668 116.423 93.3065 115.903 93.2265C115.743 93.2265 115.543 93.1864 115.384 93.1464C114.176 94.618 112.684 95.8053 111.108 96.6738L111.223 99.746L111.703 113.786L111.984 121.502C114.171 120.471 116.421 119.536 118.703 118.667C122.863 117.067 127.143 115.746 131.503 114.786C134.943 114.066 138.703 113.827 142.143 114.707C144.383 115.307 146.904 116.586 147.384 119.106C147.544 120.346 147.343 121.626 146.743 122.746C145.863 124.466 144.703 126.067 143.263 127.387C141.023 129.587 138.503 131.426 135.743 132.866C129.863 135.946 123.463 137.986 116.863 138.866C113.703 139.306 110.543 139.466 107.343 139.267C104.703 139.147 102.143 138.627 99.7029 137.667C97.8629 136.907 96.1433 135.706 95.1433 133.946C94.1033 132.106 93.7427 129.946 93.5427 127.866C93.0628 122.346 93.863 116.746 94.823 111.347C95.663 106.787 96.7031 102.266 97.9031 97.7861C98.103 96.9863 98.2628 96.1864 98.5027 95.3866C98.4227 95.2667 98.3434 95.1062 98.2634 94.9462C97.3634 92.9729 95.5632 89.5263 95.5632 88.5263C95.5633 87.8186 96.3234 83.4262 99.0232 82.0263C101.183 80.9064 102.443 80.7329 103.183 80.9863C103.923 81.239 101.563 77.5263 101.563 77.5263C101.063 76.5263 101.103 74.3064 101.943 73.1464ZM104.277 73.1464C103.741 73.1864 103.951 73.2233 103.663 73.6669C103.143 74.4668 102.983 75.3867 103.183 76.3066C103.57 77.4601 104.971 80.9263 105.563 82.5263C105.959 83.5951 105.087 83.8825 104.063 83.5263C103.555 83.3493 103.061 82.5265 102.563 82.5263C93.0632 85.4663 99.5634 91.5268 100.303 95.5068C100.303 97.0267 99.3432 98.8265 99.0232 100.146C97.7832 104.986 96.7832 109.866 96.0232 114.786C95.6232 117.466 95.3434 120.186 95.2234 122.906C95.1034 125.346 95.2228 127.746 95.6228 130.146C95.9828 131.946 96.583 133.786 97.863 135.146C99.223 136.586 101.183 137.386 102.983 137.866C104.183 138.146 105.383 138.347 106.583 138.467C107.903 138.587 109.263 138.627 110.623 138.587C113.583 138.467 116.583 138.107 119.503 137.507C125.583 136.267 131.623 134.107 136.823 130.667C139.583 128.827 142.223 126.507 143.983 123.667C145.223 121.667 145.943 119.026 144.183 117.146C142.423 115.266 139.463 114.946 137.143 114.946C133.183 114.946 125.543 117.307 125.543 117.307L115.503 121.026L112.143 122.587C112.138 122.591 111.541 123.038 110.623 122.946C109.704 122.854 109.782 119.374 109.783 119.347L109.303 105.307C109.303 105.307 108.563 97.5277 108.983 96.5068C109.288 95.7657 110.343 95.6266 110.703 95.3866C111.71 94.7284 112.638 93.7856 113.384 92.8661C113.824 92.3465 114.704 92.3066 115.303 92.3066C116.06 92.3863 118.716 92.8216 118.743 92.8261C118.743 92.8261 119.095 92.85 119.303 92.706C119.503 92.5061 119.583 92.2661 119.583 91.9863C119.623 90.7464 118.423 90.0267 117.503 89.5068C116.183 88.7868 114.823 88.3069 113.503 87.6269C112.503 87.1869 111.703 86.4265 111.143 85.4667C110.463 84.2269 109.903 82.9067 109.343 81.6269C108.663 80.0669 107.983 78.5063 107.223 76.9863C106.661 75.8987 106.098 74.7056 105.239 73.8027L105.006 73.5693C104.874 73.4128 104.746 73.1114 104.277 73.1464Z" fill="#3D3D3D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 51 KiB |
@@ -0,0 +1,74 @@
|
||||
<svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M115.648 47.3601L270.144 46.9121L245.952 150.976L86.0796 148.864L115.648 47.3601Z" fill="#CECECE"/>
|
||||
<path d="M246.208 151.296L85.6318 149.12L115.328 46.9763H115.584L270.464 46.5283L246.208 151.296ZM86.5278 148.544L245.76 150.656L269.696 47.2323L115.84 47.6803L86.5278 148.544Z" fill="#CECECE"/>
|
||||
<path d="M123.648 53.7599C123.648 53.7599 121.024 53.8879 122.368 56.6399C123.712 59.3919 125.76 58.4319 126.272 56.6399C126.784 54.8479 124.672 53.5039 123.648 53.7599Z" fill="white"/>
|
||||
<path d="M131.072 53.7599C131.072 53.7599 128.448 53.8879 129.792 56.6399C131.136 59.3919 133.184 58.4319 133.696 56.6399C134.208 54.8479 132.032 53.5039 131.072 53.7599Z" fill="white"/>
|
||||
<path d="M138.496 53.7599C138.496 53.7599 135.872 53.8879 137.216 56.6399C138.56 59.3919 140.608 58.4319 141.12 56.6399C141.632 54.8479 139.456 53.5039 138.496 53.7599Z" fill="white"/>
|
||||
<path d="M162.015 84.4083L161.992 86.9043L187.144 87.1413L187.167 84.6453L162.015 84.4083Z" fill="white"/>
|
||||
<path d="M197.119 84.6719H192.383V87.1679H197.119V84.6719Z" fill="#3D3D3D"/>
|
||||
<path d="M225.664 84.6729H203.904V87.1688H225.664V84.6729Z" fill="white"/>
|
||||
<path d="M169.92 90.9453H161.152V93.4413H169.92V90.9453Z" fill="white"/>
|
||||
<path d="M197.12 90.9453H174.592V93.4413H197.12V90.9453Z" fill="white"/>
|
||||
<path d="M211.072 90.9453H202.496V93.4413H211.072V90.9453Z" fill="white"/>
|
||||
<path d="M157.312 84.4805H154.368V86.9765H157.312V84.4805Z" fill="#3D3D3D"/>
|
||||
<path d="M155.776 90.9453H152.256V93.4413H155.776V90.9453Z" fill="#3D3D3D"/>
|
||||
<path d="M154.048 98.625H150.528V101.121H154.048V98.625Z" fill="#3D3D3D"/>
|
||||
<path d="M180.16 98.625H159.936V101.121H180.16V98.625Z" fill="white"/>
|
||||
<path d="M175.466 109.468L175.443 111.964L200.595 112.201L200.618 109.705L175.466 109.468Z" fill="white"/>
|
||||
<path d="M210.56 109.76H205.824V112.256H210.56V109.76Z" fill="#3D3D3D"/>
|
||||
<path d="M239.104 109.76H217.344V112.256H239.104V109.76Z" fill="white"/>
|
||||
<path d="M183.36 116.032H174.592V118.528H183.36V116.032Z" fill="white"/>
|
||||
<path d="M210.56 116.032H188.032V118.528H210.56V116.032Z" fill="white"/>
|
||||
<path d="M224.512 116.031H215.936V118.527H224.512V116.031Z" fill="#3D3D3D"/>
|
||||
<path d="M170.752 109.505H167.808V112.001H170.752V109.505Z" fill="white"/>
|
||||
<path d="M169.216 116.032H165.696V118.528H169.216V116.032Z" fill="#3D3D3D"/>
|
||||
<path d="M167.488 123.712H163.968V126.208H167.488V123.712Z" fill="white"/>
|
||||
<path d="M193.599 123.712H173.375V126.208H193.599V123.712Z" fill="white"/>
|
||||
<path d="M166.272 163.393L215.68 163.969L207.808 198.017L155.584 197.313L166.272 163.393Z" fill="#3D3D3D"/>
|
||||
<path d="M207.808 198.336L155.52 197.632C155.328 197.632 155.2 197.504 155.2 197.312V197.248L165.952 163.392C166.016 163.264 166.144 163.2 166.272 163.136L215.68 163.712C215.808 163.712 215.872 163.776 215.936 163.84C216 163.904 216 164.032 216 164.096L208.128 198.144C208.128 198.208 207.936 198.336 207.808 198.336ZM155.968 196.992L207.552 197.696L215.296 164.288L166.528 163.712L155.968 196.992Z" fill="#3D3D3D"/>
|
||||
<path d="M181.268 173.455C187.961 173.152 194.666 173.564 201.209 174.637C201.525 174.69 201.449 171.628 200.588 171.498C193.988 170.454 187.341 170.013 180.647 170.316C180.161 170.352 180.552 173.466 181.268 173.455Z" fill="white"/>
|
||||
<path d="M245.632 30.4004L295.04 30.9764L287.168 64.9604L234.88 64.2564L245.632 30.4004Z" fill="#3D3D3D"/>
|
||||
<path d="M287.168 65.28L234.88 64.576C234.752 64.576 234.688 64.512 234.624 64.448C234.56 64.384 234.56 64.256 234.56 64.192L245.312 30.336C245.376 30.208 245.504 30.08 245.632 30.144L295.04 30.72C295.168 30.72 295.232 30.784 295.296 30.848C295.36 30.912 295.36 31.04 295.36 31.104L287.488 65.152C287.424 65.216 287.296 65.28 287.168 65.28ZM235.328 63.936L286.912 64.64L294.656 31.232L245.824 30.72L235.328 63.936Z" fill="#3D3D3D"/>
|
||||
<path d="M250.176 52.8002C251.648 50.3042 253.76 48.2562 256.256 46.7202C257.408 46.0162 258.688 45.4402 260.032 45.0562C260.992 44.8002 262.272 44.4162 263.04 45.3122C263.936 46.4002 264.32 48.0002 264.576 49.3442C264.896 50.7522 264.832 52.2242 264.384 53.6322C264.256 53.9522 264.128 54.2722 263.936 54.5282C263.808 54.7202 263.552 54.8482 263.36 55.0402C263.04 55.4242 264.512 55.8082 264.704 55.4242C264.768 55.2962 264.768 55.1042 264.768 54.9762C264.896 54.5922 265.152 54.2082 265.408 53.8242C266.304 52.6082 267.584 51.7122 269.056 51.2642C272.448 50.3042 273.152 54.3362 273.408 56.8322C273.536 57.9842 276.672 58.5602 276.544 57.1522C276.352 55.2962 276.032 53.3122 274.944 51.7762C273.536 49.9842 271.36 49.0242 269.12 49.1522C266.944 49.2802 264.96 50.1762 263.424 51.7122C262.016 52.9922 260.544 55.6162 263.04 56.7042C265.216 57.6642 267.008 56.1922 267.648 54.2082C268.288 52.3522 267.968 50.2402 267.456 48.3842C266.88 46.3362 266.048 44.4162 264.064 43.4562C262.08 42.4962 259.84 42.6882 257.856 43.3282C253.568 44.7362 249.856 47.6802 247.488 51.5202C246.528 52.7362 249.536 53.8242 250.176 52.8002Z" fill="white"/>
|
||||
<path d="M272.256 40.4488C271.36 41.2168 270.528 42.3688 270.784 43.6488C271.04 44.9288 272.32 45.5048 273.472 45.6968C274.88 45.9528 276.352 45.5688 277.504 44.6728C278.4 43.9048 279.232 42.6888 278.912 41.4088C278.592 40.1288 277.76 39.4888 276.8 38.7848C276.096 38.4008 275.264 38.5288 274.688 39.0408C274.304 39.3608 273.664 40.2568 274.304 40.7048C274.816 41.0248 275.264 41.4088 275.648 41.8568L275.456 41.6648C275.648 41.9208 275.84 42.2408 275.904 42.5608L275.84 42.2408C275.904 42.4328 275.904 42.6888 275.904 42.8808V42.5608C275.904 42.6888 275.904 42.7528 275.84 42.8168L275.776 42.9448C275.712 43.0728 275.776 43.0088 275.84 42.8168C275.776 42.8808 275.776 43.0088 275.712 43.0728C275.712 43.1368 275.648 43.1368 275.648 43.2008C275.776 43.0088 275.84 42.9448 275.712 43.0728L275.648 43.2008C275.52 43.3288 275.584 43.2648 275.776 43.0728C275.712 43.1368 275.584 43.2008 275.52 43.2648C275.776 43.1368 275.84 43.0728 275.712 43.1368C275.648 43.1368 275.648 43.2008 275.584 43.2008C275.328 43.3288 275.968 43.0728 275.648 43.2008L275.52 43.2648C275.392 43.3288 275.392 43.2648 275.648 43.2648C275.52 43.2648 275.392 43.3288 275.328 43.3288H275.136C275.328 43.3288 275.392 43.3288 275.264 43.3288H274.944C274.88 43.3288 274.624 43.3288 274.624 43.2648H274.688L274.56 43.2008C274.368 43.1368 274.176 43.0728 273.984 42.9448L274.24 43.0728C274.048 42.9448 273.92 42.8168 273.792 42.6888L273.984 42.8808C273.856 42.7528 273.792 42.5608 273.728 42.3688L273.792 42.6248C273.728 42.4968 273.728 42.3048 273.728 42.1768V42.4968C273.728 42.3688 273.792 42.2408 273.792 42.1128C273.792 42.0488 273.856 41.8568 273.792 42.0488C273.728 42.2408 273.792 42.0488 273.856 41.9848C273.92 41.9208 273.92 41.8568 273.92 41.8568C274.048 41.6008 273.728 42.1128 273.856 41.9208L273.984 41.7288C274.176 41.5368 273.664 41.9848 273.92 41.7928C274.24 41.6008 274.432 41.2808 274.56 40.8968C274.624 40.5768 274.56 40.3208 274.304 40.1288C273.6 39.8728 272.768 40.0008 272.256 40.4488Z" fill="white"/>
|
||||
<path d="M257.728 204.865C257.088 207.233 257.6 209.729 259.072 211.713C260.544 213.761 262.784 215.233 265.216 215.809C267.904 216.449 270.72 216.513 273.472 215.937C276.096 215.425 278.848 214.273 280.576 212.097C283.776 208.257 282.368 202.497 279.232 199.105C275.84 195.585 270.848 194.113 266.048 195.201C263.808 195.713 260.608 196.993 260.48 199.681C260.352 200.641 260.8 201.665 261.632 202.177C262.848 202.945 264.576 202.689 265.856 202.561C271.424 202.177 277.44 200.513 281.856 196.993C283.712 195.585 285.12 193.665 285.888 191.489C286.592 189.185 286.144 186.625 284.8 184.641C281.6 180.033 275.456 179.457 270.464 180.993C265.664 182.465 261.824 185.921 259.84 190.465C259.456 191.489 258.944 192.897 259.904 193.793C260.864 194.689 262.336 194.433 263.36 194.049C266.112 193.153 267.072 190.337 267.904 187.841C268.8 185.217 269.312 182.209 268.352 179.521C267.584 177.345 266.048 175.489 264.128 174.273C259.648 171.393 253.76 172.289 249.472 175.105C245.184 177.921 242.752 182.849 243.072 187.969C243.456 192.897 246.528 197.249 251.072 199.297C253.184 200.257 255.744 200.961 258.112 200.513C259.264 200.257 260.736 199.745 261.504 198.721C262.08 197.889 261.952 196.737 261.12 196.161C260.096 195.457 258.944 194.945 257.728 194.753C256.448 194.433 255.168 194.241 253.888 194.177C251.136 194.049 248.384 194.497 245.824 195.393C240.96 197.121 236.288 200.833 234.88 205.953C234.24 208.321 234.432 210.817 235.392 213.057C236.544 215.361 238.592 217.153 241.088 217.921C245.952 219.649 251.712 218.753 256.064 216.129C260.288 213.697 262.784 209.089 262.464 204.225C262.336 201.985 261.44 199.809 259.968 198.145C259.392 197.505 256.512 198.657 257.152 199.425C259.712 202.433 260.032 206.849 258.56 210.433C257.088 213.889 253.952 216.385 250.24 216.961C246.336 217.665 241.28 216.641 238.976 213.121C236.672 209.601 237.184 204.929 239.616 201.537C241.984 198.209 245.696 196.097 249.792 195.713C251.904 195.521 254.016 195.777 256 196.417C256.832 196.673 258.048 196.993 258.56 197.761C258.816 198.081 258.816 198.529 258.688 198.849C258.624 198.977 258.56 198.977 258.56 198.977C258.176 199.041 257.792 199.041 257.408 198.913C256.896 198.849 256.448 198.785 256 198.657C255.04 198.401 254.144 198.081 253.248 197.633C251.456 196.737 249.92 195.393 248.704 193.857C246.208 190.465 245.44 186.113 246.656 182.081C247.744 178.305 250.688 174.849 254.656 174.081C258.432 173.377 262.464 175.425 264.448 178.689C265.536 180.609 265.984 182.849 265.664 185.025C265.344 187.393 264.576 189.761 263.424 191.873C263.36 191.937 262.72 192.897 262.72 192.897L263.232 192.705C263.232 192.577 263.296 192.769 263.232 192.705C263.168 192.641 262.848 192.577 262.72 192.449C261.952 191.681 262.656 190.273 262.976 189.441C263.744 187.713 264.896 186.113 266.304 184.833C269.12 182.081 273.216 181.121 276.992 182.209C281.024 183.425 284.032 187.585 282.944 191.809C281.984 195.457 278.528 197.953 275.136 199.233C272.832 200.065 270.464 200.641 268.032 200.897C267.008 201.025 265.472 201.345 264.512 200.897C263.744 200.449 263.36 199.617 263.488 198.721C263.68 196.801 265.536 196.353 267.2 196.353C269.056 196.289 270.912 196.737 272.64 197.569C276.288 199.233 278.848 202.753 279.296 206.785C279.552 208.769 278.976 210.753 277.76 212.353C276.544 213.825 274.688 214.401 272.832 214.593C268.608 215.041 263.872 213.697 261.696 209.793C260.672 208.065 260.352 206.017 260.864 204.097C260.992 203.329 257.984 203.905 257.728 204.865Z" fill="#CECECE"/>
|
||||
<path d="M259.264 205.506V254.21C259.264 254.786 259.968 255.49 260.288 255.938C260.352 256.066 261.184 256.962 261.184 256.706V208.002C261.184 207.426 260.48 206.722 260.16 206.274C260.096 206.082 259.264 205.186 259.264 205.506Z" fill="#CECECE"/>
|
||||
<path d="M262.913 241.984C264.001 238.336 265.665 234.88 267.905 231.808C268.993 230.272 270.209 228.864 271.553 227.52C272.833 226.112 274.433 225.088 276.225 224.448C277.121 224.192 278.017 224.128 278.913 224.256C279.297 224.32 279.681 224.448 280.065 224.64C280.193 224.832 280.321 225.024 280.449 225.216C281.217 226.816 281.281 228.672 280.705 230.336C279.553 233.92 276.289 236.16 273.089 237.76C268.929 239.808 264.449 241.472 259.777 241.536C259.201 241.536 260.161 242.624 260.225 242.752C260.609 243.136 261.313 243.776 261.953 243.776C266.561 243.712 271.041 241.984 275.137 240C278.721 238.272 282.177 235.84 283.265 231.808C284.289 227.52 281.729 223.168 277.441 222.144C277.377 222.144 277.377 222.144 277.313 222.144C273.089 221.312 269.697 224.704 267.201 227.648C264.129 231.296 261.825 235.584 260.481 240.192C260.225 240.896 262.721 242.752 262.913 241.984Z" fill="#CECECE"/>
|
||||
<path d="M274.112 286.145L276.032 249.537L247.488 249.985L251.328 286.145C251.264 286.145 258.816 293.953 274.112 286.145Z" fill="white"/>
|
||||
<path d="M275.584 285.634L276.224 273.282L277.248 253.506L277.504 248.962C277.504 248.578 277.12 248.578 276.864 248.578L267.264 248.706L251.904 248.962L248.384 249.026C247.872 249.026 246.016 249.666 246.08 250.434L248.448 273.026L249.728 285.122C249.792 285.634 249.728 286.53 250.048 286.978C250.816 287.746 251.648 288.322 252.608 288.77C259.52 292.29 267.904 290.05 274.432 286.786C274.752 286.594 275.84 286.082 275.584 285.506C275.328 284.93 274.176 285.442 273.856 285.57C267.712 288.706 259.776 290.434 253.696 286.21C253.312 285.954 252.992 285.698 252.672 285.378L252.8 285.698L251.52 273.474L249.472 254.018L249.024 249.538L246.72 250.946L256.32 250.818L271.68 250.562L275.2 250.498L274.56 250.114L273.92 262.466L272.896 282.242L272.64 286.786C272.576 287.554 275.52 286.53 275.584 285.634Z" fill="#3D3D3D"/>
|
||||
<path d="M261.888 252.481C270.301 252.481 277.12 250.877 277.12 248.897C277.12 246.918 270.301 245.313 261.888 245.313C253.476 245.313 246.656 246.918 246.656 248.897C246.656 250.877 253.476 252.481 261.888 252.481Z" fill="#3D3D3D"/>
|
||||
<path d="M261.888 252.801C254.336 252.801 246.4 251.457 246.4 248.897C246.4 246.337 254.4 244.993 261.888 244.993C269.376 244.993 277.376 246.337 277.376 248.897C277.376 251.457 269.376 252.801 261.888 252.801ZM261.888 245.697C253.12 245.697 247.04 247.425 247.04 248.961C247.04 250.497 253.12 252.225 261.888 252.225C270.656 252.225 276.736 250.497 276.736 248.961C276.736 247.425 270.656 245.697 261.888 245.697Z" fill="#3D3D3D"/>
|
||||
<path d="M89.4724 247.041C86.7844 247.681 84.2884 248.961 82.2404 250.881C78.5924 254.145 83.7124 265.217 92.3524 271.937C100.992 278.657 101.952 271.553 95.8724 260.417C89.7924 249.281 89.4724 247.041 89.4724 247.041Z" fill="#3D3D3D"/>
|
||||
<path d="M89.088 245.633C86.592 246.145 84.288 247.233 82.304 248.833C81.216 249.537 80.32 250.561 79.808 251.777C79.488 252.801 79.424 253.889 79.552 254.913C80 257.793 81.024 260.481 82.56 262.913C84.288 265.857 86.464 268.545 89.024 270.913C91.2 272.961 93.888 275.329 96.96 275.905C98.752 276.417 100.608 275.329 101.12 273.473C101.12 273.409 101.184 273.281 101.184 273.217C101.696 270.657 100.8 267.905 99.904 265.537C98.496 261.889 96.448 258.497 94.656 255.041C93.952 253.633 93.248 252.225 92.544 250.817C92.416 250.561 92.288 250.305 92.16 250.049L91.968 249.601C91.84 249.217 91.648 248.833 91.52 248.449C91.328 248.001 91.2 247.617 91.072 247.169C90.944 246.465 91.008 246.977 91.072 247.169C91.008 246.337 90.304 245.633 89.472 245.569C88.768 245.505 87.872 246.017 87.936 246.849C88 247.297 88.128 247.745 88.256 248.193C88.768 249.601 89.344 251.009 90.048 252.353C91.392 255.233 92.928 258.113 94.464 260.929C96 263.617 97.152 266.433 97.92 269.441C98.048 269.889 98.112 270.337 98.112 270.849C98.112 271.105 98.112 271.297 98.112 271.553C98.112 271.681 98.048 272.257 98.112 271.937C98.112 272.129 98.048 272.321 97.984 272.449C97.984 272.513 97.92 272.641 97.92 272.769C97.92 272.705 98.048 272.513 97.92 272.705C97.792 272.897 97.536 273.153 97.856 272.833C97.792 272.897 97.792 272.897 97.728 272.961C97.472 273.153 97.792 272.961 97.728 272.961C97.664 272.961 97.6 273.025 97.536 273.025C97.28 273.153 97.792 273.025 97.6 273.025C97.408 273.025 97.088 273.025 97.472 273.089C97.28 273.089 97.088 273.025 96.896 273.025C97.216 273.089 96.96 273.025 96.832 273.025C96.704 273.025 96.512 272.961 96.384 272.897C96 272.769 95.552 272.577 95.232 272.321C94.592 271.937 93.952 271.553 93.376 271.105C90.816 269.185 88.576 266.945 86.72 264.321C85.056 262.145 83.776 259.713 82.944 257.089C82.56 256.065 82.432 254.977 82.496 253.889C82.496 253.825 82.56 253.505 82.496 253.825C82.496 253.697 82.56 253.569 82.56 253.441C82.624 253.185 82.688 252.993 82.752 252.737C82.816 252.609 82.88 252.481 82.944 252.417L83.072 252.225C83.264 251.905 82.88 252.417 83.136 252.161C84.48 250.881 86.08 249.857 87.808 249.153C88.128 249.025 88.384 248.897 88.704 248.833C88.832 248.769 89.472 248.577 89.152 248.705C89.344 248.641 89.6 248.577 89.792 248.577C91.904 248.129 90.816 245.313 89.088 245.633Z" fill="#3D3D3D"/>
|
||||
<path d="M91.3923 240.961C91.3923 240.961 85.5683 248.513 85.1843 249.729C83.3923 255.489 94.3363 270.209 97.3443 269.377C100.352 268.545 93.4403 256.833 94.9123 253.505C96.0003 251.201 97.2163 248.961 98.6883 246.849L91.3923 240.961Z" fill="white"/>
|
||||
<path d="M90.1118 240.513C89.1518 241.729 88.2558 243.009 87.2958 244.225C86.0798 245.825 84.6718 247.489 83.7758 249.345C83.0078 251.009 83.4558 253.185 83.9678 254.849C84.7998 257.217 85.8878 259.521 87.2318 261.569C88.5118 263.617 89.9838 265.601 91.6478 267.329C92.8638 268.609 94.2718 270.081 96.0638 270.465C97.5998 270.849 99.1358 269.953 99.5198 268.481C99.5838 268.225 99.6478 267.969 99.5838 267.713C99.5198 265.601 98.6878 263.489 97.9838 261.505C97.5358 260.225 97.0878 258.945 96.7678 257.665C96.6398 257.089 96.4478 256.513 96.3198 255.937C96.2558 255.489 96.1918 255.041 96.1278 254.593C96.1278 254.401 96.1278 254.209 96.1918 253.953C96.1918 253.889 96.2558 253.761 96.2558 253.697C96.1918 254.017 96.3198 253.569 96.3838 253.505C96.8318 252.481 97.3438 251.521 97.9198 250.561C98.3678 249.729 98.8798 248.961 99.3918 248.193L99.8398 247.489C99.9038 247.361 100.224 246.913 99.9038 247.425C100.224 246.977 100.288 246.465 99.8398 246.081L92.5438 240.193C91.5198 239.361 88.7678 240.833 90.1118 241.921L97.4078 247.809L97.3438 246.465C95.7438 248.641 94.3998 250.945 93.3118 253.441C92.6718 255.169 93.3118 257.217 93.8238 258.945C94.4638 261.121 95.2958 263.233 95.9358 265.409C96.1918 266.241 96.3838 267.137 96.5118 268.033C96.5118 268.289 96.5118 268.545 96.4478 268.737C96.3838 268.865 96.5758 268.545 96.3838 268.801C96.4478 268.609 96.6398 268.545 96.7678 268.481C96.8318 268.481 97.5358 268.353 97.1518 268.353C97.5998 268.353 97.4718 268.353 97.2798 268.353C97.0878 268.353 97.0238 268.225 97.4078 268.417L97.0238 268.289C96.9598 268.289 96.8958 268.225 96.8958 268.225C97.2158 268.353 96.8318 268.225 96.7678 268.161C96.1278 267.713 95.4878 267.201 94.9118 266.689C93.3758 265.153 91.9678 263.425 90.8158 261.633C89.4718 259.713 88.3198 257.665 87.4878 255.489C86.8478 253.825 86.2078 251.905 86.5278 250.241C86.5278 250.113 86.5918 250.049 86.5918 249.921C86.5918 250.049 86.5278 250.113 86.5918 249.985C86.6558 249.857 86.7198 249.729 86.7838 249.601C86.9758 249.217 87.2318 248.897 87.4238 248.577C88.0638 247.617 88.7038 246.721 89.4078 245.761C90.4318 244.417 91.4558 243.073 92.4798 241.729C93.8238 239.873 90.9438 239.361 90.1118 240.513Z" fill="#3D3D3D"/>
|
||||
<path d="M41.6005 155.841C41.6005 155.841 30.3365 185.473 48.8965 188.929C67.4565 192.385 106.689 192.833 106.689 192.833C106.689 192.833 73.4725 232.513 86.4005 245.441C99.3285 258.369 107.969 258.817 120.449 247.617C132.929 236.417 146.753 191.169 141.569 181.633C136.385 172.097 120.897 149.953 41.6005 155.841Z" fill="white"/>
|
||||
<path d="M40.3204 154.882C38.9124 158.658 37.9524 162.626 37.3764 166.594C36.4164 172.994 36.4804 180.546 40.9604 185.73C43.5204 188.674 46.9124 189.89 50.6244 190.53C54.7844 191.234 58.9444 191.682 63.1044 192.066C72.3204 192.962 81.6644 193.41 90.8804 193.73C94.4004 193.858 97.9844 193.986 101.504 194.05C103.296 194.114 105.088 194.242 106.88 194.114H107.136L105.472 191.554C101.824 195.97 98.4324 200.578 95.2964 205.378C92.4804 209.538 89.9204 213.826 87.6164 218.242C85.3764 222.466 83.6484 227.01 82.5604 231.682C81.7924 235.394 81.6644 239.554 83.4564 243.01C84.8644 245.762 87.2964 247.81 89.6004 249.73C92.4164 252.29 95.6804 254.338 99.2004 255.81C102.016 256.898 105.088 257.154 108.032 256.578C111.296 255.938 114.304 254.274 116.992 252.354C119.424 250.69 121.6 248.77 123.52 246.594C124.992 244.802 126.336 242.882 127.552 240.898C130.368 236.098 132.8 231.106 134.848 225.922C137.088 220.29 139.008 214.53 140.608 208.642C142.016 203.522 143.04 198.274 143.68 192.962C144 189.506 144.32 185.41 142.848 182.082C141.248 178.69 139.008 175.618 136.384 172.994C132.288 168.898 127.488 165.506 122.24 163.074C114.048 159.234 105.152 156.994 96.1924 155.586C82.3044 153.41 68.1604 153.154 54.1444 153.73C49.7284 153.922 45.3124 154.178 40.8964 154.498C39.2964 154.626 40.8964 157.25 42.0484 157.186C57.2804 156.034 72.7044 155.65 87.9364 157.122C97.7284 158.082 107.52 159.746 116.8 163.138C117.696 163.458 118.528 163.778 119.424 164.162C120.448 164.546 120.704 164.738 121.664 165.122C123.136 165.826 124.608 166.53 126.016 167.362C126.656 167.746 127.296 168.13 127.936 168.514L128.832 169.09L129.216 169.346L129.472 169.538C130.56 170.306 131.584 171.074 132.544 171.906C132.992 172.29 133.44 172.674 133.824 173.058L134.144 173.378C133.696 172.994 134.08 173.314 134.144 173.378L134.784 174.018C135.488 174.722 136.192 175.49 136.832 176.258C136.96 176.45 137.088 176.578 137.28 176.77C137.344 176.834 137.408 176.898 137.472 177.026C137.792 177.41 137.344 176.834 137.536 177.09C137.728 177.346 138.048 177.794 138.304 178.114C138.752 178.754 139.2 179.458 139.584 180.098C139.776 180.418 139.968 180.738 140.096 180.994L140.352 181.442C140.416 181.57 140.672 182.146 140.48 181.634C140.608 181.89 140.736 182.146 140.8 182.402C140.928 182.786 140.736 182.21 140.864 182.594L140.992 183.106C141.056 183.426 141.12 183.81 141.184 184.13C141.184 184.322 141.248 184.514 141.248 184.706C141.248 184.77 141.248 184.898 141.312 184.962C141.376 185.026 141.376 185.474 141.312 185.218C141.632 189.506 140.992 193.922 140.16 198.146C137.984 209.474 134.4 220.482 129.472 230.85C127.424 235.202 125.12 239.618 122.048 243.394C120.384 245.442 118.464 247.234 116.352 248.834C113.728 250.882 110.784 252.738 107.52 253.634C104.832 254.402 101.952 254.338 99.3284 253.442C96.0644 252.354 93.2484 250.306 90.6244 248.13C89.1524 246.978 87.8084 245.698 86.5284 244.29C86.4644 244.226 86.0804 243.714 86.4004 244.098C86.2724 243.906 86.1444 243.778 86.0164 243.586C85.8884 243.458 85.8244 243.266 85.7604 243.138C85.6964 243.01 85.5684 242.754 85.7604 243.074C85.6964 243.01 85.6324 242.882 85.6324 242.754C84.9924 241.282 84.6724 239.682 84.6724 238.082C84.6084 233.922 85.9524 229.762 87.5524 225.922C89.4724 221.378 91.7124 217.026 94.2724 212.866C98.1124 206.594 102.336 200.578 106.944 194.882C107.2 194.562 107.456 194.242 107.712 193.922C108.48 193.026 107.008 191.362 106.048 191.362C101.824 191.298 97.6004 191.234 93.3764 191.042C84.5444 190.786 75.7124 190.338 66.8804 189.634C62.5284 189.314 58.1764 188.866 53.8884 188.29C52.0324 188.034 50.1764 187.778 48.3204 187.394C46.7844 187.138 45.3124 186.562 44.0324 185.73L43.7124 185.474L43.2644 185.154C43.2004 185.09 42.8164 184.77 42.9444 184.898C43.0724 185.026 42.8804 185.026 42.8804 184.962L42.6244 184.706C42.4964 184.578 42.3684 184.45 42.3044 184.322L42.1124 184.066C41.9844 183.874 42.2404 184.322 42.1124 184.066C41.9204 183.746 41.6644 183.426 41.4724 183.17C41.4084 183.042 41.2804 182.85 41.2164 182.722C41.0884 182.466 41.2164 182.658 41.2164 182.722L41.0884 182.466C40.8964 182.082 40.7684 181.762 40.5764 181.378C40.3204 180.738 40.1284 180.034 40.0004 179.394C39.3604 176.322 39.2964 173.186 39.6804 170.114C40.1924 165.634 41.2164 161.282 42.6884 157.058C42.6884 156.994 42.7524 156.93 42.7524 156.866C43.2004 155.714 40.8324 153.602 40.3204 154.882Z" fill="#3D3D3D"/>
|
||||
<path d="M124.224 128.002C125.248 122.562 132.928 99.1377 135.936 99.7137C138.944 100.29 138.56 110.658 138.56 110.658C138.56 110.658 140.864 110.274 145.856 102.082C151.296 93.2497 156.928 94.4017 153.792 102.21C152.576 105.154 150.976 107.906 149.056 110.466C152.96 110.85 149.504 116.098 149.504 116.098C155.52 114.882 158.016 123.074 131.52 141.442L124.224 128.002Z" fill="white"/>
|
||||
<path d="M125.824 128.065C126.4 125.505 127.04 123.009 127.872 120.513C128.96 117.057 130.176 113.537 131.52 110.145C132.544 107.265 133.824 104.449 135.424 101.825L135.616 101.505C135.744 101.313 135.744 101.313 135.744 101.377C135.872 101.185 136 101.057 136.128 100.865C136.256 100.737 136.384 100.609 136.512 100.481C136.384 100.609 136.32 100.609 136.512 100.545C136.704 100.481 136.256 100.673 136.384 100.609L135.808 100.673C135.808 100.673 135.232 100.609 135.552 100.673C135.488 100.673 135.296 100.673 135.36 100.609C135.232 100.609 135.296 100.545 135.36 100.609C135.296 100.481 135.552 100.801 135.552 100.865C135.68 101.057 135.744 101.249 135.872 101.441C136 101.761 136.128 102.145 136.256 102.529C136.896 105.153 137.088 107.905 136.896 110.593C136.832 111.489 138.304 111.745 138.88 111.617C139.84 111.361 140.736 110.849 141.44 110.145C143.552 108.289 145.216 105.793 146.688 103.425C147.712 101.633 148.992 99.9687 150.4 98.4327C150.848 97.9847 151.36 97.6007 151.936 97.2167C152.064 97.0887 152.256 97.0247 152.448 96.9607C152.576 96.8967 152.704 96.8967 152.832 96.8327C152.512 96.8967 152.832 96.8327 152.896 96.8327C152.448 96.8327 152.832 96.8327 152.896 96.8327C152.384 96.8967 153.024 96.8967 152.576 96.7687C152.384 96.5767 152.832 96.8327 152.576 96.7687C152.64 96.8327 152.64 96.8967 152.576 96.7047C152.768 96.9607 152.96 97.2807 152.96 97.6007C153.216 99.0087 152.64 100.545 152.128 101.825C151.296 103.809 150.336 105.729 149.184 107.521C148.8 108.161 148.416 108.737 147.968 109.377C147.776 109.633 147.904 109.441 147.712 109.697L147.584 109.889C147.008 110.593 147.712 111.297 148.48 111.361C148.544 111.361 149.12 111.489 148.928 111.425C148.736 111.361 148.992 111.489 148.928 111.361C149.056 111.617 149.184 111.553 149.248 111.937C149.312 112.449 149.184 112.961 149.056 113.473C148.8 114.305 148.416 115.009 147.968 115.777C147.328 116.737 149.376 117.185 149.888 117.057C150.016 117.057 150.144 116.993 150.272 116.993C150.592 116.929 150.72 117.057 150.336 116.993C150.464 116.993 150.592 116.993 150.72 116.993H150.912C151.232 116.993 150.72 116.993 150.72 116.993C150.848 117.057 150.912 117.057 151.04 117.057C150.656 116.865 151.296 117.121 151.04 117.057C151.232 117.121 151.36 117.313 151.04 117.057C151.104 117.121 151.232 117.121 151.296 117.249C151.168 116.993 151.488 117.505 151.296 117.249C151.36 117.313 151.424 117.441 151.488 117.505C151.552 117.569 151.424 117.249 151.552 117.569C151.616 117.697 151.616 117.761 151.68 117.889C151.744 118.017 151.744 118.081 151.744 118.209C151.68 117.953 151.744 118.209 151.744 118.401C151.744 118.657 151.744 118.977 151.68 119.233C151.68 119.361 151.616 119.489 151.616 119.681C151.616 119.873 151.616 119.681 151.616 119.745C151.616 119.809 151.552 119.937 151.552 120.001C151.424 120.385 151.296 120.769 151.104 121.153C150.656 122.049 150.144 122.945 149.568 123.777C147.776 126.209 145.728 128.449 143.424 130.497C139.264 134.209 134.912 137.665 130.304 140.801L132.992 141.313L126.592 129.601L125.696 127.937C125.248 127.297 124.48 127.041 123.776 127.169C123.328 127.233 122.24 127.681 122.624 128.385L129.024 140.097L129.92 141.761C130.56 142.593 131.712 142.785 132.608 142.273C137.088 139.265 141.376 135.937 145.408 132.353C148.032 130.113 150.4 127.553 152.448 124.737C153.984 122.561 156.608 118.273 153.792 116.033C152.512 115.009 150.656 114.881 149.12 115.201L151.04 116.481C151.68 115.521 152.128 114.433 152.384 113.281C152.832 111.233 151.488 109.825 149.44 109.569L150.336 111.041C152.128 108.737 153.6 106.241 154.752 103.617C155.712 101.441 157.504 97.2807 154.88 95.5527C152.192 93.6967 148.8 96.1287 147.008 98.0487C144.32 100.993 142.656 104.769 139.968 107.777C139.584 108.225 139.2 108.609 138.816 108.993C138.624 109.121 138.496 109.313 138.304 109.441C137.984 109.697 138.432 109.377 138.112 109.569C137.92 109.697 137.28 109.953 137.856 109.761C137.664 109.825 137.536 109.825 138.048 109.761L140.032 110.785C140.16 108.161 139.968 105.473 139.456 102.913C139.136 101.441 138.56 99.8407 137.088 99.1367C135.872 98.5607 134.4 98.8167 133.44 99.7767C132.672 100.609 132.032 101.569 131.52 102.593C130.752 104.065 130.048 105.601 129.408 107.137C127.872 110.785 126.528 114.497 125.312 118.273C124.16 121.473 123.264 124.737 122.496 128.065C122.368 129.217 125.568 129.409 125.824 128.065Z" fill="#3D3D3D"/>
|
||||
<path d="M148.672 120.896L150.976 116.352L151.296 115.712C151.36 115.392 151.296 115.072 151.104 114.88C150.848 114.624 150.464 114.432 150.144 114.432C149.376 114.304 148.608 114.624 148.224 115.328L145.92 119.872L145.6 120.512C145.536 120.832 145.6 121.152 145.792 121.344C146.048 121.6 146.432 121.792 146.752 121.792C147.456 121.92 148.288 121.536 148.672 120.896Z" fill="#3D3D3D"/>
|
||||
<path d="M147.968 109.313L144.064 113.857L143.488 114.497C143.232 114.753 143.04 115.137 143.04 115.521C143.04 115.905 143.168 116.353 143.488 116.673C143.744 116.993 144.128 117.185 144.512 117.249C144.896 117.313 145.28 117.185 145.536 116.929L149.44 112.385L150.016 111.745C150.272 111.489 150.464 111.105 150.464 110.721C150.464 110.337 150.336 109.889 150.016 109.569C149.76 109.249 149.376 109.057 148.992 108.993C148.608 108.929 148.224 108.993 147.968 109.313Z" fill="#3D3D3D"/>
|
||||
<path d="M64.5125 99.5206C64.5125 99.5206 66.5605 99.5846 67.3925 98.1766C68.0965 96.7046 68.6725 95.1686 69.1205 93.5686C69.1205 93.5686 76.4805 96.6406 77.5685 80.2566L78.0165 80.5126C83.7765 79.8726 89.0245 76.6726 92.2245 71.8726L93.4405 70.0166C94.2085 74.8806 94.5285 78.5926 94.9765 81.3446C95.2965 83.5206 97.1525 84.6086 98.3685 85.2486C103.68 87.9366 104.192 89.9206 102.144 90.3046C99.7765 90.7526 94.2085 89.7286 94.2085 89.7286C94.2085 89.7286 94.0165 99.0086 83.7765 100.673C78.5925 101.569 78.0165 102.337 78.0805 104.065C78.1445 105.793 78.2725 107.073 78.2725 107.073C78.2725 107.073 77.3125 111.809 70.2725 109.057C66.6245 107.649 65.0885 105.473 64.5125 103.553C64.1925 102.273 64.1925 100.865 64.5125 99.5206Z" fill="white"/>
|
||||
<path d="M63.1044 100.161C63.8084 100.161 64.5124 100.033 65.2164 99.7768C66.3684 99.3928 68.0324 98.8808 68.8004 97.7288C69.6964 96.3208 70.1444 94.5288 70.5924 92.9288L67.6484 94.1448C68.7364 94.4648 69.8884 94.4648 70.9124 94.0808C72.4484 93.6968 73.9204 92.9288 75.1364 91.9048C76.1604 90.8808 76.9284 89.6008 77.4404 88.2568C78.4004 85.5048 78.9764 82.5608 79.1044 79.6168L76.1604 80.8328C76.3524 80.9608 76.4804 81.0248 76.6724 81.0888C77.2484 81.0888 77.7604 81.0248 78.2724 80.8328C79.3604 80.6408 80.3844 80.3848 81.4084 80.0008C83.7764 79.2328 86.0164 78.2088 88.0644 76.8648C89.8564 75.7128 91.4564 74.2408 92.8004 72.5128C93.5684 71.4888 94.2724 70.4648 94.9764 69.3768L92.0324 70.5288C92.4804 73.4728 92.8004 76.4168 93.1844 79.3608C93.2484 80.4488 93.4404 81.5368 93.7604 82.6248C94.2084 83.7128 94.9764 84.6088 96.0004 85.1848C97.8564 86.3368 100.288 87.1048 101.568 89.0248C101.696 89.2168 101.824 89.4728 101.888 89.7288C101.888 89.9848 101.76 90.1128 101.696 90.3048C101.952 89.5368 104.064 89.5368 103.36 89.6008C103.168 89.6008 102.976 89.6648 102.784 89.6648C102.208 89.6648 101.696 89.6648 101.12 89.6648C99.3284 89.5368 97.5364 89.3448 95.7444 88.9608C95.2964 88.8968 94.4644 89.3448 94.0804 89.4728C93.8244 89.5368 92.8644 89.8568 92.8644 90.1768C92.8004 91.8408 92.3524 93.5048 91.5204 94.9128C90.8164 96.3208 89.7284 97.6008 88.5124 98.5608C88.0004 98.9448 87.4244 99.2648 86.8484 99.5208C85.6324 99.9048 84.3524 100.033 83.1364 100.289C81.9844 100.545 80.8324 100.865 79.7444 101.313C78.8484 101.633 78.0164 102.081 77.3124 102.721C76.9924 103.041 76.8644 103.489 76.8004 103.937C76.7364 104.961 76.8004 105.985 76.9284 107.009C76.9924 107.585 76.8644 108.161 76.4804 108.609C76.3524 108.801 76.2244 108.993 76.0324 109.121C75.9684 109.185 75.8404 109.249 75.7764 109.377C75.7124 109.505 75.5204 109.441 75.7124 109.441C75.9044 109.441 76.4804 108.993 76.6724 109.057C76.6724 109.057 76.1604 109.057 76.4804 109.057C76.2884 109.057 76.0964 109.121 75.9684 109.121C75.4564 109.121 74.9444 109.121 74.4324 108.993C69.6964 108.225 64.4484 104.129 66.1124 98.7528C65.6004 98.8808 65.0884 99.0088 64.5764 99.1368C64.2564 99.2648 63.2964 99.5208 63.1684 99.9048C62.6564 101.889 62.9764 104.065 64.1284 105.793C65.5364 108.033 68.0964 109.313 70.5924 109.953C72.8324 110.529 75.2644 110.209 77.3124 109.121C78.4644 108.673 79.3604 107.841 79.8724 106.753C79.9364 106.561 80.0004 106.433 80.0644 106.241C80.0644 105.857 80.0004 105.537 79.9364 105.153C79.8724 104.449 79.8084 103.745 79.8084 103.041C79.8084 102.529 79.9364 102.081 80.1924 101.697C80.4484 101.377 80.5764 101.377 80.0644 101.633C79.8084 101.761 79.9364 101.697 80.1284 101.633L81.1524 101.377C82.5604 101.121 83.9684 100.865 85.3124 100.481C86.6564 100.097 87.9364 99.5208 89.2164 98.8808C91.0084 97.9848 92.5444 96.7688 93.6964 95.1688C95.0404 93.3128 95.8084 91.1368 95.9364 88.8968L93.0564 90.1128C94.8484 90.4328 96.5764 90.6888 98.4324 90.8168C99.5204 90.9448 100.608 90.8168 101.632 90.6248C102.4 90.4328 103.104 90.1768 103.808 89.7928C104.192 89.6648 104.576 89.4088 104.832 89.0888C105.792 87.6808 102.592 85.8888 101.76 85.3768C100.608 84.6728 99.3284 84.1608 98.3044 83.3288C97.3444 82.4328 96.7044 81.2168 96.6404 79.8728C96.1284 76.3528 95.8084 72.8328 95.2324 69.3128C95.2324 69.1208 92.5444 70.1448 92.2884 70.4648C91.0084 72.5128 89.5364 74.3688 87.8084 76.0328C86.6564 77.1208 85.3124 78.0168 83.9044 78.7208C82.4964 79.2968 81.0884 79.6808 79.5524 79.8088H79.8084L79.3604 79.5528C78.9764 79.3608 78.1444 79.8088 77.8244 79.9368C77.5044 80.0648 76.4164 80.3848 76.4164 80.7048C76.1604 84.4168 75.7124 88.8328 73.4084 91.9048C73.0884 92.3528 72.7684 92.6728 72.3844 93.0568C72.2564 93.1208 72.1284 93.2488 72.0004 93.3128C71.8084 93.4408 71.9364 93.3768 72.0004 93.3128C72.1284 93.2488 72.6404 93.0568 72.8964 92.9288C72.7044 92.9928 73.1524 92.9288 72.8964 92.9288C72.6404 92.9288 73.0244 92.9288 72.8324 92.9288L72.4484 92.9928C72.1924 92.9928 71.9364 92.9928 71.6804 92.9928C71.4884 92.9928 71.2324 92.9288 71.0404 92.8648C70.9764 92.8648 70.7204 92.7368 70.8484 92.8008C70.4644 92.6088 69.6324 93.0568 69.3124 93.1848C68.9924 93.3128 68.0324 93.5688 67.9044 93.9528C67.5844 94.9768 67.2644 96.0648 66.8804 97.0888C66.5604 97.7928 66.2404 98.4328 65.7924 99.0088C65.4724 99.2648 65.6004 99.2008 66.2404 98.8808C66.8804 98.6888 67.0724 98.6248 66.8164 98.6248C66.6884 98.6248 66.6244 98.6248 66.4964 98.6888C66.3684 98.6888 66.2404 98.6888 66.1764 98.6888C65.5364 98.7528 64.8964 98.9448 64.3204 99.2648C63.8724 99.5848 62.9764 100.161 63.1044 100.161Z" fill="#3D3D3D"/>
|
||||
<path d="M96.7042 179.649C125.952 176.577 134.272 139.393 134.272 139.393C134.272 139.393 131.072 125.569 123.52 122.625C123.52 122.625 119.424 128.129 110.592 132.993C101.76 137.857 81.0242 103.681 68.6082 98.305C56.1922 92.929 24.3202 156.289 24.9602 159.041C24.9602 159.041 42.6882 185.281 96.7042 179.649Z" fill="white"/>
|
||||
<path d="M97.7922 180.738C104.832 179.97 111.488 177.09 116.928 172.482C121.728 168.322 125.696 163.394 128.64 157.826C130.944 153.602 132.864 149.186 134.336 144.642C134.72 143.49 135.04 142.274 135.36 141.058C135.488 140.482 135.488 139.842 135.232 139.266C133.504 133.058 130.496 126.53 124.928 122.818C124.224 122.306 123.392 121.922 122.56 121.602C122.496 121.538 122.368 121.538 122.304 121.602C119.808 124.93 116.288 127.618 112.896 129.858C111.68 130.754 110.336 131.586 108.928 132.162C108.416 132.354 107.84 132.418 107.264 132.354C106.624 132.29 106.048 132.162 105.472 131.906C105.216 131.778 104.896 131.65 104.64 131.522L104.128 131.266L103.936 131.138C103.872 131.074 103.808 131.074 103.68 131.01C103.296 130.818 102.976 130.562 102.656 130.306C102.4 130.114 102.592 130.242 102.656 130.306L102.336 130.05L101.76 129.602L101.184 129.154C100.992 128.962 101.504 129.41 101.12 129.09L100.8 128.834C100.416 128.514 100.032 128.13 99.5842 127.81C98.9442 127.234 98.1762 126.53 97.4082 125.698C96.6402 124.866 95.6802 123.97 94.8482 123.074C91.3922 119.426 87.8722 115.394 84.4162 111.618C81.0882 107.842 77.5042 104.322 73.6642 101.058C72.1922 99.7775 70.5282 98.6895 68.8002 97.7295C67.8402 97.1535 66.7522 96.7695 65.6002 96.7695C63.3602 96.8335 61.2482 98.3055 59.5202 99.7135C56.9602 101.89 54.5922 104.322 52.5442 107.01C47.0402 113.794 42.3682 121.282 37.9522 128.834C33.9202 135.682 30.1442 142.658 26.7522 149.826C25.7282 151.938 24.7682 154.05 24.0002 156.29C23.7442 156.802 23.6162 157.314 23.5522 157.89C23.6162 158.146 23.7442 158.466 23.9362 158.658C26.1762 161.602 28.8642 164.226 31.8722 166.402C37.8242 170.946 44.5442 174.466 51.7122 176.834C62.8482 180.546 74.6882 181.698 86.4002 181.378C90.3042 181.378 94.0802 181.122 97.7922 180.738C98.2402 180.674 97.2802 179.778 97.2162 179.65C96.8962 179.33 96.1282 178.498 95.5522 178.562C82.6882 179.906 69.5042 179.778 56.8962 176.77C52.4162 175.746 48.0642 174.274 43.7762 172.418C42.0482 171.65 40.3842 170.818 38.7202 169.922C37.3122 169.154 35.9042 168.322 34.6242 167.426L33.7282 166.786L33.2802 166.466C33.2162 166.402 33.0242 166.274 33.3442 166.53L33.0242 166.338C32.5122 165.954 31.9362 165.506 31.4242 165.122L31.0402 164.802C30.6562 164.482 31.0402 164.802 30.9762 164.738C30.7202 164.546 30.4642 164.354 30.2722 164.098L29.6322 163.522L29.3122 163.266C29.1202 163.074 29.0562 163.01 29.2482 163.202C28.9282 162.882 28.5442 162.562 28.2242 162.178C28.0962 162.05 27.9042 161.858 27.7762 161.73L27.5842 161.538C27.6482 161.602 27.9682 161.922 27.5842 161.538C27.2002 161.09 26.7522 160.642 26.3682 160.13C26.7522 160.578 26.3042 160.066 26.1762 159.874C26.1122 159.81 26.0482 159.682 25.9842 159.618C25.7282 159.362 26.2402 159.874 26.1122 159.874C26.1122 159.746 26.1122 159.618 26.1762 159.49C26.6882 157.762 27.3282 156.162 28.0962 154.562C31.1042 147.906 34.4962 141.442 38.0802 135.106C42.3682 127.362 47.1042 119.938 52.2242 112.77C54.4002 109.762 56.8322 106.946 59.3922 104.322C61.2482 102.466 63.2962 100.546 65.7922 99.5855C66.6242 99.2015 67.5202 99.0735 68.4802 99.0735C69.5682 99.2655 70.5922 99.7775 71.4882 100.418C72.1922 100.866 72.8322 101.378 73.4722 101.89L73.7922 102.146L74.3682 102.658C74.8162 103.042 75.2002 103.426 75.6482 103.81C76.0962 104.194 76.1602 104.322 76.6722 104.77L78.0163 106.05C78.8482 106.882 79.6802 107.714 80.4482 108.61C87.2322 115.778 93.5042 123.906 101.184 130.242C102.656 131.458 104.192 132.546 105.856 133.442C107.072 134.146 108.416 134.53 109.76 134.594C110.336 134.594 110.912 134.466 111.424 134.21C112.96 133.442 114.368 132.61 115.776 131.586C118.208 129.986 120.448 128.13 122.56 126.018C123.328 125.314 124.032 124.482 124.672 123.714H124.416C124.992 123.97 125.504 124.226 126.016 124.61C126.464 124.994 126.912 125.442 127.296 125.89C128.32 127.17 129.152 128.514 129.856 129.986C131.072 132.354 132.032 134.85 132.736 137.41C132.8 137.666 132.864 137.986 132.992 138.306C132.992 138.37 133.056 138.69 133.056 138.434C133.056 138.626 132.992 138.818 132.928 139.01C132.672 140.162 132.288 141.25 131.968 142.338C130.624 146.626 128.832 150.786 126.72 154.818C123.968 160.194 120.32 165.058 115.904 169.218C110.976 173.826 104.896 177.026 98.2402 178.306C97.3442 178.434 96.4482 178.626 95.5522 178.69C95.1042 178.754 96.0002 179.65 96.1282 179.778C96.5122 179.906 97.2802 180.802 97.7922 180.738Z" fill="#3D3D3D"/>
|
||||
<path d="M47.8084 114.369C41.9204 112.641 36.4804 105.857 49.4724 80.1291C58.5604 62.2731 70.9764 57.0891 79.6804 59.0731C88.3844 61.0571 92.9924 66.0491 93.5044 70.0811L92.2884 71.9371C89.0244 76.7371 83.8404 79.9371 78.0804 80.5771L77.6324 80.3211C76.5444 96.6411 69.1204 93.6331 69.1204 93.6331C68.6724 95.2331 68.0964 96.7691 67.3924 98.2411C67.3924 98.2411 62.5284 118.657 47.8084 114.369Z" fill="#3D3D3D"/>
|
||||
<path d="M47.2323 112.897C46.9123 112.833 46.6563 112.705 46.3363 112.577C46.2083 112.513 46.0803 112.449 45.9523 112.385C45.8243 112.321 45.7603 112.321 45.6323 112.257C45.3763 112.129 45.0563 111.937 44.8003 111.745C44.6723 111.681 44.5443 111.553 44.4163 111.489L44.2242 111.361C44.0322 111.233 44.2243 111.361 44.1603 111.297C44.0963 111.233 43.9683 111.105 43.8403 110.977C43.7123 110.849 43.3922 110.465 43.6482 110.785L43.3282 110.401C43.2002 110.209 43.2002 110.273 43.3282 110.401L43.2003 110.145C43.1363 110.081 43.0723 109.953 43.0723 109.889C43.2003 110.017 43.2003 110.209 43.1363 109.953C43.0723 109.889 43.0722 109.761 43.0082 109.697C42.9442 109.633 43.1362 110.017 43.0082 109.761C42.9442 109.697 42.9443 109.569 42.8803 109.441C42.7523 109.185 42.8803 109.569 42.8803 109.441C42.8163 109.249 42.7522 108.993 42.6882 108.801C42.6882 108.737 42.5602 108.417 42.6882 108.673C42.6882 108.545 42.6242 108.481 42.6242 108.353C42.5602 108.097 42.5603 107.841 42.4963 107.649C42.4323 107.201 42.3682 106.753 42.3682 106.241C42.3682 105.025 42.4323 103.809 42.5603 102.593C43.0723 99.2648 43.9682 95.9368 45.1842 92.8008C46.9122 88.1288 48.9603 83.5848 51.3923 79.2328C53.5043 75.2648 56.1282 71.6168 59.2642 68.4168C63.6162 64.0008 69.3763 60.2888 75.7123 59.9688C79.0403 59.9048 82.3042 60.5448 85.2482 61.9528C86.9762 62.7208 88.5762 63.6808 90.0482 64.9608C90.6242 65.4728 91.1363 65.9848 91.5843 66.6248C91.7763 66.8168 91.9043 67.0728 92.0322 67.3288C92.2243 67.6488 92.0322 67.3288 92.1602 67.5848C92.2242 67.6488 92.2242 67.7128 92.2882 67.7768C92.2242 67.5848 92.4162 68.0328 92.2882 67.7768C92.2882 67.8408 92.4802 68.2888 92.4162 68.0328C92.4802 68.1608 92.4803 68.2888 92.5443 68.4168C92.6083 68.6728 92.6722 68.8648 92.6722 69.1208V68.6728C91.1362 70.9768 89.5362 73.1528 87.3602 74.9448C84.4802 77.2488 80.9603 78.6568 77.3123 79.1048L77.6323 79.1688L77.1842 78.9128C76.9282 78.7848 76.7363 78.8488 76.7363 79.1688C76.6083 81.6648 76.2243 84.1608 75.5203 86.5928C75.1362 88.0648 74.4323 89.4088 73.4723 90.5608C72.5123 91.7768 71.0403 92.4168 69.4403 92.3528C69.1203 92.3528 68.8643 92.2888 68.5443 92.1608C68.4802 92.0968 68.3522 92.1608 68.2882 92.2888C67.9042 93.5688 67.5202 94.7848 67.0082 95.9368C66.8162 96.3848 66.6243 96.8328 66.4323 97.2808C66.0483 98.6248 65.6002 99.9688 65.0882 101.249C63.2962 105.537 60.6722 109.953 56.4482 112.129C53.6322 113.537 50.3043 113.857 47.2963 112.833C46.7843 112.705 47.1683 113.985 47.2323 114.113C47.4243 114.625 47.8722 115.521 48.4482 115.713C51.2002 116.545 54.1443 116.481 56.8963 115.457C59.2003 114.433 61.2482 112.897 62.7843 110.849C65.2162 107.713 67.0083 104.129 68.0323 100.289C68.0963 99.9048 68.2243 99.5848 68.4163 99.2648C69.0563 97.8568 69.6323 96.4488 70.0163 94.9128L69.7603 95.0408C70.6562 95.3608 71.5522 95.3608 72.4482 95.1048C74.8162 94.4648 76.1602 91.9688 76.9282 89.8568C77.8242 87.1688 78.3363 84.3528 78.4002 81.4728L77.9523 81.7288C78.2083 81.9208 78.4643 81.9848 78.7202 82.0488C79.4883 82.0488 80.1923 81.9208 80.8963 81.6648C82.2402 81.3448 83.5202 80.8968 84.8002 80.3208C87.2962 79.1688 89.5362 77.5048 91.3282 75.4568C92.0322 74.6888 92.6722 73.8568 93.2482 72.9608C93.5682 72.4488 94.2722 71.8088 94.3362 71.1688C94.4642 70.3368 93.9523 69.1208 93.6322 68.3528C93.2482 67.3928 92.8003 66.4328 92.2243 65.5368C89.4083 61.4408 84.7363 59.0088 80.0003 57.7288C76.7363 56.8968 73.2803 56.9608 70.0163 57.9208C60.7363 60.6088 54.0162 68.8648 49.6003 77.0568C46.7203 82.2408 44.3523 87.7448 42.5603 93.3768C41.4723 96.8328 40.5763 100.481 40.7683 104.193C40.9603 108.737 43.0722 113.537 47.4242 115.329C47.8082 115.457 48.1283 115.585 48.5123 115.713C49.0243 115.841 48.6403 114.561 48.5763 114.433C48.2563 113.985 47.8723 113.089 47.2323 112.897Z" fill="#3D3D3D"/>
|
||||
<path d="M91.3282 80.1289C90.7522 80.1289 90.3042 80.5769 90.3042 81.0889C90.3042 81.1529 90.3042 81.1529 90.3042 81.2169C90.4322 82.3049 91.7762 82.1769 91.9682 81.2169C92.1602 80.7689 91.9042 80.3209 91.4562 80.1289C91.4562 80.1929 91.3922 80.1289 91.3282 80.1289Z" fill="#3D3D3D"/>
|
||||
<path d="M86.4641 88.9602C86.7201 90.7522 87.8081 92.3522 89.4081 93.2482C90.3681 93.6962 91.4561 93.8882 92.5441 93.8242C92.8641 93.8242 93.1841 93.7602 93.4401 93.7602C93.5041 93.7602 93.8881 93.6962 93.9521 93.5682C94.1441 93.3122 93.1841 93.3122 93.1201 93.3122H92.9281C92.8001 93.3122 93.1841 93.3122 92.9921 93.3122C92.9281 93.3122 92.8641 93.3122 92.8001 93.3122H92.8641L92.6081 93.2482L92.4161 93.1842C92.0961 93.1202 91.8401 92.9922 91.5201 92.8642C91.0081 92.6082 90.4961 92.2242 90.1121 91.7762C89.5361 91.0722 89.0881 90.2402 88.8321 89.2802C88.7681 89.0882 88.7041 88.8962 88.7041 88.7042C88.7041 88.5762 88.3841 88.5762 88.3201 88.5762C88.0641 88.5762 87.7441 88.5762 87.4881 88.5762C87.4881 88.6402 86.4001 88.7042 86.4641 88.9602Z" fill="#3D3D3D"/>
|
||||
<path d="M85.8879 112.385C82.9439 111.489 79.8079 111.297 76.7999 111.745C74.2399 112.065 71.6799 112.641 69.1199 112.897L68.2879 112.961C69.0559 112.897 67.9039 112.961 67.7759 112.961C67.5199 112.961 67.2639 112.961 67.0079 112.961C66.2399 112.961 67.5199 113.025 66.8159 112.961C66.4319 112.897 66.1119 112.897 65.7919 112.833C65.6639 112.833 64.8959 112.641 65.5359 112.769C64.9599 112.641 64.3199 112.449 63.7439 112.257C63.6799 112.257 62.9759 112.001 63.3599 112.129C63.1039 112.065 62.8479 111.937 62.5919 111.809C62.0159 111.553 61.4399 111.297 60.9279 111.041C59.9039 110.465 59.0079 109.825 58.1119 109.121C57.0239 108.225 55.0399 108.161 53.7599 108.545C52.9279 108.801 51.4559 109.569 52.6079 110.465C56.9599 113.985 62.4639 115.841 68.0319 115.841C70.9119 115.713 73.7279 115.393 76.5439 114.817C77.1839 114.689 77.8879 114.625 78.5279 114.561C78.7839 114.497 79.1039 114.497 79.3599 114.497L79.9359 114.433C79.5519 114.433 79.5519 114.433 79.9359 114.433H80.7679C81.1519 114.433 81.1519 114.433 80.7679 114.433L81.2159 114.497C81.3439 114.497 82.2399 114.689 81.6639 114.561C82.0479 114.625 82.3679 114.753 82.7519 114.881C84.0319 115.265 86.0159 115.265 87.1679 114.433C88.3199 113.601 86.7839 112.705 85.8879 112.385Z" fill="#3D3D3D"/>
|
||||
<path d="M93.5681 127.041C93.2481 127.297 92.9281 127.553 92.5441 127.809C92.9281 127.553 92.4801 127.873 92.3521 127.937C92.2241 128.001 92.0321 128.193 91.8401 128.257L90.8801 128.833C90.4961 129.089 91.5201 128.513 90.8161 128.897C90.5601 129.025 90.3681 129.153 90.1121 129.217L89.5361 129.473L89.4081 129.537C89.0881 129.665 89.0881 129.665 89.4721 129.473C89.0881 129.665 88.7041 129.857 88.3201 129.921C88.1921 129.985 88.0001 130.049 87.8721 130.049L88.1921 129.921L87.8081 130.049C87.3601 130.177 86.9121 130.305 86.4641 130.369L85.9521 130.497C86.6561 130.369 85.8241 130.497 85.7601 130.497C85.3761 130.561 85.0561 130.625 84.6721 130.625L84.0321 130.689C84.4801 130.625 84.0321 130.689 83.9681 130.689C83.4561 130.689 82.9441 130.753 82.4961 130.753C80.9601 130.753 79.4241 130.625 77.8881 130.241C74.3041 129.473 71.1681 127.361 67.4561 127.425C65.2801 127.553 63.0401 127.937 60.9281 128.577C60.4801 128.705 59.9681 128.833 59.5201 128.961L58.9441 129.089C59.5201 128.961 58.6881 129.153 58.6241 129.153L58.2401 129.281C58.3041 129.281 57.4721 129.345 57.7921 129.345C58.1121 129.345 57.2801 129.345 57.3441 129.345H56.5761C52.7361 129.281 49.0881 128.001 46.0161 125.761C45.5041 125.569 44.9281 125.505 44.4161 125.633C43.5841 125.761 42.8161 126.017 42.0481 126.401C41.6001 126.657 39.4881 127.809 40.4481 128.513C43.6481 130.817 47.4241 132.161 51.3281 132.417C53.4401 132.545 55.5521 132.417 57.6001 131.969C58.6881 131.777 59.7121 131.457 60.8001 131.201C61.2481 131.073 61.7601 130.945 62.2081 130.881C63.1041 130.689 61.8881 130.945 62.4641 130.817C62.7841 130.753 63.1041 130.689 63.4241 130.689C64.3201 130.561 63.2321 130.689 63.7441 130.689C64.0001 130.689 64.1921 130.689 64.4481 130.689C64.8321 130.689 65.2161 130.753 65.6001 130.881C66.5601 131.137 67.5201 131.393 68.4161 131.777C70.2081 132.545 72.0641 133.121 73.9841 133.505C77.8881 134.145 81.8561 134.081 85.6321 133.121C90.3041 132.097 94.6561 129.985 98.3681 126.977C98.6241 126.785 99.1361 126.273 98.9441 125.889C98.7521 125.505 98.1121 125.441 97.7921 125.441C96.2561 125.505 94.7201 126.017 93.5681 127.041Z" fill="#3D3D3D"/>
|
||||
<path d="M105.152 133.058C103.232 135.042 101.248 136.898 99.1363 138.626L98.3043 139.266L98.2403 139.33L97.9203 139.586C97.3443 140.034 96.7043 140.418 96.0643 140.802L95.2963 141.25C95.2323 141.314 94.7203 141.57 95.0403 141.378C95.3603 141.186 94.9763 141.442 94.9123 141.442C94.2723 141.762 93.6323 142.018 92.9923 142.274C92.3523 142.53 92.9923 142.274 93.0563 142.274C92.8643 142.338 92.7363 142.402 92.5443 142.402C92.1603 142.53 91.8403 142.594 91.5203 142.658C91.4563 142.658 91.0083 142.786 91.3283 142.722C91.6483 142.658 91.0723 142.786 91.0083 142.786C90.5603 142.85 90.1123 142.914 89.6643 142.978L89.0883 143.042H88.8963C89.2163 143.042 88.6403 143.042 88.5123 143.042H87.9363C87.1683 143.042 86.3363 142.978 85.5043 142.978C82.5603 142.786 79.4883 142.018 76.2883 141.954C72.4483 141.89 69.2483 143.49 66.4963 145.986C65.4723 146.946 64.4483 147.906 63.4243 148.802C62.9123 149.25 62.4003 149.698 61.8243 150.146C61.5683 150.402 61.2483 150.594 60.9923 150.85C60.7363 151.106 60.9283 150.914 60.9923 150.85L60.4163 151.234C59.2643 152.066 58.0483 152.834 56.8323 153.538L55.8723 154.05H55.8083L55.4243 154.242C54.7203 154.562 54.0163 154.882 53.3123 155.202L52.4163 155.586C51.9683 155.778 52.9283 155.458 52.4163 155.586L52.0323 155.714C51.3283 155.97 50.5603 156.162 49.8563 156.29L49.2803 156.418C49.4083 156.418 49.9203 156.29 49.2803 156.418C48.8963 156.482 48.5123 156.546 48.1283 156.61C47.7443 156.674 47.4883 156.674 47.1043 156.738L46.5283 156.802C46.0163 156.866 47.2323 156.802 46.3363 156.802C45.5043 156.802 44.7363 156.802 43.9043 156.738C43.8403 156.738 43.2643 156.674 43.5203 156.738C43.7763 156.802 43.0083 156.674 43.0083 156.674C42.6243 156.61 42.2403 156.546 41.9203 156.482C40.4483 156.162 39.0403 155.65 37.6323 155.074C33.9203 153.666 30.0163 152.834 26.2403 154.69C25.4723 155.074 23.6803 156.162 24.6403 157.25C25.6003 158.338 27.7123 157.826 28.7363 157.314C28.8643 157.25 29.0563 157.122 29.1843 157.122C29.1203 157.122 28.4803 157.314 29.1203 157.186H28.9283C28.6723 157.25 28.6723 157.25 28.9923 157.186H29.4403C29.8883 157.186 29.0563 157.122 29.5043 157.186C29.9523 157.25 30.2723 157.314 30.6563 157.442C31.9363 157.826 33.1523 158.21 34.3683 158.722C37.3763 159.874 40.5123 160.45 43.7123 160.45C50.3683 160.258 56.8323 158.21 62.4003 154.562C64.9603 152.898 67.3283 151.042 69.5683 148.994C70.5923 148.098 71.5523 147.074 72.6403 146.178C73.0243 145.858 72.7683 146.05 72.7043 146.114L73.1523 145.794L73.6003 145.538C73.0883 145.73 73.4723 145.602 73.6003 145.538C73.3443 145.602 73.0883 145.538 73.5363 145.538C73.4723 145.538 73.0243 145.602 73.4083 145.538C73.4723 145.538 74.0483 145.474 73.7283 145.474C73.4083 145.474 74.1123 145.474 74.1763 145.474C74.7523 145.474 75.3923 145.538 75.9683 145.666L78.5283 145.986C80.1923 146.178 81.8563 146.37 83.5843 146.498C87.0403 146.754 90.4963 146.37 93.7603 145.41C100.352 143.298 105.408 138.754 110.208 134.018C110.784 133.698 111.04 132.994 110.72 132.418C110.528 132.034 110.08 131.778 109.632 131.778C108.096 131.522 106.496 131.97 105.28 132.994L105.152 133.058Z" fill="#3D3D3D"/>
|
||||
<path d="M113.216 132.353C113.28 132.673 113.344 132.993 113.408 133.249C113.408 133.377 113.6 134.145 113.472 133.761C113.6 134.401 113.664 135.105 113.728 135.809C113.856 137.153 113.856 138.433 113.792 139.777C113.792 140.417 113.728 141.057 113.664 141.697C113.6 142.337 113.6 141.889 113.664 141.761C113.664 141.953 113.6 142.145 113.6 142.273C113.536 142.657 113.472 142.977 113.408 143.361C113.152 144.641 112.768 145.921 112.32 147.137C112.192 147.457 112.064 147.713 112 148.033L111.872 148.417C111.872 148.481 111.616 148.993 111.744 148.673C111.872 148.353 111.68 148.801 111.68 148.801L111.424 149.313C111.296 149.633 111.104 149.889 110.912 150.209C110.336 151.233 109.632 152.193 108.864 153.089C108.672 153.281 108.48 153.537 108.288 153.729C108.672 153.345 108.16 153.857 108.032 153.985C107.584 154.433 107.136 154.817 106.688 155.201C106.24 155.585 105.792 155.905 105.344 156.225C105.088 156.353 104.896 156.545 104.64 156.673C104.576 156.737 104.128 156.993 104.448 156.801C104.768 156.609 104.32 156.865 104.256 156.929C103.232 157.505 102.208 158.017 101.12 158.401L100.672 158.529C100.8 158.529 101.248 158.337 100.736 158.529L100.032 158.721C99.3924 158.849 98.8164 158.977 98.1764 159.105C97.8564 159.169 97.5364 159.169 97.2804 159.169C97.0244 159.169 97.2804 159.169 97.3444 159.169H96.7684C96.0644 159.169 95.2964 159.233 94.5284 159.233C92.9924 159.233 91.4564 159.489 89.9844 159.873C84.8004 161.409 81.3444 165.377 77.8244 169.281L77.4404 169.601C77.0564 169.985 77.5684 169.473 77.3764 169.665C77.1844 169.857 76.9284 170.177 76.6724 170.369C76.1604 170.881 75.7124 171.329 75.2004 171.777C74.6884 172.225 74.1124 172.673 73.5364 173.121C73.2164 173.377 72.8964 173.569 72.5764 173.825C72.5764 173.825 72.1924 174.081 72.4484 173.889C72.7044 173.697 72.0644 174.081 72.0644 174.081C71.4884 174.401 70.8484 174.721 70.2084 174.977C70.0804 175.041 69.8884 175.105 69.7604 175.169C70.0164 175.105 70.1444 175.105 69.8244 175.169C69.5044 175.233 69.1844 175.297 68.8644 175.361L68.4164 175.425C67.9684 175.489 68.4164 175.489 68.5444 175.425C68.4164 175.553 67.6484 175.425 67.4564 175.425C67.3284 175.425 67.2004 175.361 67.0724 175.361C67.1364 175.297 67.7764 175.489 67.0724 175.361C66.6884 175.297 66.3684 175.169 65.9844 175.041C64.6404 174.529 62.5284 175.233 62.1444 176.769C61.7604 178.497 62.9764 179.713 64.4484 180.289C70.2084 182.529 76.2884 179.329 80.3844 175.361C81.4084 174.337 82.3684 173.249 83.3924 172.161C83.7764 171.713 84.1604 171.265 84.5444 170.881C84.6084 170.817 84.9284 170.497 84.5444 170.881C84.6724 170.753 84.8004 170.625 84.8644 170.497C85.1204 170.241 85.3124 169.985 85.5684 169.793C86.4644 168.897 87.3604 168.001 88.3204 167.233C88.7684 166.849 89.2804 166.529 89.7924 166.209C89.2804 166.529 89.8564 166.145 90.0484 166.081C90.3684 165.889 90.6884 165.761 91.0084 165.633C91.3284 165.505 91.5204 165.441 91.7764 165.313C91.8404 165.313 92.3524 165.121 91.9684 165.249C91.5844 165.377 91.9684 165.249 92.0324 165.249C92.8004 165.057 93.5684 164.929 94.3364 164.865H94.4004H94.9764H96.0004C96.9604 164.865 97.9204 164.801 98.8804 164.737C101.568 164.481 104.128 163.777 106.496 162.497C111.424 159.937 115.328 155.777 117.632 150.657C120.384 144.641 120.64 137.793 119.104 131.393C118.72 129.857 116.608 128.897 115.2 129.217C113.792 129.409 112.768 130.753 112.96 132.161C112.96 132.289 113.024 132.353 113.024 132.481L113.216 132.353Z" fill="#3D3D3D"/>
|
||||
<path d="M78.6564 197.697V204.737V221.569V242.049V259.713V267.329C78.5924 267.649 78.5924 267.969 78.6564 268.289C78.6564 268.353 78.6564 268.353 78.6564 268.417C78.6564 268.673 81.8564 268.673 81.8564 268.225V261.185V244.353V223.873V206.209V198.529C81.9204 198.209 81.9204 197.889 81.8564 197.569C81.8564 197.505 81.8564 197.505 81.8564 197.441C81.8564 197.249 78.6564 197.313 78.6564 197.697Z" fill="#3D3D3D"/>
|
||||
<path d="M66.6245 277.44L78.6565 271.808L80.3845 270.976L78.7845 271.104L90.8805 276.992C92.1605 277.632 94.4645 275.776 92.6725 274.944L81.4085 269.44C80.5765 269.056 80.0005 268.736 79.0405 269.184C78.5285 269.376 78.0165 269.632 77.5685 269.888L70.6565 273.152L65.3445 275.648C64.7685 275.904 64.1925 276.608 64.5765 277.248C64.9605 277.888 65.9845 277.696 66.6245 277.44Z" fill="#3D3D3D"/>
|
||||
<path d="M65.7922 281.985C67.9837 281.985 69.7602 280.208 69.7602 278.017C69.7602 275.825 67.9837 274.049 65.7922 274.049C63.6008 274.049 61.8242 275.825 61.8242 278.017C61.8242 280.208 63.6008 281.985 65.7922 281.985Z" fill="#3D3D3D"/>
|
||||
<path d="M92.9924 281.665C95.1839 281.665 96.9604 279.888 96.9604 277.697C96.9604 275.505 95.1839 273.729 92.9924 273.729C90.8009 273.729 89.0244 275.505 89.0244 277.697C89.0244 279.888 90.8009 281.665 92.9924 281.665Z" fill="#3D3D3D"/>
|
||||
<path d="M108.225 190.4H51.4565V199.552H108.225V190.4Z" fill="#3D3D3D"/>
|
||||
<path d="M108.224 199.873H51.4562C51.2642 199.873 51.1362 199.745 51.1362 199.553V190.401C51.1362 190.209 51.2642 190.081 51.4562 190.081H108.224C108.416 190.081 108.544 190.209 108.544 190.401V199.553C108.544 199.681 108.416 199.873 108.224 199.873ZM51.7762 199.233H107.904V190.721H51.7762V199.233Z" fill="#3D3D3D"/>
|
||||
<circle cx="175.556" cy="172" r="2.22222" fill="white"/>
|
||||
<path d="M179.49 181.813C186.184 181.509 192.888 181.922 199.431 182.995C199.747 183.047 199.671 179.985 198.81 179.855C192.211 178.812 185.563 178.37 178.869 178.673C178.383 178.71 178.775 181.824 179.49 181.813Z" fill="white"/>
|
||||
<circle cx="173.778" cy="180.358" r="2.22222" fill="white"/>
|
||||
<path d="M176.823 190.701C183.517 190.398 190.222 190.81 196.765 191.883C197.08 191.936 197.005 188.874 196.144 188.744C189.544 187.701 182.896 187.259 176.203 187.562C175.717 187.598 176.108 190.712 176.823 190.701Z" fill="white"/>
|
||||
<circle cx="171.111" cy="189.247" r="2.22222" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 55 KiB |
@@ -0,0 +1,26 @@
|
||||
<svg width="320" height="320" viewBox="0 0 320 320" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M93.0566 263.873C93.0566 263.873 155.457 49.0889 157.825 49.0889C160.193 49.0889 311.297 52.2249 311.297 52.2249L245.505 270.977L93.0566 263.873Z" fill="white"/>
|
||||
<path d="M94.5921 264.192L95.8081 260.096L99.0721 248.832L104.064 231.808L110.336 210.304C112.704 202.176 115.136 194.048 117.504 185.92C120.064 177.28 122.624 168.576 125.184 159.936C127.744 151.296 130.304 142.592 132.928 133.824C135.424 125.504 137.92 117.184 140.416 108.8C142.656 101.376 144.896 93.952 147.136 86.528C148.992 80.448 150.848 74.368 152.768 68.352C154.112 64.064 155.456 59.84 156.928 55.616C157.632 53.632 158.464 51.712 159.168 49.728C159.232 49.536 159.424 49.472 159.168 49.536C159.424 49.536 159.68 51.536 159.872 49.536L163.52 51.6L178.304 51.92L200.576 52.368L226.944 52.88L254.336 53.456L279.68 53.968L289.632 54.192L299.584 54.416L305.28 54.544L310.976 52.672H312.448L309.568 51.968L307.776 57.856L302.976 73.792L295.936 97.216L287.296 125.952L277.952 157.44L268.416 189.12L259.52 218.688L251.968 243.776L246.592 261.76L244.928 267.392C244.544 268.352 244.288 269.312 244.032 270.272C244.032 270.4 243.968 270.528 243.904 270.656L244.416 270.592L240.384 268.4L229.248 267.888L212.864 267.12L192.768 266.16L170.88 265.136L148.672 264.112L128.064 263.152L110.72 262.32L98.1761 261.744L92.2241 263.488H91.9681C91.3921 263.488 91.4561 263.552 91.9041 263.744C92.6081 264 93.3761 264.192 94.1441 264.192L98.1761 264.384L109.312 264.896L125.696 265.664L145.792 266.624L167.68 267.648L189.888 268.672L210.496 269.632L227.968 270.464L240.448 271.04L246.4 271.296H246.656C246.656 271.296 247.104 271.36 247.168 271.232L248.96 265.344L253.76 249.408L260.8 225.984L269.44 197.184L278.912 165.76L288.448 134.08L297.344 104.512L304.896 79.424L310.272 61.44C311.104 58.624 312.192 55.808 312.832 52.928C312.832 52.8 312.896 52.672 312.96 52.544C313.088 52.224 310.336 51.84 310.08 51.84L303.936 51.712L287.68 51.392L264.576 50.88L237.696 50.304L210.304 49.728L185.6 49.216L166.784 48.832C163.584 48.768 160.32 48.704 157.12 48.64C156.672 48.64 156.352 48.576 156.096 48.896C155.712 49.536 155.456 50.176 155.264 50.88C154.048 54.016 153.088 57.216 152 60.352C150.336 65.6 148.672 70.784 147.008 76.032C144.896 82.816 142.848 89.664 140.736 96.448C138.304 104.384 135.936 112.32 133.568 120.32C131.008 128.896 128.448 137.536 125.888 146.112C123.264 154.88 120.704 163.648 118.08 172.416C115.584 180.864 113.088 189.312 110.592 197.76C108.352 205.504 106.048 213.184 103.808 220.928L98.1121 240.384C96.7041 245.12 95.3601 249.92 93.9521 254.656C93.1841 257.216 92.4161 259.84 91.7121 262.4L91.4561 263.36C91.3921 263.744 94.4641 264.576 94.5921 264.192Z" fill="#3D3D3D"/>
|
||||
<path d="M183.936 225.023C184.448 226.623 185.089 228.159 185.729 229.759C186.817 232.511 188.033 235.455 189.761 237.887C191.617 240.447 194.752 242.879 197.952 241.215C199.36 240.383 200.705 239.423 201.985 238.335C205.825 235.327 209.408 232.063 213.056 228.863C217.088 225.279 221.057 221.631 224.961 217.983C227.073 215.999 229.312 214.079 231.361 212.031L231.425 211.967C233.153 210.367 232.064 207.295 230.592 205.951C228.992 204.479 226.368 203.583 224.576 205.247C221.824 207.871 219.072 210.431 216.256 212.991C211.072 217.791 205.888 222.527 200.512 227.135C198.272 229.055 195.968 231.039 193.536 232.831L194.369 232.255C193.793 232.703 193.216 233.087 192.576 233.407C192.512 233.471 192.385 233.471 192.321 233.535C192.257 233.599 193.536 233.215 193.152 233.279C192.768 233.343 194.368 233.279 194.112 233.279C194.752 233.343 195.393 233.599 195.969 233.983C195.521 233.727 195.712 233.599 196.672 234.559C196.16 233.983 196.097 233.791 196.865 234.879C196.481 234.303 196.096 233.727 195.712 233.087C195.648 232.959 195.585 232.895 195.521 232.767C195.265 232.319 196.097 233.855 195.84 233.407L195.585 232.831C195.393 232.447 195.201 231.999 195.009 231.551C194.241 229.887 193.601 228.223 192.961 226.559C192.641 225.663 192.256 224.703 191.936 223.807C191.232 221.695 188.545 219.711 186.305 220.223C183.809 220.671 183.168 222.847 183.936 225.023Z" fill="#3D3D3D"/>
|
||||
<path d="M272.961 88.64L171.521 86.656C171.137 86.656 170.881 86.4 170.881 86.016C170.881 85.632 171.137 85.376 171.521 85.376L272.961 87.36C273.345 87.36 273.601 87.616 273.601 88C273.601 88.384 273.281 88.64 272.961 88.64Z" fill="#CECECE"/>
|
||||
<path d="M267.072 104.576L165.632 102.592C165.248 102.592 164.992 102.337 164.992 101.952C164.992 101.568 165.248 101.312 165.632 101.312L267.072 103.296C267.456 103.296 267.712 103.552 267.712 103.936C267.712 104.32 267.392 104.576 267.072 104.576Z" fill="#CECECE"/>
|
||||
<path d="M262.271 120.384L160.831 118.4C160.447 118.4 160.191 118.144 160.191 117.76C160.191 117.376 160.447 117.12 160.831 117.12L262.271 119.104C262.655 119.104 262.911 119.36 262.911 119.744C262.911 120.128 262.591 120.384 262.271 120.384Z" fill="#CECECE"/>
|
||||
<path d="M256.385 136.32L154.945 134.336C154.561 134.336 154.305 134.08 154.305 133.696C154.305 133.312 154.561 133.056 154.945 133.056L256.385 135.04C256.769 135.04 257.025 135.296 257.025 135.68C257.025 136.064 256.769 136.32 256.385 136.32Z" fill="#CECECE"/>
|
||||
<path d="M250.176 152.576L148.736 150.592C148.352 150.592 148.096 150.337 148.096 149.952C148.096 149.568 148.352 149.312 148.736 149.312L250.176 151.296C250.56 151.296 250.816 151.552 250.816 151.936C250.88 152.32 250.624 152.576 250.176 152.576C250.24 152.576 250.24 152.576 250.176 152.576Z" fill="#CECECE"/>
|
||||
<path d="M245.439 168.384L143.999 166.4C143.615 166.4 143.359 166.144 143.359 165.76C143.359 165.376 143.615 165.12 143.999 165.12L245.439 167.104C245.823 167.104 246.079 167.36 246.079 167.744C246.079 168.128 245.759 168.384 245.439 168.384Z" fill="#CECECE"/>
|
||||
<path d="M239.553 184.32L138.113 182.336C137.729 182.336 137.473 182.08 137.473 181.696C137.473 181.312 137.729 181.056 138.113 181.056L239.553 183.04C239.937 183.04 240.193 183.296 240.193 183.68C240.193 184.064 239.873 184.32 239.553 184.32Z" fill="#CECECE"/>
|
||||
<path d="M190.847 83.2632C188.927 88.5752 187.391 94.0152 186.175 99.5192C185.535 102.207 185.087 104.895 184.767 107.647C184.511 110.015 184.895 112.895 187.327 114.047C188.479 114.559 189.823 114.495 190.911 113.791C191.999 113.087 192.575 111.935 193.151 110.847L197.311 103.167L205.695 87.4872C206.719 85.6312 207.871 83.0712 209.855 82.1112C211.903 81.1512 213.183 83.0072 213.759 84.7992C216.127 92.3512 216.191 100.415 214.015 107.967C213.375 110.079 212.671 112.575 211.071 114.175C210.047 115.199 208.255 115.391 207.551 113.791C206.591 111.743 208.319 109.375 209.599 107.903C211.135 105.983 212.927 104.319 214.975 102.911C216.575 101.887 218.623 101.311 220.479 102.079C222.591 102.975 223.423 105.279 223.871 107.327C224.383 109.951 224.447 112.639 223.935 115.263C223.679 116.543 223.359 117.823 222.847 119.039L225.215 118.143C223.423 117.311 223.807 114.495 224.383 113.023C225.279 110.783 227.007 108.863 228.671 107.071C230.015 105.663 231.871 103.551 233.919 103.295C236.095 103.039 236.927 106.687 237.439 108.159C238.335 111.039 238.847 114.047 238.847 117.119C238.847 118.911 241.983 118.527 241.983 116.991C241.983 113.663 241.471 110.335 240.447 107.199C239.551 104.447 238.335 100.991 234.943 100.735C231.807 100.479 229.119 102.783 227.071 104.831C225.023 106.879 222.655 109.503 221.439 112.319C220.287 115.007 220.479 118.911 223.487 120.319C224.383 120.703 225.407 120.319 225.855 119.423C226.943 116.735 227.455 113.855 227.455 110.975C227.455 108.223 227.007 105.279 225.663 102.783C224.383 100.607 222.143 99.1992 219.583 99.0712C216.831 98.8792 214.335 99.9672 212.159 101.567C209.983 103.231 207.999 105.151 206.335 107.327C204.799 109.247 203.455 111.999 204.415 114.431C205.375 116.799 207.935 117.759 210.303 117.247C212.863 116.671 214.527 114.495 215.551 112.255C216.703 109.695 217.535 107.007 217.983 104.191C218.495 101.375 218.751 98.5592 218.687 95.6792C218.623 92.7992 218.303 89.9832 217.727 87.1672C217.215 84.7352 216.575 81.4712 214.335 79.9992C212.095 78.5272 208.959 79.1032 206.911 80.7672C204.735 82.5592 203.455 85.2472 202.175 87.6792L193.151 104.511L190.847 108.863C190.527 109.503 190.143 110.143 189.823 110.783C189.695 110.975 189.567 111.231 189.439 111.423C189.375 111.487 188.927 111.999 189.183 111.807C189.439 111.615 189.375 111.935 189.119 111.743C188.991 111.679 188.799 111.551 188.671 111.423C188.287 110.975 188.031 110.463 187.903 109.887C187.711 108.543 187.775 107.135 188.095 105.791C189.055 99.7752 190.463 93.8232 192.319 87.9992C192.767 86.5912 193.279 85.1832 193.791 83.7752C194.495 82.0472 191.423 81.8552 190.847 83.2632Z" fill="#CECECE"/>
|
||||
<path d="M161.663 147.521C163.007 145.793 164.479 144.193 166.079 142.721C167.679 141.185 169.471 139.905 171.391 138.945C171.903 138.753 172.415 138.625 172.927 138.561H173.119C172.991 138.497 172.927 138.433 172.863 138.369L173.183 138.817C173.567 139.713 173.759 140.673 173.759 141.633C173.823 143.745 173.247 145.793 172.095 147.521L172.799 147.329C172.671 147.329 173.375 147.969 173.375 147.713C173.375 147.585 173.247 147.329 173.247 147.137C173.183 146.753 173.311 146.369 173.503 145.985C174.015 145.153 174.783 144.513 175.743 144.129C177.983 142.977 180.287 142.081 182.655 141.377C183.167 141.185 183.679 141.057 184.255 140.993C184.511 140.993 184.767 140.993 184.959 140.993C185.151 141.057 185.151 141.057 185.087 140.993C184.959 140.865 184.959 140.865 185.023 140.929C185.599 141.505 185.663 142.721 185.535 143.425C185.279 145.345 183.999 146.945 182.143 147.521L184.575 148.737C184.063 148.033 184.895 147.009 185.343 146.433C186.047 145.665 186.879 145.025 187.775 144.449C189.567 143.169 191.487 142.145 193.471 141.377C193.727 141.249 194.047 141.185 194.303 141.121L194.559 141.057C194.943 141.057 194.879 140.993 194.431 140.801C194.431 140.801 194.943 141.633 195.007 141.633C195.455 142.529 195.711 143.489 195.647 144.449C195.519 146.177 194.047 148.161 192.127 147.777L194.111 149.697C196.159 145.537 200.639 143.233 205.247 143.873C205.887 144.001 206.143 143.489 205.823 142.977C205.375 142.337 204.671 141.889 203.903 141.761C198.847 140.929 193.791 143.425 191.423 147.969C190.975 148.929 192.703 149.761 193.407 149.889C195.391 150.273 197.311 149.185 198.079 147.329C198.847 145.345 198.271 143.041 197.119 141.249C196.479 140.225 195.519 139.393 194.367 138.945C193.151 138.497 191.999 138.881 190.847 139.329C188.671 140.161 186.687 141.313 184.831 142.657C183.231 143.873 180.543 145.921 182.079 148.225C182.591 148.929 183.615 149.697 184.511 149.377C186.495 148.673 187.967 146.945 188.287 144.897C188.671 142.465 187.391 140.033 185.087 139.009C182.591 137.921 179.839 139.201 177.471 140.097C176.191 140.609 174.847 141.121 173.567 141.761C172.543 142.209 171.711 142.849 171.007 143.745C169.407 146.049 171.647 148.993 174.143 149.249C174.399 149.249 174.719 149.249 174.847 149.057C176.319 146.881 176.895 144.257 176.575 141.697C176.255 139.009 174.655 136.385 171.711 136.129C170.367 136.129 169.087 136.513 167.999 137.281C166.847 137.985 165.759 138.817 164.735 139.713C162.623 141.441 160.767 143.361 159.103 145.537C158.399 146.561 161.023 148.353 161.663 147.521Z" fill="#CECECE"/>
|
||||
<path d="M215.039 148.992C217.599 147.392 219.647 144.96 222.463 143.744C223.679 143.168 225.023 142.976 226.367 143.168C227.583 143.424 228.031 144.384 228.415 145.472C228.799 146.688 228.991 148.48 227.775 149.312C227.519 149.44 227.263 149.568 227.007 149.632C226.303 149.76 227.455 149.44 227.391 150.208C227.391 150.016 227.327 149.76 227.327 149.504C227.391 149.184 227.455 148.928 227.583 148.672C228.351 147.392 230.015 146.816 231.295 146.368C232.895 145.728 234.495 145.216 236.159 144.832C236.799 144.704 237.887 144.256 238.527 144.64C238.911 144.96 239.167 145.472 239.231 145.984C239.423 146.88 239.551 147.776 239.615 148.672C239.615 149.248 239.679 150.08 239.103 150.4L240.639 150.976L240.959 151.424C240.959 151.36 240.959 151.296 240.959 151.232C241.023 151.168 241.023 150.976 241.087 150.848C241.215 150.528 241.471 150.272 241.727 150.08C242.431 149.632 243.199 149.248 243.967 148.992C245.631 148.352 247.359 147.968 249.151 147.776C250.559 147.648 248.575 145.28 247.615 145.344C245.119 145.536 242.751 146.176 240.511 147.2C239.615 147.648 238.719 148.16 238.463 149.184C238.143 150.336 238.783 151.36 239.615 152.128C239.871 152.384 240.703 152.96 241.151 152.704C242.815 151.744 242.239 148.992 241.919 147.456C241.471 145.216 239.935 143.296 237.823 142.4C236.863 142.08 235.839 142.08 234.815 142.336C233.535 142.592 232.319 142.976 231.039 143.36C229.183 144 226.751 144.704 225.407 146.24C222.527 149.568 228.607 154.56 230.783 150.72C231.807 148.928 231.103 146.496 230.207 144.768C229.183 142.72 227.327 141.312 225.151 140.8C220.031 139.84 216.831 144.256 212.991 146.624C211.967 147.264 214.207 149.504 215.039 148.992Z" fill="#CECECE"/>
|
||||
<path d="M152.32 177.664C153.664 175.936 155.136 174.336 156.736 172.864C158.336 171.328 160.128 170.048 162.048 169.088C162.56 168.896 163.072 168.768 163.584 168.704H163.776C163.648 168.64 163.584 168.576 163.52 168.512C163.648 168.64 163.712 168.832 163.84 168.96C164.224 169.856 164.416 170.816 164.416 171.776C164.48 173.888 163.904 175.936 162.752 177.664L163.456 177.472C163.264 177.472 163.968 178.112 164.032 177.856C164.032 177.728 163.904 177.472 163.904 177.28C163.84 176.896 163.968 176.512 164.16 176.128C164.672 175.296 165.44 174.656 166.4 174.272C168.64 173.184 170.944 172.224 173.312 171.52C173.824 171.328 174.336 171.2 174.912 171.136C175.168 171.136 175.424 171.136 175.616 171.136C175.744 171.2 175.808 171.2 175.744 171.136C175.68 171.072 175.616 171.008 175.68 171.072C176.256 171.648 176.32 172.864 176.192 173.568C175.936 175.488 174.656 177.088 172.8 177.728L175.232 178.944C174.72 178.24 175.552 177.216 176 176.64C176.704 175.872 177.536 175.232 178.432 174.656C180.224 173.376 182.144 172.352 184.192 171.584C184.448 171.456 184.768 171.392 185.024 171.328L185.28 171.264C185.664 171.264 185.6 171.2 185.152 171.008C185.152 171.008 185.664 171.84 185.728 171.84C186.176 172.736 186.432 173.696 186.368 174.72C186.24 176.448 184.768 178.432 182.848 178.048L184.832 179.968C186.88 175.808 191.36 173.504 195.904 174.144C196.544 174.272 196.8 173.76 196.48 173.248C196.032 172.608 195.328 172.16 194.56 172.032C189.504 171.2 184.448 173.696 182.08 178.24C181.632 179.2 183.424 180.032 184.064 180.16C186.048 180.544 187.968 179.456 188.736 177.6C189.504 175.616 188.928 173.312 187.776 171.52C187.136 170.496 186.176 169.664 185.024 169.216C183.808 168.768 182.656 169.152 181.504 169.6C179.328 170.432 177.344 171.584 175.488 172.928C173.888 174.144 171.2 176.192 172.736 178.496C173.184 179.2 174.272 179.968 175.168 179.712C177.152 179.008 178.624 177.28 178.944 175.232C179.328 172.8 178.048 170.368 175.744 169.344C173.248 168.256 170.496 169.536 168.128 170.432C166.784 170.944 165.504 171.456 164.224 172.096C163.2 172.544 162.368 173.184 161.664 174.08C160.064 176.384 162.304 179.328 164.8 179.584C164.992 179.584 165.376 179.584 165.504 179.392C166.976 177.216 167.552 174.592 167.232 172.032C166.912 169.344 165.312 166.72 162.368 166.464C161.024 166.464 159.744 166.848 158.656 167.616C157.504 168.32 156.416 169.152 155.392 170.048C153.28 171.776 151.424 173.696 149.76 175.872C149.056 176.768 151.68 178.624 152.32 177.664Z" fill="#CECECE"/>
|
||||
<path d="M205.76 179.136C208.32 177.536 210.368 175.104 213.12 173.888C214.336 173.312 215.68 173.12 217.024 173.312C218.24 173.568 218.688 174.528 219.072 175.616C219.456 176.832 219.648 178.624 218.432 179.456C218.176 179.648 217.92 179.712 217.664 179.776C216.96 179.904 218.112 179.584 218.048 180.352C218.048 180.16 217.984 179.904 217.984 179.712C218.048 179.392 218.112 179.136 218.24 178.88C219.008 177.6 220.672 177.024 221.952 176.576C223.552 175.936 225.152 175.424 226.816 175.04C227.456 174.912 228.544 174.464 229.184 174.848C229.568 175.168 229.824 175.68 229.888 176.128C230.08 177.024 230.208 177.92 230.272 178.816C230.272 179.392 230.336 180.224 229.76 180.544L231.296 181.12L231.616 181.568C231.616 181.504 231.616 181.44 231.616 181.376C231.68 181.312 231.68 181.12 231.68 180.992C231.808 180.672 232.064 180.416 232.32 180.224C233.024 179.776 233.792 179.392 234.56 179.136C236.224 178.496 238.016 178.112 239.808 177.984C241.216 177.856 239.232 175.488 238.272 175.552C235.776 175.744 233.344 176.384 231.104 177.472C230.208 177.92 229.312 178.432 229.056 179.456C228.736 180.608 229.376 181.696 230.208 182.4C230.464 182.656 231.296 183.232 231.744 182.976C233.408 182.016 232.832 179.264 232.512 177.728C232.064 175.488 230.528 173.568 228.416 172.672C227.456 172.352 226.432 172.288 225.408 172.608C224.128 172.864 222.912 173.248 221.632 173.632C219.776 174.272 217.344 174.976 216 176.512C213.12 179.84 219.2 184.832 221.376 180.992C222.4 179.2 221.696 176.768 220.8 175.04C219.776 173.056 217.92 171.584 215.744 171.072C210.624 170.112 207.424 174.528 203.584 176.896C202.624 177.472 204.864 179.712 205.76 179.136Z" fill="#CECECE"/>
|
||||
<path d="M177.984 251.84C180.16 249.856 182.592 248.192 185.216 246.784C186.24 246.272 187.456 246.016 188.416 246.72C189.248 247.36 189.888 248.256 190.272 249.216C190.656 250.048 191.744 252.096 190.848 252.864C190.784 252.928 190.656 252.992 190.528 253.056C190.976 253.696 191.232 253.76 191.232 253.312C191.36 253.184 191.488 252.928 191.616 252.736C192.128 252.224 192.64 251.776 193.216 251.392C194.432 250.496 198.08 248.576 198.592 251.264C198.848 252.096 199.68 252.544 200.512 252.288C201.856 251.584 203.328 251.2 204.864 251.136C205.44 251.136 205.76 251.072 205.76 251.584C205.824 251.968 205.632 252.352 205.248 252.544L206.848 254.208C209.216 251.84 211.712 249.536 214.016 247.104C214.848 246.208 215.232 245.056 214.272 244.096C213.44 243.2 212.032 243.136 211.2 243.968C211.136 244.032 211.136 244.032 211.072 244.096C209.664 245.568 209.536 247.872 210.176 249.728C210.88 251.84 212.608 253.504 214.72 254.144C215.168 254.272 215.68 254.08 215.616 253.568C215.552 253.056 214.848 252.608 214.336 252.48C211.84 251.712 211.392 247.936 212.608 246.016C212.672 245.888 212.8 245.76 212.864 245.632L213.376 245.184L212.672 244.608C212.672 244.672 212.672 244.8 212.608 244.864C212.544 244.992 212.48 245.184 212.352 245.376C211.648 246.272 210.88 247.04 210.048 247.744L205.056 252.672C204.288 253.44 205.888 254.464 206.592 254.272C207.488 254.016 208 253.184 207.872 252.288C207.744 251.2 207.04 250.304 206.08 249.92C203.776 248.768 200.832 249.792 198.72 250.816L200.64 251.84C200.128 249.024 196.608 247.68 194.112 248.448C192.64 248.96 191.296 249.792 190.144 250.88C188.992 251.84 188.416 253.248 189.824 254.336C190.848 255.104 192.576 255.104 193.088 253.76C193.6 252.416 192.768 250.688 192.192 249.472C191.04 247.04 188.864 244.608 185.92 244.672C184.064 244.736 182.4 245.824 180.864 246.784C179.2 247.872 177.6 249.088 176.064 250.368C175.232 251.072 177.088 252.544 177.856 251.904L177.984 251.84Z" fill="#CECECE"/>
|
||||
<path d="M86.4639 118.401C86.4639 118.401 58.3679 68.6094 36.2879 68.6094C14.2079 68.6094 6.52785 85.1854 9.27985 97.0894C12.8639 112.769 67.6479 136.897 74.0479 134.081C80.4479 131.265 86.4639 118.401 86.4639 118.401Z" fill="white"/>
|
||||
<path d="M87.8716 118.593C86.0796 115.457 84.1596 112.385 82.1756 109.313C77.8236 102.529 73.0236 96.0007 67.9036 89.7927C62.4636 83.2647 56.3836 76.8647 49.1516 72.3207C46.0156 70.2727 42.5596 68.8007 38.9116 68.0327C36.8636 67.7127 34.7516 67.5847 32.7036 67.7767C29.9516 67.9687 27.1996 68.4167 24.5116 69.2487C16.3196 71.8087 9.72763 78.2087 7.80763 86.7207C6.97563 90.1767 6.97563 93.7607 7.87163 97.1527C8.63963 99.7767 10.3676 102.017 12.2236 104.001C17.4716 109.761 24.3836 114.113 31.0396 118.017C38.5276 122.369 46.3356 126.273 54.3356 129.537C57.7276 130.945 61.1196 132.225 64.6396 133.313C67.0716 134.145 69.5676 134.721 72.1276 135.041C73.0236 135.169 73.9196 135.105 74.8156 134.977C76.4156 134.593 77.8876 133.249 79.0396 132.161C82.2396 129.089 84.6716 125.121 86.7836 121.217C87.1676 120.449 87.6156 119.681 87.9996 118.913C88.3836 118.145 85.4396 116.801 85.0556 117.697C83.8396 120.321 82.3676 122.817 80.7676 125.185C79.4876 127.169 78.0156 128.961 76.3516 130.625C75.2636 131.649 73.8556 132.865 72.5116 133.249H72.3196C72.1916 133.249 72.6396 133.249 72.3196 133.249C72.1276 133.249 71.9356 133.249 71.8076 133.249C71.6796 133.249 71.1676 133.249 71.5516 133.249L70.8476 133.185C70.3356 133.121 69.8876 133.057 69.3756 132.929C69.2476 132.929 68.8636 132.801 69.3116 132.929L68.9276 132.865L68.0316 132.673C66.6876 132.353 65.3436 131.969 64.0636 131.521L63.0396 131.201L62.7196 131.073L62.0796 130.881C61.2476 130.625 60.4796 130.305 59.6476 129.985C52.1596 127.169 44.8636 123.841 37.8236 120.001C30.9116 116.353 23.9996 112.193 18.2396 107.137C15.9996 105.281 14.0156 103.105 12.3516 100.673C10.8796 98.3047 10.3676 95.6167 10.3676 92.7367C10.3676 84.8647 14.4636 77.5687 21.1836 73.4087C25.4716 70.7847 30.4636 69.5687 35.3916 69.3767C36.0316 69.3767 36.7356 69.3127 37.3756 69.3127C37.6956 69.3127 38.0156 69.3127 38.3356 69.3767C38.6556 69.4407 39.0396 69.4407 39.4236 69.5047L39.9996 69.6327L40.3836 69.6967C40.7676 69.7607 41.0876 69.8887 41.4716 69.9527L41.9836 70.0807C42.4316 70.2087 41.7916 70.0167 42.0476 70.0807L42.3676 70.2087C42.7516 70.3367 43.1356 70.4647 43.5196 70.6567L44.0316 70.8487L44.4156 71.0407C51.2636 74.3047 57.1516 80.0647 62.3356 85.8247C67.7116 91.9047 72.6396 98.3687 77.1196 105.153C79.8076 109.121 82.4316 113.217 84.7996 117.377L85.1836 118.017C85.6316 118.593 86.3356 118.977 87.1036 119.041C87.4236 119.297 88.2556 119.169 87.8716 118.593Z" fill="#3D3D3D"/>
|
||||
<path d="M150.612 170.46C158.819 143.362 146.276 115.581 122.595 108.408C98.9142 101.235 73.0633 117.387 64.8556 144.485C56.6478 171.583 69.1913 199.365 92.8722 206.537C116.553 213.71 142.404 197.558 150.612 170.46Z" fill="white"/>
|
||||
<path d="M63.7438 143.553C60.6079 153.921 60.4159 164.993 63.2319 175.425C65.9199 185.089 71.3598 194.113 79.1678 200.449C86.7838 206.593 96.3199 209.857 106.112 209.665C115.648 209.409 124.864 205.697 132.416 199.937C140.608 193.537 146.816 184.961 150.4 175.233C154.304 164.993 155.2 153.921 153.152 143.169C151.232 133.185 146.24 123.969 139.008 116.865C131.904 110.081 122.624 105.985 112.832 105.409C103.296 104.833 93.8239 107.841 85.9519 113.025C77.4399 118.785 70.7838 126.785 66.6238 136.129C65.4718 138.497 64.5119 140.993 63.7438 143.553C63.4239 144.641 65.5358 146.881 66.0478 145.409C68.9278 135.681 74.4319 126.913 81.9839 120.129C88.8959 113.985 97.4079 109.633 106.624 108.481C115.776 107.265 125.12 109.377 132.864 114.433C140.608 119.489 146.176 127.297 149.184 135.873C152.576 145.409 152.832 155.905 150.528 165.697C148.224 175.681 143.296 184.897 136.192 192.321C129.728 198.977 121.408 203.969 112.256 205.889C103.232 207.809 93.7599 206.529 85.6319 202.177C77.5679 197.825 71.4239 190.657 67.7759 182.337C63.8719 173.121 62.6559 162.945 64.3199 153.089C64.7679 150.465 65.3439 147.905 66.1119 145.409C66.3039 144.321 64.1918 142.017 63.7438 143.553Z" fill="#3D3D3D"/>
|
||||
<path d="M153.725 170.463C161.595 144.482 150.341 118.078 128.588 111.49C106.835 104.901 82.8219 120.622 74.9523 146.603C67.0827 172.584 78.3371 198.988 100.09 205.576C121.842 212.165 145.856 196.444 153.725 170.463Z" fill="#CECECE"/>
|
||||
<path d="M93.568 154.305C95.872 158.145 98.24 161.985 100.736 165.697C102.4 168.257 104.256 170.753 106.176 173.121C106.88 174.017 107.712 174.785 108.608 175.425C110.016 176.321 111.808 176.577 113.408 176.065C115.136 175.553 116.48 174.145 117.632 172.801C119.296 170.881 120.896 168.769 122.368 166.721C125.888 161.857 129.152 156.737 132.352 151.617C133.632 149.569 134.912 147.521 136.192 145.473C136.832 144.449 137.536 143.425 138.112 142.337C138.112 142.273 138.176 142.273 138.176 142.209C138.944 140.929 136.896 140.033 136 139.905C134.72 139.713 132.8 139.777 132.032 141.057C130.56 143.553 129.088 145.985 127.552 148.417C124.544 153.281 121.408 158.145 118.208 162.817C117.44 163.969 116.608 165.121 115.776 166.273C115.392 166.785 115.008 167.297 114.624 167.873L114.048 168.577L113.792 168.897C113.472 169.281 114.048 168.577 113.728 168.961C112.64 170.369 111.424 171.713 110.08 172.929C110.016 172.993 109.952 172.993 109.888 173.057C109.696 173.249 110.464 172.737 110.208 172.801L109.888 172.993C109.504 173.249 110.656 172.737 110.272 172.865C110.848 172.737 111.424 172.673 112 172.737C112.384 172.737 112.704 172.865 113.024 172.929C113.024 172.929 113.728 173.377 113.472 173.121C113.344 173.057 112.832 172.673 113.28 172.993C113.728 173.313 113.216 172.929 113.088 172.801C112.96 172.673 112.704 172.481 112.576 172.289C111.744 171.393 110.976 170.497 110.272 169.537C109.824 168.961 109.44 168.385 108.992 167.809L108.352 166.913C108.16 166.593 108.544 167.169 108.224 166.721L107.904 166.209C105.088 162.113 102.464 157.889 99.904 153.665C99.84 153.601 99.84 153.473 99.776 153.409C99.072 152.193 97.216 151.809 95.872 152.001C95.04 152.257 92.8 152.961 93.568 154.305Z" fill="#3D3D3D"/>
|
||||
<path d="M56.2551 195.073C58.4951 200.897 62.3351 205.953 67.3911 209.665C67.9031 210.113 68.6711 210.049 69.1191 209.537C69.1831 209.473 69.1831 209.409 69.2471 209.345C69.5671 208.577 69.3111 207.681 68.6071 207.169C64.2551 203.969 60.9271 199.681 58.8791 194.689C58.6231 193.985 58.0471 193.217 57.1511 193.409C56.4471 193.601 55.9991 194.305 56.1911 195.009C56.2551 195.009 56.2551 195.009 56.2551 195.073Z" fill="#CECECE"/>
|
||||
<path d="M54.2087 183.105V177.025C54.2087 176.385 53.3767 176.065 52.8647 175.937C52.4807 175.809 52.0967 175.745 51.7127 175.745C51.5847 175.745 51.1367 175.809 51.1367 176.065V182.145C51.1367 182.785 51.9687 183.105 52.4807 183.233C52.8647 183.361 53.2487 183.425 53.6327 183.425C53.7607 183.425 54.2087 183.361 54.2087 183.105Z" fill="#CECECE"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8062_155)">
|
||||
<path d="M23.9996 12.0235C17.5625 12.4117 12.4114 17.563 12.0232 24H11.9762C11.588 17.563 6.4369 12.4117 0 12.0235V11.9765C6.4369 11.5883 11.588 6.43719 11.9762 0H12.0232C12.4114 6.43719 17.5625 11.5883 23.9996 11.9765V12.0235Z" fill="black"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8062_155">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 491 B |
@@ -0,0 +1,6 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.56 12.25C22.56 11.47 22.49 10.72 22.36 10H12V14.26H17.92C17.66 15.63 16.88 16.79 15.71 17.57V20.34H19.28C21.36 18.42 22.56 15.6 22.56 12.25Z" fill="#4285F4"/>
|
||||
<path d="M11.9999 23C14.9699 23 17.4599 22.02 19.2799 20.34L15.7099 17.57C14.7299 18.23 13.4799 18.63 11.9999 18.63C9.13993 18.63 6.70993 16.7 5.83993 14.1H2.17993V16.94C3.98993 20.53 7.69993 23 11.9999 23Z" fill="#34A853"/>
|
||||
<path d="M5.84 14.09C5.62 13.43 5.49 12.73 5.49 12C5.49 11.27 5.62 10.57 5.84 9.91001V7.07001H2.18C1.43 8.55001 1 10.22 1 12C1 13.78 1.43 15.45 2.18 16.93L5.03 14.71L5.84 14.09Z" fill="#FBBC05"/>
|
||||
<path d="M11.9999 5.38C13.6199 5.38 15.0599 5.94 16.2099 7.02L19.3599 3.87C17.4499 2.09 14.9699 1 11.9999 1C7.69993 1 3.98993 3.47 2.17993 7.07L5.83993 9.91C6.70993 7.31 9.13993 5.38 11.9999 5.38Z" fill="#EA4335"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 911 B |
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="126" height="51" viewBox="0 0 126 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M50.9031 18.6995L53.7723 4.14192C53.9117 3.43482 54.5317 2.92505 55.2524 2.92505H69.7847C70.7362 2.92505 71.4501 3.79515 71.2642 4.72832L68.123 20.4998L67.6125 23.271L64.2215 20.4998H52.3832C51.4329 20.4998 50.7193 19.6318 50.9031 18.6995Z" fill="#5D7BE7"/>
|
||||
<path d="M54.7317 23.1838L57.6009 8.62617C57.7403 7.91907 58.3603 7.4093 59.081 7.4093H73.6133C74.5648 7.4093 75.2787 8.2794 75.0928 9.21258L72.1934 23.7702C72.0528 24.4759 71.4334 24.9841 70.7139 24.9841H56.2118C55.2615 24.9841 54.5479 24.1161 54.7317 23.1838Z" fill="#48DECC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70.7299 7.4093L68.1228 20.4993L67.8435 22.0156C67.7395 22.5798 67.0686 22.8261 66.6244 22.463L64.2214 20.4993H55.2605L57.6006 8.62617C57.74 7.91907 58.3601 7.4093 59.0808 7.4093H70.7299Z" fill="#3C53A5"/>
|
||||
<path d="M8.80663 46.6602C8.17987 46.6602 7.55311 46.5722 6.92635 46.3963C6.31058 46.2093 5.7498 45.9179 5.24399 45.5221C4.73818 45.1152 4.33134 44.582 4.02346 43.9222C3.72657 43.2625 3.57812 42.4543 3.57812 41.4976V34.5868C3.57812 34.4108 3.66059 34.3229 3.82553 34.3229H6.39855C6.56349 34.3229 6.64596 34.4108 6.64596 34.5868V40.8874C6.64596 41.844 6.84388 42.5477 7.23973 42.9986C7.64657 43.4494 8.16888 43.6748 8.80663 43.6748C9.43339 43.6748 9.9447 43.4494 10.3405 42.9986C10.7474 42.5477 10.9508 41.844 10.9508 40.8874V34.5868C10.9508 34.4108 11.0388 34.3229 11.2147 34.3229H13.7712C13.9472 34.3229 14.0351 34.4108 14.0351 34.5868V41.4976C14.0351 42.4543 13.8812 43.2625 13.5733 43.9222C13.2764 44.582 12.8751 45.1152 12.3693 45.5221C11.8635 45.9179 11.2972 46.2093 10.6704 46.3963C10.0547 46.5722 9.43339 46.6602 8.80663 46.6602Z" fill="black"/>
|
||||
<path d="M19.3721 46.5942C18.3825 46.5942 17.5523 46.3963 16.8816 46.0004C16.2109 45.6046 15.7325 45.0383 15.4466 44.3016C15.3807 44.1366 15.4411 44.0377 15.6281 44.0047L17.6073 43.5923C17.7503 43.5593 17.8602 43.6088 17.9372 43.7408C18.0911 43.9827 18.2836 44.1586 18.5145 44.2686C18.7454 44.3785 18.9983 44.4335 19.2732 44.4335C19.5261 44.4335 19.7295 44.395 19.8834 44.3181C20.0374 44.2411 20.1144 44.1256 20.1144 43.9717C20.1144 43.8507 20.0484 43.7408 19.9164 43.6418C19.7955 43.5428 19.5536 43.4439 19.1907 43.3449L18.8608 43.2625C17.7283 42.9656 16.9311 42.5532 16.4693 42.0254C16.0184 41.4866 15.793 40.8819 15.793 40.2111C15.793 39.6833 15.9415 39.216 16.2383 38.8092C16.5462 38.4023 16.9696 38.0834 17.5084 37.8525C18.0581 37.6216 18.6849 37.5061 19.3886 37.5061C20.3233 37.5061 21.0875 37.6876 21.6813 38.0504C22.286 38.4023 22.7259 38.9521 23.0008 39.6998C23.0667 39.8757 23.0063 39.9802 22.8193 40.0132L20.9061 40.4585C20.7631 40.4915 20.6587 40.4365 20.5927 40.2936C20.4717 40.0847 20.3233 39.9307 20.1474 39.8318C19.9824 39.7218 19.768 39.6668 19.5041 39.6668C19.3062 39.6668 19.1412 39.7053 19.0093 39.7823C18.8773 39.8483 18.8114 39.9582 18.8114 40.1122C18.8114 40.387 19.1357 40.607 19.7845 40.7719L20.0979 40.8544C21.2524 41.1403 22.0496 41.5196 22.4895 41.9924C22.9293 42.4653 23.1492 43.0755 23.1492 43.8232C23.1492 44.384 22.9843 44.8733 22.6544 45.2912C22.3355 45.698 21.8902 46.0169 21.3184 46.2478C20.7576 46.4787 20.1089 46.5942 19.3721 46.5942Z" fill="black"/>
|
||||
<path d="M28.5733 46.5942C27.6497 46.5942 26.8415 46.4018 26.1487 46.0169C25.467 45.6321 24.9337 45.0988 24.5489 44.417C24.175 43.7243 23.9881 42.9326 23.9881 42.0419C23.9881 41.1513 24.175 40.3651 24.5489 39.6833C24.9337 39.0016 25.467 38.4683 26.1487 38.0834C26.8415 37.6986 27.6497 37.5061 28.5733 37.5061C29.5519 37.5061 30.3711 37.7206 31.0309 38.1494C31.6906 38.5782 32.1799 39.172 32.4988 39.9307C32.8287 40.6784 32.9661 41.5526 32.9112 42.5532C32.9002 42.7182 32.8067 42.8006 32.6308 42.8006H26.9899C27.2098 43.6913 27.7431 44.1366 28.5898 44.1366C29.2496 44.1366 29.7334 43.9277 30.0413 43.5099C30.1402 43.3999 30.2557 43.3614 30.3876 43.3944L32.4988 44.1036C32.6638 44.1806 32.7077 44.2961 32.6308 44.45C32.2239 45.1977 31.6521 45.742 30.9154 46.0829C30.1897 46.4237 29.409 46.5942 28.5733 46.5942ZM28.5403 39.8318C27.6937 39.8318 27.1769 40.2826 26.9899 41.1842H29.9918C29.8158 40.2826 29.332 39.8318 28.5403 39.8318Z" fill="black"/>
|
||||
<path d="M34.5871 46.4292C34.4111 46.4292 34.3232 46.3413 34.3232 46.1653V37.9185C34.3232 37.7536 34.4111 37.6711 34.5871 37.6711H36.6488C36.8357 37.6711 36.9292 37.7536 36.9292 37.9185L36.9787 38.8092C37.2756 38.3693 37.6494 38.0504 38.1002 37.8525C38.5511 37.6546 39.0349 37.5556 39.5517 37.5556C39.6726 37.5556 39.7826 37.5611 39.8816 37.5721C39.9915 37.5831 40.0905 37.5996 40.1785 37.6216C40.3324 37.6766 40.4094 37.7755 40.4094 37.9185V40.1781C40.4094 40.3541 40.3104 40.4255 40.1125 40.3925C40.0025 40.3706 39.8761 40.3541 39.7331 40.3431C39.6012 40.3211 39.4472 40.3101 39.2713 40.3101C38.9854 40.3101 38.6885 40.3761 38.3806 40.508C38.0728 40.629 37.8144 40.8269 37.6054 41.1018C37.3965 41.3767 37.2921 41.7285 37.2921 42.1574V46.1653C37.2921 46.3413 37.2041 46.4292 37.0282 46.4292H34.5871Z" fill="black"/>
|
||||
<path d="M42.0819 46.4292C41.906 46.4292 41.818 46.3413 41.818 46.1653V34.5868C41.818 34.4108 41.906 34.3229 42.0819 34.3229H49.7845C49.9604 34.3229 50.0484 34.4108 50.0484 34.5868V36.8134C50.0484 36.9783 49.9604 37.0608 49.7845 37.0608H44.9024V39.3864H48.9928C49.1687 39.3864 49.2567 39.4744 49.2567 39.6503V41.877C49.2567 42.0419 49.1687 42.1244 48.9928 42.1244H44.9024V46.1653C44.9024 46.3413 44.8144 46.4292 44.6385 46.4292H42.0819Z" fill="black"/>
|
||||
<path d="M55.1501 46.5942C54.2265 46.5942 53.4183 46.4018 52.7255 46.0169C52.0438 45.6321 51.5105 45.0988 51.1256 44.417C50.7518 43.7243 50.5649 42.9326 50.5649 42.0419C50.5649 41.1513 50.7518 40.3651 51.1256 39.6833C51.5105 39.0016 52.0438 38.4683 52.7255 38.0834C53.4183 37.6986 54.2265 37.5061 55.1501 37.5061C56.1287 37.5061 56.9479 37.7206 57.6077 38.1494C58.2674 38.5782 58.7567 39.172 59.0756 39.9307C59.4055 40.6784 59.5429 41.5526 59.488 42.5532C59.477 42.7182 59.3835 42.8006 59.2076 42.8006H53.5667C53.7866 43.6913 54.3199 44.1366 55.1666 44.1366C55.8264 44.1366 56.3102 43.9277 56.618 43.5099C56.717 43.3999 56.8325 43.3614 56.9644 43.3944L59.0756 44.1036C59.2406 44.1806 59.2845 44.2961 59.2076 44.45C58.8007 45.1977 58.2289 45.742 57.4922 46.0829C56.7665 46.4237 55.9858 46.5942 55.1501 46.5942ZM55.1171 39.8318C54.2704 39.8318 53.7536 40.2826 53.5667 41.1842H56.5686C56.3926 40.2826 55.9088 39.8318 55.1171 39.8318Z" fill="black"/>
|
||||
<path d="M65.0399 46.5942C64.1162 46.5942 63.3081 46.4018 62.6153 46.0169C61.9336 45.6321 61.4003 45.0988 61.0154 44.417C60.6416 43.7243 60.4546 42.9326 60.4546 42.0419C60.4546 41.1513 60.6416 40.3651 61.0154 39.6833C61.4003 39.0016 61.9336 38.4683 62.6153 38.0834C63.3081 37.6986 64.1162 37.5061 65.0399 37.5061C66.0185 37.5061 66.8377 37.7206 67.4975 38.1494C68.1572 38.5782 68.6465 39.172 68.9654 39.9307C69.2953 40.6784 69.4327 41.5526 69.3777 42.5532C69.3667 42.7182 69.2733 42.8006 69.0973 42.8006H63.4565C63.6764 43.6913 64.2097 44.1366 65.0564 44.1366C65.7161 44.1366 66.2 43.9277 66.5078 43.5099C66.6068 43.3999 66.7223 43.3614 66.8542 43.3944L68.9654 44.1036C69.1303 44.1806 69.1743 44.2961 69.0973 44.45C68.6905 45.1977 68.1187 45.742 67.382 46.0829C66.6563 46.4237 65.8756 46.5942 65.0399 46.5942ZM65.0069 39.8318C64.1602 39.8318 63.6434 40.2826 63.4565 41.1842H66.4584C66.2824 40.2826 65.7986 39.8318 65.0069 39.8318Z" fill="black"/>
|
||||
<path d="M74.4184 46.5942C73.6047 46.5942 72.89 46.4073 72.2742 46.0334C71.6694 45.6485 71.1966 45.1152 70.8557 44.4335C70.5149 43.7408 70.3444 42.9436 70.3444 42.0419C70.3444 41.1293 70.5149 40.3376 70.8557 39.6668C71.1966 38.9851 71.6694 38.4573 72.2742 38.0834C72.89 37.6986 73.6047 37.5061 74.4184 37.5061C75.331 37.5061 76.0952 37.7865 76.711 38.3473V34.3229C76.711 34.1469 76.799 34.059 76.9749 34.059H79.416C79.5919 34.059 79.6799 34.1469 79.6799 34.3229V46.1653C79.6799 46.3413 79.5919 46.4292 79.416 46.4292H77.3378C77.1618 46.4292 77.0739 46.3413 77.0739 46.1653L77.0409 45.3901C76.4031 46.1928 75.529 46.5942 74.4184 46.5942ZM75.1441 43.9882C75.6829 43.9882 76.1172 43.8067 76.4471 43.4439C76.777 43.081 76.9419 42.6137 76.9419 42.0419C76.9419 41.4701 76.777 41.0083 76.4471 40.6564C76.1172 40.2936 75.6829 40.1122 75.1441 40.1122C74.6053 40.1122 74.171 40.2936 73.8411 40.6564C73.5112 41.0083 73.3463 41.4701 73.3463 42.0419C73.3463 42.6137 73.5112 43.081 73.8411 43.4439C74.171 43.8067 74.6053 43.9882 75.1441 43.9882Z" fill="black"/>
|
||||
<path d="M86.8591 46.5942C85.7486 46.5942 84.8744 46.1928 84.2366 45.3901L84.2037 46.1653C84.2037 46.3413 84.1102 46.4292 83.9233 46.4292H81.8616C81.6856 46.4292 81.5976 46.3413 81.5976 46.1653V34.3229C81.5976 34.1469 81.6856 34.059 81.8616 34.059H84.3026C84.4786 34.059 84.5665 34.1469 84.5665 34.3229V38.3473C85.1823 37.7865 85.9465 37.5061 86.8591 37.5061C87.6728 37.5061 88.3821 37.6986 88.9868 38.0834C89.6026 38.4573 90.0809 38.9851 90.4218 39.6668C90.7627 40.3376 90.9331 41.1293 90.9331 42.0419C90.9331 42.9436 90.7627 43.7408 90.4218 44.4335C90.0809 45.1152 89.6026 45.6485 88.9868 46.0334C88.3821 46.4073 87.6728 46.5942 86.8591 46.5942ZM86.1334 43.9882C86.6722 43.9882 87.1066 43.8067 87.4364 43.4439C87.7663 43.081 87.9312 42.6137 87.9312 42.0419C87.9312 41.4701 87.7663 41.0083 87.4364 40.6564C87.1066 40.2936 86.6722 40.1122 86.1334 40.1122C85.5946 40.1122 85.1603 40.2936 84.8304 40.6564C84.5005 41.0083 84.3356 41.4701 84.3356 42.0419C84.3356 42.6137 84.5005 43.081 84.8304 43.4439C85.1603 43.8067 85.5946 43.9882 86.1334 43.9882Z" fill="black"/>
|
||||
<path d="M96.0342 46.5942C95.2205 46.5942 94.5057 46.4073 93.89 46.0334C93.2852 45.6485 92.8124 45.1152 92.4715 44.4335C92.1307 43.7408 91.9602 42.9436 91.9602 42.0419C91.9602 41.1293 92.1307 40.3376 92.4715 39.6668C92.8124 38.9851 93.2852 38.4573 93.89 38.0834C94.5057 37.6986 95.2205 37.5061 96.0342 37.5061C96.584 37.5061 97.0788 37.6106 97.5186 37.8195C97.9694 38.0175 98.3488 38.3088 98.6567 38.6937L98.6897 37.9185C98.6897 37.7536 98.7776 37.6711 98.9536 37.6711H101.032C101.208 37.6711 101.296 37.7536 101.296 37.9185V46.1653C101.296 46.3413 101.208 46.4292 101.032 46.4292H98.9536C98.7776 46.4292 98.6897 46.3413 98.6897 46.1653L98.6567 45.3901C98.0189 46.1928 97.1447 46.5942 96.0342 46.5942ZM96.7599 43.9882C97.2987 43.9882 97.733 43.8067 98.0629 43.4439C98.3928 43.081 98.5577 42.6137 98.5577 42.0419C98.5577 41.4701 98.3928 41.0083 98.0629 40.6564C97.733 40.2936 97.2987 40.1122 96.7599 40.1122C96.2211 40.1122 95.7868 40.2936 95.4569 40.6564C95.127 41.0083 94.9621 41.4701 94.9621 42.0419C94.9621 42.6137 95.127 43.081 95.4569 43.4439C95.7868 43.8067 96.2211 43.9882 96.7599 43.9882Z" fill="black"/>
|
||||
<path d="M107.304 46.5942C106.38 46.5942 105.578 46.4018 104.896 46.0169C104.214 45.6321 103.686 45.0988 103.312 44.417C102.95 43.7353 102.768 42.9436 102.768 42.0419C102.768 41.1403 102.95 40.3541 103.312 39.6833C103.686 39.0016 104.214 38.4683 104.896 38.0834C105.578 37.6986 106.38 37.5061 107.304 37.5061C108.283 37.5061 109.14 37.7206 109.877 38.1494C110.625 38.5672 111.158 39.249 111.477 40.1946C111.532 40.3816 111.471 40.4915 111.295 40.5245L109.25 41.1018C109.096 41.1348 108.981 41.0798 108.904 40.9368C108.75 40.6509 108.552 40.442 108.31 40.3101C108.068 40.1781 107.788 40.1122 107.469 40.1122C106.908 40.1122 106.485 40.2991 106.199 40.6729C105.924 41.0358 105.786 41.4921 105.786 42.0419C105.786 42.5807 105.924 43.0425 106.199 43.4274C106.485 43.8012 106.908 43.9882 107.469 43.9882C107.777 43.9882 108.057 43.9222 108.31 43.7903C108.563 43.6473 108.761 43.4219 108.904 43.114C108.992 42.9601 109.102 42.8996 109.234 42.9326L111.46 43.4934C111.647 43.5264 111.702 43.6363 111.625 43.8232C111.284 44.7579 110.724 45.4561 109.943 45.9179C109.173 46.3688 108.294 46.5942 107.304 46.5942Z" fill="black"/>
|
||||
<path d="M113.27 46.4292C113.095 46.4292 113.007 46.3413 113.007 46.1653V34.3229C113.007 34.1469 113.095 34.059 113.27 34.059H115.712C115.887 34.059 115.975 34.1469 115.975 34.3229V40.607L118.417 37.8195C118.504 37.7206 118.609 37.6711 118.73 37.6711H121.616C121.726 37.6711 121.798 37.7041 121.831 37.77C121.864 37.825 121.836 37.8965 121.748 37.9845L119.142 40.6894L122.095 46.1159C122.15 46.2038 122.161 46.2808 122.128 46.3468C122.095 46.4018 122.023 46.4292 121.913 46.4292H119.175C119.032 46.4292 118.928 46.3688 118.862 46.2478L117.064 42.8501L115.975 43.9717V46.1653C115.975 46.3413 115.887 46.4292 115.712 46.4292H113.27Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.78896 19.4091L7.99218 8.23064C8.17126 7.32203 8.96801 6.66699 9.89409 6.66699H21.0244C22.247 6.66699 23.1644 7.78505 22.9255 8.98416L20.3884 21.7224L19.9511 24.0963L17.0463 21.7224H7.69088C6.4698 21.7224 5.55284 20.6071 5.78896 19.4091Z" fill="#5D7BE7"/>
|
||||
<path d="M9.06875 23.2499L11.272 12.0715C11.451 11.1629 12.2478 10.5078 13.1739 10.5078H24.3041C25.5268 10.5078 26.4441 11.6259 26.2053 12.825L23.9789 24.0034C23.7983 24.9102 23.0024 25.5632 22.0777 25.5632H10.9707C9.74959 25.5632 8.83262 24.4479 9.06875 23.2499Z" fill="#48DECC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.6215 10.5078L20.3881 21.7213L20.2479 22.4828C20.1143 23.2079 19.2522 23.5243 18.6813 23.0577L17.046 21.7213H9.36963L11.2716 12.0715C11.4507 11.1629 12.2474 10.5078 13.1735 10.5078H22.6215Z" fill="#3C53A5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 912 B |
@@ -0,0 +1,18 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M51.2918 144.167C51.2918 144.167 41.1252 59.7501 48.3335 57.6251C55.5418 55.5001 74.8752 57.0418 80.4168 57.0418C85.9585 57.0418 88.2918 63.1251 88.2918 63.1251C88.2918 63.1251 138.959 64.7501 142.625 65.7501C146.292 66.7501 131.209 144.208 131.209 144.208L51.2918 144.167Z" fill="#3D3D3D"/>
|
||||
<path d="M52.0833 144.375C51.9166 143.083 51.7916 141.792 51.625 140.5C51.25 137.167 50.875 133.792 50.5416 130.458C50.0416 125.708 49.5833 120.958 49.125 116.208C48.625 110.833 48.1666 105.458 47.7916 100.042C47.4166 94.7082 47.0416 89.3332 46.8333 84.1249C46.625 79.5416 46.5 74.9166 46.625 70.3332C46.6666 68.5416 46.75 66.7499 46.9166 64.9582C47 64.2499 47.0833 63.4999 47.1666 62.7916C47.2083 62.6249 47.2083 62.4582 47.25 62.3332C47.25 62.2499 47.25 62.1666 47.2916 62.1249L47.3333 61.9999C47.2916 62.1666 47.375 61.7916 47.3333 61.9999C47.375 61.7082 47.4583 61.4582 47.5 61.1666C47.625 60.6666 47.75 60.2082 47.9583 59.7499C48 59.6666 48.0416 59.5832 48.0833 59.4999C48.125 59.4166 48.125 59.4166 48.1666 59.3749C48.0416 59.5416 48.2083 59.3332 48.1666 59.3749C48.25 59.2499 48.3333 59.0832 48.4583 58.9582C48.5 58.9166 48.5416 58.8749 48.5833 58.7916C48.625 58.7082 48.4583 58.8749 48.6249 58.7499L48.7916 58.6666C48.8333 58.6666 48.8333 58.6249 48.875 58.6249C49 58.5416 48.7499 58.6666 48.8333 58.6249C50.0416 58.2916 51.2916 58.0832 52.5416 57.9166C55.8333 57.5832 59.1666 57.4582 62.5 57.4999C66 57.4999 69.5 57.6249 73 57.7499C75.5416 57.8332 78.0833 57.9999 80.6666 57.9999C82.125 57.9582 83.5 58.4166 84.7083 59.2499C85.25 59.6249 85.7083 60.0832 86.125 60.5832C86.3333 60.8332 86.5 61.0416 86.7083 61.2916C86.75 61.3332 86.875 61.4999 86.75 61.3332L86.8333 61.4999C86.9166 61.6249 87 61.7916 87.0833 61.9166C87.2916 62.2499 87.4583 62.6249 87.6666 62.9999C87.7916 63.2082 87.5833 62.7916 87.625 62.9582C87.625 62.9999 87.6666 63.0416 87.6666 63.0832L87.7083 63.2082C87.8333 63.7082 88.25 64.0416 88.75 64.0832C91.375 64.1666 94.0416 64.2499 96.6666 64.3332C102.542 64.5416 108.417 64.7499 114.292 64.9999C120.458 65.2499 126.625 65.4999 132.792 65.8749C135.042 65.9999 137.083 66.1249 139.333 66.2916C140.083 66.3332 140.833 66.4166 141.542 66.4999C141.958 66.5416 142.375 66.6666 142.833 66.7082C143.042 66.7082 142.625 66.6249 142.792 66.6666C142.5 66.4999 142.583 66.4999 142.667 66.5832C142.667 66.5832 142.417 66.3332 142.542 66.4582C142.375 66.2499 142.375 66.2082 142.458 66.3749C142.25 65.9582 142.375 66.2082 142.417 66.3332C142.375 66.0416 142.5 66.5832 142.417 66.3332C142.417 66.4166 142.458 66.4999 142.458 66.6249C142.5 66.8332 142.5 67.0832 142.542 67.2916C142.542 67.3332 142.542 67.4166 142.542 67.4582C142.542 67.0832 142.542 67.3749 142.542 67.4582V67.9166C142.542 68.2499 142.542 68.5416 142.542 68.8749C142.542 69.6666 142.458 70.4582 142.417 71.2499C142.083 75.8332 141.458 80.4166 140.792 84.9582C139.958 90.9582 138.958 96.9166 137.958 102.833C136.958 108.875 135.875 114.917 134.792 121C134.292 123.708 133.833 126.375 133.333 129.083C133.125 130.25 132.917 131.458 132.667 132.625C132.542 133.292 132.5 133.542 132.375 134.125L132.083 135.625C131.625 138.167 131.125 140.708 130.625 143.208C130.583 143.333 130.583 143.417 130.542 143.542L130.958 143.208H54.2916C53.25 143.208 52.2083 143.125 51.1666 143.208H51.0416C50.5416 143.208 50.5833 143.958 50.6666 144.25C50.7916 144.75 51.2083 145.083 51.7083 145.125H128.333C129.375 145.125 130.417 145.167 131.458 145.125H131.583C131.792 145.083 131.958 144.958 132 144.792C132.333 143 132.708 141.167 133.042 139.375C133.917 134.792 134.75 130.25 135.583 125.667C136.667 119.708 137.75 113.75 138.75 107.75C139.792 101.625 140.833 95.4999 141.75 89.3749C142.5 84.3749 143.208 79.3749 143.708 74.2916C143.875 72.6249 144 70.9166 144.042 69.2499C144.042 68.2082 144.083 67.0416 143.708 66.0416C143.542 65.4582 143.125 64.9999 142.542 64.7916C142.125 64.7082 141.708 64.6249 141.292 64.6249C139.583 64.4166 137.833 64.2916 136.083 64.2082C130.292 63.8332 124.5 63.5832 118.708 63.3332C112.417 63.0416 106.125 62.7916 99.8333 62.5832C96.0833 62.4582 92.2916 62.3332 88.5416 62.2082H88L89.0416 63.0832C88.2916 61.1249 87.0416 59.4166 85.4583 58.0832C84.1666 56.9999 82.5833 56.2916 80.875 56.1249C79.75 56.0416 78.5833 56.0832 77.4583 56.0416C70.7499 55.7916 64.0416 55.4166 57.2916 55.6249C54.375 55.7082 51.375 55.8332 48.5 56.5832C48 56.6666 47.5416 56.8749 47.1666 57.2082C46.9166 57.4999 46.6666 57.8332 46.5416 58.2082C46.1249 59.2499 45.8333 60.3332 45.6666 61.4166C45.4166 62.9582 45.25 64.4999 45.1666 66.0416C44.9166 70.2916 44.9583 74.5832 45.0833 78.8332C45.2499 84.1666 45.5416 89.4999 45.875 94.8332C46.25 100.375 46.6666 105.875 47.1666 111.417C47.6249 116.458 48.0833 121.542 48.6249 126.583C48.9999 130.458 49.4166 134.292 49.8749 138.125C50.0833 140 50.2916 141.917 50.5416 143.792C50.5416 143.875 50.5416 143.958 50.5833 144.042C50.625 144.542 51 145 51.5 145.167C51.9166 145.25 52.125 144.75 52.0833 144.375Z" fill="#3D3D3D"/>
|
||||
<path d="M68.6665 74.6251C68.6665 74.6251 172.458 72.6251 175.417 76.2084C178.375 79.7917 160.75 142.042 156.625 144.167C152.5 146.292 51.2915 144.167 51.2915 144.167C51.2915 144.167 63.7498 74.7084 68.6665 74.6251Z" fill="#CECECE"/>
|
||||
<path d="M68.9165 75.625L73.4999 75.5417C77.4999 75.4583 81.5415 75.4167 85.5415 75.375C91.2082 75.2917 96.8749 75.25 102.542 75.2083C109.042 75.1667 115.542 75.125 122.042 75.0833C128.583 75.0833 135.125 75.0833 141.625 75.1667C147.333 75.2083 153.042 75.3333 158.708 75.5C161 75.5833 163.292 75.6667 165.583 75.7917C166.542 75.8333 167.5 75.9167 168.458 75.9583L169.708 76.0417L170.333 76.0833L170.625 76.125C170.667 76.125 170.792 76.125 170.583 76.125H170.75C171.917 76.2083 173.083 76.375 174.208 76.625C174.375 76.6667 174.583 76.7083 174.75 76.75L174.958 76.8333C174.75 76.7083 175.042 76.875 174.958 76.8333C175 76.875 175.042 76.875 175.083 76.9167C175.167 76.9167 174.833 76.7083 175 76.875C174.75 76.625 174.833 76.6667 174.875 76.75C174.917 76.8333 174.708 76.4583 174.792 76.5833C174.75 76.3333 174.917 76.8333 174.792 76.5833C174.792 76.6667 174.875 76.9583 174.833 76.75C174.792 76.5417 174.833 76.9167 174.875 77C174.917 77.25 174.917 77.5417 174.917 77.7917V78C174.917 77.6667 174.917 78 174.917 78.0417C174.917 78.2083 174.917 78.4167 174.875 78.5833C174.833 78.9583 174.833 79.375 174.792 79.75C174.583 81.875 174.167 84 173.792 86.125C172.625 92.0417 171.208 97.875 169.667 103.708C167.958 110.208 166.083 116.667 164.083 123.083C162.5 128.208 160.833 133.375 158.75 138.333C158.417 139.167 158.083 139.958 157.667 140.75C157.5 141.083 157.333 141.417 157.167 141.708C157.083 141.833 157 142 156.917 142.125C156.875 142.167 156.833 142.25 156.833 142.292C156.75 142.417 156.917 142.167 156.792 142.333C156.667 142.542 156.542 142.708 156.375 142.875C156.333 142.958 156.25 143 156.208 143.083C156.167 143.167 156.167 143.125 156.125 143.167C156.042 143.25 156.292 143.083 156.167 143.125L155.917 143.25C155.708 143.333 156.125 143.208 155.917 143.25C155.833 143.25 155.75 143.292 155.708 143.292C153.125 143.792 150.375 143.75 147.792 143.833C142.917 144 138.083 144.042 133.208 144.042C127.042 144.083 120.833 144.042 114.667 144C108 143.958 101.375 143.875 94.7082 143.792C88.4165 143.708 82.1665 143.625 75.8749 143.542C70.8749 143.458 65.8332 143.375 60.8332 143.292L52.2082 143.125H51.0415L52.1249 144.542C52.5415 142.25 52.9582 139.958 53.3749 137.667C54.4165 132.167 55.4999 126.667 56.5832 121.167C57.9165 114.5 59.3332 107.875 60.8332 101.25C62.1665 95.4583 63.5415 89.6667 65.2499 83.9583C65.8332 82 66.4999 80.0417 67.2499 78.1667C67.4999 77.5417 67.7915 76.9167 68.1249 76.3333C68.0415 76.4583 68.1665 76.2917 68.2499 76.1667C68.3332 76.0417 68.3749 75.9583 68.4582 75.875C68.5415 75.7917 68.5832 75.75 68.6665 75.6667C68.7082 75.625 68.7082 75.625 68.7499 75.5833C68.8749 75.5 68.5832 75.7083 68.7082 75.625C68.7915 75.6667 68.8749 75.625 68.9165 75.625C68.9582 75.5833 68.7082 75.625 68.9165 75.625C69.9165 75.5833 69.2499 73.625 68.3749 73.6667C67.3749 73.7083 66.7499 75.0417 66.3332 75.7917C65.5415 77.4167 64.9165 79.0833 64.3749 80.7917C62.5832 86.2917 61.2082 91.9167 59.9165 97.5417C58.3332 104.25 56.9165 110.958 55.5415 117.667C54.3749 123.458 53.2082 129.292 52.1249 135.125C51.5832 137.958 50.9582 140.792 50.5415 143.667C50.5415 143.708 50.5415 143.75 50.5415 143.792C50.4165 144.417 50.9582 145.208 51.5832 145.208L56.3332 145.292C60.4999 145.375 64.6665 145.458 68.7915 145.5C74.6249 145.583 80.4582 145.708 86.3332 145.792C92.9582 145.875 99.6249 145.958 106.25 146.042C112.792 146.125 119.375 146.125 125.917 146.167C131.5 146.167 137.083 146.167 142.625 146.083C146.375 146.042 150.125 145.958 153.833 145.708C154.75 145.667 155.625 145.542 156.5 145.375C157.417 145.167 157.833 144.5 158.292 143.708C159.083 142.292 159.792 140.792 160.375 139.25C161.292 136.958 162.125 134.625 162.958 132.292C165.042 126.208 166.917 120.042 168.667 113.875C170.5 107.458 172.208 100.958 173.75 94.4583C174.833 89.7917 175.958 85.0417 176.417 80.2083C176.542 78.9583 176.708 77.4167 176.167 76.2083C175.792 75.3333 175.042 75 174.167 74.7917C173.042 74.5417 171.917 74.375 170.792 74.2917C169 74.125 167.208 73.9583 165.375 73.875C160.417 73.5833 155.458 73.4583 150.458 73.375C144.208 73.25 137.958 73.2083 131.708 73.1667C125.042 73.125 118.375 73.1667 111.708 73.2083C105.458 73.25 99.2082 73.2917 92.9582 73.375C87.9999 73.4167 82.9999 73.5 78.0415 73.5833C75.1665 73.625 72.3332 73.6667 69.4582 73.7083L68.3332 73.75C67.3749 73.6667 67.9999 75.625 68.9165 75.625Z" fill="#7A7A7A"/>
|
||||
<path d="M51.0001 93.9583C42.9584 88.4999 36.0001 80.2083 36.0417 69.9999C36.0834 65.1249 37.8334 60.4166 41.3334 56.9999C44.7501 53.6249 49.3334 51.6249 53.9584 50.4583C59.6667 49.0833 65.5834 48.8749 71.4167 48.1249C76.0417 47.5416 80.7501 46.6249 84.7501 44.0416C86.5001 42.9583 87.9584 41.4583 89.0417 39.7083C90.1251 37.8749 90.8334 35.4166 89.8334 33.3749C88.7501 31.2083 85.9167 30.9166 84.2501 32.5833C82.3751 34.4166 83.0001 37.2083 84.4584 39.1249C85.9584 41.0833 88.5001 42.2916 90.9167 42.5416C92.1251 42.6666 93.3334 42.5416 94.5417 42.2499C95.8334 41.8333 97.0417 41.2499 98.1251 40.4583C99.1667 39.7083 100.25 39.0833 101.375 38.4999C102.417 37.9999 103.542 37.6249 104.708 37.4166C107.083 36.9583 109.5 37.1249 111.792 37.8333C112.917 38.1666 113.958 38.6666 114.958 39.2916C115.333 39.5833 115.875 39.5416 116.208 39.1666L116.25 39.1249C116.458 38.6249 116.292 38.0416 115.833 37.7916C111.667 35.1666 106.542 34.5833 101.875 36.1249C100.708 36.4999 99.6251 37.0416 98.5834 37.7083C97.4584 38.4166 96.4167 39.2499 95.2084 39.8333C93.2084 40.8749 90.8751 40.9999 88.7501 40.2083C86.9167 39.4999 84.6667 37.7916 84.9167 35.5416C85.0417 34.6666 85.6251 33.9166 86.4584 33.5833C87.1667 33.2916 87.8334 33.4583 88.1251 34.0833C88.9167 35.7499 87.7917 37.9166 86.8751 39.2916C85.7084 40.8749 84.2084 42.1666 82.4584 43.0833C78.3751 45.3333 73.7084 45.9999 69.1251 46.4583C63.5001 47.0833 57.7917 47.3749 52.2917 48.8749C47.7501 50.0833 43.2917 52.1666 39.9167 55.4999C36.4167 58.9583 34.5001 63.5833 34.1667 68.4583C33.5001 78.5833 39.5834 87.4583 47.2501 93.4583C48.1667 94.1666 49.1251 94.8749 50.0834 95.5416C50.4584 95.8333 51.0001 95.7916 51.3334 95.4166L51.3751 95.3749C51.5834 94.8333 51.4167 94.2916 51.0001 93.9583Z" fill="#CECECE"/>
|
||||
<path d="M141.262 35.3161C138.473 34.8513 135.617 35.4489 133.293 36.9763C131.766 38.1053 130.438 39.4998 129.441 41.16C128.512 42.4882 127.914 44.0156 127.582 45.543C127.316 46.8047 127.914 48.1329 129.043 48.6642C130.106 49.2618 131.434 49.5275 132.363 48.6642C134.223 46.9376 135.02 43.9492 135.418 41.5585C135.684 40.0975 135.75 38.5701 135.551 37.0427C135.285 35.5153 134.621 34.1208 133.559 32.9254C132.231 31.3316 130.504 30.1363 128.578 29.4722C127.117 29.0073 125.324 28.8745 124.062 29.8042C122.601 30.8668 122.137 32.7926 122.07 34.4528C122.004 36.3122 122.402 38.1053 123.265 39.7655C123.93 40.9608 125.59 42.5546 127.117 42.1562C128.18 41.8905 127.781 40.496 127.25 39.8983C126.121 38.6365 123.996 38.1053 122.601 39.1014C121.207 40.0975 119.746 42.3554 120.011 44.2148C120.277 46.0742 122.203 47.4024 123.93 48.0665C125.789 48.7306 127.781 48.6642 129.574 47.8673C130.172 47.6016 129.109 46.7383 128.844 46.6055C128.246 46.2735 127.449 45.9414 126.785 46.2071C125.855 46.6719 124.859 46.8047 123.863 46.5391C123.73 46.4727 123.664 46.3399 123.531 46.2735C123.265 45.875 123.133 45.4102 123.066 44.9453C123 43.6171 123.996 42.0898 124.926 41.2264C125.258 40.9608 125.656 40.7616 125.988 40.5624C126.121 40.4296 125.922 40.6288 125.922 40.5624H125.988C125.523 40.496 125.125 40.2967 124.793 39.9647L124.859 40.0311C124.859 40.1639 124.793 40.496 124.793 40.5624L124.859 40.496C125.191 40.4296 125.457 40.4296 125.723 40.6288C125.988 40.6952 126.719 40.8944 126.785 41.0272C126.719 40.8944 126.52 40.7616 126.453 40.5624C125.789 39.4334 125.391 38.1717 125.324 36.9099C125.125 34.9177 125.656 31.066 128.313 30.9996C128.645 30.9996 129.043 31.066 129.309 31.2652C129.774 31.5308 130.172 31.8629 130.504 32.1949C131.367 32.9918 132.031 33.988 132.43 35.1169C132.961 37.3084 132.895 39.6327 132.231 41.7577C131.766 43.4843 131.168 45.543 129.906 46.8711C129.707 47.0704 129.508 47.2032 129.309 47.336C129.242 47.4024 129.242 47.336 129.242 47.4024H129.309C129.574 47.4024 129.84 47.4688 130.106 47.6681C130.371 47.7345 130.57 47.8673 130.836 48.0665C130.836 47.9337 130.703 47.4024 130.703 47.1368C130.77 46.6055 130.836 46.1407 131.035 45.6094C131.965 42.6874 133.891 40.0975 136.481 38.3709C137.742 37.574 139.137 37.1756 140.598 37.0427C141.063 37.0427 141.594 37.0427 142.059 37.0427C142.391 37.0427 141.86 36.9763 142.192 37.0427H142.325C142.79 37.1091 143.586 37.0427 143.254 36.3787C142.922 35.7146 141.993 35.4489 141.262 35.3161Z" fill="#CECECE"/>
|
||||
<path d="M111.75 134.042L114.042 139.75L118.25 137.458L115.333 132.125L111.75 134.042Z" fill="white"/>
|
||||
<path d="M111.083 134.083L113.375 139.792C113.541 140.167 114 140.958 114.541 140.667L118.75 138.333C119.166 138.125 119 137.417 118.833 137.125L115.916 131.833C115.75 131.5 115.291 131 114.875 131.208L111.291 133.125C110.5 133.542 111.5 135.375 112.291 134.958L115.875 133.083L114.833 132.458L117.75 137.75L117.833 136.542L113.625 138.833L114.791 139.708L112.5 134C112.333 133.625 112 133.042 111.5 133.083C111 133.125 110.958 133.75 111.083 134.083Z" fill="#7A7A7A"/>
|
||||
<path d="M129.958 177.875C129.958 177.875 112.666 142.792 112.75 140.25C112.833 137.708 119.25 136.667 119.25 136.667C119.25 136.667 138.791 169.5 140.083 174.542C141.375 179.583 131.125 180.25 129.958 177.875Z" fill="white"/>
|
||||
<path d="M130.875 177.708C130.125 176.167 129.333 174.583 128.583 173.042C126.833 169.458 125.083 165.875 123.375 162.292C121.458 158.25 119.542 154.208 117.708 150.167C116.417 147.333 115.083 144.5 114.042 141.542C113.958 141.333 113.917 141.125 113.833 140.958C113.792 140.875 113.792 140.792 113.75 140.708C113.708 140.542 113.792 140.958 113.75 140.792C113.75 140.75 113.75 140.708 113.708 140.667C113.708 140.583 113.667 140.458 113.667 140.375C113.708 140.625 113.667 140.417 113.708 140.292C113.708 140.25 113.75 140.125 113.708 140.292C113.708 140.25 113.75 140.208 113.75 140.167C113.792 140.083 113.833 140 113.875 139.917C113.792 140 113.917 139.833 113.875 139.917L114 139.75C114.75 139.083 115.625 138.625 116.583 138.333C117.375 138.083 118.208 137.833 119.042 137.708L119.5 137.625L118.333 137.125C119.375 138.833 120.375 140.583 121.417 142.333C123.708 146.25 126 150.167 128.25 154.083C130.667 158.292 133.042 162.542 135.25 166.708C136.125 168.333 136.958 169.958 137.75 171.625C138.292 172.625 138.708 173.667 139.042 174.75C138.958 174.5 139.042 174.833 139.042 174.917C139.042 175 139.083 175.125 139.083 175.25C139.083 175.375 139.083 175.375 139.083 175.417C139.083 175.542 139.042 175.667 139 175.792C139 175.833 138.875 176.125 138.958 175.917C138.917 176 138.875 176.083 138.833 176.167C138.792 176.25 138.708 176.375 138.667 176.458C138.667 176.5 138.542 176.625 138.625 176.5C138.708 176.375 138.583 176.583 138.542 176.583C138.375 176.75 138.208 176.917 138.042 177.042C138 177.083 137.958 177.125 137.917 177.125C137.792 177.208 138.042 177.042 137.917 177.125C137.792 177.208 137.708 177.25 137.583 177.333C137.167 177.542 136.75 177.75 136.292 177.875C135.792 178.042 135.25 178.125 134.708 178.208C134.208 178.292 133.75 178.292 133.25 178.25C133 178.25 132.792 178.25 132.542 178.208L132.208 178.167L131.958 178.125C131.75 178.083 131.583 178.042 131.375 177.958L131.25 177.917C131.542 178.042 131.25 177.917 131.167 177.875C131.083 177.833 131.042 177.792 130.958 177.75C130.833 177.667 131.167 177.875 130.958 177.75C130.792 177.625 130.833 177.625 130.875 177.708C130.875 177.667 130.75 177.458 130.875 177.708C130.625 177.25 130.125 176.958 129.583 177.042C129.167 177.125 128.875 177.5 128.958 177.958C128.958 178 129 178.083 129 178.125C129.958 180 132.583 180.25 134.458 180.167C136.625 180.042 139.25 179.458 140.583 177.542C141.542 176.125 141.125 174.542 140.5 173.083C139.875 171.625 139.167 170.167 138.417 168.708C136.208 164.375 133.833 160.167 131.417 155.958C129 151.75 126.542 147.417 124.042 143.167C123.167 141.667 122.292 140.167 121.375 138.667C120.958 137.917 120.542 137.167 120.083 136.458C120.083 136.417 120.042 136.417 120.042 136.375C119.792 136 119.333 135.792 118.875 135.875C117.208 136.125 115.583 136.625 114.083 137.375C113.125 137.875 112.167 138.542 111.833 139.625C111.708 140.083 111.708 140.583 111.875 141.042C112.167 142.042 112.5 143 112.917 143.958C113.542 145.542 114.25 147.083 114.917 148.583C116.75 152.667 118.625 156.667 120.542 160.708C122.375 164.542 124.208 168.333 126.042 172.167C127 174.125 127.917 176.125 128.917 178.042L128.958 178.125C129.167 178.625 129.708 178.917 130.25 178.833C130.667 178.75 130.958 178.375 130.917 177.958C130.958 177.833 130.917 177.792 130.875 177.708Z" fill="#7A7A7A"/>
|
||||
<path d="M124.958 112.083C124.958 113.708 124.791 115.333 124.416 116.917L124.583 116.208C124.083 118.417 123.25 120.542 122.083 122.5L122.458 121.875C121.333 123.75 119.958 125.458 118.333 126.917L118.875 126.458C117.75 127.5 116.5 128.375 115.208 129.167C114.875 129.375 114.583 129.542 114.25 129.708C113.666 130 114.875 129.417 114.291 129.708L113.708 129.958C113 130.292 112.25 130.542 111.5 130.792C111.125 130.917 110.791 131 110.416 131.125C110.25 131.167 110.041 131.208 109.875 131.25L109.583 131.333C109.041 131.458 110.333 131.208 109.791 131.292C109 131.417 108.25 131.542 107.458 131.625C106.666 131.708 105.875 131.708 105.041 131.708C106.041 131.708 105.375 131.708 105.125 131.708C104.916 131.708 104.75 131.708 104.541 131.667C104.125 131.625 103.666 131.583 103.25 131.542C102.458 131.417 101.708 131.292 100.958 131.083C100.291 130.917 101.75 131.292 101.083 131.125L100.541 130.958C100.166 130.833 99.7915 130.708 99.4165 130.583C98.6665 130.292 97.9581 130 97.2498 129.667L96.7498 129.417C97.7498 129.917 97.1248 129.625 96.8748 129.458C96.4998 129.25 96.1665 129.042 95.8331 128.833C95.2081 128.417 94.5831 127.958 93.9998 127.5L93.5831 127.167L93.3748 127C93.0831 126.75 93.9165 127.5 93.6665 127.25C93.4165 127 93.0831 126.708 92.8331 126.458C92.2915 125.917 91.7915 125.333 91.2915 124.75C91.0415 124.458 90.8331 124.167 90.6248 123.875C90.4998 123.667 90.1248 123.125 90.6665 123.958C90.5415 123.792 90.4165 123.625 90.3331 123.458C89.8748 122.708 89.4581 121.958 89.0415 121.167C88.8331 120.75 88.6665 120.375 88.4998 119.958C88.4165 119.75 88.3331 119.583 88.2498 119.375C88.1248 119.042 88.4581 120 88.3748 119.667L88.2498 119.333C87.6665 117.625 87.3331 115.875 87.1665 114.083L87.2081 114.792C87.0415 112.583 87.2081 110.375 87.6665 108.208L87.4998 108.917C87.9998 106.708 88.8331 104.583 89.9998 102.625L89.6248 103.25C90.7498 101.375 92.1248 99.6666 93.7498 98.1666L93.2081 98.6249C94.3331 97.5833 95.5831 96.7083 96.8748 95.9166C97.2081 95.7499 97.4998 95.5416 97.8331 95.3749C98.3748 95.0833 97.2081 95.6666 97.7915 95.3749L98.3748 95.1249C99.0831 94.7916 99.8331 94.5416 100.583 94.2916C100.958 94.1666 101.291 94.0833 101.666 93.9583L102.208 93.8333L102.5 93.7916C103.041 93.6666 101.75 93.9166 102.291 93.8333C103.083 93.7083 103.833 93.5833 104.625 93.4999C105.416 93.4166 106.208 93.4166 107.041 93.4166C106.041 93.4583 106.708 93.4166 107 93.4166L107.583 93.4583C108 93.4999 108.458 93.5416 108.875 93.5833C109.666 93.7083 110.416 93.8333 111.166 94.0416C111.833 94.2083 110.375 93.8333 111.041 93.9999C111.208 94.0416 111.416 94.0833 111.583 94.1666C111.958 94.2916 112.333 94.4166 112.708 94.5416C113.458 94.8333 114.166 95.1249 114.875 95.4583L115.375 95.7083C114.375 95.2083 115 95.4999 115.25 95.6249C115.625 95.8333 115.958 96.0416 116.291 96.2916C116.916 96.7083 117.541 97.1666 118.125 97.6249L118.541 97.9583L118.75 98.1249C119.041 98.3749 118.208 97.6249 118.458 97.8749C118.708 98.1249 119.041 98.4166 119.291 98.6666C119.833 99.2083 120.333 99.7916 120.833 100.375C121.041 100.667 121.291 100.958 121.5 101.25C121.666 101.458 122 102 121.458 101.167L121.791 101.667C122.25 102.417 122.666 103.167 123.041 103.958C123.25 104.333 123.416 104.75 123.583 105.167C123.666 105.375 123.75 105.542 123.791 105.75C123.916 106.083 123.583 105.125 123.666 105.458C123.708 105.583 123.75 105.667 123.791 105.792C124.375 107.5 124.708 109.25 124.875 111.042L124.833 110.333C124.916 110.875 124.958 111.458 124.958 112.083C125 113.667 126.208 115.042 127.833 115.208C129.208 115.375 131.083 114.583 131.083 112.917C131.083 110.333 130.708 107.792 129.916 105.333C129.083 102.792 127.875 100.417 126.333 98.2499C123.416 94.1666 119.333 91.0833 114.625 89.3749C109.541 87.5416 104 87.3333 98.7915 88.7916C85.8331 92.4999 78.3331 105.958 81.9998 118.917C82.5831 121 83.4581 123 84.5831 124.833C87.2915 129.292 91.2915 132.833 95.9998 135C100.708 137.125 105.916 137.75 110.958 136.792C116.041 135.833 120.708 133.292 124.333 129.583C127.791 125.958 130.041 121.375 130.791 116.458C130.958 115.333 131.041 114.167 131.041 113C131 111.375 129.791 110 128.166 109.833C126.791 109.625 124.958 110.375 124.958 112.083Z" fill="#3D3D3D"/>
|
||||
<path d="M106 127.417C114.422 127.417 121.25 120.589 121.25 112.167C121.25 103.744 114.422 96.9167 106 96.9167C97.5777 96.9167 90.75 103.744 90.75 112.167C90.75 120.589 97.5777 127.417 106 127.417Z" fill="#CECECE"/>
|
||||
<path d="M120.208 112.042C120.167 118 116.542 123.583 110.875 125.708C105.25 127.75 98.9582 126.083 95.1249 121.5C91.2499 116.75 90.7499 110.125 93.8332 104.833C96.9166 99.6667 102.917 97 108.792 98.125C114.583 99.25 119.083 104.083 120 109.875C120.167 110.542 120.208 111.292 120.208 112.042C120.208 112.583 120.583 113 121.125 113.083C121.542 113.125 122.292 112.917 122.292 112.375C122.333 105.583 118.083 99.4583 111.708 97.125C105.333 94.75 97.8749 96.625 93.4999 101.875C89.1249 107.125 88.5416 114.542 92.0416 120.417C95.6666 126.292 102.542 129.333 109.333 128C115.917 126.667 121 121.417 122.125 114.792C122.25 114 122.333 113.167 122.333 112.333C122.333 111.833 121.958 111.375 121.417 111.333C120.958 111.25 120.208 111.458 120.208 112.042Z" fill="#CECECE"/>
|
||||
<path d="M98.125 109.708C97.7917 109.75 97.5 109.875 97.2083 110.042C96.9583 110.208 96.75 110.458 96.625 110.708C96.5417 110.833 96.5 111 96.5 111.125C96.4583 111.25 96.4583 111.417 96.5 111.542C96.5833 111.833 96.7083 112.083 96.9167 112.292C97.125 112.5 97.4167 112.625 97.7083 112.708C98.125 112.792 98.5417 112.792 98.9167 112.667C99.2083 112.583 99.5 112.375 99.7083 112.167C99.7917 112.042 99.875 111.958 99.9583 111.792C100 111.708 100.042 111.625 100.042 111.5C100.042 111.417 100.042 111.292 100.042 111.208C100.042 110.917 99.875 110.625 99.6667 110.417C99.375 110.125 99 110 98.5833 110C98.2917 110 98.0417 110.042 97.7917 110.208C97.5833 110.333 97.4167 110.5 97.375 110.708C97.3333 110.917 97.4167 111.125 97.5833 111.25C97.7917 111.417 98 111.5 98.25 111.5H98.3333L98.0833 111.458C98.125 111.458 98.1667 111.458 98.2083 111.5L98 111.417L98.125 111.458L97.9583 111.333C98 111.375 98.0417 111.417 98.0833 111.458L97.9583 111.292C98 111.375 98.0417 111.417 98.0833 111.5L98 111.292C98.0417 111.375 98.0417 111.417 98.0417 111.5V111.292C98.0417 111.375 98.0417 111.417 98 111.5L98.0833 111.292C98.0417 111.333 98.0417 111.417 98 111.458L98.125 111.292C98.0833 111.333 98.0417 111.375 98 111.417L98.1667 111.25C98.125 111.292 98.0833 111.333 98 111.333L98.25 111.208C98.2083 111.25 98.1667 111.25 98.0833 111.25L98.3333 111.167H98.2083H98.5H98.3333L98.5833 111.208C98.5417 111.208 98.5 111.208 98.4167 111.167L98.625 111.25C98.5417 111.208 98.5 111.208 98.4583 111.167L98.625 111.292C98.5417 111.25 98.5 111.167 98.4167 111.125L98.5417 111.292C98.5 111.208 98.4167 111.125 98.4167 111.042L98.5 111.25C98.4583 111.167 98.4583 111.083 98.4583 111V111.167C98.4583 111.083 98.5 111 98.5 110.917L98.4167 111.125C98.4583 111.042 98.5 111 98.5417 110.917L98.4167 111.083C98.4583 111.042 98.5 111 98.5417 110.958L98.3333 111.125C98.375 111.083 98.4167 111.042 98.5 111.042L98.25 111.167C98.2917 111.125 98.3333 111.125 98.375 111.125L98.125 111.208H98.25C98.5 111.167 98.75 111.042 98.9583 110.875C99.2083 110.667 99.25 110.292 99.0417 110C98.9583 109.917 98.875 109.833 98.7917 109.833C98.625 109.708 98.3333 109.667 98.125 109.708Z" fill="#3D3D3D"/>
|
||||
<path d="M103.583 109.708C103.333 109.958 103.25 110.333 103.333 110.667C103.375 110.833 103.458 111 103.583 111.125C103.875 111.417 104.291 111.583 104.708 111.625C105.125 111.75 105.583 111.833 106.041 111.833C106.166 111.833 106.333 111.833 106.458 111.792C106.666 111.708 106.875 111.583 107 111.417C107.291 111.167 107.416 110.708 107.208 110.333C107 110.083 106.666 109.875 106.333 109.833C106.041 109.75 105.791 109.667 105.5 109.625C105.291 109.583 105.041 109.542 104.791 109.542C104.666 109.542 104.541 109.542 104.416 109.583C104.375 109.583 104.375 109.583 104.375 109.625C104.416 109.667 104.458 109.708 104.5 109.708C104.708 109.792 104.875 109.875 105.083 109.917C105.333 110 105.625 110.042 105.875 110.083L106.083 110.125C106.166 110.125 106.25 110.125 106.375 110.125C106.416 110.083 106.458 110.083 106.5 110.083C106.166 110.042 106.083 110.042 106.208 110.042L105.708 109.958L105.083 109.792L105 109.75L105.041 109.792C105.083 109.833 105.125 109.875 105.208 109.958L105.166 109.917C105.5 110.417 105.083 111.042 104.625 111.292L104.666 111.25C104.583 111.292 104.5 111.333 104.416 111.333L104.291 111.375C104.25 111.375 104.291 111.375 104.333 111.375C103.75 111.417 106.291 111.958 105.791 111.708C105.75 111.667 105.708 111.667 105.708 111.625C105.666 111.583 105.625 111.542 105.583 111.458L105.625 111.5C105.333 111.083 105.375 110.5 105.708 110.167C105.75 110.125 105.375 110 105.416 110C105.166 109.917 104.958 109.833 104.708 109.792C104.458 109.75 104.208 109.708 104 109.667C103.833 109.708 103.666 109.625 103.583 109.708Z" fill="#3D3D3D"/>
|
||||
<path d="M111.917 109.542C111.75 109.5 111.583 109.5 111.458 109.542C111.375 109.583 111.292 109.625 111.208 109.708C111.083 109.833 111.042 110 111.042 110.167C111.042 110.25 111.083 110.375 111.125 110.458C111.25 110.625 111.375 110.75 111.5 110.875C111.667 111.042 111.875 111.167 112.083 111.25C112.333 111.417 112.625 111.5 112.917 111.583C113.5 111.75 114.125 111.375 114.25 110.792C114.292 110.667 114.291 110.583 114.291 110.458C114.291 110.333 114.25 110.208 114.167 110.083C114.042 109.917 113.917 109.75 113.75 109.667C113.417 109.417 113.083 109.208 112.708 109.083C112.5 109 112.25 108.958 112.042 108.958C111.958 108.958 111.833 109.042 111.791 109.083C111.708 109.167 111.917 109.417 111.958 109.417C112.125 109.583 112.333 109.75 112.542 109.833C112.75 109.958 113 110.042 113.208 110.125L113.375 110.167C113.458 110.167 113.542 110.167 113.583 110.125H113.625L113.542 110.167C113.583 110.125 113.667 110.125 113.708 110.125H113.583C113.625 110.125 113.666 110.125 113.666 110.125L113.5 110.083C113.583 110.083 113.625 110.125 113.375 110.042C113.417 110.042 113.417 110.042 113.292 110C113.167 109.958 113.083 109.917 112.958 109.833L112.75 109.708C112.583 109.583 112.542 109.542 112.583 109.583C112.625 109.625 112.375 109.417 112.458 109.5L112.333 109.375C112.375 109.417 112.375 109.417 112.416 109.458L112.375 109.333C112.417 109.458 112.458 109.542 112.416 109.667V109.583C112.375 109.917 112.208 110.167 111.958 110.375L112.042 110.333C111.917 110.417 111.833 110.458 111.667 110.458H111.791C111.75 110.458 111.667 110.458 111.625 110.458L111.791 110.5C111.625 110.458 111.75 110.5 111.791 110.5C111.958 110.542 112.125 110.625 112.25 110.708C112.292 110.75 112.375 110.792 112.458 110.833C112.375 110.792 112.666 110.958 112.625 110.958C112.583 110.958 112.792 111.125 112.75 111.042L112.708 111L112.833 111.125C112.791 111.083 112.792 111.083 112.792 111.042L112.833 111.167C112.791 111.083 112.792 111 112.792 110.917V111C112.792 110.875 112.875 110.708 113 110.625L112.917 110.667C112.958 110.625 113.042 110.583 113.125 110.583H113H113.083L112.917 110.542C113 110.542 113.208 110.625 113.292 110.5C113.375 110.375 113.167 110.208 113.125 110.167C112.958 110 112.75 109.833 112.542 109.75C112.333 109.625 112.083 109.542 111.875 109.458L111.917 109.542Z" fill="#3D3D3D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 28 KiB |
@@ -0,0 +1,82 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M55.2399 52.5195L26.8799 64.3995V84.5195L28.2399 122.28L58.5999 124.16L55.2399 52.5195Z" fill="#CECECE"/>
|
||||
<path d="M54.7596 51.6794L45.1596 55.6794L29.8796 62.0794L26.3996 63.5594C26.2396 63.6394 26.1996 63.8794 26.1996 63.9994V75.9594C26.1996 78.8394 26.1196 81.7194 26.1996 84.5994L26.5996 95.5594L27.1996 111.999C27.3196 115.239 27.3996 118.479 27.5596 121.719C27.5596 121.759 27.5596 121.799 27.5596 121.879C27.5596 122.439 27.9996 123.159 28.5996 123.199L38.9196 123.839L55.1996 124.839L58.9196 125.079C59.1596 125.079 59.2796 124.759 59.2796 124.599L59.1996 122.679L58.9596 117.479L58.5996 109.799L58.1596 100.399L57.6796 90.1194L57.1996 79.7194L56.7596 70.0394L56.3596 61.8394L56.0796 55.9194C56.0396 54.9994 55.9996 54.0794 55.9596 53.1194C55.9596 53.0794 55.9596 53.0394 55.9596 52.9994C55.9196 52.5194 55.6796 52.0394 55.2396 51.7594C54.8796 51.5594 54.5196 51.7194 54.5596 52.1594L54.6396 54.0794L54.8796 59.2794L55.2396 66.9994L55.6796 76.3994L56.1596 86.6794L56.6396 97.0794L57.0796 106.759L57.4396 114.959L57.7196 120.879C57.7196 121.799 57.7596 122.759 57.8396 123.679C57.8396 123.719 57.8396 123.759 57.8396 123.799L58.1996 123.319L47.8796 122.679L31.5996 121.599L27.8796 121.359L28.9196 122.679L28.6396 114.519L28.0796 98.2794L27.6396 85.9994C27.5596 83.5594 27.5996 81.0794 27.5996 78.6394V64.7994L27.3996 65.2394L36.9996 61.2394L52.2796 54.8394L55.7596 53.3994C56.3996 53.1194 55.4796 51.3594 54.7596 51.6794Z" fill="#3D3D3D"/>
|
||||
<path d="M75.1597 62.7595L55.2397 52.5195L58.5997 124.16L77.6797 122.28L75.1597 62.7595Z" fill="#3D3D3D"/>
|
||||
<path d="M74.96 61.9975L68.24 58.5575L57.52 53.0375L55.04 51.7575C54.8 51.6375 54.48 51.6775 54.48 51.9975L54.56 53.9175L54.8 59.1175L55.16 66.7975L55.6 76.1975L56.08 86.4775L56.56 96.8775L57 106.558L57.4 114.758L57.68 120.678C57.72 121.598 57.76 122.518 57.8 123.478C57.8 123.518 57.8 123.558 57.8 123.598C57.84 124.118 58.44 124.998 59.04 124.958L65.48 124.318L75.72 123.318L78.08 123.078C78.24 123.038 78.32 122.918 78.32 122.758L78.08 116.798L77.48 102.598L76.72 85.3575L76.08 70.5575C75.96 68.1575 75.92 65.7175 75.76 63.3175C75.76 63.2775 75.76 63.2375 75.76 63.2375C75.68 62.7575 75.44 62.3175 75.04 62.0775C74.8 61.9175 74.28 61.7175 74.32 62.1975L74.56 68.1575L75.16 82.3175L76 99.5975L76.64 114.398L76.84 119.278L76.92 120.838C76.92 121.118 76.92 121.358 76.96 121.638C76.96 121.678 76.96 121.718 76.96 121.718L77.2 121.398L70.76 122.038L60.52 123.038L58.16 123.278L59.4 124.638L59.32 122.718L59.08 117.518L58.72 109.838L58.28 100.438L57.8 90.1575L57.32 79.7575L56.88 70.0775L56.48 61.8775L56.2 55.9575L56.12 54.1175C56.12 53.7975 56.12 53.4775 56.08 53.1575C56.08 53.1175 56.08 53.0775 56.08 53.0375L55.52 53.2775L62.24 56.7175L72.96 62.2375L75.44 63.5175C75.8 63.7175 76.04 63.4775 75.96 63.0775C75.72 62.5975 75.4 62.2375 74.96 61.9975Z" fill="#3D3D3D"/>
|
||||
<path d="M17.2397 88.8028L42.5997 79.8828V102.603L19.8397 106.803L17.2397 88.8028Z" fill="#CECECE"/>
|
||||
<path d="M17.7999 88.8395L26.3999 85.7995L39.9999 80.9995L43.1599 79.8795L41.6399 80.0395V102.8L42.8399 102.32L35.1199 103.72L22.8799 106L20.0799 106.52L20.8399 106.56L19.9599 100.48L18.5599 90.7995L18.2399 88.5595C18.1999 88.3195 16.2399 88.6395 16.2799 88.9995L17.1599 95.0795L18.5599 104.8L18.8799 107.04C18.9199 107.2 19.5999 107.08 19.6399 107.08L27.3599 105.68L39.5999 103.44L42.3999 102.92C42.5599 102.88 43.5999 102.72 43.5999 102.44V79.6795C43.5999 79.4395 42.1999 79.7995 42.0799 79.8395L33.4799 82.8795L19.8799 87.6795L16.7199 88.7995C16.5199 88.8795 16.1199 88.9995 16.4399 89.1595C16.7599 89.3195 17.4799 88.9595 17.7999 88.8395Z" fill="#3D3D3D"/>
|
||||
<path d="M56.7196 83.7228L42.5996 79.8828V102.603L57.6796 105.003L56.7196 83.7228Z" fill="white"/>
|
||||
<path d="M56.8396 83.1225L44.4796 79.7625L42.7196 79.2825C42.2796 79.1625 41.5996 79.2425 41.5996 79.8025V102.563C41.5996 102.883 42.1596 103.163 42.4396 103.203L55.6396 105.283L57.5196 105.603C57.9196 105.683 58.6796 105.683 58.6396 105.083L58.3196 97.8825L57.7996 86.4425L57.6796 83.8025C57.6396 83.0425 55.6796 82.7625 55.7196 83.6825L56.0396 90.8825L56.5596 102.323L56.6796 104.963L57.7996 104.443L44.5996 102.363L42.7196 102.043L43.5596 102.683V79.9225L42.4396 80.4425L54.7596 83.8025L56.5196 84.2825C56.8796 84.3625 57.5196 84.3625 57.6396 83.9225C57.7596 83.4825 57.1596 83.2025 56.8396 83.1225Z" fill="#3D3D3D"/>
|
||||
<path d="M19.8398 106.802L42.5998 102.602L57.6798 105.002L27.7998 110.002L19.8398 106.802Z" fill="white"/>
|
||||
<path d="M20.5201 107.442L28.2401 106.042L40.4801 103.802L43.2801 103.282H42.9601L56.1601 105.362L58.0801 105.682L56.9601 104.362L46.8001 106.042L30.8001 108.722L27.1201 109.322L27.6401 109.402L20.6801 106.602L19.6801 106.202C19.4001 106.082 18.9601 106.042 19.0401 106.442C19.1201 106.842 19.7201 107.242 20.0401 107.362L27.7201 110.442C28.0001 110.562 28.2801 110.642 28.5601 110.602C28.7601 110.562 28.9601 110.522 29.1601 110.522L32.0001 110.042L41.8801 108.402L52.5601 106.602L56.4401 105.962C57.0801 105.882 57.7201 105.802 58.3601 105.642C58.4001 105.642 58.4001 105.642 58.4401 105.642C58.7601 105.602 58.4401 105.082 58.3601 105.002C58.1201 104.682 57.7601 104.442 57.3201 104.322L49.9601 103.162L44.7601 102.322C43.9201 102.202 43.0801 102.002 42.2401 101.922C41.6801 101.922 41.1201 102.002 40.6001 102.162L36.7601 102.882L26.0001 104.882L21.5201 105.682C20.7601 105.842 19.9201 105.882 19.2001 106.122C19.1601 106.122 19.1201 106.122 19.0801 106.122C18.6801 106.202 19.2401 106.882 19.3201 106.962C19.6801 107.282 20.0801 107.482 20.5201 107.442Z" fill="#3D3D3D"/>
|
||||
<path d="M25.4396 94.8409L34.3596 92.4409V88.9609L23.5996 92.4409L25.4396 94.8409Z" fill="white"/>
|
||||
<path d="M35.44 71.0798L33.48 67.9198L44.24 63.8398C44.24 63.8398 45.44 65.9598 44.24 66.7198C43.04 67.4798 35.44 71.0798 35.44 71.0798Z" fill="white"/>
|
||||
<path d="M38.7598 110V113.64C38.7598 113.64 47.6798 113.32 47.6798 112.88V110H38.7598Z" fill="white"/>
|
||||
<path d="M55.2397 52.5195C55.5997 57.8395 55.9197 63.1595 56.1997 68.4795C56.4797 73.7995 56.6797 79.1195 56.9197 84.4395C57.1597 89.7595 57.3197 95.0795 57.4397 100.4C57.5597 105.72 57.6797 111.04 57.7197 116.4C57.3597 111.08 57.0397 105.76 56.7597 100.44C56.4797 95.1195 56.2797 89.7995 56.0397 84.4795C55.7997 79.1595 55.6397 73.8395 55.5197 68.5195C55.3997 63.1995 55.2797 57.8795 55.2397 52.5195Z" fill="white"/>
|
||||
<path d="M54.2397 52.5217C54.7997 60.7617 55.2397 69.0017 55.5997 77.2817C55.9597 85.6417 56.2397 94.0017 56.4797 102.322C56.5997 107.002 56.6797 111.722 56.7197 116.402L58.7197 116.442C58.1597 108.202 57.7197 99.9617 57.3597 91.6817C56.9997 83.3217 56.7197 74.9617 56.4797 66.6417C56.3597 61.9617 56.2797 57.2417 56.2397 52.5617C56.2397 52.3617 54.2397 52.3617 54.2397 52.5217C54.3197 60.8417 54.5197 69.1617 54.7997 77.4817C55.0797 85.8017 55.4397 94.1617 55.8397 102.522C56.0797 107.162 56.3597 111.802 56.6797 116.402C56.6797 116.602 58.6797 116.602 58.6797 116.442C58.6397 108.122 58.3997 99.8017 58.1197 91.4817C57.8397 83.1617 57.4797 74.8017 57.0797 66.4417C56.8397 61.8017 56.5597 57.1617 56.2397 52.5617C56.2397 52.3217 54.2397 52.4017 54.2397 52.5217Z" fill="#3D3D3D"/>
|
||||
<path d="M124.96 60.0019L144.16 50.9219L139.28 124.602L124.88 119.082L124.96 60.0019Z" fill="#3D3D3D"/>
|
||||
<path d="M125 60.5179L131.48 57.4379L141.84 52.5579L144.2 51.4379L143.32 51.3579L143.2 53.3179L142.84 58.6779L142.32 66.5979L141.68 76.2379L140.96 86.8779L140.28 97.5579L139.64 107.518L139.08 115.918L138.68 121.998C138.6 122.958 138.52 123.918 138.48 124.878C138.48 124.918 138.48 124.958 138.48 124.998L140.08 123.918L127.48 119.038L125.68 118.358L125.8 118.558V112.678V98.5579V81.5979V66.8379V61.9979C125.8 61.2379 125.84 60.4379 125.8 59.6779V59.5979C125.8 58.9979 124.08 59.8379 124.08 60.4779V66.3579V80.4779V97.5579V112.318V117.158C124.08 117.918 124.04 118.718 124.08 119.478C124.08 119.518 124.08 119.558 124.08 119.558C124.08 119.638 124.12 119.718 124.2 119.758L136.8 124.598L138.6 125.278C139.16 125.478 140.16 124.798 140.2 124.198L140.32 122.238L140.68 116.878L141.2 108.958L141.84 99.3179L142.56 88.6779L143.28 77.9979L143.92 68.0379L144.48 59.6379L144.88 53.5579C144.96 52.5979 145.08 51.6379 145.08 50.6779C145.08 50.6379 145.08 50.5979 145.08 50.5579C145.12 50.1179 144.32 50.4379 144.2 50.4779L137.72 53.5579L127.32 58.3979L124.96 59.5179C124.68 59.6379 124.04 60.0779 124.12 60.4379C124.2 60.7979 124.76 60.5979 125 60.5179Z" fill="#3D3D3D"/>
|
||||
<path d="M173.16 62.7619L164.04 128.322L139.28 124.602L144.16 50.9219L173.16 62.7619Z" fill="#CECECE"/>
|
||||
<path d="M172.36 62.1606L171.44 68.6806L169.28 84.3606L166.64 103.321L164.36 119.681L163.6 125.041L163.36 126.721C163.28 127.001 163.24 127.281 163.24 127.601C163.24 127.641 163.24 127.681 163.24 127.721L163.52 127.561L155.12 126.321L141.8 124.321L138.76 123.841L140.04 125.161L140.16 123.201L140.52 117.841L141.04 109.921L141.68 100.281L142.4 89.6406L143.12 78.9606L143.8 69.0006L144.36 60.5606L144.76 54.4806L144.88 52.6006C144.92 52.2806 144.96 51.9606 144.96 51.6006C144.96 51.5606 144.96 51.5206 144.96 51.4806L144.48 51.6006L154.32 55.6006L169.88 61.9606L173.44 63.4006C173.8 63.5606 174 63.2806 173.84 62.9606C173.64 62.5206 173.24 62.2006 172.8 62.0006L162.96 58.0006L147.4 51.6406L143.84 50.2006C143.72 50.1606 143.4 50.1206 143.36 50.3206L143.24 52.2806L142.88 57.6406L142.36 65.5206L141.72 75.1606L141 85.8006L140.28 96.4806L139.64 106.441L139.08 114.841L138.68 120.921C138.6 121.881 138.52 122.841 138.48 123.801V123.921C138.44 124.521 139.24 125.161 139.76 125.241L148.16 126.481L161.48 128.481L164.52 128.921C164.64 128.961 164.76 128.881 164.8 128.761L165.72 122.241L167.92 106.561L170.56 87.6006L172.8 71.2806L173.56 65.9206C173.68 65.0806 173.84 64.2006 173.92 63.3606C173.92 63.3206 173.92 63.2806 173.92 63.2406C174 62.7206 172.44 61.6006 172.36 62.1606Z" fill="#3D3D3D"/>
|
||||
<path d="M149 113.641H175.6L174.32 130.641L149.92 128.321L149 113.641Z" fill="#CECECE"/>
|
||||
<path d="M149.4 114.2H175.96L174.64 113.36L173.52 128.28L173.36 130.36L174.2 130.08L165.92 129.28L152.84 128.04L149.84 127.76L150.92 128.44L150.12 115.6L150 113.76C149.96 113.12 148 112.72 148.08 113.52L148.88 126.36L149 128.2C149.04 128.6 149.8 128.84 150.08 128.88L158.36 129.68L171.44 130.92L174.48 131.2C174.68 131.2 175.28 131.24 175.32 130.92L176.4 116L176.56 113.92C176.6 113.32 175.68 113.08 175.24 113.08H148.64C148.28 113.08 147.88 113.28 148.12 113.64C148.36 114 149 114.2 149.4 114.2Z" fill="#3D3D3D"/>
|
||||
<path d="M139.28 113.641H149L149.92 128.321L139.28 124.601V113.641Z" fill="white"/>
|
||||
<path d="M139.96 114.32H149.68L148.28 113L149.08 125.84L149.2 127.68L149.4 127.64L140.08 124.4L138.76 123.92L140.08 125.2V114.24C140.08 113.92 139.52 113.48 139.28 113.28C139.2 113.24 138.6 112.76 138.6 113V124C138.6 124.24 139 124.56 139.12 124.68C139.36 124.92 139.6 125.12 139.92 125.28L149.24 128.52L150.56 128.96C150.64 129 150.76 129.04 150.76 128.92L149.96 116.08L149.84 114.24C149.84 114 149.4 113.64 149.24 113.48C149.08 113.32 148.72 112.96 148.44 112.96H138.72C138.44 112.96 139 113.6 139.08 113.64C139.16 113.8 139.6 114.32 139.96 114.32Z" fill="#3D3D3D"/>
|
||||
<path d="M141.32 93.8828C143.6 94.1228 145.84 94.4028 148.08 94.7628C150.32 95.1228 152.56 95.4828 154.8 95.8828C157.04 96.2828 159.28 96.6828 161.48 97.1628C163.68 97.6428 165.92 98.1228 168.12 98.6828C165.84 98.4428 163.6 98.1628 161.36 97.8028C159.12 97.4428 156.88 97.0828 154.64 96.6828C152.4 96.2828 150.16 95.8428 147.96 95.4028C145.76 94.9628 143.52 94.4428 141.32 93.8828Z" fill="white"/>
|
||||
<path d="M142.08 94.2809C149.04 95.0409 156 96.161 162.84 97.641C164.84 98.041 166.8 98.4809 168.76 99.0009L167.4 98.201C160.44 97.4409 153.48 96.321 146.64 94.841C144.64 94.441 142.68 94.0009 140.72 93.4809C140.4 93.4009 140.36 93.4809 140.64 93.6809C141.04 93.9209 141.48 94.121 141.92 94.241C148.84 95.961 155.84 97.3209 162.92 98.2809C164.92 98.5609 166.92 98.841 168.92 99.041C169.28 99.081 168.88 98.8009 168.76 98.7609C168.4 98.5209 168 98.361 167.56 98.241C160.64 96.521 153.64 95.1609 146.56 94.2009C144.56 93.9209 142.56 93.641 140.56 93.441C140.16 93.401 140.72 93.7209 140.8 93.7609C141.2 94.0409 141.64 94.2009 142.08 94.2809Z" fill="#3D3D3D"/>
|
||||
<path d="M142.72 72.8398C145.08 73.3598 147.44 73.9598 149.8 74.5998C152.16 75.2398 154.48 75.8798 156.8 76.5598C159.12 77.2398 161.44 77.9598 163.76 78.7198C166.08 79.4798 168.36 80.2398 170.64 81.1198C168.28 80.5998 165.92 79.9998 163.56 79.3598C161.2 78.7198 158.88 78.0798 156.56 77.3998C154.24 76.7198 151.92 75.9998 149.6 75.2398C147.28 74.4798 145 73.6798 142.72 72.8398Z" fill="white"/>
|
||||
<path d="M142.64 73.6811C150 75.3211 157.24 77.4411 164.4 79.8011C166.44 80.4811 168.48 81.2011 170.52 81.9611L170.68 80.2811C163.32 78.6411 156.08 76.5211 148.92 74.1611C146.88 73.4811 144.84 72.7611 142.8 72.0011C142.44 71.8411 142 72.0411 141.84 72.4011C141.8 72.4411 141.8 72.5211 141.8 72.5611C141.8 73.0811 142.12 73.5211 142.64 73.6811C149.68 76.2811 156.96 78.4811 164.24 80.4011C166.32 80.9611 168.44 81.4811 170.56 81.9611C171 82.0411 171.52 81.9211 171.56 81.4011C171.56 80.8811 171.24 80.4411 170.72 80.2811C163.68 77.6411 156.4 75.5211 149.16 73.5611C147.08 73.0011 144.96 72.4811 142.84 72.0011C141.52 71.6811 141.56 73.4411 142.64 73.6811Z" fill="#3D3D3D"/>
|
||||
<path d="M153.52 84.3188V83.7188V81.7188L161.16 83.7188L160.56 85.4388L153.52 84.3188Z" fill="white"/>
|
||||
<path d="M156.36 65.6781V65.0781V63.0781L164 65.0781L163.4 66.7981L156.36 65.6781Z" fill="white"/>
|
||||
<path d="M151.48 102.483V101.883V99.8828L159.12 101.883L158.52 103.603L151.48 102.483Z" fill="white"/>
|
||||
<path d="M159.12 120.362C159.12 120.362 158.64 117.962 159.12 117.842C159.6 117.722 168.24 117.842 168.24 117.842V120.362H159.12Z" fill="white"/>
|
||||
<path d="M144.16 50.9219C144.04 53.8819 143.88 56.8819 143.76 59.8419L143.28 68.7619C142.92 74.7219 142.52 80.6419 142.16 86.6019C141.72 92.5619 141.32 98.4819 140.84 104.442L140.12 113.362C139.84 116.322 139.6 119.282 139.32 122.242C139.44 119.242 139.6 116.282 139.72 113.322L140.2 104.362C140.56 98.4019 140.96 92.4819 141.32 86.5219C141.76 80.5619 142.16 74.6419 142.64 68.6819L143.36 59.7619C143.6 56.8819 143.88 53.9219 144.16 50.9219Z" fill="white"/>
|
||||
<path d="M143.2 50.7606C143.04 55.0006 142.84 59.2406 142.6 63.4806C142.4 67.2406 142.2 71.0006 141.96 74.7606C141.52 81.6806 141.04 88.6406 140.56 95.5606C140.24 99.7606 139.92 103.961 139.6 108.121C139.28 111.921 138.96 115.721 138.6 119.481C138.52 120.321 138.44 121.201 138.36 122.041L140.32 122.401C140.48 118.161 140.68 113.921 140.92 109.681C141.12 105.921 141.32 102.161 141.56 98.4006C142 91.4806 142.48 84.5206 142.96 77.6006C143.28 73.4006 143.6 69.2006 143.92 65.0406C144.24 61.2406 144.56 57.4406 144.92 53.6806C145 52.8406 145.08 51.9606 145.16 51.1206C145.2 50.6806 143.24 50.3606 143.2 50.7606C142.76 54.9606 142.4 59.1606 142.08 63.4006C141.76 67.1606 141.48 70.9206 141.2 74.6806C140.68 81.6006 140.2 88.5606 139.76 95.4806C139.48 99.6806 139.24 103.881 139 108.081C138.8 111.881 138.6 115.681 138.44 119.481C138.4 120.321 138.36 121.201 138.32 122.081C138.32 122.521 140.24 122.841 140.28 122.441C140.72 118.241 141.08 114.001 141.4 109.761C141.72 106.001 142 102.241 142.28 98.4806C142.8 91.5606 143.28 84.6006 143.72 77.6806C144 73.4806 144.24 69.2806 144.48 65.0806C144.68 61.2806 144.88 57.4806 145.04 53.6806C145.08 52.8406 145.12 51.9606 145.16 51.1206C145.16 50.6406 143.2 50.4006 143.2 50.7606Z" fill="#3D3D3D"/>
|
||||
<path d="M73.8799 71.0826V43.5226C73.8799 43.5226 129 42.5226 129 43.5226V71.0826H73.8799Z" fill="#CECECE"/>
|
||||
<path d="M74.8399 71.0802V43.5202L73.7999 44.4002L76.8799 44.3602C79.5599 44.3202 82.1999 44.2802 84.8799 44.2402C88.5199 44.2002 92.1199 44.1602 95.7599 44.1202C99.7199 44.0802 103.68 44.0402 107.6 44.0002C111.2 43.9602 114.76 43.9602 118.36 44.0002C120.96 44.0002 123.52 44.0402 126.12 44.1202C126.52 44.1202 126.96 44.1602 127.36 44.2002L127.84 44.2402H128.04C128.12 44.2402 128.28 44.2402 128.04 44.2402C128.2 44.2802 128.36 44.3202 128.56 44.3202C128.68 44.3202 128.28 44.2002 128.4 44.2802C128.28 44.2002 128.2 44.1202 128.12 44.0002C128.04 43.8402 128.04 43.4002 128.04 43.7202C128 46.1602 128.04 48.5602 128.04 51.0002V71.1202L129.08 70.2402H80.7199C78.4799 70.2402 76.2799 70.1602 74.0399 70.2402H73.9599C73.4399 70.2402 72.9999 70.6002 72.9199 71.1202C72.9199 71.6002 73.3199 72.0002 73.7999 71.9602H73.8399H122.2C124.4 71.9602 126.64 72.0402 128.88 71.9602H128.96C129.4 71.9602 130 71.6002 130 71.0802V44.4402C130 43.8002 130.16 43.0002 129.48 42.6802C128.92 42.4802 128.36 42.4002 127.76 42.4002C125.6 42.2402 123.4 42.2402 121.2 42.2002C117.8 42.1602 114.4 42.1602 111.04 42.1602C107.08 42.1602 103.12 42.2002 99.1999 42.2402C95.3999 42.2802 91.5599 42.3202 87.7599 42.3602C84.7599 42.4002 81.7599 42.4402 78.7599 42.4802L74.1999 42.5602H73.9999C73.5599 42.5602 72.9599 42.9202 72.9599 43.4402V71.0002C72.8799 72.2402 74.8399 72.1602 74.8399 71.0802Z" fill="#3D3D3D"/>
|
||||
<path d="M70.1602 102.598L69.1602 71.0781H132.48L130.48 101.358L70.1602 102.598Z" fill="#CECECE"/>
|
||||
<path d="M71.1202 102.519L70.8002 91.8395L70.2802 74.8395L70.1602 70.9595L69.2402 71.8395H130C130.8 71.8395 131.64 71.8795 132.44 71.8395H132.56L131.48 71.1595L130.8 81.3995L129.72 97.7195L129.48 101.439L130.4 100.559L124.4 100.679L109.96 100.959L92.5202 101.319L77.4802 101.639C75.0402 101.679 72.6002 101.639 70.1602 101.799H70.0402C69.5602 101.799 69.1602 102.2 69.1202 102.68C69.1602 103.2 69.7602 103.359 70.2002 103.359L76.2002 103.239L90.6402 102.959L108.08 102.599L123.12 102.279C125.56 102.239 128 102.279 130.44 102.119H130.56C131.04 102.119 131.44 101.719 131.48 101.24L132.16 90.9995L133.24 74.6795L133.48 70.9595C133.52 70.4395 132.76 70.2795 132.4 70.2795H71.6402C70.8402 70.2795 70.0002 70.2395 69.2002 70.2795H69.0802C68.6002 70.2795 68.2002 70.6795 68.1602 71.1595L68.4802 81.7995L69.0002 98.7995L69.1202 102.68C69.2002 103.76 71.1602 103.559 71.1202 102.519Z" fill="#3D3D3D"/>
|
||||
<path d="M76.8002 130.638L75.1602 102.597L127.08 101.438L124.88 130.638H76.8002Z" fill="#CECECE"/>
|
||||
<path d="M77.7602 130.603L77.2002 121.083L76.3202 106.043L76.1202 102.562L75.3602 103.522L80.5602 103.403L93.0002 103.122L107.96 102.803L120.92 102.522L125.2 102.443C125.88 102.443 126.56 102.443 127.24 102.403H127.32L126.2 101.283L125.44 111.163L124.24 126.843L123.96 130.443L124.76 129.722H82.5602C80.6402 129.722 78.6802 129.642 76.7602 129.722H76.6802C76.2402 129.722 75.8802 130.082 75.8802 130.522C75.8802 130.562 75.8802 130.643 75.8802 130.683C76.0002 131.203 76.4402 131.562 77.0002 131.562H119.2C121.12 131.562 123.08 131.642 125 131.562H125.08C125.48 131.562 125.84 131.243 125.88 130.843L126.64 120.962L127.84 105.283L128.12 101.683C128.12 101.083 127.64 100.562 127.04 100.562H127L121.8 100.683L109.36 100.963L94.3602 101.323L81.4002 101.603C79.3202 101.643 77.2002 101.602 75.0802 101.763H75.0002C74.5602 101.763 74.2002 102.163 74.2002 102.643C74.2002 102.683 74.2002 102.723 74.2002 102.763L74.7602 112.283L75.6402 127.322L75.8402 130.803C75.9602 131.803 77.8402 131.843 77.7602 130.603Z" fill="#3D3D3D"/>
|
||||
<path d="M95.7199 110.001C95.7199 110.001 94.9999 107.001 95.7199 106.881C96.4399 106.761 109.12 106.881 109.12 106.881V110.001H95.7199Z" fill="white"/>
|
||||
<path d="M90.8799 83.7198C90.8799 83.7198 89.7999 78.7998 90.8799 78.5598C91.9599 78.3198 111.04 78.5598 111.04 78.5598V83.7198H90.8799Z" fill="white"/>
|
||||
<path d="M94.1999 54.1186C94.1999 54.1186 93.4799 51.1186 94.1999 50.9986C94.9199 50.8786 107.6 50.9986 107.6 50.9986V54.1186H94.1999Z" fill="white"/>
|
||||
<path d="M97.4801 117.442C101 117.562 104.56 117.522 108.08 117.282C108.56 117.242 108.6 116.682 108.44 116.322C108.24 115.882 107.76 115.602 107.24 115.602C103.84 115.802 100.44 115.842 97.0801 115.762C95.8401 115.722 96.5601 117.402 97.4801 117.442Z" fill="#3D3D3D"/>
|
||||
<path d="M92.8799 88.9584C98.7999 89.0784 104.72 88.9984 110.68 88.7984C111.12 88.7984 110.92 88.3184 110.76 88.1184C110.48 87.7184 110.08 87.4784 109.6 87.3984C103.68 87.5984 97.7599 87.6384 91.7999 87.5584C91.3599 87.5584 91.5599 88.0384 91.7199 88.2384C91.9599 88.5984 92.3999 88.8784 92.8799 88.9584Z" fill="#3D3D3D"/>
|
||||
<path d="M95.7597 59.5198C99.3197 59.6398 102.84 59.5998 106.36 59.3598C106.88 59.3198 107.32 58.9998 107.48 58.5198C107.6 58.0398 107.16 57.8398 106.76 57.8398C103.36 58.0398 99.9997 58.0798 96.5997 57.9998C96.0797 57.9598 95.5997 58.1998 95.3197 58.6398C95.1597 58.8798 95.1997 59.2398 95.4797 59.3998C95.5597 59.4798 95.6397 59.5198 95.7597 59.5198Z" fill="#3D3D3D"/>
|
||||
<path d="M156.88 69.8391C158.76 69.9991 160.6 70.3591 162.4 70.9591C162.84 71.1191 162.96 70.5991 162.88 70.2791C162.8 69.7991 162.48 69.3991 162.04 69.1991C160.16 68.5591 158.2 68.1991 156.2 68.0391C156.04 68.0391 155.92 68.1991 155.88 68.3591C155.84 68.5591 155.88 68.7991 155.96 68.9991C156.08 69.3991 156.44 69.7191 156.88 69.8391Z" fill="#3D3D3D"/>
|
||||
<path d="M153.72 89.76C154.16 89.76 154.6 89.76 155 89.76C155.04 89.76 155.32 89.76 155.12 89.76L155.48 89.8C155.68 89.8 155.92 89.84 156.12 89.88C156.56 89.92 156.96 90 157.4 90.08C157.6 90.12 157.8 90.16 158 90.2C158.2 90.24 157.92 90.16 158.12 90.24L158.52 90.36C158.96 90.48 159.56 90.48 159.8 90.04C160.04 89.6 159.68 89.16 159.24 89C157.36 88.44 155.36 88.16 153.4 88.24C153 88.24 152.48 88.56 152.56 89.04C152.64 89.52 153.28 89.76 153.72 89.76Z" fill="#3D3D3D"/>
|
||||
<path d="M151.48 107.08C153.08 107 154.68 107.08 156.24 107.28C156.72 107.32 157.24 107.16 157.56 106.76C157.72 106.6 157.72 106.32 157.56 106.12C157.48 106.04 157.36 106 157.24 106C155.52 105.76 153.76 105.68 152.04 105.76C151.56 105.76 151.08 106.04 150.84 106.44C150.68 106.88 151.12 107.08 151.48 107.08Z" fill="#3D3D3D"/>
|
||||
<path d="M161 125.119H165.52C165.88 125.119 166.44 124.799 166.32 124.359C166.2 123.919 165.6 123.719 165.16 123.719H160.64C160.28 123.719 159.72 124.039 159.84 124.479C159.96 124.919 160.56 125.119 161 125.119Z" fill="#3D3D3D"/>
|
||||
<path d="M40.5596 117.323H46.7196C47.1196 117.323 46.9596 116.923 46.7996 116.683C46.5996 116.403 46.0796 115.883 45.6796 115.883H39.5596C39.1596 115.883 39.3196 116.283 39.4796 116.523C39.6796 116.803 40.1596 117.323 40.5596 117.323Z" fill="#3D3D3D"/>
|
||||
<path d="M26.7199 99.0021C28.7599 98.2821 30.9199 97.8021 33.0799 97.5621C33.4799 97.5221 33.5999 97.1621 33.3199 96.8821C32.9599 96.5221 32.4799 96.3621 31.9999 96.4421C29.7199 96.7221 27.4799 97.2421 25.2799 98.0021C24.8399 98.1621 25.1599 98.6021 25.3999 98.8021C25.7599 99.0821 26.2799 99.1621 26.7199 99.0021Z" fill="#3D3D3D"/>
|
||||
<path d="M38 74.1606C40.32 73.6806 42.6 73.0406 44.8 72.1606C45.24 72.0006 44.92 71.5206 44.68 71.3206C44.28 71.0406 43.76 70.9606 43.32 71.1206C41.24 71.9206 39.08 72.5606 36.88 73.0006C36.64 73.0006 36.48 73.1606 36.48 73.4006C36.48 73.5606 36.56 73.6806 36.68 73.7606C37 74.0806 37.48 74.2406 38 74.1606Z" fill="#3D3D3D"/>
|
||||
<path d="M108.08 165.481C108.08 165.481 152.6 165.801 157.08 164.881C161.56 163.961 166.84 156.961 161.88 148.761C156.92 140.561 149.4 142.961 149.4 142.961C149.4 142.961 150.04 131.481 134.52 132.081C119 132.681 119.6 145.801 119.6 145.801C119.6 145.801 107.92 146.241 109.36 154.761C109.36 154.761 103.92 152.961 101.04 159.241C98.1601 165.521 108.08 165.481 108.08 165.481Z" fill="white"/>
|
||||
<path d="M108.52 166.359C111.6 166.359 114.68 166.399 117.76 166.399C124.2 166.399 130.6 166.399 137.04 166.359C142.68 166.319 148.36 166.319 154 166.039C155.52 165.959 157.2 165.999 158.64 165.439C162.36 163.959 164.6 159.759 164.56 155.879C164.52 153.119 163.52 150.439 162 148.119C160.76 146.079 159.04 144.399 157 143.199C154.68 141.919 152 141.479 149.4 141.999C149.24 142.039 149.04 142.079 148.88 142.119L150.08 143.559C150.12 142.039 149.8 140.519 149.2 139.119C147.92 135.879 145.28 133.359 142 132.199C137.08 130.679 131.8 130.839 126.96 132.639C123.8 133.959 121.28 136.519 120 139.719C119.56 140.839 119.24 142.039 119.08 143.239C119.04 143.639 119 144.039 118.96 144.439C118.92 144.679 118.92 144.879 118.96 145.119C118.96 145.159 118.96 145.199 118.96 145.199L119.2 144.919C117.84 144.999 116.52 145.239 115.2 145.599C112.96 146.239 110.64 147.399 109.4 149.519C108.64 150.999 108.4 152.679 108.72 154.319L109.08 153.919C108.08 153.639 107.04 153.559 106 153.759C103.64 154.159 101.88 155.759 100.76 157.799C100.2 158.719 99.8798 159.799 99.8398 160.919C99.8798 161.959 100.28 162.919 100.92 163.719C102 165.039 103.6 165.679 105.2 166.039C106.28 166.279 107.36 166.399 108.44 166.439C109.04 166.439 108.24 164.679 107.6 164.679C106.84 164.679 106.08 164.599 105.32 164.479C104.64 164.359 104 164.199 103.36 163.999C103.04 163.879 102.68 163.759 102.36 163.599C102.32 163.599 102.12 163.479 102 163.399L101.8 163.239C101.76 163.199 101.56 163.039 101.68 163.159L101.52 162.999C101.48 162.959 101.32 162.799 101.4 162.879C101.48 162.959 101.32 162.799 101.32 162.759C101.24 162.639 101.4 162.919 101.28 162.679C101.2 162.519 101.36 162.839 101.28 162.679L101.24 162.559C101.24 162.559 101.28 162.719 101.28 162.639C101.28 162.559 101.24 162.479 101.2 162.399C101.24 162.559 101.2 162.279 101.2 162.239C101.08 161.439 101.44 160.479 101.8 159.759C102.76 157.799 104.36 156.119 106.56 155.639C107.32 155.479 108.08 155.439 108.8 155.519L109.2 155.559H109.24L109.36 155.599L109.6 155.679C109.92 155.759 110 155.519 109.96 155.279C109.72 153.959 109.88 152.559 110.48 151.359C111.04 150.359 111.84 149.519 112.8 148.919C114.56 147.839 116.56 147.159 118.6 146.919C119.08 146.839 119.52 146.799 120 146.759C120.12 146.759 120.24 146.639 120.24 146.479C120.16 141.999 122.44 137.799 126.2 135.359C128.08 134.239 130.16 133.519 132.28 133.239C134.92 132.839 137.64 132.879 140.28 133.359C142.12 133.679 143.88 134.439 145.44 135.519C145.72 135.719 145.96 135.959 146.2 136.159L146.4 136.359C146.44 136.399 146.6 136.559 146.48 136.439C146.6 136.599 146.72 136.719 146.84 136.879C146.96 137.039 147.04 137.119 147.12 137.239C146.96 137.039 147.12 137.239 147.16 137.279C147.2 137.319 147.28 137.439 147.32 137.519C147.36 137.599 147.48 137.799 147.56 137.919C147.68 138.119 147.48 137.799 147.56 137.959L147.68 138.199C147.76 138.319 147.8 138.439 147.88 138.559C147.96 138.679 148.08 139.079 148 138.799C148.08 139.079 148.2 139.319 148.28 139.599C148.32 139.719 148.36 139.839 148.4 139.959L148.44 140.159C148.44 140.119 148.4 140.039 148.44 140.199C148.48 140.439 148.52 140.639 148.56 140.879C148.6 141.239 148.64 141.599 148.68 141.959C148.68 142.039 148.68 141.799 148.68 141.999C148.68 142.039 148.68 142.119 148.68 142.159V142.399C148.68 142.439 148.68 142.439 148.68 142.479C148.64 142.999 149.28 144.119 149.88 143.919C149.72 143.959 150 143.879 149.88 143.919L150.24 143.839C150.64 143.759 151.04 143.679 151.44 143.679C152.72 143.559 154 143.719 155.24 144.079C159.4 145.319 162.48 149.399 163.08 153.639C163.6 157.559 161.72 161.759 158.12 163.599C156.68 164.319 155.08 164.359 153.52 164.439C148.16 164.719 142.8 164.719 137.48 164.759C131.12 164.799 124.72 164.839 118.36 164.799H111.28C110.12 164.799 108.92 164.719 107.76 164.799H107.6C107.04 164.599 107.88 166.359 108.52 166.359Z" fill="#CECECE"/>
|
||||
<path d="M143.52 146.602C143.52 146.602 146.84 140.162 156.24 143.762L143.52 146.602Z" fill="white"/>
|
||||
<path d="M144.4 146.882C144.52 146.682 144.64 146.482 144.76 146.322C144.84 146.242 144.92 146.122 144.96 146.042C144.8 146.242 145.04 145.922 145.12 145.882C145.36 145.642 145.6 145.402 145.84 145.162L146.04 145.002C146.08 144.962 146.28 144.802 146.12 144.922C146.28 144.802 146.48 144.682 146.64 144.562C146.8 144.442 147 144.362 147.16 144.242L147.48 144.082C147.52 144.082 147.64 144.002 147.48 144.082C147.56 144.042 147.64 144.042 147.68 144.002C148.64 143.602 149.72 143.402 150.76 143.402C152.44 143.442 154.12 143.802 155.72 144.442C156.2 144.642 156.76 144.442 157.04 144.042C157.24 143.682 157.08 143.242 156.76 143.082C156.72 143.042 156.64 143.042 156.6 143.002C153.72 141.922 150.48 141.362 147.52 142.362C145.8 142.922 144.24 144.002 143.12 145.442C142.92 145.682 142.72 145.962 142.56 146.242C142.04 147.322 143.92 147.802 144.4 146.882Z" fill="#CECECE"/>
|
||||
<path d="M128.08 30.6422C128.08 30.6422 125.08 27.7222 120.88 28.6422C119.96 28.8022 119.16 29.2822 118.52 29.9622C116.72 31.9622 118.8 34.6422 122.08 34.6022L158.84 34.5622C161.52 34.5622 162.68 32.0422 160.52 30.8822C158 29.4822 154.68 30.6422 154.68 30.6422C154.68 30.6422 160.44 24.5622 153.64 18.2822C146.84 12.0022 136.96 18.0422 138 24.5622C138 24.5622 127.2 19.7222 128.08 30.6422Z" fill="white"/>
|
||||
<path d="M128.64 30.1213C126.4 28.0013 123.28 27.1213 120.28 27.8013C118.52 28.2413 116.72 29.6813 117 31.6813C117.28 33.6813 119.04 34.8813 120.8 35.3213C121.84 35.6013 123.04 35.4813 124.16 35.4813H129.56H145.36L157.84 35.4413C159.16 35.4413 160.48 35.5213 161.6 34.6413C163.08 33.4813 162.76 31.4813 161.36 30.4013C159.76 29.1613 157.44 29.0813 155.56 29.4413C155.12 29.5213 154.68 29.6413 154.28 29.7613L155.48 31.3213C156.4 30.3213 157.08 29.1613 157.48 27.8413C158.36 25.1213 157.88 22.1613 156.2 19.8413C154.28 17.1613 151.36 15.0413 148 14.7213C145.28 14.4813 142.56 15.2813 140.4 17.0013C138.2 18.7613 136.8 21.4813 137.2 24.3213L138.2 23.6413C135.08 22.2413 130.24 21.5213 128.16 24.9213C127.16 26.5213 127.12 28.6013 127.24 30.4413C127.32 31.4013 129.08 31.9613 129 30.7213C128.88 29.2013 128.92 27.6413 129.6 26.3213C130.04 25.4813 130.76 24.8413 131.68 24.5613C131.72 24.5613 132.08 24.4413 131.88 24.4813C132 24.4413 132.08 24.4413 132.2 24.4013C132.44 24.3613 132.68 24.3213 132.92 24.3213C133.16 24.3213 133.4 24.2813 133.68 24.3213H133.88L134.28 24.3613C134.76 24.4013 135.2 24.4813 135.68 24.6013C135.88 24.6413 136.08 24.6813 136.24 24.7213L136.4 24.7613C136.2 24.6813 136.6 24.8013 136.4 24.7613L136.68 24.8413C137.12 24.9613 137.52 25.1213 137.92 25.3213C138.24 25.5213 138.68 25.4013 138.84 25.0413C138.92 24.9213 138.92 24.7613 138.92 24.6413C138.24 20.0013 143.08 16.5613 147.2 16.4813C149.92 16.4013 152.32 17.7613 154.08 19.7613C155.76 21.6413 156.48 24.0413 155.8 26.4813C155.56 27.3613 155.16 28.2013 154.64 28.9613C154.56 29.1213 154.44 29.2413 154.36 29.4013C154.48 29.2413 154.28 29.5213 154.24 29.5613C154.2 29.6013 154.08 29.7213 154 29.8413C153.32 30.5613 154.4 31.6813 155.2 31.4013C155.56 31.2813 155.88 31.2013 156.24 31.1213C157.04 30.9613 157.88 30.9213 158.68 31.0413C159.12 31.0813 159.52 31.2013 159.92 31.3613C160.12 31.4413 160.28 31.5213 160.44 31.6413C160.48 31.6813 160.68 31.8813 160.6 31.8013C160.72 31.9213 160.72 32.0813 160.68 32.2413C160.64 32.4813 160.52 32.6813 160.36 32.8413C159.56 33.6413 158.36 33.5213 157.32 33.5213H146.24H131.2H122C121.48 33.5213 120.96 33.4813 120.48 33.3213C120.16 33.2413 119.84 33.0813 119.56 32.8813C119.44 32.8013 119.32 32.7213 119.24 32.6013C119.16 32.5213 119.08 32.4013 119 32.3213C118.88 32.1613 118.8 31.9613 118.76 31.7613C118.72 31.4813 118.76 31.2013 118.92 30.9213C119.72 29.3213 121.96 29.0013 123.56 29.1613C124.92 29.3213 126.16 29.8813 127.24 30.6813L127.44 30.8413C127.6 30.9613 127.6 30.9613 127.44 30.8413C127.48 30.8813 127.52 30.9213 127.6 30.9613C127.92 31.2813 128.48 31.5213 128.84 31.1613C129.2 30.8013 128.96 30.4013 128.64 30.1213Z" fill="#CECECE"/>
|
||||
<path d="M87.96 131.284C87.96 131.284 94.4 124.964 103.56 126.924C105.52 127.284 107.32 128.324 108.68 129.764C112.56 134.084 108.04 139.844 101.04 139.844L21.52 139.724C15.76 139.724 13.2 134.284 17.84 131.724C23.32 128.724 30.44 131.284 30.44 131.284C30.44 131.284 18.04 118.124 32.68 104.564C47.32 91.0037 68.76 104.004 66.52 118.124C66.44 118.124 89.88 107.644 87.96 131.284Z" fill="white"/>
|
||||
<path d="M88.64 132.001C89.96 130.761 91.48 129.761 93.16 129.041C96.68 127.401 101 126.801 104.72 128.081C106.4 128.681 108.04 129.761 108.84 131.321C109.12 131.881 109.24 132.481 109.24 133.121C109.2 133.801 109 134.481 108.64 135.081C107.12 137.841 103.64 138.921 100.68 138.921C99.04 138.921 97.4 138.921 95.76 138.921H84L68.32 138.881L51.44 138.841H36.04H25.08H22.04C21.32 138.881 20.56 138.841 19.84 138.721C19.04 138.601 18.32 138.281 17.64 137.841L17.48 137.721C17.48 137.721 17.2 137.521 17.36 137.641C17.24 137.521 17.12 137.401 17 137.281C16.8 137.081 16.64 136.801 16.48 136.561C16.56 136.681 16.4 136.321 16.36 136.281C16.32 136.241 16.32 136.121 16.28 136.081C16.24 135.921 16.32 136.281 16.28 136.001C16.2 135.721 16.2 135.441 16.24 135.161C16.32 134.561 16.6 134.001 17.04 133.521C18.4 132.121 20.6 131.521 22.48 131.281C24.32 131.081 26.2 131.161 28.04 131.561C28.6 131.681 29.16 131.801 29.72 131.961L29.8 132.001L30 132.081L30.2 132.121C31.16 132.441 31.48 131.401 30.88 130.761C30.76 130.601 30.6 130.441 30.48 130.281C30.4 130.201 30.36 130.121 30.28 130.041L30.24 130.001L30.16 129.921C29.96 129.681 29.8 129.401 29.6 129.161C29.16 128.521 28.72 127.841 28.36 127.121C28.24 126.921 28.16 126.721 28.04 126.521C27.96 126.361 28.04 126.481 28.04 126.521L27.96 126.361C27.88 126.241 27.84 126.121 27.8 126.001C27.6 125.521 27.4 125.041 27.24 124.561C26.44 122.401 26.12 120.121 26.32 117.841C26.6 114.881 27.64 112.081 29.36 109.641C32.96 104.361 38.68 100.361 45.12 99.7614C50.32 99.3214 55.44 100.881 59.52 104.121C63.04 106.921 65.76 111.201 65.68 115.921C65.68 116.521 65.6 117.081 65.52 117.681C65.4 118.361 66.24 119.201 66.92 118.881C67.6 118.561 68.4 118.281 69.16 118.041C69.52 117.921 69.92 117.801 70.28 117.681L70.84 117.521L71.04 117.481L71.44 117.401C72.4 117.161 73.36 116.961 74.36 116.841C75.4 116.681 76.48 116.641 77.52 116.641C77.56 116.641 77.76 116.641 77.56 116.641H77.76L78.16 116.681C78.44 116.681 78.68 116.721 78.96 116.761C79.48 116.841 80.04 116.921 80.56 117.081L80.76 117.121C80.52 117.041 80.76 117.121 80.8 117.121L81.12 117.201C81.4 117.281 81.68 117.401 81.92 117.521C82.16 117.641 82.36 117.721 82.56 117.841C82.32 117.721 82.68 117.921 82.76 117.961C82.88 118.041 83.04 118.121 83.16 118.201C83.36 118.361 83.56 118.481 83.76 118.641C83.8 118.681 84 118.841 83.76 118.641L83.92 118.801C84.04 118.921 84.16 119.041 84.28 119.161C84.48 119.361 84.64 119.561 84.8 119.761C84.84 119.801 85 120.001 84.8 119.761L84.92 119.961C85 120.081 85.12 120.241 85.2 120.361C85.4 120.641 85.56 120.961 85.72 121.281C85.84 121.521 85.64 121.081 85.76 121.361C85.8 121.441 85.84 121.561 85.88 121.681C85.96 121.841 86 122.001 86.08 122.161C86.36 122.921 86.6 123.681 86.72 124.481C87.08 126.601 87.16 128.761 86.96 130.881C86.92 131.401 87.24 131.881 87.72 132.081C88.08 132.241 88.68 132.121 88.72 131.641C89 127.961 88.88 124.081 87.16 120.721C86 118.441 84.04 116.681 81.64 115.761C77.52 114.201 72.84 114.961 68.76 116.201C67.76 116.481 66.76 116.841 65.8 117.241L67.2 118.441C68 113.201 65.72 108.041 62 104.361C57.92 100.361 52.52 98.0815 46.84 97.9215C43.88 97.8415 40.96 98.4014 38.24 99.5614C35 101.001 32.08 103.161 29.76 105.881C27.44 108.521 25.64 111.561 24.84 114.961C24.28 117.561 24.32 120.281 24.96 122.881C25.48 124.961 26.32 126.961 27.44 128.801C28.04 129.841 28.72 130.801 29.56 131.721C29.6 131.761 29.64 131.801 29.68 131.841L30.36 130.481C27.6 129.521 24.64 129.201 21.76 129.521C18.4 129.921 13.44 131.881 14.52 136.121C15.32 139.241 18.76 140.641 21.68 140.641H23.28H32.56H47.36L64.64 140.681L81.4 140.721H94.52H100.96C103.44 140.801 105.92 140.041 107.96 138.601C109.32 137.641 110.32 136.201 110.72 134.561C111.04 132.921 110.64 131.201 109.6 129.841C106.8 126.121 101.72 125.161 97.32 125.761C94.08 126.241 90.96 127.521 88.36 129.521C87.92 129.841 87.52 130.161 87.12 130.521C86.52 131.281 87.92 132.721 88.64 132.001Z" fill="#CECECE"/>
|
||||
<path d="M69.6402 184.596C69.6402 184.596 56.6802 178.156 56.6802 177.436C56.6802 176.716 70.8002 161.916 72.0802 161.996C73.3602 162.076 81.6002 170.716 81.6002 170.716L69.6402 184.596Z" fill="#3D3D3D"/>
|
||||
<path d="M70.4401 183.998C67.4801 182.518 64.5601 181.038 61.6401 179.438C60.2401 178.758 58.9201 177.958 57.6401 177.038C57.6001 176.998 57.6001 176.998 57.5601 176.958C57.5601 176.958 57.6001 177.038 57.6001 176.998C57.6401 176.878 57.5601 177.238 57.6001 177.198C57.6401 177.078 57.4401 177.398 57.6001 177.238C57.6401 177.158 57.6801 177.118 57.7601 177.038C57.8801 176.838 58.0401 176.678 58.2001 176.478L58.4801 176.158C58.5601 176.038 58.3601 176.278 58.5201 176.118L58.7201 175.918C61.4801 172.758 64.4401 169.718 67.4401 166.758C68.1601 166.038 68.8801 165.358 69.6401 164.678C69.9601 164.358 70.2801 164.078 70.6001 163.798C70.7201 163.678 70.8801 163.558 71.0001 163.438L71.2001 163.238C71.2401 163.198 71.4401 163.038 71.3201 163.118C71.2001 163.198 71.4001 163.078 71.4001 163.038L71.5601 162.918L71.8801 162.678C71.9601 162.638 72.0401 162.558 72.1201 162.518C72.2801 162.398 71.8801 162.678 72.0401 162.558C72.0801 162.558 72.1201 162.518 72.1601 162.518C72.0001 162.598 71.8401 162.638 71.6401 162.638H71.5601C71.6001 162.638 71.7201 162.718 71.6001 162.638C71.8401 162.798 72.1201 162.958 72.3201 163.118C73.9601 164.438 75.5201 165.838 76.9601 167.358C78.2001 168.558 79.4001 169.798 80.6001 171.038L80.8001 171.238L80.9201 170.478L76.8801 175.158L70.4401 182.638L68.9601 184.398C68.7201 184.678 68.5201 185.038 68.9601 185.238C69.4401 185.318 69.9201 185.158 70.2801 184.798L74.3201 180.118L80.7601 172.638L82.2401 170.878C82.4401 170.638 82.6001 170.398 82.3601 170.118C79.9201 167.438 77.2801 164.918 74.5601 162.518C74.0801 162.038 73.4801 161.638 72.8401 161.358C72.2001 161.158 71.5601 161.518 71.0401 161.838C69.7601 162.798 68.5601 163.838 67.4401 164.998C64.2001 168.078 61.0801 171.318 58.0801 174.638C57.5601 175.238 57.0401 175.838 56.5201 176.438C56.2001 176.758 55.9601 177.118 55.8001 177.478C55.6401 177.918 56.0801 178.198 56.4001 178.438C57.0401 178.878 57.6801 179.278 58.3601 179.638C61.7201 181.558 65.1601 183.278 68.6001 184.998L68.8401 185.118C69.2801 185.278 69.7601 185.198 70.1201 184.918C70.3201 184.798 70.8801 184.238 70.4401 183.998Z" fill="#3D3D3D"/>
|
||||
<path d="M64.48 174.796L60.48 163.636C60.48 163.636 69.32 155.316 71.24 152.156L76 166.996L64.48 174.796Z" fill="white"/>
|
||||
<path d="M65.3999 174.397L61.8799 164.597L61.3999 163.197L61.1999 163.517C64.2399 160.677 67.2399 157.757 69.9599 154.637C70.7199 153.797 71.4399 152.877 72.0799 151.917L70.2799 152.437L74.44 165.437L75.04 167.277L75.3999 166.837L65.3199 173.677L63.8799 174.637C63.6799 174.757 63.3199 175.077 63.7199 175.197C64.1199 175.317 64.76 174.997 65.04 174.797L75.1199 167.957L76.5599 166.997C76.6799 166.917 76.9599 166.757 76.92 166.557L72.7599 153.597L72.1599 151.757C71.9999 151.277 70.5199 152.037 70.3599 152.277C69.1999 154.197 67.4799 155.877 65.9199 157.517C64.2799 159.237 62.5599 160.957 60.7999 162.597C60.4399 162.957 60.0799 163.317 59.6799 163.637C59.5999 163.717 59.4399 163.837 59.4799 163.957L62.9999 173.757L63.4799 175.157C63.7199 175.557 65.5999 174.877 65.3999 174.397Z" fill="#3D3D3D"/>
|
||||
<path d="M69.1598 166.557C69.1598 166.557 68.0798 163.717 68.1998 163.397C68.3198 163.077 75.2798 157.277 75.2798 157.277C75.2798 157.277 81.9998 169.277 81.6398 170.637C81.2798 171.997 71.0798 184.317 69.6798 184.557C68.2798 184.797 62.8398 175.397 62.8398 174.557C62.8398 173.717 69.1598 166.557 69.1598 166.557Z" fill="#CECECE"/>
|
||||
<path d="M70.0802 166.357C69.7602 165.517 69.4802 164.717 69.2402 163.837C69.2002 163.757 69.2002 163.637 69.1602 163.557C69.1602 163.517 69.1602 163.477 69.1602 163.437C69.1202 163.357 69.2002 163.397 69.1602 163.397C69.1602 163.397 69.0002 163.597 69.1602 163.437C69.3202 163.277 69.6002 163.037 69.8002 162.837C71.4002 161.397 73.0402 160.037 74.6802 158.677L76.1202 157.477L74.2802 157.437C76.0802 160.677 77.8402 163.917 79.4002 167.277C79.8002 168.117 80.1602 168.957 80.4402 169.837C80.5202 170.037 80.5602 170.277 80.6002 170.477C80.6002 170.517 80.6002 170.557 80.6002 170.597C80.6002 170.637 80.6402 170.437 80.6002 170.557C80.5602 170.677 80.5202 170.717 80.4802 170.797C79.7202 172.277 78.5202 173.557 77.4802 174.917C75.9202 176.877 74.3202 178.757 72.6402 180.637C71.9602 181.397 71.2402 182.197 70.4802 182.917C70.2002 183.197 69.9202 183.437 69.6402 183.717L69.2802 183.997C69.4802 183.837 69.1602 184.037 69.1202 184.117C68.9602 184.237 69.2402 184.077 69.2002 184.077C69.3202 184.077 69.4402 184.037 69.5602 183.997C69.6802 183.997 69.8402 183.997 69.9602 184.037C69.8402 183.997 70.1602 184.117 70.0402 184.077C70.0402 184.077 70.0002 184.037 69.9602 184.037C69.8002 183.997 70.0402 184.077 69.9602 184.037C69.6802 183.837 69.4002 183.597 69.2002 183.317C68.5202 182.517 67.8802 181.637 67.2802 180.757C66.0002 178.957 64.8802 177.037 63.9202 175.037C63.8802 174.917 63.8002 174.797 63.7602 174.677C63.7602 174.637 63.7202 174.597 63.7202 174.517C63.7602 174.597 63.7602 174.637 63.7202 174.517C63.6802 174.437 63.7202 174.477 63.6802 174.557C63.6802 174.517 63.7202 174.477 63.7202 174.437C63.8002 174.317 63.8402 174.197 63.9202 174.077C64.4402 173.277 65.0002 172.557 65.6002 171.837C66.9202 170.197 68.2802 168.597 69.6402 167.037L69.9202 166.717C70.2402 166.397 69.8802 166.117 69.5202 165.997C69.1202 165.877 68.4802 165.917 68.1602 166.237C67.0002 167.517 65.8802 168.837 64.8002 170.157C64.0402 171.077 63.2802 171.997 62.5602 172.957C62.2402 173.357 61.6002 174.037 61.6802 174.597C61.7602 175.277 62.2802 176.037 62.6002 176.597C63.1602 177.677 63.8002 178.717 64.4402 179.757C65.0802 180.837 65.8002 181.877 66.5602 182.877C67.0802 183.557 67.6802 184.397 68.4802 184.797C70.1202 185.637 71.5602 183.837 72.6002 182.797C74.3202 180.997 75.9602 179.117 77.5202 177.197C78.9602 175.437 80.4002 173.677 81.6802 171.837C81.9602 171.437 82.4002 170.957 82.4402 170.437C82.4802 169.837 82.1602 169.197 81.9602 168.637C81.0402 166.437 80.0402 164.317 78.9202 162.237C78.0402 160.557 77.1202 158.877 76.2002 157.197L76.0402 156.917C75.7202 156.357 74.6002 156.517 74.2002 156.877C72.9202 157.917 71.6402 158.997 70.4002 160.077C69.5602 160.797 68.7602 161.477 67.9602 162.197C67.6002 162.557 66.9602 162.917 67.0402 163.517C67.2802 164.557 67.6002 165.597 68.0402 166.597C68.4402 167.397 70.4002 167.157 70.0802 166.357Z" fill="#3D3D3D"/>
|
||||
<path d="M20.8799 83.9177C19.3599 84.2377 17.8799 84.7576 16.4799 85.4776C13.6399 86.8776 11.0799 88.9977 9.63989 91.8377C7.43989 96.1177 8.15989 101.118 9.75989 105.478C11.9199 111.398 15.6799 116.598 19.9999 121.118C24.0799 125.398 28.7199 129.118 33.3999 132.718C37.4399 135.798 41.5999 138.718 45.3199 142.198C47.8399 144.558 50.5999 147.518 50.9199 151.118C51.0399 152.758 50.6799 154.358 49.9199 155.798C49.4799 156.598 48.7999 157.398 47.7999 157.438C47.6399 157.438 47.4799 157.438 47.3199 157.398C47.1599 157.318 47.4799 157.438 47.3199 157.398C47.1999 157.358 47.5599 157.518 47.3999 157.438C47.4799 157.478 47.5599 157.518 47.6799 157.598C47.5199 157.518 47.8399 157.718 47.7599 157.638L47.6399 157.558C47.5599 157.478 47.7199 157.638 47.5999 157.518C47.4799 157.398 47.3599 157.278 47.2399 157.158C46.8399 156.638 46.4799 155.918 46.6399 155.238C46.7999 154.438 47.6399 154.238 48.3599 154.238C50.0799 154.238 51.7599 155.038 53.1999 155.758C54.5199 156.398 55.8399 157.158 57.1199 157.958C57.2799 158.038 58.0799 158.558 58.2799 158.438C58.4799 158.318 57.8399 157.998 57.7599 157.918C55.1599 156.318 52.4799 154.798 49.5999 153.798C48.4399 153.398 46.8799 152.878 45.6799 153.398C43.9599 154.158 45.3999 156.318 46.3199 157.038C47.2399 157.758 48.5599 158.558 49.7599 158.358C50.8399 158.158 51.5199 157.158 51.9199 156.238C52.5999 154.718 52.8399 153.038 52.5999 151.358C52.2799 149.678 51.5599 148.118 50.5199 146.798C47.8399 143.078 43.9999 140.198 40.3999 137.438C35.7999 133.878 31.0799 130.478 26.7199 126.638C22.0799 122.558 17.7599 117.998 14.5999 112.638C11.7199 107.838 9.19989 101.878 10.2799 96.1576C10.9599 92.5976 13.1599 89.6377 16.1599 87.6377C17.9999 86.3977 20.0799 85.4776 22.2399 84.9576L22.5999 84.8776C22.7999 84.8376 22.1199 84.3976 22.0799 84.3576C21.7999 84.1976 21.2799 83.7976 20.9599 83.8776L20.8799 83.9177Z" fill="#3D3D3D"/>
|
||||
<path d="M44.4 38.0001C44.48 37.3201 44.32 36.6401 44.4 35.9601C44.4 35.7201 44.48 35.5201 44.64 35.3201C44.72 35.2401 44.68 35.2801 44.8 35.2001C44.68 35.2401 44.96 35.2001 44.84 35.2001C45.92 35.1201 46.72 36.1601 47.32 37.0001C47.4 37.0801 47.44 37.1601 47.48 37.2801C47.52 37.4001 47.56 37.6001 47.6 37.6801C47.72 37.8801 48.32 37.5201 48.32 37.4401C48.32 37.3601 48.2 37.3201 48.2 37.2401C48.04 36.6801 48.76 36.2401 49.12 35.9601C49.48 35.6801 49.72 35.5201 50.16 35.7601C50.72 36.0801 51.08 36.7201 51.36 37.2401C51.6 37.6401 52.12 37.7601 52.52 37.5601C52.8 37.4801 53.48 37.0401 53.28 36.6001C52.88 35.8401 52.44 35.0401 51.68 34.5601C50.84 34.0401 49.76 34.0001 48.88 34.4401C48.08 34.8001 47.4 35.3201 46.84 35.9601C46.32 36.6001 46 37.6001 46.64 38.2801C47.28 38.9601 48.68 38.8001 49.28 38.0801C49.88 37.3601 49.56 36.6001 49.08 35.9601C48.12 34.6001 46.76 33.4401 45 33.6801C44.04 33.7601 43.2 34.3601 42.72 35.2001C42.28 36.1201 42.6 37.1201 42.48 38.1201C42.36 39.1201 44.28 38.8801 44.4 38.0001Z" fill="#3D3D3D"/>
|
||||
<path d="M64.4401 25.3226C64.4401 24.7226 64.4401 24.0026 64.8801 23.5226C65.0001 23.4026 65.1201 23.2826 65.2801 23.2026L65.4001 23.1626C65.6401 23.0826 65.5201 23.0826 65.0801 23.2426C65.2001 23.3226 65.4001 23.3226 65.5201 23.4026C65.6401 23.4826 65.7601 23.5626 65.8801 23.6426C66.2401 24.0426 66.4801 24.5226 66.6401 25.0026C66.7201 25.2826 66.8001 25.5626 66.8801 25.8426C66.9201 26.0026 66.9201 26.5226 66.7201 26.6026L67.9201 26.3226C68.2001 26.2826 67.8801 26.1626 67.8001 26.0026C67.7201 25.8826 67.7201 25.7226 67.6801 25.6026C67.6801 25.2426 67.8001 24.9226 68.0001 24.6826C68.4401 24.2026 69.0001 23.8026 69.6001 23.5226C69.6801 23.4826 69.7201 23.4826 69.8001 23.4426C69.2401 23.5226 69.0801 23.5226 69.3201 23.5626C69.4801 23.5626 69.6001 23.6026 69.7601 23.6426C70.0401 23.7226 70.2801 23.9226 70.4801 24.2026C70.7601 24.7626 70.9201 25.3626 70.8801 25.9626C70.8801 26.0826 72.8401 25.8826 72.8401 25.5626C72.8001 24.8826 72.7601 24.0826 72.2401 23.5626C71.7201 23.0426 70.8801 23.0026 70.1601 23.0826C69.1601 23.2026 68.2001 23.5226 67.3201 24.0426C66.6801 24.4426 66.0001 24.8426 65.7601 25.6026C65.6401 25.9226 65.6801 26.2426 65.8801 26.5226C66.1201 26.8026 66.5201 26.9226 66.8801 26.8426C67.6401 26.7626 68.9201 26.6026 68.8801 25.6026C68.8001 24.9226 68.6001 24.2426 68.2401 23.6426C67.8801 23.0426 67.2801 22.6826 66.6001 22.7226C65.5201 22.6826 64.4001 22.9626 63.4801 23.5226C62.7201 24.0426 62.6001 24.9226 62.6001 25.7626C62.6001 25.9226 63.5201 25.7226 63.6001 25.7226C63.6801 25.7226 64.4401 25.5226 64.4401 25.3226Z" fill="#3D3D3D"/>
|
||||
<path d="M89.7998 27.1581C95.4398 25.6381 100.28 22.0381 103.36 17.0781L113.76 22.2381C113.76 22.2381 108.12 30.9181 99.9198 32.9181L89.7998 27.1581Z" fill="#CECECE"/>
|
||||
<path d="M90.1599 28.0403C91.2799 27.7603 92.3599 27.4003 93.3999 26.9203C95.9599 25.8003 98.3199 24.2003 100.4 22.2803C101.88 20.8803 103.2 19.2403 104.24 17.4803L102.96 17.8803L112.12 22.4003L113.4 23.0403L112.84 21.8003C113.08 21.4403 112.88 21.7203 112.8 21.8403C112.64 22.0403 112.48 22.2803 112.32 22.4803C111.76 23.2403 111.16 23.9603 110.56 24.6403C108.76 26.6803 106.68 28.4803 104.4 29.9203C102.88 30.8403 101.28 31.5603 99.5599 32.0003L100.32 32.0403L91.4399 27.0403L90.1999 26.3203C89.7199 26.0803 89.1599 26.2803 88.9199 26.7203C88.7199 27.2003 88.9599 27.7603 89.4399 27.9603L98.5599 33.0803C98.9199 33.3203 99.3199 33.5203 99.7199 33.7203C100.16 33.8803 100.72 33.6403 101.16 33.5203C101.6 33.4003 101.96 33.2803 102.36 33.1203C103.16 32.8003 103.96 32.4403 104.72 32.0403C107.32 30.5603 109.64 28.6803 111.64 26.4803C112.76 25.2803 113.8 24.0003 114.72 22.6003C115 22.1603 114.56 21.5603 114.16 21.3603L105.04 16.8403L103.76 16.2003C103.28 15.9603 102.72 16.1603 102.48 16.6003C100.8 19.2803 98.5599 21.6003 95.9199 23.3203C94.2399 24.4403 92.4399 25.3203 90.5199 25.9203C90.1599 26.0403 89.7999 26.1203 89.4399 26.2003C88.9999 26.3203 88.7599 26.8003 88.8799 27.2403C88.8799 27.2803 88.9199 27.3203 88.9199 27.3603C89.1199 27.9203 89.6799 28.1603 90.1599 28.0403Z" fill="#3D3D3D"/>
|
||||
<path d="M109.04 38.5209C112.64 42.8809 114.56 48.4009 114.4 54.0409C114.36 55.6809 114.12 57.2809 113.76 58.8809C113.48 59.9609 115.28 60.6009 115.56 59.3609C116.96 53.4009 116.12 47.1609 113.28 41.7209C112.48 40.2409 111.56 38.8009 110.48 37.5209C110.16 37.1609 109.68 36.8809 109.2 37.1609C108.76 37.5209 108.72 38.0809 109.04 38.5209Z" fill="#3D3D3D"/>
|
||||
<path d="M112.56 62.0805V62.1605L112.52 61.9605C112.56 62.2805 112.56 62.6405 112.48 63.0005L112.52 62.8005C112.48 63.0405 112.36 63.2805 112.24 63.5205C112.16 63.7205 112.2 63.9205 112.32 64.0805C112.48 64.2805 112.68 64.4005 112.92 64.4405C113.16 64.5205 113.44 64.4805 113.68 64.4005C113.88 64.3205 114.04 64.1605 114.16 63.9605C114.32 63.6005 114.44 63.2405 114.52 62.8805C114.56 62.5205 114.56 62.1205 114.48 61.7205C114.44 61.5205 114.2 61.3205 114.04 61.2405C113.8 61.1205 113.52 61.0805 113.28 61.1205C113.04 61.1605 112.84 61.2805 112.68 61.4405L112.56 61.6005C112.52 61.8005 112.52 61.9605 112.56 62.0805Z" fill="#3D3D3D"/>
|
||||
<path d="M183.36 54.8404C187.92 59.5604 189.76 66.2804 189.76 72.6804C189.72 76.4804 189.2 80.2404 188.28 83.9204C187.48 87.4404 186.4 90.8804 185 94.2004C183.72 97.2004 181.96 100.12 179.44 102.24C177.2 104.16 174.28 105.6 171.28 105.48C168.64 105.4 166.12 104.12 164.52 102C163.72 100.96 163.28 99.7204 163.24 98.4404C163.24 97.8804 163.4 97.3204 163.68 96.8404C163.92 96.4804 164.24 96.2004 164.6 96.2404C165.2 96.3604 165.76 96.9204 166.16 97.3604C166.6 97.8404 166.96 98.3604 167.24 98.9204C167.84 100.12 168.04 101.52 167.88 102.84C167.44 105.56 165.32 107.68 162.64 108.2C161.96 108.32 161.32 108.32 160.64 108.24C160.2 108.16 159.8 108.44 159.72 108.88C159.72 108.92 159.72 108.96 159.72 109C159.72 109.52 160.28 109.8 160.72 109.88C164 110.32 167.24 108.72 168.96 105.88C170.52 103 170.16 99.4804 168.12 96.9604C167.04 95.6404 165.32 94.2404 163.52 94.7604C162.08 95.2004 161.44 96.7604 161.36 98.1204C161.28 99.6404 161.92 101.2 162.72 102.44C163.64 103.76 164.84 104.84 166.24 105.64C169.24 107.28 172.76 107.6 176 106.4C179.36 105.24 182.16 102.8 184.2 99.9604C186.4 96.8004 187.8 93.1604 188.92 89.5204C190.2 85.5204 191.12 81.3604 191.6 77.2004C192.4 69.8004 191.2 61.8404 186.56 55.8004C186 55.1204 185.44 54.4404 184.8 53.8004C183.96 53.0404 182.44 53.9204 183.36 54.8404Z" fill="#3D3D3D"/>
|
||||
<path d="M183 44.6404C183 44.6404 188.32 41.3604 187.96 41.0404C187.6 40.7204 168.6 35.1604 168.48 36.8804C168.36 38.6004 172.32 48.5604 173.28 48.5204C174.24 48.4804 176.88 47.3604 176.88 47.3604C176.88 47.3604 181.44 52.4804 181.88 52.3204C182.32 52.1604 183 44.6404 183 44.6404Z" fill="white"/>
|
||||
<path d="M183.6 45.4006C184.84 44.6406 186.08 43.8406 187.28 43.0006C187.8 42.6406 188.6 42.2006 188.88 41.5606C189.2 40.7606 188.44 40.2406 187.84 40.0406C186.8 39.6406 185.72 39.3606 184.64 39.0406C182.84 38.5206 181.04 38.0006 179.24 37.5606C177.36 37.0806 175.44 36.6006 173.56 36.2406C172.16 35.8806 170.72 35.7206 169.32 35.6406C168.84 35.6006 168.36 35.7206 167.96 35.9606C167.48 36.3606 167.6 37.0006 167.72 37.5606C168.16 39.4006 168.72 41.2406 169.48 42.9606C170.12 44.7606 170.96 46.5206 171.96 48.2006C172.32 48.7606 172.8 49.3606 173.52 49.4006C174.04 49.3606 174.56 49.2806 175.08 49.0806C175.64 48.8806 176.24 48.6806 176.76 48.4806C177 48.3606 177.28 48.2806 177.52 48.1606L176.24 47.7606C176.88 48.4806 177.52 49.2006 178.16 49.8806C179.04 50.8806 179.96 51.8006 180.96 52.6406C181.4 53.0006 182 53.4006 182.56 53.0806C182.96 52.8406 183.04 52.2806 183.16 51.8806C183.4 50.6006 183.6 49.2806 183.68 47.9606C183.8 46.9206 183.88 45.9206 183.96 44.8806C184.04 43.8406 182.2 43.1606 182.12 44.3606C181.96 46.3606 181.76 48.4006 181.44 50.4006C181.4 50.6406 181.36 50.9206 181.32 51.1606C181.32 51.2806 181.28 51.3606 181.24 51.4806C181.28 51.2406 181.24 51.5206 181.2 51.5606C181.16 51.6006 181.16 51.6806 181.16 51.7206C181.16 51.6006 181.52 51.4006 181.76 51.4006C181.84 51.4006 182.28 51.6006 182.04 51.4406C181.88 51.3606 182.24 51.6006 182 51.4006C181.12 50.6406 180.28 49.8006 179.48 48.9206L178.72 48.1206C178.6 48.0006 178.88 48.2806 178.68 48.0806L178.52 47.8806L178.2 47.5606C178 47.3606 177.8 47.1206 177.6 46.9206C177.32 46.4806 176.76 46.3206 176.32 46.5206C175.64 46.8006 175 47.0406 174.24 47.2806C174 47.3606 173.8 47.4006 173.56 47.4806C173.44 47.5206 173.36 47.5206 173.24 47.5606C173.2 47.5606 173.16 47.5606 173.12 47.5606C173 47.6006 173.2 47.5606 173.12 47.5606C173.24 47.6006 173.36 47.6406 173.48 47.6406C173.4 47.6006 173.72 47.8406 173.6 47.7206C173.48 47.6006 173.6 47.7206 173.64 47.8006C173.6 47.7606 173.56 47.7206 173.52 47.6806L173.32 47.4006L173.2 47.2006C173.16 47.1606 173.04 46.9606 173.12 47.0806C173.2 47.2006 173.04 46.9606 173.04 46.9206L172.92 46.6806C172.84 46.5206 172.72 46.3206 172.64 46.1606C172.24 45.3206 171.84 44.4806 171.48 43.6006C171.08 42.6806 170.72 41.7206 170.4 40.8006C170.12 40.0006 169.84 39.1606 169.64 38.4806C169.56 38.1606 169.48 37.8406 169.4 37.5206C169.36 37.4006 169.36 37.2806 169.36 37.1606C169.32 36.9206 169.32 37.2806 169.36 37.0806C169.32 37.1606 169.32 37.2806 169.24 37.3606C169.24 37.3606 169.04 37.5206 169.2 37.4006C169.04 37.4406 169.04 37.5206 169.2 37.4006C169.24 37.4006 169.28 37.4006 169.32 37.4006C169.48 37.3606 169.16 37.4006 169.28 37.4006C169.76 37.4006 170.24 37.4406 170.72 37.4806L171.16 37.5206L171.4 37.5606L171.56 37.6006L171.76 37.6406L172.04 37.6806L172.6 37.7606C174.32 38.0806 176.04 38.4806 177.72 38.9206C180.76 39.6806 183.76 40.4806 186.76 41.4406L187.32 41.6406L187.52 41.7206C187.6 41.7606 187.76 41.7606 187.56 41.7206C187.36 41.6806 187.48 41.6806 187.56 41.7206C187.36 41.6006 187.32 41.4806 187.2 41.0806C187.72 42.6806 187.08 40.3206 187.04 40.6006C187.08 40.3206 187.16 40.4406 187.08 40.5206C187 40.6006 186.92 40.6406 186.88 40.7206L186.72 40.8406C186.64 40.9206 186.76 40.8006 186.76 40.8006L186.6 40.9206C185.36 41.8806 184 42.7606 182.64 43.6006L182.32 43.8006C181.44 44.4006 182.68 45.9606 183.6 45.4006Z" fill="#3D3D3D"/>
|
||||
<path d="M171.88 39.4807C171.88 39.4807 180.6 45.4407 180.88 45.8807C181.16 46.3207 181.92 52.3207 181.92 52.3207" fill="white"/>
|
||||
<path d="M171.96 40.2817C173.88 41.6017 175.8 42.9217 177.72 44.2817C178.32 44.6817 178.88 45.1217 179.48 45.5217L179.64 45.6417C179.76 45.7217 179.48 45.5217 179.68 45.6817L180 45.9217C180.16 46.0417 180.32 46.1617 180.48 46.3217C180.64 46.4817 180.84 46.6817 180.56 46.4017C180.56 46.4017 180.28 45.9217 180.32 46.0417C180.16 45.7217 180.28 45.8817 180.28 45.9617C180.28 46.0417 180.32 46.1617 180.36 46.2417C180.44 46.6017 180.44 46.6417 180.48 46.9617C180.52 47.2817 180.6 47.7217 180.68 48.0817C180.88 49.3617 181.04 50.6817 181.24 51.9617C181.28 52.4417 181.56 52.8817 182 53.1617C182.36 53.3617 182.68 53.2017 182.64 52.7617C182.48 51.6017 182.32 50.4417 182.16 49.2817C182.04 48.4817 181.92 47.6817 181.76 46.8817C181.72 46.3217 181.48 45.8017 181.16 45.3617C180.88 45.0417 180.56 44.8017 180.2 44.5617C179.6 44.1217 179.04 43.7217 178.44 43.2817C177.08 42.3217 175.76 41.4017 174.4 40.4417L171.88 38.6817C171.52 38.4417 171.24 38.6817 171.24 39.0817C171.24 39.6017 171.52 40.0417 171.96 40.2817Z" fill="#3D3D3D"/>
|
||||
<path d="M174.6 48.8007L180.36 46.8807L181.2 46.6007C181.68 46.4407 181.96 45.9207 181.8 45.4407C181.6 44.9607 181 44.9207 180.56 45.0807L174.8 46.9607L173.96 47.2407C173.48 47.4007 173.2 47.9207 173.36 48.4007C173.6 48.9207 174.16 48.9207 174.6 48.8007Z" fill="#3D3D3D"/>
|
||||
<path d="M172.52 40.082L181.8 44.082L183.12 44.642C183.52 44.802 183.04 44.282 183 44.242C182.68 43.922 182.28 43.642 181.88 43.442L172.6 39.442L171.28 38.882C170.88 38.722 171.36 39.242 171.4 39.322C171.72 39.642 172.08 39.922 172.52 40.082Z" fill="#3D3D3D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 54 KiB |
@@ -0,0 +1,46 @@
|
||||
<svg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Waiting 2 1">
|
||||
<g id="glasshour">
|
||||
<g id="hourglass">
|
||||
<path id="Vector" d="M73.2481 86.2559C73.2481 86.2559 68.7841 127.488 117.552 153.696C117.552 153.696 79.3441 173.904 75.6961 220.704H168.384C168.384 220.704 171.648 183.84 125.28 153.504C125.28 153.504 163.104 140.592 164.736 86.3039L73.2481 86.2559Z" fill="white"/>
|
||||
<path id="Vector_2" d="M72.0959 86.496C71.9519 87.936 71.9519 89.376 71.9999 90.864C72.1439 94.656 72.6239 98.448 73.4879 102.144C74.7359 107.616 76.6079 112.848 79.1519 117.84C82.4159 124.224 86.5439 130.128 91.4399 135.312C97.8239 141.984 105.12 147.744 113.136 152.304C114.24 152.976 115.392 153.6 116.544 154.224L117.12 153.312C115.728 154.08 114.384 154.896 113.04 155.808C109.728 158.064 106.56 160.512 103.536 163.2C99.2639 167.04 95.3759 171.216 91.8719 175.776C82.5119 187.92 76.6559 202.368 74.8799 217.584C74.7359 218.688 74.6399 219.84 74.5439 220.944C74.5439 221.184 74.7839 221.328 75.0239 221.328H167.712C168.192 221.328 169.44 221.088 169.536 220.416C169.632 219.072 169.632 217.728 169.488 216.384C169.248 212.88 168.72 209.376 167.856 205.968C166.56 200.784 164.688 195.792 162.24 191.04C158.976 184.704 154.992 178.8 150.288 173.424C144.192 166.512 137.232 160.368 129.6 155.136C128.496 154.368 127.44 153.648 126.336 152.928L125.472 153.984C126.864 153.456 128.256 152.88 129.552 152.16C132.864 150.432 135.984 148.416 138.912 146.112C143.184 142.704 147.024 138.816 150.336 134.448C154.512 128.88 157.872 122.736 160.32 116.208C163.488 107.76 165.12 98.88 165.696 89.904C165.792 88.608 165.84 87.312 165.888 86.016C165.888 85.728 165.648 85.632 165.408 85.632H73.9199C73.3439 85.584 72.7679 85.824 72.3359 86.208C72.0479 86.496 72.0959 86.928 72.5759 86.928H162.672C163.056 86.976 163.488 86.976 163.872 86.928C163.92 86.928 163.968 86.928 164.016 86.928L163.536 86.544C163.248 95.76 161.904 104.928 159.024 113.712C156.816 120.48 153.648 126.864 149.568 132.72C146.448 137.184 142.704 141.216 138.528 144.72C136.944 146.064 135.264 147.312 133.488 148.464C132.72 148.944 132 149.424 131.232 149.904L131.04 150L130.848 150.096L130.32 150.384L129.312 150.912C128.304 151.44 127.248 151.968 126.192 152.448C125.952 152.544 126.048 152.496 126.192 152.448L125.904 152.544L125.472 152.736L124.992 152.928H124.944C124.8 152.976 123.552 153.6 124.08 153.984C132.096 159.12 139.44 165.264 145.92 172.176C150.912 177.504 155.184 183.408 158.688 189.792C161.328 194.64 163.44 199.824 164.928 205.152C165.936 208.752 166.608 212.448 166.944 216.192C167.04 217.248 167.088 218.256 167.088 219.408C167.088 219.888 167.04 220.416 167.04 220.896V220.944L168.864 220.032H77.7599C77.3279 219.984 76.9439 219.984 76.5119 220.032C76.4639 220.032 76.4159 220.032 76.3679 220.032L76.8479 220.416C77.4719 212.112 79.3439 203.904 82.3679 196.128C84.9599 189.552 88.3679 183.312 92.4959 177.6C95.9039 172.896 99.7439 168.528 103.968 164.592C106.992 161.76 110.16 159.168 113.568 156.864C114.576 156.144 115.632 155.472 116.736 154.8L117.312 154.464C116.928 154.704 117.36 154.416 117.504 154.368C117.648 154.32 117.84 154.176 118.032 154.08L118.08 154.032C118.224 153.936 119.088 153.36 118.656 153.12C110.304 148.656 102.48 143.184 95.7599 136.512C90.4799 131.328 86.0159 125.424 82.4639 118.944C79.7279 113.904 77.6159 108.576 76.2239 103.056C75.2159 99.216 74.6399 95.28 74.3999 91.296C74.3519 90.096 74.3039 88.896 74.3519 87.696C74.3519 87.168 74.4479 86.592 74.4479 86.064V86.016C74.4479 85.2 72.1919 85.776 72.0959 86.496Z" fill="#CECECE"/>
|
||||
<path id="Vector_3" d="M69.5999 79.9199C69.5999 79.9199 168.24 80.3039 168.432 82.2239C168.624 84.1439 170.496 87.2639 168.432 87.8879C166.368 88.5119 74.7839 87.4559 71.2319 86.2559C67.6799 85.0559 69.5999 79.9199 69.5999 79.9199Z" fill="white"/>
|
||||
<path id="Vector_4" d="M69.84 80.8319H72.528C74.976 80.8319 77.376 80.8319 79.824 80.8799C83.424 80.8799 87.024 80.9279 90.576 80.9759C94.944 81.0239 99.312 81.0719 103.68 81.0719C108.432 81.1199 113.184 81.1679 117.984 81.2639C122.784 81.3119 127.584 81.4079 132.432 81.5039C136.896 81.5999 141.36 81.6959 145.824 81.7919C149.568 81.8879 153.312 81.9839 157.056 82.1279C159.696 82.2239 162.384 82.3199 165.024 82.5599L165.744 82.6079L166.032 82.6559C166.272 82.6559 165.792 82.6559 165.936 82.6559H166.08C166.416 82.7039 166.8 82.7519 167.136 82.7999C167.376 82.8479 167.616 82.8959 167.856 82.9439C168.096 82.9919 168 82.9919 167.808 82.8959C168.048 82.9919 167.856 82.9439 167.664 82.7999C167.712 82.8479 167.424 82.6079 167.424 82.5119C167.328 82.3679 167.232 81.9839 167.28 82.3679C167.376 83.0879 167.568 83.7599 167.808 84.4319C168.048 85.0559 168.144 85.6799 168.192 86.3519C168.192 86.5919 168.048 86.8319 167.808 86.9279C167.664 87.0239 167.76 86.9279 167.904 86.9279C167.808 86.9279 167.712 86.9279 167.664 86.9279L166.896 86.9759C164.832 87.0719 162.768 87.0719 160.704 87.0719C157.296 87.0719 153.84 87.0719 150.432 87.0719C146.064 87.0719 141.696 87.0239 137.328 86.9759C132.48 86.9279 127.632 86.8799 122.736 86.7839C117.744 86.7359 112.8 86.6399 107.808 86.5439C103.152 86.4479 98.544 86.3519 93.888 86.2559C90 86.1599 86.112 86.0639 82.224 85.9199C79.536 85.8239 76.8 85.7279 74.112 85.5359C73.68 85.5359 73.248 85.4879 72.768 85.4399L72.192 85.3919C72.048 85.3919 72.576 85.4399 72.24 85.3919H72L71.328 85.2959H71.232C70.992 85.2479 71.424 85.2959 71.424 85.3439C71.424 85.3919 71.136 85.2479 71.088 85.1999C70.896 85.1039 71.184 85.2959 71.04 85.1519L70.848 85.0079C70.704 84.9119 70.608 84.7679 70.512 84.6239C69.792 83.4239 70.08 81.5039 70.56 80.2559C70.992 79.1519 68.784 78.1919 68.352 79.3439C67.728 81.0719 67.488 83.1839 68.304 84.8639C68.976 86.1599 70.224 87.0239 71.664 87.1679C73.584 87.4079 75.552 87.5039 77.472 87.5519C80.784 87.6959 84.096 87.7919 87.36 87.8879C91.68 88.0319 96.048 88.1279 100.368 88.2239C105.312 88.3199 110.208 88.4159 115.152 88.5119C120.192 88.6079 125.232 88.6559 130.272 88.7039C135.024 88.7519 139.776 88.7999 144.528 88.8479C148.512 88.8959 152.544 88.8959 156.528 88.8959C159.36 88.8959 162.144 88.8959 164.976 88.8479C165.792 88.8479 166.608 88.7999 167.424 88.7999C167.904 88.7999 168.336 88.7519 168.816 88.6559C170.496 88.2239 170.544 86.5439 170.208 85.1519C170.016 84.3839 169.776 83.6639 169.584 82.9439C169.536 82.5599 169.44 82.1279 169.296 81.7919C168.912 81.1679 168.144 80.9759 167.52 80.8799C165.648 80.5919 163.728 80.4479 161.808 80.3999C158.64 80.2079 155.472 80.1119 152.256 80.0159C148.128 79.8719 144 79.7759 139.824 79.6799C135.072 79.5839 130.368 79.4879 125.616 79.4399C120.672 79.3439 115.776 79.2959 110.832 79.2479C106.128 79.1999 101.424 79.1519 96.72 79.1039C92.592 79.0559 88.464 79.0079 84.336 79.0079L74.976 78.9599L69.792 78.9119H69.12C68.688 78.8639 68.256 79.1999 68.208 79.6319C68.208 79.7279 68.208 79.7759 68.208 79.8719C68.688 80.4959 69.216 80.8799 69.84 80.8319Z" fill="#CECECE"/>
|
||||
<path id="Vector_5" d="M123.6 160.656C124.272 158.064 123.6 150.432 123.6 150.432C137.232 142.896 146.88 127.68 146.88 127.68C135.36 128.112 121.488 124.656 108.192 116.976C94.8958 109.296 83.9038 113.52 83.9038 113.52C91.7758 137.472 119.808 150.912 119.808 150.912C119.808 150.912 118.56 167.904 119.808 166.08C121.056 164.256 121.248 159.504 121.824 161.328C122.4 163.152 123.264 161.952 123.6 160.656Z" fill="#CECECE"/>
|
||||
<path id="Vector_6" d="M124.704 161.04C125.184 159.072 125.04 156.912 124.944 154.896C124.896 153.456 124.8 152.016 124.704 150.576L124.512 151.104C129.696 148.224 134.256 144.384 138.336 140.112C141.312 136.992 144.096 133.68 146.592 130.176C147.072 129.504 147.504 128.88 147.936 128.208C148.416 127.488 147.024 126.72 146.448 126.72C136.368 127.104 126.288 124.56 117.12 120.528C114.48 119.376 111.936 118.08 109.44 116.688C106.992 115.248 104.448 114.048 101.76 113.088C97.728 111.696 93.408 111.12 89.136 111.408C87.12 111.504 85.152 111.888 83.232 112.512C82.944 112.56 82.8 112.848 82.848 113.136C85.872 122.304 91.776 130.176 98.784 136.8C104.016 141.696 109.776 145.968 115.968 149.52C117.216 150.24 118.464 150.96 119.76 151.584L118.752 150.384C118.512 153.744 118.32 157.056 118.224 160.416C118.224 161.424 118.176 162.384 118.224 163.392C118.224 164.112 118.272 164.784 118.416 165.504C118.608 166.368 119.616 167.376 120.528 166.896C120.816 166.704 121.056 166.368 121.2 166.032C121.488 165.408 121.728 164.736 121.872 164.064C122.064 163.392 122.16 162.72 122.352 162.048C122.4 161.808 122.448 161.808 122.544 161.568C122.544 161.472 122.544 161.52 122.544 161.568C122.16 162 121.632 161.856 120.912 161.136L120.816 160.992C120.816 161.04 120.864 161.088 120.864 161.088C120.864 160.944 120.864 161.136 120.912 161.232C121.248 162.192 122.256 163.344 123.408 163.008C124.224 162.816 124.512 161.76 124.704 161.04C124.944 160.128 122.784 159.12 122.544 160.176C122.448 160.512 122.352 160.8 122.16 161.088C122.112 161.136 122.064 161.232 122.016 161.28C121.824 161.808 123.12 161.28 123.168 161.712C123.168 161.712 123.12 161.568 123.072 161.568C122.928 160.896 122.448 160.32 121.824 160.032C120.528 159.552 120.336 160.8 120.096 161.76C119.808 162.912 119.616 164.112 119.04 165.12C118.992 165.216 118.944 165.264 118.896 165.36C118.848 165.408 119.04 165.264 118.944 165.312C119.568 165.168 120.24 165.456 120.624 165.984C120.624 165.888 120.576 165.744 120.576 165.648C120.576 165.552 120.528 165.408 120.528 165.312C120.528 165.024 120.528 165.216 120.528 164.976C120.528 164.592 120.48 164.208 120.48 163.824C120.48 162.864 120.48 161.952 120.528 160.992C120.576 158.928 120.672 156.864 120.816 154.8C120.864 153.6 120.96 152.4 121.056 151.2C121.104 150.624 120.48 150.24 120.048 150C120.576 150.24 120.24 150.096 120.096 150.048L119.52 149.76C118.848 149.376 118.128 149.04 117.456 148.656C115.056 147.312 112.704 145.824 110.448 144.288C109.728 143.76 109.296 143.472 108.48 142.896C107.664 142.32 106.896 141.744 106.128 141.12C104.544 139.872 103.008 138.576 101.52 137.232C98.208 134.304 95.232 131.04 92.544 127.536C89.328 123.36 86.832 118.656 85.104 113.664L84.72 114.288C86.16 113.76 87.696 113.472 89.232 113.328C93.168 112.896 97.104 113.28 100.896 114.48C103.488 115.296 105.984 116.4 108.336 117.792C110.88 119.232 113.424 120.528 116.064 121.728C120.96 123.936 126.096 125.664 131.376 126.912C136.656 128.16 142.032 128.688 147.456 128.544L145.968 127.056C144.72 128.976 143.328 130.848 141.888 132.672C138.672 136.752 135.072 140.496 131.088 143.856C128.496 146.064 125.712 147.984 122.784 149.664C122.592 149.76 122.592 150.048 122.592 150.192C122.688 151.44 122.784 152.832 122.832 154.224C122.88 156.192 123.024 158.304 122.544 160.224C122.304 161.136 124.416 162.144 124.704 161.04Z" fill="#CECECE"/>
|
||||
<path id="Vector_7" d="M124.464 184.224C126.48 187.296 131.568 194.976 143.616 206.352C151.296 213.6 157.392 220.704 157.392 220.704H85.488C85.488 220.704 90.72 212.016 101.184 202.368C113.904 190.656 118.608 188.64 119.856 181.152C119.856 181.152 119.712 174.096 120.768 174.288C121.824 174.48 124.464 184.224 124.464 184.224Z" fill="#CECECE"/>
|
||||
<path id="Vector_8" d="M124.224 184.368C126.912 188.448 129.888 192.336 133.104 196.032C139.152 202.992 146.112 209.04 152.4 215.712C154.128 217.536 155.808 219.408 157.44 221.28L156.768 219.6H87.8401C86.9281 219.6 85.9681 219.552 85.0561 219.6H84.9121L86.1121 221.616C88.1281 218.4 90.4321 215.328 92.9281 212.496C98.1601 206.352 104.16 201.072 110.208 195.792C112.176 194.112 114.144 192.384 115.968 190.512C117.312 189.168 118.464 187.632 119.328 185.952C120.048 184.56 120.48 182.976 120.528 181.392C120.528 180.384 120.528 179.424 120.576 178.416C120.576 177.408 120.72 176.448 121.008 175.488C121.056 175.392 121.104 175.296 121.152 175.2C121.2 175.152 121.344 175.104 121.344 175.152C121.344 175.2 120.96 174.768 120.96 174.768C120.864 174.576 120.912 174.72 120.912 174.72C120.576 174.24 120.864 174.576 120.864 174.624C120.864 174.672 121.056 174.96 120.912 174.672C121.344 175.536 121.68 176.448 121.968 177.408C122.592 179.28 123.168 181.2 123.696 183.12C123.744 183.216 123.744 183.36 123.792 183.456C123.984 184.032 124.272 184.512 124.704 184.896C125.04 185.184 125.184 185.088 125.04 184.656C124.608 183.12 124.176 181.584 123.696 180.096C123.024 177.984 122.4 175.68 121.056 173.904C120.624 173.328 120 172.704 119.616 173.616C119.328 174.576 119.184 175.584 119.184 176.592C119.136 177.6 119.136 178.56 119.136 179.568C119.136 180.288 118.992 180.96 118.8 181.632C117.696 185.808 114.528 188.736 111.408 191.52C105.456 196.848 99.2641 201.936 93.8881 207.84C90.6241 211.392 87.4561 215.184 84.9601 219.312C84.9121 219.36 84.9121 219.408 84.8641 219.504C84.6241 219.888 85.6321 221.52 86.0641 221.52H155.04C155.952 221.52 156.912 221.616 157.824 221.52H157.968C158.448 221.52 157.392 219.984 157.296 219.84C153.024 214.896 148.464 210.144 143.712 205.632C138.144 200.352 132.768 194.784 128.16 188.688C127.776 188.16 127.392 187.632 127.008 187.104L126.528 186.432L126.288 186.048L126.192 185.904C126.048 185.712 126.288 186.048 126.192 185.904C125.712 185.184 125.232 184.512 124.752 183.792C124.656 183.648 124.128 182.784 123.84 182.928C123.552 183.072 124.176 184.272 124.224 184.368Z" fill="#CECECE"/>
|
||||
<path id="Vector_9" d="M71.1363 216.624C71.1363 216.624 169.776 217.008 170.016 218.928C170.256 220.848 172.08 223.968 170.016 224.592C167.952 225.216 76.3203 224.16 72.7683 222.96C69.2163 221.76 71.1363 216.624 71.1363 216.624Z" fill="white"/>
|
||||
<path id="Vector_10" d="M71.6641 217.536H74.3521L81.6481 217.584L92.3521 217.68C96.7201 217.728 101.088 217.776 105.456 217.776C110.256 217.824 115.008 217.872 119.808 217.968C124.608 218.016 129.408 218.112 134.208 218.208C138.672 218.304 143.184 218.4 147.648 218.496C151.392 218.592 155.136 218.688 158.928 218.832C161.568 218.928 164.256 219.072 166.896 219.264C167.712 219.312 168.48 219.408 169.296 219.504C169.536 219.552 169.776 219.6 170.064 219.648L170.208 219.696C170.4 219.744 170.016 219.648 170.16 219.696C170.304 219.744 170.352 219.792 170.112 219.648C169.872 219.504 169.68 219.312 169.488 219.072C169.392 218.928 169.344 218.688 169.2 218.496C169.056 218.304 169.2 218.64 169.248 218.784C169.392 219.504 169.632 220.224 169.824 220.944C170.064 221.76 170.592 223.44 169.392 223.728C169.008 223.776 168.624 223.824 168.24 223.824C166.224 223.92 164.16 223.92 162.096 223.92C158.736 223.92 155.328 223.92 151.92 223.92C147.6 223.92 143.232 223.872 138.912 223.824C134.016 223.776 129.168 223.728 124.272 223.68C119.28 223.632 114.336 223.536 109.344 223.44C104.736 223.344 100.08 223.248 95.4721 223.152C91.5841 223.056 87.6961 222.96 83.7601 222.816C81.0241 222.72 78.2881 222.624 75.6001 222.432C74.8321 222.384 74.0161 222.336 73.2481 222.24C73.0081 222.24 72.7681 222.192 72.5761 222.144C72.5281 222.144 72.4321 222.096 72.3841 222.096C72.8161 222.192 72.2401 222 72.0961 221.952C72.0961 221.952 71.9041 221.856 72.0481 221.952C71.8561 221.76 72.0001 221.952 72.0481 221.952C72.0001 221.904 71.9521 221.856 71.9041 221.76C72.0001 221.952 71.8081 221.52 71.8561 221.664C71.8081 221.568 71.7601 221.424 71.7601 221.28C71.7121 221.04 71.6641 220.8 71.6641 220.56C71.6161 220.08 71.6641 219.552 71.7601 219.072C71.8561 218.496 72.0001 217.92 72.1921 217.392C72.4321 216.72 70.6561 215.136 70.3681 215.904C69.7441 217.584 69.5521 219.696 70.3681 221.328C71.0881 222.768 72.4321 223.776 73.9681 224.016C75.7921 224.256 77.6641 224.304 79.4881 224.4C82.8001 224.544 86.1121 224.64 89.4241 224.736C93.7441 224.88 98.1121 224.976 102.432 225.072C107.328 225.168 112.224 225.264 117.12 225.312C122.16 225.408 127.248 225.456 132.288 225.504C137.04 225.552 141.792 225.6 146.544 225.648C150.576 225.696 154.608 225.696 158.64 225.696C161.472 225.696 164.304 225.696 167.136 225.648C167.952 225.648 168.816 225.648 169.632 225.6C170.016 225.6 170.352 225.6 170.736 225.504C172.224 225.12 171.984 223.392 171.696 222.288C171.504 221.568 171.264 220.848 171.072 220.128C171.024 219.648 170.88 219.168 170.64 218.736C170.16 218.16 169.488 217.776 168.768 217.68C166.992 217.392 165.168 217.248 163.392 217.2C160.224 217.008 157.056 216.912 153.888 216.816C149.712 216.672 145.584 216.576 141.408 216.48C136.704 216.384 132 216.288 127.248 216.24C122.304 216.144 117.408 216.096 112.464 216.048C107.76 216 103.008 215.952 98.3041 215.904C94.1761 215.856 90.0481 215.856 85.9201 215.808L76.5601 215.76H71.3761H70.7041C69.6001 215.664 70.9441 217.536 71.6641 217.536Z" fill="#CECECE"/>
|
||||
</g>
|
||||
<path id="Vector_11" d="M91.248 122.256C91.92 125.136 93.456 127.68 95.664 129.648C96.096 130.032 96.864 130.224 97.296 129.744C97.728 129.312 97.68 128.64 97.296 128.208C97.296 128.208 97.296 128.208 97.248 128.16C96.768 127.728 96.288 127.248 95.904 126.768L95.856 126.72C95.808 126.672 95.76 126.624 95.712 126.528C95.664 126.432 95.52 126.24 95.424 126.144C95.232 125.856 95.04 125.568 94.896 125.28C94.752 124.992 94.608 124.752 94.464 124.464C94.464 124.464 94.32 124.176 94.368 124.272C94.416 124.368 94.32 124.176 94.32 124.176C94.272 124.032 94.176 123.888 94.128 123.696C93.888 123.072 93.696 122.448 93.552 121.776C93.36 121.2 92.736 120.816 92.112 120.912C91.584 121.008 91.2 121.536 91.296 122.064C91.248 122.16 91.296 122.208 91.248 122.256Z" fill="white"/>
|
||||
<path id="Vector_12" d="M98.8318 133.103C99.6478 134.159 100.608 135.119 101.664 135.935C101.904 136.127 102.192 136.271 102.48 136.367C102.624 136.415 102.96 136.511 103.104 136.415C103.536 136.175 102.912 135.599 102.72 135.455L102.384 135.215L102.192 135.071L102.096 135.023L102.192 135.119C102 134.927 101.76 134.735 101.568 134.543C101.376 134.351 101.184 134.159 100.992 133.919L100.944 133.871L101.04 133.967L100.992 133.919L100.848 133.727L100.56 133.391C100.368 133.151 100.176 132.959 99.8878 132.815C99.6478 132.671 99.3598 132.527 99.0718 132.479C98.9278 132.479 98.6398 132.431 98.5918 132.575C98.6398 132.815 98.6878 133.007 98.8318 133.103Z" fill="white"/>
|
||||
</g>
|
||||
<g id="character">
|
||||
<path id="Vector_13" d="M100.848 115.488C100.848 115.488 101.424 127.488 101.088 127.488C100.752 127.488 95.6159 127.344 95.6159 127.344V122.544L93.1199 127.824L76.0319 126.864C76.0319 126.864 75.5039 125.136 79.3439 123.216C83.1839 121.296 89.3759 118.608 89.3759 118.608L89.5199 111.456L100.848 115.488Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_14" d="M139.536 116.592C139.536 116.592 138.96 128.592 139.296 128.592C139.632 128.592 144.768 128.448 144.768 128.448V123.648L147.264 128.928L164.304 127.968C164.304 127.968 164.832 126.24 160.992 124.32C157.152 122.4 150.96 119.664 150.96 119.664L150.816 112.512L139.536 116.592Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_15" d="M112.608 70.6073C112.608 70.6073 105.024 66.6713 98.4 70.6073C91.776 74.5433 83.52 119.183 83.52 119.183H105.024L114.624 79.8713H127.824L136.08 119.183L154.272 116.879C154.272 116.879 146.64 70.6553 138.72 68.3513C128.928 65.4713 123.984 70.8473 123.984 70.8473L112.608 70.6073Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_16" d="M113.28 70.0794C111.168 69.0234 108.912 68.4474 106.56 68.3034C104.448 68.1594 102.384 68.3994 100.368 69.1194C99.1199 69.5034 97.9679 70.1274 97.0079 70.9914C95.9999 72.0954 95.1359 73.3914 94.5599 74.7834C93.6479 76.7514 92.8319 78.7674 92.1599 80.8314C90.3839 85.9674 88.9439 91.2474 87.6479 96.5274C86.3999 101.519 85.2959 106.511 84.2399 111.551C83.9039 113.279 83.5199 114.959 83.1839 116.687C83.0399 117.503 82.7999 118.367 82.7039 119.183C82.7039 119.231 82.7039 119.279 82.7039 119.279C82.6559 119.567 83.0879 119.663 83.2799 119.663H104.784C105.216 119.663 105.84 119.423 105.936 118.943L109.2 105.599L114.336 84.4794L115.536 79.6314L114.384 80.3514H127.584L127.008 80.1114L129.84 93.5034L134.256 114.623L135.264 119.423C135.312 119.711 135.84 119.663 136.032 119.615L151.92 117.599L154.224 117.311C154.608 117.263 155.232 116.927 155.136 116.495C154.752 114.143 154.32 111.791 153.888 109.487C152.88 104.255 151.776 99.0234 150.528 93.8394C149.28 88.2714 147.648 82.7994 145.728 77.4234C145.008 75.3594 144.048 73.2954 142.992 71.3754C142.224 70.1274 141.312 68.7354 140.016 68.0154C139.632 67.8234 139.2 67.6794 138.768 67.5834C137.616 67.2954 136.464 67.0554 135.312 66.9594C133.44 66.7674 131.52 66.9114 129.648 67.3434C127.392 67.8714 125.328 68.9274 123.6 70.4154C123.504 70.5114 123.408 70.5594 123.36 70.6554L124.368 70.2234L114.384 70.0314L112.944 69.9834C112.512 69.9834 112.08 70.1754 111.84 70.5594C111.648 70.9434 112.032 71.0394 112.368 71.0874L119.664 71.2314L123.36 71.2794C123.888 71.3274 124.368 71.1834 124.752 70.8474L124.8 70.7514L124.896 70.6554C125.04 70.5114 124.896 70.6554 124.944 70.6074C125.712 69.9354 126.624 69.3594 127.584 68.9754C129.312 68.2554 131.136 67.9194 132.96 67.9674C134.256 67.9674 135.552 68.1594 136.8 68.4474C137.472 68.5434 138.096 68.7354 138.672 69.0234C138.816 69.0714 138.672 69.0234 138.768 69.0714L138.96 69.2154C139.104 69.3594 139.248 69.4554 139.392 69.5994C139.68 69.8874 139.968 70.2234 140.256 70.5594C141.696 72.4314 142.656 74.6874 143.52 76.8474C144.672 79.7754 145.632 82.7994 146.496 85.8234C148.368 92.3514 149.856 98.9754 151.2 105.599C151.728 108.095 152.208 110.639 152.64 113.135C152.88 114.383 152.976 115.679 153.312 116.879C153.312 116.927 153.312 116.975 153.36 117.071L154.272 116.255L138.384 118.271L136.08 118.559L136.848 118.751L134.016 105.359L129.6 84.2394L128.592 79.4394C128.544 79.1994 128.208 79.1994 128.016 79.1994H114.816C114.384 79.1994 113.76 79.4874 113.664 79.9194L110.4 93.2634L105.264 114.383L104.064 119.183L105.216 118.463H83.7119L84.2879 118.847C84.6719 116.831 85.0559 114.863 85.4399 112.847C86.3999 108.191 87.4079 103.535 88.5119 98.9274C89.7599 93.6954 91.1039 88.4634 92.7359 83.2794C93.4079 81.0714 94.1759 78.9114 95.0399 76.7994C95.6639 75.1674 96.4799 73.5834 97.3919 72.1434C97.5359 71.9034 97.7279 71.7114 97.9199 71.4714C98.0159 71.3754 98.1119 71.2794 98.2079 71.1834L98.3519 71.0394C98.4959 70.8954 98.3039 71.0874 98.3999 70.9914C98.4959 70.8954 98.5919 70.8474 98.6879 70.7994L98.7359 70.7514C98.4479 70.9434 98.7359 70.7514 98.7839 70.7034C99.0719 70.5594 99.3119 70.4154 99.5999 70.2714C100.56 69.8394 101.568 69.5514 102.576 69.3594C105.552 68.9754 108.576 69.4554 111.264 70.7034C111.408 70.7514 111.6 70.8474 111.744 70.9434C112.464 71.3274 114 70.5114 113.28 70.0794Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_17" d="M106.128 68.7838C106.128 68.7838 102.48 39.5998 113.328 35.3278C128.928 29.1358 131.328 47.0398 132.816 67.7758C132.816 67.7278 114.672 72.4318 106.128 68.7838Z" fill="white"/>
|
||||
<path id="Vector_18" d="M106.944 68.4482C106.608 65.6162 106.464 62.7842 106.368 59.9522C106.272 54.6242 106.464 49.1522 107.856 44.0162C108.48 41.8082 109.344 39.5522 110.784 37.8242C111.36 37.1042 112.128 36.4802 112.992 36.0482C113.04 36.0002 113.136 36.0002 113.184 35.9522L113.616 35.8082C114.048 35.6642 114.432 35.5202 114.864 35.3762C115.584 35.1362 116.304 34.9922 117.072 34.8482C119.376 34.4162 121.776 34.9922 123.696 36.3842C125.76 37.9682 127.056 40.3682 127.968 42.7682C129.12 45.9842 129.936 49.2962 130.416 52.6562C131.04 56.6882 131.424 60.7682 131.76 64.8002C131.856 65.8562 131.952 66.9602 132 68.0162L132.96 67.0562C130.8 67.6322 128.592 68.0162 126.384 68.4002C122.064 69.1202 117.648 69.6482 113.232 69.4082C110.976 69.3602 108.72 68.9282 106.608 68.1122C105.936 67.8242 104.64 69.0242 105.552 69.4082C109.584 71.0882 114.288 70.9922 118.56 70.6562C122.496 70.3682 126.384 69.7442 130.272 68.9282C131.04 68.7362 131.856 68.5922 132.624 68.4002C133.056 68.3042 133.632 67.9682 133.584 67.4402C133.248 63.1202 132.912 58.8002 132.336 54.4802C131.904 50.8322 131.136 47.1842 130.08 43.6802C129.216 40.9922 128.016 38.3042 126 36.1922C124.272 34.4162 121.872 33.4082 119.376 33.4082C117.84 33.4082 116.304 33.6962 114.816 34.1762C113.472 34.5602 112.224 35.1362 111.072 35.9522C109.152 37.3922 107.904 39.5042 107.04 41.7122C105.024 46.8962 104.64 52.7042 104.64 58.1762C104.64 60.5282 104.736 62.8802 104.88 65.2322C104.976 66.4802 105.024 67.7282 105.216 68.9282C105.216 68.9762 105.216 69.0242 105.216 69.1202C105.408 69.8882 107.04 69.2162 106.944 68.4482Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_19" d="M112.704 49.5361L112.656 47.0401C112.656 47.0401 107.424 37.6801 104.208 37.7761C100.992 37.8721 100.992 42.0481 102.576 44.3041C103.488 45.6001 104.304 46.8961 105.024 48.2881C105.024 48.2881 85.0562 71.6641 93.6482 72.6721C109.68 74.6401 112.704 49.5361 112.704 49.5361Z" fill="white"/>
|
||||
<path id="Vector_20" d="M113.568 49.3437C113.568 48.5757 113.568 47.7597 113.52 46.9917C113.472 46.6557 113.328 46.3197 113.088 46.0317C112.08 44.3037 110.976 42.6717 109.728 41.0877C108.576 39.5997 107.04 37.6317 105.072 37.2477C103.872 37.0557 102.624 37.3917 101.76 38.2557C100.992 39.0717 100.56 40.2237 100.656 41.3757C100.704 42.9597 101.376 44.2077 102.24 45.5037C102.96 46.5597 103.584 47.6157 104.16 48.7197L104.256 48.2397C102.048 50.8317 99.9839 53.5197 97.9679 56.2557C96.3359 58.4637 94.7999 60.7677 93.4079 63.1197C92.3039 65.0877 91.1519 67.1517 90.7199 69.4077C90.4319 70.8957 90.6239 72.5277 92.2079 73.1517C93.4079 73.5837 94.8479 73.5837 96.0959 73.4877C97.5839 73.3917 98.9759 73.0557 100.368 72.4797C105.552 70.2717 108.72 65.1837 110.688 60.1437C111.552 57.9837 112.224 55.7757 112.704 53.5197C113.04 52.2717 113.28 50.9757 113.424 49.6797C113.424 49.6317 113.424 49.5837 113.424 49.4877C113.52 48.6717 111.792 49.1037 111.696 49.8717C111.312 52.7037 110.64 55.4877 109.728 58.1757C108.192 62.8317 105.744 67.8237 101.568 70.5597C99.3599 71.9517 96.7679 72.5757 94.2239 72.2877C93.8399 72.2877 93.5039 72.1917 93.1679 72.0477C92.9279 71.9517 92.7359 71.8077 92.5919 71.5677C92.6399 71.6637 92.4959 71.4237 92.4479 71.3277C92.3999 71.1837 92.3519 71.0397 92.3039 70.8957C92.3039 70.9437 92.3039 70.8477 92.3039 70.7517C92.3039 70.6557 92.3039 70.6077 92.3039 70.5117C92.3039 70.3197 92.3039 70.1277 92.3039 69.9357C92.4479 68.1117 93.4559 66.1437 94.3679 64.4637C95.6639 62.1597 97.1039 59.9037 98.6399 57.7437C100.848 54.6717 103.248 51.7917 105.552 48.8157L105.696 48.6717C105.792 48.5277 105.84 48.3357 105.792 48.1917C105.408 47.4237 104.976 46.7037 104.496 45.9837C103.776 44.8317 102.864 43.7757 102.528 42.4317C102.192 41.4717 102.24 40.3677 102.672 39.4557C102.816 39.1677 103.056 38.9277 103.344 38.7837C103.536 38.7357 103.728 38.6877 103.92 38.6877C104.064 38.6877 104.208 38.6877 104.304 38.7357C105.84 39.1677 107.184 40.9917 108.192 42.1917C109.344 43.6317 110.4 45.1197 111.312 46.7037C111.456 46.9437 111.552 47.1357 111.696 47.3757C111.744 47.4237 111.744 47.4717 111.792 47.5197C111.792 47.2797 111.84 47.5677 111.792 47.5197C111.744 48.3357 111.744 49.1037 111.84 49.9197C111.888 50.5917 113.616 50.1117 113.568 49.3437Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_21" d="M104.4 41.0393C104.4 41.0393 106.128 44.2073 107.712 43.1993C109.296 42.1913 107.952 38.0153 104.592 37.7753C101.232 37.5353 101.328 41.0873 101.328 41.0873" fill="white"/>
|
||||
<path id="Vector_22" d="M103.872 40.8958C104.112 41.3278 104.352 41.7118 104.688 42.0958C105.216 42.8638 105.936 43.4878 106.8 43.9198C107.424 44.2558 108.192 44.1118 108.672 43.6318C109.008 43.1518 109.152 42.5278 109.104 41.9518C108.96 40.2238 107.616 38.5918 106.128 37.7278C104.784 36.9598 102.72 36.7198 101.616 37.9678C100.992 38.6878 100.704 39.5998 100.704 40.5598C100.752 40.9438 100.992 41.2798 101.328 41.5198C101.376 41.5678 102.048 42.0478 102.048 41.7118C102.048 41.0878 102.144 40.4638 102.432 39.9358C103.056 38.7358 104.352 38.3518 105.6 38.5918C105.936 38.6398 106.272 38.7838 106.56 38.9278L106.608 38.9758L106.656 39.0238L106.848 39.1678C106.704 39.0718 106.848 39.1678 106.896 39.2158C106.944 39.2638 107.04 39.3598 106.944 39.2638C106.848 39.1678 106.992 39.3118 106.992 39.3118L107.04 39.4078C107.136 39.5038 106.944 39.2638 106.992 39.3598L107.136 39.5518C107.232 39.6478 107.088 39.4558 107.184 39.5998C107.232 39.6958 107.28 39.7438 107.328 39.8398C107.28 39.7438 107.376 39.9358 107.328 39.8398L107.376 39.9358C107.424 40.0318 107.424 40.0798 107.472 40.1758C107.52 40.2718 107.568 40.4158 107.568 40.5118C107.808 41.3278 107.712 42.7678 106.512 42.8158C106.368 42.8158 106.272 42.8158 106.128 42.7198C106.224 42.7678 105.984 42.6718 105.984 42.6238C105.984 42.5758 105.984 42.6238 106.032 42.6238L105.888 42.5278C105.792 42.4798 105.984 42.6238 105.936 42.5278L105.792 42.4318C105.888 42.5278 105.744 42.3838 105.744 42.3838L105.552 42.1918C105.696 42.3358 105.552 42.1918 105.504 42.1438L105.312 41.9518C105.264 41.9038 105.168 41.7118 105.216 41.8558C105.264 41.9998 105.168 41.7598 105.168 41.7598C105.168 41.7598 105.072 41.6638 105.072 41.6158C105.072 41.5678 104.928 41.4238 104.88 41.2798C104.688 40.8958 104.352 40.6078 103.92 40.4638C103.584 40.2718 103.776 40.7038 103.872 40.8958Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_23" d="M126.864 34.9437C126.864 34.9437 132.768 35.2797 133.392 32.7837C134.016 30.2877 130.368 31.3917 130.368 31.3917C130.368 31.3917 133.968 26.0157 127.968 25.9677C127.968 25.9677 132.336 21.6477 128.016 18.8157C123.696 15.9837 116.352 19.2477 116.352 19.2477C116.352 19.2477 115.824 14.0157 109.92 15.5037C104.016 16.9917 105.936 19.9677 105.936 19.9677C105.936 19.9677 102.144 20.8797 102.288 22.7037C102.432 24.5277 105.408 24.8157 105.408 24.8157C105.408 24.8157 107.232 29.8077 112.32 28.3197L118.272 34.0317C117.456 35.6157 117.792 37.5837 119.088 38.7837C121.392 40.8957 127.632 38.2077 126.864 34.9437Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_24" d="M127.248 35.6159C128.928 35.7599 130.656 35.5679 132.288 35.0399C133.248 34.6559 134.064 34.0319 134.16 32.9759C134.208 31.7759 133.344 30.7199 132.192 30.4799C131.424 30.3839 130.656 30.4319 129.936 30.6719L131.04 32.0639C131.712 31.1039 132.096 29.9999 132.192 28.8479C132.192 27.8879 131.76 26.9279 130.992 26.3039C130.032 25.4399 128.784 25.2479 127.536 25.2479L128.64 26.6399C129.312 25.9679 129.84 25.1519 130.224 24.2879C130.944 22.7039 130.704 20.8799 129.552 19.5839C126.96 16.4639 122.544 16.6079 118.944 17.5199C117.888 17.7599 116.88 18.0959 115.872 18.5279L117.072 19.6799C116.832 17.6159 115.536 15.8399 113.664 14.9759C111.888 14.2079 109.872 14.5919 108.144 15.2159C106.896 15.6959 105.408 16.4639 105.072 17.8559C104.928 18.6239 105.12 19.3919 105.552 20.0159L105.456 19.2479C104.112 19.5839 101.712 20.3999 101.664 22.0319C101.616 24.0959 104.112 25.2959 105.84 25.4879L104.832 24.4799C105.264 25.6319 105.984 26.6399 106.896 27.5039C108.48 29.0399 110.784 29.6159 112.896 28.9439L112.272 28.6559L118.224 34.3679L117.696 33.3599C116.496 35.5199 117.696 38.3519 119.712 39.5999C121.728 40.8479 124.608 39.9839 126.288 38.5439C127.2 37.7279 127.824 36.5759 127.584 35.3279C127.488 34.8959 127.2 34.5599 126.864 34.3199C126.672 34.2239 126.192 34.0319 126.24 34.4159C126.72 36.9599 123.408 38.5439 121.344 38.7359C120.096 38.8319 118.992 38.4959 118.656 37.1999C118.416 36.2879 118.56 35.3279 118.992 34.5119C119.184 34.2239 118.608 33.6479 118.464 33.5039L113.712 28.9439L112.704 27.9839C112.656 27.9359 112.608 27.8879 112.512 27.8399C112.08 27.5039 111.888 27.5519 111.36 27.6959C109.872 28.0319 108.288 27.7919 107.184 26.7359C106.848 26.3999 106.56 26.0159 106.368 25.6319L106.224 25.3439C106.176 25.2479 106.08 25.0559 106.176 25.2479L106.08 25.0559C105.936 24.6719 105.504 24.0959 105.072 24.0479C104.592 23.9999 104.112 23.9039 103.68 23.7119C103.104 23.4719 102.768 23.1359 103.2 22.4639C103.824 21.4079 105.408 20.8799 106.512 20.6399C106.896 20.5439 106.512 20.0159 106.416 19.8719C106.656 20.2079 106.512 20.0159 106.464 19.9679C106.416 19.9199 106.416 19.7759 106.464 20.0159C106.464 19.9679 106.416 19.9199 106.416 19.8719C106.368 19.6799 106.368 19.8719 106.368 19.6319C106.368 19.4879 106.368 19.3439 106.368 19.1999C106.464 18.1439 107.472 17.4239 108.336 16.9919C109.824 16.2719 111.792 15.6959 113.472 16.0799C113.904 16.1759 114.336 16.3679 114.72 16.6559C114.816 16.7519 114.912 16.8479 114.96 16.9439C115.056 17.0879 115.152 17.2319 115.248 17.4239C115.488 17.8559 115.632 18.3359 115.68 18.8159C115.728 19.1519 116.4 20.1599 116.832 19.9679C118.848 19.0559 121.008 18.5279 123.216 18.3839C124.848 18.2879 126.624 18.4319 128.016 19.3439C129.408 20.2559 129.504 21.5519 128.928 22.9439C128.592 23.8559 128.016 24.6239 127.344 25.2959C126.912 25.7279 128.064 26.6399 128.448 26.6879C129.024 26.6879 129.552 26.7359 130.128 26.9279C130.272 26.9759 130.416 27.0239 130.56 27.1199C130.704 27.2159 130.656 27.1679 130.608 27.1199C130.656 27.1679 130.656 27.2159 130.704 27.2639C130.752 27.4079 130.752 27.5039 130.752 27.6479C130.752 27.9359 130.752 28.2239 130.704 28.4639C130.512 29.2799 130.176 30.0479 129.744 30.7199C129.456 31.1519 130.368 32.2559 130.848 32.1119C131.472 31.8719 132.192 31.8239 132.864 31.9199C132.864 31.9199 133.104 31.9679 133.104 32.0159C133.008 31.9679 132.96 31.9199 132.912 31.8719C132.72 31.5839 132.672 31.4879 132.768 31.6799C132.672 31.8239 132.768 32.1599 132.672 32.3519C132.48 32.8319 132.144 33.2159 131.712 33.4079C130.656 33.9359 129.552 34.2239 128.4 34.2239C127.92 34.2719 127.44 34.2719 127.008 34.2719H126.528H126.432C125.76 34.1759 126.768 35.6159 127.248 35.6159Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_25" d="M106.704 42.0471C102.912 37.9191 105.984 25.6311 105.984 25.6311C110.208 26.0151 116.448 21.1191 116.448 21.1191C114.864 25.1991 119.28 31.9671 119.28 31.9671C120.624 28.2711 124.368 28.0311 124.368 31.5351C124.368 35.0391 121.056 35.6631 121.056 35.6631C121.056 35.6631 122.784 41.5191 122.592 42.9111C122.4 44.3031 115.536 51.6471 112.8 45.1191C112.752 45.1191 110.016 45.6471 106.704 42.0471Z" fill="white"/>
|
||||
<path id="Vector_26" d="M107.52 41.9518C105.84 40.0798 105.696 37.1038 105.696 34.7038C105.744 32.2558 106.032 29.8078 106.512 27.3598C106.608 26.8318 106.704 26.3038 106.848 25.8238L106.128 26.1598C108.672 26.3518 111.168 25.2478 113.328 24.0478C114.672 23.3278 115.968 22.4638 117.168 21.5518L115.536 21.0238C114.672 23.3278 115.488 25.9678 116.352 28.1278C116.928 29.5198 117.6 30.8638 118.416 32.1118C118.704 32.5438 119.904 32.7358 120.096 32.1598C120.48 31.1038 121.296 29.8078 122.544 29.6158C122.592 29.6158 122.64 29.6158 122.736 29.6158C122.544 29.6158 122.736 29.6638 122.688 29.6158C122.832 29.7118 122.976 29.8558 123.072 29.9998C123.36 30.5278 123.504 31.1038 123.456 31.7278C123.408 32.8798 122.832 33.9358 121.92 34.6078C121.632 34.7998 121.296 34.9918 120.96 35.0878L120.624 35.1838C120.48 35.2318 120.48 35.2318 120.672 35.1838C120.48 35.2318 120.096 35.3278 120.192 35.6158C120.48 36.5758 120.768 37.5838 121.008 38.5918C121.2 39.3598 121.392 40.1278 121.536 40.9438C121.68 41.5198 121.728 42.0958 121.728 42.6718C121.632 43.4398 120.72 44.3518 120.144 44.9278C119.232 45.9358 118.08 46.7038 116.784 47.1838C116.544 47.2798 116.256 47.3278 115.968 47.3278C115.728 47.3278 115.488 47.2798 115.296 47.1838C114.528 46.7998 114.048 45.9358 113.712 45.1678C113.424 44.7838 112.896 44.5918 112.416 44.6878H112.32C112.08 44.6878 112.512 44.6878 112.176 44.6878C111.888 44.6878 111.6 44.6398 111.312 44.5438C109.824 44.1118 108.576 43.0558 107.52 41.9518C107.184 41.6638 106.752 41.5198 106.32 41.5678C106.08 41.6158 105.6 41.8558 105.888 42.1438C107.184 43.6318 108.816 44.7358 110.64 45.3118C111.456 45.5998 112.272 45.6478 113.136 45.5518L111.888 45.0718C112.656 46.8478 114 48.1918 116.016 48.2878C117.648 48.3838 119.184 47.5678 120.48 46.6078C121.584 45.7918 122.544 44.7838 123.216 43.6318C123.792 42.5278 123.264 41.0398 123.024 39.8878C122.688 38.4958 122.352 37.1038 121.92 35.7118L121.44 36.1918C123.072 35.9038 124.464 34.7038 124.992 33.1198C125.376 31.9678 125.328 30.4318 124.512 29.5198C123.648 28.6558 122.4 28.3678 121.248 28.7038C119.808 29.1358 118.848 30.4318 118.368 31.7758L120.048 31.8238C119.28 30.6238 118.656 29.3758 118.128 28.0798C117.264 25.9678 116.496 23.4718 117.312 21.2638C117.552 20.6878 116.016 20.4958 115.68 20.7358C114.576 21.5998 113.424 22.3678 112.176 23.0398C110.304 24.1438 108 25.2958 105.744 25.1038C105.504 25.1038 105.072 25.1518 105.024 25.4398C104.64 26.9278 104.4 28.4158 104.208 29.9518C103.824 32.7358 103.632 35.6158 104.16 38.3998C104.352 39.7918 104.928 41.0398 105.84 42.1438C106.176 42.4318 106.608 42.5758 107.04 42.5278C107.328 42.4798 107.808 42.2878 107.52 41.9518Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_27" d="M111.264 31.2956C111.312 31.6316 111.12 31.9196 110.784 32.0156C110.736 32.0156 110.736 32.0156 110.688 32.0156C110.016 32.0636 109.968 31.2476 110.496 31.0556C110.736 30.9116 111.024 30.9596 111.168 31.1996C111.264 31.1996 111.264 31.2476 111.264 31.2956Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_28" d="M107.472 31.5358C107.52 31.8718 107.328 32.1598 106.992 32.2558C106.944 32.2558 106.944 32.2558 106.896 32.2558C106.224 32.3038 106.176 31.4878 106.704 31.2958C106.944 31.1518 107.232 31.1998 107.376 31.4398C107.472 31.4878 107.472 31.5358 107.472 31.5358Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_29" d="M111.36 38.4476C111.36 38.4476 104.688 43.4876 101.328 40.4636C97.9679 37.4396 102.144 32.7356 107.952 33.6476" fill="white"/>
|
||||
<path id="Vector_30" d="M110.64 37.9192C108.816 39.3112 106.56 40.5112 104.256 40.8472C103.488 40.9912 102.72 40.9432 102 40.7032C101.808 40.6552 101.664 40.5592 101.472 40.4632C101.232 40.3672 101.52 40.2232 101.76 40.7032C101.712 40.6552 101.664 40.5592 101.568 40.5112C101.328 40.2232 101.136 39.8872 100.992 39.5512C100.464 38.1112 101.28 36.6712 102.384 35.7592C104.112 34.3192 106.464 33.9352 108.624 34.2712C108.768 34.2712 108.24 33.8392 108.192 33.7912C107.952 33.5992 107.568 33.2152 107.28 33.1672C105.168 32.8792 102.864 33.2152 101.136 34.5112C99.8879 35.4712 98.9759 37.0552 99.6479 38.6392C100.08 39.5032 100.704 40.2712 101.52 40.7992C102.24 41.4232 103.104 41.8072 104.016 41.9992C105.744 42.2392 107.52 41.6152 109.056 40.8952C110.112 40.3672 111.12 39.7912 112.08 39.0712C112.032 39.0712 110.88 37.7272 110.64 37.9192Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_31" d="M114.96 38.1594L116.064 37.7274C116.16 37.7274 116.208 37.6794 116.256 37.6314C116.304 37.5834 116.352 37.4874 116.352 37.4394C116.352 37.3434 116.352 37.2474 116.352 37.1514C116.352 37.0554 116.304 36.9594 116.256 36.8634C116.16 36.6714 116.016 36.4794 115.824 36.3354L115.632 36.2394C115.536 36.1914 115.44 36.1914 115.296 36.1914L114.192 36.6234C114.096 36.6234 114.048 36.6714 114 36.7194C113.952 36.7674 113.904 36.8634 113.904 36.9114C113.904 37.0074 113.904 37.1034 113.904 37.1994C113.904 37.2954 113.952 37.3914 114 37.4874C114.096 37.6794 114.24 37.8714 114.432 38.0154L114.624 38.1114C114.768 38.1594 114.864 38.2074 114.96 38.1594Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_32" d="M122.496 58.4639C122.496 58.4639 118.416 50.5439 119.184 46.7519C119.52 44.5919 121.152 42.9119 123.264 42.4799C123.264 42.4799 121.296 39.0719 124.56 37.9679C127.824 36.8639 129.792 39.9839 129.792 39.9839C129.792 39.9839 131.904 38.5919 132.192 41.2799C132.192 41.2799 134.64 40.9439 134.592 43.8719C134.544 46.7999 132.912 50.0639 130.704 50.9279C130.704 50.9279 150.624 67.3919 140.64 72.5759C133.632 76.1279 122.496 58.4639 122.496 58.4639Z" fill="white"/>
|
||||
<path id="Vector_33" d="M123.312 58.0801C122.352 56.2561 121.584 54.3841 120.912 52.4161C120 49.7281 119.04 46.2241 121.296 43.8721C121.488 43.6801 121.728 43.4881 121.968 43.3441C122.064 43.2961 122.16 43.2001 122.256 43.1521C122.304 43.1041 122.592 43.0081 122.4 43.0561L122.736 42.9601C122.88 42.9121 122.592 43.0081 122.784 42.9601C122.832 42.9601 122.928 42.9121 122.976 42.9121C123.216 42.8641 124.272 42.4321 124.08 42.0481C123.504 40.9921 122.976 38.9281 124.416 38.3521C126.096 37.6801 128.064 38.8801 128.976 40.3201C129.168 40.6561 129.936 40.2721 130.176 40.1281C130.416 39.9841 129.984 40.1761 130.272 40.0801C130.032 40.1281 130.368 40.0801 130.272 40.0801C130.368 40.0321 130.368 40.0321 130.512 40.0321C131.184 40.1281 131.376 40.9921 131.424 41.5681C131.424 41.6641 131.712 41.7121 131.76 41.6641C132.096 41.6161 132.432 41.6641 132.72 41.8081C133.584 42.1921 133.824 43.1521 133.824 44.0161C133.776 45.3601 133.488 46.6561 132.912 47.8561C132.48 48.7681 131.808 49.9201 130.8 50.3521C130.608 50.4481 129.6 50.9281 129.984 51.2161C131.76 52.7041 133.44 54.2881 135.072 55.9681C137.808 58.7521 140.64 61.9681 142.032 65.6641C142.56 67.0561 142.896 68.6401 142.32 70.0801C142.032 70.7521 141.6 71.3281 141.024 71.7121C140.544 72.1441 139.92 72.3841 139.248 72.3841C137.424 72.4801 135.696 71.4721 134.256 70.4641C132.432 69.1201 130.752 67.5841 129.264 65.9041C127.104 63.4561 125.136 60.8641 123.36 58.1281C123.36 58.1761 123.36 58.1281 123.312 58.0801C123.024 57.6001 121.44 58.4641 121.68 58.8481C123.264 61.3441 125.04 63.6961 126.96 65.9521C128.496 67.7761 130.176 69.4561 132.048 70.9441C133.584 72.1441 135.456 73.2961 137.424 73.4881C139.488 73.6321 141.504 72.8161 142.896 71.2801C144 70.0801 144.432 68.4961 144.144 66.9121C143.856 65.0401 142.944 63.3121 141.888 61.7281C140.688 59.9521 139.392 58.2241 137.904 56.6401C136.608 55.2481 135.264 53.8561 133.872 52.5601C133.152 51.7921 132.336 51.0721 131.52 50.4481L131.424 50.3521L130.608 51.2161C133.536 50.0161 135.216 46.8961 135.408 43.8241C135.456 42.7201 135.312 41.5201 134.208 40.9441C133.728 40.7041 133.152 40.6081 132.624 40.6561L132.96 40.7521C132.816 39.7441 132.336 38.9281 131.28 38.9761C130.608 39.0241 129.936 39.2641 129.408 39.6481L130.608 39.4561C129.744 38.0641 128.256 37.2001 126.672 37.1041C124.416 37.0081 121.584 38.4481 121.92 41.0401C122.016 41.6161 122.208 42.2401 122.496 42.7681L123.6 41.9041C120.96 42.3841 118.896 44.4481 118.368 47.1361C118.128 48.6241 118.464 50.2081 118.848 51.6001C119.28 53.1841 119.856 54.7201 120.528 56.2561C120.912 57.1201 121.296 57.9841 121.728 58.8001C121.92 59.3281 123.552 58.5121 123.312 58.0801Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_34" d="M124.608 41.4722L124.752 41.3762C124.704 41.4242 124.608 41.4722 124.56 41.5202L124.368 41.6162L124.272 41.6642L124.224 41.7122C124.176 41.7602 124.416 41.6162 124.32 41.6642L124.032 41.8082L123.84 41.8562C123.696 41.9042 123.792 41.8562 123.84 41.8562C123.888 41.8562 123.984 41.8082 123.84 41.8562C123.744 41.9042 123.6 41.9042 123.456 41.9522C123.552 41.9522 123.792 41.9042 123.456 41.9522H123.264C123.024 41.9522 122.832 42.0002 122.64 42.1442C122.544 42.2402 122.352 42.3842 122.4 42.5282C122.448 42.9122 123.024 42.9602 123.312 42.9602C124.368 42.9602 125.376 42.5762 126.192 41.9042C126.288 41.8082 126.336 41.6642 126.24 41.5202C126.144 41.3762 126 41.2802 125.808 41.2322C125.424 41.0882 124.944 41.1842 124.608 41.4722Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_35" d="M133.056 42.9112C133.104 42.6712 133.152 42.4312 133.2 42.2392C133.248 41.6632 133.104 41.0872 132.864 40.5592C132.768 40.3672 132.576 40.2712 132.384 40.1752C132.144 40.0792 131.904 40.0792 131.712 40.1272C131.52 40.1752 131.328 40.2712 131.232 40.4152C131.136 40.5592 131.136 40.7512 131.232 40.8952C131.28 40.9912 131.328 41.0872 131.376 41.1832L131.328 41.0392C131.424 41.2792 131.472 41.5672 131.472 41.8552V41.6632C131.472 41.9992 131.424 42.3352 131.328 42.6232C131.28 42.7672 131.424 43.0072 131.52 43.1032C131.664 43.2472 131.904 43.3432 132.096 43.3912C132.336 43.4392 132.528 43.3912 132.768 43.2952L132.912 43.1992C132.96 43.1512 133.008 43.0552 133.056 42.9112Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_36" d="M130.464 41.8559C130.56 41.6639 130.656 41.4239 130.656 41.2319C130.704 40.6079 130.512 39.9839 130.176 39.5039C130.032 39.3119 129.888 39.1199 129.648 39.0239C129.456 38.9279 129.264 38.8799 129.072 38.8799C128.928 38.8799 128.784 38.9759 128.784 39.1199C128.784 39.3119 128.832 39.4559 128.928 39.5999L128.976 39.6959L128.88 39.5039C128.976 39.6479 129.024 39.8399 129.072 39.9839L129.024 39.8399C129.072 40.0319 129.12 40.2239 129.12 40.4159V40.2719C129.12 40.4639 129.072 40.6559 129.024 40.8479L129.072 40.7039L129.024 40.7519C128.832 41.0879 129.168 41.5199 129.456 41.7119C129.648 41.8559 129.84 41.9519 130.032 41.9999C130.176 41.9519 130.368 41.9519 130.464 41.8559Z" fill="#3D3D3D"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 82 KiB |
@@ -0,0 +1,69 @@
|
||||
<svg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M76.7041 210.911C76.7041 210.911 68.9281 146.255 74.4481 144.623C79.9681 142.991 94.7521 144.143 99.0241 144.143C103.296 144.143 105.024 148.799 105.024 148.799C105.024 148.799 143.856 150.047 146.64 150.815C149.424 151.583 137.904 210.911 137.904 210.911H76.7041Z" fill="#CECECE"/>
|
||||
<path d="M77.8081 211.2C77.7121 210.24 77.568 209.28 77.472 208.272C77.184 205.728 76.896 203.184 76.656 200.64C76.272 197.04 75.936 193.44 75.6 189.84C75.216 185.712 74.88 181.584 74.544 177.456C74.256 173.376 73.968 169.248 73.776 165.168C73.632 161.664 73.536 158.16 73.584 154.656C73.536 152.208 73.776 149.76 74.256 147.36C74.4 146.688 74.64 146.064 74.976 145.488C75.072 145.344 75.0241 145.392 75.1681 145.296C75.2641 145.248 75.3121 145.2 75.4081 145.152C75.5041 145.104 75.408 145.152 75.36 145.152C75.456 145.104 75.5521 145.104 75.6481 145.056C75.8401 145.008 76.08 144.96 76.272 144.912C76.752 144.816 77.28 144.72 77.76 144.672C82.848 144 88.0801 144.288 93.1681 144.48C95.1841 144.576 97.2001 144.672 99.264 144.72C99.6961 144.72 100.128 144.72 100.56 144.816C100.704 144.864 100.848 144.912 100.944 144.96C101.136 145.056 101.328 145.2 101.52 145.296C102.576 146.16 103.392 147.264 103.92 148.56C104.112 149.136 105.264 149.376 105.744 149.376L111.744 149.568C116.256 149.712 120.72 149.904 125.232 150.048C129.936 150.24 134.592 150.432 139.296 150.72C141.024 150.816 142.752 150.912 144.48 151.056L145.44 151.152H145.632L146.016 151.2C146.208 151.2 146.4 151.248 146.592 151.248L146.832 151.296C147.12 151.344 146.64 151.248 146.784 151.296C146.4 151.152 146.016 151.008 145.728 150.768C145.824 150.864 145.728 150.816 145.728 150.72C145.728 150.816 145.824 150.912 145.824 151.008C145.92 151.296 145.92 151.632 145.968 151.92C146.016 152.976 145.968 154.032 145.872 155.088C145.632 158.592 145.104 162.144 144.624 165.6C143.952 170.16 143.232 174.72 142.464 179.28C141.696 183.936 140.88 188.544 140.016 193.2C139.344 196.944 138.624 200.688 137.952 204.432C137.568 206.4 137.184 208.32 136.8 210.288C136.8 210.384 136.752 210.48 136.752 210.528L137.184 210.384H83.5681C81.0721 210.384 78.5761 210.336 76.1281 210.384H76.032C75.6 210.384 75.504 210.624 75.84 210.912C76.32 211.248 76.8481 211.488 77.4241 211.488H131.04C133.536 211.488 136.032 211.536 138.48 211.488H138.576C138.672 211.488 138.96 211.488 139.008 211.344C139.296 209.952 139.536 208.56 139.776 207.216C140.448 203.712 141.072 200.256 141.744 196.752C142.608 192.144 143.424 187.584 144.192 182.976C145.008 178.272 145.776 173.568 146.496 168.864C147.072 165.072 147.6 161.232 147.984 157.392C148.08 156.096 148.224 154.848 148.224 153.552C148.272 152.832 148.224 152.112 147.984 151.44C147.552 150.48 146.208 150.336 145.248 150.24C143.856 150.096 142.512 150 141.12 149.904C136.704 149.616 132.288 149.424 127.92 149.232C123.072 149.04 118.272 148.848 113.424 148.656L104.736 148.368H104.304L106.128 149.232C105.552 147.84 104.64 146.592 103.44 145.632C102.288 144.72 100.896 144.096 99.456 143.856C98.496 143.76 97.584 143.712 96.6241 143.712C91.536 143.52 86.4 143.232 81.312 143.376C78.96 143.376 76.608 143.568 74.256 144.048C73.44 144.24 72.9121 144.384 72.5281 145.152C72.1921 145.872 71.952 146.64 71.856 147.408C71.664 148.56 71.52 149.712 71.472 150.912C71.28 154.176 71.28 157.44 71.376 160.704C71.472 164.736 71.712 168.768 71.952 172.8C72.24 177.072 72.576 181.344 72.96 185.616C73.296 189.504 73.68 193.392 74.064 197.28C74.352 200.256 74.688 203.232 75.024 206.16C75.168 207.6 75.264 209.136 75.552 210.576C75.552 210.624 75.552 210.72 75.552 210.768C75.648 211.2 77.9041 211.728 77.8081 211.2Z" fill="#CECECE"/>
|
||||
<path d="M125.376 85.7752C114.768 85.4392 104.544 92.4952 100.704 102.335C99.696 104.927 99.168 107.711 99.072 110.495C98.976 114.047 99.456 117.551 99.312 121.103C99.264 124.127 98.496 127.151 97.056 129.791C95.664 132.143 93.84 134.159 91.632 135.743C89.184 137.519 86.4 138.863 83.424 139.583C82.176 139.967 80.832 140.063 79.536 139.871C79.296 139.823 79.056 139.775 78.864 139.679C78.864 139.679 78.48 139.487 78.672 139.583C78.432 139.487 78.672 139.631 78.528 139.487C78.384 139.391 78.288 139.295 78.24 139.151C78.096 138.911 78.048 138.623 78.048 138.335L77.904 138.575C78.72 137.903 79.92 137.999 80.592 138.767C80.64 138.815 80.64 138.815 80.688 138.863C81.792 140.111 81.84 141.743 81.552 143.327C80.928 146.735 78.72 149.759 79.392 153.359C79.68 155.135 80.784 156.671 82.368 157.535C82.656 157.679 83.424 158.063 83.664 157.631C83.904 157.199 83.136 156.671 82.896 156.575C81.648 155.903 81.408 154.031 81.408 152.687C81.408 150.719 82.224 148.895 82.848 147.071C83.472 145.247 84.192 142.991 83.568 140.975C82.944 139.247 81.648 137.807 79.92 137.039C79.152 136.655 78.288 136.511 77.424 136.559C77.088 136.607 76.704 136.703 76.416 136.847C75.984 137.087 75.792 137.279 75.888 137.759C76.176 139.439 77.76 140.495 79.248 140.975C82.56 142.127 86.352 140.831 89.376 139.439C92.784 137.903 95.712 135.599 97.968 132.623C100.416 129.263 101.376 125.375 101.424 121.247C101.472 116.687 100.704 112.079 101.568 107.519C102.24 104.015 103.728 100.703 105.84 97.8712C110.016 92.1112 116.64 87.9832 123.792 87.3112C124.656 87.2152 125.568 87.2152 126.432 87.2152C126.912 87.2152 127.104 86.9272 126.816 86.5432C126.48 86.1112 125.952 85.8232 125.376 85.7752Z" fill="#909090"/>
|
||||
<path d="M114.912 115.919C114.912 115.919 161.52 117.599 164.496 118.079C167.472 118.559 160.176 181.919 160.176 181.919L106.848 177.551L114.912 115.919Z" fill="white"/>
|
||||
<path d="M115.824 116.687L122.112 116.927C126.96 117.119 131.76 117.311 136.608 117.455C141.984 117.647 147.312 117.887 152.688 118.127C156.384 118.271 160.176 118.415 163.776 118.703C164.208 118.751 164.592 118.751 165.024 118.799C165.264 118.847 165.456 118.895 165.024 118.751C164.688 118.607 164.4 118.415 164.112 118.127L163.92 117.935C163.776 117.743 163.872 117.791 163.872 117.935C163.872 118.079 163.872 117.839 163.872 117.983C163.872 118.127 163.92 118.127 163.92 118.175C163.968 118.367 164.016 118.559 164.016 118.703C164.112 119.183 164.112 119.663 164.16 120.143C164.256 123.599 164.208 127.055 163.92 130.511C163.632 135.455 163.248 140.399 162.816 145.391C162.336 150.623 161.856 155.903 161.328 161.135C160.896 165.455 160.416 169.823 159.936 174.143C159.696 176.399 159.456 178.703 159.168 180.959C159.168 181.055 159.168 181.151 159.12 181.247L159.36 181.103L154.032 180.671L141.36 179.615L125.904 178.367L112.656 177.263C110.496 177.071 108.336 176.783 106.128 176.735H106.08L107.808 178.079L108.624 171.935L110.544 157.247L112.848 139.487L114.864 124.079L115.584 118.991C115.728 118.175 115.824 117.407 115.92 116.591C115.92 116.543 115.92 116.543 115.92 116.495C115.968 115.967 114 114.863 113.952 115.247L113.184 121.391L111.264 136.079L108.912 153.839L106.896 169.247L106.224 174.287C106.08 175.103 105.984 175.871 105.936 176.687C105.936 176.735 105.936 176.783 105.936 176.783C105.888 177.023 106.464 177.455 106.608 177.551C106.896 177.839 107.28 178.031 107.664 178.127L112.992 178.559L125.664 179.615L141.12 180.863L154.368 181.967C156.528 182.159 158.688 182.447 160.848 182.495H160.944C161.088 182.495 161.184 182.495 161.184 182.351C161.376 180.719 161.568 179.087 161.712 177.455C162.144 173.375 162.576 169.343 163.008 165.263C163.536 160.031 164.064 154.799 164.544 149.615C165.024 144.431 165.456 139.295 165.792 134.111C166.032 130.271 166.272 126.383 166.224 122.495C166.224 121.439 166.176 120.383 165.984 119.327C165.696 118.175 164.784 117.311 163.68 117.119C162.672 116.975 161.568 116.927 160.56 116.879C158.688 116.783 156.864 116.687 154.992 116.591C149.808 116.351 144.576 116.111 139.392 115.919C134.208 115.727 128.928 115.535 123.648 115.295L114.528 114.959H114.096C113.712 114.959 114.48 115.727 114.528 115.775C114.864 116.351 115.296 116.591 115.824 116.687Z" fill="#3D3D3D"/>
|
||||
<path d="M120.288 127.104C120.288 127.104 119.184 132.624 119.904 132.72C120.624 132.816 126.288 133.008 126.672 133.008C127.056 133.008 127.824 127.392 127.824 127.392L120.288 127.104Z" fill="#3D3D3D"/>
|
||||
<path d="M126.672 133.247H126C123.408 133.151 120.384 133.055 119.856 132.959C119.76 132.959 119.664 132.863 119.568 132.767C119.04 131.999 119.856 127.871 120.048 127.055L120.096 126.863L128.064 127.199L128.016 127.439C127.248 133.055 126.912 133.247 126.672 133.247ZM120 132.479C120.672 132.575 124.56 132.719 126.048 132.719H126.576C126.816 132.239 127.2 129.839 127.536 127.583L120.48 127.295C120.048 129.599 119.712 132.095 120 132.479Z" fill="#3D3D3D"/>
|
||||
<path d="M118.944 139.344C118.944 139.344 117.84 144.864 118.56 144.96C119.28 145.056 124.944 145.248 125.328 145.248C125.712 145.248 126.48 139.68 126.48 139.68L118.944 139.344Z" fill="#3D3D3D"/>
|
||||
<path d="M125.328 145.488H124.656C122.064 145.392 119.04 145.296 118.464 145.2C118.368 145.2 118.272 145.104 118.176 145.008C117.648 144.24 118.464 140.112 118.656 139.296L118.704 139.104L126.672 139.44L126.72 139.68C125.952 145.296 125.568 145.488 125.328 145.488ZM119.136 139.584C118.704 141.888 118.368 144.432 118.656 144.768C119.184 144.864 123.216 144.96 124.704 145.008H125.232C125.472 144.528 125.904 142.128 126.192 139.872L119.136 139.584Z" fill="#3D3D3D"/>
|
||||
<path d="M118.128 151.583C118.128 151.583 117.024 157.103 117.744 157.199C118.464 157.295 124.128 157.487 124.512 157.487C124.896 157.487 125.664 151.871 125.664 151.871L118.128 151.583Z" fill="#3D3D3D"/>
|
||||
<path d="M124.512 157.728H123.84C121.248 157.632 118.224 157.536 117.648 157.44C117.552 157.44 117.456 157.344 117.36 157.248C116.832 156.48 117.648 152.352 117.84 151.536L117.888 151.344L125.856 151.68L125.808 151.92C125.136 157.488 124.752 157.728 124.512 157.728ZM117.792 156.96C118.464 157.056 122.4 157.2 123.84 157.2H124.368C124.608 156.72 125.04 154.32 125.328 152.064L118.272 151.776C117.888 154.08 117.552 156.576 117.792 156.96Z" fill="#3D3D3D"/>
|
||||
<path d="M128.928 103.247C128.4 104.543 128.16 105.935 128.112 107.327C128.112 107.471 128.4 107.711 128.544 107.807C128.784 107.999 129.072 108.095 129.408 108.191C129.648 108.287 129.888 108.287 130.128 108.239C130.32 108.191 130.368 108.143 130.368 107.951C130.368 107.903 130.368 107.807 130.368 107.711V107.855C130.416 106.559 130.704 105.311 131.184 104.111C131.232 103.967 131.088 103.775 130.992 103.679C130.56 103.295 129.984 103.103 129.408 103.055C129.216 103.103 128.976 103.103 128.928 103.247Z" fill="#909090"/>
|
||||
<path d="M135.12 99.455L132.912 109.535C132.816 109.919 133.728 109.631 133.872 109.583C134.208 109.487 135.024 109.151 135.12 108.767L137.328 98.687C137.424 98.303 136.512 98.591 136.368 98.639C136.032 98.783 135.216 99.071 135.12 99.455Z" fill="#909090"/>
|
||||
<path d="M133.296 133.631C134.256 133.391 135.12 133.055 135.984 132.575C136.8 132.143 137.664 131.567 137.424 130.511C137.232 129.599 136.176 128.783 135.216 129.119C134.4 129.455 134.16 130.511 134.16 131.327C134.16 132.383 134.784 133.343 135.792 133.775C136.608 134.015 137.52 133.967 138.288 133.631C139.2 133.295 140.112 132.863 140.928 132.335C141.6 131.903 142.512 131.327 142.848 130.511C143.184 129.503 142.704 128.447 141.744 128.015C140.784 127.631 140.064 128.399 139.776 129.263C139.248 130.943 140.256 132.911 141.744 133.727C143.232 134.543 145.536 134.543 146.832 133.343C147.552 132.719 147.648 131.567 147.024 130.847C146.496 130.127 145.488 129.647 144.768 130.271C143.904 131.039 144.24 132.335 144.864 133.151C145.584 134.111 146.736 134.351 147.84 134.543C149.76 134.879 152.448 134.447 152.784 132.095C152.88 131.471 152.592 130.895 152.064 130.607C151.68 130.367 150.96 130.367 150.864 130.943C150.672 132.239 149.328 132.575 148.176 132.479C147.792 132.431 147.456 132.383 147.072 132.335C146.784 132.239 146.496 132.143 146.208 132.095C146.256 132.095 145.92 132.047 146.16 132.143C146.16 132.143 146.256 132.335 146.208 132.191C146.16 131.999 146.016 131.855 145.824 131.759C145.152 131.039 145.632 131.327 145.344 131.471C144.432 131.999 143.184 132.431 142.176 131.855C141.888 131.711 141.696 131.423 141.648 131.135C141.6 130.943 141.6 130.799 141.648 130.607C141.648 130.559 141.792 130.079 141.888 130.127L141.408 129.935C141.312 129.167 141.168 128.927 140.976 129.215C140.928 129.263 140.928 129.311 140.88 129.359C140.784 129.455 140.64 129.551 140.544 129.647C140.256 129.887 139.968 130.079 139.632 130.319C139.008 130.751 138.384 131.087 137.712 131.327C137.424 131.423 137.088 131.567 136.8 131.663C136.656 131.711 136.464 131.759 136.32 131.759C136.224 131.759 136.08 131.711 135.984 131.759C135.888 131.807 136.128 132.191 136.224 132.047C136.32 131.903 136.224 131.855 136.224 131.759C136.272 131.615 136.32 131.519 136.32 131.375L136.416 131.231C136.272 131.231 136.128 131.183 136.032 131.087L135.648 130.559L135.696 130.655L135.552 130.079C135.552 129.983 135.504 130.079 135.408 130.127C135.312 130.175 135.168 130.271 135.072 130.319C134.784 130.511 134.496 130.655 134.16 130.799C133.584 131.087 132.96 131.279 132.336 131.423C131.184 131.807 132.288 133.919 133.296 133.631Z" fill="#3D3D3D"/>
|
||||
<path d="M132.192 145.536C133.344 145.488 134.4 145.008 135.168 144.192C135.36 143.904 135.408 143.52 135.264 143.184C135.072 142.56 134.544 142.032 133.872 141.84C133.296 141.696 132.672 141.984 132.432 142.512C131.808 143.808 132.816 145.2 133.92 145.824C135.888 146.88 138.576 146.736 140.304 145.248C141.312 144.336 141.744 142.992 140.736 141.888C140.16 141.168 139.104 141.024 138.336 141.6C138.096 141.792 137.904 142.08 137.808 142.368C136.8 145.008 139.776 147.504 142.032 148.128C143.28 148.512 144.864 148.176 145.632 147.024C146.064 146.304 146.064 145.392 145.632 144.672C145.248 143.952 144.384 143.568 143.616 143.856C143.088 144.048 143.28 144.96 143.472 145.296C144.336 146.736 145.776 147.792 147.408 148.08C149.04 148.32 150.72 147.744 151.824 146.496C152.544 145.728 151.152 143.808 150.288 144.72C148.848 146.208 146.064 146.4 144.912 144.48L144.768 145.92L144.672 145.968L144.24 145.632C143.856 145.248 144.192 145.152 143.904 145.488C143.808 145.584 143.712 145.68 143.568 145.776C143.328 145.92 143.04 146.016 142.752 146.064C142.032 146.112 141.312 145.872 140.736 145.44C140.304 145.2 139.92 144.816 139.632 144.384C139.536 144.144 139.536 143.904 139.632 143.664C139.68 143.568 139.776 143.52 139.824 143.472H139.872C140.064 143.424 139.968 143.28 139.536 143.088L139.44 142.512C139.44 143.04 138.72 143.52 138.24 143.76C137.712 144.048 137.088 144.192 136.464 144.24C135.888 144.288 135.264 144.192 134.688 144.048C134.592 144.048 133.968 143.712 133.968 143.712C133.968 143.712 134.16 143.952 134.064 144.048C133.968 144 133.824 143.952 133.776 143.856L133.44 143.328L133.488 143.424L133.584 142.416C133.008 142.992 132.192 143.328 131.376 143.328C130.8 143.328 130.752 144.192 130.896 144.576C131.136 145.056 131.616 145.488 132.192 145.536Z" fill="#3D3D3D"/>
|
||||
<path d="M129.696 156.479L132.48 156.575C133.296 156.671 134.16 156.623 134.976 156.527C135.648 156.383 136.704 156.047 136.896 155.327C136.992 154.847 136.752 154.319 136.32 154.079C135.648 153.695 134.736 153.935 134.064 154.175C133.392 154.367 132.912 154.847 132.672 155.519C132.336 156.911 133.776 157.679 134.976 157.679C136.8 157.727 138.576 156.767 140.064 155.807C141.168 155.135 142.896 153.983 142.704 152.447C142.56 151.439 141.36 151.775 140.688 152.015C140.016 152.303 139.536 152.879 139.344 153.551C139.008 154.703 139.152 155.951 139.776 157.007C140.544 158.399 142.08 159.167 143.664 158.927C144.528 158.783 145.536 158.495 146.016 157.727C146.4 157.199 146.352 156.479 145.872 156.047C145.44 155.663 143.856 156.191 143.664 156.671C143.136 158.063 145.2 158.831 146.208 159.119C147.744 159.503 149.376 159.455 150.864 158.927C151.104 158.831 152.016 158.591 151.92 158.207C151.824 157.823 150.864 158.111 150.672 158.159C149.76 158.447 148.8 158.399 147.936 158.111C147.216 157.871 145.584 157.199 145.968 156.239L143.76 156.863C144 157.103 144.096 157.439 143.952 157.775C143.904 157.871 143.904 157.967 143.856 158.015C143.664 158.255 143.808 158.207 144.288 157.967C144.096 157.871 143.904 157.823 143.712 157.775C143.04 157.487 142.512 156.959 142.176 156.335C141.84 155.711 141.6 155.039 141.6 154.319C141.6 153.935 141.6 153.599 141.696 153.263C141.744 152.927 141.888 152.591 142.08 152.303L141.312 152.639L141.456 152.591L140.4 152.687L140.544 152.735L140.352 152.591C141.168 153.887 139.296 155.087 138.432 155.663C137.568 156.239 136.272 157.151 135.36 155.999C135.216 155.807 135.072 155.567 135.072 155.279C135.072 154.991 135.216 154.847 135.264 154.559C135.456 154.319 135.312 154.367 134.784 154.607C134.256 154.607 134.112 154.703 134.352 154.799C134.4 154.895 134.544 154.943 134.592 155.039C134.736 155.279 134.64 155.423 134.736 155.615C134.736 155.663 134.688 155.711 134.688 155.759L135.504 155.471C135.36 155.471 135.168 155.471 135.024 155.471L133.872 155.423L131.328 155.327C130.752 155.327 130.176 155.471 129.696 155.807C129.168 156.239 129.168 156.479 129.696 156.479Z" fill="#3D3D3D"/>
|
||||
<path d="M87.2641 89.3272L69.5041 80.8312C68.7361 80.4472 52.5601 116.111 52.1761 116.879C51.7921 117.647 77.7121 130.847 78.3841 129.455C79.0561 128.063 91.2481 104.111 91.2481 104.111C88.5601 99.9352 87.2641 89.3272 87.2641 89.3272Z" fill="white"/>
|
||||
<path d="M86.9281 88.5107L74.4481 82.5107C72.7201 81.6947 71.0401 80.7827 69.2641 80.0147C68.8321 79.8227 68.6401 79.9667 68.4001 80.3027C68.0641 80.7827 67.7761 81.3107 67.5361 81.7907C65.1841 86.1587 63.1201 90.7187 60.9601 95.2307C58.5121 100.463 56.1121 105.647 53.7121 110.927L51.6481 115.439L51.4081 115.919C51.4081 115.967 51.3601 116.015 51.3601 116.063V116.111C51.4561 115.871 51.3601 116.111 51.3601 116.159C51.4561 117.023 52.3201 117.647 52.9921 118.127C54.6721 119.231 56.4001 120.239 58.1761 121.103C60.7681 122.495 63.3601 123.839 66.0001 125.135C68.5441 126.383 71.1361 127.631 73.7281 128.735C74.7361 129.167 75.7921 129.599 76.8001 129.983C77.3761 130.223 78.0001 130.367 78.6241 130.463C79.0561 130.511 79.2481 130.415 79.4401 130.031L80.4001 128.159L83.8561 121.295L91.3441 106.559L92.1121 105.071C92.2561 104.783 92.2081 104.399 91.9681 104.159C91.5841 103.535 91.2961 102.863 91.0081 102.143C89.7121 98.8787 89.0401 95.3747 88.5121 91.9187C88.4161 91.2467 88.3201 90.5747 88.2241 89.9027C88.1761 89.3747 87.6001 88.8947 87.1681 88.6067C86.9281 88.4147 86.4001 88.2227 86.4481 88.7027C86.8801 92.5907 87.6961 96.4307 88.8961 100.127C89.3281 101.471 89.9041 102.719 90.6241 103.919L90.4801 103.247L85.9681 112.127C83.6161 116.735 81.3121 121.343 78.9601 125.951L78.0001 127.919C77.9041 128.111 77.8081 128.303 77.7121 128.495C77.6161 128.687 77.5201 128.735 77.6641 128.687C77.6161 128.687 77.5681 128.735 77.5201 128.735C77.3281 128.735 77.6161 128.783 77.3761 128.735C77.1361 128.687 76.8961 128.639 76.6561 128.543C75.9361 128.351 75.2161 128.063 74.5441 127.775C69.8401 125.903 65.3281 123.647 60.8641 121.343C58.8001 120.287 56.7361 119.183 54.7201 118.079L54.5761 117.983C54.4321 117.935 54.7201 118.079 54.5761 117.983L54.2881 117.791L53.8081 117.503C53.5201 117.311 53.2321 117.167 52.9441 116.975L52.6561 116.783L52.5121 116.687C52.4161 116.639 52.8001 116.879 52.6081 116.735C52.4161 116.591 52.7521 116.879 52.6561 116.783C52.8961 117.023 53.0401 117.359 53.1361 117.695C53.1361 117.791 53.0881 117.839 53.1361 117.647V117.599C53.1361 117.551 53.1841 117.503 53.1841 117.455C53.2801 117.311 53.3281 117.167 53.3761 117.023L54.0481 115.535C54.8161 113.807 55.6321 112.127 56.4001 110.399C58.6081 105.551 60.8641 100.751 63.1201 95.9507C65.0401 91.9187 66.9121 87.8387 68.9761 83.9027C69.2641 83.4227 69.5041 82.8947 69.7921 82.4147C69.8881 82.2707 70.2721 81.8867 70.2721 81.7907C70.2241 81.9347 69.6961 81.5987 69.8881 81.7907C69.9361 81.8387 70.0321 81.8867 70.0801 81.8867L70.8481 82.2707L73.4401 83.5187L86.6401 89.8547L87.5521 90.2867C87.9841 90.4787 88.1761 90.2387 87.9841 89.8547C87.8881 89.1827 87.4561 88.7507 86.9281 88.5107Z" fill="#CECECE"/>
|
||||
<path d="M81.9841 98.7351C81.9841 98.7351 86.8321 91.6311 87.2641 89.3271C88.2241 94.3671 89.5681 99.3111 91.2961 104.111L81.9841 98.7351Z" fill="white"/>
|
||||
<path d="M83.0402 98.9271C83.9042 97.6311 84.7682 96.3351 85.5362 95.0391C86.1602 93.9831 86.7842 92.9271 87.3602 91.8711C87.8402 91.1031 88.1762 90.2871 88.4162 89.3751L86.0642 89.5191C86.9762 94.5591 88.3202 99.5031 90.0962 104.303L92.2562 103.679L84.0962 98.9751L82.9442 98.3031C82.4162 98.0151 81.7922 98.0151 81.2642 98.2551C80.9282 98.3991 80.4482 98.9271 80.9762 99.2151L89.0882 103.919L90.2402 104.591C90.6722 104.831 91.1522 104.879 91.6322 104.735C91.8722 104.687 92.5442 104.351 92.4002 103.967C90.6722 99.1671 89.3282 94.2231 88.3682 89.1831C88.2242 88.3191 86.1602 88.5591 86.0162 89.3271C85.7762 90.1911 85.4402 90.9591 85.0082 91.7271C84.4802 92.7351 83.8562 93.7431 83.2802 94.7511C82.5122 96.0471 81.6962 97.2951 80.8322 98.5431C80.2562 99.5031 82.6082 99.5991 83.0402 98.9271Z" fill="#CECECE"/>
|
||||
<path d="M60.0482 114.767C61.3442 114.863 62.6882 114.623 63.8402 113.999C64.3682 113.711 64.8962 113.375 65.3282 112.943C65.9042 112.319 65.4722 111.599 64.8962 111.119C63.7922 110.159 62.5442 110.543 61.8722 111.791C61.2482 112.943 61.3442 114.335 62.1602 115.391C62.9282 116.495 64.3202 117.455 65.7122 117.359C66.2402 117.311 66.7682 117.119 67.2002 116.783C67.6322 116.495 68.1122 115.871 68.0162 115.295C67.7282 113.999 65.4722 112.943 64.8962 114.575C64.4162 115.919 65.8082 117.263 66.7682 117.983C67.9682 118.943 69.4562 119.423 70.9922 119.423C71.5682 119.423 72.4322 119.327 72.4802 118.559C72.5282 117.695 71.5202 116.927 70.8002 116.735C70.6562 116.687 70.3682 116.639 70.2722 116.783C69.6482 117.695 70.1762 118.847 70.8482 119.567C71.7122 120.383 72.7682 120.959 73.9202 121.151C74.4002 121.247 74.5922 121.007 74.4002 120.575C74.1122 120.047 73.6802 119.663 73.1042 119.471C72.6722 119.375 72.2882 119.183 71.9042 119.087C72.0962 119.279 72.0962 119.327 72.0002 119.183C71.9522 119.087 71.9522 118.991 71.9042 118.895C71.9042 118.655 71.9522 118.463 72.0962 118.271L71.5682 118.319L71.7122 118.367L70.9442 117.935L71.0402 118.031L70.5122 117.359C70.6082 117.551 69.2642 117.599 69.1682 117.599C68.6402 117.551 68.1602 117.455 67.6802 117.215C67.3922 117.071 67.1042 116.831 66.9122 116.591C66.7682 116.399 66.7202 116.159 66.8162 115.919C66.8642 115.775 66.9122 115.679 67.0082 115.535C67.2482 115.295 67.2962 115.535 66.9122 115.247L66.0962 114.383L66.1442 114.527L66.0482 114.143C66.0482 115.007 64.2722 116.111 63.6482 115.343C63.2642 114.863 63.4082 113.951 63.6482 113.423C63.7922 113.087 64.4162 112.079 64.8962 112.223L64.1282 111.791C63.9362 111.119 63.6962 110.975 63.4562 111.263C63.3602 111.359 63.2642 111.455 63.1682 111.503C63.0722 111.551 62.8802 111.743 62.7362 111.839C61.5842 112.655 60.1922 112.991 58.7522 112.895C58.2242 112.847 58.4162 113.471 58.6082 113.759C58.9922 114.287 59.4722 114.623 60.0482 114.767Z" fill="#CECECE"/>
|
||||
<path d="M67.4403 103.294C68.4003 102.67 69.3603 102.142 70.4163 101.758C71.2323 101.47 72.2403 101.23 73.0083 101.758C73.7763 102.238 74.2563 103.102 74.2083 104.062C74.1603 104.878 73.6323 105.838 72.8163 106.03L74.6883 106.414C74.3523 106.03 75.7443 105.166 75.9362 105.022C76.5603 104.638 77.2323 104.398 78.0003 104.302C78.1443 104.302 78.2883 104.302 78.3843 104.254C78.6243 104.254 78.6243 104.254 78.4803 104.254C78.3363 104.254 78.3363 104.254 78.4803 104.35C78.6243 104.686 78.8643 104.974 79.0083 105.31C79.2963 106.078 79.4883 106.894 79.5363 107.71C79.5843 108.43 81.9363 108.574 81.8883 108.046C81.8403 106.846 81.5043 105.646 80.8803 104.59C80.1123 103.438 78.5282 103.198 77.2322 103.246C76.0322 103.294 74.8323 103.582 73.8243 104.206C73.1523 104.638 71.7123 105.502 72.5283 106.414C72.9123 106.798 73.9203 106.894 74.4003 106.798C75.6483 106.558 76.5603 105.502 76.6083 104.254C76.6563 102.958 75.6963 101.854 74.6403 101.23C73.1523 100.462 71.4723 100.222 69.8403 100.558C68.2563 100.846 66.8162 101.662 65.4722 102.526C65.0402 102.766 65.5203 103.054 65.8083 103.198C66.1923 103.342 67.0083 103.534 67.4403 103.294Z" fill="#CECECE"/>
|
||||
<path d="M75.2642 97.9185C75.0242 98.3505 74.9762 98.8305 75.0722 99.3105C75.1682 99.9345 75.4082 100.463 75.8402 100.943C76.5122 101.711 77.5202 102.143 78.5762 102.095C79.5842 102.047 80.1122 101.087 80.2082 100.223C80.3042 99.3585 80.1122 98.4945 79.6802 97.7265C79.2002 96.8145 78.3842 96.1425 77.4242 95.8545C76.8962 95.7105 76.5602 96.2865 76.6562 96.7665C76.7042 97.3425 77.0882 97.8705 77.6642 98.1105L77.8082 98.1585C77.9522 98.2065 77.7602 98.1105 77.7122 98.1105C77.8082 98.1585 77.9042 98.2065 77.9522 98.2545L78.0482 98.3025C78.1922 98.3985 77.8562 98.1585 77.9522 98.2545L78.1442 98.4465C78.2402 98.5425 78.0482 98.3505 78.0482 98.3505C78.0962 98.3985 78.1442 98.4465 78.1442 98.4465C78.1442 98.4945 78.2402 98.6385 78.2882 98.6385C78.3362 98.6385 78.0962 98.3505 78.1922 98.5425C78.1922 98.5905 78.2402 98.6385 78.2402 98.6385L78.2882 98.7825C78.2882 98.7825 78.1922 98.4465 78.2402 98.6385C78.2402 98.7345 78.2882 98.7825 78.3362 98.8785C78.3842 99.0705 78.3362 98.7825 78.2882 98.7825C78.2402 98.7825 78.2882 98.8785 78.3362 98.9265C78.3362 99.0225 78.3362 99.1185 78.3362 99.2145C78.3362 99.1665 78.3362 98.9265 78.3362 99.1185C78.3362 99.1665 78.3362 99.2145 78.3362 99.2625C78.3362 99.3105 78.3362 99.3585 78.3362 99.4065C78.3362 99.7425 78.6242 99.9825 78.9602 99.9825C79.2962 99.9825 79.5362 99.6945 79.5362 99.3585C79.5362 99.0225 79.2482 98.7825 78.9122 98.7825C78.6242 98.7825 78.3362 99.0225 78.3362 99.3585C78.2882 99.4545 78.2882 99.5505 78.2402 99.5985C78.2402 99.6465 78.1922 99.6945 78.1922 99.7425C78.1442 99.8865 78.2882 99.6465 78.1922 99.7425C78.1442 99.8385 78.0482 99.8865 78.0002 99.9825L78.1922 99.8385C78.0962 99.8865 78.0002 99.9345 77.9042 99.9825L78.0962 99.9345C78.0002 99.9345 77.9042 99.9825 77.8082 99.9825C77.7602 99.9825 77.5202 99.9825 77.6642 99.9825H77.5202L77.2802 99.9345L77.0882 99.8865L76.9922 99.8385C77.1362 99.8865 77.1362 99.8865 77.0402 99.8385C76.9442 99.7905 76.9442 99.7905 76.8962 99.7425L76.8002 99.6945C76.9442 99.7905 76.9442 99.7905 76.8962 99.7425C76.8482 99.6945 76.6562 99.5505 76.8002 99.6945C76.9442 99.8385 76.8002 99.6465 76.7522 99.6465C76.8482 99.8385 76.8962 99.8865 76.8482 99.7425C76.8482 99.6945 76.8002 99.6945 76.8002 99.6465L76.8962 99.8385C76.8962 99.7905 76.8482 99.7425 76.8482 99.7425C76.8002 99.5505 76.8962 100.031 76.8482 99.7425C76.8002 99.5505 76.8002 99.9825 76.8482 99.7905V99.6945C76.8002 99.8385 76.8002 99.8865 76.8482 99.7905C76.8962 99.6945 76.8962 99.6465 76.9442 99.5985C77.0402 99.3585 77.0402 99.0705 76.9442 98.7825C76.8482 98.4945 76.7042 98.2065 76.4642 98.0145C76.2722 97.8225 76.0322 97.7265 75.7922 97.7265C75.5522 97.5825 75.3602 97.7265 75.2642 97.9185Z" fill="#CECECE"/>
|
||||
<path d="M156.384 80.543L143.808 93.023C143.232 93.599 168.576 118.079 169.152 118.655C169.728 119.231 188.736 101.231 187.776 100.223C186.816 99.215 170.16 81.647 170.16 81.647C165.744 82.655 156.384 80.543 156.384 80.543Z" fill="white"/>
|
||||
<path d="M155.568 79.6313L146.688 88.4153C145.488 89.6153 144.144 90.7673 143.04 92.0633C142.272 92.9273 143.808 94.3193 144.384 94.9433C147.36 98.2553 150.576 101.375 153.744 104.495C157.44 108.143 161.136 111.791 164.88 115.439L168.144 118.607C168.384 118.847 168.624 119.087 168.912 119.327C169.584 119.855 170.064 119.615 170.64 119.183C172.032 118.127 173.328 117.023 174.576 115.823C176.544 114.047 178.512 112.223 180.384 110.351C182.208 108.575 184.032 106.799 185.76 104.927C186.384 104.255 187.056 103.535 187.632 102.815C188.064 102.383 188.4 101.855 188.688 101.327C189.168 100.175 187.728 99.1193 187.008 98.3513C185.424 96.7193 183.888 95.0393 182.304 93.4073C178.848 89.7593 175.392 86.1113 171.936 82.4633L170.832 81.3113C170.64 81.1193 170.448 80.9273 170.256 80.7833C169.824 80.5433 169.392 80.7353 168.912 80.7833C168.576 80.8313 168.192 80.8793 167.856 80.8793C164.64 81.0713 161.328 80.5433 158.208 79.9673C157.584 79.8713 156.912 79.7273 156.288 79.5833C155.808 79.4873 155.424 79.7273 155.52 80.2553C155.664 80.8313 156.096 81.3113 156.672 81.5033C158.496 81.9353 160.32 82.2233 162.144 82.4633C164.976 82.8473 168.048 83.2313 170.88 82.6073L169.728 82.0793L175.824 88.5593C179.04 91.9193 182.208 95.2793 185.376 98.6393C185.856 99.1193 186.288 99.5993 186.768 100.127C186.912 100.271 187.008 100.415 187.152 100.559C187.2 100.607 187.2 100.655 187.248 100.655C187.056 100.415 186.912 100.127 186.864 99.7913C186.816 99.8393 186.768 99.9353 186.768 100.031C186.768 100.127 186.672 100.223 186.624 100.271L186.528 100.415C186.576 100.319 186.576 100.367 186.48 100.463C186.048 101.039 185.568 101.615 185.088 102.143C182.064 105.551 178.752 108.719 175.44 111.791C173.952 113.183 172.416 114.575 170.88 115.919C170.352 116.351 169.872 116.783 169.296 117.215C169.104 117.359 168.96 117.455 168.768 117.599C168.576 117.743 168.912 117.599 168.768 117.599C168.624 117.599 168.768 117.599 168.864 117.599C169.632 117.743 170.064 118.415 169.632 117.983C169.536 117.887 169.44 117.791 169.344 117.695L168.288 116.639C167.088 115.487 165.888 114.287 164.688 113.135C161.28 109.823 157.92 106.463 154.512 103.151C151.632 100.271 148.752 97.4393 145.968 94.4633C145.584 94.0793 145.248 93.6473 144.912 93.2633L144.72 93.0713C144.624 92.9753 144.96 93.3593 144.768 93.1193C144.72 93.0713 144.72 93.0233 144.672 92.9753C144.768 93.1193 144.816 93.2153 144.816 93.3593C144.816 93.3593 144.816 93.9833 144.672 93.9353L144.72 93.8873C144.768 93.8393 144.816 93.7913 144.864 93.7433L145.392 93.2153L147.216 91.4393L156.576 82.1753L157.248 81.5033C157.92 80.7353 156.288 78.9593 155.568 79.6313Z" fill="#CECECE"/>
|
||||
<path d="M162.72 87.887C162.72 87.887 158.16 81.647 156.384 80.543C160.944 81.263 165.552 81.599 170.112 81.599L162.72 87.887Z" fill="white"/>
|
||||
<path d="M162.816 87.4552C161.952 86.3032 161.088 85.1512 160.176 84.0472C159.456 83.1352 158.688 82.2232 157.92 81.4072C157.344 80.7352 156.672 80.1112 155.952 79.6312L156.912 81.5992C161.472 82.3192 166.08 82.7032 170.64 82.6552L169.44 80.6392L162.048 86.8792C161.616 87.2632 163.008 89.1832 163.344 88.8952L170.736 82.6552C171.12 82.3192 169.968 80.6392 169.536 80.6392C164.928 80.6392 160.32 80.3032 155.808 79.5832C155.424 79.5352 155.808 80.3032 155.856 80.3992C156.048 80.8792 156.384 81.2632 156.768 81.5992C157.008 81.7432 157.248 81.9352 157.44 82.1272C157.68 82.3672 157.968 82.6552 158.256 82.9912C158.928 83.7592 159.552 84.4792 160.176 85.2952C160.992 86.3032 161.808 87.3592 162.576 88.4152C162.672 88.5592 163.152 89.2312 163.392 88.8952C163.632 88.5592 162.96 87.6472 162.816 87.4552Z" fill="#CECECE"/>
|
||||
<path d="M168.816 112.656C169.056 112.176 169.344 111.696 169.68 111.264C170.352 110.4 171.12 109.68 171.984 109.008C172.416 108.672 172.896 108.384 173.376 108.144C173.136 108.624 172.848 109.104 172.512 109.536C172.176 109.968 171.84 110.352 171.456 110.736C171.072 111.12 170.688 111.456 170.256 111.792C169.776 112.176 169.344 112.464 168.816 112.656Z" fill="white"/>
|
||||
<path d="M154.848 92.5432C155.376 91.9192 155.952 91.3432 156.528 90.7672C156.816 90.4792 157.104 90.2392 157.392 89.9512L157.872 89.5192L158.112 89.3272L158.208 89.2312C158.016 89.4232 158.16 89.2792 158.208 89.2312C158.352 89.1352 158.592 88.9432 158.592 88.7512C158.592 88.6072 158.496 88.4632 158.352 88.4632C158.112 88.4152 157.824 88.4632 157.584 88.5592C157.296 88.6552 157.008 88.7992 156.768 88.9912C155.472 90.1432 154.224 91.3432 153.024 92.6392C152.928 92.7352 152.784 92.9272 152.832 93.0712C152.88 93.2152 153.168 93.2632 153.312 93.2632C153.6 93.2632 153.888 93.1672 154.128 93.0712C154.464 92.9272 154.704 92.7832 154.848 92.5432Z" fill="#909090"/>
|
||||
<path d="M155.232 90.7191C156.528 92.3511 157.92 93.9351 159.408 95.4711C159.792 95.8551 160.272 96.1911 160.8 96.3831C160.944 96.4311 161.184 96.6231 161.328 96.5751C161.472 96.5271 161.376 96.4311 161.328 96.3831C159.888 94.8471 158.496 93.3111 157.152 91.6311C157.008 91.4391 156.816 91.2951 156.576 91.1511C156.336 90.9591 156.048 90.8151 155.76 90.7191C155.616 90.5751 154.944 90.3351 155.232 90.7191Z" fill="#909090"/>
|
||||
<path d="M161.616 104.544C162.144 104.208 162.432 103.632 162.432 103.008C162.336 102.144 161.76 101.376 160.992 100.944C160.272 100.56 160.08 101.376 160.272 101.952C160.56 102.768 161.28 103.392 162.096 103.584C163.2 103.872 164.4 103.392 164.976 102.336C165.552 101.088 164.832 99.5039 163.872 98.6399C163.728 98.4959 163.152 98.0159 162.912 98.2559C162.288 98.9279 163.152 100.032 163.632 100.512C164.16 101.04 164.832 101.424 165.6 101.52C166.848 101.616 167.952 100.704 168.048 99.4559C168.048 99.3119 168.048 99.1679 168.048 99.0239L167.424 99.2639C168.096 99.6479 168.912 99.5519 169.488 99.0239C170.016 98.3519 170.064 97.4399 169.632 96.7199L169.536 97.5359C170.544 97.6319 171.552 97.1999 172.224 96.4319C172.752 95.8559 171.168 94.0799 170.736 94.5599C170.16 95.2799 169.248 95.6159 168.336 95.5679C167.952 95.5199 168.144 96.2399 168.24 96.3839C168.528 96.9599 167.664 97.7759 167.04 97.4879C166.8 97.3919 166.416 97.3439 166.416 97.7279C166.464 98.3519 166.128 98.9759 165.6 99.3119C165.36 99.4559 165.072 99.5519 164.736 99.5519C164.592 99.5519 164.448 99.5039 164.304 99.5039C164.208 99.5039 164.16 99.4559 164.112 99.4079C163.872 99.2639 163.968 99.4559 164.496 100.128L163.536 99.7439C163.824 99.9839 163.488 99.6959 163.488 99.6959C163.536 99.8399 163.536 100.032 163.536 100.176C163.488 100.56 163.296 100.896 163.056 101.136C162.768 101.376 162.432 101.568 162.048 101.616C161.808 101.664 161.376 101.712 161.184 101.568L161.808 102.24L161.952 102.768L161.568 102.672C161.136 101.712 160.896 101.472 160.8 101.904C160.752 102 160.704 102.096 160.656 102.192C160.512 102.336 160.368 102.48 160.224 102.624C159.552 103.2 161.088 105.024 161.616 104.544Z" fill="#CECECE"/>
|
||||
<path d="M166.32 109.247C166.656 108.959 167.04 108.671 167.328 108.335C167.664 108.047 167.952 107.759 168.192 107.375C168.672 106.415 167.28 105.983 166.608 105.839C166.224 105.791 165.792 105.791 165.408 105.935C165.216 105.983 164.784 106.175 164.832 106.463C165.024 107.471 166.08 107.903 166.992 107.951C168 108.047 169.248 107.759 169.92 106.991C170.448 106.367 170.64 105.551 170.448 104.735C170.16 103.919 169.536 103.247 168.72 102.959C168.288 102.815 167.856 102.815 167.424 102.959C167.184 103.055 166.704 103.199 166.704 103.535C166.704 105.167 168.864 105.503 170.064 105.407C171.264 105.311 173.424 104.687 173.04 103.055L170.688 103.391C171.072 104.063 172.176 104.063 172.848 103.919C173.568 103.775 174.144 103.295 174.336 102.575C174.624 101.759 172.224 101.759 171.984 102.479C171.936 102.623 171.888 102.767 171.792 102.863C171.6 103.247 171.504 102.911 172.176 102.863L172.8 102.911C172.896 102.911 173.04 103.103 172.896 102.911C172.656 102.527 171.888 102.575 171.552 102.623C171.312 102.671 170.448 102.815 170.544 103.247C170.64 103.535 170.544 103.871 170.352 104.111C170.304 104.207 170.208 104.255 170.112 104.303C169.968 104.351 170.208 104.303 170.016 104.303C169.824 104.303 170.256 104.303 169.92 104.303C170.112 104.303 169.68 104.255 169.776 104.303C169.68 104.303 169.536 104.255 169.488 104.207C169.2 104.015 169.056 103.679 169.056 103.343L167.04 103.871C167.904 104.303 168.288 105.263 168 106.175C167.904 106.415 167.808 106.607 167.664 106.751C167.616 106.799 167.52 106.847 167.472 106.895C167.52 106.847 167.28 106.895 167.424 106.895H167.664C167.712 106.847 167.664 106.895 167.568 106.847C167.376 106.703 167.232 106.511 167.184 106.319L165.408 106.943C165.552 106.991 165.696 106.943 165.792 107.135C165.888 107.327 165.648 107.519 165.504 107.663C165.072 108.095 164.592 108.527 164.112 108.911C163.68 109.247 164.304 109.583 164.592 109.631C165.264 109.679 165.84 109.535 166.32 109.247Z" fill="#CECECE"/>
|
||||
<path d="M176.688 101.52C176.688 101.472 176.688 101.424 176.688 101.376V101.424C176.688 101.232 176.784 101.088 176.88 100.944C176.88 100.896 176.88 100.848 176.88 100.848C176.832 100.752 176.832 100.704 176.784 100.608C176.736 100.512 176.64 100.368 176.592 100.272C176.544 100.176 176.448 99.9836 176.352 99.8876C176.208 99.6476 176.016 99.4076 175.824 99.2156L175.68 99.0716C175.632 99.0236 175.584 98.9756 175.536 98.9756C175.392 99.1676 175.344 99.4076 175.344 99.6476C175.344 99.6956 175.392 99.7916 175.44 99.8396C175.488 99.9356 175.536 100.032 175.584 100.128C175.728 100.416 175.92 100.656 176.112 100.896L176.304 101.136C176.4 101.232 176.496 101.376 176.592 101.472L176.688 101.52C176.736 101.568 176.688 101.568 176.688 101.52Z" fill="#CECECE"/>
|
||||
<path d="M89.9999 157.631C89.9999 157.631 169.488 156.095 171.744 158.831C174 161.567 160.512 209.231 157.344 210.863C154.176 212.495 76.7039 210.863 76.7039 210.863C76.7039 210.863 86.2079 157.679 89.9999 157.631Z" fill="#909090"/>
|
||||
<mask id="path-35-outside-1_11677_231033" maskUnits="userSpaceOnUse" x="93.6895" y="177.916" width="64" height="13" fill="black">
|
||||
<rect fill="white" x="93.6895" y="177.916" width="64" height="13"/>
|
||||
<path d="M94.6895 189.751V179.165H97.9742C98.5657 179.165 99.1002 179.305 99.5776 179.585C100.055 179.866 100.434 180.244 100.714 180.722C100.994 181.199 101.134 181.734 101.134 182.325C101.134 182.906 100.994 183.441 100.714 183.929C100.434 184.406 100.055 184.785 99.5776 185.065C99.1002 185.345 98.5657 185.485 97.9742 185.485H95.9348V189.751H94.6895ZM95.9348 184.349H97.9275C98.2907 184.349 98.6176 184.261 98.9082 184.084C99.2092 183.898 99.4479 183.649 99.6243 183.337C99.8111 183.026 99.9045 182.689 99.9045 182.325C99.9045 181.952 99.8111 181.614 99.6243 181.313C99.4479 181.002 99.2092 180.758 98.9082 180.582C98.6176 180.395 98.2907 180.302 97.9275 180.302H95.9348V184.349Z"/>
|
||||
<path d="M109.444 190L107.903 185.921C107.809 185.662 107.711 185.485 107.607 185.392C107.503 185.288 107.358 185.231 107.171 185.221H104.789V189.751H103.544V179.165H107.171C107.732 179.165 108.24 179.3 108.697 179.57C109.164 179.84 109.532 180.208 109.802 180.675C110.072 181.132 110.207 181.64 110.207 182.201C110.207 182.813 110.041 183.368 109.709 183.866C109.387 184.354 108.967 184.717 108.448 184.956C108.78 185.081 109.013 185.33 109.148 185.703L110.627 189.626L109.444 190ZM104.789 184.131H107.109C107.451 184.131 107.763 184.043 108.043 183.866C108.323 183.69 108.546 183.457 108.712 183.166C108.878 182.865 108.961 182.543 108.961 182.201C108.961 181.848 108.878 181.531 108.712 181.251C108.546 180.961 108.323 180.732 108.043 180.566C107.763 180.39 107.451 180.302 107.109 180.302H104.789V184.131Z"/>
|
||||
<path d="M117.323 190C115.922 190 114.827 189.512 114.038 188.537C113.26 187.561 112.87 186.202 112.87 184.458C112.87 182.714 113.26 181.355 114.038 180.379C114.827 179.404 115.922 178.916 117.323 178.916C118.257 178.916 119.056 179.139 119.72 179.585C120.395 180.021 120.908 180.654 121.261 181.485C121.625 182.305 121.806 183.296 121.806 184.458C121.806 185.61 121.625 186.601 121.261 187.431C120.908 188.262 120.395 188.9 119.72 189.346C119.056 189.782 118.257 190 117.323 190ZM117.323 188.864C118.34 188.864 119.134 188.474 119.705 187.696C120.275 186.918 120.561 185.838 120.561 184.458C120.561 183.078 120.275 181.998 119.705 181.22C119.134 180.442 118.34 180.052 117.323 180.052C116.316 180.052 115.527 180.442 114.956 181.22C114.396 181.988 114.116 183.067 114.116 184.458C114.116 185.838 114.396 186.918 114.956 187.696C115.527 188.474 116.316 188.864 117.323 188.864Z"/>
|
||||
<path d="M126.349 190C125.218 190 124.273 189.621 123.516 188.864L124.201 187.992C124.502 188.272 124.824 188.49 125.166 188.646C125.509 188.801 125.846 188.879 126.178 188.879C127.226 188.879 127.75 188.173 127.75 186.762V179.165H128.996V186.762C128.996 187.748 128.757 188.537 128.28 189.128C127.802 189.709 127.159 190 126.349 190Z"/>
|
||||
<path d="M132.308 189.751V179.165H138.068V180.286H133.553V183.898H137.243V185.018H133.553V188.63H138.379V189.751H132.308Z"/>
|
||||
<path d="M145.194 190C143.793 190 142.698 189.512 141.909 188.537C141.131 187.561 140.742 186.202 140.742 184.458C140.742 182.714 141.131 181.355 141.909 180.379C142.698 179.404 143.793 178.916 145.194 178.916C146.159 178.916 147.046 179.16 147.856 179.648L147.42 180.691C146.745 180.265 146.003 180.052 145.194 180.052C144.187 180.052 143.398 180.442 142.828 181.22C142.267 181.988 141.987 183.067 141.987 184.458C141.987 185.838 142.267 186.918 142.828 187.696C143.398 188.474 144.187 188.864 145.194 188.864C145.609 188.864 146.024 188.806 146.439 188.692C146.854 188.578 147.233 188.417 147.576 188.21L148.121 189.175C147.228 189.725 146.252 190 145.194 190Z"/>
|
||||
<path d="M152.249 189.751V180.286H149.291V179.165H156.452V180.286H153.494V189.751H152.249Z"/>
|
||||
</mask>
|
||||
<path d="M94.6895 189.751V179.165H97.9742C98.5657 179.165 99.1002 179.305 99.5776 179.585C100.055 179.866 100.434 180.244 100.714 180.722C100.994 181.199 101.134 181.734 101.134 182.325C101.134 182.906 100.994 183.441 100.714 183.929C100.434 184.406 100.055 184.785 99.5776 185.065C99.1002 185.345 98.5657 185.485 97.9742 185.485H95.9348V189.751H94.6895ZM95.9348 184.349H97.9275C98.2907 184.349 98.6176 184.261 98.9082 184.084C99.2092 183.898 99.4479 183.649 99.6243 183.337C99.8111 183.026 99.9045 182.689 99.9045 182.325C99.9045 181.952 99.8111 181.614 99.6243 181.313C99.4479 181.002 99.2092 180.758 98.9082 180.582C98.6176 180.395 98.2907 180.302 97.9275 180.302H95.9348V184.349Z" fill="white"/>
|
||||
<path d="M109.444 190L107.903 185.921C107.809 185.662 107.711 185.485 107.607 185.392C107.503 185.288 107.358 185.231 107.171 185.221H104.789V189.751H103.544V179.165H107.171C107.732 179.165 108.24 179.3 108.697 179.57C109.164 179.84 109.532 180.208 109.802 180.675C110.072 181.132 110.207 181.64 110.207 182.201C110.207 182.813 110.041 183.368 109.709 183.866C109.387 184.354 108.967 184.717 108.448 184.956C108.78 185.081 109.013 185.33 109.148 185.703L110.627 189.626L109.444 190ZM104.789 184.131H107.109C107.451 184.131 107.763 184.043 108.043 183.866C108.323 183.69 108.546 183.457 108.712 183.166C108.878 182.865 108.961 182.543 108.961 182.201C108.961 181.848 108.878 181.531 108.712 181.251C108.546 180.961 108.323 180.732 108.043 180.566C107.763 180.39 107.451 180.302 107.109 180.302H104.789V184.131Z" fill="white"/>
|
||||
<path d="M117.323 190C115.922 190 114.827 189.512 114.038 188.537C113.26 187.561 112.87 186.202 112.87 184.458C112.87 182.714 113.26 181.355 114.038 180.379C114.827 179.404 115.922 178.916 117.323 178.916C118.257 178.916 119.056 179.139 119.72 179.585C120.395 180.021 120.908 180.654 121.261 181.485C121.625 182.305 121.806 183.296 121.806 184.458C121.806 185.61 121.625 186.601 121.261 187.431C120.908 188.262 120.395 188.9 119.72 189.346C119.056 189.782 118.257 190 117.323 190ZM117.323 188.864C118.34 188.864 119.134 188.474 119.705 187.696C120.275 186.918 120.561 185.838 120.561 184.458C120.561 183.078 120.275 181.998 119.705 181.22C119.134 180.442 118.34 180.052 117.323 180.052C116.316 180.052 115.527 180.442 114.956 181.22C114.396 181.988 114.116 183.067 114.116 184.458C114.116 185.838 114.396 186.918 114.956 187.696C115.527 188.474 116.316 188.864 117.323 188.864Z" fill="white"/>
|
||||
<path d="M126.349 190C125.218 190 124.273 189.621 123.516 188.864L124.201 187.992C124.502 188.272 124.824 188.49 125.166 188.646C125.509 188.801 125.846 188.879 126.178 188.879C127.226 188.879 127.75 188.173 127.75 186.762V179.165H128.996V186.762C128.996 187.748 128.757 188.537 128.28 189.128C127.802 189.709 127.159 190 126.349 190Z" fill="white"/>
|
||||
<path d="M132.308 189.751V179.165H138.068V180.286H133.553V183.898H137.243V185.018H133.553V188.63H138.379V189.751H132.308Z" fill="white"/>
|
||||
<path d="M145.194 190C143.793 190 142.698 189.512 141.909 188.537C141.131 187.561 140.742 186.202 140.742 184.458C140.742 182.714 141.131 181.355 141.909 180.379C142.698 179.404 143.793 178.916 145.194 178.916C146.159 178.916 147.046 179.16 147.856 179.648L147.42 180.691C146.745 180.265 146.003 180.052 145.194 180.052C144.187 180.052 143.398 180.442 142.828 181.22C142.267 181.988 141.987 183.067 141.987 184.458C141.987 185.838 142.267 186.918 142.828 187.696C143.398 188.474 144.187 188.864 145.194 188.864C145.609 188.864 146.024 188.806 146.439 188.692C146.854 188.578 147.233 188.417 147.576 188.21L148.121 189.175C147.228 189.725 146.252 190 145.194 190Z" fill="white"/>
|
||||
<path d="M152.249 189.751V180.286H149.291V179.165H156.452V180.286H153.494V189.751H152.249Z" fill="white"/>
|
||||
<path d="M94.6895 189.751V179.165H97.9742C98.5657 179.165 99.1002 179.305 99.5776 179.585C100.055 179.866 100.434 180.244 100.714 180.722C100.994 181.199 101.134 181.734 101.134 182.325C101.134 182.906 100.994 183.441 100.714 183.929C100.434 184.406 100.055 184.785 99.5776 185.065C99.1002 185.345 98.5657 185.485 97.9742 185.485H95.9348V189.751H94.6895ZM95.9348 184.349H97.9275C98.2907 184.349 98.6176 184.261 98.9082 184.084C99.2092 183.898 99.4479 183.649 99.6243 183.337C99.8111 183.026 99.9045 182.689 99.9045 182.325C99.9045 181.952 99.8111 181.614 99.6243 181.313C99.4479 181.002 99.2092 180.758 98.9082 180.582C98.6176 180.395 98.2907 180.302 97.9275 180.302H95.9348V184.349Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M109.444 190L107.903 185.921C107.809 185.662 107.711 185.485 107.607 185.392C107.503 185.288 107.358 185.231 107.171 185.221H104.789V189.751H103.544V179.165H107.171C107.732 179.165 108.24 179.3 108.697 179.57C109.164 179.84 109.532 180.208 109.802 180.675C110.072 181.132 110.207 181.64 110.207 182.201C110.207 182.813 110.041 183.368 109.709 183.866C109.387 184.354 108.967 184.717 108.448 184.956C108.78 185.081 109.013 185.33 109.148 185.703L110.627 189.626L109.444 190ZM104.789 184.131H107.109C107.451 184.131 107.763 184.043 108.043 183.866C108.323 183.69 108.546 183.457 108.712 183.166C108.878 182.865 108.961 182.543 108.961 182.201C108.961 181.848 108.878 181.531 108.712 181.251C108.546 180.961 108.323 180.732 108.043 180.566C107.763 180.39 107.451 180.302 107.109 180.302H104.789V184.131Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M117.323 190C115.922 190 114.827 189.512 114.038 188.537C113.26 187.561 112.87 186.202 112.87 184.458C112.87 182.714 113.26 181.355 114.038 180.379C114.827 179.404 115.922 178.916 117.323 178.916C118.257 178.916 119.056 179.139 119.72 179.585C120.395 180.021 120.908 180.654 121.261 181.485C121.625 182.305 121.806 183.296 121.806 184.458C121.806 185.61 121.625 186.601 121.261 187.431C120.908 188.262 120.395 188.9 119.72 189.346C119.056 189.782 118.257 190 117.323 190ZM117.323 188.864C118.34 188.864 119.134 188.474 119.705 187.696C120.275 186.918 120.561 185.838 120.561 184.458C120.561 183.078 120.275 181.998 119.705 181.22C119.134 180.442 118.34 180.052 117.323 180.052C116.316 180.052 115.527 180.442 114.956 181.22C114.396 181.988 114.116 183.067 114.116 184.458C114.116 185.838 114.396 186.918 114.956 187.696C115.527 188.474 116.316 188.864 117.323 188.864Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M126.349 190C125.218 190 124.273 189.621 123.516 188.864L124.201 187.992C124.502 188.272 124.824 188.49 125.166 188.646C125.509 188.801 125.846 188.879 126.178 188.879C127.226 188.879 127.75 188.173 127.75 186.762V179.165H128.996V186.762C128.996 187.748 128.757 188.537 128.28 189.128C127.802 189.709 127.159 190 126.349 190Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M132.308 189.751V179.165H138.068V180.286H133.553V183.898H137.243V185.018H133.553V188.63H138.379V189.751H132.308Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M145.194 190C143.793 190 142.698 189.512 141.909 188.537C141.131 187.561 140.742 186.202 140.742 184.458C140.742 182.714 141.131 181.355 141.909 180.379C142.698 179.404 143.793 178.916 145.194 178.916C146.159 178.916 147.046 179.16 147.856 179.648L147.42 180.691C146.745 180.265 146.003 180.052 145.194 180.052C144.187 180.052 143.398 180.442 142.828 181.22C142.267 181.988 141.987 183.067 141.987 184.458C141.987 185.838 142.267 186.918 142.828 187.696C143.398 188.474 144.187 188.864 145.194 188.864C145.609 188.864 146.024 188.806 146.439 188.692C146.854 188.578 147.233 188.417 147.576 188.21L148.121 189.175C147.228 189.725 146.252 190 145.194 190Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M152.249 189.751V180.286H149.291V179.165H156.452V180.286H153.494V189.751H152.249Z" stroke="white" stroke-width="1.06095" mask="url(#path-35-outside-1_11677_231033)"/>
|
||||
<path d="M89.9519 158.591L93.4079 158.543C96.4799 158.495 99.5039 158.447 102.576 158.399C106.896 158.351 111.216 158.303 115.584 158.255C120.576 158.207 125.52 158.207 130.512 158.159C135.504 158.111 140.448 158.159 145.488 158.207L149.04 158.255H149.664H150.576L152.208 158.303C154.272 158.351 156.336 158.399 158.4 158.447C161.52 158.543 164.64 158.687 167.76 158.975C168.672 159.071 169.536 159.215 170.448 159.359C170.64 159.407 170.16 159.263 170.4 159.359L170.592 159.407C170.688 159.455 170.784 159.503 170.88 159.503C171.024 159.503 170.592 159.311 170.784 159.455C170.832 159.551 170.976 159.599 170.784 159.455C170.688 159.359 170.736 159.359 170.784 159.455C170.688 159.263 170.736 159.215 170.736 159.407C170.736 159.455 170.784 159.551 170.784 159.599C170.784 159.359 170.88 159.887 170.784 159.599C170.784 159.839 170.832 159.983 170.832 160.175C170.832 160.703 170.784 161.279 170.736 161.807C170.688 162.527 170.544 163.247 170.448 163.919C170.304 164.927 170.208 165.407 170.016 166.367C169.152 170.879 168.048 175.391 166.848 179.807C165.552 184.799 164.112 189.791 162.576 194.735C161.328 198.671 160.08 202.607 158.496 206.447C158.256 207.119 157.968 207.743 157.632 208.367C157.584 208.463 157.392 208.847 157.536 208.559L157.344 208.943C157.248 209.135 157.104 209.375 157.008 209.567C156.912 209.759 156.816 209.855 156.72 209.999C156.624 210.143 156.96 209.759 156.768 209.951C156.672 210.047 156.528 210.143 156.864 209.903C156.624 210.047 157.248 209.807 156.912 209.855L156.768 209.903C156.48 209.999 157.056 209.855 156.864 209.903C154.848 210.143 152.832 210.239 150.816 210.335C147.072 210.431 143.376 210.479 139.632 210.479C134.928 210.479 130.224 210.479 125.472 210.479C120.336 210.431 115.248 210.383 110.112 210.335C105.216 210.287 100.752 210.191 95.9519 210.143C92.1119 210.095 88.2719 209.999 84.3839 209.951L77.7599 209.807H76.8959L77.7119 210.911C78.0479 209.183 78.3359 207.455 78.6719 205.679C79.4399 201.503 80.2559 197.279 81.1199 193.103C82.1279 188.015 83.2319 182.927 84.3839 177.839C85.3919 173.375 86.4479 168.911 87.7919 164.495C88.2239 163.007 88.7519 161.519 89.3279 160.031C89.4239 159.743 89.5679 159.503 89.7119 159.215C89.8079 159.023 89.6639 159.311 89.6639 159.263C89.6639 159.215 89.7119 159.167 89.7599 159.119L89.9519 158.831C90.0479 158.639 90.1919 158.495 90.2879 158.351C90.3839 158.207 90.0479 158.591 90.2399 158.399C90.3359 158.303 90.5759 158.159 90.1919 158.399C90.3839 158.255 90.1439 158.399 90.0479 158.447C90.3359 158.495 89.7119 158.591 89.9519 158.591C90.5759 158.543 91.0559 158.063 91.1519 157.487C91.1519 156.863 90.5279 156.623 89.9999 156.623C88.9439 156.671 88.2239 157.679 87.7919 158.495C87.1679 159.791 86.6399 161.087 86.2079 162.479C84.8159 166.655 83.8079 170.927 82.7999 175.151C81.5999 180.287 80.4959 185.471 79.4399 190.655C78.5279 195.119 77.6639 199.631 76.7999 204.095C76.3679 206.255 75.9839 208.463 75.5999 210.623V210.719C75.4559 211.199 75.7439 211.679 76.2239 211.823C76.2719 211.823 76.3679 211.871 76.4159 211.871L80.0639 211.919C83.2799 211.967 86.4479 212.063 89.6639 212.111C94.1759 212.207 98.7359 212.255 103.248 212.351C108.336 212.399 113.424 212.495 118.464 212.543C123.552 212.591 128.592 212.639 133.584 212.639C137.856 212.639 142.176 212.639 146.448 212.591C149.328 212.543 152.16 212.495 155.04 212.303C155.856 212.255 156.624 212.159 157.392 211.967C158.16 211.727 158.784 211.199 159.168 210.479C159.84 209.327 160.368 208.127 160.848 206.927C161.568 205.199 162.192 203.423 162.816 201.647C164.448 196.991 165.84 192.287 167.184 187.535C168.576 182.639 169.92 177.695 171.072 172.703C171.936 169.055 172.8 165.311 173.184 161.519C173.28 160.607 173.376 159.551 173.088 158.687C172.8 158.063 172.224 157.679 171.6 157.583C169.392 157.007 166.992 156.911 164.736 156.815C160.896 156.575 157.056 156.479 153.264 156.431C148.416 156.335 143.568 156.287 138.768 156.287C133.632 156.287 128.544 156.287 123.408 156.287C118.608 156.335 113.856 156.335 109.056 156.431C105.216 156.479 101.424 156.527 97.5839 156.575L91.0079 156.671H90.1439C89.5199 156.671 89.0399 157.151 88.9439 157.775C88.7999 158.399 89.4239 158.591 89.9519 158.591Z" fill="#909090"/>
|
||||
<path d="M167.76 153.264C167.76 153.264 178.56 150.768 181.44 160.224C184.32 169.68 175.248 176.64 165.984 172.608C156.72 168.576 159.408 155.04 167.76 153.264Z" fill="#3D3D3D"/>
|
||||
<path d="M168.048 154.271C168.24 154.223 168.432 154.175 168.624 154.175L168.96 154.127H168.864L169.104 154.079C169.392 154.031 169.728 154.031 170.016 154.031C170.784 153.983 171.552 154.031 172.32 154.079C172.56 154.079 172.176 154.079 172.416 154.079L172.752 154.127L173.424 154.223C173.856 154.319 174.336 154.415 174.768 154.559L174.912 154.607L175.2 154.703C175.44 154.799 175.632 154.895 175.872 154.991C176.112 155.087 176.304 155.231 176.544 155.327C176.688 155.423 176.88 155.519 177.024 155.663C177.888 156.287 178.608 157.055 179.184 157.919C180.576 160.079 181.104 162.719 180.72 165.263C179.856 170.255 175.056 173.183 170.256 172.607C167.808 172.319 165.264 171.311 163.68 169.583C162.336 168.095 161.52 166.175 161.472 164.159C161.376 162.191 161.808 160.223 162.72 158.447C163.584 156.719 165.024 155.375 166.8 154.607C166.992 154.511 167.184 154.463 167.376 154.415C167.52 154.415 167.808 154.319 168.048 154.271C168.624 154.175 169.008 153.647 168.864 153.071V153.023C168.624 152.447 168 152.159 167.376 152.303C162.528 153.359 159.408 157.871 158.976 162.623C158.736 165.023 159.312 167.423 160.56 169.487C162.096 171.887 164.544 173.375 167.232 174.191C172.944 175.919 179.616 173.855 182.208 168.191C184.56 163.055 182.4 156.239 177.456 153.503C174.576 151.919 170.784 151.583 167.568 152.255L167.376 152.303C166.8 152.399 166.416 152.927 166.56 153.503V153.551C166.848 154.127 167.472 154.415 168.048 154.271Z" fill="#3D3D3D"/>
|
||||
<path d="M169.968 158.543V165.503C169.968 165.983 170.592 166.463 170.928 166.655C171.072 166.751 171.888 167.231 171.888 166.799V159.839C171.888 159.359 171.264 158.879 170.928 158.687C170.784 158.591 169.968 158.111 169.968 158.543Z" fill="white"/>
|
||||
<path d="M167.232 163.247H174.816C175.392 163.295 175.968 162.959 176.256 162.431C176.496 161.903 175.968 161.567 175.488 161.567H167.904C167.328 161.567 166.752 161.855 166.464 162.383C166.272 162.911 166.752 163.247 167.232 163.247Z" fill="white"/>
|
||||
<path d="M97.1999 64.6083C97.1999 64.6083 140.832 64.9443 145.2 63.9843C149.568 63.0243 154.752 55.4403 149.904 46.5123C145.056 37.5843 137.664 40.2243 137.664 40.2243C137.664 40.2243 138.288 27.7923 123.072 28.4163C107.856 29.0403 108.48 43.2963 108.48 43.2963C108.48 43.2963 97.0079 43.7763 98.4479 52.9923C98.4479 52.9923 93.1199 51.0723 90.2879 57.8403C87.4559 64.6083 97.1999 64.6083 97.1999 64.6083Z" fill="white"/>
|
||||
<path d="M96.3361 65.2321C99.5041 65.2801 102.624 65.2801 105.792 65.2801C112.32 65.2801 118.848 65.2801 125.376 65.2321C130.848 65.1841 136.368 65.1841 141.792 64.8481C143.904 64.7041 145.776 64.4641 147.648 63.2641C151.296 60.9601 153.168 56.6881 152.928 52.4641C152.736 49.6321 151.776 46.9441 150.144 44.6401C149.04 42.8641 147.456 41.4241 145.632 40.4161C143.424 39.2641 140.832 38.9761 138.384 39.6001C138.192 39.6481 137.952 39.7441 137.76 39.7921L138.72 39.8401C138.768 38.2561 138.48 36.7201 137.904 35.2321C136.704 32.1121 134.112 29.6641 130.896 28.6561C128.352 27.8881 125.712 27.6481 123.12 27.8881C120.528 28.0321 117.936 28.7041 115.584 29.9041C110.448 32.5441 107.232 37.9201 107.376 43.6801C107.376 43.7281 107.376 43.8241 107.376 43.8721L109.296 42.7201C107.808 42.8161 106.32 43.1041 104.88 43.5841C102.24 44.4481 99.4561 45.8881 98.1121 48.3841C97.2961 49.9681 97.0081 51.7921 97.3441 53.5681L99.4081 52.4641C96.0481 51.2641 92.0161 53.5201 90.2401 56.3041C89.1361 57.9841 87.9841 60.5281 89.1841 62.4961C90.0001 63.8401 91.5841 64.5121 93.0721 64.8961C94.1281 65.0401 95.2321 65.1841 96.3361 65.2321C96.8641 65.1841 97.3921 64.9921 97.8721 64.6081C98.0161 64.5121 98.5441 63.9841 98.0161 63.9841C96.0001 63.9841 93.5521 63.5521 92.0161 62.2081C90.7201 61.0561 90.6241 59.3761 91.2001 57.7921C91.6321 56.5441 92.3041 55.3921 93.2161 54.4321C93.5041 54.1921 93.7921 53.9521 94.0801 53.7121C94.1761 53.6641 94.2241 53.6161 94.3201 53.6161C94.3201 53.6161 94.6561 53.4721 94.4161 53.5681L94.7041 53.4721C95.0401 53.3761 95.3761 53.3761 95.7121 53.3281C96.0481 53.3281 96.3361 53.3281 96.6241 53.3761C96.9121 53.4241 97.1521 53.4721 97.3921 53.5681C97.8721 53.7121 99.5521 53.0881 99.4561 52.4641C99.0721 49.8721 99.8401 47.1841 101.856 45.6961L102.192 45.4561C102 45.6001 102.336 45.3601 102.384 45.3601L102.72 45.1681C102.48 45.3121 102.864 45.0721 102.96 45.0721C103.056 45.0721 103.392 44.8801 103.104 44.9761L103.44 44.8321L103.776 44.6881L103.968 44.6401C104.256 44.5441 103.776 44.6881 104.064 44.5921C104.352 44.4961 104.496 44.4481 104.736 44.4001L105.072 44.3041L105.36 44.2561L105.6 44.2081L105.888 44.1601L106.464 44.0641C106.8 44.0161 107.088 43.9681 107.424 43.9681C107.76 43.9681 107.328 43.9681 107.52 43.9681H107.616C108.144 43.9681 109.584 43.4881 109.536 42.8161C109.536 43.0561 109.536 42.5761 109.536 42.5281C109.536 42.1921 109.584 41.8561 109.584 41.5681C109.68 40.5121 109.872 39.4561 110.16 38.4001C110.544 37.0081 111.072 35.7121 111.84 34.4641C112.272 33.7921 112.752 33.1681 113.28 32.5921C113.568 32.2561 113.904 31.9681 114.24 31.7281C114.432 31.5841 114.96 31.1521 115.104 31.1041C115.824 30.6241 116.64 30.2401 117.456 29.9521C118.512 29.6161 119.568 29.3761 120.672 29.2321C123.216 28.8961 125.808 29.0401 128.256 29.6641C131.52 30.4321 134.208 32.6881 135.6 35.7121C136.32 37.2961 136.656 38.9761 136.656 40.7041C136.656 41.1361 137.472 40.8001 137.616 40.7521C137.04 40.9441 137.616 40.7521 137.76 40.7041C137.376 40.8001 137.904 40.7041 138 40.6561C138.24 40.6081 138.432 40.6081 138.672 40.5601C139.152 40.5121 139.68 40.5121 140.16 40.5601C140.832 40.6081 141.504 40.7521 142.128 40.9441C146.304 42.2881 149.136 46.4641 150.336 50.4961C151.536 54.5281 150.72 59.4721 147.456 62.4481C147.264 62.6401 147.024 62.8321 146.784 62.9761C146.544 63.1201 146.304 63.2641 146.064 63.3601C145.872 63.4081 146.304 63.2641 145.968 63.4081L145.776 63.4561C145.824 63.4561 146.016 63.4081 145.776 63.4561L145.44 63.5041C145.152 63.5521 144.864 63.5521 144.576 63.6001H144.336C144.288 63.6001 144.288 63.6001 144.24 63.6001L143.616 63.6481C138.432 63.9841 133.2 63.9841 128.016 64.0321C121.68 64.0801 115.296 64.0801 108.96 64.0801C105.408 64.0801 101.808 63.9841 98.2561 64.0321H98.1121C97.5361 64.0801 97.0081 64.2721 96.5761 64.6561C96.3361 64.7041 95.8081 65.2321 96.3361 65.2321Z" fill="#909090"/>
|
||||
<path d="M131.904 44.112C131.904 44.112 135.168 37.152 144.336 41.04L131.904 44.112Z" fill="white"/>
|
||||
<path d="M133.056 44.448L133.152 44.304C133.008 44.496 133.248 44.064 133.152 44.304C133.2 44.208 133.248 44.112 133.344 44.016C133.488 43.776 133.632 43.584 133.824 43.392C133.92 43.296 134.016 43.152 134.112 43.056L134.304 42.864C134.352 42.816 134.544 42.672 134.352 42.816C134.64 42.528 134.976 42.288 135.264 42.048C135.456 41.952 135.6 41.808 135.792 41.712C135.6 41.808 135.888 41.664 135.936 41.616C135.984 41.568 136.176 41.52 136.272 41.472C137.136 41.088 138.096 40.896 139.056 40.848C140.784 40.896 142.416 41.28 144 41.952C144.576 42.144 145.248 41.904 145.536 41.328C145.776 40.704 145.296 40.272 144.768 40.032C141.888 38.832 138.672 38.304 135.696 39.408C134.016 40.032 132.528 41.184 131.472 42.624C131.232 42.96 130.992 43.344 130.8 43.68C130.176 45.024 132.528 45.6 133.056 44.448Z" fill="#909090"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 58 KiB |
@@ -0,0 +1,51 @@
|
||||
<svg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M199.505 152.192L172.894 123.196C171.756 121.911 115.171 176.008 113.886 177.146C112.601 178.285 150.842 222.088 153.126 220.006C155.41 217.925 195.876 182.584 195.876 182.584C194.003 172.834 199.505 152.192 199.505 152.192Z" fill="white"/>
|
||||
<path d="M199.49 150.428L180.813 129.997C178.216 127.195 175.779 124.252 173.058 121.503C172.399 120.825 171.936 120.949 171.24 121.394C170.259 122.034 169.332 122.798 168.529 123.51C160.91 129.859 153.683 136.779 146.314 143.538C137.874 151.419 129.558 159.246 121.171 167.251L113.98 174.082L113.177 174.793C113.141 174.882 113.017 174.936 112.981 175.025L112.945 175.114C113.302 174.74 112.945 175.114 112.909 175.203C112.443 176.877 113.581 178.678 114.47 180.07C116.763 183.369 119.217 186.527 121.868 189.453C125.638 193.967 129.444 198.392 133.375 202.763C137.164 206.974 141.042 211.221 145.027 215.201C146.574 216.753 148.211 218.342 149.795 219.805C150.684 220.68 151.734 221.412 152.82 222.055C153.586 222.466 154.014 222.431 154.656 221.862L157.832 219.105L169.358 208.949L194.23 187.196L196.764 185.008C197.246 184.581 197.443 183.833 197.176 183.209C196.929 181.766 196.896 180.304 196.898 178.754C196.927 171.734 198.292 164.734 199.888 157.93C200.211 156.612 200.534 155.294 200.857 153.975C201.161 152.96 200.451 151.641 199.864 150.785C199.562 150.25 198.726 149.5 198.457 150.426C196.36 157.96 195.012 165.691 194.483 173.441C194.283 176.256 194.421 179 194.862 181.762L195.096 180.409L180.109 193.517C172.311 200.312 164.603 207.142 156.806 213.936L153.559 216.871C153.238 217.156 152.917 217.44 152.595 217.725C152.274 218.009 152.06 218.027 152.363 218.045C152.274 218.009 152.149 218.063 152.06 218.027C151.704 217.884 152.203 218.188 151.793 217.92C151.384 217.652 150.975 217.384 150.601 217.027C149.408 216.134 148.288 215.063 147.256 214.028C139.926 207.05 133.238 199.503 126.675 191.902C123.633 188.405 120.627 184.819 117.711 181.268L117.515 180.983C117.284 180.787 117.711 181.268 117.515 180.983L117.124 180.412L116.448 179.52C116.057 178.949 115.63 178.468 115.239 177.897L114.848 177.326L114.653 177.041C114.51 176.88 115.044 177.611 114.795 177.201C114.546 176.791 114.955 177.576 114.848 177.326C115.115 177.95 115.131 178.681 115.059 179.376C114.987 179.554 114.862 179.607 115.095 179.286L115.13 179.197C115.166 179.108 115.291 179.055 115.327 178.966C115.612 178.771 115.808 178.539 116.005 178.308L118.36 176.049C121.073 173.416 123.838 170.908 126.551 168.275C134.26 160.928 142.022 153.706 149.784 146.484C156.35 140.436 162.864 134.263 169.626 128.501C170.518 127.825 171.356 127.024 172.248 126.349C172.534 126.153 173.532 125.727 173.604 125.549C173.407 125.78 172.678 124.764 172.891 125.263C172.945 125.388 173.087 125.548 173.176 125.584L174.314 126.869L178.192 131.115L197.954 152.706L199.324 154.187C199.982 154.865 200.517 154.563 200.447 153.708C200.77 152.39 200.291 151.266 199.49 150.428Z" fill="#3D3D3D"/>
|
||||
<path d="M182.7 165.707C182.7 165.707 196.987 156.143 199.505 152.191C197.53 162.255 196.338 172.427 195.966 182.619L182.7 165.707Z" fill="white"/>
|
||||
<path d="M184.515 166.851C187.084 165.091 189.652 163.331 192.043 161.499C193.987 160.005 195.932 158.512 197.787 156.982C199.25 155.915 200.481 154.652 201.606 153.139L197.136 151.654C195.072 161.682 193.88 171.854 193.597 182.081L198.068 182.534L186.438 167.727L184.802 165.622C184.038 164.694 182.88 164.229 181.722 164.28C180.991 164.297 179.707 164.919 180.472 165.846L192.013 180.618L193.649 182.723C194.272 183.49 195.126 183.937 196.124 184.027C196.605 184.117 198.102 183.995 198.121 183.175C198.493 172.984 199.685 162.812 201.66 152.747C202.037 151.037 198.03 149.944 197.19 151.262C196.101 152.685 194.906 153.859 193.532 154.962C191.801 156.438 189.893 157.843 188.073 159.283C185.682 161.115 183.239 162.822 180.706 164.493C178.922 165.844 183.213 167.775 184.515 166.851Z" fill="#3D3D3D"/>
|
||||
<path d="M42.0481 18.7197H131.04C136.56 18.7197 141.024 23.1837 141.024 28.7037V89.4717V110.544C141.024 111.552 140.208 112.368 139.2 112.368C138.672 112.368 138.192 112.176 137.856 111.792L126.576 99.4557H42.0481C36.5281 99.4557 32.0641 94.9917 32.0641 89.5197V28.6557C32.1121 23.1837 36.5761 18.7197 42.0481 18.7197Z" fill="#CECECE"/>
|
||||
<path d="M52.224 84.3836L50.928 86.8796C50.88 86.9756 51.216 87.0236 51.216 87.0236C51.408 87.0716 51.648 87.0716 51.84 87.0716C52.032 87.0716 52.272 87.0236 52.464 86.9756C52.56 86.9276 52.656 86.9276 52.704 86.8316L54 84.3356C54.048 84.2876 53.712 84.1916 53.712 84.1916C53.52 84.1436 53.28 84.1436 53.088 84.1436C52.896 84.1436 52.656 84.1916 52.464 84.2396C52.368 84.2876 52.272 84.2876 52.224 84.3836Z" fill="#3D3D3D"/>
|
||||
<path d="M54.288 85.0559V89.8559C54.288 90.1439 54.912 90.2879 55.104 90.3359C55.2 90.3359 56.064 90.5759 56.064 90.3359V85.5359C56.064 85.2479 55.44 85.1039 55.248 85.0559C55.152 85.0559 54.288 84.8159 54.288 85.0559Z" fill="#3D3D3D"/>
|
||||
<path d="M102.24 99.7916C102.24 99.7916 99.072 85.8716 98.448 82.2236C105.216 84.9596 112.752 87.1676 116.736 85.6316C121.968 83.5676 130.368 75.3596 133.008 67.9676C134.544 63.6956 133.152 59.0396 129.36 56.5436L128.736 55.3436C124.032 52.2716 119.376 54.3356 114.288 58.6076L107.616 63.8396C107.616 63.8396 94.368 58.1756 86.688 57.5996C83.328 54.8636 79.296 53.6636 74.4 54.4796C74.4 54.4796 66.384 52.1276 60.384 72.8156C54.384 93.5036 55.296 99.6956 55.296 99.6956" fill="white"/>
|
||||
<path d="M103.344 99.8872C102.288 95.2792 101.232 90.6232 100.272 85.9672C100.032 84.7672 99.744 83.5192 99.552 82.3192L98.112 82.9432C102.336 84.6712 106.752 86.2072 111.312 86.8312C114.576 87.5032 117.936 86.7352 120.576 84.7672C123.648 82.7032 126.384 80.1592 128.736 77.2792C131.136 74.3992 133.536 71.0392 134.4 67.3432C135.456 62.9752 133.68 58.4632 129.936 56.0152L130.32 56.3992C129.984 55.7272 129.792 55.0552 129.12 54.6712C127.968 53.9032 126.672 53.3752 125.328 53.1352C122.736 52.6552 120.144 53.3752 117.888 54.6232C116.112 55.6792 114.432 56.8792 112.848 58.2232L109.392 60.9112L106.56 63.1192L107.856 63.0712C102.816 60.8632 97.584 59.0872 92.208 57.6952C90.288 57.2152 88.32 56.8792 86.352 56.6872L87.216 57.0232C83.424 53.9992 78.528 52.7512 73.776 53.6152L74.352 53.6632C73.152 53.3272 71.76 53.6152 70.656 54.0472C67.536 55.2952 65.328 58.2712 63.744 61.1032C62.208 63.8392 60.96 66.7672 60.048 69.7432C58.848 73.4392 57.84 77.1832 56.928 80.9752C55.728 85.5832 54.816 90.2392 54.288 94.9432C54.096 96.4312 54 97.9192 54.144 99.4072C54.144 99.5032 54.144 99.5992 54.192 99.6952C54.336 100.655 56.592 101.135 56.4 99.8392C56.496 100.367 56.4 99.7432 56.4 99.5992C56.4 99.1672 56.4 98.6872 56.4 98.2552C56.496 96.2392 56.688 94.2232 57.024 92.2552C57.6 88.4152 58.464 84.6232 59.424 80.8792C60.72 75.6952 62.064 70.4632 64.224 65.6152C65.472 62.7352 67.056 59.8072 69.36 57.6472C69.744 57.2632 70.128 56.9752 70.56 56.6392C70.656 56.5912 70.752 56.4952 70.848 56.4472L70.944 56.3512L70.992 56.3032C71.184 56.2072 71.376 56.0632 71.568 55.9672C71.856 55.8232 72.192 55.6792 72.528 55.5352C72.624 55.4872 73.104 55.3912 72.768 55.4392L73.2 55.3432C73.44 55.2952 73.68 55.2952 73.872 55.2472C74.064 55.1992 73.584 55.2472 73.776 55.2472C73.824 55.2472 73.872 55.2472 73.92 55.2472H74.16C74.208 55.2472 74.304 55.2472 74.352 55.2472C74.592 55.2472 74.016 55.1512 74.208 55.2472H74.304C74.976 55.2952 75.648 55.2472 76.272 55.1032C76.896 55.0552 77.52 55.0072 78.144 55.0552C79.296 55.1032 80.448 55.2952 81.552 55.6792C82.56 56.0152 83.52 56.4472 84.432 57.0232C84.864 57.3112 85.344 57.6472 85.776 57.9832C86.304 58.3672 86.928 58.5592 87.6 58.5592C91.44 58.9432 95.28 60.1912 98.976 61.4392C101.568 62.3032 104.208 63.3112 106.848 64.4152L107.28 64.6072C107.664 64.8472 108.192 64.7992 108.576 64.5592L113.616 60.6232C116.208 58.6072 118.656 56.3512 121.824 55.2472C123.936 54.4792 126.24 54.7192 128.112 55.9672L127.728 55.5832C127.92 55.9672 128.112 56.3992 128.304 56.7832C128.592 57.1192 128.928 57.4072 129.312 57.6472C131.088 59.0392 132.192 61.0552 132.432 63.3112C132.816 67.0552 130.752 70.6072 128.688 73.5832C126.48 76.7512 123.792 79.5832 120.768 81.9832C119.568 82.9912 118.272 83.8072 116.88 84.5272C115.584 85.1512 114.192 85.4392 112.752 85.3912C110.544 85.2472 108.336 84.8632 106.224 84.2392C103.68 83.5192 101.232 82.6552 98.784 81.6472C98.208 81.4072 97.2 81.4072 97.344 82.2712C98.256 87.5992 99.552 92.8312 100.752 98.0632L101.136 99.8392C101.328 100.799 103.632 101.279 103.344 99.9832V99.8872Z" fill="#909090"/>
|
||||
<path d="M44.6881 107.472C44.3521 107.952 39.7921 114.144 39.1201 115.632C36.9601 120.144 32.5921 122.208 32.5921 122.208C32.5921 122.208 27.6001 128.112 26.8321 126.912C26.0641 125.712 28.6561 118.992 28.6561 118.992C28.6561 118.992 15.4561 124.176 13.6801 123.312C11.9041 122.448 15.7921 120.576 15.7921 120.576C15.7921 120.576 13.2961 120.24 13.8241 119.04C14.3521 117.84 29.7121 111.072 29.7121 111.072C29.7121 111.072 32.4001 106.848 36.5281 101.616C36.3841 101.568 45.2641 106.656 44.6881 107.472Z" fill="white"/>
|
||||
<path d="M43.584 107.424C42.192 109.392 40.752 111.312 39.408 113.328C38.688 114.384 38.112 115.488 37.488 116.544C36.576 118.032 35.424 119.328 34.032 120.336C33.552 120.672 33.072 121.008 32.544 121.344C32.832 121.152 32.352 121.44 32.256 121.488L32.064 121.584C31.392 121.968 30.912 122.688 30.384 123.264C29.952 123.744 29.52 124.176 29.088 124.656C28.656 125.088 28.224 125.472 27.744 125.856C27.552 126 27.36 126.144 27.168 126.288C26.976 126.432 27.36 126.192 27.072 126.336C26.784 126.48 27.216 126.288 27.312 126.288C27.456 126.24 27.648 126.288 27.792 126.336C27.888 126.384 27.888 126.384 27.888 126.432C27.888 126.24 27.792 126.096 27.792 125.952C27.792 124.512 28.32 123.024 28.752 121.68C29.04 120.72 29.328 119.904 29.712 118.992C30.096 118.08 28.608 118.176 28.128 118.416L27.552 118.608C27.264 118.704 27.84 118.512 27.504 118.608L27.168 118.704L26.4 119.04C24.912 119.616 23.376 120.144 21.84 120.672C20.208 121.248 18.576 121.776 16.896 122.208C16.56 122.304 16.224 122.352 15.888 122.448C16.224 122.4 15.744 122.496 15.648 122.496C15.504 122.544 15.312 122.544 15.168 122.592L14.784 122.64H14.592C14.928 122.592 14.736 122.64 14.688 122.64C14.592 122.64 14.496 122.64 14.4 122.64C14.688 122.64 14.352 122.592 14.448 122.64C14.544 122.688 14.4 122.64 14.4 122.592C14.352 122.544 14.352 122.544 14.304 122.544C14.256 122.496 14.304 122.448 14.304 122.496C14.4 122.256 14.592 122.16 14.88 121.92C15.072 121.776 15.216 121.68 15.408 121.584L15.648 121.44C15.408 121.584 15.696 121.392 15.744 121.392L16.224 121.104C16.704 120.864 17.328 119.952 16.416 119.856C16.128 119.808 15.792 119.76 15.504 119.664C15.312 119.616 15.12 119.472 14.976 119.328C14.928 119.28 14.88 119.232 14.88 119.136C14.88 119.184 14.88 119.04 14.88 119.04C14.784 118.896 14.928 118.992 14.88 118.992C14.736 119.184 14.832 118.992 14.88 118.992C14.928 118.944 14.64 119.184 14.832 119.04C14.88 118.992 14.928 118.944 15.024 118.896C15.312 118.704 15.6 118.512 15.888 118.368C16.032 118.272 15.84 118.368 15.84 118.416L15.984 118.32L16.272 118.128L16.896 117.792C17.376 117.552 17.856 117.264 18.384 117.024C19.488 116.448 20.64 115.92 21.744 115.392C23.856 114.384 25.968 113.424 28.08 112.464C29.04 112.032 30.288 111.696 30.912 110.784C32.928 107.664 35.136 104.688 37.392 101.76L35.52 102.24C36.912 103.056 38.304 103.872 39.696 104.736C40.656 105.36 41.616 105.984 42.48 106.656C42.768 106.896 43.104 107.136 43.344 107.424C43.44 107.52 43.488 107.664 43.584 107.76C43.44 107.616 43.584 107.664 43.536 107.76C43.584 107.616 43.584 107.52 43.584 107.424C43.296 107.904 43.872 108.24 44.304 108.24C44.88 108.288 45.456 108 45.792 107.52C46.08 106.992 45.648 106.512 45.264 106.176C44.64 105.6 43.968 105.12 43.248 104.64C41.712 103.584 40.08 102.576 38.448 101.616C38.064 101.376 37.68 101.136 37.296 100.944C36.672 100.704 35.904 100.848 35.472 101.328C33.024 104.448 30.672 107.664 28.512 110.976L29.088 110.448C26.736 111.504 24.384 112.56 22.032 113.664C20.256 114.48 18.48 115.344 16.704 116.256C15.456 116.832 14.304 117.504 13.2 118.272C12.576 118.752 12.096 119.52 12.72 120.288C13.248 120.912 14.208 121.152 14.976 121.248L15.168 120C14.592 120.288 14.064 120.576 13.536 120.96C12.912 121.392 12 122.064 11.952 122.88C11.856 124.464 14.352 124.176 15.312 123.984C18.912 123.312 22.464 121.968 25.92 120.72C26.976 120.336 28.032 119.952 29.088 119.52L27.504 118.944C26.688 121.104 25.776 123.456 25.488 125.808C25.392 126.336 25.44 126.864 25.68 127.344C26.064 127.872 26.88 127.824 27.408 127.68C28.704 127.344 29.76 126.288 30.672 125.376C31.584 124.464 32.352 123.648 33.168 122.736C33.264 122.64 33.36 122.544 33.408 122.448L33.456 122.4C33.504 122.448 32.832 122.784 33.072 122.688C33.456 122.544 33.84 122.304 34.128 122.064C35.52 121.2 36.816 120.144 37.92 118.896C38.64 118.128 39.264 117.216 39.792 116.304C40.08 115.776 40.368 115.2 40.656 114.72C42.24 112.224 44.016 109.92 45.696 107.52C46.032 107.04 45.36 106.752 45.024 106.752C44.496 106.704 43.968 106.944 43.584 107.424Z" fill="#909090"/>
|
||||
<path d="M24.096 116.783L16.032 120.287L14.88 120.767C14.64 120.863 14.016 121.199 14.064 121.535C14.112 121.871 14.688 121.631 14.832 121.583L22.896 118.079L24.048 117.599C24.288 117.503 24.912 117.167 24.864 116.831C24.816 116.495 24.24 116.735 24.096 116.783Z" fill="#909090"/>
|
||||
<path d="M94.176 71.1838C94.512 71.9518 94.8 72.7678 94.992 73.5838C95.376 74.8798 95.712 76.1758 96.048 77.4718C96.624 79.5838 97.152 81.6958 97.632 83.8078C97.776 84.3838 99.552 84.1438 99.408 83.6158C98.88 81.4558 98.352 79.2958 97.776 77.1358C97.44 75.8398 97.104 74.5438 96.72 73.2958C96.48 72.4318 96.192 71.6158 95.856 70.7998C95.664 70.2718 93.888 70.5598 94.176 71.1838Z" fill="#909090"/>
|
||||
<path d="M71.6161 80.9275C71.6161 80.9275 49.0561 118.944 40.3681 119.76C31.6801 120.576 27.5041 112.368 30.2401 104.736C32.9761 97.1035 63.1681 58.2235 72.0001 55.7275" fill="white"/>
|
||||
<path d="M70.704 80.1118C69.696 81.8398 68.64 83.5678 67.536 85.2478C65.04 89.2318 62.496 93.1198 59.856 96.9598C56.88 101.328 53.76 105.648 50.352 109.776C48.912 111.552 47.376 113.232 45.744 114.816C44.544 116.064 43.2 117.12 41.76 118.032C41.232 118.368 40.656 118.608 40.032 118.752C40.224 118.704 39.888 118.752 39.792 118.8C39.36 118.848 38.976 118.848 38.544 118.848C37.728 118.848 36.912 118.752 36.144 118.56C35.472 118.416 34.848 118.128 34.272 117.792C34.032 117.648 33.648 117.408 33.552 117.312C33.312 117.12 32.976 116.832 32.88 116.736C31.92 115.776 31.2 114.576 30.816 113.232C30 110.496 30.192 107.568 31.296 104.928C31.488 104.448 31.728 103.968 32.016 103.488C32.4 102.816 32.784 102.144 33.168 101.472C35.52 97.6318 38.16 93.9358 40.848 90.2878C44.256 85.6798 47.808 81.1678 51.504 76.7998C55.008 72.5758 58.656 68.4478 62.496 64.5598C64.032 63.0238 65.616 61.4878 67.296 60.0478C68.496 58.9918 69.744 58.0318 71.136 57.2158C71.616 56.9278 72.096 56.7358 72.624 56.5918C73.152 56.4478 72.72 55.6798 72.528 55.4398C72.192 55.0078 71.664 54.7678 71.088 54.8638C69.792 55.3438 68.592 56.0158 67.536 56.8798C65.952 58.0798 64.464 59.3278 63.024 60.7198C59.184 64.4158 55.536 68.3038 52.08 72.3838C48.24 76.8478 44.544 81.4558 40.944 86.2078C37.968 90.1438 34.992 94.1758 32.304 98.3038C31.392 99.6958 30.576 101.088 29.808 102.528C28.752 104.544 28.224 106.8 28.224 109.056C28.224 112.32 29.52 115.44 31.872 117.744C34.32 120.048 37.632 121.104 40.944 120.672C42.384 120.48 43.632 119.664 44.784 118.8C46.368 117.552 47.808 116.208 49.152 114.72C52.656 110.832 55.92 106.752 58.896 102.48C61.872 98.3038 64.752 93.9838 67.488 89.6638C69.072 87.1678 70.656 84.6718 72.144 82.1278L72.384 81.7438C73.008 80.8318 71.136 79.3918 70.704 80.1118Z" fill="#909090"/>
|
||||
<path d="M89.1361 44.8799C89.1361 44.8799 87.2641 48.0959 90.6721 48.8159L89.1361 44.8799Z" fill="white"/>
|
||||
<path d="M88.2721 45.0717C87.7441 45.9837 87.4081 47.4237 88.2241 48.2877C88.6561 48.7197 89.2321 49.0077 89.8081 49.1037C90.1921 49.1517 90.5761 49.1037 90.9121 48.9597C91.1041 48.9117 91.2481 48.8157 91.3921 48.7677C91.4401 48.7677 91.5841 48.6237 91.4401 48.6237C90.5281 48.4317 89.6641 47.9997 89.4721 47.0397C89.3761 46.4157 89.4721 45.7917 89.7121 45.2157C89.7601 45.0717 89.8561 44.9277 89.9041 44.8317C90.0001 44.6397 89.2801 44.7357 89.2321 44.7837C88.9921 44.8317 88.8001 44.8797 88.5601 44.9757C88.5121 44.9277 88.3201 44.9757 88.2721 45.0717Z" fill="#3D3D3D"/>
|
||||
<path d="M95.7121 39.4561C96.1921 39.6001 96.4321 40.1281 96.2881 40.6081C96.2881 40.6561 96.2401 40.7041 96.2401 40.7521C95.8081 41.6641 94.7041 41.0881 94.8001 40.2241C94.8001 39.7921 95.1841 39.4561 95.5681 39.4561C95.6161 39.4561 95.6641 39.4561 95.7121 39.4561Z" fill="#3D3D3D"/>
|
||||
<path d="M102.72 40.751C103.2 40.895 103.44 41.423 103.296 41.903C103.296 41.951 103.248 41.999 103.248 42.047C102.816 42.959 101.712 42.383 101.808 41.519C101.808 41.087 102.192 40.751 102.576 40.751C102.624 40.751 102.672 40.751 102.72 40.751Z" fill="#3D3D3D"/>
|
||||
<path d="M134.064 63.0715C138.96 62.4955 143.328 56.7355 146.448 51.6955C150.72 44.7835 142.176 48.6715 142.176 48.6715C142.176 48.6715 147.264 43.9675 146.064 42.1435C144.864 40.3195 138.24 46.0795 138.24 46.0795C138.24 46.0795 142.608 40.6555 140.736 39.3115C139.008 38.1115 130.56 49.1995 130.56 49.1995C130.56 49.1995 130.56 45.5515 128.4 43.8715C126.24 42.1915 125.664 45.6475 125.856 48.2395C126.048 50.8315 125.328 53.4235 123.888 56.0635C123.888 56.0635 124.56 64.1755 134.064 63.0715Z" fill="white"/>
|
||||
<path d="M134.448 63.7435C137.184 63.4075 139.536 61.7275 141.408 59.8075C143.568 57.5515 145.44 55.1035 147.024 52.4635C147.792 51.2635 149.232 49.1035 148.032 47.7595C147.072 46.7035 145.536 46.8955 144.288 47.1835C143.376 47.3755 142.512 47.7115 141.648 48.0955L142.896 49.2475C143.664 48.5275 144.432 47.7595 145.104 46.8955C145.968 45.8395 147.216 44.3995 147.12 42.9595C147.024 41.4235 145.392 40.9915 144.096 41.3275C142.656 41.7115 141.36 42.6715 140.16 43.5355C139.248 44.1595 138.384 44.8795 137.568 45.5995L139.056 46.5595C140.064 45.3595 140.88 44.0155 141.552 42.6235C141.888 41.8555 142.272 40.8955 141.984 40.0315C141.696 39.1675 140.88 38.5915 140.016 38.6395C139.392 38.7355 138.816 39.0235 138.336 39.4075C137.664 39.9355 136.992 40.5595 136.368 41.1835C134.928 42.6235 133.584 44.2075 132.288 45.7915C131.472 46.7995 130.656 47.8075 129.84 48.8155L131.472 49.4875C131.472 47.0875 130.512 44.1115 128.208 43.0555C127.632 42.7195 126.864 42.7195 126.288 43.0555C125.808 43.4395 125.472 43.9675 125.328 44.5435C124.848 46.2235 125.136 47.9035 125.04 49.6315C124.944 50.7355 124.752 51.8395 124.368 52.8475C124.176 53.3755 123.984 53.9035 123.744 54.3835C123.552 54.8155 123.12 55.3435 123.072 55.7755C123.072 56.1115 123.12 56.4475 123.216 56.7355C123.6 58.3675 124.368 59.9035 125.568 61.1035C127.872 63.4555 131.232 64.0315 134.448 63.7435C134.688 63.6955 134.88 63.4555 134.88 63.2155C134.88 63.1195 134.832 63.0715 134.832 62.9755C134.592 62.5915 134.16 62.3515 133.68 62.3995C131.376 62.6395 128.928 62.4475 127.152 60.9595C126.096 60.0475 125.376 58.8475 124.992 57.5035C124.896 57.1195 124.8 56.7355 124.752 56.3035C124.752 56.2555 124.752 56.2075 124.752 56.2075C124.704 56.4955 124.848 56.2075 124.944 56.0635C125.424 55.1515 125.856 54.1915 126.144 53.1835C126.432 52.3195 126.624 51.4075 126.72 50.4475C126.768 49.5835 126.768 48.7675 126.72 47.9035C126.72 46.7995 126.672 45.1675 127.44 44.3035C127.776 43.9195 127.92 44.1595 128.256 44.4955C128.784 45.0235 129.12 45.6955 129.36 46.3675C129.648 47.1835 129.792 48.0475 129.84 48.9595C129.84 49.6315 131.04 50.2555 131.472 49.6315C133.104 47.4715 134.88 45.3595 136.704 43.3435C137.76 42.1915 138.864 40.9435 140.208 40.1275C140.4 40.0315 140.592 39.9835 140.736 39.8875C140.496 39.9835 140.736 39.8395 140.736 39.8875C140.736 39.9355 140.592 39.8395 140.688 39.8875C140.208 39.6955 140.928 40.0315 140.448 39.7915C140.208 39.6955 140.352 39.6955 140.352 39.7435C140.352 39.5995 140.352 39.8395 140.352 39.7435C140.352 39.8395 140.4 39.8875 140.4 39.9835C140.4 40.0795 140.4 40.2235 140.4 40.3195C140.352 40.7515 140.208 41.1835 140.064 41.5675C139.392 43.0555 138.528 44.4475 137.52 45.6475C137.04 46.2235 138.528 46.9915 139.008 46.6075C140.544 45.2155 142.272 43.9675 144.096 42.9595C144.528 42.7195 145.056 42.5275 145.536 42.4315C145.68 42.4315 145.632 42.4795 145.728 42.4315C145.824 42.3835 145.632 42.3835 145.632 42.3835C145.584 42.3355 145.488 42.2875 145.44 42.2395C145.392 42.2875 145.584 42.2875 145.44 42.2395C145.488 42.1915 145.488 42.3835 145.488 42.3835C145.488 42.9595 145.296 43.4875 145.008 43.9675C144.672 44.5915 144.24 45.1675 143.76 45.7435C143.088 46.5595 142.32 47.3755 141.552 48.0955C140.928 48.6715 142.272 49.4875 142.8 49.2475C143.376 48.9595 144 48.7675 144.624 48.5755C145.104 48.4315 145.584 48.2875 146.112 48.2395C146.256 48.2395 146.352 48.1915 146.496 48.1915C146.64 48.1915 146.496 48.1915 146.688 48.1915H146.832C146.88 48.1915 146.928 48.1915 146.976 48.2395C146.784 48.1435 147.024 48.2875 146.976 48.2395C146.88 48.1915 146.832 48.0475 146.88 48.1915C146.928 48.4315 146.928 48.6235 146.88 48.8635C146.64 49.7755 146.208 50.6395 145.68 51.4075C144.24 53.7595 142.56 56.0155 140.688 58.0315C138.864 59.9995 136.56 61.9675 133.776 62.3515C132.624 62.5435 133.68 63.8395 134.448 63.7435Z" fill="#909090"/>
|
||||
<path d="M135.6 49.7276C136.32 48.9116 137.088 48.1916 137.904 47.4716C138.528 46.8956 139.104 46.3676 139.728 45.7916C140.064 45.5036 139.824 44.9276 139.536 44.6876C139.248 44.3516 138.768 44.3036 138.432 44.5436C137.088 45.7436 135.696 46.9916 134.448 48.3356L134.304 48.4796C134.064 48.8636 134.16 49.3436 134.496 49.5836C134.736 49.8716 135.264 50.1116 135.6 49.7276Z" fill="#909090"/>
|
||||
<path d="M142.08 47.9521C140.592 49.1041 139.104 50.3521 137.712 51.6001C137.568 51.6961 138.384 52.6081 138.48 52.5121C139.872 51.2161 141.36 50.0161 142.848 48.8641C142.944 48.8161 142.224 47.8561 142.08 47.9521Z" fill="#909090"/>
|
||||
<path d="M131.28 53.8079C131.376 53.2799 131.472 52.7039 131.472 52.1759C131.568 51.1679 131.568 50.2079 131.472 49.1999C131.472 49.0559 131.232 48.8639 131.088 48.8159C130.896 48.7199 130.656 48.6719 130.416 48.6719C130.08 48.6719 129.648 48.8159 129.696 49.2479C129.744 50.1599 129.744 51.0719 129.696 51.9839C129.696 52.5119 129.6 53.0399 129.504 53.5679C129.456 53.7119 129.6 53.9039 129.696 53.9999C129.888 54.1439 130.08 54.2399 130.32 54.2399C130.656 54.2399 131.184 54.1919 131.28 53.8079Z" fill="#909090"/>
|
||||
<path d="M70.088 37.7304C75.2634 20.3797 87.6546 20.461 95.2872 23.1315C102.92 25.802 106.564 30.7158 106.611 34.3857C106.643 37.1247 95.2855 48.2453 95.2855 48.2453L77.6327 54.1244C77.5997 54.1037 66.1533 50.975 70.088 37.7304Z" fill="#3D3D3D"/>
|
||||
<path d="M70.7821 38.1658C72.002 34.0928 73.8508 30.0458 76.9635 27.0686C79.1686 24.9503 81.9888 23.5406 85.006 22.9919C87.6588 22.5831 90.3809 22.7248 92.9986 23.4C96.9024 24.3755 100.821 26.2819 103.505 29.3486C104.074 29.9827 104.582 30.7159 104.982 31.4738C105.163 31.772 105.291 32.0826 105.398 32.4262C105.456 32.5545 105.492 32.716 105.562 32.8982C105.632 33.0803 105.632 33.0803 105.624 33.1672C105.616 33.2541 105.722 33.5977 105.673 33.3824C105.747 33.7053 105.734 34.0197 105.754 34.3549C105.77 34.5493 105.8 34.0612 105.733 34.3879C105.696 34.5947 105.825 34.1688 105.713 34.421C105.642 34.607 105.571 34.7931 105.48 35.0122C105.571 34.7931 105.459 35.0453 105.418 35.1114C105.335 35.2436 105.252 35.3759 105.169 35.5081C103.666 37.9753 101.656 40.0774 99.7112 42.221C98.1441 43.9103 96.5647 45.5457 94.9315 47.1934C94.857 47.2388 94.8155 47.3049 94.774 47.3711C94.691 47.5033 94.9023 47.3134 94.9023 47.3134C94.8693 47.2926 94.4511 47.4449 94.4304 47.478L91.876 48.3172L77.6139 53.0525L77.2703 53.1594L77.6593 53.1271C77.2995 53.0395 76.9274 52.8981 76.6091 52.7444C76.4892 52.7153 76.7952 52.8151 76.6422 52.7652L76.543 52.7029L76.2578 52.57C76.0386 52.4786 75.8733 52.3748 75.675 52.2503C75.2245 52.0137 74.7616 51.7232 74.3526 51.4204C74.0881 51.2544 73.8774 51.0761 73.6337 50.877L73.423 50.6987C73.3116 50.5827 73.1793 50.4997 73.0678 50.3836C72.8448 50.1515 72.6219 49.9194 72.3989 49.6873C72.2874 49.5712 72.1759 49.4552 72.1182 49.3268L71.9614 49.1362C71.9283 49.1155 71.7922 48.8918 71.8829 49.0409C71.6684 48.7219 71.4869 48.4237 71.3054 48.1255C71.2147 47.9763 71.1239 47.8272 71.087 47.6658C71.0416 47.5912 70.9963 47.5167 70.9716 47.4091C70.947 47.3014 70.8109 47.0778 70.9016 47.2269C70.7617 46.8625 70.6217 46.4982 70.4817 46.1338C70.4117 45.9517 70.3955 45.7572 70.3255 45.575C70.264 45.306 70.2393 45.1983 70.2024 45.0369C69.8675 42.7069 70.0953 40.3615 70.7821 38.1658C70.9734 37.6407 70.7965 37.115 70.4206 36.8329C70.0692 36.6585 69.6718 36.7777 69.4643 37.1083C69.4228 37.1744 69.4021 37.2075 69.4144 37.2613C68.64 39.8168 68.2708 42.5343 68.7334 45.1748C69.0482 47.1696 69.9011 49.0413 71.1476 50.6531C72.7285 52.613 74.7944 54.094 77.1554 54.8845C77.4075 54.9967 77.6681 55.022 77.9372 54.9604C78.1524 54.9112 78.3346 54.8412 78.5168 54.7712L82.3586 53.4958L92.9941 49.9867C93.8097 49.7151 94.7244 49.5058 95.5484 49.1474C95.7514 49.0444 95.8882 48.8998 96.025 48.7553C96.3939 48.3878 96.7836 47.9872 97.1525 47.6196C100 44.8447 102.637 41.8914 105.076 38.8137C105.975 37.6734 107.054 36.3226 107.317 34.875C107.422 33.9732 107.333 33.0877 106.995 32.2306C106.662 31.146 106.168 30.0983 105.503 29.1744C102.483 24.8824 97.2787 22.3075 92.204 21.2884C88.4694 20.5574 84.5096 20.6989 80.9569 22.2478C76.3441 24.2375 73.0886 28.3232 71.057 32.8085C70.4047 34.2884 69.8392 35.7768 69.3729 37.3274C69.2023 37.8195 69.3462 38.3245 69.7552 38.6273C70.0858 38.8348 70.5163 38.7363 70.6907 38.3849C70.753 38.2858 70.7737 38.2527 70.7821 38.1658Z" fill="#3D3D3D"/>
|
||||
<path d="M99.3296 58.2484C106.105 54.943 105.046 36.9517 105.046 36.9517C102.492 35.4409 98.8881 31.1975 98.8881 31.1975C97.2579 40.036 86.5776 38.7706 86.5776 38.7706C86.2275 33.5279 80.382 33.2231 79.0661 37.7428C77.7502 42.2624 81.8134 44.3057 81.8134 44.3057C81.8134 44.3057 75.6256 54.3851 75.4069 56.2754C75.4069 56.2754 80.7174 63.894 87.5735 59.211C87.5197 59.2233 94.7246 60.5194 99.3296 58.2484Z" fill="white"/>
|
||||
<path d="M100.227 58.5813C102.161 57.6292 103.286 55.6164 104.034 53.6898C104.878 51.3166 105.417 48.8434 105.661 46.3242C105.872 44.1525 105.996 41.9723 106.001 39.763C105.993 39.1134 105.986 38.4638 105.979 37.8143C105.996 37.6405 105.992 37.4998 105.955 37.3384C105.873 37.1024 105.621 36.9903 105.39 36.845C103.249 35.4095 101.428 33.3911 99.7936 31.4435C99.6698 31.2736 98.0284 30.6582 97.9785 30.8112C97.514 33.6072 95.7056 35.9745 93.1837 37.2027C91.2582 38.0679 89.2011 38.4819 87.0994 38.4532C86.6774 38.4648 86.2761 38.4433 85.8417 38.4011L87.5285 39.0911C87.3951 37.3946 86.6491 35.8665 85.0784 35.065C83.6069 34.3258 81.8703 33.7888 80.3545 34.5886C78.8056 35.3676 78.0411 37.0998 77.9469 38.7918C77.8657 40.1694 78.3472 41.5315 79.243 42.6006C79.7797 43.2139 80.4117 43.7488 81.1475 44.1184L80.9038 43.9194C78.858 47.1054 77.0107 50.416 75.2956 53.8096C75.1004 54.194 74.9383 54.5991 74.7762 55.0043C74.6309 55.2357 74.5311 55.5417 74.5388 55.823C74.5465 56.1044 74.9018 56.4195 75.0586 56.6101C76.3012 58.0812 77.8712 59.2509 79.6033 60.0154C80.9757 60.6924 82.4686 61.0303 84.0284 61.0415C85.6296 60.9866 87.1739 60.4351 88.4583 59.4901L88.3176 59.494C89.7321 59.7366 91.1758 59.8593 92.6157 59.8413C95.1433 59.9991 97.8538 59.7187 100.227 58.5813C100.227 58.5813 99.4455 58.1371 99.3586 58.1287C99.1395 58.0373 98.656 57.7798 98.3992 57.8952C95.2147 59.4449 91.3256 59.4003 87.8716 59.0297C87.5242 58.996 87.1644 58.9084 86.8169 58.8747C86.6432 58.8578 86.5479 58.9362 86.3449 59.0393C85.8768 59.3446 85.3964 59.596 84.9037 59.7937C84.1335 60.1398 83.2933 60.3037 82.4285 60.36C82.0603 60.3593 81.692 60.3586 81.3446 60.3249C81.1708 60.308 80.9971 60.2911 80.8441 60.2412L80.5381 60.1413C80.2322 60.0414 80.7242 60.212 80.4182 60.1121C80.6043 60.1828 80.3521 60.0706 80.319 60.0499L80.133 59.9792C79.8478 59.8463 79.5502 59.6595 79.2857 59.4935C78.7898 59.1823 78.3024 58.7842 77.8687 58.3738C77.249 57.8927 76.7246 57.3331 76.2955 56.6952C76.1717 56.5253 76.267 56.4469 76.3254 56.207C76.4752 55.7481 76.6788 55.2768 76.8948 54.8593C77.5302 53.5531 78.1988 52.2676 78.9211 50.9699C80.1084 48.8579 81.3494 46.7336 82.6236 44.6301C82.6443 44.5971 82.3798 44.4311 82.3798 44.4311L82.2807 44.3688C82.479 44.4933 82.1484 44.2858 82.0823 44.2443C81.7847 44.0576 81.508 43.8378 81.285 43.6057C80.4838 42.8263 79.9147 41.824 79.6893 40.7148C79.2513 38.1819 80.8841 34.5524 83.9492 34.9553L84.0691 34.9845C84.2221 35.0344 84.189 35.0137 84.036 34.9637L83.697 34.8431C83.7093 34.8969 83.9615 35.0091 84.0276 35.0506C84.3044 35.2704 84.5397 35.5563 84.775 35.8423C85.2617 36.6086 85.5786 37.4987 85.5934 38.4297C85.5973 38.5703 86.1224 38.7616 86.2423 38.7908C86.5606 38.9445 86.9327 39.0859 87.2802 39.1196C90.8003 39.5317 95.022 38.6791 97.5052 36.0441C98.6619 34.7885 99.4303 33.1971 99.7313 31.5427L97.9162 30.9104C98.6098 31.7143 99.3241 32.4852 100.071 33.2769C101.277 34.5866 102.653 35.7724 104.153 36.7599L104.041 36.6439C104.153 38.7417 104.145 40.8104 103.996 42.8829C103.774 46.6144 103.308 50.5151 101.766 53.9255C101.031 55.5377 99.9688 57.0831 98.3454 57.9075C98.3247 57.9406 99.1265 58.3517 99.2134 58.3601C99.4863 58.4392 99.9699 58.6967 100.227 58.5813Z" fill="#3D3D3D"/>
|
||||
<path d="M87.3146 45.0859C86.9288 45.6271 86.6091 46.2099 86.3886 46.8549C86.135 47.4792 86.0014 48.1326 85.9877 48.8153C85.9287 49.4234 86.1302 50.0568 86.5016 50.5664C87.0014 51.0183 87.6256 51.2718 88.2752 51.2648C88.4159 51.2609 88.5527 51.1163 88.6149 51.0172C88.7394 50.8188 88.7978 50.5789 88.8024 50.3514C88.8608 50.1115 88.8115 49.8963 88.783 49.648C88.7584 49.5404 88.6884 49.3582 88.5354 49.3083C88.1341 49.2868 87.7743 49.1993 87.4022 49.0579L87.5014 49.1202C87.3154 49.0495 87.1501 48.9457 87.0263 48.7759L86.9478 48.6806C86.8817 48.6391 87.0386 48.8297 86.9809 48.7013L86.9686 48.6475L86.8902 48.5522C86.8448 48.4776 86.8409 48.337 86.9025 48.606C86.8902 48.5522 86.8571 48.5314 86.8779 48.4984C86.8986 48.4653 86.8494 48.2501 86.8902 48.5522C86.8779 48.4984 86.8778 48.4984 86.8655 48.4446L86.8532 48.3908C86.8163 48.2293 86.8817 48.6391 86.8571 48.5314L86.8655 48.4446L86.8532 48.3908C86.8494 48.2501 86.8402 48.7052 86.8364 48.5645C86.8325 48.4238 86.8993 48.0971 86.824 48.5107C86.8325 48.4238 86.874 48.3577 86.8824 48.2708L86.9116 48.1509C86.9408 48.031 86.8325 48.4238 86.8617 48.3039L86.8701 48.217C86.92 48.064 86.9907 47.878 87.0737 47.7457L87.1152 47.6796C87.1775 47.5805 87.0238 47.8987 87.086 47.7996C87.1068 47.7665 87.1275 47.7334 87.1483 47.7004L87.2605 47.4482C87.3227 47.349 87.4057 47.2168 87.468 47.1176C87.5302 47.0184 87.5924 46.9193 87.6339 46.8531C87.6754 46.787 87.7999 46.5886 87.6132 46.8862C87.8622 46.4895 87.9582 46.0428 87.9135 45.6C87.8766 45.4386 87.8604 45.2441 87.7158 45.1073C87.6167 45.0451 87.476 45.0489 87.393 45.1812L87.3146 45.0859Z" fill="#3D3D3D"/>
|
||||
<path d="M99.0576 44.4372C100.167 46.1936 101.554 47.8015 103.12 49.1987C108.374 53.9707 107.748 56.4354 105.191 56.3975C102.635 56.3596 95.2028 50.3588 95.2028 50.3588" fill="white"/>
|
||||
<path d="M98.5518 44.9496C99.5869 46.7513 101.115 48.3553 102.626 49.7649C103.758 50.7517 104.774 51.85 105.64 53.0391L105.855 53.3581L105.979 53.5279C106.082 53.7308 106.185 53.9338 106.267 54.1698C106.35 54.4057 106.276 54.0829 106.313 54.2443L106.374 54.5134L106.399 54.621C106.423 54.7286 106.383 54.4265 106.386 54.5672L106.394 54.8485C106.444 54.6955 106.398 54.9892 106.394 54.8485C106.373 54.8816 106.365 54.9684 106.344 55.0015C106.394 54.8485 106.386 54.9354 106.344 55.0015C106.241 55.1668 106.398 54.9892 106.324 55.0346C106.249 55.0799 106.017 55.3029 106.187 55.1791C106.058 55.2368 105.963 55.3152 105.802 55.3522C105.748 55.3645 105.533 55.4137 105.727 55.3975C105.673 55.4098 105.586 55.4014 105.512 55.4468C105.35 55.4837 105.177 55.4668 104.982 55.483C104.808 55.4661 105.069 55.4915 104.928 55.4953L104.722 55.4577C104.548 55.4408 104.362 55.3701 104.176 55.2995C103.804 55.1581 103.432 55.0167 103.101 54.8092C102.65 54.5725 102.233 54.3566 101.803 54.0869C100.857 53.539 99.9518 52.9249 99.0677 52.2779C97.919 51.4648 96.758 50.5979 95.5847 49.6772C95.2418 49.4159 94.7744 49.3529 94.5254 49.7497C94.3218 50.2209 94.4449 50.759 94.8332 51.0949C95.9404 51.9741 97.0352 52.7995 98.1839 53.6126C99.9853 54.9275 101.874 56.2509 103.974 57.0161C105.276 57.5109 107.171 57.502 107.724 55.9598C108.036 55.0957 107.794 54.1602 107.469 53.3569C106.883 52.1601 106.083 51.0126 105.125 50.0426C103.25 48.0366 101.015 46.3113 99.6048 43.8593C99.411 43.5073 98.952 43.3575 98.6 43.5513C98.5792 43.5843 98.5254 43.5966 98.5254 43.5966C98.1565 43.9642 98.3457 44.5438 98.5395 44.8958L98.5518 44.9496Z" fill="#3D3D3D"/>
|
||||
<path d="M94.7735 41.057C95.1495 41.339 95.1858 41.8687 94.9037 42.2446C94.883 42.2777 94.8622 42.3108 94.8084 42.3231C94.1328 42.959 93.3524 42.1466 93.755 41.4316C93.8964 41.0595 94.2815 40.8864 94.6536 41.0278C94.7074 41.0155 94.7405 41.0362 94.7735 41.057Z" fill="#3D3D3D"/>
|
||||
<path d="M101.576 42.6996C101.952 42.9816 101.989 43.5113 101.707 43.8872C101.686 43.9203 101.665 43.9533 101.611 43.9656C100.936 44.6015 100.155 43.7891 100.558 43.0741C100.699 42.702 101.084 42.529 101.456 42.6704C101.51 42.6581 101.543 42.6788 101.576 42.6996Z" fill="#3D3D3D"/>
|
||||
<path d="M72.7412 32.6212C72.7412 32.6212 67.3099 43.0372 58.7561 46.24C58.7561 46.24 60.7541 57.4477 75.9208 55.6765L72.7412 32.6212Z" fill="#3D3D3D"/>
|
||||
<path d="M72.1888 31.8132C71.4995 33.1317 70.711 34.388 69.8441 35.549C68.0312 38.1438 65.8754 40.4774 63.4389 42.4505C61.8602 43.7177 60.1331 44.7074 58.2368 45.4527L58.216 45.4857C58.5853 47.1 59.2445 48.6197 60.2018 49.9578C61.9713 52.8656 64.7807 54.9975 68.0349 55.98C70.7641 56.7712 73.6561 56.7891 76.4742 56.4841L76.495 56.451L75.4133 48.6294L73.7195 36.2762L73.3153 33.3958C73.1961 32.9984 73.0023 32.6463 72.7339 32.3397C72.6885 32.2651 72.1972 31.7263 72.2011 31.867L73.4544 40.8102L75.2221 53.4863C75.3206 53.9167 75.386 54.3265 75.3976 54.7485L75.4222 54.8561C75.4222 54.8561 74.8388 54.9047 74.6651 54.8878C73.585 54.9933 72.4596 55.0243 71.3426 54.9684C68.1654 54.8176 64.915 53.9758 62.3993 51.89C61.9779 51.5334 61.5443 51.1229 61.1644 50.7002L60.9414 50.4681L60.83 50.3521C60.6731 50.1614 60.8753 50.4266 60.7969 50.3313L60.5824 50.0123L60.4586 49.8425C60.3224 49.6188 60.5493 49.9916 60.4586 49.8425L60.3678 49.6933L60.3101 49.565C60.2071 49.362 60.3678 49.6933 60.3101 49.565L60.1617 49.2875C60.1494 49.2337 60.104 49.1591 60.0917 49.1053C59.9187 48.7202 59.8156 48.5173 59.6879 48.2068C59.5603 47.8962 59.511 47.681 59.4287 47.445L59.3672 47.1759C59.3756 47.0891 59.3549 47.1221 59.3672 47.1759L59.3549 47.1221L59.3425 47.0683C59.504 47.0314 59.6861 46.9614 59.8476 46.9245C60.0505 46.8214 60.2865 46.7391 60.4894 46.6361C61.2804 46.2569 62.0382 45.857 62.7508 45.3826C65.4725 43.5424 67.8805 41.321 69.8548 38.6892C71.0906 37.1607 72.1818 35.4954 73.1409 33.7471C73.2031 33.648 73.2446 33.5818 73.3069 33.4827C73.3983 33.2635 73.0269 32.7539 72.9031 32.5841C72.8247 32.4888 72.2303 31.7471 72.1888 31.8132Z" fill="#3D3D3D"/>
|
||||
<path d="M154.176 83.088C156.864 90.192 156.288 98.256 153.456 105.216C152.016 108.768 150 112.032 147.456 114.912C146.16 116.4 144.672 117.696 142.992 118.752C141.12 119.808 139.056 120.48 136.896 120.768C134.784 121.104 132.624 121.296 130.512 121.488C128.352 121.68 126.192 121.776 124.032 121.728C120.192 121.584 115.728 120.672 113.04 117.696C111.84 116.496 111.312 114.768 111.6 113.088C111.744 112.368 112.08 111.744 112.56 111.216C113.04 110.784 113.664 110.496 114.144 111.12C114.672 111.84 114.912 112.944 115.152 113.808C115.536 114.912 115.776 116.064 115.872 117.216C116.016 118.896 115.68 120.816 114.432 122.016C113.184 123.216 111.216 122.928 109.728 122.256C107.856 121.392 106.368 120 104.688 118.896C103.152 117.888 101.28 117.024 99.408 117.216C97.728 117.408 95.952 118.176 94.944 119.616C94.464 120.288 94.224 121.104 94.224 121.968C94.224 122.592 95.04 122.736 95.472 122.64C96.048 122.496 96.48 122.016 96.48 121.392C96.48 120 97.968 119.28 99.168 119.184C101.136 119.04 102.96 120.384 104.4 121.488C106.176 122.832 108 124.176 110.208 124.704C112.368 125.232 114.672 124.56 116.208 122.928C117.552 121.392 118.272 119.376 118.176 117.312C118.128 116.016 117.888 114.72 117.504 113.52C117.264 112.416 116.88 111.36 116.4 110.352C115.152 107.952 112.32 108.624 110.736 110.256C109.488 111.648 108.912 113.568 109.2 115.392C109.872 119.76 114.576 122.112 118.416 123.024C122.976 124.128 127.776 123.696 132.384 123.216C134.784 123.024 137.136 122.688 139.44 122.112C141.744 121.536 143.856 120.48 145.728 119.04C149.136 116.4 151.824 112.752 153.84 109.008C157.728 101.76 159.312 93.024 157.2 85.008C156.912 84 156.624 82.992 156.24 82.032C155.904 80.88 153.744 81.936 154.176 83.088Z" fill="#CECECE"/>
|
||||
<path d="M67.984 148.662L45.232 160.806C43.792 161.574 43.264 163.35 44.032 164.742L50.848 177.51C51.616 178.95 53.392 179.478 54.784 178.71L63.952 173.814C65.296 174.678 67.216 175.83 68.416 176.55C68.752 176.742 69.232 176.646 69.424 176.262C69.52 176.118 69.52 175.974 69.52 175.83L69.232 170.982L77.584 166.566C79.024 165.798 79.552 164.022 78.784 162.63L71.968 149.862C71.2 148.47 69.424 147.894 67.984 148.662Z" fill="#909090"/>
|
||||
<path d="M62.944 168.294C61.072 167.814 59.2 167.094 57.472 166.182C56.704 165.846 56.032 165.27 55.504 164.598C54.976 163.878 55.024 162.918 55.6 162.246C56.272 161.574 57.376 161.718 58.24 162.054C59.296 162.438 60.256 163.014 61.072 163.734C60.064 161.478 60.784 158.838 62.8 157.494C63.136 157.254 63.472 157.11 63.856 157.062C65.248 156.822 66.448 158.166 66.64 159.558C66.832 160.95 66.256 162.294 65.728 163.542L63.904 167.958" fill="white"/>
|
||||
<path d="M124.625 134.582L96.5063 134.812C94.7308 134.855 93.3205 136.299 93.3473 138.03L93.5199 153.834C93.5633 155.609 95.0071 157.02 96.7376 156.993L108.064 156.892C108.934 158.413 110.201 160.451 111.005 161.792C111.245 162.163 111.75 162.283 112.122 162.043C112.24 161.948 112.359 161.853 112.444 161.668L114.592 156.829L124.902 156.746C126.677 156.703 128.087 155.259 128.061 153.529L127.888 137.724C127.8 135.966 126.401 134.539 124.625 134.582Z" fill="white"/>
|
||||
<path d="M124.915 133.707L113.954 133.826L98.5434 133.955L96.9647 133.977C95.476 133.965 94.0406 134.65 93.0754 135.776C91.7768 137.383 92.2054 139.784 92.1922 141.682L92.2427 150.11L92.2862 153.267C92.2379 154.104 92.3413 154.936 92.6698 155.684C93.4334 157.193 94.9588 157.857 96.5826 157.818L99.4817 157.768L107.134 157.698L107.651 157.711L106.832 157.297C107.736 158.908 108.729 160.485 109.723 162.062C110.717 163.639 112.837 163.007 113.501 161.482C114.164 159.956 114.901 158.352 115.593 156.765L114.179 157.647L121.027 157.618L124.292 157.587C126.207 157.645 127.919 156.601 128.774 154.902C129.081 154.072 129.219 153.202 129.099 152.325L129.079 148.954L129.002 140.178C128.988 139.313 128.975 138.448 129.007 137.566C128.932 135.29 127.134 133.755 124.915 133.707C124.292 133.682 123.757 134.034 123.502 134.589C123.353 135.156 123.819 135.444 124.335 135.457C125.779 135.486 126.673 136.793 126.701 138.113C126.71 138.826 126.735 139.585 126.698 140.315L126.755 148.484C126.799 150.259 126.842 152.035 126.824 153.782C126.802 154.967 126.119 155.886 124.95 155.909L122.096 155.943L114.809 156.032C114.202 156.052 113.65 156.358 113.395 156.914L111.587 161.013C111.457 161.215 111.343 161.462 111.275 161.692C111.275 161.692 111.23 161.708 111.247 161.753C111.298 161.478 112.035 161.257 112.024 161.363C112.002 161.167 111.655 160.783 111.543 160.62C110.678 159.251 109.858 157.866 109.037 156.48C108.876 156.182 108.567 156.04 108.219 156.067L102.404 156.122L98.4713 156.146C97.8195 156.183 97.1677 156.219 96.5108 156.104C95.2421 155.858 94.5335 154.636 94.5385 153.405C94.5134 152.647 94.5334 151.872 94.5083 151.113L94.4229 143.006C94.3961 141.276 94.3693 139.545 94.3592 137.86C94.3692 136.781 94.9743 135.789 96.1262 135.721C96.5363 135.722 96.9465 135.724 97.2949 135.697L111.672 135.541C115.756 135.513 119.858 135.529 123.97 135.439L124.167 135.417C124.79 135.442 125.326 135.091 125.581 134.535C125.897 134.009 125.416 133.675 124.915 133.707Z" fill="#3D3D3D"/>
|
||||
<path d="M104.749 142.969C103.365 143.379 102.132 144.194 101.211 145.303C100.483 146.238 99.9212 147.624 100.371 148.839C100.788 149.964 102.05 150.469 103.146 150.524C104.376 150.529 105.596 150.231 106.716 149.662C107.763 149.172 108.649 148.383 109.225 147.453C109.599 146.803 110.065 145.299 109.067 144.952C108.467 144.714 107.571 145.199 107.093 145.428C106.496 145.751 106.011 146.238 105.728 146.855C105.184 147.875 105.409 149.174 106.316 149.964C107.442 150.929 109.005 150.452 110.221 150.002C111.616 149.485 112.866 148.715 113.988 147.736C115.054 146.881 115.884 145.806 116.512 144.6C116.966 143.613 116.96 142.079 115.618 141.911C114.265 141.85 112.976 142.378 112.068 143.38C111.311 144.377 111.356 145.742 111.621 146.873C112.156 149.285 114.137 151.315 116.704 151.337C118.221 151.287 119.678 150.798 120.895 149.938C121.74 149.318 123.016 147.924 122.295 146.809C121.525 145.558 119.201 146.471 118.534 147.434C117.738 148.6 119.338 150.156 120.15 150.828C120.447 151.077 121.105 150.782 121.359 150.637C121.449 150.603 122.524 150.051 122.351 149.86C121.774 149.408 121.299 148.816 120.914 148.191C120.735 147.847 120.312 146.981 120.712 146.679L119.952 147.114C119.068 147.492 119.39 147.117 119.827 147.467C120.028 147.597 120.157 147.806 120.195 148.048C120.288 148.576 120.123 149.098 119.773 149.535C119.457 150.061 118.843 150.34 118.231 150.208C116.164 150.155 114.575 148.491 113.937 146.629C113.508 145.611 113.456 144.504 113.725 143.432C113.838 143.185 113.906 142.955 114.036 142.753C114.235 142.321 114.41 143.485 113.435 142.925C113.541 142.937 113.603 142.965 113.71 142.977C114.186 143.158 114.443 143.575 114.475 144.075C114.572 145.165 113.741 146.241 113.098 146.991C112.426 147.803 111.569 148.53 110.629 149.032C109.722 149.624 108.544 149.344 107.968 148.482L107.952 148.437C107.633 147.992 107.54 147.463 107.598 146.93C107.65 146.655 107.747 146.363 107.86 146.116C107.917 145.993 107.99 145.914 108.047 145.791C108.352 145.371 108.66 145.513 107.563 145.868L106.855 146.028C107.4 145.979 107.475 146.873 107.367 147.271C107.247 147.777 107.02 148.27 106.698 148.645C106.28 149.312 105.469 149.612 104.689 149.44C103.286 149.244 102.234 148.2 102.459 146.735C102.557 146.033 102.824 145.371 103.247 144.856C103.552 144.436 103.935 144.089 104.414 143.861C104.729 143.744 105.646 143.455 105.664 143.09C105.682 142.725 104.839 142.935 104.749 142.969Z" fill="#3D3D3D"/>
|
||||
<path d="M189.304 114.22L168.376 100.684C167.08 99.8203 165.304 100.204 164.488 101.5L156.904 113.26C156.04 114.556 156.424 116.332 157.768 117.148L173.32 127.228C173.224 128.764 173.176 130.924 173.128 132.268C173.128 132.652 173.416 132.988 173.848 132.988C173.992 132.988 174.136 132.94 174.232 132.892L178.168 130.348L178.744 130.636C180.04 131.5 181.816 131.116 182.632 129.82L190.216 118.06C190.984 116.812 190.648 115.084 189.304 114.22Z" fill="#909090"/>
|
||||
<path d="M189.16 113.5L178.888 106.876C175.336 104.572 171.784 102.268 168.232 100.012C166.696 99.0519 164.728 99.0519 163.624 100.684C163.24 101.212 162.904 101.74 162.568 102.316L157.96 109.42L156.28 112.012C155.656 113.02 155.272 114.028 155.704 115.228C156.376 117.34 158.584 118.396 160.312 119.548L173.032 127.804L173.32 127.996L172.312 126.508C172.216 128.188 172.072 129.868 172.12 131.548C172.12 132.748 173.704 134.524 175 133.756C176.296 132.988 177.592 132.124 178.888 131.26L178.408 131.212C179.416 131.788 180.424 132.316 181.576 131.98C182.344 131.788 182.968 131.308 183.4 130.636C184.072 129.628 184.696 128.668 185.32 127.66L190.696 119.356C191.032 118.876 191.272 118.396 191.416 117.82C191.704 116.14 190.504 114.46 189.16 113.5C188.92 113.356 188.392 113.116 188.44 113.596C188.488 114.076 189.064 114.652 189.448 114.892C189.688 115.084 189.544 115.036 189.496 114.892C189.544 114.94 189.592 115.036 189.592 115.084C189.688 115.324 189.736 115.564 189.736 115.804C189.736 116.284 189.592 116.812 189.352 117.196C189.208 117.388 189.064 117.628 188.92 117.82L186.712 121.228L181.912 128.62C181.672 129.1 181.288 129.484 180.856 129.772C180.28 130.156 179.608 130.252 178.936 130.108C178.504 129.964 178.072 129.772 177.688 129.484C177.544 129.388 177.352 129.388 177.208 129.436L173.848 131.596C173.656 131.74 173.464 131.836 173.272 131.98C173.176 132.028 173.08 132.028 172.984 132.076C173.224 131.836 173.848 133.756 173.848 132.748C173.848 132.604 173.848 132.46 173.848 132.316C173.896 130.876 173.944 129.436 174.04 127.996C174.088 127.468 173.464 126.796 173.032 126.508L162.04 119.404C160.552 118.444 159.016 117.484 157.528 116.476L157.336 116.332C157.288 116.332 157.384 116.524 157.384 116.332C157.336 116.092 157.192 115.852 157.192 115.564C157.192 114.988 157.336 114.46 157.624 113.98C158.056 113.308 158.44 112.684 158.872 112.06L163.384 105.052L164.92 102.652C165.592 101.644 166.504 100.876 167.8 101.116C168.04 101.164 168.232 101.26 168.424 101.356C168.328 101.308 168.328 101.308 168.376 101.308L168.472 101.404L169 101.74L171.016 103.036L177.736 107.308L189.16 114.7L189.352 114.844C189.592 115.036 190.12 115.276 190.072 114.748C190.024 114.22 189.496 113.74 189.16 113.5Z" fill="#909090"/>
|
||||
<path d="M161.944 114.7C163.96 115.228 166.072 115.228 168.04 114.7C169.144 114.412 170.2 113.98 171.208 113.452C172.216 113.02 173.128 112.396 173.944 111.676C174.52 111.1 175 109.948 174.088 109.42C173.272 108.94 171.976 109.66 171.256 110.044C169.432 111.148 168.04 112.876 167.464 114.892C166.84 117.004 168.616 118.636 170.392 119.356C172.456 120.172 174.76 119.404 176.536 118.204C177.256 117.772 177.784 117.1 178.072 116.284C178.264 115.564 178.072 114.748 177.256 114.556C176.296 114.316 174.952 115.084 174.232 115.612C173.512 116.188 173.128 117.052 173.176 117.964C173.176 119.884 174.136 122.188 176.248 122.572C177.256 122.668 178.312 122.476 179.224 121.996C180.136 121.564 181.096 121.036 181.432 120.028C181.528 119.788 180.664 120.124 180.568 120.172C180.28 120.268 179.416 120.604 179.272 120.94C179.176 121.18 179.08 121.42 178.888 121.612C178.84 121.708 178.696 121.756 178.648 121.852C178.936 121.372 179.656 121.516 179.08 121.564C178.504 121.612 177.928 121.516 177.448 121.228C176.44 120.604 175.72 119.548 175.48 118.348C175.336 117.724 175.288 117.1 175.336 116.476C175.336 116.14 175.432 115.804 175.624 115.468C175.672 115.324 175.864 115.228 175.864 115.084C174.76 115.42 174.472 115.564 175 115.564C175.096 115.564 175.192 115.612 175.24 115.612C176.44 116.092 175.768 117.772 175.096 118.396C175.048 118.444 174.568 118.732 175 118.54C175.432 118.348 175 118.492 174.904 118.54C174.568 118.588 174.28 118.636 173.944 118.588C173.224 118.54 172.504 118.348 171.88 118.012C170.776 117.436 169.48 116.284 169.432 114.94C169.384 113.596 170.392 112.06 171.16 111.004C171.352 110.716 171.592 110.476 171.832 110.236L171.976 110.14C172.312 109.852 172.12 109.948 171.304 110.38C171.4 110.428 171.592 110.38 171.688 110.38C172.408 110.572 172.504 111.484 172.168 112.012C171.496 113.164 169.864 113.644 168.616 113.836C167.032 114.076 165.448 113.98 163.864 113.548C163.48 113.452 162.808 113.884 162.472 114.076C162.472 114.172 161.704 114.604 161.944 114.7Z" fill="white"/>
|
||||
<path d="M172.089 77.62C176.876 77.62 180.756 73.7397 180.756 68.9531C180.756 64.1664 176.876 60.2861 172.089 60.2861C167.302 60.2861 163.422 64.1664 163.422 68.9531C163.422 73.7397 167.302 77.62 172.089 77.62Z" fill="#CECECE"/>
|
||||
<path d="M179.321 69.2528C179.262 72.2414 177.349 74.9311 174.54 75.9473C171.551 76.9036 168.323 75.8875 166.411 73.3771C164.498 70.8667 164.319 67.4597 165.992 64.7699C167.606 62.3193 170.595 61.1238 173.464 61.7813C176.931 62.6779 179.321 65.786 179.321 69.2528C179.321 70.0896 180.278 70.3885 180.935 70.2689C181.712 70.1494 182.25 69.4919 182.25 68.7149C182.191 64.5906 179.501 60.9445 175.616 59.5698C171.551 58.195 167.008 59.51 164.259 62.8572C161.569 66.0849 161.27 70.6873 163.422 74.2736C165.693 77.86 169.937 79.6531 174.121 78.8163C178.843 77.8002 182.25 73.6162 182.31 68.7746C182.31 67.9976 181.354 67.6987 180.696 67.8183C179.859 67.8781 179.321 68.5355 179.321 69.2528Z" fill="#CECECE"/>
|
||||
<path d="M173.942 66.9209C173.643 67.0404 173.464 67.3393 173.523 67.6382C173.523 67.6382 173.523 67.6382 173.523 67.6979C173.763 68.2957 174.48 67.9968 174.42 67.4588C174.42 67.2198 174.241 66.9807 173.942 66.9209Z" fill="#3D3D3D"/>
|
||||
<path d="M168.981 66.8613C168.682 66.9211 168.503 67.2797 168.562 67.5786C168.562 67.5786 168.562 67.5786 168.562 67.6384C168.801 68.2361 169.519 67.9372 169.459 67.3993C169.459 67.1602 169.28 66.9211 168.981 66.8613C169.041 66.8613 169.041 66.8613 168.981 66.8613Z" fill="#3D3D3D"/>
|
||||
<path d="M166.889 71.0454C167.008 71.942 167.905 72.4202 168.682 72.719C169.638 73.0777 170.714 73.257 171.73 73.1972C172.806 73.1972 173.822 72.9581 174.779 72.5397C175.616 72.2409 176.273 71.5236 176.452 70.627C176.452 70.3879 176.154 70.2086 175.974 70.1489C175.616 70.0293 175.257 69.9695 174.898 70.0293C174.42 70.0293 173.524 70.1489 173.464 70.7466C173.404 71.165 173.105 71.5236 172.627 71.6432C172.866 71.5236 172.448 71.7029 172.388 71.7029L172.209 71.7627C172.388 71.7029 172.388 71.7029 172.268 71.7627C172.149 71.8225 171.97 71.8225 171.85 71.8225C172.089 71.8225 172.089 71.8225 171.91 71.8225H171.671C171.491 71.8225 171.551 71.8225 171.73 71.8225H171.491H171.252H171.312L170.894 71.7029C171.192 71.7627 170.774 71.6432 170.714 71.6432C170.655 71.6432 170.356 71.4638 170.475 71.5236C170.356 71.4638 170.236 71.4041 170.117 71.2845C169.997 71.165 169.878 71.0454 169.818 70.8661C169.758 70.2684 168.742 70.2684 168.323 70.2684C167.965 70.2684 167.606 70.3282 167.248 70.5075C167.188 70.6868 166.889 70.8661 166.889 71.0454Z" fill="#3D3D3D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 48 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.5624 10.1875C20.8124 9.5 20.8749 8.8125 20.8124 8.125C20.7499 7.4375 20.4999 6.75 20.1874 6.125C19.6249 5.1875 18.8124 4.4375 17.8749 4C16.8749 3.5625 15.8124 3.4375 14.7499 3.6875C14.2499 3.1875 13.6874 2.75 13.0624 2.4375C12.4374 2.125 11.6874 2 10.9999 2C9.9374 2 8.8749 2.3125 7.9999 2.9375C7.1249 3.5625 6.4999 4.4375 6.1874 5.4375C5.4374 5.625 4.81239 5.9375 4.18739 6.3125C3.62489 6.75 3.1874 7.3125 2.8124 7.875C2.24991 8.8125 2.06241 9.875 2.18741 10.9375C2.31241 12 2.7499 13 3.4374 13.8125C3.1874 14.5 3.1249 15.1875 3.1874 15.875C3.2499 16.5625 3.4999 17.25 3.8124 17.875C4.3749 18.8125 5.18739 19.5625 6.12489 20C7.1249 20.4375 8.1874 20.5625 9.2499 20.3125C9.7499 20.8125 10.3124 21.25 10.9374 21.5625C11.5624 21.875 12.3124 22 12.9999 22C14.0624 22 15.1249 21.6875 15.9999 21.0625C16.8749 20.4375 17.4999 19.5625 17.8124 18.5625C18.4999 18.4375 19.1874 18.125 19.7499 17.6875C20.3124 17.25 20.8124 16.75 21.1249 16.125C21.6874 15.1875 21.8749 14.125 21.7499 13.0625C21.6249 12 21.2499 11 20.5624 10.1875ZM13.0624 20.6875C12.0624 20.6875 11.3124 20.375 10.6249 19.8125C10.6249 19.8125 10.6874 19.75 10.7499 19.75L14.7499 17.4375C14.8749 17.375 14.9374 17.3125 14.9999 17.1875C15.0624 17.0625 15.0624 17 15.0624 16.875V11.25L16.7499 12.25V16.875C16.8124 19.0625 15.0624 20.6875 13.0624 20.6875ZM4.99989 17.25C4.56239 16.5 4.37489 15.625 4.56239 14.75C4.56239 14.75 4.62489 14.8125 4.68739 14.8125L8.6874 17.125C8.8124 17.1875 8.8749 17.1875 8.9999 17.1875C9.1249 17.1875 9.2499 17.1875 9.3124 17.125L14.1874 14.3125V16.25L10.1249 18.625C9.2499 19.125 8.2499 19.25 7.3124 19C6.3124 18.75 5.49989 18.125 4.99989 17.25ZM3.9374 8.5625C4.3749 7.8125 5.06239 7.25 5.87489 6.9375V7.0625V11.6875C5.87489 11.8125 5.87489 11.9375 5.93739 12C5.99989 12.125 6.0624 12.1875 6.1874 12.25L11.0624 15.0625L9.3749 16.0625L5.37489 13.75C4.49989 13.25 3.8749 12.4375 3.6249 11.5C3.3749 10.5625 3.4374 9.4375 3.9374 8.5625ZM17.7499 11.75L12.8749 8.9375L14.5624 7.9375L18.5624 10.25C19.1874 10.625 19.6874 11.125 19.9999 11.75C20.3124 12.375 20.4999 13.0625 20.4374 13.8125C20.3749 14.5 20.1249 15.1875 19.6874 15.75C19.2499 16.3125 18.6874 16.75 17.9999 17V12.25C17.9999 12.125 17.9999 12 17.9374 11.9375C17.9374 11.9375 17.8749 11.8125 17.7499 11.75ZM19.4374 9.25C19.4374 9.25 19.3749 9.1875 19.3124 9.1875L15.3124 6.875C15.1874 6.8125 15.1249 6.8125 14.9999 6.8125C14.8749 6.8125 14.7499 6.8125 14.6874 6.875L9.8124 9.6875V7.75L13.8749 5.375C14.4999 5 15.1874 4.875 15.9374 4.875C16.6249 4.875 17.3124 5.125 17.9374 5.5625C18.4999 6 18.9999 6.5625 19.2499 7.1875C19.4999 7.8125 19.5624 8.5625 19.4374 9.25ZM8.9374 12.75L7.2499 11.75V7.0625C7.2499 6.375 7.4374 5.625 7.8124 5.0625C8.1874 4.4375 8.7499 4 9.3749 3.6875C9.9999 3.375 10.7499 3.25 11.4374 3.375C12.1249 3.4375 12.8124 3.75 13.3749 4.1875C13.3749 4.1875 13.3124 4.25 13.2499 4.25L9.2499 6.5625C9.1249 6.625 9.0624 6.6875 8.9999 6.8125C8.9374 6.9375 8.9374 7 8.9374 7.125V12.75ZM9.8124 10.75L11.9999 9.5L14.1874 10.75V13.25L11.9999 14.5L9.8124 13.25V10.75Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 95 KiB |
@@ -0,0 +1,89 @@
|
||||
<svg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="Newsletter 1">
|
||||
<g id="device">
|
||||
<path id="Vector" d="M20.544 52.0799H153.696C156.768 52.0319 159.312 54.4319 159.408 57.5039V146.928C159.312 150 156.768 152.448 153.696 152.352H20.544C17.472 152.4 14.928 150 14.832 146.928V57.5039C14.928 54.4319 17.472 51.9839 20.544 52.0799Z" fill="white"/>
|
||||
<path id="Vector_2" d="M21.1202 52.944H152.304C154.032 52.944 155.808 52.8 157.152 54.096C158.64 55.584 158.352 57.936 158.352 59.904V141.744C158.352 143.328 158.4 144.912 158.352 146.544C158.304 149.424 155.856 151.488 153.072 151.488H20.2562C18.9122 151.536 17.6642 151.008 16.7522 150.048C15.9842 149.088 15.7922 147.936 15.7922 146.736V59.328C15.7922 58.848 15.7922 58.416 15.7922 57.936C15.8402 55.056 18.2882 52.992 21.1202 52.944C21.6482 52.944 21.5042 52.272 21.3122 51.984C21.0242 51.504 20.4962 51.216 19.9202 51.168C16.6082 51.168 13.8722 53.808 13.8242 57.168C13.8242 57.6 13.8242 58.08 13.8242 58.512V146.16C13.8242 150.24 17.2802 153.216 21.2162 153.216H153.552C153.888 153.216 154.272 153.216 154.608 153.216C157.776 153.024 160.272 150.432 160.32 147.216C160.32 145.68 160.32 144.096 160.32 142.56V58.176C160.368 56.4 159.648 54.624 158.352 53.376C156.912 51.936 154.896 51.12 152.832 51.168H19.8722C19.2962 51.168 19.4402 51.84 19.6322 52.128C20.0162 52.656 20.5442 52.944 21.1202 52.944Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_3" d="M74.4962 152.016L62.4482 171.264H96.9122L108.816 152.016H74.4962Z" fill="white"/>
|
||||
<path id="Vector_4" d="M73.4887 151.488L69.4087 158.016L62.9287 168.336L61.4407 170.736C61.2487 171.072 61.5367 171.456 61.7767 171.696C62.1127 171.984 62.5447 172.128 62.9767 172.128H94.2247C95.2327 172.128 96.3367 172.224 97.3447 172.128C97.7767 172.08 97.9207 171.84 98.1607 171.504L99.1687 169.824L102.913 163.728L107.137 156.864C108.001 155.472 108.865 154.128 109.681 152.736C109.729 152.688 109.777 152.592 109.825 152.544C110.017 152.208 109.729 151.824 109.537 151.584C109.201 151.296 108.769 151.152 108.337 151.152H74.0167C73.6807 151.152 73.3927 151.44 73.4407 151.776C73.4407 151.872 73.4887 152.016 73.5367 152.112C73.8247 152.592 74.4007 152.88 74.9767 152.832H109.297L107.809 151.44L103.777 157.968L97.3927 168.288L95.9047 170.688L96.4327 170.352H61.9687L63.4567 171.744L67.5367 165.216L74.0167 154.896L75.5047 152.496C76.0807 151.68 74.0167 150.576 73.4887 151.488Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_5" d="M72.7686 152.016C72.7686 152.016 58.6566 172.32 58.8486 173.04C59.0406 173.76 76.6566 173.04 76.6566 173.04V171.216H62.4486L74.4966 151.968H72.7686V152.016Z" fill="white"/>
|
||||
<path id="Vector_6" d="M71.9041 151.2C70.6081 153.024 69.3601 154.848 68.1121 156.672C65.8081 160.032 63.5041 163.44 61.2481 166.848C60.3841 168.144 59.5681 169.44 58.7521 170.736C58.3201 171.456 57.5521 172.32 58.0801 173.184C58.8001 174.336 60.4801 174.192 61.6801 174.24C63.5521 174.288 65.4721 174.288 67.3441 174.24C70.5601 174.192 73.7761 174.192 76.9441 173.952H77.1361C77.4241 173.952 77.6161 173.76 77.6161 173.472C77.6161 173.472 77.6161 173.472 77.6161 173.424V171.6C77.5201 170.88 76.9441 170.304 76.1761 170.208H61.9681L63.2641 171.936L67.3441 165.408L73.8241 155.088L75.3121 152.688C75.7921 151.968 74.7361 150.96 74.0161 150.96H72.2401C71.7121 150.96 71.7121 151.584 71.9041 151.92C72.1441 152.448 72.6241 152.784 73.2001 152.832H74.9761L73.6801 151.104L69.6001 157.632L63.1201 167.952L61.6321 170.352C61.1521 171.12 62.2081 172.08 62.9281 172.08H77.1361L75.6961 170.688V172.512L76.1761 172.032C73.5841 172.128 70.9921 172.224 68.4001 172.272C66.4321 172.32 64.4641 172.368 62.4961 172.32C61.7281 172.32 60.9601 172.32 60.1921 172.272C59.9041 172.272 59.6161 172.224 59.3281 172.224H59.1361C59.0881 172.224 59.3281 172.272 59.1361 172.224L58.8481 172.176C58.7521 172.176 58.6081 172.08 58.8001 172.176C59.2321 172.464 59.5681 172.896 59.7601 173.376C59.8081 173.616 59.7121 173.52 59.8081 173.328C59.9521 172.992 60.1441 172.656 60.3361 172.32L60.3841 172.272L60.4801 172.08C60.5761 171.936 60.6241 171.84 60.7201 171.696L61.2481 170.832C61.6801 170.16 62.1121 169.488 62.5441 168.816C64.7041 165.504 66.9121 162.288 69.1201 159.024C70.5601 156.96 72.0001 154.896 73.3921 152.832L73.4401 152.736C74.1121 152.016 72.4321 150.48 71.9041 151.2Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_7" d="M112.416 171.264H76.6562V173.088H112.416V171.264Z" fill="white"/>
|
||||
<path id="Vector_8" d="M112.032 170.592H76.2718C75.9358 170.592 75.5518 170.64 75.5518 171.024V172.848C75.5518 173.376 76.7038 173.712 77.0398 173.712H112.8C113.136 173.712 113.52 173.664 113.52 173.28V171.456C113.52 170.736 111.312 170.16 111.312 171.024V172.848L112.032 172.416H76.2718L77.7598 173.28V171.456L77.0398 171.888H112.8C113.184 171.888 113.664 171.744 113.424 171.312C113.184 170.88 112.464 170.592 112.032 170.592Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_9" d="M23.6641 52.6072H156.816C159.888 52.5592 162.432 54.9592 162.528 58.0312V147.455C162.432 150.527 159.888 152.975 156.816 152.879H23.6641C20.5921 152.975 18.0481 150.527 17.9521 147.455V58.0312C18.0481 54.9592 20.5921 52.5112 23.6641 52.6072Z" fill="white"/>
|
||||
<path id="Vector_10" d="M24.3836 53.4713H155.616C157.44 53.4713 159.552 53.2793 160.944 54.6233C161.472 55.1033 161.712 56.3993 161.712 57.2633V141.935C161.712 143.471 161.712 145.055 161.712 146.591C161.616 149.615 159.12 152.015 156.096 151.967H22.9916C22.5596 151.967 22.1276 151.919 21.6956 151.823C20.8796 151.679 20.1596 151.295 19.5356 150.767C18.8156 149.903 18.7676 148.703 18.7676 147.599V60.1913C18.7676 59.7593 18.7676 59.2793 18.7676 58.8473C18.8636 55.8713 21.3596 53.4713 24.3836 53.4713C24.6716 53.4713 24.0956 52.7513 24.0476 52.6553C23.8556 52.4153 23.3276 51.6953 22.9916 51.6953C19.8716 51.7433 17.2316 54.0473 17.1836 57.2633C17.1836 57.7433 17.1836 58.2233 17.1836 58.6553V146.303C17.1836 150.143 20.6876 153.743 24.5276 153.743H156.864C157.2 153.743 157.584 153.743 157.92 153.743C160.896 153.599 163.248 151.151 163.296 148.175C163.296 146.591 163.296 145.007 163.296 143.375V59.1353C163.296 57.1193 162.384 55.4393 160.992 53.9993C159.696 52.5593 157.872 51.7433 155.904 51.6953H22.9436C22.6556 51.6953 23.1836 52.4153 23.2796 52.5113C23.4716 52.7513 23.9996 53.4713 24.3836 53.4713Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_11" d="M23.6641 51.4548H156.816C159.888 51.4068 162.432 53.8068 162.528 56.8788V131.759H17.9521V56.8788C18.0481 53.8068 20.5921 51.4068 23.6641 51.4548Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_12" d="M24.0963 52.3194H155.424C156.768 52.3194 158.16 52.1754 159.36 52.8954C161.616 54.2394 161.376 56.5914 161.376 58.7994V131.375L162 130.895H23.4243C21.5523 130.895 19.6803 130.847 17.8083 130.895H17.5683L19.0563 132.143V58.4154C19.0563 58.0794 19.0563 57.7434 19.0563 57.3594C19.0083 55.8714 19.6803 54.4794 20.7843 53.5194C21.6963 52.7514 22.8963 52.3194 24.0963 52.3194C24.4323 52.3674 24.7203 52.0794 24.7203 51.7434C24.7203 51.5994 24.6723 51.5034 24.6243 51.4074C24.3363 50.8794 23.8083 50.5914 23.2323 50.5914C19.7763 50.5434 16.9443 53.2794 16.8963 56.7354C16.8963 56.7834 16.8963 56.7834 16.8963 56.8314V121.055C16.8963 124.463 16.8483 127.871 16.8963 131.279V131.423C16.8963 132.191 17.7123 132.671 18.3843 132.671H157.056C158.928 132.671 160.8 132.719 162.672 132.671H162.912C163.152 132.671 163.536 132.479 163.536 132.191V62.8314C163.536 61.0554 163.536 59.2794 163.536 57.4554C163.536 53.3754 160.032 50.5914 156.144 50.5914H23.2323C22.8963 50.5914 22.6083 50.8314 22.6083 51.2154C22.6083 51.3594 22.6563 51.4554 22.7043 51.5514C22.9923 52.0314 23.5203 52.3194 24.0963 52.3194Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_13" d="M90.3841 145.344C92.0011 145.344 93.3121 144.076 93.3121 142.512C93.3121 140.948 92.0011 139.68 90.3841 139.68C88.767 139.68 87.4561 140.948 87.4561 142.512C87.4561 144.076 88.767 145.344 90.3841 145.344Z" fill="white"/>
|
||||
<path id="Vector_14" d="M90.6717 140.063C90.7197 140.063 91.0077 140.063 90.6717 140.063C90.3837 140.015 90.9117 140.111 90.6717 140.063C90.8157 140.111 90.7197 140.063 90.6717 140.063L90.8637 140.159C91.0077 140.207 90.7197 140.063 90.9117 140.207C91.0557 140.303 91.1517 140.351 91.2957 140.447C91.6797 140.783 91.9197 141.167 92.0637 141.647C92.3517 142.655 92.0157 143.807 91.1997 144.479C91.0557 144.623 90.8637 144.719 90.6717 144.815C90.5277 144.863 90.4317 144.911 90.2877 144.959C90.0477 145.007 90.3837 144.959 90.1437 145.007C90.0957 145.007 89.8557 145.055 90.0477 145.007C90.0477 145.007 89.7597 145.007 89.9517 145.007H90.0477C89.8557 145.007 90.0957 145.007 90.0957 145.007C89.8077 144.959 90.3357 145.055 90.0477 145.007C89.9037 144.959 89.9997 145.007 90.0477 145.007L89.8557 144.911H89.8077L89.6157 144.767C88.4637 143.951 88.1757 142.319 89.0397 141.119C89.1837 140.927 89.3277 140.735 89.5197 140.591C89.7117 140.399 89.9517 140.303 90.1917 140.159C90.2877 140.111 90.4317 140.063 90.5277 140.063L90.6717 140.015C90.4797 140.063 90.8157 140.015 90.8637 140.015C91.0557 140.015 91.7277 139.871 91.3437 139.583C90.8637 139.343 90.3357 139.247 89.8077 139.295C88.3677 139.295 86.9277 140.015 86.4477 141.407C86.0157 142.703 86.5437 144.095 87.6957 144.815C88.5117 145.295 89.4717 145.583 90.4797 145.583C91.2957 145.631 92.0637 145.487 92.8317 145.151C94.0797 144.575 94.7037 143.183 94.4157 141.839C93.9357 139.967 91.9197 139.247 90.1437 139.247C89.9997 139.247 89.1357 139.247 89.2797 139.583C89.3277 139.727 89.6637 139.823 89.7597 139.823C90.0477 139.967 90.3357 140.015 90.6717 140.063Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_15" d="M156.528 57.167H23.6641V126.383H156.528V57.167Z" fill="white"/>
|
||||
<path id="Vector_16" d="M24.0486 57.7915H151.537C153.265 57.7915 154.993 57.8395 156.721 57.7915H156.961L155.473 56.9275V125.087C155.425 125.375 155.425 125.711 155.473 125.999C155.473 126.047 155.473 126.095 155.473 126.095L156.193 125.663H28.6566C26.9286 125.663 25.2006 125.615 23.4726 125.663H23.2326L24.7206 126.527V60.1915C24.7686 59.2795 24.7686 58.4155 24.7206 57.5035V57.4075C24.7206 56.6875 22.5126 56.0635 22.5126 56.9755V123.359C22.4646 124.271 22.4646 125.135 22.5126 126.047C22.5126 126.095 22.5126 126.143 22.5126 126.143C22.5126 126.671 23.6166 127.007 24.0006 127.007H156.865C157.153 127.007 157.585 126.959 157.585 126.576V60.1915C157.633 59.2795 157.633 58.4155 157.585 57.5035C157.585 57.4555 157.585 57.4075 157.585 57.4075C157.585 56.8795 156.433 56.5435 156.097 56.5435H23.4726C23.3766 56.5435 23.3286 56.5435 23.2326 56.5435C22.8486 56.5435 22.3686 56.6395 22.6086 57.1195C22.8486 57.5995 23.6166 57.7915 24.0486 57.7915Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_17" d="M33.6967 66.4798C34.6511 66.4798 35.4248 65.7492 35.4248 64.8478C35.4248 63.9465 34.6511 63.2158 33.6967 63.2158C32.7424 63.2158 31.9688 63.9465 31.9688 64.8478C31.9688 65.7492 32.7424 66.4798 33.6967 66.4798Z" fill="#CECECE"/>
|
||||
<path id="Vector_18" d="M39.936 66.3831C40.8904 66.3831 41.664 65.6525 41.664 64.7511C41.664 63.8498 40.8904 63.1191 39.936 63.1191C38.9817 63.1191 38.208 63.8498 38.208 64.7511C38.208 65.6525 38.9817 66.3831 39.936 66.3831Z" fill="#CECECE"/>
|
||||
<path id="Vector_19" d="M46.2241 66.4798C47.1784 66.4798 47.9521 65.7492 47.9521 64.8478C47.9521 63.9465 47.1784 63.2158 46.2241 63.2158C45.2697 63.2158 44.4961 63.9465 44.4961 64.8478C44.4961 65.7492 45.2697 66.4798 46.2241 66.4798Z" fill="#CECECE"/>
|
||||
</g>
|
||||
<g id="news">
|
||||
<g id="newspaper">
|
||||
<path id="Vector_20" d="M117.265 165.263L148.609 159.167C148.609 159.167 146.545 151.343 138.817 153.071C128.161 155.423 117.265 165.263 117.265 165.263Z" fill="#CECECE"/>
|
||||
<path id="Vector_21" d="M117.168 166.128L127.776 164.064L144.624 160.8L148.464 160.032C148.992 159.936 149.856 159.552 149.664 158.832C148.656 154.944 145.2 151.968 141.12 151.968C139.2 152.064 137.328 152.448 135.552 153.12C133.68 153.792 131.808 154.56 130.032 155.472C126.816 157.152 123.744 159.072 120.816 161.232C119.328 162.336 117.792 163.488 116.4 164.736C116.016 165.072 115.824 165.6 116.304 165.936C116.832 166.224 117.504 166.128 117.984 165.744C121.392 162.72 125.136 160.08 129.12 157.824C132.24 156.096 135.648 154.416 139.152 153.744C141.456 153.264 143.904 154.032 145.44 155.856C145.776 156.24 146.112 156.672 146.4 157.152L146.592 157.488L146.64 157.584C146.784 157.824 146.592 157.488 146.64 157.632C146.688 157.776 146.832 158.016 146.928 158.208C147.12 158.592 147.264 159.024 147.408 159.456L148.608 158.256L138 160.32L121.152 163.584L117.312 164.352C116.784 164.448 116.112 164.736 116.064 165.36C116.016 165.984 116.736 166.224 117.168 166.128Z" fill="#CECECE"/>
|
||||
<path id="Vector_22" d="M225.168 161.471C225.168 161.471 214.704 160.031 212.256 153.167C209.808 146.303 220.272 135.407 208.56 136.607C196.848 137.807 165.12 158.351 169.44 117.263C173.856 75.5514 164.88 40.0314 152.208 37.9194C139.536 35.8074 57.1201 38.7834 57.1201 38.7834C124.128 37.5354 86.1601 152.783 107.952 164.255C120.672 170.975 128.16 153.839 138.768 153.071C138.768 153.071 146.928 152.543 144.384 159.167C141.84 165.791 143.664 169.247 152.208 172.079L225.168 161.471Z" fill="white"/>
|
||||
<path id="Vector_23" d="M225.648 160.799C224.352 160.607 223.056 160.271 221.808 159.839C219.36 158.975 216.864 157.727 215.136 155.759C213.312 153.695 212.736 151.295 213.216 148.607C213.648 146.159 214.56 143.903 215.136 141.503C215.52 139.823 215.712 137.663 214.032 136.655C212.16 135.503 209.424 135.791 207.36 136.175C204.192 136.751 201.072 137.855 198 138.863C194.4 140.063 191.04 141.119 187.344 141.743C184.176 142.271 180.912 142.511 177.84 141.311C174.624 140.063 172.512 137.087 171.456 133.823C169.488 127.727 170.256 121.151 170.832 114.863C172.416 98.1115 172.272 80.8795 168.768 64.3675C167.52 58.5115 165.888 52.7035 163.2 47.3275C161.472 43.8715 159.072 40.1275 155.52 38.2555C153.216 37.0555 150.528 37.0075 147.984 36.8635C144.336 36.6715 140.64 36.5755 136.992 36.5755C126.864 36.4795 116.688 36.6235 106.56 36.8155C96.3363 37.0075 86.1123 37.2475 75.8883 37.5835C69.9843 37.7755 64.0803 37.9675 58.1763 38.1595L57.3123 38.2075C56.8803 38.2075 56.0643 38.3995 55.9683 38.9275C55.8723 39.4555 56.5443 39.5995 56.9283 39.5515C62.2083 39.4555 67.5363 40.1275 72.5283 41.9995C76.7043 43.5835 80.4963 46.0795 83.6163 49.2955C86.7363 52.6075 89.2803 56.3995 91.1043 60.5275C93.0723 64.9915 94.5603 69.6475 95.5683 74.4475C96.6723 79.6315 97.4403 84.9115 97.8723 90.2395C98.3523 95.7115 98.5923 101.231 98.6883 106.751C98.7843 112.175 98.7843 117.599 98.8323 122.975C98.8323 127.967 98.8323 132.959 99.0243 137.903C99.1203 142.127 99.4563 146.303 100.032 150.479C100.512 153.695 101.232 156.959 102.672 159.935C103.968 162.719 106.32 164.831 109.2 165.791C112.464 166.895 116.064 166.751 119.232 165.359C122.4 164.015 125.088 161.903 127.776 159.839C130.272 157.871 132.816 155.711 135.84 154.559C136.8 154.175 137.808 153.935 138.816 153.839H139.392C139.632 153.839 139.248 153.839 139.488 153.839C139.968 153.887 140.448 153.935 140.928 154.031C141.888 154.175 142.704 154.703 143.328 155.423C144.24 156.671 143.712 158.255 143.232 159.599C142.224 162.383 141.648 165.647 143.616 168.191C144.672 169.439 145.968 170.447 147.456 171.119C148.416 171.599 149.376 172.031 150.384 172.367C151.008 172.655 151.728 172.847 152.4 172.799C152.976 172.751 153.552 172.655 154.128 172.559L164.4 171.071L180.528 168.719L198.48 166.127L214.32 163.823L224.016 162.431L225.36 162.239C225.744 162.191 226.512 161.855 226.416 161.375C226.32 160.895 225.456 160.895 225.12 160.943L217.872 161.999L200.448 164.495L179.424 167.519L161.136 170.159L155.136 171.023C154.176 171.167 153.216 171.263 152.304 171.455H152.16L153.024 171.503C150.528 170.687 147.744 169.679 145.968 167.615C144.672 166.079 144.384 164.159 144.72 162.191C145.104 160.031 146.688 157.679 145.872 155.471C145.296 153.887 143.712 153.071 142.176 152.735C133.728 150.767 127.392 158.735 121.008 162.767C119.184 163.919 117.216 164.927 115.008 165.167C112.8 165.359 110.592 164.831 108.72 163.727C107.28 162.911 106.128 161.711 105.36 160.223C103.056 156.287 102.384 151.295 101.904 146.735C101.232 140.255 101.184 133.727 101.136 127.199C101.088 119.615 101.136 112.079 100.944 104.495C100.8 96.7675 100.224 89.0395 99.2163 81.4075C98.2083 74.4475 96.6243 67.4395 93.8403 60.9595C91.2963 55.0555 87.6483 49.6315 82.6083 45.5995C77.1363 41.2315 70.3203 39.0235 63.4083 38.3995C61.3923 38.2075 59.3283 38.1595 57.3123 38.2075L56.9283 39.5515C61.1523 39.4075 65.3283 39.2635 69.5043 39.1195C79.1043 38.7835 88.7523 38.5435 98.3523 38.3035C108.864 38.0635 119.424 37.8715 129.984 37.8715C134.208 37.8715 138.432 37.8715 142.704 38.0155C145.44 38.0155 148.176 38.2075 150.864 38.4955C152.064 38.5915 153.264 39.0235 154.272 39.6475C155.808 40.6555 157.104 41.9035 158.16 43.3915C161.232 47.5675 163.104 52.6075 164.592 57.5515C166.56 64.4635 167.856 71.5195 168.48 78.6235C169.344 87.2635 169.536 95.9515 169.152 104.591C168.96 109.295 168.48 113.951 168.096 118.655C167.76 121.967 167.712 125.279 168 128.591C168.384 132.671 169.44 137.183 172.56 140.159C177.984 145.343 186.528 143.615 193.008 141.839C196.512 140.879 199.92 139.679 203.376 138.623C204.144 138.383 204.912 138.143 205.68 137.951L205.968 137.903L206.448 137.807C206.784 137.711 207.12 137.663 207.456 137.615C207.792 137.567 208.032 137.519 208.368 137.471C208.8 137.423 208.224 137.471 208.656 137.423C209.088 137.375 209.664 137.327 210.192 137.375C211.008 137.375 212.016 137.471 212.592 138.143C213.792 139.487 212.832 142.031 212.4 143.471C211.68 145.871 210.864 148.271 210.768 150.767C210.576 156.431 216.144 159.839 220.944 161.375C222.192 161.807 223.488 162.095 224.784 162.287C225.264 162.335 226.08 162.239 226.368 161.759C226.656 161.279 226.08 160.847 225.648 160.799Z" fill="#CECECE"/>
|
||||
<path id="Vector_24" d="M42.3364 50.736C42.3364 50.736 40.0324 43.584 57.1204 38.784C73.8724 34.08 86.2084 50.448 86.2084 50.448" fill="#CECECE"/>
|
||||
<path id="Vector_25" d="M43.4885 50.5921C43.1525 49.5361 43.4885 48.3841 43.9685 47.4241C45.5045 44.1601 49.2485 42.2401 52.4645 40.9441C55.2485 39.7921 58.2725 38.8321 61.2965 38.5441C63.7445 38.3521 66.2405 38.5921 68.6405 39.2641C72.8645 40.5121 76.7525 42.6721 80.0165 45.6001C81.2165 46.6081 82.3685 47.7121 83.4725 48.8641C84.0005 49.4401 84.4805 50.0641 85.0085 50.6401L85.0565 50.7361C85.4885 51.3121 87.7445 50.7361 87.3125 50.1601C86.0165 48.5281 84.5765 46.9921 82.9925 45.6001C79.6325 42.5281 75.6485 40.1761 71.3285 38.6881C68.7365 37.8241 66.0005 37.3921 63.2645 37.4401C59.9045 37.4881 56.7365 38.3041 53.5685 39.3601C49.4405 40.7521 44.6885 42.8161 42.1445 46.5601C41.5685 47.4241 41.1845 48.4321 41.0405 49.4401C40.9445 49.9201 40.9445 50.4001 41.0885 50.8801V50.9281C41.3765 51.6961 43.7285 51.2161 43.4885 50.5921Z" fill="#CECECE"/>
|
||||
<path id="Vector_26" d="M161.136 65.1348C161.136 65.1348 141.552 65.3748 139.536 65.1348C139.536 65.1348 140.544 84.0948 141.12 84.0948C141.696 84.0948 160.704 83.5668 162.48 82.9428C164.256 82.3188 161.136 65.1348 161.136 65.1348Z" fill="#CECECE"/>
|
||||
<path id="Vector_27" d="M160.561 64.8959C154.609 64.9439 148.609 65.0399 142.657 64.9919H141.457H141.073H140.641H139.873C139.777 64.9919 139.345 64.9439 139.825 64.9919C139.681 64.9919 139.345 64.9439 139.873 64.9919C139.825 64.9919 138.337 64.7999 138.337 65.0399C138.577 68.9279 138.817 72.8639 139.057 76.7519C139.201 78.8639 139.345 81.0239 139.681 83.1359C139.681 83.3759 139.729 83.6159 139.825 83.8079C139.969 84.1919 140.401 84.1919 140.785 84.2399C141.457 84.2879 142.081 84.3359 142.753 84.2879C147.841 84.1439 152.977 83.9999 158.065 83.6639C159.169 83.6159 160.273 83.5199 161.425 83.4239C162.097 83.3759 162.817 83.2799 163.489 83.1359C164.017 82.9919 164.113 82.4639 164.209 81.9839C164.305 81.0239 164.353 80.0639 164.257 79.0559C163.921 74.4959 163.345 69.9839 162.433 65.4719C162.433 65.3759 162.385 65.2799 162.385 65.1839C162.289 64.7519 159.985 64.8959 159.985 64.9919C160.705 68.8319 161.281 72.7199 161.665 76.6079C161.761 77.7599 161.857 78.9119 161.905 80.0639C161.953 80.8319 161.905 81.5999 161.713 82.3199C161.665 82.4639 161.569 82.6079 161.425 82.7039C161.329 82.7519 161.521 82.7039 161.377 82.7039L161.233 82.7519L160.849 82.7999C160.225 82.8959 159.265 82.9919 158.449 83.0399C153.361 83.4239 148.273 83.5679 143.137 83.7119C142.417 83.7119 141.697 83.7599 141.025 83.7599C140.881 83.7599 140.737 83.7599 140.641 83.7599C139.825 83.8079 142.321 83.8559 142.369 84.0479C142.369 83.9999 142.369 83.9999 142.321 83.9999C142.273 83.9999 142.273 83.8079 142.273 83.7119C141.937 81.9359 141.745 80.1119 141.649 78.3359C141.313 74.0159 141.025 69.6959 140.785 65.3759V65.0879L139.201 65.2799C140.401 65.3759 141.649 65.4239 142.897 65.4239C144.625 65.4239 146.401 65.4239 148.129 65.4239C151.825 65.4239 155.521 65.3759 159.217 65.3279L161.761 65.2799C162.001 65.2799 162.529 65.2799 162.193 65.0399C161.857 64.7999 160.945 64.8959 160.561 64.8959Z" fill="#CECECE"/>
|
||||
<path id="Vector_28" d="M129.792 117.888C129.792 117.888 110.256 118.224 108.24 117.888C108.24 117.888 109.248 144 109.824 144C110.4 144 129.408 143.28 131.184 142.416C132.96 141.552 129.792 117.888 129.792 117.888Z" fill="#CECECE"/>
|
||||
<path id="Vector_29" d="M129.504 116.735C123.504 116.831 117.504 116.927 111.552 116.879C110.784 116.879 110.064 116.879 109.296 116.831H108.864C108.576 116.831 108.96 116.831 108.72 116.831C108.48 116.831 108.384 116.831 108.192 116.783C107.76 116.687 107.328 117.023 107.232 117.455C107.232 117.551 107.232 117.599 107.232 117.695C107.424 122.351 107.616 127.007 107.856 131.663C108 134.687 108.144 137.711 108.384 140.735C108.432 141.695 108.528 142.607 108.672 143.567C108.816 144.383 109.2 145.199 110.16 145.199C112.464 145.199 114.816 145.007 117.12 144.911C120.528 144.719 123.984 144.575 127.392 144.239C128.496 144.143 129.648 143.999 130.752 143.807C131.616 143.615 132.096 143.279 132.336 142.367C132.528 141.407 132.624 140.399 132.576 139.439C132.576 137.999 132.528 136.559 132.432 135.119C132.096 129.551 131.472 124.031 130.752 118.463L130.704 118.127C130.704 117.503 130.272 116.975 129.696 116.783C129.264 116.687 128.832 117.023 128.736 117.455C128.736 117.551 128.736 117.647 128.736 117.695C129.36 122.351 129.888 127.007 130.272 131.711C130.56 134.543 130.704 137.375 130.608 140.207C130.608 140.303 130.608 140.447 130.608 140.543C130.608 140.639 130.656 140.303 130.608 140.639C130.608 140.831 130.56 141.023 130.512 141.215C130.464 141.407 130.368 141.791 130.464 141.407C130.464 141.455 130.416 141.503 130.416 141.551C130.272 141.743 130.608 141.359 130.464 141.503C130.32 141.647 130.704 141.455 130.56 141.455C130.512 141.455 130.464 141.503 130.416 141.503L130.32 141.551C130.32 141.551 130.56 141.503 130.416 141.503L130.128 141.551C129.648 141.647 129.168 141.695 128.688 141.791C125.568 142.175 122.4 142.319 119.28 142.511C116.4 142.655 113.52 142.799 110.64 142.895C110.304 142.895 109.968 142.895 109.632 142.943C109.584 142.943 109.44 142.943 109.44 142.943C109.44 142.943 110.112 143.183 110.16 143.183C110.304 143.327 110.4 143.471 110.496 143.615C110.448 143.471 110.592 143.999 110.544 143.807C110.544 143.711 110.496 143.615 110.496 143.519L110.448 143.327C110.4 143.087 110.496 143.615 110.448 143.375C110.4 142.943 110.352 142.559 110.304 142.175C110.064 139.487 109.92 136.751 109.776 134.015C109.488 128.831 109.248 123.647 109.056 118.463C109.056 118.367 109.056 118.271 109.056 118.175L108.096 119.087C109.104 119.231 110.16 119.279 111.168 119.231C112.896 119.279 114.672 119.279 116.448 119.231C120.096 119.231 123.792 119.183 127.488 119.135L129.936 119.087C131.376 119.039 130.704 116.735 129.504 116.735Z" fill="#CECECE"/>
|
||||
</g>
|
||||
<path id="Vector_30" d="M139.008 152.879C139.68 152.831 140.352 152.735 141.024 152.591C142.08 152.351 143.184 152.159 144.24 151.919C147.6 151.199 150.96 150.431 154.368 149.663L166.512 146.927C170.064 146.111 173.616 145.343 177.168 144.527C178.416 144.239 179.616 143.999 180.864 143.759C181.296 143.663 181.728 143.567 182.112 143.519L182.544 143.423C182.736 143.375 183.024 143.375 182.592 143.423C182.736 143.423 183.024 143.423 182.448 143.423C182.88 143.423 183.696 143.375 183.888 142.895C184.08 142.415 183.312 142.271 182.976 142.271C182.304 142.319 181.632 142.415 180.96 142.559C179.904 142.799 178.8 142.991 177.744 143.231C174.384 143.951 171.024 144.719 167.664 145.487L155.52 148.223C151.968 149.039 148.416 149.855 144.864 150.623C143.616 150.911 142.416 151.151 141.168 151.439L139.92 151.679L139.488 151.775C139.248 151.823 139.008 151.823 139.44 151.775C139.296 151.775 139.008 151.775 139.584 151.775C139.152 151.775 138.336 151.823 138.144 152.303C137.952 152.783 138.72 152.879 139.008 152.879Z" fill="#CECECE"/>
|
||||
<path id="Vector_31" d="M109.871 55.9679C111.599 56.1119 113.279 55.5359 114.575 54.3839C115.103 53.9039 115.583 53.3759 116.015 52.7999C116.495 52.1279 117.071 51.3598 117.119 50.4959C117.215 48.6719 115.055 48.2879 113.759 49.0559C112.463 49.8239 112.271 51.5039 112.895 52.7999C114.431 55.8719 118.703 55.7759 121.439 54.7679C124.079 53.8079 126.191 51.7439 127.247 49.1039C127.679 47.9519 128.015 46.4159 127.583 45.2159C126.959 43.5359 124.943 43.5359 123.551 44.2559C120.671 45.7919 121.919 50.0159 123.167 52.2239C124.511 54.7679 127.247 56.3039 130.127 56.0159C132.623 55.7759 135.887 54.0959 135.791 51.1679C135.695 49.1519 133.295 48.6239 131.807 49.5839C130.319 50.5439 130.559 52.3679 131.711 53.4239C134.351 55.8719 139.151 56.7839 141.743 53.7119C142.127 53.2799 141.455 52.9919 141.119 52.9919C140.543 52.9439 139.967 53.1359 139.583 53.5679C138.191 55.1999 135.839 53.9519 134.447 52.9919C133.727 52.5119 132.863 51.6479 133.151 50.6879C133.199 50.5439 133.295 50.4479 133.343 50.3039C133.343 50.3519 132.767 50.4479 132.767 50.4479L133.007 50.5919C133.391 50.9759 133.535 51.5039 133.439 52.0319C133.151 53.5199 131.903 54.6719 130.367 54.7199C128.639 54.8159 127.103 53.7599 126.095 52.4159C124.847 50.7839 124.175 48.7679 124.223 46.7039C124.223 46.2239 124.367 45.7439 124.655 45.3599C124.751 45.2639 124.799 45.1679 124.895 45.1199H124.751C124.847 45.1679 124.895 45.2159 124.943 45.2639C125.615 45.8399 125.471 46.9919 125.375 47.7599C124.799 51.1199 121.631 54.5279 117.983 53.9999C116.831 53.8559 115.823 53.1839 115.247 52.1759C114.959 51.6479 114.863 51.0719 114.959 50.5439C115.007 50.3039 115.151 50.1119 115.199 49.9199C115.247 49.6319 114.383 49.7759 114.527 50.0159C114.575 50.1119 114.719 50.2079 114.767 50.3039C115.295 51.3119 113.999 52.7039 113.375 53.4239C112.751 54.1439 111.935 54.8159 110.975 54.6719C110.399 54.5759 109.823 54.8159 109.439 55.2479C108.959 55.6799 109.487 55.8719 109.871 55.9679Z" fill="#CECECE"/>
|
||||
<path id="Vector_32" d="M143.472 82.272C144.768 79.488 146.784 77.088 149.328 75.36C149.616 75.168 150 74.976 150.336 74.832C150.576 74.736 150.816 74.688 151.056 74.688C151.152 74.688 151.248 74.688 151.344 74.688C151.776 74.736 151.536 74.544 150.672 74.064C150.816 74.4 151.056 74.64 151.2 75.024C151.344 75.36 151.44 75.744 151.536 76.128C151.824 77.232 152.208 79.344 150.864 79.92L152.448 80.832C152.64 80.976 152.448 80.64 152.4 80.496C152.352 80.304 152.4 80.112 152.448 79.92C152.544 79.584 152.784 79.296 153.024 79.056C153.6 78.576 154.32 78.24 155.088 78.096C155.808 78 156.48 78 157.2 78.144C157.536 78.24 157.824 78.336 158.112 78.432C158.544 78.576 157.92 78.384 157.92 78.288C157.92 78.384 158.256 78.672 158.352 78.768C158.736 79.152 159.168 79.488 159.648 79.776C159.744 79.824 160.416 80.208 160.128 79.824C158.736 78.048 156.288 76.56 153.984 76.608C152.928 76.608 151.872 76.992 151.056 77.664C150.624 78 150.384 78.576 150.432 79.152C150.528 79.632 150.864 80.112 151.296 80.352C151.536 80.544 152.496 81.408 152.832 81.264C154.416 80.544 153.696 77.76 153.264 76.56C153.024 75.792 152.544 75.072 151.92 74.592C151.2 73.968 150.24 73.248 149.232 73.248C148.32 73.248 147.504 73.776 146.832 74.304C146.112 74.88 145.44 75.504 144.768 76.128C143.472 77.52 142.368 79.104 141.504 80.832C141.36 81.264 143.424 82.464 143.472 82.272Z" fill="white"/>
|
||||
<path id="Vector_33" d="M153.887 71.5197C153.215 72.2397 153.311 73.3917 154.031 74.0157C154.079 74.0637 154.079 74.0637 154.127 74.1117C154.943 74.7837 156.287 74.8317 157.247 74.5437C158.303 74.2557 159.215 73.6317 159.887 72.7677C160.223 72.2877 160.223 71.6637 159.839 71.2317C159.551 70.8477 159.215 70.5597 158.831 70.2717C157.967 69.6477 157.007 69.2157 155.951 69.0717C155.663 69.0237 155.327 69.0717 155.039 69.2157C154.799 69.3117 154.559 69.5037 154.415 69.7437C154.175 70.2717 154.607 70.6557 155.087 70.7037L155.327 70.7517L155.471 70.7997H155.375C155.519 70.8477 155.663 70.8957 155.807 70.9437C155.951 70.9917 156.095 71.0397 156.239 71.1357L156.335 71.1837C156.431 71.2317 156.431 71.2317 156.287 71.1837C156.335 71.2317 156.431 71.2317 156.479 71.2797C156.767 71.4237 157.007 71.6157 157.247 71.8557L157.439 72.0477C157.487 72.0957 157.631 72.1917 157.487 72.0957C157.631 72.1917 157.727 72.3357 157.823 72.5277L157.727 72.3357C157.775 72.4317 157.775 72.4797 157.775 72.5757V72.3357C157.775 72.3837 157.727 72.5277 157.775 72.4317C157.823 72.3357 157.775 72.4317 157.775 72.4797C157.727 72.5277 157.727 72.6237 157.775 72.4797C157.727 72.5277 157.727 72.5277 157.679 72.5757C157.631 72.6717 157.535 72.7197 157.439 72.8157C157.391 72.8637 157.391 72.8637 157.343 72.9117C157.199 73.0557 157.487 72.8157 157.391 72.8637C157.295 72.9117 157.247 72.9597 157.151 73.0557L157.007 73.1517C156.911 73.2477 157.247 73.0557 157.103 73.1037C156.959 73.1517 156.911 73.1997 156.863 73.1997C156.815 73.1997 156.623 73.2957 156.815 73.1997C157.007 73.1037 156.815 73.1997 156.767 73.1997L156.479 73.2477C156.335 73.2957 156.767 73.1997 156.623 73.2477H156.479H156.335C156.095 73.2477 156.527 73.2477 156.431 73.2477L156.143 73.1997C156.383 73.1997 156.287 73.2477 156.191 73.1997C156.095 73.1517 156.095 73.1517 156.047 73.1517C155.999 73.1517 156.239 73.2477 156.095 73.1997L155.951 73.1037C155.951 73.1037 155.855 73.0077 155.903 73.1037C155.951 73.1997 155.903 73.0557 155.855 73.0557C155.807 72.9597 155.759 72.9117 155.711 72.8157L155.807 73.0077C155.759 72.8637 155.711 72.6717 155.711 72.5277V72.7677C155.711 72.6717 155.759 72.5757 155.759 72.4317C155.855 72.2397 155.615 72.6237 155.759 72.4797C156.047 72.2397 156.047 71.8557 155.855 71.5677C155.759 71.4717 155.663 71.3757 155.519 71.3757C154.943 70.9917 154.319 71.1357 153.887 71.5197Z" fill="white"/>
|
||||
<path id="Vector_34" d="M112.608 137.471C113.856 134.591 116.16 131.759 119.088 130.415C119.28 130.319 119.472 130.271 119.664 130.175C119.808 130.127 119.952 130.079 120.096 130.079L119.184 129.983C119.184 130.031 119.472 130.223 119.52 130.271C119.664 130.415 119.76 130.607 119.856 130.799C120.144 131.519 120.288 132.287 120.336 133.055C120.432 134.303 120.768 136.751 119.376 137.471L121.728 137.855C120.912 136.415 122.208 134.783 123.36 133.919C123.984 133.439 124.704 133.103 125.472 132.959C126.144 132.863 125.184 132.959 125.232 132.863C125.232 132.863 125.616 133.007 125.664 133.055C126 133.247 126.288 133.535 126.528 133.823C126.768 134.111 127.632 134.111 127.968 134.159C128.064 134.159 128.976 134.207 128.832 134.063C128.16 133.295 127.2 132.767 126.144 132.623C124.944 132.335 123.696 132.335 122.496 132.671C120.816 133.247 118.224 135.455 119.328 137.423C119.472 137.663 120.096 137.711 120.336 137.759C120.672 137.807 121.344 137.999 121.68 137.807C122.4 137.423 122.688 136.607 122.736 135.839C122.832 134.783 122.784 133.679 122.64 132.623C122.544 131.807 122.352 130.895 121.728 130.271C120.96 129.551 119.568 129.407 118.56 129.407C116.64 129.407 114.912 130.847 113.616 132.095C112.176 133.439 111.024 135.119 110.256 136.895C110.208 137.135 112.416 137.855 112.608 137.471Z" fill="white"/>
|
||||
<path id="Vector_35" d="M121.92 125.808C121.68 126.384 121.584 126.96 121.584 127.584C121.632 128.256 121.968 128.88 122.544 129.216C123.072 129.504 123.696 129.696 124.32 129.744C124.944 129.84 125.52 129.792 126.096 129.6C127.344 129.168 128.064 127.872 127.872 126.576C127.728 125.424 127.152 124.32 126.24 123.552C125.088 122.64 123.024 122.976 122.448 124.464C122.352 124.704 122.304 124.992 122.4 125.28C122.496 125.52 122.736 125.712 123.024 125.808C123.648 125.952 124.272 125.712 124.56 125.136C124.56 125.088 124.608 125.04 124.608 124.992C124.512 125.184 124.464 125.184 124.56 125.088L124.608 125.04C124.512 125.232 124.416 125.232 124.56 125.136L124.512 125.184C124.416 125.232 124.368 125.232 124.464 125.232C124.56 125.232 124.608 125.232 124.368 125.232C124.416 125.232 124.464 125.232 124.512 125.184C124.704 125.136 124.224 125.184 124.416 125.184C124.464 125.184 124.512 125.184 124.56 125.184L124.368 125.136H124.464C124.512 125.136 124.56 125.184 124.608 125.184L124.464 125.136L124.56 125.184C124.608 125.184 124.704 125.28 124.704 125.28C124.752 125.328 124.8 125.376 124.8 125.376C124.896 125.472 124.992 125.616 125.04 125.712L124.896 125.472C125.136 125.856 125.328 126.336 125.472 126.768L125.424 126.48C125.472 126.72 125.52 126.912 125.52 127.152C125.52 127.344 125.52 127.152 125.52 127.104C125.52 127.152 125.52 127.2 125.52 127.248C125.52 127.296 125.52 127.344 125.472 127.392C125.424 127.44 125.472 127.44 125.472 127.488C125.472 127.536 125.472 127.536 125.52 127.344C125.52 127.392 125.472 127.44 125.472 127.44L125.424 127.536C125.376 127.632 125.424 127.584 125.472 127.44C125.424 127.44 125.424 127.536 125.376 127.536C125.28 127.632 125.616 127.344 125.424 127.488C125.376 127.536 125.328 127.536 125.328 127.584C125.232 127.68 125.616 127.44 125.424 127.536C125.376 127.584 125.328 127.584 125.28 127.584C125.28 127.584 125.616 127.488 125.376 127.536L125.28 127.68C125.04 127.68 125.232 127.68 125.28 127.68C125.52 127.68 125.28 127.68 125.232 127.68H125.088C124.992 127.68 124.848 127.68 124.752 127.632C124.56 127.632 124.944 127.68 124.848 127.632L124.704 127.584C124.512 127.536 124.32 127.488 124.08 127.392C123.84 127.296 124.272 127.536 124.08 127.392L123.936 127.296C123.84 127.248 124.08 127.488 123.984 127.296C123.936 127.248 123.936 127.2 123.888 127.152L124.032 127.392C123.984 127.296 123.936 127.2 123.936 127.152L123.984 127.44C123.936 127.344 123.936 127.2 123.936 127.104C123.936 126.864 123.888 127.344 123.936 127.152C123.936 127.104 123.936 127.008 123.936 126.96C123.936 126.816 123.984 126.72 124.032 126.576L124.08 126.432C124.032 126.624 124.176 126.192 124.08 126.432C124.176 126.192 124.224 125.904 124.128 125.616C124.032 125.376 123.792 125.184 123.504 125.088C122.88 124.896 122.208 125.184 121.92 125.808Z" fill="white"/>
|
||||
<path id="Vector_36" d="M106.321 70.4635C107.665 70.1755 111.217 69.4075 110.305 67.3435C110.017 66.6715 109.297 66.3355 108.625 66.4795C107.809 66.7675 107.377 67.6795 107.713 68.4955C107.713 68.5435 107.761 68.5915 107.761 68.6395C108.193 69.7435 109.441 70.2715 110.593 70.3195C112.705 70.3675 114.673 69.4555 116.017 67.8235C116.305 67.4875 115.969 66.9115 115.729 66.6235C115.393 66.2875 114.865 66.0955 114.385 66.2395C113.281 66.5275 113.233 67.8235 113.809 68.6395C114.481 69.5995 115.777 69.9835 116.881 70.1755C118.801 70.5595 121.345 69.7915 121.633 67.5355C121.681 67.0555 121.393 66.6235 121.009 66.3835C120.673 66.1915 120.001 65.9995 119.665 66.2875C118.897 67.0555 119.089 68.0155 119.665 68.8315C120.289 69.6475 121.201 70.1755 122.161 70.3675C123.985 70.7995 125.857 70.2235 127.105 68.8315C127.489 68.3995 126.913 67.6795 126.577 67.4395C126.145 67.1035 125.473 67.1515 125.089 67.5355C124.465 68.2075 123.553 68.5435 122.641 68.5435C122.545 68.5435 121.009 68.2075 121.345 67.9195L119.377 66.6715C119.233 67.5355 118.513 68.2075 117.649 68.3035C117.121 68.3515 116.593 68.2555 116.065 68.1115C115.969 68.0635 115.585 67.8715 115.537 67.9195C115.489 67.9675 115.681 68.1115 115.633 68.1115L114.001 66.5275C113.281 67.3915 112.321 67.9675 111.265 68.2555C110.785 68.3515 110.353 68.3515 109.873 68.3515C109.921 68.3515 109.729 68.3035 109.729 68.3035C109.729 68.3035 109.969 68.5435 109.921 68.4955C109.873 68.4475 109.969 68.3515 109.969 68.3035L108.289 67.4395C108.241 67.2955 108.433 67.2955 108.193 67.4395C108.145 67.4875 108.049 67.5355 107.953 67.6315C107.665 67.7755 107.377 67.9195 107.041 68.0155C106.417 68.2555 105.793 68.4475 105.121 68.5435C104.545 68.6395 104.593 69.4075 104.833 69.7915C105.121 70.3675 105.697 70.6075 106.321 70.4635Z" fill="#CECECE"/>
|
||||
<path id="Vector_37" d="M105.744 77.808C107.184 77.52 111.312 76.608 110.304 74.304C110.064 73.728 109.248 73.68 108.768 73.872C107.808 74.16 107.28 75.168 107.568 76.128C107.568 76.176 107.568 76.176 107.616 76.224C108 77.232 109.152 77.616 110.112 77.664C112.32 77.712 114.432 76.752 115.824 75.072C116.448 74.304 115.632 73.344 114.768 73.584C113.712 73.824 112.848 74.832 113.376 75.936C113.904 76.992 115.392 77.328 116.4 77.52C118.512 77.904 121.248 76.992 121.536 74.544C121.68 73.344 120.048 73.296 119.424 73.92C118.8 74.592 118.752 75.6 119.328 76.32C119.904 77.088 120.768 77.616 121.68 77.76C123.6 78.192 125.568 77.568 126.912 76.128C127.92 75.024 125.856 74.112 125.04 75.024C124.464 75.648 123.696 75.984 122.832 75.936C122.448 75.936 122.016 75.792 121.68 75.6C121.584 75.504 121.2 75.12 121.296 75.072L119.184 74.448C119.088 75.216 118.416 75.792 117.648 75.792C117.12 75.792 116.64 75.696 116.16 75.504C116.016 75.456 115.824 75.312 115.632 75.264C115.392 75.216 115.776 75.216 115.44 75.408L114.864 75.6L115.008 75.552L113.904 74.016C113.28 74.832 112.368 75.408 111.408 75.648C110.976 75.792 110.496 75.84 110.064 75.744C109.968 75.696 109.824 75.552 109.824 75.552C109.824 75.552 109.872 75.504 109.824 75.504C109.776 75.504 109.584 75.648 109.632 75.648L108.096 75.216C108.048 75.072 108.144 75.072 108.048 75.072C107.952 75.072 107.904 75.168 107.856 75.216C107.616 75.312 107.376 75.456 107.088 75.504C106.56 75.696 106.032 75.888 105.456 75.984C104.928 76.08 104.304 76.464 104.4 77.136C104.592 77.616 105.168 77.952 105.744 77.808Z" fill="#CECECE"/>
|
||||
<path id="Vector_38" d="M105.793 84.0481C107.233 84.0961 108.673 83.6161 109.825 82.8001C110.305 82.4641 110.689 82.0321 111.025 81.5521C111.217 81.3601 111.265 81.0721 111.217 80.8321C111.121 80.5441 110.737 80.4961 110.497 80.4961C109.249 80.5441 107.377 81.6001 108.289 83.0401C109.009 84.1921 110.545 84.0961 111.697 83.9041C112.513 83.8081 113.281 83.6161 114.049 83.3761C114.577 83.1841 115.681 82.7041 115.537 81.9841C115.441 81.5521 113.185 82.2241 113.281 82.8481C113.281 82.8961 113.281 82.9441 113.281 82.9921C113.185 82.7521 113.953 82.7041 114.097 82.6081C113.905 82.7041 113.665 82.7041 113.425 82.7521C112.993 82.8481 112.561 82.8961 112.129 82.9441C111.361 82.9921 110.641 82.5601 110.353 81.8401C110.305 81.6961 110.257 81.5041 110.305 81.3601C110.305 81.2641 110.353 81.1681 110.353 81.1201C110.497 80.4481 108.961 82.0321 108.913 81.6001C108.913 81.6961 109.009 81.6961 108.961 81.8401C108.961 81.9361 108.913 82.0321 108.865 82.0801C108.769 82.2241 108.673 82.3681 108.529 82.5121C108.433 82.6081 108.289 82.7521 108.145 82.8481C108.097 82.8961 108.001 82.9441 107.905 82.9921L108.097 82.9441C107.761 83.0401 108.193 82.9441 108.001 82.9921C107.857 83.0401 107.713 83.0401 107.617 83.0401C107.041 83.0401 106.513 83.1841 106.033 83.4721C105.889 83.5201 105.265 84.0481 105.793 84.0481Z" fill="#CECECE"/>
|
||||
<path id="Vector_39" d="M117.744 82.4631C117.792 82.5591 117.792 82.6551 117.84 82.7511C117.936 82.9431 118.08 83.1351 118.224 83.2791C118.368 83.4711 118.56 83.6151 118.8 83.7111C118.896 83.7591 118.992 83.8071 119.088 83.8071H119.136C119.232 83.8071 119.328 83.8551 119.424 83.8551C119.52 83.8551 119.616 83.8551 119.712 83.8071H119.76L119.952 83.7111C120 83.6631 120.048 83.5671 120.096 83.5191C120.096 83.5191 120.096 83.4711 120.144 83.4711C120.192 83.3751 120.192 83.3271 120.192 83.2311C120.192 83.1351 120.192 83.0391 120.144 82.9431C120.144 82.8951 120.096 82.8471 120.096 82.7511C120.096 82.7031 120.048 82.6551 120.048 82.6071C120 82.5111 119.952 82.4151 119.904 82.3191C119.856 82.2231 119.76 82.1271 119.664 82.0311C119.568 81.9351 119.472 81.8391 119.376 81.7911C119.28 81.7431 119.184 81.6471 119.088 81.5991C118.896 81.5031 118.752 81.4551 118.56 81.4551C118.464 81.4551 118.32 81.5031 118.272 81.5511C118.176 81.5991 118.08 81.6951 118.08 81.7911C118.032 81.8871 118.032 82.0311 118.032 82.1271C118.032 82.2711 118.08 82.3671 118.128 82.5111L118.272 82.7511C118.416 82.9431 118.56 83.0871 118.704 83.2311L118.944 83.3751C119.088 83.4711 119.28 83.4711 119.424 83.4711L119.184 83.4231H119.232L118.992 83.3271H119.04L118.8 83.1831L118.848 83.2311L118.608 83.0391L118.656 83.0871L118.464 82.8471L118.512 82.8951L118.368 82.6551L118.416 82.7031L118.32 82.4631V82.5111V82.2711V82.3191L118.368 82.1271C118.368 82.1751 118.368 82.1751 118.32 82.1751L118.416 81.9831L118.368 82.0311L118.56 81.9351L118.512 81.9831L118.704 81.9351H118.656L118.896 81.9831H118.848L119.088 82.0791H119.04L119.28 82.2231L119.232 82.1751L119.472 82.3671V82.3191L119.664 82.5591V82.5111L119.808 82.7511C119.808 82.7511 119.808 82.7511 119.808 82.7031L119.904 82.9431C119.904 82.7991 119.808 82.6551 119.76 82.5591C119.712 82.4151 119.616 82.2711 119.472 82.1751C119.376 82.0791 119.232 81.9831 119.088 81.8871C118.992 81.7911 118.848 81.7431 118.704 81.7431L118.464 81.6951C118.32 81.6951 118.176 81.7431 118.08 81.8391L117.984 82.0311C117.936 82.1751 117.936 82.3671 117.936 82.5111L117.744 82.4631Z" fill="#CECECE"/>
|
||||
<path id="Vector_40" d="M108.337 96.191C109.441 95.951 110.497 95.615 111.505 95.135C112.321 94.703 113.425 93.791 112.993 92.783C112.801 92.399 112.225 92.399 111.889 92.495C110.929 92.783 110.065 93.551 110.257 94.655C110.449 95.759 111.649 96.095 112.561 96.095C114.817 96.095 116.929 95.135 118.417 93.407C118.657 93.119 118.849 92.831 118.609 92.495C118.321 92.207 117.937 92.159 117.553 92.303C116.545 92.543 115.537 93.599 116.113 94.655C116.641 95.567 118.129 95.903 119.089 96.047C121.297 96.335 123.937 95.135 124.225 92.735C124.273 92.351 123.793 92.207 123.505 92.207C123.025 92.207 122.593 92.399 122.257 92.735C121.585 93.311 121.489 94.319 122.065 94.991C122.641 95.711 123.457 96.191 124.321 96.287C126.241 96.623 128.161 95.951 129.505 94.511C129.841 94.175 129.985 93.599 129.457 93.359C128.881 93.167 128.257 93.359 127.825 93.791C127.297 94.415 126.529 94.703 125.713 94.607C125.281 94.559 124.849 94.415 124.465 94.175C124.273 94.031 124.129 93.887 124.033 93.695C123.985 93.647 123.985 93.551 123.937 93.503C123.841 93.311 124.033 93.311 123.889 93.407L121.921 93.359C121.825 94.127 121.153 94.415 120.481 94.415C119.953 94.367 119.425 94.271 118.945 94.079C118.705 94.031 118.513 93.887 118.369 93.743C118.321 93.695 118.273 93.647 118.273 93.551C118.273 93.263 118.033 93.359 117.649 93.935L116.785 92.783C116.161 93.599 115.249 94.127 114.289 94.367C113.857 94.463 113.425 94.463 112.993 94.367C112.801 94.319 112.657 94.175 112.561 94.031C112.369 93.551 112.993 93.839 111.937 94.175L110.833 93.887C110.545 93.983 110.305 94.127 110.017 94.223C109.489 94.415 108.913 94.559 108.337 94.703C107.857 94.799 107.185 95.279 107.233 95.807C107.281 96.335 107.953 96.239 108.337 96.191Z" fill="#CECECE"/>
|
||||
<path id="Vector_41" d="M109.009 103.296C109.969 103.104 113.761 102.288 113.041 100.656C112.753 100.032 111.793 99.7441 111.169 99.9361C110.497 100.08 110.065 100.752 110.209 101.424C110.257 101.568 110.257 101.664 110.353 101.76C110.833 102.72 112.177 103.056 113.137 103.104C115.249 103.2 117.313 102.336 118.657 100.704C119.281 99.9361 117.265 99.5521 116.833 99.6481C115.873 99.8881 115.633 100.896 116.305 101.616C117.025 102.48 118.369 102.816 119.425 102.96C121.297 103.296 123.937 102.768 124.225 100.512C124.321 99.6001 122.497 99.3121 121.969 99.7921C121.345 100.368 121.633 101.232 122.113 101.808C122.785 102.528 123.697 103.008 124.705 103.152C126.529 103.584 128.449 103.056 129.745 101.712C130.369 101.04 128.113 100.224 127.585 100.848C126.961 101.568 126.097 101.952 125.185 101.952C124.609 101.904 123.505 101.28 124.177 100.608L121.921 99.8881C121.825 100.848 121.057 101.568 120.145 101.712C119.665 101.76 119.185 101.664 118.753 101.52C118.609 101.472 118.417 101.424 118.321 101.328C118.273 101.184 118.273 101.04 118.321 100.944L116.497 99.8881C115.777 100.752 114.817 101.376 113.713 101.712C113.473 101.76 113.281 101.808 113.041 101.856C112.897 101.856 112.753 101.856 112.609 101.856C112.513 101.856 112.417 101.76 112.465 101.856C112.609 102 112.465 101.664 112.465 101.616C112.465 101.472 112.513 101.328 112.561 101.232L110.689 100.512C111.073 101.424 108.097 102 107.569 102.144C107.041 102.288 107.041 102.672 107.377 103.008C107.809 103.248 108.433 103.392 109.009 103.296Z" fill="#CECECE"/>
|
||||
<path id="Vector_42" d="M109.681 110.447C110.833 110.495 111.937 110.111 112.753 109.343C113.233 108.959 113.569 108.479 113.713 107.903C113.809 106.943 113.137 106.031 112.177 105.839C111.553 105.791 110.977 106.271 110.881 106.895C110.737 107.615 110.929 108.383 111.409 108.959C112.273 110.207 113.617 110.543 115.057 110.351C115.729 110.303 116.353 110.159 117.025 109.967C117.361 109.871 117.649 109.679 117.889 109.439C118.081 109.103 118.129 108.719 118.033 108.335C117.889 107.759 117.409 107.279 116.785 107.183C116.161 107.135 116.065 107.711 116.161 108.191C116.065 107.567 116.305 107.759 116.113 107.807C116.065 107.807 116.017 107.855 115.921 107.903C115.681 107.951 115.441 107.999 115.201 108.047C114.673 108.191 114.097 108.239 113.569 108.287C113.329 108.287 113.089 108.239 112.897 108.143C112.705 108.095 113.041 108.191 112.897 108.143C112.801 108.047 112.801 108.047 112.897 108.143L112.849 108.047C112.897 108.335 112.801 107.903 112.897 108.143C112.801 107.951 112.897 108.047 112.897 108.143C112.897 108.095 112.945 107.951 112.945 107.951C112.945 107.951 112.945 107.951 112.993 107.903C112.945 107.951 112.849 107.951 112.801 107.951L112.321 107.663L112.225 107.567L111.841 107.039V106.751L111.793 106.847C111.745 106.895 111.697 106.991 111.649 107.039C111.601 107.135 111.505 107.231 111.409 107.327C111.169 107.567 110.929 107.759 110.641 107.903C110.161 108.191 109.585 108.335 109.057 108.287C108.481 108.287 108.289 108.815 108.433 109.295C108.625 109.871 109.105 110.303 109.681 110.447Z" fill="#CECECE"/>
|
||||
<path id="Vector_43" d="M142.801 95.8079C143.953 95.5679 145.105 95.1839 146.161 94.7039C146.785 94.4639 148.081 93.8399 147.745 92.9759C147.649 92.6879 146.641 93.0239 146.545 93.0719C145.777 93.3119 144.625 93.7439 145.009 94.7999C145.297 95.7119 146.641 95.7599 147.409 95.6639C149.617 95.5199 151.969 94.5119 153.457 92.7839C153.649 92.5439 152.545 92.7359 152.545 92.7359C151.825 92.9279 150.145 93.4079 150.817 94.4639C151.297 95.2799 152.881 95.5679 153.745 95.6159C155.617 95.7119 158.689 94.8479 158.977 92.6399C158.977 92.4479 157.921 92.6879 157.921 92.6879C157.489 92.7839 157.057 92.9759 156.721 93.2639C156.145 93.8399 156.577 94.6559 157.105 95.0879C157.729 95.5679 158.545 95.8559 159.361 95.8559C161.185 95.9039 163.345 95.1839 164.593 93.8399C164.833 93.5999 163.729 93.7919 163.681 93.7919C163.201 93.8879 162.721 94.0799 162.337 94.4159C162.193 94.6079 162.001 94.7519 161.761 94.8959C161.425 95.1359 161.473 94.9439 161.713 94.9919C161.473 94.9919 161.233 95.0399 160.993 94.9919C160.753 94.9439 160.465 94.8959 160.225 94.8479C159.505 94.6079 158.065 93.5999 158.929 92.7359L156.673 93.3599C156.625 93.8399 156.385 94.2719 156.049 94.6079C155.953 94.7039 155.857 94.7519 155.761 94.8479C155.473 95.1359 155.953 94.7039 156.001 94.7999L154.945 94.7039C154.417 94.6079 153.889 94.4159 153.457 94.1279C153.265 93.9839 153.073 93.7919 153.025 93.5519C153.025 93.4559 153.025 93.3599 153.025 93.2639C153.025 93.1679 153.169 93.0239 153.073 93.0719L151.969 93.5039L152.113 93.4559L151.201 93.4079C150.865 93.8399 150.433 94.2239 149.953 94.5119C149.761 94.6559 149.569 94.7519 149.329 94.7999C149.377 94.7999 149.425 94.7519 149.329 94.7999C149.185 94.8479 149.041 94.8479 148.897 94.8479C148.369 94.9439 147.793 94.7519 147.409 94.4159C147.313 94.2719 147.217 94.1279 147.217 93.9359C147.169 93.3599 147.745 93.3119 146.689 93.6479L145.489 93.7439C145.921 94.7519 143.905 95.0399 143.281 95.1839C143.041 95.2319 141.937 95.4719 141.937 95.8079C141.937 96.1439 142.657 95.8079 142.801 95.8079Z" fill="#CECECE"/>
|
||||
<path id="Vector_44" d="M143.137 103.775C144.673 103.439 148.657 102.431 147.649 100.079C147.409 99.6473 146.881 99.4553 146.449 99.5993C145.393 99.8393 144.721 100.895 144.913 101.951C145.153 103.103 146.353 103.583 147.409 103.631C149.665 103.679 151.777 102.671 153.169 100.943C153.553 100.607 153.601 99.9833 153.265 99.5993C152.977 99.2633 152.497 99.1673 152.113 99.3593C151.009 99.6473 150.241 100.799 150.769 101.903C151.297 103.007 152.737 103.343 153.745 103.487C155.905 103.823 158.593 102.815 158.881 100.319C158.977 99.3113 157.681 98.9273 157.009 99.5513C156.241 100.223 156.097 101.423 156.721 102.239C157.249 103.007 158.065 103.535 159.025 103.679C160.993 104.063 162.961 103.439 164.305 101.951C164.641 101.567 164.593 100.943 164.209 100.607C164.161 100.559 164.113 100.559 164.113 100.511C163.537 100.223 162.865 100.415 162.481 100.895C161.905 101.471 161.137 101.759 160.321 101.711C159.937 101.711 159.553 101.567 159.217 101.423C159.073 101.327 158.929 101.231 158.833 101.135C158.593 100.799 158.833 100.799 158.497 101.135L156.625 100.367C156.529 101.039 155.953 101.519 155.281 101.519C154.753 101.519 154.225 101.471 153.745 101.279C153.553 101.231 153.313 101.039 153.073 100.991C153.025 100.943 152.977 100.943 152.929 100.895C152.977 101.183 152.785 101.375 152.401 101.471L151.345 99.9353C150.721 100.703 149.857 101.231 148.897 101.471C148.465 101.615 148.033 101.615 147.553 101.567C147.361 101.519 147.313 101.423 147.121 101.375C147.121 101.375 147.121 101.375 147.169 101.375C147.073 101.567 146.881 101.711 146.689 101.759L145.489 101.279C145.441 101.183 145.633 100.991 145.537 100.943C145.537 100.943 145.393 101.039 145.345 101.039C145.057 101.135 144.817 101.279 144.529 101.375C144.001 101.567 143.425 101.711 142.849 101.855C142.225 101.951 141.793 102.527 141.841 103.151C141.985 103.727 142.513 104.063 143.089 103.919C143.137 103.823 143.137 103.823 143.137 103.775Z" fill="#CECECE"/>
|
||||
<path id="Vector_45" d="M143.951 110.591C145.199 110.639 146.448 110.207 147.408 109.391C147.888 109.007 148.32 108.479 148.56 107.903C148.848 107.183 148.511 106.367 147.791 106.079C147.647 106.031 147.455 105.983 147.311 105.983C146.495 105.983 145.776 106.511 145.488 107.279C145.248 107.951 145.392 108.719 145.776 109.295C146.64 110.543 148.128 110.735 149.568 110.543C150.288 110.447 151.008 110.303 151.68 110.111C152.448 109.823 153.12 109.103 152.976 108.239C152.736 106.799 150.383 107.375 150.623 108.719C150.575 108.383 150.816 108.287 150.96 108.095C151.056 108.047 151.007 108.047 150.911 108.095L150.816 108.143C151.008 108.095 150.912 108.095 150.768 108.143L150.431 108.191C149.951 108.287 149.52 108.383 149.04 108.431C148.752 108.479 148.416 108.431 148.128 108.383C147.936 108.287 147.744 108.095 147.648 107.903C147.648 107.855 147.648 107.855 147.648 107.903C147.648 107.951 147.648 107.951 147.648 107.855C147.648 107.951 147.648 107.903 147.648 107.807C147.6 107.903 147.6 107.903 147.648 107.855C147.648 107.807 147.696 107.807 147.648 107.855C147.456 108.335 146.975 108.143 146.303 107.327L146.256 107.423C146.352 107.327 146.208 107.471 146.208 107.519L146.016 107.759C146.112 107.615 146.016 107.759 145.968 107.807L145.728 107.999C145.728 107.999 145.439 108.191 145.583 108.095C145.727 107.999 145.44 108.191 145.44 108.191C145.392 108.239 145.296 108.239 145.248 108.287C145.248 108.287 144.863 108.431 145.151 108.335C145.007 108.383 144.815 108.431 144.671 108.431C144.623 108.431 144.432 108.479 144.576 108.431H144.24C143.616 108.431 143.039 108.863 142.943 109.487C142.895 110.063 143.28 110.543 143.856 110.639C143.904 110.543 143.951 110.543 143.951 110.591Z" fill="#CECECE"/>
|
||||
<path id="Vector_46" d="M154.896 108.528C154.896 108.576 154.944 108.624 154.944 108.672L154.992 108.72C155.04 108.768 155.088 108.816 155.136 108.816L155.184 108.864C155.328 108.96 155.52 109.008 155.664 109.056C155.856 109.104 156.096 109.152 156.288 109.152C156.48 109.152 156.72 109.152 156.96 109.152C157.056 109.152 157.152 109.152 157.248 109.104C157.344 109.104 157.392 109.056 157.488 109.056C157.536 109.056 157.584 109.008 157.632 108.96L157.68 108.912C157.728 108.864 157.728 108.816 157.728 108.768C157.728 108.72 157.728 108.72 157.728 108.672V108.624C157.728 108.576 157.68 108.528 157.68 108.48C157.632 108.432 157.584 108.336 157.488 108.288H157.44L157.248 108.192C156.96 108.096 156.672 108.048 156.384 108C156.24 108 156.048 108 155.904 108C155.76 108 155.664 108 155.52 108.048C155.424 108.048 155.328 108.096 155.28 108.144C155.232 108.144 155.184 108.192 155.184 108.24L155.232 108.336C155.328 108.432 155.424 108.48 155.52 108.528L155.76 108.576C155.952 108.624 156.144 108.672 156.336 108.672L156 108.624L155.712 108.576L155.472 108.528H155.568L155.376 108.432L155.424 108.48L155.328 108.384C155.376 108.432 155.376 108.432 155.424 108.48L155.376 108.384C155.424 108.432 155.424 108.528 155.376 108.576L155.424 108.48C155.424 108.528 155.376 108.528 155.376 108.528L155.52 108.48H155.472L155.664 108.432H155.52L155.76 108.384H156.048H156.384L156.72 108.432L157.008 108.48H156.96L157.2 108.528H157.152L157.344 108.624L157.296 108.576L157.392 108.672C157.344 108.672 157.344 108.624 157.344 108.576L157.392 108.672C157.392 108.672 157.392 108.672 157.392 108.624C157.392 108.576 157.344 108.528 157.296 108.48C157.248 108.432 157.152 108.384 157.056 108.336C156.912 108.288 156.816 108.24 156.672 108.24C156.528 108.192 156.336 108.192 156.192 108.192H155.856C155.664 108.192 155.472 108.192 155.328 108.24L155.136 108.288C155.04 108.288 154.992 108.384 154.944 108.432L154.896 108.528Z" fill="#CECECE"/>
|
||||
<path id="Vector_47" d="M122.112 109.824C123.264 109.632 124.32 109.008 125.088 108.096C125.472 107.616 124.56 106.704 124.176 106.464C123.6 106.08 122.784 106.032 122.544 106.848C122.304 107.664 123.264 108.768 123.888 109.2C125.136 109.968 126.72 109.776 127.728 108.672C127.968 108.432 128.16 108.144 128.256 107.808C128.304 107.28 128.112 106.752 127.728 106.368C127.44 106.08 126.96 105.6 126.528 105.648C126.096 105.696 126.096 106.176 126.192 106.512C126.528 107.52 127.344 108.288 128.352 108.576C129.216 108.768 130.08 108.864 130.944 108.96C131.472 109.008 131.328 108.48 131.184 108.192C130.944 107.76 130.464 107.184 129.936 107.088L128.4 106.896L127.728 106.8L127.392 106.752C127.344 106.752 127.344 106.752 127.296 106.704C126.96 106.56 127.104 106.848 127.824 107.568L127.44 107.472L127.152 107.28L126.576 106.56L126.624 106.656L126.48 106.224C126.528 106.56 126 106.992 125.808 107.184C125.472 107.424 125.136 107.616 124.704 107.712C124.512 107.76 124.32 107.76 124.128 107.76C123.984 107.76 123.84 107.712 123.648 107.664C123.888 107.664 123.984 108.624 124.224 108.384C124.272 108.336 124.272 108.24 124.32 108.192C124.368 108.144 124.512 108 124.656 108.048L124.224 107.856L124.32 107.904L123.408 106.272C122.736 107.088 121.776 107.664 120.72 107.856C120.048 108.048 121.344 109.968 122.112 109.824Z" fill="#CECECE"/>
|
||||
<path id="Vector_48" d="M143.904 124.704C145.44 124.368 148.704 123.744 147.696 121.488C147.504 121.056 147.072 120.24 146.496 120.432C145.584 120.72 145.68 121.968 145.968 122.64C146.352 123.648 147.264 124.368 148.32 124.512C150.288 124.704 152.256 123.648 153.456 122.208C153.936 121.632 152.928 120.048 152.208 120.192C151.056 120.48 151.632 122.16 152.016 122.784C152.64 123.696 153.6 124.08 154.656 124.32C156.48 124.752 158.784 124.08 159.024 121.968C159.072 121.44 158.304 119.52 157.584 120.24C156.864 120.96 157.344 122.064 157.728 122.736C158.208 123.6 159.024 124.224 159.984 124.512C161.616 124.992 163.392 124.464 164.544 123.216C165.072 122.64 163.776 120.624 163.152 121.344C162.432 122.112 161.472 122.544 160.416 122.544C159.936 122.544 159.456 122.448 158.976 122.256L158.592 122.064L158.688 122.352C158.736 122.304 158.832 122.208 158.88 122.16L157.44 120.432C157.248 121.488 156.384 122.256 155.328 122.304C154.704 122.352 154.08 122.304 153.456 122.064C153.216 121.968 152.976 121.824 152.736 121.776C152.496 121.584 152.544 121.728 152.832 122.064C152.88 122.448 152.976 122.544 153.072 122.4L153.312 122.304L152.064 120.288C151.296 121.2 150.288 121.824 149.136 122.16C148.608 122.304 148.032 122.352 147.456 122.304C147.36 122.304 147.216 122.256 147.12 122.256C147.072 122.256 146.976 122.208 146.928 122.208L147.264 122.928C147.264 122.928 147.264 122.736 147.312 122.736C147.36 122.736 147.456 122.592 147.6 122.592L146.4 121.44C146.304 121.152 146.496 120.96 146.208 121.248C146.112 121.344 146.016 121.392 145.92 121.488C145.632 121.632 145.344 121.776 145.008 121.92C144.384 122.16 143.712 122.352 143.04 122.496C142.176 122.688 143.184 124.848 143.904 124.704Z" fill="#CECECE"/>
|
||||
<path id="Vector_49" d="M144.433 131.423C145.297 131.231 148.657 130.607 148.033 129.167C147.889 128.879 147.313 128.639 147.025 128.543C146.737 128.447 146.209 128.159 145.873 128.255C145.153 128.495 145.105 129.359 145.585 129.887C146.449 130.655 147.505 131.135 148.657 131.231C150.625 131.375 152.497 130.559 153.745 129.023C153.937 128.783 151.921 127.967 151.585 128.015C150.721 128.255 151.057 129.215 151.585 129.599C152.545 130.319 153.697 130.799 154.897 130.991C156.577 131.375 159.025 131.039 159.265 128.927C159.313 128.495 157.345 127.679 157.057 127.967C156.481 128.543 156.961 129.359 157.441 129.791C158.257 130.511 159.265 130.991 160.321 131.183C161.953 131.663 163.681 131.231 164.881 129.983C164.977 129.887 163.057 128.639 162.673 129.023C161.953 129.791 160.945 130.271 159.889 130.319C159.649 130.319 159.361 130.223 159.169 130.271C158.833 130.319 159.601 130.415 159.505 130.463C159.409 130.511 159.265 130.223 159.265 130.175C158.929 129.791 158.929 129.263 159.265 128.879L157.057 127.919C156.913 129.023 156.049 129.887 154.945 130.031C154.321 130.127 153.697 130.079 153.073 129.887C152.881 129.791 152.977 129.839 153.409 130.079L153.265 129.887C153.217 129.791 153.217 129.647 153.217 129.551C153.217 129.311 153.409 129.071 153.649 129.023L151.489 128.015C150.673 129.023 149.569 129.695 148.321 129.983C148.033 130.031 147.745 130.079 147.505 130.127C147.313 130.127 147.169 130.127 146.977 130.127C146.209 130.079 147.601 130.319 147.553 130.415C147.505 130.271 147.505 130.175 147.457 130.031C147.457 129.935 147.457 129.791 147.505 129.695C147.553 129.455 147.745 129.263 147.937 129.215L145.825 128.303C146.353 129.503 142.993 130.175 142.321 130.319C142.033 130.367 142.945 130.895 142.993 130.943C143.377 131.135 144.001 131.471 144.433 131.423Z" fill="#CECECE"/>
|
||||
<path id="Vector_50" d="M145.392 138.192C146.4 138.24 147.408 137.856 148.176 137.232C148.512 136.944 148.992 136.464 148.992 135.984C148.944 135.696 148.752 135.456 148.512 135.312C148.032 134.976 147.504 134.736 146.928 134.592C146.496 134.448 146.016 134.688 145.92 135.12C145.92 135.168 145.92 135.216 145.872 135.216C145.824 135.696 145.968 136.176 146.304 136.56C147.312 137.664 148.8 138.24 150.288 138.144C150.96 138.048 151.68 137.952 152.352 137.808C152.784 137.712 153.36 137.472 153.264 136.944C153.264 136.8 152.928 136.608 152.832 136.56C152.592 136.368 152.304 136.272 152.016 136.128C151.872 136.08 151.008 135.744 151.104 136.128C151.2 136.56 150.432 136.704 150.144 136.752C149.568 136.896 148.944 136.992 148.368 137.04C148.224 137.04 148.08 137.04 147.936 137.04H147.84L148.272 137.232C148.56 137.376 148.416 137.328 148.32 137.184C148.272 137.088 148.176 136.992 148.128 136.896C148.032 136.704 148.032 136.464 148.08 136.272C148.08 136.176 148.128 136.08 148.176 135.984C148.224 135.888 148.416 135.792 148.32 135.744L147.504 135.456L147.6 135.504L146.88 135.072L146.976 135.12L146.736 134.88C146.928 135.168 146.592 135.552 146.4 135.744C146.16 136.032 145.872 136.272 145.584 136.464C145.008 136.848 144.336 137.04 143.616 136.992C143.088 136.992 143.664 137.472 143.808 137.568C144.288 137.952 144.816 138.144 145.392 138.192Z" fill="#CECECE"/>
|
||||
<path id="Vector_51" d="M155.328 136.943C155.328 137.039 155.376 137.135 155.424 137.183C155.472 137.231 155.52 137.327 155.616 137.375C155.616 137.375 155.616 137.375 155.664 137.423C155.76 137.471 155.808 137.519 155.904 137.567C156.096 137.663 156.336 137.711 156.576 137.711C156.72 137.711 156.816 137.711 156.96 137.711C157.104 137.711 157.2 137.663 157.296 137.615C157.392 137.567 157.488 137.519 157.584 137.471C157.68 137.423 157.776 137.375 157.824 137.279C157.872 137.231 157.968 137.135 158.016 137.039C158.064 136.943 158.064 136.895 158.112 136.799V136.751C158.112 136.655 158.112 136.559 158.112 136.463V136.415C158.112 136.319 158.064 136.223 158.016 136.175C158.016 136.175 158.016 136.127 157.968 136.127C157.92 136.079 157.872 135.983 157.776 135.935C157.68 135.887 157.632 135.839 157.536 135.791C157.344 135.695 157.152 135.647 156.912 135.647C156.768 135.647 156.576 135.647 156.432 135.695C156.288 135.743 156.144 135.791 156 135.887C155.904 135.935 155.76 136.031 155.712 136.175C155.616 136.271 155.568 136.367 155.568 136.511V136.751C155.616 136.895 155.664 137.039 155.808 137.135L156.048 137.279C156.24 137.375 156.432 137.423 156.624 137.423L156.336 137.375H156.384L156.144 137.279H156.192L155.952 137.135L156 137.183L155.856 136.991C155.856 136.991 155.904 137.039 155.904 137.087L155.808 136.847C155.808 136.895 155.808 136.895 155.808 136.943V136.703V136.751L155.904 136.511C155.904 136.511 155.904 136.559 155.856 136.559L156 136.367L155.952 136.415L156.192 136.223H156.144L156.432 136.079H156.384L156.672 135.983H156.624H156.96H156.912L157.2 136.031H157.152L157.392 136.127L157.344 136.079L157.536 136.223C157.536 136.223 157.488 136.223 157.488 136.175L157.632 136.367L157.584 136.319L157.68 136.559C157.68 136.463 157.584 136.319 157.536 136.271C157.488 136.175 157.344 136.079 157.248 136.031C157.104 135.983 156.96 135.935 156.816 135.935C156.672 135.887 156.48 135.887 156.336 135.935L156.048 136.031C155.856 136.079 155.712 136.223 155.568 136.319L155.424 136.511C155.328 136.607 155.28 136.799 155.328 136.943Z" fill="#CECECE"/>
|
||||
</g>
|
||||
<g id="character">
|
||||
<path id="Vector_52" d="M201.935 194.495C201.935 194.495 199.535 202.079 200.639 202.271C201.743 202.463 209.855 202.751 210.671 201.119C211.487 199.487 207.455 193.823 207.455 193.823L201.935 194.495Z" fill="white"/>
|
||||
<path id="Vector_53" d="M200.735 194.64C200.207 196.224 199.775 197.808 199.439 199.44C199.295 200.208 198.959 201.264 199.199 202.032C199.391 202.704 200.351 202.56 200.879 202.608C203.327 202.8 205.775 202.704 208.223 202.368C209.327 202.224 210.671 202.032 211.583 201.312C212.255 200.784 211.967 199.824 211.727 199.152C210.959 197.184 209.951 195.36 208.655 193.68C208.463 193.392 207.695 193.488 207.455 193.536L201.935 194.208C201.743 194.16 200.735 194.304 200.735 194.64C200.783 194.928 201.839 194.784 201.983 194.784L207.503 194.112L206.303 193.968C207.263 195.312 208.127 196.8 208.895 198.288C209.279 199.056 209.759 200.064 209.615 200.928C209.567 201.168 209.423 201.36 209.231 201.504C209.135 201.6 208.991 201.648 208.847 201.696L208.703 201.744C208.751 201.744 208.895 201.696 208.703 201.744L208.415 201.792C208.559 201.744 208.175 201.84 208.175 201.84L207.983 201.888C207.791 201.936 208.175 201.84 208.031 201.888L207.167 201.984H206.975H206.543C206.255 201.984 205.919 202.032 205.631 202.032C205.199 202.032 204.671 202.032 204.047 202.032C203.567 202.032 203.087 202.032 202.607 201.984H202.319H202.223L201.743 201.936C201.695 201.936 201.647 201.936 201.599 201.936C201.455 201.936 201.791 201.936 201.743 201.984C201.695 202.032 201.647 201.84 201.647 201.792C201.455 201.072 201.695 200.16 201.839 199.488C202.175 197.76 202.655 196.032 203.183 194.352C203.231 194.112 202.031 194.208 201.983 194.208C201.599 194.208 200.831 194.256 200.735 194.64Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_54" d="M189.456 194.064C189.456 194.064 190.08 202.512 189.792 202.512C189.504 202.512 185.76 202.512 185.76 202.512L185.712 199.152L183.936 202.896L171.36 202.464C171.36 202.464 170.928 201.264 173.76 199.824C176.592 198.384 181.104 196.416 181.104 196.416V191.376L189.456 194.064Z" fill="white"/>
|
||||
<path id="Vector_55" d="M188.591 194.207C188.687 195.791 188.831 197.423 188.879 199.007C188.927 199.967 188.975 200.927 188.975 201.935V202.175C188.975 202.319 188.975 202.175 188.975 202.223C189.023 202.559 188.639 202.607 189.455 202.175C190.127 201.791 189.983 201.887 189.599 201.887H188.879H185.903L186.623 202.367L186.575 199.007C186.575 198.287 185.087 198.527 184.895 199.007L183.119 202.751L184.079 202.319L173.039 201.983L171.455 201.935L172.175 202.415C172.175 202.415 172.175 202.367 172.175 202.319C172.223 202.175 172.127 202.367 172.175 202.223C172.223 201.983 172.367 201.695 172.559 201.503C173.423 200.495 174.911 200.015 176.111 199.439C177.839 198.623 179.615 197.807 181.391 197.039C181.679 196.895 181.967 196.703 181.967 196.367V191.327L180.527 191.999L188.975 194.687C189.407 194.831 189.887 194.783 190.223 194.495C190.415 194.351 190.463 194.015 190.319 193.823C190.271 193.775 190.175 193.679 190.079 193.679L181.631 190.991C181.103 190.799 180.191 190.943 180.191 191.663V196.703L180.767 196.031C178.703 196.943 176.639 197.903 174.623 198.863C173.327 199.487 171.887 200.111 170.975 201.263C170.687 201.647 170.351 202.271 170.495 202.751C170.591 203.039 170.927 203.231 171.215 203.231L182.255 203.567L183.839 203.615C184.223 203.663 184.559 203.471 184.799 203.183L186.575 199.439H184.895L184.943 202.799C184.943 203.135 185.423 203.279 185.711 203.279H188.543C189.263 203.279 190.655 203.519 190.847 202.511C190.943 201.647 190.895 200.783 190.799 199.919C190.751 198.719 190.655 197.471 190.607 196.271C190.559 195.551 190.511 194.783 190.463 194.063C190.415 193.343 188.543 193.391 188.591 194.207Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_56" d="M188.832 149.472L175.968 195.984L190.608 196.272L208.128 145.968L188.832 149.472Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_57" d="M187.679 149.568L186.383 154.176L183.311 165.312L179.615 178.704L176.399 190.32L175.343 194.16C175.151 194.736 175.007 195.36 174.863 195.984C174.863 196.032 174.863 196.032 174.863 196.08C174.767 196.368 175.295 196.368 175.487 196.416L188.303 196.656L190.127 196.704C190.463 196.704 191.663 196.608 191.807 196.176L193.535 191.184L197.759 179.136L202.799 164.64L207.167 152.064L208.607 147.936C208.895 147.264 209.135 146.64 209.279 145.92C209.279 145.872 209.279 145.872 209.327 145.824C209.471 145.344 208.271 145.536 208.127 145.584L191.183 148.656L188.783 149.088C188.543 149.136 187.583 149.328 187.679 149.664C187.775 150 188.735 149.856 188.927 149.808L205.871 146.736L208.271 146.304L207.071 146.064L205.343 151.056L201.119 163.104L195.983 177.6L191.567 190.176L190.127 194.304C189.887 194.928 189.599 195.6 189.455 196.272L189.407 196.368L191.087 195.84L178.271 195.6L176.447 195.552L177.071 195.888L178.367 191.28L181.439 180.144L185.135 166.752L188.351 155.136L189.407 151.296C189.551 150.72 189.791 150.096 189.887 149.472C189.887 149.472 189.887 149.424 189.887 149.376C190.127 148.848 187.823 149.04 187.679 149.568Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_58" d="M195.168 152.304C195.168 154.656 198.768 195.12 198.768 195.12L210.336 194.928L206.64 146.832L195.168 152.304Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_59" d="M193.967 152.352C193.967 154.08 194.207 155.808 194.351 157.536C194.639 160.992 194.927 164.448 195.215 167.856C195.839 175.296 196.511 182.688 197.135 190.08L197.567 195.12C197.567 195.36 198.335 195.36 198.479 195.36L208.607 195.168H210.047C210.191 195.168 211.583 195.168 211.535 194.784L211.151 189.984L210.287 178.512L209.231 164.64L208.319 152.64L208.031 148.704L207.935 147.456C207.935 147.216 207.935 147.024 207.887 146.784C207.887 146.736 207.887 146.736 207.887 146.688C207.887 146.448 207.119 146.448 206.975 146.448C206.495 146.4 206.063 146.496 205.631 146.688L195.551 151.44L194.111 152.112C193.631 152.352 194.399 152.496 194.591 152.544C195.167 152.592 195.695 152.544 196.223 152.304L206.303 147.552L207.743 146.88L205.487 146.832L205.871 151.632L206.735 163.104L207.791 176.976L208.703 189.024L208.991 192.96C208.991 193.584 209.039 194.208 209.135 194.832C209.135 194.88 209.135 194.88 209.135 194.928L210.623 194.544L200.495 194.736H199.055L199.967 194.976C199.535 190.368 199.151 185.712 198.767 181.104C198.095 173.52 197.423 165.984 196.847 158.4C196.655 156.336 196.415 154.224 196.415 152.16C196.367 151.776 193.967 151.872 193.967 152.352Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_60" d="M190.751 99.5996C190.751 99.5996 188.591 102.576 185.999 102.768C183.407 102.96 178.223 102.48 177.935 105.12C177.647 107.76 181.199 108.336 183.407 107.712C183.407 107.712 183.455 114.624 187.679 116.112C191.903 117.6 193.679 116.256 194.207 119.04C194.207 119.04 199.679 123.36 199.679 118.032C199.679 117.216 200.687 106.896 194.159 104.208C194.159 104.256 190.463 103.008 190.751 99.5996Z" fill="white"/>
|
||||
<path id="Vector_61" d="M189.888 99.3596C189.12 100.416 188.112 101.328 186.96 101.952C185.424 102.768 183.552 102.48 181.872 102.576C180.48 102.672 178.608 102.768 177.6 103.824C176.592 104.88 177.216 106.608 178.416 107.328C180.192 108.336 182.256 108.624 184.224 108.096L182.544 107.52C182.592 110.4 183.456 113.952 186 115.584C187.2 116.256 188.496 116.736 189.888 116.976C190.416 117.072 190.992 117.168 191.568 117.264C191.952 117.36 192.336 117.408 192.768 117.456C192.96 117.456 192.72 117.456 192.672 117.408C192.768 117.552 192.912 117.6 193.008 117.744C193.248 118.08 193.248 118.656 193.488 118.944C193.776 119.184 194.064 119.424 194.4 119.568C195.696 120.384 197.472 121.296 199.056 121.008C200.544 120.768 200.544 119.136 200.64 117.936C200.784 114.72 200.592 111.312 199.104 108.384C198.624 107.424 197.952 106.56 197.184 105.792C196.752 105.408 196.272 105.024 195.744 104.736C195.504 104.592 195.264 104.448 194.976 104.352L194.544 104.16C194.256 104.064 194.256 104.064 194.544 104.16H194.4C194.16 104.064 194.496 104.208 194.304 104.112C194.112 104.016 194.16 104.064 194.016 103.968C193.632 103.728 193.248 103.488 192.912 103.2C192 102.384 191.52 101.136 191.616 99.9356C191.664 99.5036 189.936 99.2156 189.888 99.3596C189.744 101.76 191.568 103.44 193.68 104.304L193.872 104.4C194.496 104.64 193.824 104.352 194.016 104.448C194.208 104.544 194.304 104.592 194.448 104.688C195.024 105.024 195.504 105.408 195.936 105.888C196.752 106.8 197.376 107.856 197.808 109.008C198.576 111.12 198.912 113.328 198.912 115.584C198.912 116.256 198.912 116.88 198.864 117.552C198.816 118.368 198.864 119.328 198.24 120C197.952 120.288 197.568 120.48 197.136 120.432C197.088 120.432 196.944 120.432 197.04 120.432C196.992 120.432 196.896 120.384 196.848 120.384C196.944 120.432 196.704 120.336 196.704 120.336L196.416 120.192C195.888 119.952 195.408 119.616 194.976 119.28L195.072 119.424C194.832 118.176 194.112 117.552 192.912 117.12C191.52 116.688 189.984 116.688 188.592 116.256C185.952 115.536 184.944 112.608 184.512 110.16C184.368 109.488 184.32 108.768 184.272 108.048C184.272 107.664 182.88 107.376 182.592 107.472C181.488 107.76 179.904 108 179.136 106.944C178.368 105.888 178.944 104.448 180.096 103.92C181.44 103.296 183.024 103.296 184.416 103.248C185.952 103.2 187.488 103.296 188.832 102.48C189.936 101.856 190.848 100.992 191.568 99.9356C191.664 99.7916 190.128 99.0236 189.888 99.3596Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_62" d="M201.504 112.368C201.504 112.368 204.96 113.76 205.776 111.888C206.592 110.016 204.24 110.208 204.24 110.208C204.24 110.208 207.36 106.608 203.808 105.408C203.808 105.408 207.216 102.816 205.152 99.696C203.088 96.576 198.144 97.824 198.144 97.824C198.144 97.824 198.816 93.552 195.024 93.6C191.232 93.648 191.856 96.384 191.856 96.384C191.856 96.384 189.456 96.384 189.216 97.872C188.976 99.36 190.656 100.176 190.656 100.176C190.656 100.176 190.8 104.496 194.112 104.304L196.56 110.016C195.792 111.168 195.6 112.656 196.176 113.952C197.184 116.064 201.36 115.152 201.504 112.368Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_63" d="M202.08 113.04C203.28 113.52 205.68 114.096 206.4 112.56C206.88 111.456 205.968 110.496 205.104 109.92C204.672 109.632 204.144 109.536 203.616 109.584L204.864 110.88C205.488 110.16 205.92 109.296 206.112 108.384C206.208 107.712 206.016 107.088 205.584 106.56C205.008 105.744 204.192 105.12 203.28 104.784L204.48 106.08C206.064 104.832 207.024 102.72 206.112 100.8C205.44 99.4556 204.384 98.3996 203.088 97.6796C202.032 97.1516 200.88 96.9116 199.728 96.9596C199.008 96.9596 198.288 97.0556 197.568 97.1996L198.816 98.4956C198.96 97.5836 198.864 96.6236 198.48 95.8076C198.048 94.9916 197.472 94.2716 196.704 93.6956C195.984 93.1676 195.072 92.9276 194.208 93.0236C192.768 93.1196 191.328 93.7436 191.28 95.3756C191.28 95.5196 191.28 95.6636 191.28 95.7596C191.232 95.8556 191.28 95.8076 191.088 95.8076C190.368 95.8076 189.648 96.0476 189.072 96.4796C187.536 97.9196 190.032 100.224 191.28 100.848L190.08 99.5996C190.128 100.512 190.368 101.424 190.8 102.24C191.616 103.68 193.008 105.072 194.784 104.976L193.536 103.728L194.64 106.272L195.456 108.144C195.696 108.528 195.84 108.912 195.984 109.344C195.984 109.536 195.744 109.92 195.6 110.208C195.264 111.072 195.168 112.032 195.456 112.896C195.888 114.288 197.28 115.776 198.816 115.824C200.448 115.872 202.032 114.768 202.176 113.088C202.176 112.848 201.792 112.512 201.648 112.368C201.6 112.32 200.928 111.792 200.928 111.792C200.784 113.088 199.824 114.144 198.528 114.432C197.952 114.576 197.28 114.576 196.704 114.336C196.512 114.24 196.224 113.952 196.656 114.432C197.088 114.912 196.8 114.432 196.704 114.192C196.512 113.664 196.464 113.088 196.56 112.512C196.704 111.888 196.896 111.312 197.184 110.784C197.232 110.592 197.232 110.592 197.136 110.4L195.84 107.472L194.736 104.928C194.592 104.64 194.352 104.352 194.112 104.16C193.968 104.016 193.68 103.68 193.488 103.68C193.152 103.68 192.768 103.68 192.432 103.584C192.192 103.488 191.952 103.296 191.712 103.2C192.192 103.344 192.192 103.776 192 103.44C191.952 103.296 191.856 103.2 191.808 103.056C191.712 102.864 191.616 102.624 191.568 102.432C191.376 101.904 191.28 101.376 191.28 100.8C191.28 100.608 190.848 100.224 190.752 100.128C190.56 99.8876 190.368 99.6956 190.08 99.5516L189.84 99.4076C189.792 99.3596 189.696 99.2636 189.648 99.2636C189.984 99.6956 190.08 99.7436 189.936 99.4556C189.888 99.3596 189.888 99.3116 189.84 99.2156C189.696 98.6396 189.888 98.0636 190.32 97.7276C190.944 97.2956 191.712 97.0556 192.48 97.1036V97.0556C192.048 95.0396 194.352 94.2236 195.936 94.3196C196.272 94.3196 196.608 94.4156 196.944 94.5116C197.088 94.5596 197.184 94.6076 197.328 94.6556C197.664 94.7996 197.28 94.8956 197.04 94.2716C197.232 94.6556 197.424 95.0876 197.52 95.5196C197.616 96.0476 197.616 96.6236 197.568 97.1516C197.52 97.3916 198.576 98.5436 198.816 98.4476C200.64 98.0156 202.896 98.0156 204.48 99.0716C204.576 99.1196 204.624 99.1676 204.72 99.2156C204.624 99.0716 204.576 99.0236 204.624 99.1196C204.72 99.3116 204.864 99.4556 204.912 99.6476C205.104 100.032 205.2 100.464 205.2 100.848C205.248 101.568 205.056 102.24 204.72 102.864C204.336 103.536 203.856 104.16 203.232 104.688C203.088 104.784 204.24 105.936 204.432 105.984C204.624 106.032 204.816 106.176 205.008 106.224L205.152 106.32C204.768 105.792 204.624 105.648 204.768 105.936C204.864 106.176 204.864 106.416 204.912 106.704C204.864 107.136 204.768 107.568 204.576 108C204.336 108.528 204 109.008 203.616 109.488C203.472 109.632 204.624 110.832 204.864 110.784C205.248 110.784 205.632 110.832 205.968 110.976C206.208 111.12 206.112 110.976 205.68 110.592C205.344 110.16 205.248 110.016 205.296 110.256C205.296 110.304 205.344 110.448 205.344 110.544C205.344 110.784 205.248 110.976 205.152 111.168C205.008 111.504 204.768 111.744 204.432 111.936C203.376 112.464 201.936 112.08 200.928 111.648C200.784 111.6 201.216 112.176 201.264 112.224C201.504 112.56 201.744 112.848 202.08 113.04Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_64" d="M192.527 105.936C192.527 105.936 194.351 102.192 196.367 103.056C198.383 103.92 198.335 110.496 194.639 109.872" fill="white"/>
|
||||
<path id="Vector_65" d="M193.439 105.984C193.775 105.312 194.159 104.736 194.639 104.16C194.927 103.776 195.311 103.488 195.743 103.248C195.743 103.248 195.983 103.152 195.791 103.2C195.839 103.2 196.031 103.152 195.839 103.2C195.743 103.2 195.647 103.2 195.599 103.2C195.695 103.248 195.839 103.296 195.935 103.392C196.463 103.968 196.799 104.736 196.847 105.504C196.991 106.464 196.847 107.376 196.511 108.288C196.319 108.672 196.079 109.056 195.743 109.344L195.599 109.44C195.455 109.536 195.599 109.44 195.503 109.488L195.407 109.536H195.455C195.407 109.536 195.407 109.536 195.359 109.584C195.167 109.584 195.551 109.584 195.359 109.584C195.167 109.584 195.599 109.584 195.311 109.584C195.023 109.584 195.503 109.584 195.311 109.584C195.215 109.584 195.215 109.584 195.359 109.584H195.215C194.783 109.488 194.351 109.536 193.967 109.728C193.679 109.968 194.111 110.16 194.303 110.16C195.599 110.4 197.087 110.16 197.903 109.008C198.479 108.096 198.767 106.992 198.671 105.936C198.623 105.024 198.431 103.872 197.711 103.248C196.655 102.24 194.735 102.528 193.679 103.392C192.863 104.064 192.191 104.928 191.759 105.936C191.567 106.368 193.295 106.512 193.487 106.032L193.439 105.984Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_66" d="M188.975 103.92C188.735 103.968 188.543 104.208 188.591 104.496V104.544C188.735 105.072 189.359 104.832 189.359 104.4C189.407 104.16 189.215 103.968 189.023 103.92C189.023 103.92 189.023 103.92 188.975 103.92Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_67" d="M209.855 146.303C209.855 146.303 204.911 112.607 195.551 115.727C186.191 118.847 184.607 151.151 184.607 151.151C184.607 151.151 200.735 158.591 209.855 146.303Z" fill="white"/>
|
||||
<path id="Vector_68" d="M210.767 146.208C210.239 142.464 209.423 138.72 208.559 135.072C207.839 131.952 206.927 128.832 205.823 125.808C204.863 123.168 203.759 120.48 202.031 118.224C200.783 116.592 199.199 115.248 196.991 115.344C194.399 115.44 192.479 116.832 191.039 118.896C189.359 121.344 188.303 124.176 187.487 127.008C186.527 130.32 185.807 133.68 185.279 137.088C184.799 140.064 184.415 143.088 184.127 146.112C183.935 147.744 183.791 149.376 183.743 151.056C183.743 151.152 183.743 151.2 183.743 151.296L183.791 151.344C185.855 152.256 187.967 152.88 190.175 153.216C194.639 153.984 199.487 153.744 203.711 151.92C206.495 150.624 208.895 148.704 210.767 146.208C210.863 146.064 210.143 146.16 210.095 146.16C209.855 146.16 209.183 146.208 209.039 146.4C205.919 150.576 201.263 153.168 196.031 153.168C192.671 153.168 189.311 152.496 186.191 151.248C186.047 151.2 185.615 151.104 185.519 150.96C185.567 151.008 185.567 150.816 185.567 150.72C185.615 149.856 185.663 149.04 185.759 148.224C186.047 144.768 186.431 141.312 186.959 137.856C187.535 133.584 188.495 129.408 189.791 125.28C190.799 122.16 192.191 118.512 194.879 116.496C195.119 116.304 195.407 116.16 195.647 116.016C195.839 115.92 196.271 115.776 196.367 115.728C196.463 115.68 196.223 115.776 196.271 115.728C196.175 115.776 196.271 115.728 196.415 115.728C196.655 115.776 196.895 115.824 197.087 115.872C198.287 116.304 199.295 117.12 200.015 118.128C202.271 120.912 203.567 124.464 204.671 127.776C205.871 131.472 206.879 135.264 207.647 139.104C208.127 141.408 208.559 143.76 208.943 146.064C208.943 146.16 208.991 146.304 208.991 146.4C208.991 146.688 210.767 146.448 210.767 146.208Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_69" d="M190.56 127.536L189.216 117.792C191.568 116.448 195.504 113.76 193.776 113.376C192.048 112.992 189.024 114.432 189.024 114.432C185.52 112.992 184.992 107.376 184.512 106.944C183.216 105.648 182.736 108.816 182.736 108.816C180.768 108.288 180.96 111.696 180.96 111.696C178.56 110.64 179.328 119.52 182.352 120.528C182.352 120.528 180.24 133.68 186.816 139.632C193.392 145.584 200.064 130.992 200.064 130.992L193.488 123.312L190.56 127.536Z" fill="white"/>
|
||||
<path id="Vector_70" d="M191.327 127.824L189.983 118.08L189.791 118.464C191.087 117.744 192.335 116.88 193.487 115.968C194.159 115.44 195.311 114.576 194.831 113.616C194.207 112.32 192.431 112.512 191.279 112.8C190.319 113.04 189.359 113.328 188.447 113.76L188.975 113.808C187.103 112.992 186.335 110.64 185.807 108.816C185.663 108.144 185.471 107.52 185.183 106.944C184.703 106.176 183.455 105.504 182.735 106.32C182.303 106.896 182.015 107.616 181.967 108.336L182.495 108.096C180.527 107.616 180.095 109.92 180.191 111.36L180.911 111.024C179.231 110.352 178.799 112.176 178.751 113.424C178.655 115.392 179.135 117.312 180.095 119.04C180.575 120 181.391 120.72 182.399 121.152L181.583 120.048C181.295 121.872 181.199 123.744 181.247 125.616C181.295 129.168 181.871 132.864 183.455 136.08C184.847 138.864 187.583 142.176 191.039 141.744C193.823 141.408 195.983 138.96 197.567 136.848C198.815 135.168 199.919 133.344 200.783 131.424C200.879 131.184 200.687 130.896 200.543 130.752L193.967 123.072C193.775 122.88 193.055 122.304 192.767 122.736L189.839 126.96C189.407 127.584 190.799 128.688 191.231 128.112L194.159 123.84L192.959 123.456L199.535 131.136L199.295 130.464C198.623 131.856 197.855 133.2 196.991 134.496C195.599 136.608 193.823 138.96 191.375 139.968C190.367 140.448 189.215 140.448 188.207 139.968C186.863 139.296 185.855 137.904 185.135 136.656C183.455 133.728 182.927 130.272 182.783 126.96C182.687 124.944 182.783 122.928 183.071 120.96C183.071 120.48 182.735 120 182.255 119.856C182.015 119.808 181.823 119.664 181.679 119.424C181.439 119.136 181.247 118.8 181.103 118.416C180.719 117.504 180.479 116.592 180.335 115.584C180.191 114.768 180.239 113.904 180.383 113.088C180.431 112.848 180.527 112.56 180.719 112.368C180.815 112.272 180.719 112.32 180.815 112.32C180.911 112.32 180.959 112.272 180.863 112.272C181.007 112.272 180.911 112.272 181.007 112.272C181.295 112.416 181.727 112.368 181.727 111.936C181.679 111.12 181.775 109.152 182.975 109.44C183.167 109.488 183.455 109.44 183.503 109.2C183.551 108.72 183.695 108.288 183.887 107.856C183.935 107.76 184.319 107.328 184.319 107.328C184.319 107.472 183.887 106.992 183.935 107.04C183.983 107.088 183.935 107.136 183.935 106.992C183.935 107.04 183.983 107.088 183.983 107.136C184.367 108.576 184.847 110.016 185.471 111.408C185.903 112.32 186.479 113.088 187.199 113.808C187.727 114.336 188.879 115.344 189.647 115.104C190.319 114.912 190.895 114.576 191.567 114.384C192.047 114.24 192.527 114.144 193.007 114.048C193.247 114 193.487 114 193.727 114C193.775 114 193.871 114 193.919 114.048C194.063 114.096 194.063 114.096 194.015 114.048C193.727 113.952 193.535 113.712 193.487 113.424C193.535 113.376 193.439 113.52 193.391 113.616C193.295 113.76 193.151 113.904 193.055 114.048C192.671 114.432 192.287 114.768 191.855 115.104C190.847 115.872 189.839 116.544 188.735 117.168C188.591 117.216 188.543 117.36 188.543 117.552L189.887 127.248C189.983 127.68 190.271 128.064 190.703 128.208C190.895 128.256 191.375 128.256 191.327 127.824Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_71" d="M183.743 114.815C183.743 114.815 182.255 110.927 182.783 108.815L183.743 114.815Z" fill="white"/>
|
||||
<path id="Vector_72" d="M184.511 114.624C184.415 114.432 184.367 114.192 184.271 114C184.175 113.808 184.127 113.52 184.031 113.328C184.031 113.28 183.983 113.184 183.983 113.136C183.935 112.944 184.031 113.28 183.983 113.088C183.935 112.944 183.887 112.8 183.887 112.656C183.743 112.032 183.599 111.36 183.551 110.736C183.551 110.592 183.503 110.448 183.503 110.304C183.503 110.16 183.503 110.112 183.503 110.064C183.503 110.016 183.503 110.016 183.503 109.968C183.503 109.68 183.551 109.392 183.599 109.104C183.791 108.192 182.111 107.664 181.871 108.672C181.583 109.968 181.871 111.36 182.159 112.656C182.351 113.472 182.591 114.288 182.879 115.056C183.071 115.488 183.551 115.728 184.031 115.632C184.415 115.584 184.607 115.2 184.559 114.864C184.607 114.72 184.559 114.672 184.511 114.624Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_73" d="M180.959 111.695C180.959 112.895 181.103 114.143 181.439 115.295L180.959 111.695Z" fill="white"/>
|
||||
<path id="Vector_74" d="M180.191 111.216C180.191 111.648 180.239 112.128 180.239 112.56C180.287 113.376 180.431 114.192 180.671 114.96C180.767 115.152 180.863 115.296 181.007 115.392C181.199 115.536 181.391 115.68 181.583 115.776C181.775 115.872 182.207 116.016 182.111 115.632C182.015 115.296 181.919 114.96 181.871 114.624C181.823 114.24 181.775 113.856 181.727 113.472C181.679 113.088 181.679 112.608 181.679 112.176C181.631 112.032 181.583 111.888 181.439 111.792C181.295 111.6 181.103 111.456 180.911 111.36C180.815 111.264 180.191 110.928 180.191 111.216Z" fill="#3D3D3D"/>
|
||||
<path id="Vector_75" d="M204.143 157.152C203.951 158.208 203.663 159.264 203.327 160.272C202.751 162.192 202.127 164.064 201.551 165.936C200.207 170.064 198.815 174.192 197.375 178.32C196.943 179.52 196.559 180.768 196.031 181.968C195.887 182.256 196.847 181.92 196.943 181.92C197.279 181.776 198.047 181.536 198.191 181.152C199.391 178.32 200.303 175.296 201.263 172.416C202.655 168.288 204.047 164.16 205.343 159.936C205.775 158.688 206.111 157.44 206.351 156.144C206.351 155.952 205.247 156.384 205.151 156.432C204.863 156.528 204.143 156.816 204.143 157.152Z" fill="white"/>
|
||||
<path id="Vector_76" d="M192.239 87.3592C191.663 84.4312 192.191 81.3592 192.335 78.3832C192.479 75.4072 192.095 72.0952 190.079 69.8872C187.679 67.4392 183.887 66.9592 181.007 68.8312C179.663 69.7432 178.751 71.9512 180.095 72.8632C180.575 73.1512 181.151 73.2472 181.679 73.1032C184.031 72.6712 185.279 69.9352 185.039 67.5352C184.655 62.6872 179.135 58.9432 174.479 60.3832" fill="white"/>
|
||||
<path id="Vector_77" d="M193.343 87.4559C192.431 82.5599 194.447 77.5199 192.815 72.6719C192.191 70.6559 190.799 69.0239 188.927 68.0639C187.007 67.1039 184.799 66.8639 182.687 67.2959C180.815 67.7279 178.943 68.7839 178.367 70.7039C177.647 73.1519 180.383 74.1119 182.351 73.6319C184.319 73.1519 185.471 71.6159 185.951 69.7919C186.383 68.0159 186.143 66.0959 185.231 64.5119C183.071 60.6719 178.175 58.6079 173.951 59.8559C173.567 59.9519 173.135 60.2399 173.471 60.6719C173.903 61.0079 174.479 61.1519 175.007 61.0079C177.791 60.1919 180.623 61.5839 182.303 63.7919C183.983 65.9999 184.655 69.8399 182.351 71.9519C182.111 72.1919 181.823 72.3359 181.535 72.4799C181.343 72.5759 181.103 72.6239 180.911 72.6239C180.383 72.3359 180.479 71.4719 180.623 70.9919C181.103 69.5519 182.543 68.7359 183.983 68.4959C185.375 68.2559 186.815 68.5919 187.967 69.3599C189.407 70.3199 190.223 71.9039 190.655 73.4879C191.903 78.0479 190.127 82.7999 190.943 87.4079C191.183 88.1759 193.487 88.1759 193.343 87.4559Z" fill="#3D3D3D"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 9.2 KiB |
|
After Width: | Height: | Size: 63 KiB |
@@ -0,0 +1,38 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M36.624 43.1277C36.624 43.1277 34.392 63.7437 58.776 76.8477C58.776 76.8477 39.672 86.9517 37.848 110.352H84.192C84.192 110.352 85.824 91.9197 62.64 76.7517C62.64 76.7517 81.552 70.2957 82.368 43.1517L36.624 43.1277Z" fill="white"/>
|
||||
<path d="M36.0479 43.2477C35.9759 43.9677 35.9759 44.6877 35.9999 45.4317C36.0719 47.3277 36.312 49.2237 36.744 51.0717C37.368 53.8077 38.3039 56.4237 39.5759 58.9197C41.2079 62.1117 43.2719 65.0637 45.7199 67.6557C48.912 70.9917 52.5599 73.8717 56.5679 76.1517C57.1199 76.4877 57.696 76.7997 58.272 77.1117L58.5599 76.6557C57.864 77.0397 57.1919 77.4477 56.52 77.9037C54.864 79.0317 53.2799 80.2557 51.7679 81.5997C49.6319 83.5197 47.6879 85.6077 45.9359 87.8877C41.2559 93.9597 38.328 101.184 37.4399 108.792C37.3679 109.344 37.32 109.92 37.272 110.472C37.272 110.592 37.392 110.664 37.512 110.664H83.856C84.096 110.664 84.72 110.544 84.768 110.208C84.816 109.536 84.816 108.864 84.744 108.192C84.624 106.44 84.36 104.688 83.928 102.984C83.28 100.392 82.344 97.8957 81.12 95.5197C79.488 92.3517 77.496 89.3997 75.144 86.7117C72.096 83.2557 68.616 80.1837 64.7999 77.5677C64.2479 77.1837 63.72 76.8237 63.168 76.4637L62.7359 76.9917C63.4319 76.7277 64.1279 76.4397 64.7759 76.0797C66.4319 75.2157 67.992 74.2077 69.456 73.0557C71.5919 71.3517 73.512 69.4077 75.168 67.2237C77.256 64.4397 78.936 61.3677 80.16 58.1037C81.744 53.8797 82.56 49.4397 82.848 44.9517C82.896 44.3037 82.92 43.6557 82.944 43.0077C82.944 42.8637 82.824 42.8157 82.704 42.8157H36.9599C36.6719 42.7917 36.3839 42.9117 36.1679 43.1037C36.0239 43.2477 36.0479 43.4637 36.2879 43.4637H81.336C81.528 43.4877 81.7439 43.4877 81.936 43.4637C81.96 43.4637 81.984 43.4637 82.008 43.4637L81.768 43.2717C81.624 47.8797 80.952 52.4637 79.512 56.8557C78.408 60.2397 76.824 63.4317 74.784 66.3597C73.224 68.5917 71.352 70.6077 69.264 72.3597C68.472 73.0317 67.632 73.6557 66.744 74.2317C66.36 74.4717 65.9999 74.7117 65.6159 74.9517L65.52 74.9997L65.424 75.0477L65.16 75.1917L64.6559 75.4557C64.1519 75.7197 63.6239 75.9837 63.0959 76.2237C62.9759 76.2717 63.0239 76.2477 63.0959 76.2237L62.9519 76.2717L62.7359 76.3677L62.4959 76.4637H62.4719C62.3999 76.4877 61.7759 76.7997 62.04 76.9917C66.048 79.5597 69.72 82.6317 72.96 86.0877C75.456 88.7517 77.592 91.7037 79.344 94.8957C80.664 97.3197 81.72 99.9117 82.464 102.576C82.968 104.376 83.304 106.224 83.472 108.096C83.52 108.624 83.544 109.128 83.544 109.704C83.544 109.944 83.52 110.208 83.52 110.448V110.472L84.4319 110.016H38.8799C38.6639 109.992 38.4719 109.992 38.2559 110.016C38.2319 110.016 38.208 110.016 38.184 110.016L38.424 110.208C38.736 106.056 39.672 101.952 41.184 98.0637C42.48 94.7757 44.1839 91.6557 46.2479 88.7997C47.9519 86.4477 49.872 84.2637 51.984 82.2957C53.496 80.8797 55.08 79.5837 56.784 78.4317C57.288 78.0717 57.816 77.7357 58.368 77.3997L58.6559 77.2317C58.4639 77.3517 58.68 77.2077 58.752 77.1837C58.824 77.1597 58.9199 77.0877 59.0159 77.0397L59.0399 77.0157C59.1119 76.9677 59.5439 76.6797 59.3279 76.5597C55.1519 74.3277 51.24 71.5917 47.8799 68.2557C45.24 65.6637 43.008 62.7117 41.232 59.4717C39.864 56.9517 38.808 54.2877 38.112 51.5277C37.608 49.6077 37.3199 47.6397 37.1999 45.6477C37.1759 45.0477 37.1519 44.4477 37.1759 43.8477C37.1759 43.5837 37.224 43.2957 37.224 43.0317V43.0077C37.224 42.5997 36.0959 42.8877 36.0479 43.2477Z" fill="#CECECE"/>
|
||||
<path d="M34.8001 39.9597C34.8001 39.9597 84.1201 40.1517 84.2161 41.1117C84.3121 42.0717 85.2481 43.6317 84.2161 43.9437C83.1841 44.2557 37.3921 43.7277 35.6161 43.1277C33.8401 42.5277 34.8001 39.9597 34.8001 39.9597Z" fill="white"/>
|
||||
<path d="M34.92 40.4159H36.264C37.488 40.4159 38.688 40.4159 39.912 40.4399C41.712 40.4399 43.512 40.4639 45.288 40.4879C47.472 40.5119 49.656 40.5359 51.84 40.5359C54.216 40.5599 56.592 40.5839 58.992 40.6319C61.392 40.6559 63.792 40.7039 66.216 40.7519C68.448 40.7999 70.68 40.8479 72.912 40.8959C74.784 40.9439 76.656 40.9919 78.528 41.0639C79.848 41.1119 81.192 41.1599 82.512 41.2799L82.872 41.3039L83.016 41.3279C83.136 41.3279 82.896 41.3279 82.968 41.3279H83.04C83.208 41.3519 83.4 41.3759 83.568 41.3999C83.688 41.4239 83.808 41.4479 83.928 41.4719C84.048 41.4959 84 41.4959 83.904 41.4479C84.024 41.4959 83.928 41.4719 83.832 41.3999C83.856 41.4239 83.712 41.3039 83.712 41.2559C83.664 41.1839 83.616 40.9919 83.64 41.1839C83.688 41.5439 83.784 41.8799 83.904 42.2159C84.024 42.5279 84.072 42.8399 84.096 43.1759C84.096 43.2959 84.024 43.4159 83.904 43.4639C83.832 43.5119 83.88 43.4639 83.952 43.4639C83.904 43.4639 83.856 43.4639 83.832 43.4639L83.448 43.4879C82.416 43.5359 81.384 43.5359 80.352 43.5359C78.648 43.5359 76.92 43.5359 75.216 43.5359C73.032 43.5359 70.848 43.5119 68.664 43.4879C66.24 43.4639 63.816 43.4399 61.368 43.3919C58.872 43.3679 56.4 43.3199 53.904 43.2719C51.576 43.2239 49.272 43.1759 46.944 43.1279C45 43.0799 43.056 43.0319 41.112 42.9599C39.768 42.9119 38.4 42.8639 37.056 42.7679C36.84 42.7679 36.624 42.7439 36.384 42.7199L36.096 42.6959C36.024 42.6959 36.288 42.7199 36.12 42.6959H36L35.664 42.6479H35.616C35.496 42.6239 35.712 42.6479 35.712 42.6719C35.712 42.6959 35.568 42.6239 35.544 42.5999C35.448 42.5519 35.592 42.6479 35.52 42.5759L35.424 42.5039C35.352 42.4559 35.304 42.3839 35.256 42.3119C34.896 41.7119 35.04 40.7519 35.28 40.1279C35.496 39.5759 34.392 39.0959 34.176 39.6719C33.864 40.5359 33.744 41.5919 34.152 42.4319C34.488 43.0799 35.112 43.5119 35.832 43.5839C36.792 43.7039 37.776 43.7519 38.736 43.7759C40.392 43.8479 42.048 43.8959 43.68 43.9439C45.84 44.0159 48.024 44.0639 50.184 44.1119C52.656 44.1599 55.104 44.2079 57.576 44.2559C60.096 44.3039 62.616 44.3279 65.136 44.3519C67.512 44.3759 69.888 44.3999 72.264 44.4239C74.256 44.4479 76.272 44.4479 78.264 44.4479C79.68 44.4479 81.072 44.4479 82.488 44.4239C82.896 44.4239 83.304 44.3999 83.712 44.3999C83.952 44.3999 84.168 44.3759 84.408 44.3279C85.248 44.1119 85.272 43.2719 85.104 42.5759C85.008 42.1919 84.888 41.8319 84.792 41.4719C84.768 41.2799 84.72 41.0639 84.648 40.8959C84.456 40.5839 84.072 40.4879 83.76 40.4399C82.824 40.2959 81.864 40.2239 80.904 40.1999C79.32 40.1039 77.736 40.0559 76.128 40.0079C74.064 39.9359 72 39.8879 69.912 39.8399C67.536 39.7919 65.184 39.7439 62.808 39.7199C60.336 39.6719 57.888 39.6479 55.416 39.6239C53.064 39.5999 50.712 39.5759 48.36 39.5519C46.296 39.5279 44.232 39.5039 42.168 39.5039L37.488 39.4799L34.896 39.4559H34.56C34.344 39.4319 34.128 39.5999 34.104 39.8159C34.104 39.8639 34.104 39.8879 34.104 39.9359C34.344 40.2479 34.608 40.4399 34.92 40.4159Z" fill="#CECECE"/>
|
||||
<path d="M61.7999 80.3282C62.1359 79.0322 61.7999 75.2161 61.7999 75.2161C68.6159 71.4481 73.4399 63.8401 73.4399 63.8401C67.6799 64.0561 60.7439 62.3281 54.0959 58.4881C47.4479 54.6481 41.9519 56.7601 41.9519 56.7601C45.8879 68.7361 59.9039 75.4561 59.9039 75.4561C59.9039 75.4561 59.2799 83.9521 59.9039 83.0401C60.5279 82.1281 60.6239 79.7521 60.9119 80.6642C61.1999 81.5761 61.6319 80.9762 61.7999 80.3282Z" fill="#CECECE"/>
|
||||
<path d="M62.352 80.5201C62.592 79.5361 62.52 78.4561 62.472 77.4481C62.448 76.7281 62.4 76.0081 62.352 75.2881L62.256 75.5521C64.848 74.1121 67.128 72.1921 69.168 70.0561C70.656 68.4961 72.048 66.8401 73.296 65.0881C73.536 64.7521 73.752 64.4401 73.968 64.1041C74.208 63.7441 73.512 63.3601 73.224 63.3601C68.184 63.5521 63.144 62.2801 58.56 60.2641C57.24 59.6881 55.968 59.0401 54.72 58.3441C53.496 57.6241 52.224 57.0241 50.88 56.5441C48.864 55.8481 46.704 55.5601 44.568 55.7041C43.56 55.7521 42.576 55.9441 41.616 56.2561C41.472 56.2801 41.4 56.4241 41.424 56.5681C42.936 61.1521 45.888 65.0881 49.392 68.4001C52.008 70.8481 54.888 72.9841 57.984 74.7601C58.608 75.1201 59.232 75.4801 59.88 75.7921L59.376 75.1921C59.256 76.8721 59.16 78.5281 59.112 80.2081C59.112 80.7121 59.088 81.1921 59.112 81.6961C59.112 82.0561 59.136 82.3921 59.208 82.7521C59.304 83.1841 59.808 83.6881 60.264 83.4481C60.408 83.3521 60.528 83.1841 60.6 83.0161C60.744 82.7041 60.864 82.3681 60.936 82.0321C61.032 81.6961 61.08 81.3601 61.176 81.0241C61.2 80.9041 61.224 80.9041 61.272 80.7841C61.272 80.7361 61.272 80.7601 61.272 80.7841C61.08 81.0001 60.816 80.9281 60.456 80.5681L60.408 80.4961C60.408 80.5201 60.432 80.5441 60.432 80.5441C60.432 80.4721 60.432 80.5681 60.456 80.6161C60.624 81.0961 61.128 81.6721 61.704 81.5041C62.112 81.4081 62.256 80.8801 62.352 80.5201C62.472 80.0641 61.392 79.5601 61.272 80.0881C61.224 80.2561 61.176 80.4001 61.08 80.5441C61.056 80.5681 61.032 80.6161 61.008 80.6401C60.912 80.9041 61.56 80.6401 61.584 80.8561C61.584 80.8561 61.56 80.7841 61.536 80.7841C61.464 80.4481 61.224 80.1601 60.912 80.0161C60.264 79.7761 60.168 80.4001 60.048 80.8801C59.904 81.4561 59.808 82.0561 59.52 82.5601C59.496 82.6081 59.472 82.6321 59.448 82.6801C59.424 82.7041 59.52 82.6321 59.472 82.6561C59.784 82.5841 60.12 82.7281 60.312 82.9921C60.312 82.9441 60.288 82.8721 60.288 82.8241C60.288 82.7761 60.264 82.7041 60.264 82.6561C60.264 82.5121 60.264 82.6081 60.264 82.4881C60.264 82.2961 60.24 82.1041 60.24 81.9121C60.24 81.4321 60.24 80.9761 60.264 80.4961C60.288 79.4641 60.336 78.4321 60.408 77.4001C60.432 76.8001 60.48 76.2001 60.528 75.6001C60.552 75.3121 60.24 75.1201 60.024 75.0001C60.288 75.1201 60.12 75.0481 60.048 75.0241L59.76 74.8801C59.424 74.6881 59.064 74.5201 58.728 74.3281C57.528 73.6561 56.352 72.9121 55.224 72.1441C54.864 71.8801 54.648 71.7361 54.24 71.4481C53.832 71.1601 53.448 70.8721 53.064 70.5601C52.272 69.9361 51.504 69.2881 50.76 68.6161C49.104 67.1521 47.616 65.5201 46.272 63.7681C44.664 61.6801 43.416 59.3281 42.552 56.8321L42.36 57.1441C43.08 56.8801 43.848 56.7361 44.616 56.6641C46.584 56.4481 48.552 56.6401 50.448 57.2401C51.744 57.6481 52.992 58.2001 54.168 58.8961C55.44 59.6161 56.712 60.2641 58.032 60.8641C60.48 61.9681 63.048 62.8321 65.688 63.4561C68.328 64.0801 71.016 64.3441 73.728 64.2721L72.984 63.5281C72.36 64.4881 71.664 65.4241 70.944 66.3361C69.336 68.3761 67.536 70.2481 65.544 71.9281C64.248 73.0321 62.856 73.9921 61.392 74.8321C61.296 74.8801 61.296 75.0241 61.296 75.0961C61.344 75.7201 61.392 76.4161 61.416 77.1121C61.44 78.0961 61.512 79.1521 61.272 80.1121C61.152 80.5681 62.208 81.0721 62.352 80.5201Z" fill="#CECECE"/>
|
||||
<path d="M62.2321 92.112C63.2401 93.648 65.7841 97.488 71.8081 103.176C75.6481 106.8 78.6961 110.352 78.6961 110.352H42.7441C42.7441 110.352 45.3601 106.008 50.5921 101.184C56.9521 95.328 59.3041 94.32 59.9281 90.576C59.9281 90.576 59.8561 87.048 60.3841 87.144C60.9121 87.24 62.2321 92.112 62.2321 92.112Z" fill="#CECECE"/>
|
||||
<path d="M62.112 92.184C63.456 94.224 64.944 96.168 66.552 98.016C69.576 101.496 73.056 104.52 76.2 107.856C77.064 108.768 77.904 109.704 78.72 110.64L78.384 109.8H43.92C43.464 109.8 42.984 109.776 42.528 109.8H42.456L43.056 110.808C44.064 109.2 45.216 107.664 46.464 106.248C49.08 103.176 52.08 100.536 55.104 97.896C56.088 97.056 57.072 96.192 57.984 95.256C58.656 94.584 59.232 93.816 59.664 92.976C60.024 92.28 60.24 91.488 60.264 90.696C60.264 90.192 60.264 89.712 60.288 89.208C60.288 88.704 60.36 88.224 60.504 87.744C60.528 87.696 60.552 87.648 60.576 87.6C60.6 87.576 60.672 87.552 60.672 87.576C60.672 87.6 60.48 87.384 60.48 87.384C60.432 87.288 60.456 87.36 60.456 87.36C60.288 87.12 60.432 87.288 60.432 87.312C60.432 87.336 60.528 87.48 60.456 87.336C60.672 87.768 60.84 88.224 60.984 88.704C61.296 89.64 61.584 90.6 61.848 91.56C61.872 91.608 61.872 91.68 61.896 91.728C61.992 92.016 62.136 92.256 62.352 92.448C62.52 92.592 62.592 92.544 62.52 92.328C62.304 91.56 62.088 90.792 61.848 90.048C61.512 88.992 61.2 87.84 60.528 86.952C60.312 86.664 60 86.352 59.808 86.808C59.664 87.288 59.592 87.792 59.592 88.296C59.568 88.8 59.568 89.28 59.568 89.784C59.568 90.144 59.496 90.48 59.4 90.816C58.848 92.904 57.264 94.368 55.704 95.76C52.728 98.424 49.632 100.968 46.944 103.92C45.312 105.696 43.728 107.592 42.48 109.656C42.456 109.68 42.456 109.704 42.432 109.752C42.312 109.944 42.816 110.76 43.032 110.76H77.52C77.976 110.76 78.456 110.808 78.912 110.76H78.984C79.224 110.76 78.696 109.992 78.648 109.92C76.512 107.448 74.232 105.072 71.856 102.816C69.072 100.176 66.384 97.392 64.08 94.344C63.888 94.08 63.696 93.816 63.504 93.552L63.264 93.216L63.144 93.024L63.096 92.952C63.024 92.856 63.144 93.024 63.096 92.952C62.856 92.592 62.616 92.256 62.376 91.896C62.328 91.824 62.064 91.392 61.92 91.464C61.776 91.536 62.088 92.136 62.112 92.184Z" fill="#CECECE"/>
|
||||
<path d="M35.5681 108.312C35.5681 108.312 84.8882 108.504 85.0082 109.464C85.1282 110.424 86.0402 111.984 85.0082 112.296C83.9762 112.608 38.1601 112.08 36.3841 111.48C34.6081 110.88 35.5681 108.312 35.5681 108.312Z" fill="white"/>
|
||||
<path d="M35.832 108.768H37.176L40.824 108.792L46.176 108.84C48.36 108.864 50.544 108.888 52.728 108.888C55.128 108.912 57.504 108.936 59.904 108.984C62.304 109.008 64.704 109.056 67.104 109.104C69.336 109.152 71.592 109.2 73.824 109.248C75.696 109.296 77.568 109.344 79.464 109.416C80.784 109.464 82.128 109.536 83.448 109.632C83.856 109.656 84.24 109.704 84.648 109.752C84.768 109.776 84.888 109.8 85.032 109.824L85.104 109.848C85.2 109.872 85.008 109.824 85.08 109.848C85.152 109.872 85.176 109.896 85.056 109.824C84.936 109.752 84.84 109.656 84.744 109.536C84.696 109.464 84.672 109.344 84.6 109.248C84.528 109.152 84.6 109.32 84.624 109.392C84.696 109.752 84.816 110.112 84.912 110.472C85.032 110.88 85.296 111.72 84.696 111.864C84.504 111.888 84.312 111.912 84.12 111.912C83.112 111.96 82.08 111.96 81.048 111.96C79.368 111.96 77.664 111.96 75.96 111.96C73.8 111.96 71.616 111.936 69.456 111.912C67.008 111.888 64.584 111.864 62.136 111.84C59.64 111.816 57.168 111.768 54.672 111.72C52.368 111.672 50.04 111.624 47.736 111.576C45.792 111.528 43.848 111.48 41.88 111.408C40.512 111.36 39.144 111.312 37.8 111.216C37.416 111.192 37.008 111.168 36.624 111.12C36.504 111.12 36.384 111.096 36.288 111.072C36.264 111.072 36.216 111.048 36.192 111.048C36.408 111.096 36.12 111 36.048 110.976C36.048 110.976 35.952 110.928 36.024 110.976C35.928 110.88 36 110.976 36.024 110.976C36 110.952 35.976 110.928 35.952 110.88C36 110.976 35.904 110.76 35.928 110.832C35.904 110.784 35.88 110.712 35.88 110.64C35.856 110.52 35.832 110.4 35.832 110.28C35.808 110.04 35.832 109.776 35.88 109.536C35.928 109.248 36 108.96 36.096 108.696C36.216 108.36 35.328 107.568 35.184 107.952C34.872 108.792 34.776 109.848 35.184 110.664C35.544 111.384 36.216 111.888 36.984 112.008C37.896 112.128 38.832 112.152 39.744 112.2C41.4 112.272 43.056 112.32 44.712 112.368C46.872 112.44 49.056 112.488 51.216 112.536C53.664 112.584 56.112 112.632 58.56 112.656C61.08 112.704 63.624 112.728 66.144 112.752C68.52 112.776 70.896 112.8 73.272 112.824C75.288 112.848 77.304 112.848 79.32 112.848C80.736 112.848 82.152 112.848 83.568 112.824C83.976 112.824 84.408 112.824 84.816 112.8C85.008 112.8 85.176 112.8 85.368 112.752C86.112 112.56 85.992 111.696 85.848 111.144C85.752 110.784 85.632 110.424 85.536 110.064C85.512 109.824 85.44 109.584 85.32 109.368C85.08 109.08 84.744 108.888 84.384 108.84C83.496 108.696 82.584 108.624 81.696 108.6C80.112 108.504 78.528 108.456 76.944 108.408C74.856 108.336 72.792 108.288 70.704 108.24C68.352 108.192 66 108.144 63.624 108.12C61.152 108.072 58.704 108.048 56.232 108.024C53.88 108 51.504 107.976 49.152 107.952C47.088 107.928 45.024 107.928 42.96 107.904L38.28 107.88H35.688H35.352C34.8 107.832 35.472 108.768 35.832 108.768Z" fill="#CECECE"/>
|
||||
<path d="M45.624 61.1278C45.96 62.5678 46.728 63.8398 47.832 64.8238C48.048 65.0158 48.432 65.1118 48.648 64.8718C48.864 64.6558 48.84 64.3198 48.648 64.1038C48.648 64.1038 48.648 64.1038 48.624 64.0798C48.384 63.8638 48.144 63.6238 47.952 63.3838L47.928 63.3598C47.904 63.3358 47.88 63.3118 47.856 63.2638C47.832 63.2158 47.76 63.1198 47.712 63.0718C47.616 62.9278 47.52 62.7838 47.448 62.6398C47.376 62.4958 47.304 62.3758 47.232 62.2318C47.232 62.2318 47.16 62.0878 47.184 62.1358C47.208 62.1838 47.16 62.0878 47.16 62.0878C47.136 62.0158 47.088 61.9438 47.064 61.8478C46.944 61.5358 46.848 61.2238 46.776 60.8878C46.68 60.5998 46.368 60.4078 46.056 60.4558C45.792 60.5038 45.6 60.7678 45.648 61.0318C45.624 61.0798 45.648 61.1038 45.624 61.1278Z" fill="white"/>
|
||||
<path d="M49.4159 66.5517C49.8239 67.0797 50.3039 67.5597 50.8319 67.9677C50.9519 68.0637 51.0959 68.1357 51.2399 68.1837C51.3119 68.2077 51.4799 68.2557 51.5519 68.2077C51.7679 68.0877 51.4559 67.7997 51.3599 67.7277L51.1919 67.6077L51.0959 67.5357L51.0479 67.5117L51.0959 67.5597C50.9999 67.4637 50.8799 67.3677 50.7839 67.2717C50.6879 67.1757 50.5919 67.0797 50.4959 66.9597L50.4719 66.9357L50.5199 66.9837L50.4959 66.9597L50.4239 66.8637L50.2799 66.6957C50.1839 66.5757 50.0879 66.4797 49.9439 66.4077C49.8239 66.3357 49.6799 66.2637 49.5359 66.2397C49.4639 66.2397 49.3199 66.2157 49.2959 66.2877C49.3199 66.4077 49.3439 66.5037 49.4159 66.5517Z" fill="white"/>
|
||||
<path d="M50.4239 57.744C50.4239 57.744 50.7119 63.744 50.5439 63.744C50.3759 63.744 47.8079 63.672 47.8079 63.672V61.272L46.5599 63.912L38.0159 63.432C38.0159 63.432 37.7519 62.568 39.6719 61.608C41.5919 60.648 44.6879 59.304 44.6879 59.304L44.7599 55.728L50.4239 57.744Z" fill="#3D3D3D"/>
|
||||
<path d="M69.7678 58.2959C69.7678 58.2959 69.4798 64.2959 69.6478 64.2959C69.8158 64.2959 72.3838 64.2239 72.3838 64.2239V61.8239L73.6318 64.4639L82.1518 63.9839C82.1518 63.9839 82.4158 63.1199 80.4958 62.1599C78.5758 61.1999 75.4798 59.8319 75.4798 59.8319L75.4078 56.2559L69.7678 58.2959Z" fill="#3D3D3D"/>
|
||||
<path d="M56.304 35.3037C56.304 35.3037 52.512 33.3357 49.2 35.3037C45.888 37.2717 41.76 59.5917 41.76 59.5917H52.512L57.312 39.9357H63.912L68.04 59.5917L77.136 58.4397C77.136 58.4397 73.32 35.3277 69.36 34.1757C64.464 32.7357 61.992 35.4237 61.992 35.4237L56.304 35.3037Z" fill="#3D3D3D"/>
|
||||
<path d="M56.6399 35.0397C55.5839 34.5117 54.4559 34.2237 53.2799 34.1517C52.2239 34.0797 51.1919 34.1997 50.1839 34.5597C49.5599 34.7517 48.9839 35.0637 48.5039 35.4957C47.9999 36.0477 47.5679 36.6957 47.2799 37.3917C46.8239 38.3757 46.4159 39.3837 46.0799 40.4157C45.1919 42.9837 44.4719 45.6237 43.8239 48.2637C43.1999 50.7597 42.6479 53.2557 42.1199 55.7757C41.9519 56.6397 41.7599 57.4797 41.5919 58.3437C41.5199 58.7517 41.3999 59.1837 41.3519 59.5917C41.3519 59.6157 41.3519 59.6397 41.3519 59.6397C41.3279 59.7837 41.5439 59.8317 41.6399 59.8317H52.3919C52.6079 59.8317 52.9199 59.7117 52.9679 59.4717L54.5999 52.7997L57.1679 42.2397L57.7679 39.8157L57.1919 40.1757H63.7919L63.5039 40.0557L64.9199 46.7517L67.1279 57.3117L67.6319 59.7117C67.6559 59.8557 67.9199 59.8317 68.0159 59.8077L75.9599 58.7997L77.1119 58.6557C77.3039 58.6317 77.6159 58.4637 77.5679 58.2477C77.3759 57.0717 77.1599 55.8957 76.9439 54.7437C76.4399 52.1277 75.8879 49.5117 75.2639 46.9197C74.6399 44.1357 73.8239 41.3997 72.8639 38.7117C72.5039 37.6797 72.0239 36.6477 71.4959 35.6877C71.1119 35.0637 70.6559 34.3677 70.0079 34.0077C69.8159 33.9117 69.5999 33.8397 69.3839 33.7917C68.8079 33.6477 68.2319 33.5277 67.6559 33.4797C66.7199 33.3837 65.7599 33.4557 64.8239 33.6717C63.6959 33.9357 62.6639 34.4637 61.7999 35.2077C61.7519 35.2557 61.7039 35.2797 61.6799 35.3277L62.1839 35.1117L57.1919 35.0157L56.4719 34.9917C56.2559 34.9917 56.0399 35.0877 55.9199 35.2797C55.8239 35.4717 56.0159 35.5197 56.1839 35.5437L59.8319 35.6157L61.6799 35.6397C61.9439 35.6637 62.1839 35.5917 62.3759 35.4237L62.3999 35.3757L62.4479 35.3277C62.5199 35.2557 62.4479 35.3277 62.4719 35.3037C62.8559 34.9677 63.3119 34.6797 63.7919 34.4877C64.6559 34.1277 65.5679 33.9597 66.4799 33.9837C67.1279 33.9837 67.7759 34.0797 68.3999 34.2237C68.7359 34.2717 69.0479 34.3677 69.3359 34.5117C69.4079 34.5357 69.3359 34.5117 69.3839 34.5357L69.4799 34.6077C69.5519 34.6797 69.6239 34.7277 69.6959 34.7997C69.8399 34.9437 69.9839 35.1117 70.1279 35.2797C70.8479 36.2157 71.3279 37.3437 71.7599 38.4237C72.3359 39.8877 72.8159 41.3997 73.2479 42.9117C74.1839 46.1757 74.9279 49.4877 75.5999 52.7997C75.8639 54.0477 76.1039 55.3197 76.3199 56.5677C76.4399 57.1917 76.4879 57.8397 76.6559 58.4397C76.6559 58.4637 76.6559 58.4877 76.6799 58.5357L77.1359 58.1277L69.1919 59.1357L68.0399 59.2797L68.4239 59.3757L67.0079 52.6797L64.7999 42.1197L64.2959 39.7197C64.2719 39.5997 64.1039 39.5997 64.0079 39.5997H57.4079C57.1919 39.5997 56.8799 39.7437 56.8319 39.9597L55.1999 46.6317L52.6319 57.1917L52.0319 59.5917L52.6079 59.2317H41.8559L42.1439 59.4237C42.3359 58.4157 42.5279 57.4317 42.7199 56.4237C43.1999 54.0957 43.7039 51.7677 44.2559 49.4637C44.8799 46.8477 45.5519 44.2317 46.3679 41.6397C46.7039 40.5357 47.0879 39.4557 47.5199 38.3997C47.8319 37.5837 48.2399 36.7917 48.6959 36.0717C48.7679 35.9517 48.8639 35.8557 48.9599 35.7357C49.0079 35.6877 49.0559 35.6397 49.1039 35.5917L49.1759 35.5197C49.2479 35.4477 49.1519 35.5437 49.1999 35.4957C49.2479 35.4477 49.2959 35.4237 49.3439 35.3997L49.3679 35.3757C49.2239 35.4717 49.3679 35.3757 49.3919 35.3517C49.5359 35.2797 49.6559 35.2077 49.7999 35.1357C50.2799 34.9197 50.7839 34.7757 51.2879 34.6797C52.7759 34.4877 54.2879 34.7277 55.6319 35.3517C55.7039 35.3757 55.7999 35.4237 55.8719 35.4717C56.2319 35.6637 56.9999 35.2557 56.6399 35.0397Z" fill="#3D3D3D"/>
|
||||
<path d="M53.064 34.3919C53.064 34.3919 51.24 19.7999 56.664 17.6639C64.464 14.5679 65.664 23.5199 66.408 33.8879C66.408 33.8639 57.336 36.2159 53.064 34.3919Z" fill="white"/>
|
||||
<path d="M53.4721 34.2241C53.3041 32.8081 53.2321 31.3921 53.1841 29.9761C53.1361 27.3121 53.2321 24.5761 53.9281 22.0081C54.2401 20.9041 54.6721 19.7761 55.3921 18.9121C55.6801 18.5521 56.0641 18.2401 56.4961 18.0241C56.5201 18.0001 56.5681 18.0001 56.5921 17.9761L56.8081 17.9041C57.0241 17.8321 57.2161 17.7601 57.4321 17.6881C57.7921 17.5681 58.1521 17.4961 58.5361 17.4241C59.6881 17.2081 60.8881 17.4961 61.8481 18.1921C62.8801 18.9841 63.5281 20.1841 63.9841 21.3841C64.5601 22.9921 64.9681 24.6481 65.2081 26.3281C65.5201 28.3441 65.7121 30.3841 65.8801 32.4001C65.9281 32.9281 65.9761 33.4801 66.0001 34.0081L66.4801 33.5281C65.4001 33.8161 64.2961 34.0081 63.1921 34.2001C61.0321 34.5601 58.8241 34.8241 56.6161 34.7041C55.4881 34.6801 54.3601 34.4641 53.3041 34.0561C52.9681 33.9121 52.3201 34.5121 52.7761 34.7041C54.7921 35.5441 57.1441 35.4961 59.2801 35.3281C61.2481 35.1841 63.1921 34.8721 65.1361 34.4641C65.5201 34.3681 65.9281 34.2961 66.3121 34.2001C66.5281 34.1521 66.8161 33.9841 66.7921 33.7201C66.6241 31.5601 66.4561 29.4001 66.1681 27.2401C65.9521 25.4161 65.5681 23.5921 65.0401 21.8401C64.6081 20.4961 64.0081 19.1521 63.0001 18.0961C62.1361 17.2081 60.9361 16.7041 59.6881 16.7041C58.9201 16.7041 58.1521 16.8481 57.4081 17.0881C56.7361 17.2801 56.1121 17.5681 55.5361 17.9761C54.5761 18.6961 53.9521 19.7521 53.5201 20.8561C52.5121 23.4481 52.3201 26.3521 52.3201 29.0881C52.3201 30.2641 52.3681 31.4401 52.4401 32.6161C52.4881 33.2401 52.5121 33.8641 52.6081 34.4641C52.6081 34.4881 52.6081 34.5121 52.6081 34.5601C52.7041 34.9441 53.5201 34.6081 53.4721 34.2241Z" fill="#3D3D3D"/>
|
||||
<path d="M56.3521 24.7681L56.3281 23.5201C56.3281 23.5201 53.7121 18.8401 52.1041 18.8881C50.4961 18.9361 50.4961 21.0241 51.2881 22.1521C51.7441 22.8001 52.1521 23.4481 52.5121 24.1441C52.5121 24.1441 42.5281 35.8321 46.8241 36.3361C54.8401 37.3201 56.3521 24.7681 56.3521 24.7681Z" fill="white"/>
|
||||
<path d="M56.7839 24.6718C56.7839 24.2878 56.7839 23.8798 56.7599 23.4958C56.7359 23.3278 56.6639 23.1598 56.5439 23.0158C56.0399 22.1518 55.4879 21.3358 54.8639 20.5438C54.2879 19.7998 53.5199 18.8158 52.5359 18.6238C51.9359 18.5278 51.3119 18.6958 50.8799 19.1278C50.4959 19.5358 50.2799 20.1118 50.3279 20.6878C50.3519 21.4798 50.6879 22.1038 51.1199 22.7518C51.4799 23.2798 51.7919 23.8078 52.0799 24.3598L52.1279 24.1198C51.0239 25.4158 49.9919 26.7598 48.9839 28.1278C48.1679 29.2318 47.3999 30.3838 46.7039 31.5598C46.1519 32.5438 45.5759 33.5758 45.3599 34.7038C45.2159 35.4478 45.3119 36.2638 46.1039 36.5758C46.7039 36.7918 47.4239 36.7918 48.0479 36.7438C48.7919 36.6958 49.4879 36.5278 50.1839 36.2398C52.7759 35.1358 54.3599 32.5918 55.3439 30.0718C55.7759 28.9918 56.1119 27.8878 56.3519 26.7598C56.5199 26.1358 56.6399 25.4878 56.7119 24.8398C56.7119 24.8158 56.7119 24.7918 56.7119 24.7438C56.7599 24.3358 55.8959 24.5518 55.8479 24.9358C55.6559 26.3518 55.3199 27.7438 54.8639 29.0878C54.0959 31.4158 52.8719 33.9118 50.7839 35.2798C49.6799 35.9758 48.3839 36.2878 47.1119 36.1438C46.9199 36.1438 46.7519 36.0958 46.5839 36.0238C46.4639 35.9758 46.3679 35.9038 46.2959 35.7838C46.3199 35.8318 46.2479 35.7118 46.2239 35.6638C46.1999 35.5918 46.1759 35.5198 46.1519 35.4478C46.1519 35.4718 46.1519 35.4238 46.1519 35.3758C46.1519 35.3278 46.1519 35.3038 46.1519 35.2558C46.1519 35.1598 46.1519 35.0638 46.1519 34.9678C46.2239 34.0558 46.7279 33.0718 47.1839 32.2318C47.8319 31.0798 48.5519 29.9518 49.3199 28.8718C50.4239 27.3358 51.6239 25.8958 52.7759 24.4078L52.8479 24.3358C52.8959 24.2638 52.9199 24.1678 52.8959 24.0958C52.7039 23.7118 52.4879 23.3518 52.2479 22.9918C51.8879 22.4158 51.4319 21.8878 51.2639 21.2158C51.0959 20.7358 51.1199 20.1838 51.3359 19.7278C51.4079 19.5838 51.5279 19.4638 51.6719 19.3918C51.7679 19.3678 51.8639 19.3438 51.9599 19.3438C52.0319 19.3438 52.1039 19.3438 52.1519 19.3678C52.9199 19.5838 53.5919 20.4958 54.0959 21.0958C54.6719 21.8158 55.1999 22.5598 55.6559 23.3518C55.7279 23.4718 55.7759 23.5678 55.8479 23.6878C55.8719 23.7118 55.8719 23.7358 55.8959 23.7598C55.8959 23.6398 55.9199 23.7838 55.8959 23.7598C55.8719 24.1678 55.8719 24.5518 55.9199 24.9598C55.9439 25.2958 56.8079 25.0558 56.7839 24.6718Z" fill="#3D3D3D"/>
|
||||
<path d="M52.2 20.5197C52.2 20.5197 53.064 22.1037 53.856 21.5997C54.648 21.0957 53.976 19.0077 52.296 18.8877C50.616 18.7677 50.664 20.5437 50.664 20.5437" fill="white"/>
|
||||
<path d="M51.936 20.4479C52.056 20.6639 52.1761 20.8559 52.3441 21.0479C52.6081 21.4319 52.9681 21.7439 53.4 21.9599C53.712 22.1279 54.096 22.0559 54.336 21.8159C54.504 21.5759 54.5761 21.2639 54.5521 20.9759C54.4801 20.1119 53.8081 19.2959 53.0641 18.8639C52.3921 18.4799 51.36 18.3599 50.808 18.9839C50.496 19.3439 50.3521 19.7999 50.3521 20.2799C50.3761 20.4719 50.4961 20.6399 50.6641 20.7599C50.6881 20.7839 51.0241 21.0239 51.0241 20.8559C51.0241 20.5439 51.072 20.2319 51.216 19.9679C51.528 19.3679 52.1761 19.1759 52.8001 19.2959C52.9681 19.3199 53.136 19.3919 53.2801 19.4639L53.3041 19.4879L53.328 19.5119L53.4241 19.5839C53.3521 19.5359 53.424 19.5839 53.448 19.6079C53.472 19.6319 53.5201 19.6799 53.4721 19.6319C53.4241 19.5839 53.496 19.6559 53.496 19.6559L53.5201 19.7039C53.568 19.7519 53.472 19.6319 53.496 19.6799L53.568 19.7759C53.616 19.8239 53.5441 19.7279 53.5921 19.7999C53.6161 19.8479 53.6401 19.8719 53.6641 19.9199C53.6401 19.8719 53.6881 19.9679 53.6641 19.9199L53.688 19.9679C53.712 20.0159 53.712 20.0399 53.736 20.0879C53.76 20.1359 53.7841 20.2079 53.7841 20.2559C53.9041 20.6639 53.856 21.3839 53.256 21.4079C53.184 21.4079 53.1361 21.4079 53.0641 21.3599C53.1121 21.3839 52.9921 21.3359 52.9921 21.3119C52.9921 21.2879 52.992 21.3119 53.016 21.3119L52.9441 21.2639C52.8961 21.2399 52.992 21.3119 52.968 21.2639L52.896 21.2159C52.944 21.2639 52.8721 21.1919 52.8721 21.1919L52.776 21.0959C52.848 21.1679 52.7761 21.0959 52.7521 21.0719L52.656 20.9759C52.632 20.9519 52.584 20.8559 52.608 20.9279C52.632 20.9999 52.5841 20.8799 52.5841 20.8799C52.5841 20.8799 52.536 20.8319 52.536 20.8079C52.536 20.7839 52.4641 20.7119 52.44 20.6399C52.3441 20.4479 52.176 20.3039 51.96 20.2319C51.7921 20.1359 51.888 20.3519 51.936 20.4479Z" fill="#3D3D3D"/>
|
||||
<path d="M63.4318 17.4718C63.4318 17.4718 66.3838 17.6398 66.6958 16.3918C67.0078 15.1438 65.1838 15.6958 65.1838 15.6958C65.1838 15.6958 66.9838 13.0078 63.9838 12.9838C63.9838 12.9838 66.1678 10.8238 64.0078 9.40783C61.8478 7.99183 58.1758 9.62383 58.1758 9.62383C58.1758 9.62383 57.9118 7.00783 54.9598 7.75183C52.0078 8.49583 52.9678 9.98383 52.9678 9.98383C52.9678 9.98383 51.0718 10.4398 51.1438 11.3518C51.2158 12.2638 52.7038 12.4078 52.7038 12.4078C52.7038 12.4078 53.6158 14.9038 56.1598 14.1598L59.1358 17.0158C58.7278 17.8078 58.8958 18.7918 59.5438 19.3918C60.6958 20.4478 63.8158 19.1038 63.4318 17.4718Z" fill="#3D3D3D"/>
|
||||
<path d="M63.6239 17.8079C64.4639 17.8799 65.3279 17.7839 66.1439 17.5199C66.6239 17.3279 67.0319 17.0159 67.0799 16.4879C67.1039 15.8879 66.6719 15.3599 66.0959 15.2399C65.7119 15.1919 65.3279 15.2159 64.9679 15.3359L65.5199 16.0319C65.8559 15.5519 66.0479 14.9999 66.0959 14.4239C66.0959 13.9439 65.8799 13.4639 65.4959 13.1519C65.0159 12.7199 64.3919 12.6239 63.7679 12.6239L64.3199 13.3199C64.6559 12.9839 64.9199 12.5759 65.1119 12.1439C65.4719 11.3519 65.3519 10.4399 64.7759 9.79195C63.4799 8.23195 61.2719 8.30395 59.4719 8.75995C58.9439 8.87995 58.4399 9.04795 57.9359 9.26395L58.5359 9.83995C58.4159 8.80795 57.7679 7.91995 56.8319 7.48795C55.9439 7.10395 54.9359 7.29595 54.0719 7.60795C53.4479 7.84795 52.7039 8.23195 52.5359 8.92795C52.4639 9.31195 52.5599 9.69595 52.7759 10.0079L52.7279 9.62395C52.0559 9.79195 50.8559 10.1999 50.8319 11.0159C50.8079 12.0479 52.0559 12.6479 52.9199 12.7439L52.4159 12.2399C52.6319 12.8159 52.9919 13.3199 53.4479 13.7519C54.2399 14.5199 55.3919 14.8079 56.4479 14.4719L56.1359 14.3279L59.1119 17.1839L58.8479 16.6799C58.2479 17.7599 58.8479 19.1759 59.8559 19.7999C60.8639 20.4239 62.3039 19.9919 63.1439 19.2719C63.5999 18.8639 63.9119 18.2879 63.7919 17.6639C63.7439 17.4479 63.5999 17.2799 63.4319 17.1599C63.3359 17.1119 63.0959 17.0159 63.1199 17.2079C63.3599 18.4799 61.7039 19.2719 60.6719 19.3679C60.0479 19.4159 59.4959 19.2479 59.3279 18.5999C59.2079 18.1439 59.2799 17.6639 59.4959 17.2559C59.5919 17.1119 59.3039 16.8239 59.2319 16.7519L56.8559 14.4719L56.3519 13.9919C56.3279 13.9679 56.3039 13.9439 56.2559 13.9199C56.0399 13.7519 55.9439 13.7759 55.6799 13.8479C54.9359 14.0159 54.1439 13.8959 53.5919 13.3679C53.4239 13.1999 53.2799 13.0079 53.1839 12.8159L53.1119 12.6719C53.0879 12.6239 53.0399 12.5279 53.0879 12.6239L53.0399 12.5279C52.9679 12.3359 52.7519 12.0479 52.5359 12.0239C52.2959 11.9999 52.0559 11.9519 51.8399 11.8559C51.5519 11.7359 51.3839 11.5679 51.5999 11.2319C51.9119 10.7039 52.7039 10.4399 53.2559 10.3199C53.4479 10.2719 53.2559 10.0079 53.2079 9.93595C53.3279 10.1039 53.2559 10.0079 53.2319 9.98395C53.2079 9.95995 53.2079 9.88795 53.2319 10.0079C53.2319 9.98395 53.2079 9.95995 53.2079 9.93595C53.1839 9.83995 53.1839 9.93595 53.1839 9.81595C53.1839 9.74395 53.1839 9.67195 53.1839 9.59995C53.2319 9.07195 53.7359 8.71195 54.1679 8.49595C54.9119 8.13595 55.8959 7.84795 56.7359 8.03995C56.9519 8.08795 57.1679 8.18395 57.3599 8.32795C57.4079 8.37595 57.4559 8.42395 57.4799 8.47195C57.5279 8.54395 57.5759 8.61595 57.6239 8.71195C57.7439 8.92795 57.8159 9.16795 57.8399 9.40795C57.8639 9.57595 58.1999 10.0799 58.4159 9.98395C59.4239 9.52795 60.5039 9.26395 61.6079 9.19195C62.4239 9.14395 63.3119 9.21595 64.0079 9.67195C64.7039 10.1279 64.7519 10.7759 64.4639 11.4719C64.2959 11.9279 64.0079 12.3119 63.6719 12.6479C63.4559 12.8639 64.0319 13.3199 64.2239 13.3439C64.5119 13.3439 64.7759 13.3679 65.0639 13.4639C65.1359 13.4879 65.2079 13.5119 65.2799 13.5599C65.3519 13.6079 65.3279 13.5839 65.3039 13.5599C65.3279 13.5839 65.3279 13.6079 65.3519 13.6319C65.3759 13.7039 65.3759 13.7519 65.3759 13.8239C65.3759 13.9679 65.3759 14.1119 65.3519 14.2319C65.2559 14.6399 65.0879 15.0239 64.8719 15.3599C64.7279 15.5759 65.1839 16.1279 65.4239 16.0559C65.7359 15.9359 66.0959 15.9119 66.4319 15.9599C66.4319 15.9599 66.5519 15.9839 66.5519 16.0079C66.5039 15.9839 66.4799 15.9599 66.4559 15.9359C66.3599 15.7919 66.3359 15.7439 66.3839 15.8399C66.3359 15.9119 66.3839 16.0799 66.3359 16.1759C66.2399 16.4159 66.0719 16.6079 65.8559 16.7039C65.3279 16.9679 64.7759 17.1119 64.1999 17.1119C63.9599 17.1359 63.7199 17.1359 63.5039 17.1359H63.2639H63.2159C62.8799 17.0879 63.3839 17.8079 63.6239 17.8079Z" fill="#3D3D3D"/>
|
||||
<path d="M53.3519 21.0236C51.4559 18.9596 52.9919 12.8156 52.9919 12.8156C55.1039 13.0076 58.2239 10.5596 58.2239 10.5596C57.4319 12.5996 59.6399 15.9836 59.6399 15.9836C60.3119 14.1356 62.1839 14.0156 62.1839 15.7676C62.1839 17.5196 60.5279 17.8316 60.5279 17.8316C60.5279 17.8316 61.3919 20.7596 61.2959 21.4556C61.1999 22.1516 57.7679 25.8236 56.3999 22.5596C56.3759 22.5596 55.0079 22.8236 53.3519 21.0236Z" fill="white"/>
|
||||
<path d="M53.7599 20.9759C52.9199 20.0399 52.8479 18.5519 52.8479 17.3519C52.8719 16.1279 53.0159 14.9039 53.2559 13.6799C53.3039 13.4159 53.3519 13.1519 53.4239 12.9119L53.0639 13.0799C54.3359 13.1759 55.5839 12.6239 56.6639 12.0239C57.3359 11.6639 57.9839 11.2319 58.5839 10.7759L57.7679 10.5119C57.3359 11.6639 57.7439 12.9839 58.1759 14.0639C58.4639 14.7599 58.7999 15.4319 59.2079 16.0559C59.3519 16.2719 59.9519 16.3679 60.0479 16.0799C60.2399 15.5519 60.6479 14.9039 61.2719 14.8079C61.2959 14.8079 61.3199 14.8079 61.3679 14.8079C61.2719 14.8079 61.3679 14.8319 61.3439 14.8079C61.4159 14.8559 61.4879 14.9279 61.5359 14.9999C61.6799 15.2639 61.7519 15.5519 61.7279 15.8639C61.7039 16.4399 61.4159 16.9679 60.9599 17.3039C60.8159 17.3999 60.6479 17.4959 60.4799 17.5439L60.3119 17.5919C60.2399 17.6159 60.2399 17.6159 60.3359 17.5919C60.2399 17.6159 60.0479 17.6639 60.0959 17.8079C60.2399 18.2879 60.3839 18.7919 60.5039 19.2959C60.5999 19.6799 60.6959 20.0639 60.7679 20.4719C60.8399 20.7599 60.8639 21.0479 60.8639 21.3359C60.8159 21.7199 60.3599 22.1759 60.0719 22.4639C59.6159 22.9679 59.0399 23.3519 58.3919 23.5919C58.2719 23.6399 58.1279 23.6639 57.9839 23.6639C57.8639 23.6639 57.7439 23.6399 57.6479 23.5919C57.2639 23.3999 57.0239 22.9679 56.8559 22.5839C56.7119 22.3919 56.4479 22.2959 56.2079 22.3439H56.1599C56.0399 22.3439 56.2559 22.3439 56.0879 22.3439C55.9439 22.3439 55.7999 22.3199 55.6559 22.2719C54.9119 22.0559 54.2879 21.5279 53.7599 20.9759C53.5919 20.8319 53.3759 20.7599 53.1599 20.7839C53.0399 20.8079 52.7999 20.9279 52.9439 21.0719C53.5919 21.8159 54.4079 22.3679 55.3199 22.6559C55.7279 22.7999 56.1359 22.8239 56.5679 22.7759L55.9439 22.5359C56.3279 23.4239 56.9999 24.0959 58.0079 24.1439C58.8239 24.1919 59.5919 23.7839 60.2399 23.3039C60.7919 22.8959 61.2719 22.3919 61.6079 21.8159C61.8959 21.2639 61.6319 20.5199 61.5119 19.9439C61.3439 19.2479 61.1759 18.5519 60.9599 17.8559L60.7199 18.0959C61.5359 17.9519 62.2319 17.3519 62.4959 16.5599C62.6879 15.9839 62.6639 15.2159 62.2559 14.7599C61.8239 14.3279 61.1999 14.1839 60.6239 14.3519C59.9039 14.5679 59.4239 15.2159 59.1839 15.8879L60.0239 15.9119C59.6399 15.3119 59.3279 14.6879 59.0639 14.0399C58.6319 12.9839 58.2479 11.7359 58.6559 10.6319C58.7759 10.3439 58.0079 10.2479 57.8399 10.3679C57.2879 10.7999 56.7119 11.1839 56.0879 11.5199C55.1519 12.0719 53.9999 12.6479 52.8719 12.5519C52.7519 12.5519 52.5359 12.5759 52.5119 12.7199C52.3199 13.4639 52.1999 14.2079 52.1039 14.9759C51.9119 16.3679 51.8159 17.8079 52.0799 19.1999C52.1759 19.8959 52.4639 20.5199 52.9199 21.0719C53.0879 21.2159 53.3039 21.2879 53.5199 21.2639C53.6639 21.2399 53.9039 21.1439 53.7599 20.9759Z" fill="#3D3D3D"/>
|
||||
<path d="M55.6321 15.6478C55.6561 15.8158 55.5601 15.9598 55.3921 16.0078C55.3681 16.0078 55.3681 16.0078 55.3441 16.0078C55.0081 16.0318 54.9841 15.6238 55.2481 15.5278C55.3681 15.4558 55.5121 15.4798 55.5841 15.5998C55.6321 15.5998 55.6321 15.6238 55.6321 15.6478Z" fill="#3D3D3D"/>
|
||||
<path d="M53.7359 15.7679C53.7599 15.9359 53.6639 16.0799 53.4959 16.1279C53.4719 16.1279 53.4719 16.1279 53.4479 16.1279C53.1119 16.1519 53.0879 15.7439 53.3519 15.6479C53.4719 15.5759 53.6159 15.5999 53.6879 15.7199C53.7359 15.7439 53.7359 15.7679 53.7359 15.7679Z" fill="#3D3D3D"/>
|
||||
<path d="M55.6799 19.2238C55.6799 19.2238 52.3439 21.7438 50.6639 20.2318C48.9839 18.7198 51.0719 16.3678 53.9759 16.8238" fill="white"/>
|
||||
<path d="M55.32 18.9596C54.408 19.6556 53.28 20.2556 52.128 20.4236C51.744 20.4956 51.36 20.4716 51 20.3516C50.904 20.3276 50.832 20.2796 50.736 20.2316C50.616 20.1836 50.76 20.1116 50.88 20.3516C50.856 20.3276 50.832 20.2796 50.784 20.2556C50.664 20.1116 50.568 19.9436 50.496 19.7756C50.232 19.0556 50.64 18.3356 51.192 17.8796C52.056 17.1596 53.232 16.9676 54.312 17.1356C54.384 17.1356 54.12 16.9196 54.096 16.8956C53.976 16.7996 53.784 16.6076 53.64 16.5836C52.584 16.4396 51.432 16.6076 50.568 17.2556C49.944 17.7356 49.488 18.5276 49.824 19.3196C50.04 19.7516 50.352 20.1356 50.76 20.3996C51.12 20.7116 51.552 20.9036 52.008 20.9996C52.872 21.1196 53.76 20.8076 54.528 20.4476C55.056 20.1836 55.56 19.8956 56.04 19.5356C56.016 19.5356 55.44 18.8636 55.32 18.9596Z" fill="#3D3D3D"/>
|
||||
<path d="M57.4799 19.0797L58.0319 18.8637C58.0799 18.8637 58.1039 18.8397 58.1279 18.8157C58.1519 18.7917 58.1759 18.7437 58.1759 18.7197C58.1759 18.6717 58.1759 18.6237 58.1759 18.5757C58.1759 18.5277 58.1519 18.4797 58.1279 18.4317C58.0799 18.3357 58.0079 18.2397 57.9119 18.1677L57.8159 18.1197C57.7679 18.0957 57.7199 18.0957 57.6479 18.0957L57.0959 18.3117C57.0479 18.3117 57.0239 18.3357 56.9999 18.3597C56.9759 18.3837 56.9519 18.4317 56.9519 18.4557C56.9519 18.5037 56.9519 18.5517 56.9519 18.5997C56.9519 18.6477 56.9759 18.6957 56.9999 18.7437C57.0479 18.8397 57.1199 18.9357 57.2159 19.0077L57.3119 19.0557C57.3839 19.0797 57.4319 19.1037 57.4799 19.0797Z" fill="#3D3D3D"/>
|
||||
<path d="M61.2478 29.232C61.2478 29.232 59.2078 25.272 59.5918 23.376C59.7598 22.296 60.5758 21.456 61.6318 21.24C61.6318 21.24 60.6478 19.536 62.2798 18.984C63.9118 18.432 64.8958 19.992 64.8958 19.992C64.8958 19.992 65.9518 19.296 66.0958 20.64C66.0958 20.64 67.3198 20.472 67.2958 21.936C67.2718 23.4 66.4558 25.032 65.3518 25.464C65.3518 25.464 75.3118 33.696 70.3198 36.288C66.8158 38.064 61.2478 29.232 61.2478 29.232Z" fill="white"/>
|
||||
<path d="M61.6559 29.0401C61.1759 28.1281 60.7919 27.1921 60.4559 26.2081C59.9999 24.8641 59.5199 23.1121 60.6479 21.9361C60.7439 21.8401 60.8639 21.7441 60.9839 21.6721C61.0319 21.6481 61.0799 21.6001 61.1279 21.5761C61.1519 21.5521 61.2959 21.5041 61.1999 21.5281L61.3679 21.4801C61.4399 21.4561 61.2959 21.5041 61.3919 21.4801C61.4159 21.4801 61.4639 21.4561 61.4879 21.4561C61.6079 21.4321 62.1359 21.2161 62.0399 21.0241C61.7519 20.4961 61.4879 19.4641 62.2079 19.1761C63.0479 18.8401 64.0319 19.4401 64.4879 20.1601C64.5839 20.3281 64.9679 20.1361 65.0879 20.0641C65.2079 19.9921 64.9919 20.0881 65.1359 20.0401C65.0159 20.0641 65.1839 20.0401 65.1359 20.0401C65.1839 20.0161 65.1839 20.0161 65.2559 20.0161C65.5919 20.0641 65.6879 20.4961 65.7119 20.7841C65.7119 20.8321 65.8559 20.8561 65.8799 20.8321C66.0479 20.8081 66.2159 20.8321 66.3599 20.9041C66.7919 21.0961 66.9119 21.5761 66.9119 22.0081C66.8879 22.6801 66.7439 23.3281 66.4559 23.9281C66.2399 24.3841 65.9039 24.9601 65.3999 25.1761C65.3039 25.2241 64.7999 25.4641 64.9919 25.6081C65.8799 26.3521 66.7199 27.1441 67.5359 27.9841C68.9039 29.3761 70.3199 30.9841 71.0159 32.8321C71.2799 33.5281 71.4479 34.3201 71.1599 35.0401C71.0159 35.3761 70.7999 35.6641 70.5119 35.8561C70.2719 36.0721 69.9599 36.1921 69.6239 36.1921C68.7119 36.2401 67.8479 35.7361 67.1279 35.2321C66.2159 34.5601 65.3759 33.7921 64.6319 32.9521C63.5519 31.7281 62.5679 30.4321 61.6799 29.0641C61.6799 29.0881 61.6799 29.0641 61.6559 29.0401C61.5119 28.8001 60.7199 29.2321 60.8399 29.4241C61.6319 30.6721 62.5199 31.8481 63.4799 32.9761C64.2479 33.8881 65.0879 34.7281 66.0239 35.4721C66.7919 36.0721 67.7279 36.6481 68.7119 36.7441C69.7439 36.8161 70.7519 36.4081 71.4479 35.6401C71.9999 35.0401 72.2159 34.2481 72.0719 33.4561C71.9279 32.5201 71.4719 31.6561 70.9439 30.8641C70.3439 29.9761 69.6959 29.1121 68.9519 28.3201C68.3039 27.6241 67.6319 26.9281 66.9359 26.2801C66.5759 25.8961 66.1679 25.5361 65.7599 25.2241L65.7119 25.1761L65.3039 25.6081C66.7679 25.0081 67.6079 23.4481 67.7039 21.9121C67.7279 21.3601 67.6559 20.7601 67.1039 20.4721C66.8639 20.3521 66.5759 20.3041 66.3119 20.3281L66.4799 20.3761C66.4079 19.8721 66.1679 19.4641 65.6399 19.4881C65.3039 19.5121 64.9679 19.6321 64.7039 19.8241L65.3039 19.7281C64.8719 19.0321 64.1279 18.6001 63.3359 18.5521C62.2079 18.5041 60.7919 19.2241 60.9599 20.5201C61.0079 20.8081 61.1039 21.1201 61.2479 21.3841L61.7999 20.9521C60.4799 21.1921 59.4479 22.2241 59.1839 23.5681C59.0639 24.3121 59.2319 25.1041 59.4239 25.8001C59.6399 26.5921 59.9279 27.3601 60.2639 28.1281C60.4559 28.5601 60.6479 28.9921 60.8639 29.4001C60.9599 29.6641 61.7759 29.2561 61.6559 29.0401Z" fill="#3D3D3D"/>
|
||||
<path d="M62.3038 20.7361L62.3758 20.6881C62.3518 20.7121 62.3038 20.7361 62.2798 20.7601L62.1838 20.8081L62.1358 20.8321L62.1118 20.8561C62.0878 20.8801 62.2078 20.8081 62.1598 20.8321L62.0158 20.9041L61.9198 20.9281C61.8478 20.9521 61.8958 20.9281 61.9198 20.9281C61.9438 20.9281 61.9918 20.9041 61.9198 20.9281C61.8718 20.9521 61.7998 20.9521 61.7278 20.9761C61.7758 20.9761 61.8958 20.9521 61.7278 20.9761H61.6318C61.5118 20.9761 61.4158 21.0001 61.3198 21.0721C61.2718 21.1201 61.1758 21.1921 61.1998 21.2641C61.2238 21.4561 61.5118 21.4801 61.6558 21.4801C62.1838 21.4801 62.6878 21.2881 63.0958 20.9521C63.1438 20.9041 63.1678 20.8321 63.1198 20.7601C63.0718 20.6881 62.9998 20.6401 62.9038 20.6161C62.7118 20.5441 62.4718 20.5921 62.3038 20.7361Z" fill="#3D3D3D"/>
|
||||
<path d="M66.5281 21.4556C66.5521 21.3356 66.5761 21.2156 66.6001 21.1196C66.6241 20.8316 66.5521 20.5436 66.4321 20.2796C66.3841 20.1836 66.2881 20.1356 66.1921 20.0876C66.0721 20.0396 65.9521 20.0396 65.8561 20.0636C65.7601 20.0876 65.6641 20.1356 65.6161 20.2076C65.5681 20.2796 65.5681 20.3756 65.6161 20.4476C65.6401 20.4956 65.6641 20.5436 65.6881 20.5916L65.6641 20.5196C65.7121 20.6396 65.7361 20.7836 65.7361 20.9276V20.8316C65.7361 20.9996 65.7121 21.1676 65.6641 21.3116C65.6401 21.3836 65.7121 21.5036 65.7601 21.5516C65.8321 21.6236 65.9521 21.6716 66.0481 21.6956C66.1681 21.7196 66.2641 21.6956 66.3841 21.6476L66.4561 21.5996C66.4801 21.5756 66.5041 21.5276 66.5281 21.4556Z" fill="#3D3D3D"/>
|
||||
<path d="M65.2321 20.9279C65.2801 20.8319 65.3281 20.7119 65.3281 20.6159C65.3521 20.3039 65.2561 19.9919 65.0881 19.7519C65.0161 19.6559 64.9441 19.5599 64.8241 19.5119C64.7281 19.4639 64.6321 19.4399 64.5361 19.4399C64.4641 19.4399 64.3921 19.4879 64.3921 19.5599C64.3921 19.6559 64.4161 19.7279 64.4641 19.7999L64.4881 19.8479L64.4401 19.7519C64.4881 19.8239 64.5121 19.9199 64.5361 19.9919L64.5121 19.9199C64.5361 20.0159 64.5601 20.1119 64.5601 20.2079V20.1359C64.5601 20.2319 64.5361 20.3279 64.5121 20.4239L64.5361 20.3519L64.5121 20.3759C64.4161 20.5439 64.5841 20.7599 64.7281 20.8559C64.8241 20.9279 64.9201 20.9759 65.0161 20.9999C65.0881 20.9759 65.1841 20.9759 65.2321 20.9279Z" fill="#3D3D3D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 710 B |
|
After Width: | Height: | Size: 518 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.0873 8.30978L11.0875 8.31012C11.1113 8.34641 11.1351 8.38179 11.1592 8.41711L11.1594 8.41737C11.2451 8.54266 11.3029 8.59562 11.3454 8.62673C11.3953 8.66332 11.449 8.68955 11.5788 8.74858C11.579 8.74865 11.5791 8.74873 11.5793 8.7488L11.3723 9.20394C11.482 9.25367 11.6188 9.31641 11.8022 9.42061L11.0873 8.30978ZM11.0873 8.30978C11.0816 8.30113 11.0757 8.29217 11.0696 8.28293C10.9686 8.1287 10.8161 7.89589 10.5732 7.74247C10.2857 7.56086 9.94975 7.52779 9.56335 7.58904L9.56325 7.58906C8.9654 7.68395 8.54216 7.79432 8.25815 7.97251C8.10074 8.07127 7.97809 8.19496 7.8931 8.34905C7.81281 8.4946 7.78266 8.63869 7.76538 8.7428L7.76534 8.7428L7.76443 8.74872L7.74837 8.85325L7.74836 8.85325L7.74787 8.85653L7.73167 8.9668L7.7314 8.96868C7.7002 9.18682 7.67134 9.41391 7.70198 9.62378C7.73871 9.87537 7.85158 10.0645 8.01053 10.2315L8.01083 10.2318C8.42674 10.6682 8.75267 11.0368 8.99063 11.3372C9.23531 11.6461 9.36306 11.8535 9.41184 11.9722L11.0873 8.30978ZM3.30347 4.30897L3.70871 3.88628C4.79004 2.75842 6.31341 2.05523 8.00016 2.05523C8.85852 2.05523 9.67565 2.23748 10.4139 2.56586L11.2407 2.9336L10.4893 3.43786C10.3033 3.56274 10.0724 3.71833 9.86491 3.87411C9.66127 4.02702 9.52712 4.14622 9.4688 4.21571C9.46067 4.23442 9.45081 4.25892 9.43537 4.29727L9.43501 4.29815C9.40439 4.3742 9.35843 4.48834 9.29746 4.60357C9.18947 4.8077 8.94782 5.18353 8.47956 5.24229L3.30347 4.30897ZM3.30347 4.30897L3.78441 4.64299M3.30347 4.30897L3.78441 4.64299M3.78441 4.64299C3.83064 4.67509 3.87238 4.71979 3.90421 4.79132L3.90433 4.79159M3.78441 4.64299L3.90433 4.79159M3.90433 4.79159C3.99092 4.98589 3.99702 5.19545 3.99702 5.48477L3.99701 5.49433C3.99687 5.59678 3.9967 5.72249 4.00737 5.84302C4.01835 5.96704 4.04325 6.12237 4.11377 6.27332L4.11404 6.27389M3.90433 4.79159L4.11404 6.27389M7.46424 6.44598C7.68568 6.70716 7.65115 7.04779 7.59518 7.24921L7.59515 7.24931C7.55233 7.40327 7.48731 7.52878 7.42362 7.6234C7.36743 7.70689 7.29326 7.79434 7.21057 7.85368L6.94902 8.0414L6.66989 7.88099C6.6033 7.84271 6.54969 7.7949 6.52102 7.76839C6.48626 7.73624 6.45236 7.70139 6.42262 7.66959C6.36335 7.60619 6.30298 7.53586 6.26043 7.48623C6.15275 7.3611 6.05686 7.25097 5.95329 7.15963C5.85044 7.06892 5.76685 7.02164 5.69833 7.00261L7.46424 6.44598ZM7.46424 6.44598C7.37414 6.33965 7.30231 6.13796 7.2792 5.87736C7.25608 5.61667 7.29092 5.40685 7.31457 5.34275L7.31467 5.34248C7.3282 5.30575 7.34164 5.29394 7.35017 5.28738C7.36315 5.2774 7.39176 5.26103 7.45029 5.24773C7.58308 5.21756 7.75336 5.22482 7.97574 5.23927L7.97605 5.23929C7.98427 5.23982 7.99275 5.24037 8.00144 5.24094C8.13575 5.24972 8.3229 5.26195 8.47954 5.24229L7.46424 6.44598ZM4.11404 6.27389C4.1908 6.43767 4.31461 6.54487 4.41799 6.61295M4.11404 6.27389L4.41799 6.61295M4.41799 6.61295C4.52266 6.68187 4.6363 6.73039 4.73743 6.76616M4.41799 6.61295L4.73743 6.76616M4.73743 6.76616C4.93134 6.83474 5.15474 6.88154 5.32756 6.91775M4.73743 6.76616L5.32756 6.91775M5.32756 6.91775L5.34079 6.92052M5.32756 6.91775L5.34079 6.92052M5.34079 6.92052L5.34124 6.92061L5.34079 6.92052ZM10.7467 8.69961C10.7206 8.66154 10.6952 8.62354 10.6697 8.58481L10.6695 8.58457C10.4394 8.2351 10.2732 7.98276 9.64163 8.08287L10.7467 8.69961ZM8.00016 1.83301C11.4059 1.83301 14.1668 4.59392 14.1668 7.99967C14.1668 11.4054 11.4059 14.1663 8.00016 14.1663C4.59441 14.1663 1.8335 11.4054 1.8335 7.99967C1.8335 4.59392 4.59441 1.83301 8.00016 1.83301Z" fill="black" stroke="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.37996 30.6553L12.1942 11.303C12.3434 10.5459 13.0074 10 13.7791 10H33.1121C34.131 10 34.8955 10.9317 34.6965 11.931L30.5832 32.5832L29.9272 36.144L25.5699 32.5832H9.96489C8.94733 32.5832 8.18319 31.6537 8.37996 30.6553Z" fill="#5D7BE7"/>
|
||||
<path d="M13.2989 36.4171L17.1132 17.0648C17.2624 16.3076 17.9264 15.7617 18.6981 15.7617H38.0311C39.05 15.7617 39.8144 16.6934 39.6154 17.6927L35.761 37.045C35.6105 37.8007 34.9472 38.3449 34.1767 38.3449H14.8838C13.8663 38.3449 13.1021 37.4154 13.2989 36.4171Z" fill="#48DECC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.9325 15.7617L30.5824 32.582L30.174 34.7991C30.0627 35.4034 29.3443 35.667 28.8686 35.2782L25.5692 32.582H14.0547L17.1131 17.0648C17.2623 16.3076 17.9263 15.7617 18.698 15.7617H33.9325Z" fill="#3C53A5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 890 B |
|
After Width: | Height: | Size: 446 B |
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,444 @@
|
||||
{
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "Passwort zurücksetzen"
|
||||
},
|
||||
"user-invitation": {
|
||||
"title": "Konto erstellen"
|
||||
}
|
||||
},
|
||||
"main": {
|
||||
"profile": {
|
||||
"profile-info": "Profil-Informationen",
|
||||
"change-password": "Passwort ändern",
|
||||
"button": {
|
||||
"delete-account": "Konto löschen"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"issue-cell": {
|
||||
"create-issue": "Problem erstellen"
|
||||
},
|
||||
"download": {
|
||||
"loading": "Herunterladen...",
|
||||
"success": "Download abgeschlossen",
|
||||
"error": "Download fehlgeschlagen"
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"button": {
|
||||
"create-channel": "Kanal erstellen"
|
||||
},
|
||||
"same-key": "Geben Sie den gleichen Wert wie den Schlüssel ein",
|
||||
"feedback-request-code": "Feedback-Anforderungscode",
|
||||
"field-mgmt": {
|
||||
"preview": "Vorschau"
|
||||
},
|
||||
"dialog": {
|
||||
"delete-option": {
|
||||
"title": "Option löschen",
|
||||
"description": "Dies wird keine Auswirkungen auf Optionen in vorherigem Feedback haben."
|
||||
},
|
||||
"add-field": {
|
||||
"title": "Feld hinzufügen"
|
||||
},
|
||||
"edit-field": {
|
||||
"title": "Feld bearbeiten"
|
||||
},
|
||||
"invite-user": {
|
||||
"title": "Benutzer einladen"
|
||||
}
|
||||
}
|
||||
},
|
||||
"create-project": {
|
||||
"title": "Projekt erstellen",
|
||||
"complete-title": "Projekt erstellt",
|
||||
"error-member": "Benutzerinformationen existieren nicht.",
|
||||
"continue-channel-creation": "Ein Kanal muss erstellt werden, bevor das User Feedback genutzt werden kann.\nMöchten Sie mit der Erstellung eines Kanals fortfahren?",
|
||||
"guide": {
|
||||
"invalid-member": "Ungültige Mitgliederliste erkannt.",
|
||||
"invalid-role": "Ungültige Rolleninformationen erkannt.",
|
||||
"invalid-project": "Ungültige Projektinformationen erkannt."
|
||||
},
|
||||
"alert-description": "Möchten Sie fortfahren, um einen Channel zu erstellen?"
|
||||
},
|
||||
"create-channel": {
|
||||
"title": "Kanal erstellen",
|
||||
"complete-title": "Kanal erstellt",
|
||||
"guide": {
|
||||
"invalid-channel": "Ungültige Kanalinformationen erkannt."
|
||||
},
|
||||
"alert-description": "Herzlichen Glückwunsch! Sie sind jetzt bereit, richtig zu beginnen."
|
||||
}
|
||||
},
|
||||
"header": {
|
||||
"profile": "Profil",
|
||||
"sign-out": "Abmelden"
|
||||
},
|
||||
"button": {
|
||||
"setting": "Einstellungen",
|
||||
"back": "Zurück",
|
||||
"sign-in": "Anmelden",
|
||||
"sign-up": "Registrieren",
|
||||
"save": "Speichern",
|
||||
"create": "{{name}} erstellen",
|
||||
"cancel": "Abbrechen",
|
||||
"delete": "Löschen",
|
||||
"register": "Registrieren",
|
||||
"select-cancel": "Auswahl aufheben",
|
||||
"reset": "Zurücksetzen",
|
||||
"confirm": "OK",
|
||||
"get-out": "Verlassen",
|
||||
"previous": "Vorherige",
|
||||
"next": "Nächste",
|
||||
"complete": "Abschließen",
|
||||
"next-time": "Später",
|
||||
"start": "Starten",
|
||||
"generate": "Generieren"
|
||||
},
|
||||
"text": {
|
||||
"issue": {
|
||||
"init": "Neu",
|
||||
"onReview": "In Überprüfung",
|
||||
"inProgress": "In Bearbeitung",
|
||||
"resolved": "Gelöst",
|
||||
"pending": "Ausstehend"
|
||||
},
|
||||
"webhook-type": {
|
||||
"FEEDBACK_CREATION": "Feedback erstellt",
|
||||
"ISSUE_CREATION": "Problem erstellt",
|
||||
"ISSUE_STATUS_CHANGE": "Problemstatus geändert",
|
||||
"ISSUE_ADDITION": "Problem hinzugefügt"
|
||||
},
|
||||
"date": {
|
||||
"today": "Heute",
|
||||
"yesterday": "Gestern",
|
||||
"before-days": "{{day, number}} Tagen",
|
||||
"entire-period": "Gesamtzeitraum",
|
||||
"last-days": "Letzten {{day, number}} Tagen",
|
||||
"date-range-over-max-days": "Anfragezeitraum ist auf {{maxDays}} Tage begrenzt"
|
||||
},
|
||||
"guide": "Richtlinien",
|
||||
"days": "{{days}} Tage"
|
||||
},
|
||||
"dialog": {
|
||||
"continue": {
|
||||
"title": "Fortfahren?",
|
||||
"description": "Ein {{type}} wird gerade erstellt. Möchten Sie fortfahren? (Wenn Sie von vorne anfangen, gehen alle bisherigen Informationen verloren.)",
|
||||
"button": {
|
||||
"continue": "Fortfahren",
|
||||
"restart": "Neu starten"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dashboard-card": {
|
||||
"total-feedback": {
|
||||
"title": "Gesamtes Feedback",
|
||||
"description": "Gesamtanzahl des Feedbacks in einem bestimmten Zeitraum ({{targetDate}})."
|
||||
},
|
||||
"total-issue": {
|
||||
"title": "Gesamtanzahl der Probleme",
|
||||
"description": "Gesamtanzahl der registrierten Probleme in einem bestimmten Zeitraum ({{targetDate}})."
|
||||
},
|
||||
"issue-ratio": {
|
||||
"title": "Registrierungsrate von Problemen",
|
||||
"description": "Prozentsatz des Feedbacks mit registrierten Problemen ({{targetDate}})."
|
||||
},
|
||||
"today-feedback": {
|
||||
"title": "Heutiges Feedback",
|
||||
"description": "Feedback von heute ({{targetDate}}).\nDie Zuwachs-/Abnahmerate im Vergleich zum vorherigen Zeitraum. ({{compareDate}})"
|
||||
},
|
||||
"yesterday-feedback": {
|
||||
"title": "Gestriges Feedback",
|
||||
"description": "Feedback von gestern ({{targetDate}}).\nDie Zuwachs-/Abnahmerate im Vergleich zum vorherigen Zeitraum. ({{compareDate}})"
|
||||
},
|
||||
"n-days-feedback": {
|
||||
"title": "Feedback der letzten {{n}} Tage",
|
||||
"description": "Feedback der letzten {{n}} Tage ({{targetDate}}).\nDie Zuwachs-/Abnahmerate im Vergleich zum vorherigen Zeitraum. ({{compareDate}})"
|
||||
},
|
||||
"today-issue": {
|
||||
"title": "Heutige Probleme",
|
||||
"description": "Heute gemeldete Probleme ({{targetDate}}).\nDie Zuwachs-/Abnahmerate im Vergleich zum vorherigen Zeitraum. ({{compareDate}})"
|
||||
},
|
||||
"yesterday-issue": {
|
||||
"title": "Gestrige Probleme",
|
||||
"description": "Gestern gemeldete Probleme ({{targetDate}}).\nDie Zuwachs-/Abnahmerate im Vergleich zum vorherigen Zeitraum. ({{compareDate}})"
|
||||
},
|
||||
"n-days-issue": {
|
||||
"title": "Probleme der letzten {{n}} Tage",
|
||||
"description": "In den letzten {{n}} Tagen gemeldete Probleme ({{targetDate}}).\nDie Zuwachs-/Abnahmerate im Vergleich zum vorherigen Zeitraum. ({{compareDate}})"
|
||||
}
|
||||
},
|
||||
"chart": {
|
||||
"feedback-trend": {
|
||||
"title": "Feedback-Trends",
|
||||
"description": "Zeigt den Trend des erhaltenen Feedbacks über einen bestimmten Zeitraum."
|
||||
},
|
||||
"issue-trend": {
|
||||
"title": "Problem-Trends",
|
||||
"description": "Zeigt den Trend der gemeldeten Probleme über einen bestimmten Zeitraum."
|
||||
},
|
||||
"issue-status-count": {
|
||||
"title": "Übersicht über den Status von Problemen",
|
||||
"description": "Zeigt den Status aller Probleme an. (gesamter Zeitraum)"
|
||||
},
|
||||
"issue-rank": {
|
||||
"title": "Top-Probleme",
|
||||
"description": "Listet die am häufigsten gemeldeten Probleme auf. (gesamter Zeitraum)"
|
||||
},
|
||||
"issue-comparison": {
|
||||
"title": "Vergleich von Problemen",
|
||||
"description": "Vergleicht den Trend des Feedbacks für ausgewählte Probleme."
|
||||
}
|
||||
},
|
||||
"popover": {
|
||||
"select-issue": {
|
||||
"max-issue-count": "Es können bis zu fünf Probleme ausgewählt werden."
|
||||
}
|
||||
},
|
||||
"tooltip": {
|
||||
"issue-feedback-count": "Anzahl des Feedbacks, das mit diesem Problem verbunden ist.",
|
||||
"feedback-date-picker-button": "Suche nach Daten basierend auf dem Feedback-Erzeugungsdatum.",
|
||||
"issue-date-picker-button": "Suche nach Daten basierend auf dem Problem-Erzeugungsdatum.",
|
||||
"dashboard-date-picker-button": "Suchen Sie Daten basierend auf dem Feedback-Generation oder Ausgabe Registrierungsdatum."
|
||||
},
|
||||
"tenant-setting-menu": {
|
||||
"tenant-info": "Mandanten-Informationen",
|
||||
"sign-up-mgmt": "Anmeldungs- und Registrierungsverwaltung",
|
||||
"user-mgmt": "Benutzer-Verwaltung"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Kanal-Informationen",
|
||||
"field-mgmt": "Feld-Verwaltung",
|
||||
"image-mgmt": "Bild-Verwaltung",
|
||||
"delete-channel": "Kanal löschen"
|
||||
},
|
||||
"modal": {
|
||||
"image-preview": {
|
||||
"title": "Bildvorschau"
|
||||
},
|
||||
"save-field": {
|
||||
"title": "Speichern von Feldmanagement",
|
||||
"description": "Möchten Sie zusätzliche oder modifizierte Feldinformationen speichern?"
|
||||
}
|
||||
},
|
||||
"help-card": {
|
||||
"project-info": "Project bezeichnet das Produkt, für das Feedback gesammelt werden soll. Bitte geben Sie Informationen unter Berücksichtigung des Produkts ein, für das Sie Feedback verwalten möchten.",
|
||||
"member": "Sie können Member registrieren und verwalten, die am Project teilnehmen werden.",
|
||||
"api-key": "Dies ist der Bildschirm zur Verwaltung des User Feedback API Keys. Bitte generieren und verwenden Sie einen Key zur Nutzung der API. Weitere Details finden Sie in der API <docs>Docs</docs>.",
|
||||
"issue-tracker": "Dies ist der Bildschirm zum Einrichten der Verbindung zwischen User Feedback und Issue Tracking System. Bitte geben Sie die Informationen für das von Ihnen verwendete Issue Tracking System ein.",
|
||||
"channel-info": "Channel ist eine Einheit, die Feedback-Sammelpfade oder Sammelmethoden unterscheidet. Bitte geben Sie Informationen unter Berücksichtigung der Channel-Eigenschaften ein.",
|
||||
"field": "Sie können Feedback-Daten, die im Channel gesammelt werden sollen, in Field-Einheiten definieren. Bitte fügen Sie Fields unter Berücksichtigung des Datentyps und der Eigenschaften hinzu.",
|
||||
"image-config": "Beim Sammeln von Feedback im Image-Format können Sie hier die Image Storage-Integration einrichten und die Whitelist für Image URL-Domains konfigurieren. Weitere Details finden Sie in der Image <docs>Docs</docs>.",
|
||||
"field-preview": "Bietet eine Vorschau darauf, wie Ihr Feedback basierend auf den registrierten Field-Informationen aussehen wird. Die Vorschau verwendet Beispieldaten zur Veranschaulichung.",
|
||||
"webhook": "Dies ist der Bildschirm, auf dem Sie Webhook-Integration entsprechend den in User Feedback auftretenden Event-Triggern einrichten können. Weitere Details finden Sie in der Webhook <docs>Docs</docs>.",
|
||||
"ai-setting": "Dies ist der Bildschirm zur Einrichtung der Integration von Generative AI. Um AI-Funktionen nutzen zu können, müssen erforderliche Informationen eingegeben werden.",
|
||||
"ai-usage": "Dies ist der Bildschirm zur Überprüfung und Verwaltung der Token-Nutzung im Zusammenhang mit der Nutzung von AI-Funktionen.",
|
||||
"ai-field-template": "Dies ist der Bildschirm zur Definition des Verhaltens von AI-Feldern. Sie können Anweisungen über Vorlagen eingeben und die erweiterten Einstellungen anpassen.",
|
||||
"ai-issue-recommendation": "Dies ist der Bildschirm zur Einrichtung der AI-Issue-Empfehlungsfunktion. Nach der detaillierten Konfiguration pro Channel können Sie die AI-Issue-Empfehlungsfunktion nutzen."
|
||||
},
|
||||
"hint": {
|
||||
"required": "Erforderlich",
|
||||
"max-length": "Bitte geben Sie nicht mehr als {{length}} Zeichen ein.",
|
||||
"name-already-exists": "Der Name '{{name}}' wird bereits verwendet.",
|
||||
"invalid-domain": "Bitte verwenden Sie ein gültiges Domain-Format.",
|
||||
"image-format": "Das Format für die Eingabe der Bild-URL."
|
||||
},
|
||||
"title-box": {
|
||||
"image-storage-integration": "Bild-Speicher-Integration"
|
||||
},
|
||||
"v2": {
|
||||
"auth": {
|
||||
"sign-up": {
|
||||
"title": "Konto erstellen",
|
||||
"button": {
|
||||
"request-auth-code": "Code anfordern",
|
||||
"verify-auth-code": "Code überprüfen"
|
||||
},
|
||||
"reset-password": {
|
||||
"title": "Passwort zurücksetzen",
|
||||
"button": { "send-email": "E-Mail senden" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "Passwort zurücksetzen"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"name": {
|
||||
"create": "{{name}} erstellen",
|
||||
"delete": "{{name}} löschen",
|
||||
"register": "{{name}} registrieren",
|
||||
"add": "{{name}} hinzufügen"
|
||||
},
|
||||
"create": "Erstellen",
|
||||
"delete": "Löschen",
|
||||
"register": "Registrieren",
|
||||
"save": "Speichern",
|
||||
"cancel": "Abbrechen",
|
||||
"out": "Beenden",
|
||||
"confirm": "Bestätigen",
|
||||
"next": "Weiter",
|
||||
"previous": "Zurück",
|
||||
"addFilter": "Filter hinzufügen",
|
||||
"edit": "Bearbeiten",
|
||||
"process-ai-test": "AI Test ausführen",
|
||||
"setting": "Einstellungen"
|
||||
},
|
||||
"project-setting-menu": {
|
||||
"project-info": "Project-Informationen",
|
||||
"member-mgmt": "Member-Verwaltung",
|
||||
"role-mgmt": "Role-Verwaltung",
|
||||
"api-key-mgmt": "API Key-Verwaltung",
|
||||
"issue-tracker-mgmt": "Issue Tracker-Verwaltung",
|
||||
"webhook-integration": "Webhook-Integration",
|
||||
"generative-ai-setting": "Generative AI-Integration"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel-Informationen",
|
||||
"field-mgmt": "Field-Verwaltung",
|
||||
"image-mgmt": "Image-Verwaltung",
|
||||
"delete-channel": "Channel löschen"
|
||||
},
|
||||
"dialog": {
|
||||
"delete": {
|
||||
"title": "Möchten Sie wirklich löschen?",
|
||||
"description": "Beim Löschen werden alle zugehörigen Informationen unwiderruflich entfernt."
|
||||
},
|
||||
"warn-if-unsaved-changes": {
|
||||
"title": "Möchten Sie die Seite verlassen?",
|
||||
"description": "Wenn Sie die Seite jetzt verlassen, gehen nicht gespeicherte Eingaben verloren."
|
||||
},
|
||||
"warn-if-saved-changes": {
|
||||
"title": "Möchten Sie die Seite verlassen?",
|
||||
"description": "Sie können später jederzeit fortfahren."
|
||||
},
|
||||
"no-project-in-profile-page": {
|
||||
"title": "Kein zugehöriges Projekt.",
|
||||
"description": "Es gibt noch kein zugehöriges Projekt.\nBitte bitten Sie den Projektmanager um die Registrierung als Mitglied oder fragen Sie nach."
|
||||
},
|
||||
"no-project-dialog-in-project-creation-page": {
|
||||
"title": "Willkommen!",
|
||||
"step1-description": "In ABC User Feedback verwalten wir Feedback in einer Channel > Project > Tenant Struktur. Daher müssen Sie sowohl ein Project als auch einen Channel erstellen.",
|
||||
"step2-description": "Ein Project bezieht sich auf das Produkt, für das Feedback gesammelt wird. Es ist gut, ein Project basierend auf den von Ihnen verwalteten Produktinformationen zu erstellen.",
|
||||
"step3-description": "Ein Channel bezieht sich auf die Methode der Feedback-Sammlung. Es ist gut, einen Channel basierend darauf zu erstellen, wie Sie Feedback für das von Ihnen betreute Produkt sammeln."
|
||||
}
|
||||
},
|
||||
"text": {
|
||||
"no-data": {
|
||||
"default": "Es liegen noch keine Daten vor.",
|
||||
"api-key": "Es wurde noch kein API Key generiert.",
|
||||
"member": "Es wurden noch keine Member registriert.",
|
||||
"channel": "Es wurde noch kein Channel erstellt.",
|
||||
"webhook": "Es wurde noch kein Webhook registriert.",
|
||||
"feedback": "Es wurde noch kein Feedback gesammelt.",
|
||||
"empty": "Es liegen noch keine Daten vor.",
|
||||
"filter": "Es gibt keine Ergebnisse.\nVersuchen Sie, die Abfrage oder Filterbedingungen zu ändern."
|
||||
},
|
||||
"required-step": "Dies ist ein erforderlicher Eingabeschritt. Bitte geben Sie die erforderlichen Informationen ein.",
|
||||
"optional-step": "Dies ist ein optionaler Eingabeschritt. Sie können ihn später im Einstellungsmenü erneut eingeben.",
|
||||
"create-project": "Project erstellen",
|
||||
"create-channel": "Channel erstellen",
|
||||
"name": {
|
||||
"detail": "{{name}} Details",
|
||||
"add": "{{name}} hinzufügen",
|
||||
"register": "{{name}} registrieren",
|
||||
"create": "{{name}} erstellen"
|
||||
},
|
||||
"summary": "Zusammenfassung",
|
||||
"preview": "Vorschau",
|
||||
"in-progress": "In Bearbeitung",
|
||||
"continue": "Fortfahren",
|
||||
"test-connection-failed": "Verbindungstest fehlgeschlagen",
|
||||
"all-email-domains-allow": "Alle E-Mail-Domains sind erlaubt.",
|
||||
"request-email-auth": "Authentifizierung wurde angefordert.",
|
||||
"all-image-url-allow": "Alle Image-URLs sind erlaubt.",
|
||||
"select-project": "Bitte wählen Sie ein Projekt aus.",
|
||||
"no-category": "Keine Kategorie",
|
||||
"token-threshold-percentage": "{{percentage}}% der Obergrenze erreicht",
|
||||
"ai-issue-ready": "Ich werde passende Probleme für das Feedback empfehlen.",
|
||||
"ai-issue-pending": "AI analysiert die Probleme..."
|
||||
},
|
||||
"create-tenant": {
|
||||
"tenant": {
|
||||
"title": "Tenant erstellen",
|
||||
"description": "Bitte geben Sie den Namen des Unternehmens/der Organisation/des Teams ein, das ABC User Feedback verwalten wird."
|
||||
},
|
||||
"user": {
|
||||
"title": "Hauptkonto erstellen",
|
||||
"description": "Für die erste Anmeldung müssen Sie ein Hauptkonto erstellen."
|
||||
},
|
||||
"final": {
|
||||
"title": "Tenant-Erstellung abgeschlossen",
|
||||
"description": "Die Tenant-Erstellung ist abgeschlossen.\nVersuchen Sie nun, sich mit dem Hauptkonto anzumelden."
|
||||
}
|
||||
},
|
||||
"placeholder": {
|
||||
"select": "Bitte auswählen.",
|
||||
"text": "Bitte eingeben.",
|
||||
"text-or-generate": "Bitte eingeben oder generieren.",
|
||||
"ai-endpoint-url": "Bitte geben Sie die Endpoint-URL ein, falls eine separate Konfiguration erforderlich ist.",
|
||||
"system-prompt": "Bitte geben Sie zusätzliche Informationen ein, die das generative KI-Modell berücksichtigen soll.",
|
||||
"ai-field-template-prompt": "Bitte geben Sie Anweisungen ein, wie das generative KI-Modell die Eingabe verarbeiten soll.",
|
||||
"ai-field-reccommendation-prompt": "Bitte geben Sie zusätzliche Anweisungen ein, die an das generative KI-Modell gesendet werden sollen."
|
||||
},
|
||||
"toast": {
|
||||
"success": "Erfolgreich verarbeitet.",
|
||||
"copy": "In die Zwischenablage kopiert.",
|
||||
"ai-usage-limit-approaching": {
|
||||
"title": "AI-Nutzungslimit erreicht",
|
||||
"description": "Token-Nutzung hat {{percentage}}% des Limits erreicht."
|
||||
},
|
||||
"ai-function-terminated": {
|
||||
"title": "AI-Funktion beendet",
|
||||
"description": "Die AI-Ausführung wurde aufgrund der Überschreitung des Token-Nutzungslimits gestoppt."
|
||||
}
|
||||
},
|
||||
"webhook-card": {
|
||||
"feedback-creation": {
|
||||
"title": "Feedback-Erstellung",
|
||||
"description": "Jedes Mal, wenn ein Feedback gesammelt wird, wird ein Ereignis ausgelöst."
|
||||
},
|
||||
"issue-addition": {
|
||||
"title": "Issue-Registrierung",
|
||||
"description": "Jedes Mal, wenn ich ein Thema registriere, rufe ich ein Ereignis an."
|
||||
},
|
||||
"issue-status-change": {
|
||||
"title": "Issue-Statusänderung",
|
||||
"description": "Jedes Mal, wenn wir den Status eines Problems ändern, rufen wir ein Ereignis auf."
|
||||
},
|
||||
"issue-creation": {
|
||||
"title": "Issue-Erstellung",
|
||||
"description": "Jedes Mal, wenn wir ein neues Thema erstellen, rufen wir ein Ereignis auf"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"duplicated": "Es existieren bereits doppelte Informationen.",
|
||||
"lessThenNcharacters": "Bitte geben Sie maximal {{n}} Zeichen ein.",
|
||||
"required": "Eingabe erforderlich."
|
||||
},
|
||||
"description": {
|
||||
"create-project": "Project wurde erfolgreich erstellt.\nAls Nächstes müssen Sie einen Channel erstellen, um Feedback zu sammeln.\nFahren Sie mit 'Channel erstellen' zum nächsten Schritt fort.",
|
||||
"create-channel": "Channel wurde erfolgreich erstellt.\nSie können jetzt Benutzerfeedback sammeln und verwalten.\nKlicken Sie auf 'Starten', um die vollständige Funktionalität zu nutzen.",
|
||||
"remaining-token-amount": "Monatliche verbleibende Tokenmenge überprüfen, bitte zuerst ein Limit festlegen.",
|
||||
"token-threshold": "Monatliches Token-Nutzungsobergrenze festlegen. Wenn die Obergrenze überschritten wird, wird die KI-Funktionalität gestoppt.",
|
||||
"pre-limit-notification": "Wenn die Token-Nutzung 80% der festgelegten Obergrenze erreicht, wird eine Benachrichtigung gesendet.",
|
||||
"ai-field-template-form": "Grundlegende Informationen für die Vorlage festlegen.",
|
||||
"ai-field-template-advanced-configuration": "Sie können das verbundene Modell und die Temperatur der Vorlage ändern.",
|
||||
"ai-field-template-playground": "Sie können die AI-Ergebnisse im Voraus überprüfen, indem Sie die Vorlage und Testdaten verwenden.",
|
||||
"ai-issue-recommendation-form": "Grundlegende Informationen für die AI-Issue-Empfehlung festlegen.",
|
||||
"ai-issue-recommendation-enable": "Hier können Sie die Nutzung der AI-Issue-Empfehlungsfunktion aktivieren oder deaktivieren.",
|
||||
"ai-issue-recommendation-advanced-configuration": "Sie können das verbundene Modell, die Temperatur und die Datenreferenzmenge der AI-Issue-Empfehlung ändern.",
|
||||
"ai-issue-recommendation-data-reference-amount": "Hier können Sie die Menge der Issue-Daten anpassen, die das generative KI-Modell für die AI-Issue-Empfehlung referenzieren soll.",
|
||||
"ai-issue-recommendation-playground": "Sie können die AI-Issue-Empfehlungseinstellungen und Testdaten verwenden, um die AI-Ergebnisse im Voraus zu überprüfen.",
|
||||
"ai-field-template-auto-processing": "Automatisches Ausführen von AI-Feldern",
|
||||
"ai-issue-recommendation-setting-required": "Die AI-Issue-Empfehlungsfunktion erfordert eine Konfiguration."
|
||||
},
|
||||
"login-setting": {
|
||||
"oauth-description": "Bietet eine Möglichkeit, sich mit OAuth2.0 anzumelden.",
|
||||
"email-description": "Bietet eine Möglichkeit, sich über E-Mail-Verifizierung zu registrieren und anzumelden."
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,444 @@
|
||||
{
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "Reset Password"
|
||||
},
|
||||
"user-invitation": {
|
||||
"title": "Create an Account"
|
||||
}
|
||||
},
|
||||
"main": {
|
||||
"profile": {
|
||||
"profile-info": "Profile Information",
|
||||
"change-password": "Change Password",
|
||||
"button": {
|
||||
"delete-account": "Delete Account"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"issue-cell": {
|
||||
"create-issue": "Create Issue"
|
||||
},
|
||||
"download": {
|
||||
"loading": "Downloading...",
|
||||
"success": "Download Complete",
|
||||
"error": "Download Failed"
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"button": {
|
||||
"create-channel": "Create Channel"
|
||||
},
|
||||
"same-key": "Enter the same value as the key",
|
||||
"feedback-request-code": "Feedback Request Code",
|
||||
"field-mgmt": {
|
||||
"preview": "Preview"
|
||||
},
|
||||
"dialog": {
|
||||
"delete-option": {
|
||||
"title": "Delete Option",
|
||||
"description": "This will not affect options in previous feedback."
|
||||
},
|
||||
"add-field": {
|
||||
"title": "Add Field"
|
||||
},
|
||||
"edit-field": {
|
||||
"title": "Edit Field"
|
||||
},
|
||||
"invite-user": {
|
||||
"title": "Invite User"
|
||||
}
|
||||
}
|
||||
},
|
||||
"create-project": {
|
||||
"title": "Create Project",
|
||||
"complete-title": "Project Creation Complete",
|
||||
"error-member": "User information does not exist.",
|
||||
"continue-channel-creation": "A channel must be created before using User Feedback.\nWould you like to continue creating a channel?",
|
||||
"guide": {
|
||||
"invalid-member": "Invalid member list detected.",
|
||||
"invalid-role": "Invalid role information detected.",
|
||||
"invalid-project": "Invalid project information detected."
|
||||
},
|
||||
"alert-description": "Shall you proceed to create a Channel?"
|
||||
},
|
||||
"create-channel": {
|
||||
"title": "Create Channel",
|
||||
"complete-title": "Channel Creation Complete",
|
||||
"guide": {
|
||||
"invalid-channel": "Invalid channel information detected."
|
||||
},
|
||||
"alert-description": "Congratulations! Now you are ready to start in earnest."
|
||||
}
|
||||
},
|
||||
"header": {
|
||||
"profile": "Profile",
|
||||
"sign-out": "Logout"
|
||||
},
|
||||
"button": {
|
||||
"setting": "Setting",
|
||||
"back": "Back",
|
||||
"sign-in": "Sign In",
|
||||
"sign-up": "Sign Up",
|
||||
"save": "Save",
|
||||
"create": "Create {{name}}",
|
||||
"cancel": "Cancel",
|
||||
"delete": "Delete",
|
||||
"register": "Register",
|
||||
"select-cancel": "Cancel",
|
||||
"reset": "Reset",
|
||||
"confirm": "OK",
|
||||
"get-out": "Exit",
|
||||
"previous": "Previous",
|
||||
"next": "Next",
|
||||
"complete": "Complete",
|
||||
"next-time": "Later",
|
||||
"start": "Start",
|
||||
"generate": "Generate"
|
||||
},
|
||||
"text": {
|
||||
"issue": {
|
||||
"init": "New",
|
||||
"onReview": "On Review",
|
||||
"inProgress": "In Progress",
|
||||
"resolved": "Resolved",
|
||||
"pending": "On Hold"
|
||||
},
|
||||
"webhook-type": {
|
||||
"FEEDBACK_CREATION": "Feedback Created",
|
||||
"ISSUE_CREATION": "Issue Created",
|
||||
"ISSUE_STATUS_CHANGE": "Issue Status Changed",
|
||||
"ISSUE_ADDITION": "Issue Added"
|
||||
},
|
||||
"date": {
|
||||
"today": "Today",
|
||||
"yesterday": "Yesterday",
|
||||
"before-days": "{{day, number}} Days",
|
||||
"entire-period": "Entire period",
|
||||
"last-days": "Last {{day, number}} Days",
|
||||
"date-range-over-max-days": "Inquiry period is limited to {{maxDays}} days"
|
||||
},
|
||||
"guide": "Guidelines",
|
||||
"days": "{{days}} Days"
|
||||
},
|
||||
"dialog": {
|
||||
"continue": {
|
||||
"title": "Continue?",
|
||||
"description": "A {{type}} is currently being created. Do you wish to continue? (Starting over will discard any existing information.)",
|
||||
"button": {
|
||||
"continue": "Continue",
|
||||
"restart": "Start Over"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dashboard-card": {
|
||||
"total-feedback": {
|
||||
"title": "Total Feedback",
|
||||
"description": "Total feedback received in a specific period ({{targetDate}})."
|
||||
},
|
||||
"total-issue": {
|
||||
"title": "Total Issues",
|
||||
"description": "Total issues registered in a specific period ({{targetDate}})."
|
||||
},
|
||||
"issue-ratio": {
|
||||
"title": "Issue Registration Rate",
|
||||
"description": "Percentage of feedback with registered issues ({{targetDate}})."
|
||||
},
|
||||
"today-feedback": {
|
||||
"title": "Today's Feedback",
|
||||
"description": "Feedback received today ({{targetDate}}).\nThe increased/decreased rate is compared to the following period. ({{compareDate}})"
|
||||
},
|
||||
"yesterday-feedback": {
|
||||
"title": "Yesterday's Feedback",
|
||||
"description": "Feedback received yesterday ({{targetDate}}).\nThe increased/decreased rate is compared to the following period. ({{compareDate}})"
|
||||
},
|
||||
"n-days-feedback": {
|
||||
"title": "Last {{n}} Days' Feedback",
|
||||
"description": "Feedback received in the last {{n}} days ({{targetDate}}).\nThe increased/decreased rate is compared to the following period. ({{compareDate}})"
|
||||
},
|
||||
"today-issue": {
|
||||
"title": "Today's Issues",
|
||||
"description": "Issues reported today ({{targetDate}}).\nThe increased/decreased rate is compared to the following period. ({{compareDate}})"
|
||||
},
|
||||
"yesterday-issue": {
|
||||
"title": "Yesterday's Issues",
|
||||
"description": "Issues reported yesterday ({{targetDate}}).\nThe increased/decreased rate is compared to the following period. ({{compareDate}})"
|
||||
},
|
||||
"n-days-issue": {
|
||||
"title": "Last {{n}} Days' Issues",
|
||||
"description": "Issues reported in the last {{n}} days ({{targetDate}}).\nThe increased/decreased rate is compared to the following period. ({{compareDate}})"
|
||||
}
|
||||
},
|
||||
"chart": {
|
||||
"feedback-trend": {
|
||||
"title": "Feedback Trends",
|
||||
"description": "Shows the trend of feedback received over a specific time period."
|
||||
},
|
||||
"issue-trend": {
|
||||
"title": "Issue Trends",
|
||||
"description": "Shows the trend of issues reported over a specific time period."
|
||||
},
|
||||
"issue-status-count": {
|
||||
"title": "Issue Status Overview",
|
||||
"description": "Shows the status of all issues. (entire period)"
|
||||
},
|
||||
"issue-rank": {
|
||||
"title": "Top Issues",
|
||||
"description": "Lists the most reported issues. (entire period)"
|
||||
},
|
||||
"issue-comparison": {
|
||||
"title": "Issue Comparison",
|
||||
"description": "Compares the trend of feedback for selected issues."
|
||||
}
|
||||
},
|
||||
"popover": {
|
||||
"select-issue": {
|
||||
"max-issue-count": "Up to five issues can be selected."
|
||||
}
|
||||
},
|
||||
"tooltip": {
|
||||
"issue-feedback-count": "Count of feedback associated with this issue.",
|
||||
"feedback-date-picker-button": "Search data based on the feedback generation date.",
|
||||
"issue-date-picker-button": "Search data based on the issue registration date.",
|
||||
"dashboard-date-picker-button": "Search data based on the feedback generation or issue registration date."
|
||||
},
|
||||
"tenant-setting-menu": {
|
||||
"tenant-info": "Tenant Information",
|
||||
"sign-up-mgmt": "Login Management",
|
||||
"user-mgmt": "User Management"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel Information",
|
||||
"field-mgmt": "Field Management",
|
||||
"image-mgmt": "Image Management",
|
||||
"delete-channel": "Delete Channel"
|
||||
},
|
||||
"modal": {
|
||||
"image-preview": {
|
||||
"title": "Image Preview"
|
||||
},
|
||||
"save-field": {
|
||||
"title": "Save Field Management",
|
||||
"description": "Do you want to save the field information that you added or modified?"
|
||||
}
|
||||
},
|
||||
"help-card": {
|
||||
"project-info": "Project refers to the product targeted for feedback collection. Please enter information considering the product you want to manage feedback for.",
|
||||
"member": "You can register and manage Members who will participate in the Project.",
|
||||
"api-key": "This is the screen for managing User Feedback API Key. Please generate and use a Key to utilize the API. For details, please refer to the API <docs>Docs</docs>.",
|
||||
"issue-tracker": "This is the screen for setting up the connection between User Feedback and Issue Tracking System. Please enter the information for the Issue Tracking System you are using.",
|
||||
"channel-info": "Channel is a unit that distinguishes feedback collection paths or collection methods. Please enter information considering the characteristics of the Channel.",
|
||||
"field": "You can define feedback data to be collected in the Channel by Field units. Please add Fields considering the data type and properties.",
|
||||
"image-config": "When collecting feedback in Image format, this screen allows you to set up Image Storage integration and configure whitelist for Image URL domains. For details, please refer to the Image <docs>Docs</docs>.",
|
||||
"field-preview": "Provides a preview of what your feedback will look like based on registered Field information. The preview uses example data for reference.",
|
||||
"webhook": "This is the screen where you can set up Webhook integration according to event triggers occurring in User Feedback. For details, please refer to the Webhook <docs>Docs</docs>.",
|
||||
"ai-setting": "This is the screen for setting up the integration of Generative AI. To use AI features, essential information must be entered.",
|
||||
"ai-usage": "This is the screen for checking and managing token usage related to AI feature usage.",
|
||||
"ai-field-template": "This is the screen for defining the behavior of AI fields. You can enter instructions through templates and adjust advanced settings.",
|
||||
"ai-issue-recommendation": "This is the screen for setting up the AI issue recommendation feature. After detailed configuration per channel, you can use the AI issue recommendation feature."
|
||||
},
|
||||
"hint": {
|
||||
"required": "Required",
|
||||
"max-length": "Please enter no more than {{length}} characters.",
|
||||
"name-already-exists": "The name '{{name}}' is already in use.",
|
||||
"invalid-domain": "Please use a valid domain format.",
|
||||
"image-format": "The format for entering the Image URL."
|
||||
},
|
||||
"title-box": {
|
||||
"image-storage-integration": "Image Storage Integration"
|
||||
},
|
||||
"v2": {
|
||||
"auth": {
|
||||
"sign-up": {
|
||||
"title": "Create an Account",
|
||||
"button": {
|
||||
"request-auth-code": "Request Code",
|
||||
"verify-auth-code": "Verify Code"
|
||||
}
|
||||
},
|
||||
"reset-password": {
|
||||
"title": "Reset Password",
|
||||
"button": { "send-email": "Send Email" }
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "Reset Password"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"name": {
|
||||
"create": "Create {{name}}",
|
||||
"delete": "Delete {{name}}",
|
||||
"register": "Register {{name}}",
|
||||
"add": "Add {{name}}",
|
||||
"invite": "Invite {{name}}"
|
||||
},
|
||||
"create": "Create",
|
||||
"delete": "Delete",
|
||||
"register": "Register",
|
||||
"save": "Save",
|
||||
"cancel": "Cancel",
|
||||
"out": "Exit",
|
||||
"confirm": "Confirm",
|
||||
"next": "Next",
|
||||
"previous": "Previous",
|
||||
"addFilter": "Add Filter",
|
||||
"edit": "Edit",
|
||||
"process-ai-test": "AI test execution",
|
||||
"setting": "Setting"
|
||||
},
|
||||
"project-setting-menu": {
|
||||
"project-info": "Project Information",
|
||||
"member-mgmt": "Member Management",
|
||||
"role-mgmt": "Role Management",
|
||||
"api-key-mgmt": "API Key Management",
|
||||
"issue-tracker-mgmt": "Issue Tracker Management",
|
||||
"webhook-integration": "Webhook Integration",
|
||||
"generative-ai-setting": "Generative AI Integration"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel Information",
|
||||
"field-mgmt": "Field Management",
|
||||
"image-mgmt": "Image Management",
|
||||
"delete-channel": "Delete Channel"
|
||||
},
|
||||
"dialog": {
|
||||
"delete": {
|
||||
"title": "Do you want to delete?",
|
||||
"description": "When deleted, all related information will disappear."
|
||||
},
|
||||
"warn-if-unsaved-changes": {
|
||||
"title": "Do you want to leave the page?",
|
||||
"description": "If you leave in the middle, the entered content will not be saved."
|
||||
},
|
||||
"warn-if-saved-changes": {
|
||||
"title": "Do you want to leave the page?",
|
||||
"description": "Even if you leave in the middle, you can continue later."
|
||||
},
|
||||
"no-project-in-profile-page": {
|
||||
"title": "No Project Assigned.",
|
||||
"description": "You are not assigned to any project yet.\nPlease request the project manager to register you as a member or inquire further."
|
||||
},
|
||||
"no-project-dialog-in-project-creation-page": {
|
||||
"title": "Welcome!",
|
||||
"step1-description": "In ABC User Feedback, feedback is managed using a Channel > Project > Tenant structure. Therefore, you need to create both a Project and a Channel.",
|
||||
"step2-description": "A Project refers to the product that is the subject of feedback. It's good to create a Project based on the product information you manage.",
|
||||
"step3-description": "A Channel refers to the method of feedback collection. It's good to create a Channel based on how you collect feedback for the product you are responsible for."
|
||||
}
|
||||
},
|
||||
"text": {
|
||||
"no-data": {
|
||||
"default": "There is no data yet.",
|
||||
"api-key": "No API Key has been generated.",
|
||||
"member": "No Member has been registered.",
|
||||
"channel": "No Channel has been created.",
|
||||
"webhook": "No Webhook has been registered.",
|
||||
"feedback": "No Feedback has been collected.",
|
||||
"filter": "There is no results.\nTry changing the query or filter conditions."
|
||||
},
|
||||
"required-step": "This is a required input step. Please enter the required information.",
|
||||
"optional-step": "This is an optional input step. You can enter it again later in the settings menu.",
|
||||
"create-project": "Create Project",
|
||||
"create-channel": "Create Channel",
|
||||
"name": {
|
||||
"detail": "{{name}} Details",
|
||||
"add": "Add {{name}}",
|
||||
"register": "Register {{name}}",
|
||||
"create": "Create {{name}}"
|
||||
},
|
||||
"summary": "Summary",
|
||||
"preview": "Preview",
|
||||
"in-progress": "In Progress",
|
||||
"continue": "Continue",
|
||||
"test-connection-failed": "Test Connection failed",
|
||||
"all-email-domains-allow": "All email domains are allowed.",
|
||||
"request-email-auth": "Authentication has been requested.",
|
||||
"all-image-url-allow": "All Image URLs are allowed.",
|
||||
"select-project": "Please select a project.",
|
||||
"no-category": "No Category",
|
||||
"token-threshold-percentage": "Reached {{percentage}}% of the limit",
|
||||
"ai-issue-ready": "I will recommend issues for the feedback.",
|
||||
"ai-issue-pending": "AI is analyzing the issues..."
|
||||
},
|
||||
"create-tenant": {
|
||||
"tenant": {
|
||||
"title": "Create Tenant",
|
||||
"description": "Please enter the name of the company/organization/team that will manage ABC User Feedback."
|
||||
},
|
||||
"user": {
|
||||
"title": "Create Master Account",
|
||||
"description": "You need to create a master account for the initial login."
|
||||
},
|
||||
"final": {
|
||||
"title": "Tenant Creation Complete",
|
||||
"description": "Tenant creation is complete.\nNow try logging in with the master account."
|
||||
}
|
||||
},
|
||||
"placeholder": {
|
||||
"select": "Please select.",
|
||||
"text": "Please enter.",
|
||||
"text-or-generate": "Please enter or generate.",
|
||||
"ai-endpoint-url": "Please enter only if a separate Endpoint URL configuration is required.",
|
||||
"system-prompt": "If there is additional information that the Generative AI should refer to, please enter it.",
|
||||
"ai-field-template-prompt": "Please enter instructions on how the Generative AI should process.",
|
||||
"ai-field-reccommendation-prompt": "If there are additional instructions to request from the Generative AI, please enter them."
|
||||
},
|
||||
"toast": {
|
||||
"success": "Successfully processed.",
|
||||
"copy": "Copied to clipboard.",
|
||||
"ai-usage-limit-approaching": {
|
||||
"title": "AI Usage Limit Approaching",
|
||||
"description": "Token usage has reached {{percentage}}% of the limit."
|
||||
},
|
||||
"ai-function-terminated": {
|
||||
"title": "AI Function Terminated",
|
||||
"description": "AI execution has been stopped due to exceeding token usage limit."
|
||||
}
|
||||
},
|
||||
"webhook-card": {
|
||||
"feedback-creation": {
|
||||
"title": "Feedback Creation",
|
||||
"description": "Every time feedback is collected, an event is triggered."
|
||||
},
|
||||
"issue-addition": {
|
||||
"title": "Issue Registration",
|
||||
"description": "Every time you register an issue, an event is triggered."
|
||||
},
|
||||
"issue-status-change": {
|
||||
"title": "Issue Status Change",
|
||||
"description": "Every time you change the issue status, an event is triggered."
|
||||
},
|
||||
"issue-creation": {
|
||||
"title": "Issue Creation",
|
||||
"description": "Every time you create a new issue, an event is triggered."
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"duplicated": "Duplicate information exists.",
|
||||
"lessThenNcharacters": "Please enter {{n}} characters or less.",
|
||||
"required": "Please enter."
|
||||
},
|
||||
"description": {
|
||||
"create-project": "Project has been created successfully.\nNext, you need to create a Channel to collect feedback.\nProceed to the next step through 'Create Channel'.",
|
||||
"create-channel": "Channel has been created successfully.\nNow you're ready to collect and manage user feedback.\nStart experiencing it in full through 'Get Started'.",
|
||||
"remaining-token-amount": "To check the monthly remaining token amount, please set a limit first.",
|
||||
"token-threshold": "Set a limit for monthly token usage. If the limit is exceeded, AI functionality will be stopped.",
|
||||
"pre-limit-notification": "You will receive a token usage notification when a certain level is reached based on the upper limit.",
|
||||
"ai-field-template-form": "Set the basic information for the template.",
|
||||
"ai-field-template-advanced-configuration": "You can change the connected model and temperature of the template.",
|
||||
"ai-field-template-playground": "You can preview AI results in advance using the template and test data.",
|
||||
"ai-issue-recommendation-form": "Set the basic information for AI issue recommendations.",
|
||||
"ai-issue-recommendation-enable": "Set whether to use the AI issue recommendation feature.",
|
||||
"ai-issue-recommendation-advanced-configuration": "You can change the connected model, temperature, and data reference amount for AI issue recommendations.",
|
||||
"ai-issue-recommendation-data-reference-amount": "You can adjust the amount of issue data that the Generative AI should reference for AI issue recommendations.",
|
||||
"ai-issue-recommendation-playground": "You can preview AI results in advance using the AI issue recommendation settings and test data.",
|
||||
"ai-field-template-auto-processing": "Automatically executes AI fields.",
|
||||
"ai-issue-recommendation-setting-required": "The AI issue recommendation feature requires configuration. Please set it up to use the feature."
|
||||
},
|
||||
"login-setting": {
|
||||
"oauth-description": "Provides a way to log in using OAuth2.0.",
|
||||
"email-description": "Provides a way to sign up and log in using email verification."
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,444 @@
|
||||
{
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "パスワードリセット"
|
||||
},
|
||||
"user-invitation": {
|
||||
"title": "アカウントの作成"
|
||||
}
|
||||
},
|
||||
"main": {
|
||||
"profile": {
|
||||
"profile-info": "Profile情報",
|
||||
"change-password": "Password変更",
|
||||
"button": {
|
||||
"delete-account": "アカウント削除"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"issue-cell": {
|
||||
"create-issue": "イシュー作成"
|
||||
},
|
||||
"download": {
|
||||
"loading": "ダウンロード中...",
|
||||
"success": "ダウンロードが完了しました。",
|
||||
"error": "ダウンロードに失敗しました。"
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"button": {
|
||||
"create-channel": "Channel生成"
|
||||
},
|
||||
"same-key": "Key と同様に入力",
|
||||
"feedback-request-code": "フィードバック要求コード",
|
||||
"field-mgmt": {
|
||||
"preview": "プレビュー"
|
||||
},
|
||||
"dialog": {
|
||||
"delete-option": {
|
||||
"title": "オプションの削除",
|
||||
"description": "以前のフィードバックのオプションには適用されません。"
|
||||
},
|
||||
"add-field": {
|
||||
"title": "Field 追加"
|
||||
},
|
||||
"edit-field": {
|
||||
"title": "Field 修整"
|
||||
},
|
||||
"invite-user": {
|
||||
"title": "User 招待"
|
||||
}
|
||||
}
|
||||
},
|
||||
"create-project": {
|
||||
"title": "Project生成",
|
||||
"complete-title": "Projectの作成が完了しました。",
|
||||
"error-member": "現在存在しないユーザ情報です。",
|
||||
"continue-channel-creation": "Channelまで生成しないとUser Feedbackを使用できません。\nChannel生成を続けますか?",
|
||||
"guide": {
|
||||
"invalid-member": "無効なMemberリストが存在します。",
|
||||
"invalid-role": "無効なRole情報が存在します。",
|
||||
"invalid-project": "無効なProject情報が存在します。"
|
||||
},
|
||||
"alert-description": "続いて Channel を作成しに行きましょうか?"
|
||||
},
|
||||
"create-channel": {
|
||||
"title": "Channel生成",
|
||||
"complete-title": "Channelの作成が完了しました。",
|
||||
"guide": {
|
||||
"invalid-channel": "無効なChannel情報が存在します。"
|
||||
},
|
||||
"alert-description": "おめでとうございます!これで本格的に始める準備ができました。"
|
||||
}
|
||||
},
|
||||
"header": {
|
||||
"profile": "プロファイル",
|
||||
"sign-out": "ログアウト"
|
||||
},
|
||||
"button": {
|
||||
"setting": "設定する",
|
||||
"back": "後ろへ行く",
|
||||
"sign-in": "ログイン",
|
||||
"sign-up": "会員加入",
|
||||
"save": "保存",
|
||||
"create": "{{name}}生成",
|
||||
"cancel": "キャンセル",
|
||||
"delete": "削除",
|
||||
"register": "登錄",
|
||||
"select-cancel": "選択取り消し",
|
||||
"reset": "リセット",
|
||||
"confirm": "OK",
|
||||
"get-out": "出掛ける",
|
||||
"previous": "移転へ",
|
||||
"next": "次へ",
|
||||
"complete": "完了",
|
||||
"next-time": "次回",
|
||||
"start": "はじまり",
|
||||
"generate": "生成"
|
||||
},
|
||||
"text": {
|
||||
"issue": {
|
||||
"init": "新規",
|
||||
"onReview": "検討中",
|
||||
"inProgress": "進行中",
|
||||
"resolved": "完了",
|
||||
"pending": "進行せず"
|
||||
},
|
||||
"webhook-type": {
|
||||
"FEEDBACK_CREATION": "フィードバックの作成",
|
||||
"ISSUE_CREATION": "イシュー作成",
|
||||
"ISSUE_STATUS_CHANGE": "イシューステータス変更",
|
||||
"ISSUE_ADDITION": "イシュー追加"
|
||||
},
|
||||
"date": {
|
||||
"today": "今日",
|
||||
"yesterday": "昨日",
|
||||
"before-days": "{{day, number}}日",
|
||||
"entire-period": "全期間",
|
||||
"last-days": "過去{{day, number}}日",
|
||||
"date-range-over-max-days": "照会期間は最大{{maxDays}}日まで入力可能です。"
|
||||
},
|
||||
"guide": "案内",
|
||||
"days": "{{days}}日"
|
||||
},
|
||||
"dialog": {
|
||||
"continue": {
|
||||
"title": "続いて作成しますか?",
|
||||
"description": "現在作成中の{{type}}があります。 続いて作成しますか? (最初からすると既存情報は消えます。)",
|
||||
"button": {
|
||||
"continue": "続行",
|
||||
"restart": "再起動"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dashboard-card": {
|
||||
"total-feedback": {
|
||||
"title": "フィードバックの合計数",
|
||||
"description": "特定の期間中に作成されたフィードバックの数です。 ({{targetDate}})"
|
||||
},
|
||||
"total-issue": {
|
||||
"title": "全体イシュー数",
|
||||
"description": "特定の期間中に作成されたイシューの数です。 ({{targetDate}})"
|
||||
},
|
||||
"issue-ratio": {
|
||||
"title": "イシュー登録比重",
|
||||
"description": "特定の期間中に作成されたフィードバックのイシュー登録の割合です。 ({{targetDate}})"
|
||||
},
|
||||
"today-feedback": {
|
||||
"title": "今日のフィードバック数",
|
||||
"description": "今日作成されたフィードバックの数です。 ({{targetDate}})\n増減率は次の期間と比較して示します。 ({{compareDate}})"
|
||||
},
|
||||
"yesterday-feedback": {
|
||||
"title": "昨日のフィードバック数",
|
||||
"description": "昨日作成されたフィードバックの数です。 ({{targetDate}})\n増減率は次の期間と比較して示します。 ({{compareDate}})"
|
||||
},
|
||||
"n-days-feedback": {
|
||||
"title": "過去{{n}}日フィードバック数",
|
||||
"description": "過去{{n}}日間に生成されたフィードバックの数です。 ({{targetDate}})\n増減率は次の期間と比較して示します。 ({{compareDate}})"
|
||||
},
|
||||
"today-issue": {
|
||||
"title": "今日の話題数",
|
||||
"description": "今日作成されたイシュー数です。 ({{targetDate}})\n増減率は次の期間と比較して示します。 ({{compareDate}})"
|
||||
},
|
||||
"yesterday-issue": {
|
||||
"title": "昨日のイシュー数",
|
||||
"description": "昨日作成されたイシュー数です。 ({{targetDate}})\n増減率は次の期間と比較して示します。 ({{compareDate}})"
|
||||
},
|
||||
"n-days-issue": {
|
||||
"title": "過去{{n}}日のイシュー数",
|
||||
"description": "過去{{n}}日間に生成されたイシュー数です。 ({{targetDate}})\n増減率は次の期間と比較して示します。 ({{compareDate}})"
|
||||
}
|
||||
},
|
||||
"chart": {
|
||||
"feedback-trend": {
|
||||
"title": "フィードバック生成推移",
|
||||
"description": "特定の期間のフィードバック生成の推移を示します。"
|
||||
},
|
||||
"issue-trend": {
|
||||
"title": "イシュー生成推移",
|
||||
"description": "特定期間のイシュー作成推移を示します。"
|
||||
},
|
||||
"issue-status-count": {
|
||||
"title": "イシュー現況",
|
||||
"description": "すべての課題の状況を表示します。(全期間)"
|
||||
},
|
||||
"issue-rank": {
|
||||
"title": "上位イシュー",
|
||||
"description": "フィードバック数が多い上位イシューを表示します。(全期間)"
|
||||
},
|
||||
"issue-comparison": {
|
||||
"title": "イシュー比較",
|
||||
"description": "選択したイシューのフィードバック生成推移を比較して表示します。"
|
||||
}
|
||||
},
|
||||
"popover": {
|
||||
"select-issue": {
|
||||
"max-issue-count": "最大5つまでイシューを選択できます。"
|
||||
}
|
||||
},
|
||||
"tooltip": {
|
||||
"issue-feedback-count": "該当イシューに登録されたフィードバック数です。",
|
||||
"feedback-date-picker-button": "フィードバック生成の日付に基づいてデータを検索します。",
|
||||
"issue-date-picker-button": "イシュー生成の日付に基づいてデータを検索します。",
|
||||
"dashboard-date-picker-button": "フィードバックの生成または発行登録日に基づいてデータを検索します。"
|
||||
},
|
||||
"tenant-setting-menu": {
|
||||
"tenant-info": "Tenant情報",
|
||||
"sign-up-mgmt": "Login管理",
|
||||
"user-mgmt": "User管理"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel情報",
|
||||
"field-mgmt": "Field管理",
|
||||
"image-mgmt": "Image管理",
|
||||
"delete-channel": "Channel削除"
|
||||
},
|
||||
"modal": {
|
||||
"image-preview": {
|
||||
"title": "Imageプレビュー"
|
||||
},
|
||||
"save-field": {
|
||||
"title": "Field管理ストレージ",
|
||||
"description": "追加または修正したフィールド情報を保存しますか?"
|
||||
}
|
||||
},
|
||||
"help-card": {
|
||||
"project-info": "Projectはフィードバック収集対象の製品を指します。フィードバックを管理する製品を考慮して情報を入力してください。",
|
||||
"member": "Projectに参加するMemberを登録・管理することができます。",
|
||||
"api-key": "User Feedback API Keyを管理する画面です。APIをご利用いただくにはKeyを生成してご使用ください。詳しくはAPI <docs>Docs</docs>をご参照ください。",
|
||||
"issue-tracker": "User FeedbackとIssue Tracking Systemの連携を設定する画面です。ご利用中のIssue Tracking Systemの情報を入力してください。",
|
||||
"channel-info": "Channelはフィードバック収集経路または収集方法を区分する単位です。Channelの特性を考慮して情報を入力してください。",
|
||||
"field": "Channelで収集するフィードバックデータをField単位で定義できます。データタイプと属性を考慮してFieldを追加してください。",
|
||||
"image-config": "Image形式のフィードバックを収集する場合、Image Storageとの連携を設定し、Image URLドメインのホワイトリストを設定できる画面です。詳しくはImage <docs>Docs</docs>をご参照ください。",
|
||||
"field-preview": "登録したField情報に基づいてフィードバックがどのように表示されるかをプレビュー表示します。プレビューではサンプルデータを使用して表示しています。",
|
||||
"webhook": "User Feedbackで発生するイベントトリガーに応じてWebhook連携を設定できる画面です。詳しくはWebhook <docs>Docs</docs>をご参照ください。",
|
||||
"ai-setting": "生成型AIを連携する設定画面です。AI機能を使用するためには必須情報が入力されている必要があります。",
|
||||
"ai-usage": "AI機能使用に伴うトークン使用量を確認・管理する画面です。",
|
||||
"ai-field-template": "AIフィールドの動作を定義する画面です。テンプレートを通じて指示を入力し、詳細設定を調整できます。",
|
||||
"ai-issue-recommendation": "AIイシュー推薦機能を設定する画面です。Channelごとの詳細設定後にAIイシュー推薦機能を使用できます。"
|
||||
},
|
||||
"hint": {
|
||||
"required": "必須入力対象です。",
|
||||
"max-length": "{{length}}字以下で入力してください。",
|
||||
"name-already-exists": "既に存在する{{name}}です。",
|
||||
"invalid-domain": "ドメイン形式ではありません。",
|
||||
"image-format": "Image URLを入力するフォーマットです。"
|
||||
},
|
||||
"title-box": {
|
||||
"image-storage-integration": "Image Storageの連動"
|
||||
},
|
||||
"v2": {
|
||||
"auth": {
|
||||
"sign-up": {
|
||||
"title": "アカウント作成",
|
||||
"button": {
|
||||
"request-auth-code": "認証コード要請",
|
||||
"verify-auth-code": "認証コード確認"
|
||||
}
|
||||
},
|
||||
"reset-password": {
|
||||
"title": "パスワードリセット",
|
||||
"button": { "send-email": "メール送信" }
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "パスワードリセット"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"name": {
|
||||
"create": "{{name}}作成",
|
||||
"delete": "{{name}}削除",
|
||||
"register": "{{name}}登録",
|
||||
"add": "{{name}}追加"
|
||||
},
|
||||
"create": "作成する",
|
||||
"delete": "削除",
|
||||
"register": "登録する",
|
||||
"save": "保存",
|
||||
"cancel": "キャンセル",
|
||||
"out": "終了",
|
||||
"confirm": "確認",
|
||||
"next": "次へ",
|
||||
"previous": "前へ",
|
||||
"addFilter": "フィルタ追加",
|
||||
"edit": "編集",
|
||||
"process-ai-test": "AIテスト実行",
|
||||
"setting": "設定する"
|
||||
},
|
||||
"project-setting-menu": {
|
||||
"project-info": "Project情報",
|
||||
"member-mgmt": "Member管理",
|
||||
"role-mgmt": "Role管理",
|
||||
"api-key-mgmt": "API Key管理",
|
||||
"issue-tracker-mgmt": "Issue Tracker管理",
|
||||
"webhook-integration": "Webhook連携",
|
||||
"generative-ai-setting": "Generative AI設定"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel情報",
|
||||
"field-mgmt": "Field管理",
|
||||
"image-mgmt": "Image管理",
|
||||
"delete-channel": "Channel削除"
|
||||
},
|
||||
"dialog": {
|
||||
"delete": {
|
||||
"title": "削除してよろしいですか?",
|
||||
"description": "削除すると関連する情報がすべて消去されます。"
|
||||
},
|
||||
"warn-if-unsaved-changes": {
|
||||
"title": "ページを離れてよろしいですか?",
|
||||
"description": "途中で離れると入力した内容は保存されません。"
|
||||
},
|
||||
"warn-if-saved-changes": {
|
||||
"title": "ページを離れてよろしいですか?",
|
||||
"description": "途中で離れても後で続きから再開できます。"
|
||||
},
|
||||
"no-project-in-profile-page": {
|
||||
"title": "所属プロジェクトがありません。",
|
||||
"description": "まだ所属しているプロジェクトがありません。\nプロジェクト管理者にメンバー登録を依頼するか、問い合わせてみてください。"
|
||||
},
|
||||
"no-project-dialog-in-project-creation-page": {
|
||||
"title": "ようこそ!",
|
||||
"step1-description": "ABC User Feedbackでは、Channel > Project > Tenantの構造でフィードバックを管理します。そのため、ProjectとChannelの両方を作成する必要があります。",
|
||||
"step2-description": "Projectはフィードバック対象となるプロダクトを意味します。管理しているプロダクト情報に基づいてProjectを作成すると良いです。",
|
||||
"step3-description": "Channelはフィードバック収集方法を意味します。担当しているプロダクトでどのようにフィードバックを収集しているかに基づいてChannelを作成すると良いです。"
|
||||
}
|
||||
},
|
||||
"text": {
|
||||
"no-data": {
|
||||
"default": "まだデータはありません。",
|
||||
"api-key": "生成されたAPI Keyがありません。",
|
||||
"member": "登録されたMemberがいません。",
|
||||
"channel": "作成されたChannelがありません。",
|
||||
"webhook": "登録されたWebhookがありません。",
|
||||
"feedback": "登録されたFeedbackありません。",
|
||||
"empty": "まだデータはありません。",
|
||||
"filter": "何の成果もありません。\nクエリーまたはフィルタ条件を変更してみます。"
|
||||
},
|
||||
"required-step": "これは必須入力ステップです。必要な情報を入力してください。",
|
||||
"optional-step": "これは任意入力ステップです。後で設定メニューで再入力することができます。",
|
||||
"create-project": "Project作成",
|
||||
"create-channel": "Channel作成",
|
||||
"name": {
|
||||
"detail": "{{name}}詳細",
|
||||
"add": "{{name}}追加",
|
||||
"register": "{{name}}登録",
|
||||
"create": "{{name}}作成"
|
||||
},
|
||||
"summary": "概要",
|
||||
"preview": "プレビュー",
|
||||
"in-progress": "進行中",
|
||||
"continue": "続きから再開",
|
||||
"test-connection-failed": "接続テストに失敗しました",
|
||||
"all-email-domains-allow": "すべてのEmailドメインを許可します。",
|
||||
"request-email-auth": "認証が要求されました。",
|
||||
"all-image-url-allow": "すべてのImage URLを許可します。",
|
||||
"select-project": "Projectを選択してください。",
|
||||
"no-category": "カテゴリがありません。",
|
||||
"token-threshold-percentage": "上限値の{{percentage}}%に達しました",
|
||||
"ai-issue-ready": "フィードバックに合ったイシューを推薦します",
|
||||
"ai-issue-pending": "AIがイシューを分析中です..."
|
||||
},
|
||||
"create-tenant": {
|
||||
"tenant": {
|
||||
"title": "テナント作成",
|
||||
"description": "ABC User Feedbackを管理する会社/組織/チームの名前を入力してください。"
|
||||
},
|
||||
"user": {
|
||||
"title": "マスターアカウント作成",
|
||||
"description": "最初のログインには、マスターアカウントを作成する必要があります。"
|
||||
},
|
||||
"final": {
|
||||
"title": "テナント作成完了",
|
||||
"description": "テナントの作成が完了しました。\nマスターアカウントでログインを試みてください。"
|
||||
}
|
||||
},
|
||||
"placeholder": {
|
||||
"select": "選択してください",
|
||||
"text": "入力してください",
|
||||
"text-or-generate": "入力または生成してください",
|
||||
"ai-endpoint-url": "別のEndpoint URL設定が必要な場合にのみ入力してください",
|
||||
"system-prompt": "生成型AIが追加で参照すべき内容がある場合は入力してください",
|
||||
"ai-field-template-prompt": "生成型AIがどのように処理すべきかの指示を入力してください",
|
||||
"ai-field-reccommendation-prompt": "生成型AIに追加で要求する指示がある場合は入力してください"
|
||||
},
|
||||
"toast": {
|
||||
"success": "正常に処理されました",
|
||||
"copy": "クリップボードにコピーしました",
|
||||
"ai-usage-limit-approaching": {
|
||||
"title": "AI使用量の上限に近づいています",
|
||||
"description": "トークン使用量が上限の{{percentage}}%に達しました。"
|
||||
},
|
||||
"ai-function-terminated": {
|
||||
"title": "AI機能が中断されました",
|
||||
"description": "AI実行がトークン使用量制限を超えたため停止されました。"
|
||||
}
|
||||
},
|
||||
"webhook-card": {
|
||||
"feedback-creation": {
|
||||
"title": "Feedback作成",
|
||||
"description": "フィードバックが収集されるたびにイベントを発動します。"
|
||||
},
|
||||
"issue-addition": {
|
||||
"title": "Issue登録",
|
||||
"description": "イシューを登録するたびにイベントを発動します。"
|
||||
},
|
||||
"issue-status-change": {
|
||||
"title": "Issueステータス変更",
|
||||
"description": "イシューステータスを変更するたびにイベントを発動します。"
|
||||
},
|
||||
"issue-creation": {
|
||||
"title": "Issue作成",
|
||||
"description": "イシューを新規作成するたびにイベントを発動します。"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"duplicated": "重複する情報が存在します",
|
||||
"lessThenNcharacters": "{{n}}文字以内で入力してください",
|
||||
"required": "入力してください"
|
||||
},
|
||||
"description": {
|
||||
"create-project": "Projectの作成が完了しました。\n次は、フィードバックを収集するためにChannelを作成する必要があります。\n「Channel作成」から次のステップへ進んでください。",
|
||||
"create-channel": "Channelの作成が完了しました。\nこれでユーザーフィードバックの収集・管理の準備が整いました。\n「はじめる」から本格的にご利用ください。",
|
||||
"remaining-token-amount": "月間残りトークン量を確認するには、まず上限値を設定してください。",
|
||||
"token-threshold": "月間トークン使用量に対する上限値を設定します。上限を超えるとAI機能が停止します。",
|
||||
"pre-limit-notification": "設定した上限値の80%に達すると通知が送信されます。",
|
||||
"ai-field-template-form": "テンプレートの基本情報を設定します。",
|
||||
"ai-field-template-advanced-configuration": "テンプレートの連携ModelとTemperatureを変更できます。",
|
||||
"ai-field-template-playground": "テンプレートとテストデータを活用してAI結果を事前に確認できます。",
|
||||
"ai-issue-recommendation-form": "AIイシュー推薦のための基本情報を設定します。",
|
||||
"ai-issue-recommendation-enable": "AIイシュー推薦機能の使用有無を設定します。",
|
||||
"ai-issue-recommendation-advanced-configuration": "AIイシュー推薦の連携Model、Temperature、Data Reference Amountを変更できます。",
|
||||
"ai-issue-recommendation-data-reference-amount": "AIイシュー推薦のために生成型AIが参照すべきイシューデータの量を調整できます。",
|
||||
"ai-issue-recommendation-playground": "AIイシュー推薦設定とテストデータを活用してAI結果を事前に確認できます。",
|
||||
"ai-field-template-auto-processing": "AIフィールドを自動で実行します。",
|
||||
"ai-issue-recommendation-setting-required": "AIイシュー推薦機能を使用するには設定が必要です。設定を行ってください。"
|
||||
},
|
||||
"login-setting": {
|
||||
"oauth-description": "OAuth2.0を活用してログインできる方法を提供します。",
|
||||
"email-description": "Email認証を通じて会員登録およびログインできる方法を提供します。"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,445 @@
|
||||
{
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "비밀번호 재설정"
|
||||
},
|
||||
"user-invitation": {
|
||||
"title": "계정 만들기"
|
||||
}
|
||||
},
|
||||
"main": {
|
||||
"profile": {
|
||||
"profile-info": "Profile 정보",
|
||||
"change-password": "Password 변경",
|
||||
"button": {
|
||||
"delete-account": "회원 탈퇴"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"issue-cell": {
|
||||
"create-issue": "이슈 생성"
|
||||
},
|
||||
"download": {
|
||||
"loading": "다운로드 중입니다.",
|
||||
"success": "다운로드가 완료되었습니다.",
|
||||
"error": "다운로드에 실패하였습니다."
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"button": {
|
||||
"create-channel": "Channel 생성"
|
||||
},
|
||||
"same-key": "Key 정보와 동일하게 입력",
|
||||
"feedback-request-code": "피드백 요청 코드",
|
||||
"field-mgmt": {
|
||||
"preview": "미리보기"
|
||||
},
|
||||
"dialog": {
|
||||
"delete-option": {
|
||||
"title": "옵선 삭제",
|
||||
"description": "옵션을 삭제하면 기존에 저장된 옵션에는 적용되지 않습니다."
|
||||
},
|
||||
"add-field": {
|
||||
"title": "Field 추가"
|
||||
},
|
||||
"edit-field": {
|
||||
"title": "Field 수정"
|
||||
},
|
||||
"invite-user": {
|
||||
"title": "User 초대"
|
||||
}
|
||||
}
|
||||
},
|
||||
"create-project": {
|
||||
"title": "Project 생성",
|
||||
"complete-title": "Project 생성이 완료되었습니다.",
|
||||
"error-member": "현재 존재하지 않는 User 정보 입니다.",
|
||||
"continue-channel-creation": "Channel까지 생성해야 UserFeedback을 사용할 수 있습니다.\nChannel 생성을 이어서 하시겠어요?",
|
||||
"guide": {
|
||||
"invalid-member": "유효하지 않은 Member 목록이 존재합니다.",
|
||||
"invalid-role": "유효하지 않는 Role 정보가 존재합니다.",
|
||||
"invalid-project": "유효하지 않는 Project 정보가 존재합니다."
|
||||
},
|
||||
"alert-description": "이어서 Channel을 생성하러 갈까요?"
|
||||
},
|
||||
"create-channel": {
|
||||
"title": "Channel 생성",
|
||||
"complete-title": "Channel 생성이 완료되었습니다.",
|
||||
"guide": {
|
||||
"invalid-channel": "유효하지 않은 Project 정보가 존재합니다."
|
||||
},
|
||||
"alert-description": "축하합니다! 이제 본격적으로 시작할 준비가 되었습니다."
|
||||
}
|
||||
},
|
||||
"header": {
|
||||
"profile": "프로필",
|
||||
"sign-out": "로그아웃"
|
||||
},
|
||||
"button": {
|
||||
"setting": "설정",
|
||||
"back": "뒤로가기",
|
||||
"sign-in": "로그인",
|
||||
"sign-up": "회원가입",
|
||||
"save": "저장",
|
||||
"create": "{{name}} 생성",
|
||||
"cancel": "취소",
|
||||
"delete": "삭제",
|
||||
"register": "등록",
|
||||
"select-cancel": "선택 취소",
|
||||
"reset": "초기화",
|
||||
"confirm": "확인",
|
||||
"get-out": "나가기",
|
||||
"previous": "이전",
|
||||
"next": "다음",
|
||||
"complete": "완료",
|
||||
"next-time": "다음에",
|
||||
"start": "시작하기",
|
||||
"generate": "생성"
|
||||
},
|
||||
"text": {
|
||||
"issue": {
|
||||
"init": "신규",
|
||||
"onReview": "검토중",
|
||||
"inProgress": "진행중",
|
||||
"resolved": "완료",
|
||||
"pending": "진행하지 않음"
|
||||
},
|
||||
"webhook-type": {
|
||||
"FEEDBACK_CREATION": "피드백 생성",
|
||||
"ISSUE_CREATION": "이슈 생성",
|
||||
"ISSUE_STATUS_CHANGE": "이슈 상태 변경",
|
||||
"ISSUE_ADDITION": "이슈 등록"
|
||||
},
|
||||
"date": {
|
||||
"today": "오늘",
|
||||
"yesterday": "어제",
|
||||
"before-days": "{{day, number}}일",
|
||||
"entire-period": "전체 기간",
|
||||
"last-days": "지난 {{day, number}}일",
|
||||
"date-range-over-max-days": "조회 기간은 최대 {{maxDays}}일까지만 입력 가능합니다."
|
||||
},
|
||||
"guide": "안내",
|
||||
"days": "{{days}}일"
|
||||
},
|
||||
"dialog": {
|
||||
"continue": {
|
||||
"title": "이어서 생성하시겠어요?",
|
||||
"description": "현재 생성중인 {{type}} 있습니다. 이어서 생성하시겠어요? (처음부터 하면 기존 정보는 사라집니다.)",
|
||||
"button": {
|
||||
"continue": "이어서하기",
|
||||
"restart": "처음부터"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dashboard-card": {
|
||||
"total-feedback": {
|
||||
"title": "전체 피드백 수",
|
||||
"description": "특정 기간 동안 생성된 피드백 개수입니다. ({{targetDate}})"
|
||||
},
|
||||
"total-issue": {
|
||||
"title": "전체 이슈 수",
|
||||
"description": "특정 기간 동안 생성된 이슈 개수입니다. ({{targetDate}})"
|
||||
},
|
||||
"issue-ratio": {
|
||||
"title": "이슈 등록 비중",
|
||||
"description": "특정 기간 동안 생성된 피드백의 이슈 등록 비중입니다. ({{targetDate}}) "
|
||||
},
|
||||
"today-feedback": {
|
||||
"title": "오늘 피드백 수",
|
||||
"description": "오늘 생성된 피드백 개수입니다. ({{targetDate}})\n증감률은 다음 기간과 비교해서 나타냅니다. ({{compareDate}})"
|
||||
},
|
||||
"yesterday-feedback": {
|
||||
"title": "어제 피드백 수",
|
||||
"description": "어제 생성된 피드백 개수입니다. ({{targetDate}})\n증감률은 다음 기간과 비교해서 나타냅니다. ({{compareDate}})"
|
||||
},
|
||||
"n-days-feedback": {
|
||||
"title": "지난 {{n}}일 피드백 수",
|
||||
"description": "지난 {{n}}일 동안 생성된 피드백 개수입니다. ({{targetDate}})\n증감률은 다음 기간과 비교해서 나타냅니다. ({{compareDate}})"
|
||||
},
|
||||
"today-issue": {
|
||||
"title": "오늘 이슈 수",
|
||||
"description": "오늘 생성된 이슈 개수입니다. ({{targetDate}})\n증감률은 다음 기간과 비교해서 나타냅니다. ({{compareDate}})"
|
||||
},
|
||||
"yesterday-issue": {
|
||||
"title": "어제 이슈 수",
|
||||
"description": "어제 생성된 이슈 개수입니다. ({{targetDate}})\n증감률은 다음 기간과 비교해서 나타냅니다. ({{compareDate}})"
|
||||
},
|
||||
"n-days-issue": {
|
||||
"title": "지난 {{n}}일 이슈 수",
|
||||
"description": "지난 {{n}}일 동안 생성된 이슈 개수입니다. ({{targetDate}})\n증감률은 다음 기간과 비교해서 나타냅니다. ({{compareDate}})"
|
||||
}
|
||||
},
|
||||
"chart": {
|
||||
"feedback-trend": {
|
||||
"title": "피드백 생성 추이",
|
||||
"description": "특정 기간의 피드백 생성 추이를 보여줍니다."
|
||||
},
|
||||
"issue-trend": {
|
||||
"title": "이슈 생성 추이",
|
||||
"description": "특정 기간의 이슈 생성 추이를 보여줍니다."
|
||||
},
|
||||
"issue-status-count": {
|
||||
"title": "이슈 현황",
|
||||
"description": "전체 이슈의 현황을 보여줍니다. (전체 기간)"
|
||||
},
|
||||
"issue-rank": {
|
||||
"title": "상위 이슈",
|
||||
"description": "피드백 개수가 많은 상위 이슈를 보여줍니다. (전체 기간)"
|
||||
},
|
||||
"issue-comparison": {
|
||||
"title": "이슈 비교",
|
||||
"description": "선택한 이슈의 피드백 생성 추이를 비교해서 보여줍니다."
|
||||
}
|
||||
},
|
||||
"popover": {
|
||||
"select-issue": {
|
||||
"max-issue-count": "최대 5개까지 이슈를 선택할 수 있습니다. "
|
||||
}
|
||||
},
|
||||
"tooltip": {
|
||||
"issue-feedback-count": "해당 이슈에 등록된 피드백 개수입니다.",
|
||||
"feedback-date-picker-button": "피드백 생성일시 기준으로 데이터를 조회합니다.",
|
||||
"issue-date-picker-button": "이슈 생성일시 기준으로 데이터를 조회합니다.",
|
||||
"dashboard-date-picker-button": "피드백 또는 이슈 생성일시 기준으로 데이터를 조회합니다."
|
||||
},
|
||||
"tenant-setting-menu": {
|
||||
"tenant-info": "Tenant 정보",
|
||||
"sign-up-mgmt": "Login 관리",
|
||||
"user-mgmt": "User 관리"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel 정보",
|
||||
"field-mgmt": "Field 관리",
|
||||
"image-mgmt": "Image 관리",
|
||||
"delete-channel": "Channel 삭제"
|
||||
},
|
||||
"modal": {
|
||||
"image-preview": {
|
||||
"title": "Image 미리보기"
|
||||
},
|
||||
"save-field": {
|
||||
"title": "Field 관리 저장",
|
||||
"description": "추가 또는 수정한 필드 정보를 저장하시겠어요?"
|
||||
}
|
||||
},
|
||||
"help-card": {
|
||||
"project-info": "Project는 피드백 수집 대상의 프로덕트를 의미합니다. 피드백을 관리할 프로덕트를 고려하여 정보를 입력해 주세요.",
|
||||
"member": "Project에 참여할 Member를 등록하거나 관리할 수 있습니다.",
|
||||
"api-key": "User Feedback API Key를 관리하는 화면입니다. API를 활용하려면 Key를 생성하여 이용해 주세요. 자세한 내용은 API <docs>Docs</docs>를 참고해 주세요.",
|
||||
"issue-tracker": "User Feedback과 Issue Tracking System 연결을 설정하는 화면입니다. 사용 중인 Issue Tracking System 정보를 입력해 주세요.",
|
||||
"channel-info": "Channel은 피드백 수집 경로 또는 수집 방식을 구분하는 단위입니다. Channel의 특성을 고려하여 정보를 입력해 주세요.",
|
||||
"field": "Channel에 수집할 피드백 데이터를 Field 단위로 정의할 수 있습니다. 데이터 유형 및 속성을 고려해 Field를 추가해 주세요. ",
|
||||
"image-config": "Image 포맷의 피드백을 수집하는 경우, Image Storage와 연동을 설정하고 Image URL 도메인에 대한 화이트리스트를 설정할 수 있는 화면입니다. 자세한 내용은 Image <docs>Docs</docs>를 참고해 주세요.",
|
||||
"field-preview": "등록한 Field 정보를 토대로 피드백이 어떤 모습일지 미리보기를 제공합니다. 참고로 미리보기는 예시 데이터를 활용해 나타냅니다.",
|
||||
"webhook": "User Feedback에서 발생하는 이벤트 트리거에 맞춰 Webhook 연동을 설정할 수 있는 화면입니다. 자세한 내용은 Webhook <docs>Docs</docs>를 참고해 주세요. ",
|
||||
"ai-setting": "생성형 AI를 연동하는 설정 화면입니다. AI 기능을 사용하기 위해서는 필수 정보가 입력되어 있어야 합니다.",
|
||||
"ai-usage": "AI 기능 사용에 따른 토큰 사용량을 확인하고 관리하는 화면입니다.",
|
||||
"ai-field-template": "AI 필드의 동작을 정의하는 템플릿 설정 화면입니다. 템플릿을 통해 지시사항을 입력하고 세부 설정을 조정할 수 있습니다.",
|
||||
"ai-issue-recommendation": "AI 이슈 추천 기능을 설정하는 화면입니다. 채널별 세부 설정 이후에 AI 이슈 추천 기능을 사용할 수 있습니다."
|
||||
},
|
||||
"hint": {
|
||||
"required": "필수 입력 대상입니다.",
|
||||
"max-length": "{{length}}자 이하로 입력해 주세요.",
|
||||
"name-already-exists": "이미 존재하는 {{name}}입니다.",
|
||||
"image-format": "Image URL을 입력하는 포맷입니다.",
|
||||
"invalid-domain": "도메인 형식이 아닙니다."
|
||||
},
|
||||
"title-box": {
|
||||
"image-storage-integration": "Image Storage 연동"
|
||||
},
|
||||
"v2": {
|
||||
"auth": {
|
||||
"sign-up": {
|
||||
"title": "회원가입",
|
||||
"button": {
|
||||
"request-auth-code": "인증 요청",
|
||||
"verify-auth-code": "인증 확인"
|
||||
}
|
||||
},
|
||||
"reset-password": {
|
||||
"title": "비밀번호 재설정",
|
||||
"button": { "send-email": "이메일 보내기" }
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "비밀번호 변경"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"name": {
|
||||
"create": "{{name}} 생성",
|
||||
"delete": "{{name}} 삭제",
|
||||
"register": "{{name}} 등록",
|
||||
"add": "{{name}} 추가",
|
||||
"invite": "{{name}} 초대"
|
||||
},
|
||||
"create": "생성하기",
|
||||
"delete": "삭제",
|
||||
"register": "등록하기",
|
||||
"save": "저장",
|
||||
"cancel": "취소",
|
||||
"out": "나가기",
|
||||
"confirm": "확인",
|
||||
"next": "다음",
|
||||
"previous": "이전",
|
||||
"addFilter": "필터 추가",
|
||||
"edit": "편집",
|
||||
"process-ai-test": "AI 테스트 실행",
|
||||
"setting": "설정하기"
|
||||
},
|
||||
"project-setting-menu": {
|
||||
"project-info": "Project 정보",
|
||||
"member-mgmt": "Member 관리",
|
||||
"role-mgmt": "Role 관리",
|
||||
"api-key-mgmt": "API Key 관리",
|
||||
"issue-tracker-mgmt": "Issue Tracker 관리",
|
||||
"webhook-integration": "Webhook 연동",
|
||||
"generative-ai-setting": "Generative AI 연동"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel 정보",
|
||||
"field-mgmt": "Field 관리",
|
||||
"image-mgmt": "Image 관리",
|
||||
"delete-channel": "Channel 삭제"
|
||||
},
|
||||
"dialog": {
|
||||
"delete": {
|
||||
"title": "삭제 하시겠습니까?",
|
||||
"description": "삭제를 하면 관련된 정보가 모두 사라집니다."
|
||||
},
|
||||
"warn-if-unsaved-changes": {
|
||||
"title": "페이지를 나가시겠습니까?",
|
||||
"description": "중간에 나가면 입력한 내용이 저장되지 않습니다."
|
||||
},
|
||||
"warn-if-saved-changes": {
|
||||
"title": "페이지를 나가시겠습니까?",
|
||||
"description": "중간에 나가도 나중에 이어서 진행할 수 있습니다. "
|
||||
},
|
||||
"no-project-in-profile-page": {
|
||||
"title": "소속된 Project가 없습니다.",
|
||||
"description": "아직 소속된 Project가 없습니다.\nProject 관리자에게 Member 등록을 요청하거나 또는 문의해 보세요."
|
||||
},
|
||||
"no-project-dialog-in-project-creation-page": {
|
||||
"title": "환영합니다!",
|
||||
"step1-description": "ABC User Feedback에서는 Channel > Project > Tenant 구조로 피드백을 관리합니다. 그래서 Project와 Channel을 모두 생성해 주셔야 합니다.",
|
||||
"step2-description": "Project는 피드백 대상이 되는 프로덕트를 의미합니다. 관리하고 있는 프로덕트 정보를 기준으로 Project를 생성하면 좋습니다.",
|
||||
"step3-description": "Channel은 피드백 수집 방식을 의미합니다. 담당하고 있는 프로덕트에서 어떤 방식으로 피드백을 수집하고 있는지를 기준으로 Channel을 생성하면 좋습니다. "
|
||||
}
|
||||
},
|
||||
"text": {
|
||||
"no-data": {
|
||||
"default": "아직 데이터가 없습니다.",
|
||||
"channel": "생성된 Channel이 없습니다.",
|
||||
"feedback": "생성된 피드백이 없습니다.",
|
||||
"member": "등록된 Member가 없습니다.",
|
||||
"api-key": "생성된 API Key가 없습니다.",
|
||||
"webhook": "등록된 Webhook이 없습니다.",
|
||||
"empty": "아직 데이터가 없습니다.",
|
||||
"filter": "조회 결과가 없습니다.\n조회 또는 필터 조건을 변경해 보세요."
|
||||
},
|
||||
"required-step": "필수 입력 단계입니다. 필수 정보를 입력해 주세요.",
|
||||
"optional-step": "선택 입력 단계입니다. 나중에 설정 메뉴에서 다시 입력할 수 있어요.",
|
||||
"create-project": "Project 생성",
|
||||
"create-channel": "Channel 생성",
|
||||
"name": {
|
||||
"detail": "{{name}} 상세",
|
||||
"add": "{{name}} 추가",
|
||||
"register": "{{name}} 등록",
|
||||
"create": "{{name}} 생성"
|
||||
},
|
||||
"summary": "요약",
|
||||
"preview": "미리보기",
|
||||
"in-progress": "진행중",
|
||||
"continue": "이어서 하기",
|
||||
"test-connection-failed": "연동 테스트에 실패했습니다.",
|
||||
"all-email-domains-allow": "모든 이메일 도메인을 허용합니다.",
|
||||
"request-email-auth": "인증이 요청되었습니다.",
|
||||
"all-image-url-allow": "모든 Image URL의 도메인을 허용합니다.",
|
||||
"select-project": "프로젝트를 선택해 주세요.",
|
||||
"no-category": "카테고리 미등록",
|
||||
"token-threshold-percentage": "상한값의 {{percentage}}% 도달",
|
||||
"ai-issue-ready": "피드백에 맞는 이슈를 추천해드릴게요",
|
||||
"ai-issue-pending": "AI가 이슈를 분석하고 있어요..."
|
||||
},
|
||||
"create-tenant": {
|
||||
"tenant": {
|
||||
"title": "Tenant 생성",
|
||||
"description": "ABC User Feedback을 관리할 회사/조직/팀 이름을 입력해 주세요."
|
||||
},
|
||||
"user": {
|
||||
"title": "마스터 계정 생성",
|
||||
"description": "최초 로그인을 위해서는 마스터 계정을 생성해 주셔야 합니다. "
|
||||
},
|
||||
"final": {
|
||||
"title": "Tenant 생성 완료",
|
||||
"description": "Tenant 생성이 완료되었어요.\n이제 마스터 계정으로 로그인을 시도해 보세요."
|
||||
}
|
||||
},
|
||||
"placeholder": {
|
||||
"select": "선택해주세요.",
|
||||
"text": "입력해 주세요.",
|
||||
"text-or-generate": "입력 또는 생성해주세요.",
|
||||
"ai-endpoint-url": "별도의 Endpoint URL 설정이 필요한 경우에만 입력해 주세요.",
|
||||
"system-prompt": "생성형 AI가 추가적으로 참고해야 할 내용이 있다면 입력해 주세요.",
|
||||
"ai-field-template-prompt": "생성형 AI가 어떻게 처리해야 하는지 지시사항을 입력해 주세요.",
|
||||
"ai-field-reccommendation-prompt": "생성형 AI에 추가적으로 요청할 지시사항이 있다면 입력해 주세요."
|
||||
},
|
||||
"toast": {
|
||||
"success": "성공적으로 처리되었습니다.",
|
||||
"copy": "클립보드에 복사되었습니다.",
|
||||
"ai-usage-limit-approaching": {
|
||||
"title": "AI 사용량 도달",
|
||||
"description": "토큰 사용량이 상한값의 {{percentage}}%에 도달했습니다."
|
||||
},
|
||||
"ai-function-terminated": {
|
||||
"title": "AI 기능 중단",
|
||||
"description": "토큰 사용량이 한도를 초과해서 AI 실행이 중지되었습니다."
|
||||
}
|
||||
},
|
||||
"webhook-card": {
|
||||
"feedback-creation": {
|
||||
"title": "Feedback 생성",
|
||||
"description": "피드백이 수집될 때마다 이벤트를 발동합니다."
|
||||
},
|
||||
"issue-addition": {
|
||||
"title": "Issue 등록",
|
||||
"description": "이슈를 등록할 때마다 이벤트를 발동합니다."
|
||||
},
|
||||
"issue-status-change": {
|
||||
"title": "Issue 상태 변경",
|
||||
"description": "이슈 상태를 변경할 때마다 이벤트를 발동합니다."
|
||||
},
|
||||
"issue-creation": {
|
||||
"title": "Issue 생성",
|
||||
"description": "이슈를 신규 생성할 때마다 이벤트를 발동합니다."
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"duplicated": "중복된 정보가 존재합니다.",
|
||||
"lessThenNcharacters": "{{n}}자 이하로 입력해 주세요.",
|
||||
"required": "입력해 주세요."
|
||||
},
|
||||
"description": {
|
||||
"create-project": "성공적으로 Project를 생성했습니다.\n다음은 피드백을 수집하기 위해 Channel을 생성해 줘야 합니다.\n‘Channel 생성'을 통해 다음 단계로 진행해 보세요.",
|
||||
"create-channel": "성공적으로 Channel을 생성했습니다.\n이제 유저 피드백을 수집하고 관리할 준비가 되었습니다.\n‘시작하기'를 통해 본격적으로 경험해 보세요.",
|
||||
"remaining-token-amount": "월 잔여 토큰량을 확인하려면 상한값을 먼저 설정해 주세요.",
|
||||
"token-threshold": "월 토큰 사용량에 대한 상한값을 설정합니다. 상한을 초과하면 AI 기능이 중지됩니다.",
|
||||
"pre-limit-notification": "상한값을 기준으로 특정 수준에 도달하면 토큰 사용량 알림을 받습니다.",
|
||||
"ai-field-template-form": "템플릿의 기본 정보를 설정합니다.",
|
||||
"ai-field-template-advanced-configuration": "템플릿의 연동 Model과 Temperature를 변경할 수 있습니다.",
|
||||
"ai-field-template-playground": "템플릿과 테스트 데이터를 활용해 AI 결과를 미리 확인할 수 있습니다.",
|
||||
"ai-issue-recommendation-form": "AI 이슈 추천을 위한 기본 정보를 설정합니다.",
|
||||
"ai-issue-recommendation-enable": "AI 이슈 추천 기능의 사용여부를 설정합니다.",
|
||||
"ai-issue-recommendation-advanced-configuration": "AI 이슈 추천의 연동 Model과 Temperature 그리고 Data Reference Amount를 변경할 수 있습니다.",
|
||||
"ai-issue-recommendation-data-reference-amount": "AI 이슈 추천을 위해 생성형 AI가 참조해야 하는 이슈 데이터의 양을 조정할 수 있습니다.",
|
||||
"ai-issue-recommendation-playground": "AI 이슈 추천 설정과 테스트 데이터를 활용해 AI 결과를 미리 확인할 수 있습니다.",
|
||||
"ai-field-template-auto-processing": "AI 필드를 자동으로 실행합니다.",
|
||||
"ai-issue-recommendation-setting-required": "해당 기능을 사용하려면 AI 이슈 추천 설정이 필요합니다."
|
||||
},
|
||||
"login-setting": {
|
||||
"oauth-description": "OAuth2.0을 활용해 로그인할 수 있는 방식을 제공합니다.",
|
||||
"email-description": "Email 인증을 통해 회원가입 및 로그인할 수 있는 방식을 제공합니다."
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,444 @@
|
||||
{
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "重置密码"
|
||||
},
|
||||
"user-invitation": {
|
||||
"title": "创建账户"
|
||||
}
|
||||
},
|
||||
"main": {
|
||||
"profile": {
|
||||
"profile-info": "个人信息",
|
||||
"change-password": "更改密码",
|
||||
"button": {
|
||||
"delete-account": "删除账户"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"issue-cell": {
|
||||
"create-issue": "创建问题"
|
||||
},
|
||||
"download": {
|
||||
"loading": "下载中...",
|
||||
"success": "下载完成",
|
||||
"error": "下载失败"
|
||||
}
|
||||
},
|
||||
"setting": {
|
||||
"button": {
|
||||
"create-channel": "创建频道"
|
||||
},
|
||||
"same-key": "输入与键值相同的内容",
|
||||
"feedback-request-code": "反馈请求码",
|
||||
"field-mgmt": {
|
||||
"preview": "预览"
|
||||
},
|
||||
"dialog": {
|
||||
"delete-option": {
|
||||
"title": "删除选项",
|
||||
"description": "这不会影响之前反馈中的选项。"
|
||||
},
|
||||
"add-field": {
|
||||
"title": "添加字段"
|
||||
},
|
||||
"edit-field": {
|
||||
"title": "编辑字段"
|
||||
},
|
||||
"invite-user": {
|
||||
"title": "邀请用户"
|
||||
}
|
||||
}
|
||||
},
|
||||
"create-project": {
|
||||
"title": "创建项目",
|
||||
"complete-title": "项目创建完成",
|
||||
"error-member": "用户信息不存在。",
|
||||
"continue-channel-creation": "在使用用户反馈之前必须创建频道。\n您想要继续创建频道吗?",
|
||||
"guide": {
|
||||
"invalid-member": "检测到无效的成员列表。",
|
||||
"invalid-role": "检测到无效的角色信息。",
|
||||
"invalid-project": "检测到无效的项目信息。"
|
||||
},
|
||||
"alert-description": "接下来要去创建 Channel 吗?"
|
||||
},
|
||||
"create-channel": {
|
||||
"title": "创建频道",
|
||||
"complete-title": "频道创建完成",
|
||||
"guide": {
|
||||
"invalid-channel": "检测到无效的频道信息。"
|
||||
},
|
||||
"alert-description": "恭喜您!现在您已准备好正式开始了。"
|
||||
}
|
||||
},
|
||||
"header": {
|
||||
"profile": "个人资料",
|
||||
"sign-out": "登出"
|
||||
},
|
||||
"button": {
|
||||
"setting": "设置",
|
||||
"back": "返回",
|
||||
"sign-in": "登录",
|
||||
"sign-up": "注册",
|
||||
"save": "保存",
|
||||
"create": "创建{{name}}",
|
||||
"cancel": "取消",
|
||||
"delete": "删除",
|
||||
"register": "注册",
|
||||
"select-cancel": "取消选择",
|
||||
"reset": "重置",
|
||||
"confirm": "确认",
|
||||
"get-out": "退出",
|
||||
"previous": "上一个",
|
||||
"next": "下一个",
|
||||
"complete": "完成",
|
||||
"next-time": "下次",
|
||||
"start": "开始",
|
||||
"generate": "產生"
|
||||
},
|
||||
"text": {
|
||||
"issue": {
|
||||
"init": "新建",
|
||||
"onReview": "审核中",
|
||||
"inProgress": "进行中",
|
||||
"resolved": "已解决",
|
||||
"pending": "待定"
|
||||
},
|
||||
"webhook-type": {
|
||||
"FEEDBACK_CREATION": "反馈已创建",
|
||||
"ISSUE_CREATION": "问题已创建",
|
||||
"ISSUE_STATUS_CHANGE": "问题状态已更改",
|
||||
"ISSUE_ADDITION": "已添加问题"
|
||||
},
|
||||
"date": {
|
||||
"today": "今天",
|
||||
"yesterday": "昨天",
|
||||
"before-days": "{{day, number}}天",
|
||||
"entire-period": "整个期间",
|
||||
"last-days": "过去{{days, number}}天",
|
||||
"date-range-over-max-days": "查询期限限制为{{maxDays}}天"
|
||||
},
|
||||
"guide": "指南",
|
||||
"days": "{{days}}天"
|
||||
},
|
||||
"dialog": {
|
||||
"continue": {
|
||||
"title": "继续?",
|
||||
"description": "当前正在创建{{type}}。您希望继续吗?(重新开始将丢弃所有现有信息。)",
|
||||
"button": {
|
||||
"continue": "继续",
|
||||
"restart": "重新开始"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dashboard-card": {
|
||||
"total-feedback": {
|
||||
"title": "总反馈",
|
||||
"description": "在特定时期内收到的总反馈({{targetDate}})。"
|
||||
},
|
||||
"total-issue": {
|
||||
"title": "总问题",
|
||||
"description": "在特定时期内注册的总问题({{targetDate}})。"
|
||||
},
|
||||
"issue-ratio": {
|
||||
"title": "问题注册率",
|
||||
"description": "注册问题的反馈百分比({{targetDate}})。"
|
||||
},
|
||||
"today-feedback": {
|
||||
"title": "今日反馈",
|
||||
"description": "今天收到的反馈({{targetDate}})。\n与前一时期相比增减率({{compareDate}})。"
|
||||
},
|
||||
"yesterday-feedback": {
|
||||
"title": "昨日反馈",
|
||||
"description": "昨天收到的反馈({{targetDate}})。\n与前一时期相比增减率({{compareDate}})。"
|
||||
},
|
||||
"n-days-feedback": {
|
||||
"title": "过去{{n}}天的反馈",
|
||||
"description": "在过去{{n}}天内收到的反馈({{targetDate}})。\n与前一时期相比增减率({{compareDate}})。"
|
||||
},
|
||||
"today-issue": {
|
||||
"title": "今日问题",
|
||||
"description": "今天报告的问题({{targetDate}})。\n与前一时期相比的增减率({{compareDate}})。"
|
||||
},
|
||||
"yesterday-issue": {
|
||||
"title": "昨日问题",
|
||||
"description": "昨天报告的问题({{targetDate}})。\n与前一时期相比的增减率({{compareDate}})。"
|
||||
},
|
||||
"n-days-issue": {
|
||||
"title": "过去{{n}}天的问题",
|
||||
"description": "在过去{{n}}天内报告的问题({{targetDate}})。\n与前一时期相比的增减率({{compareDate}})。"
|
||||
}
|
||||
},
|
||||
"chart": {
|
||||
"feedback-trend": {
|
||||
"title": "反馈趋势",
|
||||
"description": "显示特定时间段内收到的反馈趋势。"
|
||||
},
|
||||
"issue-trend": {
|
||||
"title": "问题趋势",
|
||||
"description": "显示特定时间段内报告的问题趋势。"
|
||||
},
|
||||
"issue-status-count": {
|
||||
"title": "问题状态概览",
|
||||
"description": "显示所有问题的状态。(整个期间)"
|
||||
},
|
||||
"issue-rank": {
|
||||
"title": "问题排行",
|
||||
"description": "列出报告次数最多的问题。(整个期间)"
|
||||
},
|
||||
"issue-comparison": {
|
||||
"title": "问题对比",
|
||||
"description": "比较选定问题的反馈趋势。"
|
||||
}
|
||||
},
|
||||
"popover": {
|
||||
"select-issue": {
|
||||
"max-issue-count": "最多可以选择五个问题。"
|
||||
}
|
||||
},
|
||||
"tooltip": {
|
||||
"issue-feedback-count": "与此问题相关的反馈数量。",
|
||||
"feedback-date-picker-button": "根据反馈生成的日期搜索数据。",
|
||||
"issue-date-picker-button": "根据问题生成的日期搜索数据。",
|
||||
"dashboard-date-picker-button": "根据反馈生成或问题注册日期搜索数据。"
|
||||
},
|
||||
"tenant-setting-menu": {
|
||||
"tenant-info": "租户信息",
|
||||
"sign-up-mgmt": "注册与登录管理",
|
||||
"user-mgmt": "用户管理"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "频道信息",
|
||||
"field-mgmt": "字段管理",
|
||||
"image-mgmt": "图片管理",
|
||||
"delete-channel": "删除频道"
|
||||
},
|
||||
"modal": {
|
||||
"image-preview": {
|
||||
"title": "图片预览"
|
||||
},
|
||||
"save-field": {
|
||||
"title": "保存现场管理",
|
||||
"description": "确定要保存添加或修改的字段信息吗?"
|
||||
}
|
||||
},
|
||||
"help-card": {
|
||||
"project-info": "Project指的是需要收集反馈的产品。请考虑要管理反馈的产品并输入相关信息。",
|
||||
"member": "您可以注册和管理将参与Project的成员。",
|
||||
"api-key": "这是管理User Feedback API Key的界面。要使用API,请生成Key并使用。详细内容请参考API <docs>Docs</docs>。",
|
||||
"issue-tracker": "这是设置User Feedback和Issue Tracking System连接的界面。请输入您正在使用的Issue Tracking System信息。",
|
||||
"channel-info": "Channel是区分反馈收集渠道或收集方式的单位。请考虑Channel的特性来输入信息。",
|
||||
"field": "您可以按Field单位定义在Channel中收集的反馈数据。请考虑数据类型和属性来添加Field。",
|
||||
"image-config": "收集Image格式的反馈时,可以设置Image Storage连接并设置Image URL域名的白名单。详细内容请参考Image <docs>Docs</docs>。",
|
||||
"field-preview": "根据注册的Field信息预览反馈将呈现的样子。预览使用示例数据来显示。",
|
||||
"webhook": "这是根据User Feedback中发生的事件触发器设置Webhook连接的界面。详细内容请参考Webhook <docs>Docs</docs>。",
|
||||
"ai-setting": "这是设置生成型AI集成的界面。要使用AI功能,必须输入必要信息。",
|
||||
"ai-usage": "这是检查和管理与AI功能使用相关的令牌使用量的界面。",
|
||||
"ai-field-template": "这是定义AI字段行为的界面。您可以通过模板输入指令并调整高级设置。",
|
||||
"ai-issue-recommendation": "这是设置AI问题推荐功能的界面。Channel的详细设置后,您可以使用AI问题推荐功能。"
|
||||
},
|
||||
"hint": {
|
||||
"required": "必填",
|
||||
"max-length": "请输入不超过{{length}}个字符。",
|
||||
"name-already-exists": "名称'{{name}}'已被使用。",
|
||||
"invalid-domain": "请使用有效的域名格式。",
|
||||
"image-format": "输入图片URL的格式。"
|
||||
},
|
||||
"title-box": {
|
||||
"image-storage-integration": "图片存储集成"
|
||||
},
|
||||
"v2": {
|
||||
"auth": {
|
||||
"sign-up": {
|
||||
"title": "创建账户",
|
||||
"button": {
|
||||
"request-auth-code": "请求码",
|
||||
"verify-auth-code": "验证码"
|
||||
}
|
||||
},
|
||||
"reset-password": {
|
||||
"title": "重置密码",
|
||||
"button": { "send-email": "发送邮件" }
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
"reset-password": {
|
||||
"title": "重置密码"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"name": {
|
||||
"create": "创建{{name}}",
|
||||
"delete": "删除{{name}}",
|
||||
"register": "注册{{name}}",
|
||||
"add": "添加{{name}}"
|
||||
},
|
||||
"create": "创建",
|
||||
"delete": "删除",
|
||||
"register": "注册",
|
||||
"save": "保存",
|
||||
"cancel": "取消",
|
||||
"out": "退出",
|
||||
"confirm": "确认",
|
||||
"next": "下一步",
|
||||
"previous": "上一步",
|
||||
"addFilter": "添加过滤器",
|
||||
"edit": "编辑",
|
||||
"process-ai-test": "AI测试执行",
|
||||
"setting": "设置"
|
||||
},
|
||||
"project-setting-menu": {
|
||||
"project-info": "Project信息",
|
||||
"member-mgmt": "Member管理",
|
||||
"role-mgmt": "Role管理",
|
||||
"api-key-mgmt": "API Key管理",
|
||||
"issue-tracker-mgmt": "Issue Tracker管理",
|
||||
"webhook-integration": "Webhook集成",
|
||||
"generative-ai-setting": "Generative AI 集成"
|
||||
},
|
||||
"channel-setting-menu": {
|
||||
"channel-info": "Channel信息",
|
||||
"field-mgmt": "Field管理",
|
||||
"image-mgmt": "Image管理",
|
||||
"delete-channel": "删除Channel"
|
||||
},
|
||||
"dialog": {
|
||||
"delete": {
|
||||
"title": "确定要删除吗?",
|
||||
"description": "删除后,所有相关信息都将消失。"
|
||||
},
|
||||
"warn-if-unsaved-changes": {
|
||||
"title": "确定要离开页面吗?",
|
||||
"description": "如果中途离开,输入的内容将不会被保存。"
|
||||
},
|
||||
"warn-if-saved-changes": {
|
||||
"title": "确定要离开页面吗?",
|
||||
"description": "即使中途离开,之后也可以继续。"
|
||||
},
|
||||
"no-project-in-profile-page": {
|
||||
"title": "没有所属项目。",
|
||||
"description": "您还没有所属的项目。\n请请求项目管理员将您注册为成员或进行咨询。"
|
||||
},
|
||||
"no-project-dialog-in-project-creation-page": {
|
||||
"title": "欢迎!",
|
||||
"step1-description": "在ABC User Feedback中,反馈通过Channel > Project > Tenant结构进行管理。因此,您需要同时创建Project和Channel。",
|
||||
"step2-description": "Project指的是作为反馈对象的产品。根据您管理的产品信息创建Project是个不错的选择。",
|
||||
"step3-description": "Channel指的是反馈收集方式。根据您负责的产品如何收集反馈来创建Channel是个不错的选择。"
|
||||
}
|
||||
},
|
||||
"text": {
|
||||
"no-data": {
|
||||
"default": "还没有数据。",
|
||||
"api-key": "尚未生成API Key。",
|
||||
"member": "尚未注册Member。",
|
||||
"channel": "尚未创建Channel。",
|
||||
"webhook": "尚未注册Webhook。",
|
||||
"feedback": "尚未收到Feedback。",
|
||||
"empty": "还没有数据。",
|
||||
"filter": "没有结果。\n试试更改查询或过滤条件。"
|
||||
},
|
||||
"required-step": "这是必填输入步骤。请输入必要信息。",
|
||||
"optional-step": "这是可选输入步骤。您可以稍后在设置菜单中重新输入。",
|
||||
"create-project": "创建Project",
|
||||
"create-channel": "创建Channel",
|
||||
"name": {
|
||||
"detail": "{{name}}详情",
|
||||
"add": "添加{{name}}",
|
||||
"register": "注册{{name}}",
|
||||
"create": "创建{{name}}"
|
||||
},
|
||||
"summary": "摘要",
|
||||
"preview": "预览",
|
||||
"in-progress": "进行中",
|
||||
"continue": "继续",
|
||||
"test-connection-failed": "连接测试失败",
|
||||
"all-email-domains-allow": "允许所有电子邮件域。",
|
||||
"request-email-auth": "认证请求已发送到您的邮箱。",
|
||||
"all-image-url-allow": "允许所有图片URL。",
|
||||
"select-project": "选择Project",
|
||||
"no-category": "无类别",
|
||||
"token-threshold-percentage": "达到上限的{{percentage}}%",
|
||||
"ai-issue-ready": "我将为反馈推荐相关问题。",
|
||||
"ai-issue-pending": "AI正在分析问题..."
|
||||
},
|
||||
"create-tenant": {
|
||||
"tenant": {
|
||||
"title": "创建Tenant",
|
||||
"description": "请输入将管理ABC User Feedback的公司/组织/团队名称。"
|
||||
},
|
||||
"user": {
|
||||
"title": "创建主帐户",
|
||||
"description": "首次登录需要创建一个主帐户。"
|
||||
},
|
||||
"final": {
|
||||
"title": "Tenant创建完成",
|
||||
"description": "Tenant创建已完成。\n现在尝试使用主帐户登录。"
|
||||
}
|
||||
},
|
||||
"placeholder": {
|
||||
"select": "请选择。",
|
||||
"text": "请输入。",
|
||||
"text-or-generate": "请输入或生成。",
|
||||
"ai-endpoint-url": "如果需要单独设置Endpoint URL,请输入。",
|
||||
"system-prompt": "如果生成型AI需要参考的其他内容,请输入。",
|
||||
"ai-field-template-prompt": "请输入生成型AI如何处理的指示。",
|
||||
"ai-field-reccommendation-prompt": "如果有其他指示要请求生成型AI,请输入。"
|
||||
},
|
||||
"toast": {
|
||||
"success": "处理成功。",
|
||||
"copy": "已复制到剪贴板。",
|
||||
"ai-usage-limit-approaching": {
|
||||
"title": "AI使用量接近上限",
|
||||
"description": "令牌使用量已达到上限的{{percentage}}%。"
|
||||
},
|
||||
"ai-function-terminated": {
|
||||
"title": "AI功能已终止",
|
||||
"description": "由于超过令牌使用限制,AI执行已停止。"
|
||||
}
|
||||
},
|
||||
"webhook-card": {
|
||||
"feedback-creation": {
|
||||
"title": "创建Feedback",
|
||||
"description": "每次收集到反馈都会启动事件。"
|
||||
},
|
||||
"issue-addition": {
|
||||
"title": "注册Issue",
|
||||
"description": "每次注册热点时都会启动活动。"
|
||||
},
|
||||
"issue-status-change": {
|
||||
"title": "Issue状态变更",
|
||||
"description": "每次更改热点状态时都会启动活动。"
|
||||
},
|
||||
"issue-creation": {
|
||||
"title": "创建Issue",
|
||||
"description": "每次新建热点时都会启动事件。"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"duplicated": "存在重复信息。",
|
||||
"lessThenNcharacters": "请输入{{n}}字符以内。",
|
||||
"required": "请输入。"
|
||||
},
|
||||
"description": {
|
||||
"create-project": "Project创建成功。\n接下来,需要创建Channel来收集反馈。\n请通过'创建Channel'继续下一步。",
|
||||
"create-channel": "Channel创建成功。\n现在您可以开始收集和管理用户反馈了。\n请通过'开始使用'来全面体验。",
|
||||
"remaining-token-amount": "要查看月度剩余令牌量,请先设置上限值。",
|
||||
"token-threshold": "设置每月令牌使用的上限。如果超过上限,AI功能将被停止。",
|
||||
"pre-limit-notification": "如果令牌使用量达到设置上限的80%,将发送通知。",
|
||||
"ai-field-template-form": "设置模板的基本信息。",
|
||||
"ai-field-template-advanced-configuration": "可以更改模板的集成模型和温度。",
|
||||
"ai-field-template-playground": "可以使用模板和测试数据预览AI结果。",
|
||||
"ai-issue-recommendation-form": "设置AI问题推荐的基本信息。",
|
||||
"ai-issue-recommendation-enable": "设置是否使用AI问题推荐功能。",
|
||||
"ai-issue-recommendation-advanced-configuration": "可以更改AI问题推荐的集成模型、温度和数据参考量。",
|
||||
"ai-issue-recommendation-data-reference-amount": "可以调整生成型AI参考的Issue数据量。",
|
||||
"ai-issue-recommendation-playground": "可以使用AI问题推荐设置和测试数据预览AI结果。",
|
||||
"ai-field-template-auto-processing": "可以自动执行AI字段。",
|
||||
"ai-issue-recommendation-setting-required": "AI问题推荐功能需要设置。"
|
||||
},
|
||||
"login-setting": {
|
||||
"oauth-description": "提供使用OAuth2.0登录的方式。",
|
||||
"email-description": "提供通过Email认证注册和登录的方式。"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,151 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import Image from 'next/image';
|
||||
|
||||
type ImageProps = Omit<
|
||||
React.ComponentPropsWithoutRef<typeof Image>,
|
||||
'src' | 'alt'
|
||||
>;
|
||||
|
||||
export const NodataImage = (props: ImageProps) => {
|
||||
return (
|
||||
<Image
|
||||
src="/assets/images/no-data.svg"
|
||||
alt="noData"
|
||||
width={200}
|
||||
height={200}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export const NoDataWithSearchImage = (props: ImageProps) => {
|
||||
return (
|
||||
<Image
|
||||
src="/assets/images/no-data-with-search.svg"
|
||||
alt="no-data-with-search"
|
||||
width={200}
|
||||
height={200}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
};
|
||||
export const WatingImage = (props: ImageProps) => {
|
||||
return (
|
||||
<Image
|
||||
src="/assets/images/waiting.svg"
|
||||
alt="wating"
|
||||
width={200}
|
||||
height={200}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
};
|
||||
export const OpenAIIcon = () => {
|
||||
return (
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M20.5624 10.1875C20.8124 9.5 20.8749 8.8125 20.8124 8.125C20.7499 7.4375 20.4999 6.75 20.1874 6.125C19.6249 5.1875 18.8124 4.4375 17.8749 4C16.8749 3.5625 15.8124 3.4375 14.7499 3.6875C14.2499 3.1875 13.6874 2.75 13.0624 2.4375C12.4374 2.125 11.6874 2 10.9999 2C9.9374 2 8.8749 2.3125 7.9999 2.9375C7.1249 3.5625 6.4999 4.4375 6.1874 5.4375C5.4374 5.625 4.81239 5.9375 4.18739 6.3125C3.62489 6.75 3.1874 7.3125 2.8124 7.875C2.24991 8.8125 2.06241 9.875 2.18741 10.9375C2.31241 12 2.7499 13 3.4374 13.8125C3.1874 14.5 3.1249 15.1875 3.1874 15.875C3.2499 16.5625 3.4999 17.25 3.8124 17.875C4.3749 18.8125 5.18739 19.5625 6.12489 20C7.1249 20.4375 8.1874 20.5625 9.2499 20.3125C9.7499 20.8125 10.3124 21.25 10.9374 21.5625C11.5624 21.875 12.3124 22 12.9999 22C14.0624 22 15.1249 21.6875 15.9999 21.0625C16.8749 20.4375 17.4999 19.5625 17.8124 18.5625C18.4999 18.4375 19.1874 18.125 19.7499 17.6875C20.3124 17.25 20.8124 16.75 21.1249 16.125C21.6874 15.1875 21.8749 14.125 21.7499 13.0625C21.6249 12 21.2499 11 20.5624 10.1875ZM13.0624 20.6875C12.0624 20.6875 11.3124 20.375 10.6249 19.8125C10.6249 19.8125 10.6874 19.75 10.7499 19.75L14.7499 17.4375C14.8749 17.375 14.9374 17.3125 14.9999 17.1875C15.0624 17.0625 15.0624 17 15.0624 16.875V11.25L16.7499 12.25V16.875C16.8124 19.0625 15.0624 20.6875 13.0624 20.6875ZM4.99989 17.25C4.56239 16.5 4.37489 15.625 4.56239 14.75C4.56239 14.75 4.62489 14.8125 4.68739 14.8125L8.6874 17.125C8.8124 17.1875 8.8749 17.1875 8.9999 17.1875C9.1249 17.1875 9.2499 17.1875 9.3124 17.125L14.1874 14.3125V16.25L10.1249 18.625C9.2499 19.125 8.2499 19.25 7.3124 19C6.3124 18.75 5.49989 18.125 4.99989 17.25ZM3.9374 8.5625C4.3749 7.8125 5.06239 7.25 5.87489 6.9375V7.0625V11.6875C5.87489 11.8125 5.87489 11.9375 5.93739 12C5.99989 12.125 6.0624 12.1875 6.1874 12.25L11.0624 15.0625L9.3749 16.0625L5.37489 13.75C4.49989 13.25 3.8749 12.4375 3.6249 11.5C3.3749 10.5625 3.4374 9.4375 3.9374 8.5625ZM17.7499 11.75L12.8749 8.9375L14.5624 7.9375L18.5624 10.25C19.1874 10.625 19.6874 11.125 19.9999 11.75C20.3124 12.375 20.4999 13.0625 20.4374 13.8125C20.3749 14.5 20.1249 15.1875 19.6874 15.75C19.2499 16.3125 18.6874 16.75 17.9999 17V12.25C17.9999 12.125 17.9999 12 17.9374 11.9375C17.9374 11.9375 17.8749 11.8125 17.7499 11.75ZM19.4374 9.25C19.4374 9.25 19.3749 9.1875 19.3124 9.1875L15.3124 6.875C15.1874 6.8125 15.1249 6.8125 14.9999 6.8125C14.8749 6.8125 14.7499 6.8125 14.6874 6.875L9.8124 9.6875V7.75L13.8749 5.375C14.4999 5 15.1874 4.875 15.9374 4.875C16.6249 4.875 17.3124 5.125 17.9374 5.5625C18.4999 6 18.9999 6.5625 19.2499 7.1875C19.4999 7.8125 19.5624 8.5625 19.4374 9.25ZM8.9374 12.75L7.2499 11.75V7.0625C7.2499 6.375 7.4374 5.625 7.8124 5.0625C8.1874 4.4375 8.7499 4 9.3749 3.6875C9.9999 3.375 10.7499 3.25 11.4374 3.375C12.1249 3.4375 12.8124 3.75 13.3749 4.1875C13.3749 4.1875 13.3124 4.25 13.2499 4.25L9.2499 6.5625C9.1249 6.625 9.0624 6.6875 8.9999 6.8125C8.9374 6.9375 8.9374 7 8.9374 7.125V12.75ZM9.8124 10.75L11.9999 9.5L14.1874 10.75V13.25L11.9999 14.5L9.8124 13.25V10.75Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
|
||||
export const GeminiIcon = () => {
|
||||
return (
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<g clip-path="url(#clip0_8062_155)">
|
||||
<path
|
||||
d="M23.9996 12.0235C17.5625 12.4117 12.4114 17.563 12.0232 24H11.9762C11.588 17.563 6.4369 12.4117 0 12.0235V11.9765C6.4369 11.5883 11.588 6.43719 11.9762 0H12.0232C12.4114 6.43719 17.5625 11.5883 23.9996 11.9765V12.0235Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8062_155">
|
||||
<rect width="24" height="24" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
|
||||
export const AISparklingIcon = (props: ImageProps) => {
|
||||
return (
|
||||
<Image
|
||||
src="/assets/images/ai-sparkling-fill.svg"
|
||||
alt="ai-sparkling-fill"
|
||||
width={16}
|
||||
height={16}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
};
|
||||
export const AIGenerateIcon = () => {
|
||||
return (
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M6 3.59961H12.4004V4.40039H6C4.56406 4.40039 3.40039 5.56406 3.40039 7V17C3.40039 18.436 4.56406 19.5996 6 19.5996H18C19.436 19.5996 20.5996 18.436 20.5996 17V12.5996H21.4004V17C21.4004 18.8777 19.8777 20.4004 18 20.4004H6C4.12223 20.4004 2.59961 18.8777 2.59961 17V7C2.59961 5.12223 4.12223 3.59961 6 3.59961ZM19.1973 2.59961C19.4547 4.24564 20.7544 5.54527 22.4004 5.80273V6.19629C20.7543 6.4537 19.4547 7.75432 19.1973 9.40039H18.8027C18.5453 7.75432 17.2457 6.4537 15.5996 6.19629V5.80273C17.2456 5.54527 18.5453 4.24564 18.8027 2.59961H19.1973Z"
|
||||
fill="url(#paint0_linear_12996_14077)"
|
||||
stroke="url(#paint1_linear_12996_14077)"
|
||||
stroke-width="1.2"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="paint0_linear_12996_14077"
|
||||
x1="12.5"
|
||||
y1="2"
|
||||
x2="12.5"
|
||||
y2="21"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="#2DD4BF" />
|
||||
<stop offset="1" stop-color="#0EA5E9" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear_12996_14077"
|
||||
x1="12.5"
|
||||
y1="2"
|
||||
x2="12.5"
|
||||
y2="21"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stop-color="#2DD4BF" />
|
||||
<stop offset="1" stop-color="#0EA5E9" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
@@ -0,0 +1,43 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import { z } from 'zod';
|
||||
|
||||
export const aiSchema = z.object({
|
||||
provider: z.enum(['OPEN_AI', 'GEMINI']),
|
||||
apiKey: z.string().trim().min(1, { message: 'API Key is required' }),
|
||||
endpointUrl: z.string().trim(),
|
||||
systemPrompt: z.string().trim(),
|
||||
tokenThreshold: z.number().nullable(),
|
||||
notificationThreshold: z.number().nullable(),
|
||||
});
|
||||
|
||||
export const aiTemplateSchema = z.object({
|
||||
title: z.string().trim().min(1).max(30),
|
||||
prompt: z.string().trim().min(1),
|
||||
model: z.string(),
|
||||
temperature: z.number(),
|
||||
});
|
||||
|
||||
export const aiIssueSchema = z.object({
|
||||
channelId: z.number().int(),
|
||||
targetFieldKeys: z.array(z.string()).min(1),
|
||||
prompt: z.string().trim(),
|
||||
isEnabled: z.boolean(),
|
||||
model: z.string(),
|
||||
temperature: z.number(),
|
||||
dataReferenceAmount: z.number(),
|
||||
});
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import type { z } from 'zod';
|
||||
|
||||
import type { aiIssueSchema, aiSchema, aiTemplateSchema } from './ai.schema';
|
||||
|
||||
export type AI = z.infer<typeof aiSchema>;
|
||||
export type AITemplate = z.infer<typeof aiTemplateSchema>;
|
||||
export type AIIssue = z.infer<typeof aiIssueSchema>;
|
||||
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export * from './ui';
|
||||
export * from './ai.type';
|
||||
export * from './ai.schema';
|
||||
export * from './lib';
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as useCheckAIUsageLimit } from './use-check-ai-usage-limit';
|
||||
@@ -0,0 +1,115 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useEffect } from 'react';
|
||||
import dayjs from 'dayjs';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import { useLocalStorage } from 'react-use';
|
||||
|
||||
import { Icon, toast } from '@ufb/react';
|
||||
|
||||
import { useOAIQuery } from '@/shared';
|
||||
|
||||
const useCheckAIUsageLimit = (projectId: number) => {
|
||||
const { t } = useTranslation();
|
||||
const { data: aiIntegrations } = useOAIQuery({
|
||||
path: '/api/admin/projects/{projectId}/ai/integrations',
|
||||
variables: { projectId },
|
||||
});
|
||||
const { data: aiUsageLimit } = useOAIQuery({
|
||||
path: '/api/admin/projects/{projectId}/ai/usages',
|
||||
variables: {
|
||||
projectId,
|
||||
from: dayjs().startOf('month').toISOString(),
|
||||
to: dayjs().endOf('month').toISOString(),
|
||||
},
|
||||
});
|
||||
|
||||
const [checkedTotalLimitTime, setCheckedTotalLimitTime] =
|
||||
useLocalStorage<string>(
|
||||
`totalLimit-${projectId}-${dayjs().format('YYYY-MM')}`,
|
||||
);
|
||||
const [isCheckedNotificationLimit, setIsCheckedNotificationLimit] =
|
||||
useLocalStorage(
|
||||
`notificationLimit-${projectId}-${dayjs().format('YYYY-MM')}`,
|
||||
false,
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
if (!aiIntegrations?.apiKey) return;
|
||||
|
||||
if (aiUsageLimit) {
|
||||
const totalUsage = aiUsageLimit.reduce(
|
||||
(acc, usage) => acc + usage.usedTokens,
|
||||
0,
|
||||
);
|
||||
const totalLimit = aiIntegrations.tokenThreshold;
|
||||
if (!totalLimit) return;
|
||||
if (totalUsage >= totalLimit) {
|
||||
if (
|
||||
!checkedTotalLimitTime ||
|
||||
dayjs(checkedTotalLimitTime).add(1, 'day').isBefore(dayjs())
|
||||
) {
|
||||
setCheckedTotalLimitTime(dayjs().toISOString());
|
||||
const toastId = toast.error(
|
||||
t('v2.toast.ai-function-terminated.title'),
|
||||
{
|
||||
description: t('v2.toast.ai-function-terminated.description'),
|
||||
cancel: {
|
||||
label: <Icon name="RiCloseFill" size={20} />,
|
||||
onClick: () => {
|
||||
toast.dismiss(toastId);
|
||||
},
|
||||
},
|
||||
duration: Infinity,
|
||||
},
|
||||
);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
const notificationLimit = aiIntegrations.notificationThreshold;
|
||||
if (!notificationLimit) return;
|
||||
if (totalUsage >= notificationLimit) {
|
||||
if (!isCheckedNotificationLimit) {
|
||||
const toastId = toast.warning(
|
||||
t('v2.toast.ai-usage-limit-approaching.title'),
|
||||
{
|
||||
description: t(
|
||||
'v2.toast.ai-usage-limit-approaching.description',
|
||||
{
|
||||
percentage: Math.round(
|
||||
(notificationLimit / totalLimit) * 100,
|
||||
),
|
||||
},
|
||||
),
|
||||
cancel: {
|
||||
label: <Icon name="RiCloseFill" size={20} />,
|
||||
onClick: () => {
|
||||
toast.dismiss(toastId);
|
||||
},
|
||||
},
|
||||
duration: Infinity,
|
||||
},
|
||||
);
|
||||
setIsCheckedNotificationLimit(true);
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
}, [aiUsageLimit, aiIntegrations]);
|
||||
};
|
||||
|
||||
export default useCheckAIUsageLimit;
|
||||
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import { memo } from 'react';
|
||||
|
||||
import { Icon } from '@ufb/react';
|
||||
|
||||
import { LoadingBars } from '@/features/update-ai-setting/ui/playground-output-card.ui';
|
||||
|
||||
interface Props {
|
||||
value:
|
||||
| { status: 'loading' | 'success' | 'error'; message: string }
|
||||
| undefined;
|
||||
isLoading?: boolean;
|
||||
}
|
||||
const AICell = memo((props: Props) => {
|
||||
const { value, isLoading } = props;
|
||||
|
||||
if (!value) return null;
|
||||
|
||||
return (
|
||||
<>
|
||||
{value.status === 'loading' || isLoading ?
|
||||
<LoadingBars width={410} />
|
||||
: value.status === 'error' ?
|
||||
<div className="text-tint-red">
|
||||
<Icon name="RiErrorWarningFill" className="mr-2" size={16} />
|
||||
<span>{value.message}</span>
|
||||
</div>
|
||||
: <p>{value.message}</p>}
|
||||
</>
|
||||
);
|
||||
});
|
||||
export default AICell;
|
||||
@@ -0,0 +1,102 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useState } from 'react';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import { useFormContext } from 'react-hook-form';
|
||||
|
||||
import { FormField, RadioCard, RadioCardGroup } from '@ufb/react';
|
||||
|
||||
import { FormInput, FormTextarea } from '@/shared/ui/form-inputs';
|
||||
|
||||
import { GeminiIcon, OpenAIIcon } from '@/assets';
|
||||
import type { AI } from '../ai.type';
|
||||
|
||||
const AiSettingForm = () => {
|
||||
const { setValue, watch, control } = useFormContext<AI>();
|
||||
const { t } = useTranslation();
|
||||
const [previousValues, setPreviousValues] = useState<
|
||||
Record<AI['provider'], { apiKey: string; endpointUrl: string }>
|
||||
>({
|
||||
GEMINI: { apiKey: '', endpointUrl: '' },
|
||||
OPEN_AI: { apiKey: '', endpointUrl: '' },
|
||||
});
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-4">
|
||||
<RadioCardGroup
|
||||
value={watch('provider')}
|
||||
onValueChange={(currentProvider: 'OPEN_AI' | 'GEMINI') => {
|
||||
const {
|
||||
apiKey: previousApiKey,
|
||||
provider: previousProvider,
|
||||
endpointUrl: previousEndpointUrl,
|
||||
} = watch();
|
||||
|
||||
setPreviousValues((prev) => ({
|
||||
...prev,
|
||||
[previousProvider]: {
|
||||
apiKey: previousApiKey,
|
||||
endpointUrl: previousEndpointUrl,
|
||||
},
|
||||
}));
|
||||
|
||||
setValue('provider', currentProvider, { shouldDirty: true });
|
||||
setValue('apiKey', previousValues[currentProvider].apiKey);
|
||||
setValue('endpointUrl', previousValues[currentProvider].endpointUrl);
|
||||
}}
|
||||
>
|
||||
<RadioCard value="OPEN_AI" icon={<OpenAIIcon />} title="Open AI" />
|
||||
<RadioCard value="GEMINI" icon={<GeminiIcon />} title="Gemini" />
|
||||
</RadioCardGroup>
|
||||
<FormField
|
||||
control={control}
|
||||
name="apiKey"
|
||||
render={({ field }) => (
|
||||
<FormInput
|
||||
label="API Key"
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
{...field}
|
||||
required
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
<FormField
|
||||
control={control}
|
||||
name="endpointUrl"
|
||||
render={({ field }) => (
|
||||
<FormInput
|
||||
label="Endpoint URL"
|
||||
placeholder={t('v2.placeholder.ai-endpoint-url')}
|
||||
{...field}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
<FormField
|
||||
control={control}
|
||||
name="systemPrompt"
|
||||
render={({ field }) => (
|
||||
<FormTextarea
|
||||
label="System Prompt"
|
||||
placeholder={t('v2.placeholder.system-prompt')}
|
||||
{...field}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AiSettingForm;
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as AiSettingForm } from './ai-setting-form.ui';
|
||||
export { default as AICell } from './ai-feedback-cell.ui';
|
||||
@@ -0,0 +1,52 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import { createColumnHelper } from '@tanstack/react-table';
|
||||
import dayjs from 'dayjs';
|
||||
|
||||
import { Badge } from '@ufb/react';
|
||||
|
||||
import { CopyIconButton, DATE_TIME_FORMAT } from '@/shared';
|
||||
|
||||
import type { ApiKey } from './api-key.type';
|
||||
|
||||
const columnHelper = createColumnHelper<ApiKey>();
|
||||
|
||||
export const getApiKeyColumns = () => [
|
||||
columnHelper.accessor('value', {
|
||||
header: 'API KEY',
|
||||
cell: ({ getValue }) => (
|
||||
<div className="text-base-strong flex items-center">
|
||||
{getValue()}
|
||||
<CopyIconButton data={getValue()} />
|
||||
</div>
|
||||
),
|
||||
enableSorting: false,
|
||||
}),
|
||||
columnHelper.accessor('deletedAt', {
|
||||
header: 'Status',
|
||||
cell: ({ getValue }) => (
|
||||
<Badge color={getValue() === null ? 'green' : 'red'} radius="large">
|
||||
{getValue() === null ? 'Active' : 'Inactive'}
|
||||
</Badge>
|
||||
),
|
||||
enableSorting: false,
|
||||
}),
|
||||
columnHelper.accessor('createdAt', {
|
||||
header: 'Created',
|
||||
cell: ({ getValue }) => dayjs(getValue()).format(DATE_TIME_FORMAT),
|
||||
}),
|
||||
];
|
||||
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { z } from 'zod';
|
||||
|
||||
export const apiKeySchema = z.object({
|
||||
id: z.number(),
|
||||
value: z.string(),
|
||||
createdAt: z.string(),
|
||||
deletedAt: z.string().nullable(),
|
||||
});
|
||||
|
||||
export const apiKeyFormSchema = z.object({
|
||||
value: z.string(),
|
||||
status: z.union([z.literal('active'), z.literal('inactive')]),
|
||||
});
|
||||
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import type { z } from 'zod';
|
||||
|
||||
import type { apiKeyFormSchema, apiKeySchema } from './api-key.schema';
|
||||
|
||||
export type ApiKey = z.infer<typeof apiKeySchema>;
|
||||
export type ApiKeyUpdateType = 'recover' | 'softDelete';
|
||||
export type ApiKeyFormSchema = z.infer<typeof apiKeyFormSchema>;
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export * from './ui';
|
||||
export * from './api-key.type';
|
||||
@@ -0,0 +1,84 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { zodResolver } from '@hookform/resolvers/zod';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import { useForm } from 'react-hook-form';
|
||||
|
||||
import type { FormOverlayProps } from '@/shared';
|
||||
import { FormDialog, SelectInput, TextInput } from '@/shared';
|
||||
|
||||
import { apiKeyFormSchema } from '../api-key.schema';
|
||||
import type { ApiKeyFormSchema } from '../api-key.type';
|
||||
|
||||
interface Props extends FormOverlayProps<ApiKeyFormSchema> {}
|
||||
|
||||
const ApiKeyFormDialog: React.FC<Props> = (props) => {
|
||||
const {
|
||||
data,
|
||||
close,
|
||||
isOpen,
|
||||
onSubmit,
|
||||
onClickDelete,
|
||||
disabledDelete,
|
||||
disabledUpdate,
|
||||
} = props;
|
||||
const { t } = useTranslation();
|
||||
|
||||
const { register, watch, setValue, handleSubmit, formState } =
|
||||
useForm<ApiKeyFormSchema>({
|
||||
resolver: zodResolver(apiKeyFormSchema),
|
||||
defaultValues: data,
|
||||
});
|
||||
|
||||
const { status } = watch();
|
||||
|
||||
return (
|
||||
<FormDialog
|
||||
isOpen={isOpen}
|
||||
close={close}
|
||||
title={t('v2.text.name.detail', { name: 'API Key' })}
|
||||
submitBtn={{ form: 'apiKeyForm', disabled: disabledUpdate }}
|
||||
deleteBtn={{
|
||||
disabled: !!disabledDelete,
|
||||
onClick: onClickDelete,
|
||||
}}
|
||||
formState={formState}
|
||||
>
|
||||
<form
|
||||
id="apiKeyForm"
|
||||
className="flex flex-col gap-4"
|
||||
onSubmit={handleSubmit(onSubmit)}
|
||||
>
|
||||
<TextInput {...register('value')} label="API Key" disabled />
|
||||
<SelectInput
|
||||
label="Status"
|
||||
options={[
|
||||
{ label: 'Active', value: 'active' },
|
||||
{ label: 'Inactive', value: 'inactive' },
|
||||
]}
|
||||
value={status}
|
||||
onChange={(value) =>
|
||||
setValue('status', value as 'active' | 'inactive', {
|
||||
shouldDirty: true,
|
||||
})
|
||||
}
|
||||
/>
|
||||
</form>
|
||||
</FormDialog>
|
||||
);
|
||||
};
|
||||
|
||||
export default ApiKeyFormDialog;
|
||||
@@ -0,0 +1,94 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useMemo } from 'react';
|
||||
import {
|
||||
getCoreRowModel,
|
||||
getSortedRowModel,
|
||||
useReactTable,
|
||||
} from '@tanstack/react-table';
|
||||
import { useOverlay } from '@toss/use-overlay';
|
||||
|
||||
import type { EntityTable } from '@/shared';
|
||||
import { BasicTable } from '@/shared';
|
||||
|
||||
import { getApiKeyColumns } from '../api-key-columns';
|
||||
import type { ApiKey, ApiKeyUpdateType } from '../api-key.type';
|
||||
import ApiKeyFormDialog from './api-key-form-dialog.ui';
|
||||
|
||||
interface IProps extends Omit<EntityTable<ApiKey>, 'onClickRow'> {
|
||||
onClickDelete?: (id: number) => Promise<void> | void;
|
||||
onClickUpdate?: (type: ApiKeyUpdateType, id: number) => Promise<void> | void;
|
||||
disabledUpdate?: boolean;
|
||||
}
|
||||
|
||||
const ApiKeyTable: React.FC<IProps> = (props) => {
|
||||
const {
|
||||
isLoading,
|
||||
onClickDelete,
|
||||
onClickUpdate,
|
||||
createButton,
|
||||
data,
|
||||
disabledUpdate,
|
||||
disabledDelete,
|
||||
} = props;
|
||||
|
||||
const overlay = useOverlay();
|
||||
const columns = useMemo(() => getApiKeyColumns(), []);
|
||||
|
||||
const table = useReactTable({
|
||||
columns,
|
||||
data,
|
||||
getCoreRowModel: getCoreRowModel(),
|
||||
getSortedRowModel: getSortedRowModel(),
|
||||
});
|
||||
|
||||
const openApiKeyDialog = (apiKey: ApiKey) => {
|
||||
overlay.open(({ close, isOpen }) => (
|
||||
<ApiKeyFormDialog
|
||||
close={close}
|
||||
isOpen={isOpen}
|
||||
data={{
|
||||
status: apiKey.deletedAt === null ? 'active' : 'inactive',
|
||||
value: apiKey.value,
|
||||
}}
|
||||
onSubmit={async (input) => {
|
||||
await onClickUpdate?.(
|
||||
input.status === 'active' ? 'recover' : 'softDelete',
|
||||
apiKey.id,
|
||||
);
|
||||
close();
|
||||
}}
|
||||
onClickDelete={async () => {
|
||||
await onClickDelete?.(apiKey.id);
|
||||
close();
|
||||
}}
|
||||
disabledDelete={disabledDelete}
|
||||
disabledUpdate={disabledUpdate}
|
||||
/>
|
||||
));
|
||||
};
|
||||
|
||||
return (
|
||||
<BasicTable
|
||||
isLoading={isLoading}
|
||||
table={table}
|
||||
createButton={createButton}
|
||||
onClickRow={(_, row) => openApiKeyDialog(row)}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default ApiKeyTable;
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as ApiKeyTable } from './api-key-table.ui';
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import { z } from 'zod';
|
||||
|
||||
export const categorySchema = z.object({
|
||||
id: z.number(),
|
||||
name: z.string().trim(),
|
||||
});
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import type { z } from 'zod';
|
||||
|
||||
import type { categorySchema } from './category.schema';
|
||||
|
||||
export type Category = z.infer<typeof categorySchema>;
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export * from './category.type';
|
||||
export * from './ui';
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as useCategorySearchInfinite } from './use-category-search-infinite';
|
||||
@@ -0,0 +1,76 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useInfiniteQuery } from '@tanstack/react-query';
|
||||
|
||||
import type { OAIMutationResponse, OAIRequestBody } from '@/shared';
|
||||
import { client } from '@/shared';
|
||||
|
||||
type TData = OAIMutationResponse<
|
||||
'/api/admin/projects/{projectId}/categories/search',
|
||||
'post'
|
||||
>;
|
||||
|
||||
interface IBody
|
||||
extends OAIRequestBody<
|
||||
'/api/admin/projects/{projectId}/categories/search',
|
||||
'post'
|
||||
> {}
|
||||
|
||||
const useCategorySearchInfinite = (
|
||||
projectId: number,
|
||||
body: IBody = { limit: 10, page: 1, sort: {} },
|
||||
) => {
|
||||
return useInfiniteQuery<TData>({
|
||||
queryKey: [
|
||||
'/api/admin/projects/{projectId}/categories/search',
|
||||
projectId,
|
||||
body,
|
||||
],
|
||||
queryFn: async ({ pageParam }) => {
|
||||
const { data: result } = await client.post({
|
||||
path: '/api/admin/projects/{projectId}/categories/search',
|
||||
pathParams: { projectId },
|
||||
body: { ...body, page: pageParam as number },
|
||||
});
|
||||
return result;
|
||||
},
|
||||
getNextPageParam: (lastPage) => {
|
||||
if (!lastPage) return undefined;
|
||||
if (lastPage.meta.currentPage < lastPage.meta.totalPages) {
|
||||
return lastPage.meta.currentPage + 1;
|
||||
}
|
||||
return undefined;
|
||||
},
|
||||
initialPageParam: 1,
|
||||
initialData: {
|
||||
pageParams: [],
|
||||
pages: [
|
||||
{
|
||||
items: [],
|
||||
meta: {
|
||||
currentPage: 1,
|
||||
totalPages: 0,
|
||||
totalItems: 0,
|
||||
itemCount: 0,
|
||||
itemsPerPage: 0,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
export default useCategorySearchInfinite;
|
||||
@@ -0,0 +1,125 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import { useState } from 'react';
|
||||
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
|
||||
import {
|
||||
Badge,
|
||||
Dropdown,
|
||||
DropdownContent,
|
||||
DropdownItem,
|
||||
DropdownTrigger,
|
||||
Icon,
|
||||
TextInput,
|
||||
toast,
|
||||
} from '@ufb/react';
|
||||
|
||||
import { client } from '@/shared';
|
||||
import type { Category } from '@/entities/category';
|
||||
|
||||
interface Props {
|
||||
projectId: number;
|
||||
cateogry: Category;
|
||||
}
|
||||
|
||||
const CategoryComboboxEditPopover = (props: Props) => {
|
||||
const { projectId, cateogry } = props;
|
||||
|
||||
const { t } = useTranslation();
|
||||
const queryClient = useQueryClient();
|
||||
|
||||
const refetch = async () => {
|
||||
await queryClient.invalidateQueries({
|
||||
queryKey: ['/api/admin/projects/{projectId}/categories/search'],
|
||||
});
|
||||
await queryClient.invalidateQueries({
|
||||
queryKey: ['/api/admin/projects/{projectId}/issues/search'],
|
||||
});
|
||||
};
|
||||
|
||||
const [inputValue, setInputValue] = useState(cateogry.name);
|
||||
|
||||
const { mutate: updateCategory } = useMutation({
|
||||
mutationFn: async ({ name }: { name: string }) => {
|
||||
const { data } = await client.put({
|
||||
path: '/api/admin/projects/{projectId}/categories/{categoryId}',
|
||||
pathParams: { projectId, categoryId: cateogry.id },
|
||||
body: { name },
|
||||
});
|
||||
return data;
|
||||
},
|
||||
async onSuccess() {
|
||||
await refetch();
|
||||
toast.success(t('v2.toast.success'));
|
||||
},
|
||||
onError(error) {
|
||||
toast.error(error.message);
|
||||
},
|
||||
});
|
||||
const { mutate: deleteCategory } = useMutation({
|
||||
mutationFn: async () => {
|
||||
const { data } = await client.delete({
|
||||
path: '/api/admin/projects/{projectId}/categories/{categoryId}',
|
||||
pathParams: { projectId, categoryId: cateogry.id },
|
||||
});
|
||||
return data;
|
||||
},
|
||||
async onSuccess() {
|
||||
await refetch();
|
||||
toast.success(t('v2.toast.success'));
|
||||
},
|
||||
onError(error) {
|
||||
toast.error(error.message);
|
||||
},
|
||||
});
|
||||
return (
|
||||
<Dropdown>
|
||||
<DropdownTrigger asChild>
|
||||
<Badge variant="subtle" onClick={(e) => e.stopPropagation()}>
|
||||
Edit
|
||||
</Badge>
|
||||
</DropdownTrigger>
|
||||
<DropdownContent onClick={(e) => e.stopPropagation()} side="right">
|
||||
<div className="border-b">
|
||||
<TextInput
|
||||
className="border-none"
|
||||
value={inputValue}
|
||||
onChange={(e) => setInputValue(e.currentTarget.value)}
|
||||
onKeyDown={(e) => {
|
||||
if (e.key === 'Enter') {
|
||||
e.stopPropagation();
|
||||
const name = inputValue.trim();
|
||||
updateCategory({ name });
|
||||
setInputValue(name);
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<DropdownItem
|
||||
className="gap-2"
|
||||
onSelect={() => deleteCategory(undefined)}
|
||||
>
|
||||
<Icon name="RiDeleteBin5Fill" size={16} />
|
||||
Delete Category
|
||||
</DropdownItem>
|
||||
</DropdownContent>
|
||||
</Dropdown>
|
||||
);
|
||||
};
|
||||
|
||||
export default CategoryComboboxEditPopover;
|
||||
@@ -0,0 +1,240 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import React, { useMemo, useState } from 'react';
|
||||
import { useRouter } from 'next/router';
|
||||
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import { useThrottle } from 'react-use';
|
||||
|
||||
import {
|
||||
Combobox,
|
||||
ComboboxContent,
|
||||
ComboboxGroup,
|
||||
ComboboxInput,
|
||||
ComboboxItem,
|
||||
ComboboxList,
|
||||
ComboboxTrigger,
|
||||
toast,
|
||||
} from '@ufb/react';
|
||||
|
||||
import {
|
||||
client,
|
||||
cn,
|
||||
commandFilter,
|
||||
InfiniteScrollArea,
|
||||
usePermissions,
|
||||
} from '@/shared';
|
||||
import type { Category } from '@/entities/category';
|
||||
|
||||
import { useCategorySearchInfinite } from '../lib';
|
||||
import CategoryComboboxEditPopover from './category-combobox-edit-popover.ui';
|
||||
|
||||
interface Props extends React.PropsWithChildren {
|
||||
category?: Category | null;
|
||||
issueId: number;
|
||||
}
|
||||
const CategoryCombobox = (props: Props) => {
|
||||
const { category, issueId, children } = props;
|
||||
|
||||
const perms = usePermissions();
|
||||
const router = useRouter();
|
||||
const projectId = Number(router.query.projectId);
|
||||
const { t } = useTranslation();
|
||||
|
||||
const [inputValue, setInputValue] = useState('');
|
||||
const throttledvalue = useThrottle(inputValue, 500);
|
||||
|
||||
const queryClient = useQueryClient();
|
||||
|
||||
const { data, fetchNextPage, hasNextPage, isFetchingNextPage } =
|
||||
useCategorySearchInfinite(Number(projectId), {
|
||||
limit: 10,
|
||||
categoryName: throttledvalue,
|
||||
sort: { name: 'ASC' },
|
||||
});
|
||||
|
||||
const allcategories = useMemo(() => {
|
||||
return data.pages
|
||||
.map((v) => v?.items)
|
||||
.filter((v) => !!v)
|
||||
.flat();
|
||||
}, [data]);
|
||||
|
||||
const refetch = async () => {
|
||||
await queryClient.invalidateQueries({
|
||||
queryKey: ['/api/admin/projects/{projectId}/categories/search'],
|
||||
});
|
||||
await queryClient.invalidateQueries({
|
||||
queryKey: ['/api/admin/projects/{projectId}/issues/search'],
|
||||
});
|
||||
};
|
||||
|
||||
const { mutate: attachCategory } = useMutation({
|
||||
mutationFn: async ({ categoryId }: { categoryId: number }) => {
|
||||
const { data } = await client.put({
|
||||
path: '/api/admin/projects/{projectId}/issues/{issueId}/category/{categoryId}',
|
||||
pathParams: { projectId, issueId, categoryId },
|
||||
});
|
||||
return data;
|
||||
},
|
||||
async onSuccess() {
|
||||
await refetch();
|
||||
toast.success(t('v2.toast.success'));
|
||||
},
|
||||
onError(error) {
|
||||
toast.error(error.message);
|
||||
},
|
||||
});
|
||||
const { mutate: detachCategory } = useMutation({
|
||||
mutationFn: async ({ categoryId }: { categoryId: number }) => {
|
||||
const { data } = await client.delete({
|
||||
path: '/api/admin/projects/{projectId}/issues/{issueId}/category/{categoryId}',
|
||||
pathParams: { projectId, issueId, categoryId },
|
||||
});
|
||||
return data;
|
||||
},
|
||||
async onSuccess() {
|
||||
await refetch();
|
||||
toast.success(t('v2.toast.success'));
|
||||
},
|
||||
onError(error) {
|
||||
toast.error(error.message);
|
||||
},
|
||||
});
|
||||
|
||||
const { mutateAsync: createCategory } = useMutation({
|
||||
mutationFn: async ({ name }: { name: string }) => {
|
||||
const { data } = await client.post({
|
||||
path: '/api/admin/projects/{projectId}/categories',
|
||||
pathParams: { projectId },
|
||||
body: { name },
|
||||
});
|
||||
return data;
|
||||
},
|
||||
async onSuccess() {
|
||||
await refetch();
|
||||
setInputValue('');
|
||||
toast.success(t('v2.toast.success'));
|
||||
},
|
||||
onError(error) {
|
||||
toast.error(error.message);
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<Combobox>
|
||||
<ComboboxTrigger asChild>
|
||||
<button
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
disabled={!perms.includes('issue_update')}
|
||||
className={cn(
|
||||
{ 'opacity-50': !perms.includes('issue_update') },
|
||||
'w-fit',
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
</button>
|
||||
</ComboboxTrigger>
|
||||
<ComboboxContent options={{ filter: commandFilter }}>
|
||||
<ComboboxInput
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
onValueChange={(value) => setInputValue(value)}
|
||||
value={inputValue}
|
||||
/>
|
||||
<ComboboxList onClick={(e) => e.stopPropagation()} maxHeight="200px">
|
||||
<ComboboxGroup
|
||||
heading={
|
||||
<span className="text-neutral-tertiary text-base-normal">
|
||||
Selected Category
|
||||
</span>
|
||||
}
|
||||
>
|
||||
{allcategories
|
||||
.filter((v) => category?.id === v.id)
|
||||
.map(({ id, name }) => (
|
||||
<ComboboxItem
|
||||
key={id}
|
||||
value={name}
|
||||
onSelect={() => {
|
||||
if (category?.id === id) detachCategory({ categoryId: id });
|
||||
if (category?.id !== id) attachCategory({ categoryId: id });
|
||||
}}
|
||||
>
|
||||
<span className="flex-1">{name}</span>
|
||||
<span className="text-neutral-tertiary text-small-normal">
|
||||
Remove
|
||||
</span>
|
||||
</ComboboxItem>
|
||||
))}
|
||||
</ComboboxGroup>
|
||||
<ComboboxGroup
|
||||
heading={
|
||||
<span className="text-neutral-tertiary text-base-normal">
|
||||
Category List
|
||||
</span>
|
||||
}
|
||||
>
|
||||
{allcategories
|
||||
.filter((v) => category?.id !== v.id)
|
||||
.map(({ id, name }) => (
|
||||
<ComboboxItem
|
||||
key={id}
|
||||
value={name}
|
||||
onSelect={() => {
|
||||
if (category?.id === id) detachCategory({ categoryId: id });
|
||||
if (category?.id !== id) attachCategory({ categoryId: id });
|
||||
}}
|
||||
>
|
||||
<span className="flex-1">{name}</span>
|
||||
<CategoryComboboxEditPopover
|
||||
projectId={projectId}
|
||||
cateogry={{ id, name }}
|
||||
/>
|
||||
</ComboboxItem>
|
||||
))}
|
||||
<InfiniteScrollArea
|
||||
fetchNextPage={fetchNextPage}
|
||||
hasNextPage={hasNextPage}
|
||||
isFetchingNextPage={isFetchingNextPage}
|
||||
/>
|
||||
</ComboboxGroup>
|
||||
{!!inputValue &&
|
||||
perms.includes('issue_update') &&
|
||||
!allcategories.some((v) => v.name === inputValue) && (
|
||||
<div
|
||||
className="combobox-item"
|
||||
onClick={async () => {
|
||||
const name = inputValue.trim();
|
||||
const data = await createCategory({ name });
|
||||
if (!data) return;
|
||||
setInputValue(name);
|
||||
attachCategory({ categoryId: data.id });
|
||||
}}
|
||||
>
|
||||
<span className="flex-1">{inputValue}</span>
|
||||
<span className="text-neutral-tertiary text-small-normal">
|
||||
Create
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
</ComboboxList>
|
||||
</ComboboxContent>
|
||||
</Combobox>
|
||||
);
|
||||
};
|
||||
|
||||
export default CategoryCombobox;
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as CategoryCombobox } from './category-combobox.ui';
|
||||
@@ -0,0 +1,49 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { i18n } from 'next-i18next';
|
||||
import { z } from 'zod';
|
||||
|
||||
export const channelImageConfigSchema = z.object({
|
||||
accessKeyId: z.string().trim(),
|
||||
secretAccessKey: z.string().trim(),
|
||||
endpoint: z.string().trim(),
|
||||
region: z.string().trim(),
|
||||
bucket: z.string().trim(),
|
||||
domainWhiteList: z.array(z.string().trim()).nullable(),
|
||||
enablePresignedUrlDownload: z.boolean().optional(),
|
||||
});
|
||||
|
||||
export const channelSchema = z.object({
|
||||
id: z.number(),
|
||||
name: z
|
||||
.string()
|
||||
.trim()
|
||||
.min(1, { message: i18n?.t('hint.required') })
|
||||
.max(20, { message: i18n?.t('hint.max-length', { length: 20 }) }),
|
||||
description: z
|
||||
.string()
|
||||
.trim()
|
||||
.max(50, { message: i18n?.t('hint.max-length', { length: 50 }) })
|
||||
.nullable(),
|
||||
createdAt: z.string(),
|
||||
updatedAt: z.string(),
|
||||
imageConfig: channelImageConfigSchema.nullable().optional(),
|
||||
feedbackSearchMaxDays: z.number(),
|
||||
});
|
||||
|
||||
export const channelInfoSchema = channelSchema
|
||||
.pick({ name: true, description: true, feedbackSearchMaxDays: true })
|
||||
.merge(z.object({ id: z.number().optional() }));
|
||||
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import type { z } from 'zod';
|
||||
|
||||
import type {
|
||||
channelImageConfigSchema,
|
||||
channelInfoSchema,
|
||||
channelSchema,
|
||||
} from './channel.schema';
|
||||
|
||||
export type Channel = z.infer<typeof channelSchema>;
|
||||
export type ChannelInfo = z.infer<typeof channelInfoSchema>;
|
||||
export type ChannelImageConfig = z.infer<typeof channelImageConfigSchema>;
|
||||
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export * from './channel.type';
|
||||
export * from './channel.schema';
|
||||
export * from './ui';
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as useRoutingChannelCreation } from './use-routing-channel-creation';
|
||||
@@ -0,0 +1,57 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useRouter } from 'next/router';
|
||||
import { useOverlay } from '@toss/use-overlay';
|
||||
|
||||
import { CreatingDialog, Path } from '@/shared';
|
||||
import { useCreateChannelStore } from '@/features/create-channel';
|
||||
|
||||
const useRoutingChannelCreation = (projectId: number) => {
|
||||
const { editingStepIndex, reset, jumpStepByIndex } = useCreateChannelStore();
|
||||
const overlay = useOverlay();
|
||||
const router = useRouter();
|
||||
|
||||
const openChannelInProgress = async () => {
|
||||
if (editingStepIndex !== null) {
|
||||
await new Promise<boolean>((resolve) =>
|
||||
overlay.open(({ close, isOpen }) => (
|
||||
<CreatingDialog
|
||||
isOpen={isOpen}
|
||||
close={close}
|
||||
type="Channel"
|
||||
onRestart={() => {
|
||||
reset();
|
||||
resolve(true);
|
||||
}}
|
||||
onContinue={() => {
|
||||
jumpStepByIndex(editingStepIndex);
|
||||
resolve(true);
|
||||
}}
|
||||
/>
|
||||
)),
|
||||
);
|
||||
}
|
||||
await router.push({ pathname: Path.CREATE_CHANNEL, query: { projectId } });
|
||||
};
|
||||
|
||||
const isCreatingChannel = editingStepIndex !== null;
|
||||
return {
|
||||
openChannelInProgress,
|
||||
isCreatingChannel,
|
||||
};
|
||||
};
|
||||
|
||||
export default useRoutingChannelCreation;
|
||||
@@ -0,0 +1,83 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import { useFormContext } from 'react-hook-form';
|
||||
|
||||
import { SelectInput, TextInput } from '@/shared';
|
||||
|
||||
import type { ChannelInfo } from '../channel.type';
|
||||
|
||||
interface IProps {
|
||||
type?: 'create' | 'update';
|
||||
readOnly?: boolean;
|
||||
}
|
||||
|
||||
const ChannelInfoForm: React.FC<IProps> = (props) => {
|
||||
const { type = 'create', readOnly = false } = props;
|
||||
|
||||
const { t } = useTranslation();
|
||||
|
||||
const { register, formState, setValue, watch } =
|
||||
useFormContext<ChannelInfo>();
|
||||
|
||||
const feedbackSearchMaxDays = watch('feedbackSearchMaxDays');
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-4">
|
||||
{type === 'update' && (
|
||||
<TextInput label="ID" {...register('id')} disabled />
|
||||
)}
|
||||
<TextInput
|
||||
label="Name"
|
||||
{...register('name')}
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
required
|
||||
disabled={readOnly}
|
||||
error={formState.errors.name?.message}
|
||||
/>
|
||||
<TextInput
|
||||
label="Description"
|
||||
{...register('description')}
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
disabled={readOnly}
|
||||
error={formState.errors.description?.message}
|
||||
/>
|
||||
<SelectInput
|
||||
label="Maximum feedback search period"
|
||||
value={
|
||||
feedbackSearchMaxDays ? String(feedbackSearchMaxDays) : undefined
|
||||
}
|
||||
onChange={(value) => {
|
||||
if (!value) return;
|
||||
setValue('feedbackSearchMaxDays', Number(value), {
|
||||
shouldDirty: true,
|
||||
});
|
||||
}}
|
||||
options={[
|
||||
{ value: '30', label: t('text.date.before-days', { day: 30 }) },
|
||||
{ value: '90', label: t('text.date.before-days', { day: 90 }) },
|
||||
{ value: '180', label: t('text.date.before-days', { day: 180 }) },
|
||||
{ value: '365', label: t('text.date.before-days', { day: 365 }) },
|
||||
{ value: '-1', label: t('text.date.entire-period') },
|
||||
]}
|
||||
disabled={readOnly}
|
||||
error={formState.errors.feedbackSearchMaxDays?.message}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ChannelInfoForm;
|
||||
@@ -0,0 +1,259 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useState } from 'react';
|
||||
import { useTranslation } from 'next-i18next';
|
||||
import { useFormContext } from 'react-hook-form';
|
||||
|
||||
import { Badge, Button, Divider, Icon, toast } from '@ufb/react';
|
||||
|
||||
import {
|
||||
ComboboxInputbox,
|
||||
SelectInput,
|
||||
TextInput,
|
||||
useOAIMutation,
|
||||
} from '@/shared';
|
||||
|
||||
import type { ChannelImageConfig } from '../channel.type';
|
||||
|
||||
interface IProps {
|
||||
readOnly?: boolean;
|
||||
}
|
||||
|
||||
const ImageConfigForm: React.FC<IProps> = (props) => {
|
||||
const { readOnly = false } = props;
|
||||
|
||||
const { t } = useTranslation();
|
||||
|
||||
const [inputDomain, setInputDomain] = useState('');
|
||||
const [connectionError, setConnectionError] = useState(false);
|
||||
|
||||
const {
|
||||
register,
|
||||
formState,
|
||||
watch,
|
||||
setValue,
|
||||
setError,
|
||||
clearErrors,
|
||||
getValues,
|
||||
} = useFormContext<ChannelImageConfig>();
|
||||
|
||||
const domainWhiteList = watch('domainWhiteList');
|
||||
|
||||
const addDomainWhiteList = (value: string) => {
|
||||
if (domainWhiteList?.includes(value)) {
|
||||
setError('domainWhiteList', {
|
||||
message: t('hint.name-already-exists', { name: 'Domain' }),
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (!/[a-z]+\.[a-z]{2,3}/.test(value)) {
|
||||
setError('domainWhiteList', { message: t('hint.invalid-domain') });
|
||||
return;
|
||||
}
|
||||
|
||||
setValue('domainWhiteList', (domainWhiteList ?? []).concat(value), {
|
||||
shouldDirty: true,
|
||||
});
|
||||
clearErrors('domainWhiteList');
|
||||
setInputDomain('');
|
||||
};
|
||||
|
||||
const removeDomainWhiteList = (index: number) => {
|
||||
if (!domainWhiteList) return;
|
||||
setValue(
|
||||
'domainWhiteList',
|
||||
domainWhiteList.filter((_, i) => i !== index),
|
||||
{ shouldDirty: true },
|
||||
);
|
||||
};
|
||||
const { mutate: testConection } = useOAIMutation({
|
||||
method: 'post',
|
||||
path: '/api/admin/projects/{projectId}/channels/image-upload-url-test',
|
||||
pathParams: { projectId: 0 },
|
||||
queryOptions: {
|
||||
onSuccess(data) {
|
||||
if (data?.success) {
|
||||
toast.success(t('v2.toast.success'));
|
||||
} else {
|
||||
setError('accessKeyId', { message: '' });
|
||||
setError('bucket', { message: '' });
|
||||
setError('endpoint', { message: '' });
|
||||
setError('region', { message: '' });
|
||||
setError('root', { message: '' });
|
||||
setError('secretAccessKey', { message: '' });
|
||||
toast.error('Test Connection failed');
|
||||
setConnectionError(false);
|
||||
setConnectionError(true);
|
||||
}
|
||||
},
|
||||
onError() {
|
||||
toast.error('Test Connection failed');
|
||||
setConnectionError(true);
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const handleTestConnection = () => {
|
||||
let isError = false;
|
||||
const { accessKeyId, bucket, endpoint, region, secretAccessKey } =
|
||||
getValues();
|
||||
if (accessKeyId.length === 0) {
|
||||
setError('accessKeyId', { message: t('hint.required') });
|
||||
isError = true;
|
||||
}
|
||||
if (bucket.length === 0) {
|
||||
setError('bucket', { message: t('hint.required') });
|
||||
isError = true;
|
||||
}
|
||||
if (endpoint.length === 0) {
|
||||
setError('endpoint', { message: t('hint.required') });
|
||||
isError = true;
|
||||
}
|
||||
if (region.length === 0) {
|
||||
setError('region', { message: t('hint.required') });
|
||||
isError = true;
|
||||
}
|
||||
if (secretAccessKey.length === 0) {
|
||||
setError('secretAccessKey', { message: t('hint.required') });
|
||||
isError = true;
|
||||
}
|
||||
if (isError) {
|
||||
setConnectionError(true);
|
||||
return;
|
||||
}
|
||||
testConection(getValues());
|
||||
};
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div className="border-neutral-tertiary mb-4 flex flex-col gap-6 rounded border p-4">
|
||||
<h5 className="text-title-h5">
|
||||
{t('title-box.image-storage-integration')}
|
||||
</h5>
|
||||
<div className="flex flex-col gap-4">
|
||||
<TextInput
|
||||
label="Access Key ID"
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
{...register('accessKeyId')}
|
||||
error={formState.errors.accessKeyId?.message}
|
||||
disabled={readOnly}
|
||||
/>
|
||||
<TextInput
|
||||
{...register('secretAccessKey')}
|
||||
label="Secret Access Key"
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
error={formState.errors.secretAccessKey?.message}
|
||||
disabled={readOnly}
|
||||
/>
|
||||
<TextInput
|
||||
{...register('endpoint')}
|
||||
label="End Point"
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
error={formState.errors.endpoint?.message}
|
||||
disabled={readOnly}
|
||||
/>
|
||||
<TextInput
|
||||
{...register('region')}
|
||||
label="Region"
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
error={formState.errors.region?.message}
|
||||
disabled={readOnly}
|
||||
/>
|
||||
<TextInput
|
||||
{...register('bucket')}
|
||||
label="Bucket Name"
|
||||
placeholder={t('v2.placeholder.text')}
|
||||
error={formState.errors.bucket?.message}
|
||||
disabled={readOnly}
|
||||
/>
|
||||
<SelectInput
|
||||
options={[
|
||||
{ label: 'Enable', value: 'true' },
|
||||
{ label: 'Disable', value: 'false' },
|
||||
]}
|
||||
value={
|
||||
typeof watch('enablePresignedUrlDownload') !== 'undefined' ?
|
||||
String(watch('enablePresignedUrlDownload'))
|
||||
: ''
|
||||
}
|
||||
placeholder={t('v2.placeholder.select')}
|
||||
onChange={(v) =>
|
||||
setValue('enablePresignedUrlDownload', v === 'true', {
|
||||
shouldDirty: true,
|
||||
})
|
||||
}
|
||||
label="Presigned URL Download"
|
||||
/>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Button
|
||||
type="button"
|
||||
className="btn btn-secondary"
|
||||
onClick={handleTestConnection}
|
||||
>
|
||||
Test Connection
|
||||
</Button>
|
||||
{connectionError && (
|
||||
<div className="text-tint-red flex items-center gap-1">
|
||||
<Icon name="RiErrorWarningFill" size={20} />
|
||||
<span>{t('v2.text.test-connection-failed')}</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="border-neutral-tertiary flex flex-col gap-2 rounded border p-4">
|
||||
<h5 className="text-title-h5">Image URL Domain Whitelist</h5>
|
||||
<div className="flex gap-4">
|
||||
<ComboboxInputbox
|
||||
clearError={() => clearErrors('domainWhiteList')}
|
||||
inputValue={inputDomain}
|
||||
setInputValue={setInputDomain}
|
||||
onSelectValue={addDomainWhiteList}
|
||||
error={formState.errors.domainWhiteList?.message}
|
||||
placeholder="example.com"
|
||||
>
|
||||
Whitelist
|
||||
</ComboboxInputbox>
|
||||
<Divider orientation="vertical" className="h-5" variant="subtle" />
|
||||
<div className="flex items-center gap-2">
|
||||
{!domainWhiteList || domainWhiteList.length === 0 ?
|
||||
<p className="text-neutral-tertiary">
|
||||
{t('v2.text.all-image-url-allow')}
|
||||
</p>
|
||||
: domainWhiteList.map((domain, index) => (
|
||||
<Badge
|
||||
key={index}
|
||||
className="flex items-center"
|
||||
variant="subtle"
|
||||
>
|
||||
{domain}
|
||||
<Icon
|
||||
name="RiCloseLine"
|
||||
onClick={() => removeDomainWhiteList(index)}
|
||||
size={16}
|
||||
/>
|
||||
</Badge>
|
||||
))
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ImageConfigForm;
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as ChannelInfoForm } from './channel-info-form.ui';
|
||||
export { default as ImageConfigForm } from './image-config-form.ui';
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export * from './ui';
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
export { default as useLineChartData } from './use-line-chart-data';
|
||||
@@ -0,0 +1,96 @@
|
||||
/**
|
||||
* Copyright 2025 LY Corporation
|
||||
*
|
||||
* LY Corporation licenses this file to you under the Apache License,
|
||||
* version 2.0 (the "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at:
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import { useMemo } from 'react';
|
||||
import dayjs from 'dayjs';
|
||||
import minMax from 'dayjs/plugin/minMax';
|
||||
|
||||
import { CHART_FIVE_COLORS, getDayCount } from '@/shared';
|
||||
|
||||
dayjs.extend(minMax);
|
||||
|
||||
const getDarkColor = () => {
|
||||
return (
|
||||
'#' +
|
||||
Array.from({ length: 6 })
|
||||
.map(() => Math.floor(Math.random() * 16).toString(16))
|
||||
.join('')
|
||||
);
|
||||
};
|
||||
|
||||
const useLineChartData = (
|
||||
from: Date,
|
||||
to: Date,
|
||||
targetData: { id: number; name: string }[],
|
||||
data?: {
|
||||
id: number;
|
||||
statistics: { startDate: string; endDate: string; count: number }[];
|
||||
}[],
|
||||
) => {
|
||||
const dataKeys = useMemo(
|
||||
() =>
|
||||
targetData
|
||||
.sort((a, b) => a.id - b.id)
|
||||
.map(({ name }, i) => ({
|
||||
color: CHART_FIVE_COLORS[i] ?? getDarkColor(),
|
||||
name,
|
||||
})),
|
||||
[targetData],
|
||||
);
|
||||
|
||||
const chartData = useMemo(() => {
|
||||
if (!data) return [];
|
||||
|
||||
const result = [];
|
||||
|
||||
let currentDate = dayjs(to).endOf('day');
|
||||
const startDate = dayjs(from).startOf('day');
|
||||
|
||||
const dayCount = getDayCount(from, to);
|
||||
|
||||
while (currentDate.isAfter(startDate)) {
|
||||
const prevDate = dayjs.max(
|
||||
currentDate.subtract(dayCount > 50 ? 6 : 0, 'day'),
|
||||
dayjs(from),
|
||||
);
|
||||
|
||||
const channelData = targetData.reduce(
|
||||
(acc, cur) => {
|
||||
const currentData = data.find((v) => v.id === cur.id);
|
||||
const count =
|
||||
currentData?.statistics.find(
|
||||
(v) => v.endDate === currentDate.format('YYYY-MM-DD'),
|
||||
)?.count ?? 0;
|
||||
return { ...acc, [cur.name]: count };
|
||||
},
|
||||
{
|
||||
date:
|
||||
dayCount > 50 ?
|
||||
`${prevDate.format('MM/DD')} - ${currentDate.format('MM/DD')}`
|
||||
: currentDate.format('MM/DD'),
|
||||
},
|
||||
);
|
||||
|
||||
result.push(channelData);
|
||||
|
||||
currentDate = prevDate.subtract(1, 'day');
|
||||
}
|
||||
return result.reverse();
|
||||
}, [data, targetData]);
|
||||
|
||||
return { chartData, dataKeys };
|
||||
};
|
||||
|
||||
export default useLineChartData;
|
||||