first init
@@ -0,0 +1,8 @@
|
||||
[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue,css,scss,sass,less,styl}]
|
||||
charset = utf-8
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
end_of_line = lf
|
||||
max_line_length = 100
|
||||
@@ -0,0 +1,7 @@
|
||||
VITE_APP_NAME="MyKOPKB"
|
||||
VITE_APP_VERSION="1.0"
|
||||
VITE_API_BASE_URL=http://localhost
|
||||
VITE_APP_URL=http://localhost
|
||||
VITE_APP_PORT=5173
|
||||
VITE_APP_ENV=development
|
||||
VITE_APP_DEBUG=true
|
||||
@@ -0,0 +1,4 @@
|
||||
node_modules/
|
||||
.env
|
||||
.env.production
|
||||
dist/
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/prettierrc",
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"printWidth": 100
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
# midone-vue
|
||||
|
||||
This template should help get you started developing with Vue 3 in Vite.
|
||||
|
||||
## Recommended IDE Setup
|
||||
|
||||
[VS Code](https://code.visualstudio.com/) + [Vue (Official)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
||||
|
||||
## Recommended Browser Setup
|
||||
|
||||
- Chromium-based browsers (Chrome, Edge, Brave, etc.):
|
||||
- [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd)
|
||||
- [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters)
|
||||
- Firefox:
|
||||
- [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/)
|
||||
- [Turn on Custom Object Formatter in Firefox DevTools](https://fxdx.dev/firefox-devtools-custom-object-formatters/)
|
||||
|
||||
## Type Support for `.vue` Imports in TS
|
||||
|
||||
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
|
||||
|
||||
## Customize configuration
|
||||
|
||||
See [Vite Configuration Reference](https://vite.dev/config/).
|
||||
|
||||
## Project Setup
|
||||
|
||||
```sh
|
||||
yarn
|
||||
```
|
||||
|
||||
### Compile and Hot-Reload for Development
|
||||
|
||||
```sh
|
||||
yarn dev
|
||||
```
|
||||
|
||||
### Type-Check, Compile and Minify for Production
|
||||
|
||||
```sh
|
||||
yarn build
|
||||
```
|
||||
|
||||
### Run Unit Tests with [Vitest](https://vitest.dev/)
|
||||
|
||||
```sh
|
||||
yarn test:unit
|
||||
```
|
||||
|
||||
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
|
||||
|
||||
```sh
|
||||
yarn test:e2e:dev
|
||||
```
|
||||
|
||||
This runs the end-to-end tests against the Vite development server.
|
||||
It is much faster than the production build.
|
||||
|
||||
But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
|
||||
|
||||
```sh
|
||||
yarn build
|
||||
yarn test:e2e
|
||||
```
|
||||
|
||||
### Lint with [ESLint](https://eslint.org/)
|
||||
|
||||
```sh
|
||||
yarn lint
|
||||
```
|
||||
@@ -0,0 +1,8 @@
|
||||
import { defineConfig } from 'cypress'
|
||||
|
||||
export default defineConfig({
|
||||
e2e: {
|
||||
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
|
||||
baseUrl: 'http://localhost:4173',
|
||||
},
|
||||
})
|
||||
@@ -0,0 +1,15 @@
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
interface ImportMetaEnv {
|
||||
readonly VITE_API_BASE_URL?: string
|
||||
readonly VITE_APP_NAME?: string
|
||||
readonly VITE_APP_VERSION?: string
|
||||
readonly VITE_APP_URL?: string
|
||||
readonly VITE_APP_PORT?: string
|
||||
readonly VITE_APP_ENV?: string
|
||||
readonly VITE_APP_DEBUG?: string
|
||||
}
|
||||
|
||||
interface ImportMeta {
|
||||
readonly env: ImportMetaEnv
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
import { globalIgnores } from 'eslint/config'
|
||||
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'
|
||||
import pluginVue from 'eslint-plugin-vue'
|
||||
import pluginCypress from 'eslint-plugin-cypress'
|
||||
import pluginVitest from '@vitest/eslint-plugin'
|
||||
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
||||
|
||||
// To allow more languages other than `ts` in `.vue` files, uncomment the following lines:
|
||||
// import { configureVueProject } from '@vue/eslint-config-typescript'
|
||||
// configureVueProject({ scriptLangs: ['ts', 'tsx'] })
|
||||
// More info at https://github.com/vuejs/eslint-config-typescript/#advanced-setup
|
||||
|
||||
export default defineConfigWithVueTs(
|
||||
{
|
||||
name: 'app/files-to-lint',
|
||||
files: ['**/*.{vue,ts,mts,tsx}'],
|
||||
},
|
||||
|
||||
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
|
||||
|
||||
...pluginVue.configs['flat/essential'],
|
||||
vueTsConfigs.recommended,
|
||||
|
||||
{
|
||||
...pluginCypress.configs.recommended,
|
||||
files: [
|
||||
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}',
|
||||
'cypress/support/**/*.{js,ts,jsx,tsx}',
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
...pluginVitest.configs.recommended,
|
||||
files: ['src/**/__tests__/*'],
|
||||
},
|
||||
|
||||
skipFormatting,
|
||||
)
|
||||
@@ -0,0 +1,16 @@
|
||||
<!doctype html>
|
||||
<html lang="" class="">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>MyKOPKB 1.0</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "@mykopkb/frontend",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"engines": {
|
||||
"node": "^20.19.0 || >=22.12.0"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "run-p type-check \"build-only {@}\" --",
|
||||
"preview": "vite preview",
|
||||
"test:unit": "vitest",
|
||||
"prepare": "cypress install",
|
||||
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
|
||||
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
|
||||
"build-only": "vite build",
|
||||
"type-check": "vue-tsc --build",
|
||||
"lint": "eslint . --fix --cache",
|
||||
"format": "prettier --write --experimental-cli src/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@iconify/vue": "^5.0.1",
|
||||
"@internationalized/date": "^3.11.0",
|
||||
"@lucide/vue": "^1.17.0",
|
||||
"@tailwindcss/vite": "^4.1.18",
|
||||
"@tanstack/vue-table": "^8.21.3",
|
||||
"@zag-js/accordion": "1.26.1",
|
||||
"@zag-js/avatar": "1.26.1",
|
||||
"@zag-js/carousel": "1.26.1",
|
||||
"@zag-js/checkbox": "1.26.1",
|
||||
"@zag-js/combobox": "1.26.1",
|
||||
"@zag-js/date-picker": "1.26.1",
|
||||
"@zag-js/dialog": "1.26.1",
|
||||
"@zag-js/menu": "1.26.1",
|
||||
"@zag-js/pagination": "1.26.1",
|
||||
"@zag-js/popover": "1.26.1",
|
||||
"@zag-js/presence": "1.26.1",
|
||||
"@zag-js/progress": "1.26.1",
|
||||
"@zag-js/radio-group": "1.26.1",
|
||||
"@zag-js/scroll-area": "1.26.1",
|
||||
"@zag-js/select": "1.26.1",
|
||||
"@zag-js/slider": "1.26.1",
|
||||
"@zag-js/switch": "1.26.1",
|
||||
"@zag-js/tabs": "1.26.1",
|
||||
"@zag-js/toast": "1.26.1",
|
||||
"@zag-js/tooltip": "1.26.1",
|
||||
"@zag-js/vue": "1.26.1",
|
||||
"axios": "^1.16.1",
|
||||
"chart.js": "^4.5.0",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"dayjs": "^1.11.21",
|
||||
"file-saver": "^2.0.5",
|
||||
"jspdf": "^4.2.1",
|
||||
"jspdf-autotable": "^5.0.8",
|
||||
"lodash": "^4.17.21",
|
||||
"maplibre-gl": "^5.18.0",
|
||||
"pinia": "^3.0.4",
|
||||
"sweetalert2": "^11.26.25",
|
||||
"tailwind-merge": "^3.5.0",
|
||||
"tailwindcss": "^4.1.18",
|
||||
"tw-animate-css": "^1.4.0",
|
||||
"vue": "^3.5.26",
|
||||
"vue-router": "^4.6.4",
|
||||
"xlsx": "^0.18.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tsconfig/node24": "^24.0.3",
|
||||
"@types/file-saver": "^2.0.7",
|
||||
"@types/jsdom": "^27.0.0",
|
||||
"@types/lodash": "^4.17.21",
|
||||
"@types/node": "^24.10.4",
|
||||
"@vitejs/plugin-vue": "^6.0.3",
|
||||
"@vitest/eslint-plugin": "^1.6.4",
|
||||
"@vue/eslint-config-prettier": "^10.2.0",
|
||||
"@vue/eslint-config-typescript": "^14.6.0",
|
||||
"@vue/test-utils": "^2.4.6",
|
||||
"@vue/tsconfig": "^0.8.1",
|
||||
"cypress": "^15.8.1",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-plugin-cypress": "^5.2.0",
|
||||
"eslint-plugin-vue": "~10.6.2",
|
||||
"jiti": "^2.6.1",
|
||||
"jsdom": "^27.3.0",
|
||||
"npm-run-all2": "^8.0.4",
|
||||
"prettier": "3.7.4",
|
||||
"start-server-and-test": "^2.1.3",
|
||||
"typescript": "~5.9.3",
|
||||
"vite": "^7.3.0",
|
||||
"vite-plugin-vue-devtools": "^8.0.5",
|
||||
"vitest": "^4.0.16",
|
||||
"vue-tsc": "^3.2.1"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<RouterView />
|
||||
</template>
|
||||
@@ -0,0 +1,309 @@
|
||||
.enigma {
|
||||
@media (min-width: theme(screens.xl)) {
|
||||
.side-menu--collapsed:hover + .content.content--compact {
|
||||
margin-left: 320px;
|
||||
}
|
||||
|
||||
.side-menu--collapsed:hover + .content.content--compact .content__scroll-area {
|
||||
margin-left: -155px;
|
||||
}
|
||||
|
||||
.side-menu--collapsed:hover + .content.content--compact .top-bar {
|
||||
margin-left: 320px;
|
||||
}
|
||||
|
||||
.side-menu--collapsed:hover + .content.content--compact .top-bar::before {
|
||||
margin-left: -320px;
|
||||
}
|
||||
|
||||
.side-menu--collapsed:hover + .content.content--compact .top-bar::after {
|
||||
margin-left: -320px;
|
||||
}
|
||||
}
|
||||
|
||||
.side-menu {
|
||||
@media (min-width: theme(screens.xl)) {
|
||||
&.side-menu--collapsed {
|
||||
&:hover {
|
||||
.side-menu__group-label {
|
||||
color: currentColor;
|
||||
&:before {
|
||||
@apply opacity-0;
|
||||
}
|
||||
}
|
||||
.side-menu__link {
|
||||
.side-menu__link__title {
|
||||
color: currentColor;
|
||||
}
|
||||
.side-menu__link__badge {
|
||||
opacity: 1;
|
||||
}
|
||||
.side-menu__link__chevron {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
ul.scrollable {
|
||||
> li {
|
||||
> .side-menu__link {
|
||||
.side-menu__link__icon {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
li {
|
||||
.side-menu__link {
|
||||
.side-menu__link__icon {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.side-menu__group-label {
|
||||
position: relative;
|
||||
color: transparent;
|
||||
transition-property: theme(transitionProperty.colors);
|
||||
transition-duration: 100ms;
|
||||
&:before {
|
||||
content: '...';
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
left: 0;
|
||||
right: 0;
|
||||
color: var(--color-background);
|
||||
transition-property: opacity;
|
||||
transition-duration: 100ms;
|
||||
}
|
||||
}
|
||||
.side-menu__link {
|
||||
.side-menu__link__title {
|
||||
white-space: nowrap;
|
||||
color: transparent;
|
||||
transition-property: color;
|
||||
transition-duration: theme(transitionDuration.300);
|
||||
}
|
||||
.side-menu__link__badge {
|
||||
opacity: 0;
|
||||
transition-property: opacity;
|
||||
transition-duration: theme(transitionDuration.300);
|
||||
}
|
||||
.side-menu__link__chevron {
|
||||
opacity: 0;
|
||||
transition-property: opacity;
|
||||
transition-duration: theme(transitionDuration.300);
|
||||
}
|
||||
.side-menu__link__icon {
|
||||
transition-property: margin;
|
||||
transition-duration: 100ms;
|
||||
}
|
||||
}
|
||||
ul.scrollable {
|
||||
> li {
|
||||
> .side-menu__link {
|
||||
.side-menu__link__icon {
|
||||
margin-left: theme(spacing[2.5]);
|
||||
}
|
||||
}
|
||||
li {
|
||||
.side-menu__link {
|
||||
.side-menu__link__icon {
|
||||
margin-left: theme(spacing[1.5]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
ul.scrollable {
|
||||
> li {
|
||||
> .side-menu__link {
|
||||
&.side-menu__link--active {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.side-menu__group-label {
|
||||
white-space: nowrap;
|
||||
font-size: theme(fontSize.xs);
|
||||
opacity: theme(opacity.50);
|
||||
margin-left: theme(spacing.2);
|
||||
margin-top: theme(spacing.7);
|
||||
margin-bottom: theme(spacing.3);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.side-menu__link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: theme(spacing[1.5]);
|
||||
padding: theme(spacing.4) theme(spacing.5);
|
||||
&.side-menu__link--active {
|
||||
font-weight: theme(fontWeight.medium);
|
||||
.side-menu__link__icon {
|
||||
}
|
||||
.side-menu__link__title {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
.side-menu__link__chevron {
|
||||
}
|
||||
}
|
||||
.side-menu__link__icon {
|
||||
flex: none;
|
||||
width: 1.15rem;
|
||||
height: 1.15rem;
|
||||
--color: color-mix(in oklch, var(--color-primary), transparent 30%);
|
||||
}
|
||||
.side-menu__link__title {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
margin-left: theme(spacing.3);
|
||||
color: color-mix(in oklch, var(--color-foreground), transparent 20%);
|
||||
}
|
||||
.side-menu__link__badge {
|
||||
min-width: 1.15rem;
|
||||
height: 1.2rem;
|
||||
padding: 0 theme(spacing.2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: theme(fontSize.xs);
|
||||
margin-left: theme(spacing[3.5]);
|
||||
font-weight: theme(fontWeight.medium);
|
||||
color: color-mix(in oklch, var(--color-primary), transparent 20%);
|
||||
background-color: color-mix(in oklch, var(--color-primary), transparent 85%);
|
||||
border: 1px solid color-mix(in oklch, var(--color-primary), transparent 85%);
|
||||
border-radius: theme(borderRadius.lg);
|
||||
}
|
||||
.side-menu__link__chevron {
|
||||
margin-left: auto;
|
||||
stroke-width: 1.2;
|
||||
color: color-mix(in oklch, var(--color-foreground), transparent 20%);
|
||||
}
|
||||
}
|
||||
ul.scrollable {
|
||||
position: relative;
|
||||
> li {
|
||||
> .side-menu__link {
|
||||
border-radius: theme(borderRadius.full);
|
||||
&.side-menu__link--active {
|
||||
background: color-mix(in oklch, var(--color-background), var(--color-foreground) 3%);
|
||||
border: 1px solid color-mix(in oklch, var(--color-foreground), transparent 90%);
|
||||
box-shadow: theme('boxShadow.sm');
|
||||
&:before {
|
||||
content: '';
|
||||
width: 7.8rem;
|
||||
height: 7.8rem;
|
||||
opacity: 0.1;
|
||||
background-color: color-mix(
|
||||
in oklch,
|
||||
var(--color-background),
|
||||
var(--color-foreground) 90%
|
||||
);
|
||||
z-index: -2;
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
margin-right: -11.7em;
|
||||
mask-repeat: no-repeat;
|
||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 16.039 122.1'%3E%3Cpath id='Union_1' data-name='Union 1' d='M16.038,122H16v-2.213a95.8,95.8,0,0,0-2.886-20.735A94.894,94.894,0,0,0,5.331,78.618,39.039,39.039,0,0,1,0,61.051,39.035,39.035,0,0,1,5.331,43.484a94.9,94.9,0,0,0,7.783-20.435A95.747,95.747,0,0,0,16,2.314V0l.039,122v0Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
&:after {
|
||||
content: '';
|
||||
width: 7.8rem;
|
||||
height: 7.8rem;
|
||||
background-color: color-mix(
|
||||
in oklch,
|
||||
var(--color-background),
|
||||
var(--color-foreground) 2%
|
||||
);
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
right: -1px;
|
||||
margin-right: -11.7em;
|
||||
mask-repeat: no-repeat;
|
||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 16.039 122.1'%3E%3Cpath id='Union_1' data-name='Union 1' d='M16.038,122H16v-2.213a95.8,95.8,0,0,0-2.886-20.735A94.894,94.894,0,0,0,5.331,78.618,39.039,39.039,0,0,1,0,61.051,39.035,39.035,0,0,1,5.331,43.484a94.9,94.9,0,0,0,7.783-20.435A95.747,95.747,0,0,0,16,2.314V0l.039,122v0Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
}
|
||||
&:hover:not(.side-menu__link--active) {
|
||||
background: color-mix(in oklch, var(--color-background), transparent 50%);
|
||||
}
|
||||
}
|
||||
ul {
|
||||
padding: theme(spacing.1) 0;
|
||||
background: color-mix(in oklch, var(--color-background), transparent 50%);
|
||||
border-radius: theme(borderRadius.2xl);
|
||||
border: 1px solid color-mix(in oklch, var(--color-foreground), transparent 90%);
|
||||
margin-left: theme(spacing.1);
|
||||
margin-right: theme(spacing.1);
|
||||
margin-bottom: theme(spacing.2);
|
||||
.side-menu__link {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
ul {
|
||||
margin: 0px -1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dark {
|
||||
.enigma {
|
||||
.side-menu {
|
||||
.side-menu__group-label {
|
||||
opacity: theme(opacity.30);
|
||||
}
|
||||
.side-menu__link {
|
||||
.side-menu__link__icon {
|
||||
--color: --alpha(var(--color-foreground) / 70%);
|
||||
}
|
||||
.side-menu__link__title {
|
||||
color: --alpha(var(--color-foreground) / 70%);
|
||||
}
|
||||
.side-menu__link__badge {
|
||||
--color-primary: --alpha(var(--color-foreground) / 70%);
|
||||
}
|
||||
&.side-menu__link--active {
|
||||
.side-menu__link__title {
|
||||
color: var(--color-foreground);
|
||||
}
|
||||
}
|
||||
}
|
||||
ul.scrollable {
|
||||
> li {
|
||||
> .side-menu__link {
|
||||
&.side-menu__link--active {
|
||||
background: color-mix(in oklch, var(--color-background), white 14%);
|
||||
&:before {
|
||||
background-color: var(--color-foreground);
|
||||
}
|
||||
&:after {
|
||||
background-color: color-mix(in oklch, var(--color-foreground), black 84%);
|
||||
}
|
||||
}
|
||||
&:hover:not(.side-menu__link--active) {
|
||||
background: color-mix(in oklch, var(--color-background), white 14%);
|
||||
}
|
||||
}
|
||||
ul {
|
||||
background: color-mix(in oklch, var(--color-background), white 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[data-theme='default']:not(.dark) .enigma .top-bar::before {
|
||||
background-color: transparent;
|
||||
background-image: var(--color-primary-gradient);
|
||||
border-color: color-mix(in oklch, var(--color-blue-600), transparent 40%);
|
||||
}
|
||||
|
||||
[data-theme='default']:not(.dark) .enigma .top-bar::after {
|
||||
background-color: transparent;
|
||||
background-image: var(--color-primary-gradient);
|
||||
opacity: 0.3;
|
||||
border-color: transparent;
|
||||
}
|
||||
@@ -0,0 +1,262 @@
|
||||
.enigma {
|
||||
.top-menu {
|
||||
@media (min-width: theme(screens.xl)) {
|
||||
@apply border-0;
|
||||
display: flex;
|
||||
z-index: 20;
|
||||
height: theme(spacing.14);
|
||||
gap: theme(spacing.6);
|
||||
padding: 0 theme(spacing.14);
|
||||
margin-bottom: -1px;
|
||||
|
||||
&>li {
|
||||
height: 100%;
|
||||
position: relative;
|
||||
|
||||
&>.top-menu__link {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: theme(spacing.3);
|
||||
position: relative;
|
||||
padding: 0 theme(spacing.7);
|
||||
border-radius: theme(borderRadius.full);
|
||||
|
||||
&.top-menu__link--active {
|
||||
background: color-mix(in oklch,
|
||||
var(--color-background),
|
||||
var(--color-foreground) 3%);
|
||||
border: 1px solid color-mix(in oklch,
|
||||
var(--color-foreground),
|
||||
transparent 90%);
|
||||
box-shadow: theme("boxShadow.sm");
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
width: 7.8rem;
|
||||
height: 7.8rem;
|
||||
opacity: 0.1;
|
||||
background-color: color-mix(in oklch,
|
||||
var(--color-background),
|
||||
var(--color-foreground) 90%);
|
||||
z-index: -2;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: -10.1em;
|
||||
mask-repeat: no-repeat;
|
||||
transform: rotate(90deg);
|
||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 16.039 122.1'%3E%3Cpath id='Union_1' data-name='Union 1' d='M16.038,122H16v-2.213a95.8,95.8,0,0,0-2.886-20.735A94.894,94.894,0,0,0,5.331,78.618,39.039,39.039,0,0,1,0,61.051,39.035,39.035,0,0,1,5.331,43.484a94.9,94.9,0,0,0,7.783-20.435A95.747,95.747,0,0,0,16,2.314V0l.039,122v0Z'/%3E%3C/svg%3E");
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
width: 7.8rem;
|
||||
height: 7.8rem;
|
||||
background-color: color-mix(in oklch,
|
||||
var(--color-background),
|
||||
var(--color-foreground) 2%);
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
bottom: -1px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: -10.1em;
|
||||
mask-repeat: no-repeat;
|
||||
transform: rotate(90deg);
|
||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 16.039 122.1'%3E%3Cpath id='Union_1' data-name='Union 1' d='M16.038,122H16v-2.213a95.8,95.8,0,0,0-2.886-20.735A94.894,94.894,0,0,0,5.331,78.618,39.039,39.039,0,0,1,0,61.051,39.035,39.035,0,0,1,5.331,43.484a94.9,94.9,0,0,0,7.783-20.435A95.747,95.747,0,0,0,16,2.314V0l.039,122v0Z'/%3E%3C/svg%3E");
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.top-menu__link__title {
|
||||
font-weight: theme(fontWeight.medium);
|
||||
}
|
||||
|
||||
.top-menu__link__icon {
|
||||
--color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
|
||||
.top-menu__link__icon {
|
||||
&>svg {
|
||||
--color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
|
||||
.top-menu__link__title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: theme(spacing.3);
|
||||
}
|
||||
|
||||
.top-menu__link__chevron {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover>ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
ul {
|
||||
display: none;
|
||||
width: theme(spacing.72);
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
margin-top: calc(theme(spacing.20) * -1);
|
||||
background: var(--color-background);
|
||||
border: 1px solid --alpha(var(--color-foreground) / 10%);
|
||||
border-radius: theme(borderRadius.2xl);
|
||||
padding: theme(spacing.3) theme(spacing.2);
|
||||
box-shadow: theme(boxShadow.lg);
|
||||
z-index: 2;
|
||||
|
||||
.top-menu__link {
|
||||
height: theme(spacing.12);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: theme(spacing.3);
|
||||
padding: 0 theme(spacing.5);
|
||||
position: relative;
|
||||
|
||||
.top-menu__link__title {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: theme(spacing.3);
|
||||
}
|
||||
|
||||
.top-menu__link__chevron {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
|
||||
&:hover>ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
display: none;
|
||||
margin-top: 0;
|
||||
left: 100%;
|
||||
top: 0;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: theme(screens.xl)) {
|
||||
padding: theme(spacing.5) theme(spacing.4);
|
||||
|
||||
>li {
|
||||
z-index: 10;
|
||||
position: relative;
|
||||
|
||||
ul {
|
||||
padding: theme(spacing.1) 0;
|
||||
background: color-mix(in oklch,
|
||||
var(--color-background),
|
||||
transparent 90%);
|
||||
border-radius: theme(borderRadius.2xl);
|
||||
border: 1px solid color-mix(in oklch,
|
||||
var(--color-background),
|
||||
transparent 87%);
|
||||
margin-left: theme(spacing.2);
|
||||
margin-right: theme(spacing.2);
|
||||
margin-bottom: theme(spacing.2);
|
||||
|
||||
.top-menu__link {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0px -1px;
|
||||
}
|
||||
}
|
||||
|
||||
.top-menu__link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: theme(spacing[1.5]);
|
||||
padding: theme(spacing.4) theme(spacing.5);
|
||||
|
||||
&.top-menu__link--active {
|
||||
font-weight: theme(fontWeight.medium);
|
||||
|
||||
.top-menu__link__title {
|
||||
color: var(--color-background);
|
||||
}
|
||||
}
|
||||
|
||||
.top-menu__link__icon>svg {
|
||||
width: 1.15rem;
|
||||
height: 1.15rem;
|
||||
--color: var(--color-background);
|
||||
}
|
||||
|
||||
.top-menu__link__title {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: theme(spacing.3);
|
||||
color: --alpha(var(--color-background) / 80%);
|
||||
|
||||
.top-menu__link__chevron {
|
||||
margin-left: auto;
|
||||
stroke-width: 1.2;
|
||||
color: color-mix(in oklch,
|
||||
var(--color-background),
|
||||
transparent 20%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dark {
|
||||
.enigma {
|
||||
.top-menu {
|
||||
@media (min-width: theme(screens.xl)) {
|
||||
>li {
|
||||
>.top-menu__link {
|
||||
&.top-menu__link--active {
|
||||
background: color-mix(in oklch,
|
||||
var(--color-background),
|
||||
white 14%);
|
||||
|
||||
&:before {
|
||||
background-color: var(--color-foreground);
|
||||
}
|
||||
|
||||
&:after {
|
||||
background-color: color-mix(in oklch,
|
||||
var(--color-foreground),
|
||||
black 85%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: theme(screens.xl)) {
|
||||
>li {
|
||||
--color-background: var(--color-foreground);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 902 KiB |
@@ -0,0 +1,44 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920" height="1080" viewBox="0 0 1920 1080">
|
||||
<defs>
|
||||
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="#0e7490" stop-opacity="0"/>
|
||||
<stop offset="0.493" stop-color="#06b6d4"/>
|
||||
<stop offset="1" stop-color="#0e7490" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-2" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="#0e7490" stop-opacity="0"/>
|
||||
<stop offset="0.527" stop-color="#06b6d4"/>
|
||||
<stop offset="1" stop-color="#0e7490" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-3" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="#6d28d9" stop-opacity="0"/>
|
||||
<stop offset="0.502" stop-color="#4f46e5"/>
|
||||
<stop offset="1" stop-color="#6d28d9" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip-Rubick_1">
|
||||
<rect width="1920" height="1080"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="Rubick_1" data-name="Rubick – 1" clip-path="url(#clip-Rubick_1)">
|
||||
<g id="Group_58" data-name="Group 58" transform="translate(-728.457 394.041)" opacity="0.696">
|
||||
<ellipse id="Ellipse_8" data-name="Ellipse 8" cx="93.814" cy="511.905" rx="93.814" ry="511.905" transform="translate(743.032 195.547) rotate(-42)" opacity="0.578" fill="url(#linear-gradient)"/>
|
||||
<ellipse id="Ellipse_7" data-name="Ellipse 7" cx="102.814" cy="504.905" rx="102.814" ry="504.905" transform="translate(349.386 205.874) rotate(-42)" opacity="0.578" fill="url(#linear-gradient-2)"/>
|
||||
<ellipse id="Ellipse_1" data-name="Ellipse 1" cx="139.314" cy="593.905" rx="139.314" ry="593.905" transform="translate(483.232 195.122) rotate(-42)" opacity="0.585" fill="url(#linear-gradient-3)"/>
|
||||
</g>
|
||||
<g id="Group_27" data-name="Group 27" transform="translate(-652.457 -338.959)" opacity="0.696">
|
||||
<ellipse id="Ellipse_8-2" data-name="Ellipse 8" cx="93.814" cy="511.905" rx="93.814" ry="511.905" transform="translate(743.032 195.547) rotate(-42)" opacity="0.578" fill="url(#linear-gradient)"/>
|
||||
<ellipse id="Ellipse_7-2" data-name="Ellipse 7" cx="102.814" cy="504.905" rx="102.814" ry="504.905" transform="translate(349.386 205.874) rotate(-42)" opacity="0.578" fill="url(#linear-gradient-2)"/>
|
||||
<ellipse id="Ellipse_1-2" data-name="Ellipse 1" cx="139.314" cy="593.905" rx="139.314" ry="593.905" transform="translate(483.232 195.122) rotate(-42)" opacity="0.585" fill="url(#linear-gradient-3)"/>
|
||||
</g>
|
||||
<g id="Group_67" data-name="Group 67" transform="translate(668.929 293.877)" opacity="0.696">
|
||||
<ellipse id="Ellipse_8-3" data-name="Ellipse 8" cx="104.84" cy="572.07" rx="104.84" ry="572.07" transform="translate(439.912 208.825) rotate(-42)" opacity="0.578" fill="url(#linear-gradient)"/>
|
||||
<ellipse id="Ellipse_7-3" data-name="Ellipse 7" cx="114.898" cy="564.247" rx="114.898" ry="564.247" transform="translate(0 220.365) rotate(-42)" opacity="0.578" fill="url(#linear-gradient-2)"/>
|
||||
<ellipse id="Ellipse_1-3" data-name="Ellipse 1" cx="155.687" cy="663.708" rx="155.687" ry="663.708" transform="translate(149.577 208.35) rotate(-42)" opacity="0.585" fill="url(#linear-gradient-3)"/>
|
||||
</g>
|
||||
<g id="Group_68" data-name="Group 68" transform="translate(753.861 -525.274)" opacity="0.696">
|
||||
<ellipse id="Ellipse_8-4" data-name="Ellipse 8" cx="104.84" cy="572.07" rx="104.84" ry="572.07" transform="translate(439.912 208.825) rotate(-42)" opacity="0.578" fill="url(#linear-gradient)"/>
|
||||
<ellipse id="Ellipse_7-4" data-name="Ellipse 7" cx="114.898" cy="564.247" rx="114.898" ry="564.247" transform="translate(0 220.365) rotate(-42)" opacity="0.578" fill="url(#linear-gradient-2)"/>
|
||||
<ellipse id="Ellipse_1-4" data-name="Ellipse 1" cx="155.687" cy="663.708" rx="155.687" ry="663.708" transform="translate(149.577 208.35) rotate(-42)" opacity="0.585" fill="url(#linear-gradient-3)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,66 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="2856.993" height="849.63" viewBox="0 0 2856.993 849.63">
|
||||
<g id="Group_2" data-name="Group 2" transform="translate(-786 -1346.332)">
|
||||
<path id="path14" d="M1590.623-318.829a302.115,302.115,0,0,1-46.946-3.557c-37.573-5.907-71.08-19.168-103.48-31.992-8.04-3.18-16.347-6.468-24.573-9.585a887.347,887.347,0,0,0-192.329-48.809c-70.689-9.8-140.269-10.959-206.816-3.437-63.678,7.2-125.385,22.452-185.06,37.2-42.08,10.4-85.592,21.156-129.548,29.037-57.8,10.365-115.149,14-165.85,10.531-59.623-4.087-108.05-17.633-143.936-40.263-5.043-3.179-9.909-6.6-14.617-9.9-9.975-7-20.291-14.245-32.789-19.577-12.649-5.4-27.736-8.735-43.631-9.653a147.762,147.762,0,0,0-46.2,4.457c-15.772,4.224-29.649,11.052-43.071,17.655-8.6,4.231-17.485,8.6-26.823,12.276-18.144,7.136-38.649,11.417-60.947,12.725a251.775,251.775,0,0,1-63.592-4.485c-20.656-4.165-39.884-10.927-55.6-19.551-16.737-9.184-29.176-20.113-36.971-32.489-9.324-14.8-12.613-31.036-15.793-46.737-2.848-14.059-5.794-28.6-13.06-42.085C-68.74-531.42-85.3-544.745-105.3-552.711c-22.135-8.815-44.858-9.761-63.982-2.664l-.152-.291c19.224-7.136,42.059-6.188,64.3,2.668,20.081,8,36.707,21.38,44.475,35.8,7.285,13.524,10.236,28.083,13.088,42.163,3.175,15.676,6.459,31.887,15.756,46.643,7.764,12.325,20.159,23.217,36.843,32.371,15.683,8.607,34.87,15.352,55.485,19.508a251.338,251.338,0,0,0,63.478,4.479c22.253-1.307,42.713-5.579,60.815-12.7,9.321-3.665,18.2-8.035,26.793-12.261,13.437-6.612,27.333-13.448,43.147-17.683a148.264,148.264,0,0,1,46.336-4.473c15.944.924,31.081,4.273,43.775,9.688,12.536,5.348,22.869,12.6,32.86,19.616,4.7,3.3,9.568,6.717,14.6,9.892,35.828,22.593,84.189,36.119,143.741,40.2,50.664,3.471,107.977-.168,165.742-10.525,43.941-7.879,87.446-18.633,129.52-29.032C891-394.067,952.722-409.322,1016.43-416.524c66.581-7.527,136.2-6.369,206.925,3.44a887.9,887.9,0,0,1,192.429,48.833c8.227,3.116,16.533,6.405,24.573,9.585,32.387,12.816,65.867,26.069,103.386,31.969,35.453,5.575,74.213,4.581,115.213-2.952a495.737,495.737,0,0,0,107.613-33.313c35.773-15.551,69.053-34,101.24-51.843,26.947-14.933,54.8-30.373,84-44.056,35.373-16.577,70.64-29.045,104.826-37.056,40.187-9.423,78.893-12.648,115.026-9.585l-.04.316c-36.093-3.059-74.733.163-114.88,9.573-34.16,8.005-69.4,20.464-104.746,37.028-29.2,13.677-57.04,29.115-83.973,44.044-32.2,17.847-65.493,36.3-101.28,51.861a496.067,496.067,0,0,1-107.706,33.34,379.251,379.251,0,0,1-68.413,6.511" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path16" d="M1580.516-314.119a290.469,290.469,0,0,1-45.88-3.541c-37.573-6.009-71.213-19.661-103.746-32.863-8.067-3.273-16.413-6.656-24.667-9.864a865.411,865.411,0,0,0-192.641-50.024c-70.666-9.945-140.088-10.924-206.329-2.908-63.394,7.672-124.685,23.691-183.958,39.184-41.8,10.927-85.014,22.221-128.722,30.539C637.1-332.661,579.955-328.7,529.327-332.143c-59.536-4.051-108.062-17.949-144.234-41.313-5.081-3.283-9.992-6.811-14.743-10.224-10.067-7.235-20.475-14.715-33.031-20.207-12.707-5.557-27.809-8.973-43.677-9.876a141.31,141.31,0,0,0-46,4.772c-15.661,4.432-29.389,11.56-42.664,18.453-8.5,4.415-17.3,8.98-26.548,12.82-17.979,7.46-38.361,11.968-60.579,13.4a242.349,242.349,0,0,1-63.5-4.451c-20.674-4.256-39.963-11.208-55.785-20.107-16.846-9.475-29.434-20.772-37.414-33.585-9.546-15.324-13.1-32.156-16.53-48.433-3.076-14.576-6.256-29.651-13.73-43.623-9.055-16.928-29.926-32.576-53.176-39.867-13.747-4.311-34.529-7.729-55.455.469l-.159-.288c21.047-8.244,41.933-4.811,55.744-.479,23.339,7.319,44.294,23.033,53.388,40.035,7.493,14.008,10.677,29.1,13.757,43.7,3.429,16.253,6.975,33.06,16.493,48.341,7.951,12.764,20.5,24.025,37.29,33.469,15.786,8.877,35.035,15.815,55.664,20.06a241.98,241.98,0,0,0,63.385,4.444C140-366.063,160.33-370.56,178.266-378c9.236-3.832,18.021-8.395,26.516-12.805,13.293-6.9,27.04-14.04,42.743-18.484a142.03,142.03,0,0,1,46.143-4.788c15.92.907,31.075,4.335,43.827,9.913,12.592,5.508,23.017,13,33.1,20.245,4.747,3.409,9.655,6.937,14.728,10.215,36.113,23.325,84.573,37.2,144.036,41.248,50.585,3.436,107.692-.517,165.132-11.447,43.695-8.313,86.906-19.609,128.7-30.531,59.288-15.5,120.593-31.523,184.014-39.2,66.283-8.017,135.741-7.04,206.446,2.909a866.108,866.108,0,0,1,192.738,50.049c8.253,3.209,16.6,6.593,24.667,9.868,32.52,13.192,66.133,26.833,103.653,32.836,35.453,5.669,74.093,4.515,114.853-3.431,35.427-6.905,71.346-18.647,106.786-34.9s68.307-35.5,100.12-54.111c26.613-15.575,54.133-31.681,83.026-45.971,35.013-17.309,69.986-30.357,103.946-38.777,39.933-9.9,78.48-13.368,114.56-10.309l-.04.316c-36.04-3.059-74.533.407-114.413,10.3-33.933,8.415-68.88,21.451-103.853,38.748-28.893,14.283-56.4,30.385-83.013,45.959-31.813,18.619-64.72,37.872-100.16,54.128C1721.05-339.756,1685.1-328,1649.65-321.093a362.027,362.027,0,0,1-69.133,6.973" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path18" d="M1570.476-309.407a279.253,279.253,0,0,1-44.88-3.529c-37.573-6.112-71.346-20.153-104.013-33.732-8.107-3.365-16.48-6.847-24.76-10.143a845.326,845.326,0,0,0-192.953-51.24c-70.645-10.087-139.9-10.887-205.845-2.377-63.106,8.143-123.982,24.931-182.853,41.167-41.513,11.449-84.439,23.287-127.9,32.037-57.155,11.509-114.09,15.785-164.64,12.376-59.449-4.012-108.077-18.267-144.532-42.361-5.12-3.384-10.073-7.025-14.865-10.545-10.157-7.465-20.664-15.187-33.276-20.837-12.763-5.72-27.881-9.212-43.723-10.1a135.547,135.547,0,0,0-45.8,5.087c-15.548,4.64-29.124,12.068-42.253,19.249-8.411,4.6-17.108,9.36-26.276,13.367-17.812,7.787-38.071,12.52-60.209,14.068a233.454,233.454,0,0,1-63.414-4.417C27.6-365.687,8.242-372.83-7.682-382c-16.955-9.763-29.693-21.432-37.858-34.68-9.768-15.847-13.581-33.276-17.268-50.131-3.3-15.1-6.717-30.705-14.4-45.159-9.544-17.964-31.173-34.289-55.1-41.591-13.433-4.1-33.688-7.235-53.886,1.1l-.167-.284c20.317-8.383,40.679-5.231,54.18-1.112,24.018,7.329,45.73,23.721,55.314,41.76,7.7,14.488,11.117,30.117,14.424,45.231,3.683,16.832,7.49,34.236,17.231,50.041C-37.07-403.627-24.374-392-7.47-382.262c15.888,9.148,35.2,16.277,55.846,20.615a233,233,0,0,0,63.291,4.408c22.091-1.545,42.3-6.268,60.068-14.033,9.152-4,17.841-8.753,26.244-13.351,13.148-7.192,26.744-14.629,42.333-19.284a135.961,135.961,0,0,1,45.951-5.1c15.893.889,31.065,4.395,43.875,10.135,12.651,5.671,23.173,13.4,33.348,20.879,4.788,3.52,9.737,7.156,14.849,10.535,36.4,24.057,84.954,38.288,144.33,42.3,50.513,3.411,107.406-.865,164.52-12.367,43.449-8.751,86.366-20.585,127.872-32.032,58.886-16.24,119.777-33.031,182.914-41.18,65.978-8.513,135.277-7.713,205.965,2.381A845.728,845.728,0,0,1,1396.983-357.1c8.293,3.3,16.667,6.779,24.76,10.144,32.64,13.571,66.4,27.6,103.92,33.705,35.453,5.768,73.973,4.451,114.506-3.905,35.213-7.264,70.867-19.541,105.946-36.492s67.56-36.989,98.986-56.373c26.293-16.221,53.48-32.995,82.08-47.888,34.64-18.044,69.307-31.671,103.053-40.5,39.667-10.383,78.053-14.1,114.106-11.033l-.04.315c-36-3.059-74.346.651-113.96,11.021-33.707,8.823-68.346,22.437-102.96,40.467-28.587,14.888-55.773,31.657-82.066,47.875-31.427,19.391-63.933,39.44-99.013,56.392-35.12,16.965-70.8,29.253-106.04,36.524a345.759,345.759,0,0,1-69.786,7.44" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path20" d="M1560.5-304.691a269.173,269.173,0,0,1-43.947-3.52c-37.573-6.212-71.48-20.641-104.266-34.595-8.133-3.461-16.547-7.041-24.867-10.431a826.685,826.685,0,0,0-193.264-52.455c-70.624-10.228-139.717-10.849-205.359-1.845-62.821,8.615-123.281,26.169-181.75,43.147-41.228,11.972-83.861,24.352-127.077,33.537-56.833,12.083-113.556,16.68-164.033,13.3-59.363-3.976-108.09-18.583-144.829-43.412-5.161-3.487-10.159-7.24-14.995-10.869-10.249-7.7-20.848-15.653-33.516-21.467-12.82-5.881-27.955-9.449-43.769-10.321a129.982,129.982,0,0,0-45.6,5.4c-15.437,4.849-28.864,12.577-41.849,20.049-8.316,4.787-16.917,9.736-26,13.911-37.008,17.008-86.412,20.084-132.157,8.231-18.8-4.875-36.341-12.224-50.723-21.26-15.311-9.62-27-20.927-34.736-33.608-9.99-16.371-14.065-34.4-18.005-51.828-3.53-15.613-7.181-31.757-15.066-46.693-10.038-19.013-32.395-36.005-56.956-43.292-18.823-5.584-36.936-4.993-52.383,1.705l-.172-.281c15.537-6.74,33.755-7.337,52.68-1.724,24.654,7.316,47.1,24.375,57.174,43.461,7.9,14.971,11.559,31.135,15.093,46.765,3.935,17.409,8.005,35.412,17.971,51.743C-36.872-386.42-5.8-366.479,33.337-356.336c45.648,11.829,94.944,8.764,131.865-8.205,9.064-4.165,17.657-9.112,25.967-13.893,13-7.483,26.451-15.223,41.929-20.085a130.382,130.382,0,0,1,45.759-5.417c15.868.873,31.056,4.456,43.923,10.357,12.708,5.831,23.323,13.8,33.587,21.507,4.832,3.628,9.828,7.38,14.98,10.861,36.679,24.789,85.337,39.371,144.624,43.343,50.443,3.38,107.121-1.216,163.91-13.289,43.2-9.184,85.827-21.56,127.048-33.531,58.484-16.981,118.96-34.541,181.812-43.161,65.682-9.007,134.82-8.388,205.485,1.848a827.045,827.045,0,0,1,193.36,52.481c8.32,3.391,16.733,6.971,24.88,10.433,32.76,13.944,66.653,28.361,104.16,34.565,35.453,5.86,73.866,4.385,114.16-4.385,35.013-7.621,70.373-20.433,105.106-38.08,34.707-17.64,66.813-38.481,97.853-58.636,25.973-16.867,52.84-34.305,81.12-49.805,34.28-18.777,68.64-32.983,102.16-42.221,39.413-10.865,77.64-14.82,113.653-11.761l-.04.317c-35.947-3.057-74.133.9-113.493,11.744-33.48,9.232-67.827,23.425-102.066,42.187-28.28,15.493-55.133,32.928-81.106,49.792-31.053,20.16-63.16,41.008-97.893,58.656-34.76,17.661-70.16,30.485-105.2,38.116a331.283,331.283,0,0,1-70.373,7.909" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path22" d="M1550.609-299.973a259.8,259.8,0,0,1-43.093-3.515c-37.573-6.315-71.613-21.136-104.546-35.467-8.16-3.555-16.6-7.229-24.947-10.707a809.124,809.124,0,0,0-193.576-53.669c-70.6-10.369-139.532-10.813-204.875-1.317C917.04-395.56,857-377.238,798.93-359.518c-40.947,12.495-83.286,25.417-126.257,35.039-56.509,12.652-113.016,17.571-163.428,14.221-59.276-3.94-108.1-18.9-145.125-44.461-5.2-3.591-10.247-7.459-15.125-11.2-10.339-7.925-21.031-16.12-33.755-22.092a119.229,119.229,0,0,0-43.813-10.543,124.86,124.86,0,0,0-45.4,5.712c-15.325,5.057-28.6,13.085-41.443,20.848-8.223,4.972-16.727,10.113-25.723,14.455-18.144,8.756-39.866,14.169-62.816,15.655a218.066,218.066,0,0,1-66.363-6.112c-40.523-10.188-72.817-31.009-88.6-57.125-10.211-16.893-14.548-35.515-18.744-53.523-3.756-16.132-7.642-32.813-15.734-48.232-5.087-9.692-13.275-19.053-23.68-27.076a106.41,106.41,0,0,0-35.062-17.893c-18.4-5.3-36.016-4.511-50.951,2.291l-.179-.279c15.027-6.844,32.747-7.643,51.249-2.311a106.712,106.712,0,0,1,35.2,17.959c10.443,8.051,18.663,17.449,23.77,27.18,8.11,15.453,12,32.151,15.761,48.3,4.189,17.987,8.521,36.585,18.709,53.44,15.738,26.039,47.95,46.8,88.375,56.965a217.454,217.454,0,0,0,66.226,6.1c22.9-1.483,44.562-6.881,62.659-15.613,8.977-4.332,17.475-9.469,25.691-14.437,12.857-7.776,26.155-15.813,41.524-20.885a125.3,125.3,0,0,1,45.565-5.733,119.636,119.636,0,0,1,43.973,10.583c12.761,5.987,23.469,14.2,33.824,22.133,4.873,3.736,9.915,7.6,15.109,11.187,36.963,25.52,85.72,40.455,144.917,44.388,50.367,3.351,106.832-1.565,163.3-14.211,42.953-9.617,85.286-22.535,126.225-35.028,58.081-17.724,118.142-36.052,180.706-45.145,65.387-9.5,134.36-9.06,205,1.319a809.866,809.866,0,0,1,193.684,53.7c8.347,3.48,16.787,7.156,24.947,10.709,32.906,14.323,66.933,29.133,104.453,35.437,35.44,5.96,73.733,4.324,113.786-4.863,34.813-7.979,69.893-21.325,104.266-39.669s66.066-39.973,96.733-60.9c25.653-17.511,52.187-35.617,80.173-51.721,33.893-19.511,67.973-34.3,101.266-43.944,39.147-11.345,77.227-15.544,113.187-12.484l-.027.315c-35.92-3.056-73.947,1.14-113.04,12.469-33.266,9.639-67.306,24.411-101.173,43.905-27.973,16.1-54.493,34.2-80.146,51.708-30.68,20.931-62.387,42.575-96.773,60.92-34.4,18.361-69.52,31.72-104.36,39.708a317.428,317.428,0,0,1-70.88,8.383" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path24" d="M1540.756-295.253a251.063,251.063,0,0,1-42.28-3.509c-37.573-6.419-71.76-21.629-104.813-36.337-8.187-3.648-16.667-7.419-25.04-10.987a792.969,792.969,0,0,0-193.886-54.884c-70.58-10.511-139.348-10.777-204.39-.788C908.1-392.2,848.471-373.107,790.806-354.644c-40.661,13.017-82.709,26.48-125.434,36.537-56.184,13.227-112.49,18.464-162.818,15.144-59.191-3.9-108.117-19.215-145.425-45.509-5.241-3.695-10.329-7.673-15.251-11.521-10.431-8.156-21.216-16.589-34-22.721a116.559,116.559,0,0,0-43.859-10.765,120.066,120.066,0,0,0-45.207,6.027c-15.212,5.264-28.337,13.592-41.031,21.644-8.132,5.157-16.54,10.492-25.452,15-17.883,9.048-38.465,14.515-61.174,16.251a210.77,210.77,0,0,1-65.113-5.424c-41.749-10.169-75.159-31.8-91.662-59.356-10.433-17.416-15.032-36.635-19.48-55.22-3.984-16.649-8.105-33.865-16.4-49.768-5.3-10.161-13.779-19.94-24.51-28.279a105.74,105.74,0,0,0-35.958-18.345c-17.985-5.032-35.129-4.045-49.577,2.853l-.187-.275c14.541-6.947,31.791-7.943,49.883-2.88a106.157,106.157,0,0,1,36.094,18.413c10.77,8.367,19.276,18.183,24.6,28.384,8.316,15.935,12.44,33.167,16.428,49.833,4.444,18.565,9.037,37.761,19.447,55.141,16.457,27.472,49.782,49.047,91.432,59.192a210.31,210.31,0,0,0,64.974,5.413c22.652-1.731,43.18-7.184,61.015-16.208,8.895-4.5,17.295-9.829,25.419-14.981,12.712-8.065,25.857-16.4,41.116-21.684a120.44,120.44,0,0,1,45.372-6.051,116.964,116.964,0,0,1,44.021,10.808c12.819,6.148,23.62,14.595,34.067,22.764,4.917,3.844,10,7.82,15.235,11.509,37.248,26.251,86.1,41.539,145.214,45.436,50.289,3.321,106.546-1.915,162.689-15.132,42.708-10.055,84.746-23.512,125.4-36.528C848.354-373.408,908-392.5,970.278-402.07c65.089-10,133.9-9.731,204.525.788A793.434,793.434,0,0,1,1368.8-346.368c8.373,3.569,16.853,7.341,25.04,10.988,33.04,14.7,67.2,29.9,104.72,36.305,35.44,6.056,73.613,4.259,113.44-5.339,34.6-8.337,69.4-22.22,103.427-41.259s65.32-41.467,95.6-63.164c25.333-18.156,51.533-36.928,79.213-53.639,33.533-20.244,67.307-35.608,100.386-45.665,38.88-11.827,76.813-16.271,112.733-13.212l-.04.317c-35.866-3.057-73.733,1.384-112.573,13.192-33.04,10.048-66.773,25.4-100.28,45.625-27.667,16.7-53.867,35.471-79.2,53.623-30.28,21.7-61.6,44.144-95.626,63.186-34.067,19.056-68.893,32.952-103.533,41.3a304.864,304.864,0,0,1-71.346,8.856" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path26" d="M1530.969-290.531a242.725,242.725,0,0,1-41.533-3.508c-37.573-6.517-71.88-22.116-105.066-37.2-8.227-3.74-16.733-7.608-25.147-11.269a777.882,777.882,0,0,0-194.2-56.1c-70.56-10.653-139.164-10.741-203.906-.257-61.96,10.031-121.172,29.891-178.435,49.093-40.38,13.543-82.132,27.545-124.61,38.037-55.863,13.8-111.956,19.355-162.214,16.067-28.113-1.839-54.345-6.451-77.968-13.709-25.568-7.856-48.364-18.908-67.755-32.849-5.279-3.8-10.412-7.889-15.376-11.845-10.523-8.387-21.4-17.059-34.239-23.349a114.022,114.022,0,0,0-43.905-10.988,115.392,115.392,0,0,0-45.009,6.34c-15.1,5.473-28.077,14.1-40.625,22.441-8.039,5.345-16.351,10.871-25.173,15.547-17.386,9.211-37.438,14.875-59.6,16.832A203.883,203.883,0,0,1,22.319-332c-42.913-10.119-77.4-32.555-94.627-61.553-10.655-17.941-15.518-37.756-20.218-56.917-4.212-17.168-8.567-34.92-17.074-51.305-11.347-21.86-36.316-41.253-62.128-48.259-17.588-4.773-34.281-3.6-48.272,3.4l-.192-.273c14.085-7.043,30.881-8.227,48.58-3.425,25.908,7.032,50.968,26.5,62.357,48.435,8.521,16.416,12.88,34.184,17.1,51.367,4.7,19.143,9.553,38.937,20.187,56.84,17.176,28.92,51.581,51.3,94.392,61.392a203.34,203.34,0,0,0,63.75,4.739c22.1-1.952,42.1-7.6,59.437-16.784,8.808-4.667,17.112-10.185,25.143-15.525,12.568-8.355,25.563-16.995,40.708-22.484a115.954,115.954,0,0,1,45.181-6.367A114.473,114.473,0,0,1,300.71-377.7c12.875,6.309,23.771,15,34.309,23.393,4.96,3.953,10.089,8.044,15.363,11.833,19.355,13.919,42.113,24.952,67.638,32.793,23.589,7.249,49.788,11.855,77.868,13.692,50.209,3.288,106.261-2.268,162.08-16.053,42.46-10.489,84.205-24.489,124.576-38.029,57.281-19.209,116.51-39.072,178.5-49.112,64.786-10.491,133.437-10.4,204.042.26A778.242,778.242,0,0,1,1359.4-342.792c8.413,3.661,16.92,7.531,25.147,11.272,33.16,15.075,67.453,30.663,104.973,37.169,35.44,6.151,73.493,4.192,113.093-5.815,34.4-8.7,68.92-23.113,102.586-42.849s64.573-42.96,94.466-65.428c25.027-18.8,50.893-38.241,78.267-55.555,33.16-20.977,66.64-36.92,99.479-47.387,38.627-12.308,76.413-17,112.28-13.937l-.04.316c-35.813-3.053-73.533,1.628-112.106,13.917-32.813,10.455-66.253,26.385-99.386,47.344-27.36,17.307-53.227,36.743-78.24,55.539-29.907,22.472-60.827,45.712-94.506,65.452-33.707,19.753-68.253,34.185-102.693,42.892a292.911,292.911,0,0,1-71.746,9.331" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path28" d="M1521.223-285.807a235.124,235.124,0,0,1-40.827-3.507c-37.573-6.62-72.026-22.611-105.333-38.075-8.267-3.833-16.8-7.8-25.24-11.547a763.855,763.855,0,0,0-194.51-57.313c-70.537-10.8-138.976-10.707-203.421.273-61.672,10.5-120.466,31.128-177.328,51.075-40.1,14.065-81.558,28.611-123.793,39.539-55.54,14.369-111.428,20.24-161.606,16.988-28.072-1.82-54.306-6.507-77.973-13.927-25.615-8.029-48.509-19.361-68.047-33.68-5.32-3.9-10.5-8.1-15.5-12.169-10.613-8.619-21.588-17.529-34.48-23.98a111.745,111.745,0,0,0-43.952-11.211,111.422,111.422,0,0,0-44.811,6.655c-14.987,5.681-27.812,14.607-40.215,23.239a290.415,290.415,0,0,1-24.9,16.091c-16.909,9.372-36.453,15.224-58.087,17.4a196.983,196.983,0,0,1-62.7-4.091c-20.879-4.759-40.659-12.859-57.2-23.419-17.607-11.24-31.166-24.8-40.3-40.305-10.876-18.464-16-38.875-20.955-58.613-4.439-17.687-9.029-35.973-17.742-52.843-11.839-22.919-37.448-42.963-63.728-49.875-17.205-4.528-33.468-3.171-47.025,3.919l-.2-.269c13.653-7.14,30.023-8.508,47.336-3.952,26.376,6.937,52.08,27.052,63.96,50.05,8.728,16.9,13.322,35.2,17.765,52.9,4.951,19.72,10.068,40.111,20.925,58.539,9.106,15.46,22.629,28.983,40.189,40.195,16.5,10.535,36.238,18.615,57.071,23.365a196.612,196.612,0,0,0,62.554,4.083c21.576-2.168,41.065-8.005,57.925-17.348a290.491,290.491,0,0,0,24.869-16.072c12.423-8.644,25.267-17.584,40.3-23.281a111.622,111.622,0,0,1,44.988-6.681,112.109,112.109,0,0,1,44.12,11.252c12.932,6.471,23.921,15.395,34.549,24.024,5,4.064,10.176,8.264,15.491,12.159,19.5,14.295,42.357,25.607,67.929,33.624,23.635,7.408,49.833,12.088,77.87,13.907,50.145,3.249,105.974-2.617,161.469-16.976,42.216-10.921,83.669-25.465,123.758-39.528,56.877-19.952,115.69-40.584,177.4-51.095,64.488-10.983,132.976-11.073,203.561-.272A764.178,764.178,0,0,1,1350-339.217c8.44,3.751,16.987,7.716,25.24,11.551,33.293,15.452,67.72,31.431,105.24,38.041,35.44,6.243,73.373,4.125,112.733-6.293,34.2-9.056,68.44-24.007,101.76-44.439,33.293-20.425,63.813-44.452,93.333-67.689,24.707-19.445,50.24-39.553,77.306-57.475,32.8-21.711,65.973-38.233,98.6-49.109,38.36-12.788,75.986-17.719,111.826-14.663l-.04.317c-35.786-3.053-73.346,1.872-111.653,14.64-32.587,10.864-65.733,27.372-98.493,49.064-27.067,17.912-52.6,38.016-77.293,57.456-29.52,23.244-60.053,47.28-93.373,67.715-33.347,20.452-67.613,35.417-101.853,44.484a281.8,281.8,0,0,1-72.106,9.809" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path30" d="M508.832-280.247q-13.4,0-26.36-.832c-28.032-1.8-54.267-6.56-77.978-14.143-25.663-8.2-48.655-19.815-68.339-34.513-5.36-4-10.581-8.319-15.631-12.493-10.7-8.848-21.771-18-34.721-24.609a109.491,109.491,0,0,0-44-11.431,107.417,107.417,0,0,0-44.613,6.965c-14.875,5.891-27.551,15.116-39.809,24.04a285.154,285.154,0,0,1-24.625,16.635c-32.228,18.657-75.3,23.941-118.173,14.5a182.247,182.247,0,0,1-58.65-23.889c-18.141-11.635-32.147-25.757-41.628-41.975-11.1-18.987-16.483-39.995-21.692-60.312-4.666-18.2-9.492-37.025-18.412-54.379-12.327-23.981-38.555-44.667-65.267-51.471-16.837-4.291-32.689-2.763-45.84,4.423l-.205-.267c13.247-7.236,29.207-8.776,46.155-4.46,26.811,6.831,53.135,27.588,65.5,51.651,8.935,17.38,13.764,36.219,18.434,54.437,5.2,20.3,10.585,41.286,21.663,60.236,9.454,16.175,23.423,30.26,41.518,41.864A181.824,181.824,0,0,0,14.68-316.434c42.767,9.419,85.727,4.152,117.866-14.456A284.575,284.575,0,0,0,157.138-347.5c12.277-8.936,24.972-18.176,39.9-24.084a107.872,107.872,0,0,1,44.795-7A109.926,109.926,0,0,1,286-367.107c12.985,6.631,24.071,15.793,34.789,24.653,5.045,4.171,10.264,8.483,15.616,12.481,19.648,14.672,42.6,26.264,68.223,34.455,23.679,7.571,49.877,12.323,77.873,14.124,50.065,3.217,105.689-2.967,160.858-17.9,41.969-11.357,83.13-26.441,122.937-41.028,56.473-20.695,114.87-42.093,176.293-53.076,64.191-11.477,132.517-11.748,203.082-.8a750.846,750.846,0,0,1,194.926,58.56c8.48,3.84,17.053,7.9,25.346,11.832,33.413,15.828,67.973,32.2,105.493,38.907,35.44,6.34,73.253,4.06,112.386-6.771,34-9.413,67.947-24.9,100.906-46.027s63.08-45.947,92.213-69.954c24.387-20.091,49.587-40.865,76.36-59.391,32.427-22.444,65.293-39.545,97.706-50.831,38.107-13.268,75.573-18.449,111.36-15.387l-.04.315c-35.733-3.052-73.133,2.116-111.186,15.364-32.36,11.273-65.2,28.359-97.6,50.784-26.76,18.517-51.96,39.287-76.333,59.372-29.146,24.015-59.28,48.847-92.253,69.979-32.987,21.149-66.987,36.652-101.013,46.077-39.2,10.849-77.067,13.132-112.586,6.78-37.573-6.721-72.16-23.1-105.6-38.941-8.293-3.928-16.867-7.989-25.333-11.829A750.532,750.532,0,0,0,1145.6-393.887c-70.517-10.939-138.793-10.669-202.937.8C881.28-382.11,822.9-360.717,766.445-340.029c-39.815,14.589-80.984,29.676-122.972,41.039-45.7,12.368-91.726,18.741-134.641,18.743" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path32" d="M501.04-272.993q-12.832,0-25.263-.791c-27.989-1.787-54.227-6.617-77.982-14.359-25.711-8.38-48.8-20.273-68.63-35.348-5.4-4.107-10.669-8.537-15.763-12.821-10.793-9.076-21.953-18.463-34.959-25.232A107.4,107.4,0,0,0,234.4-373.2a103.6,103.6,0,0,0-44.415,7.28c-14.764,6.1-27.287,15.623-39.4,24.835-7.76,5.9-15.784,12-24.352,17.181-31.315,18.922-73.471,24.636-115.66,15.667a181.417,181.417,0,0,1-60.031-24.333c-18.659-12.024-33.1-26.708-42.928-43.643-11.321-19.509-16.969-41.115-22.431-62.009-4.893-18.72-9.953-38.079-19.079-55.912-6.077-11.876-15.9-23.616-27.657-33.06-12.171-9.773-25.691-16.685-39.1-19.991-16.485-4.064-31.945-2.365-44.708,4.909l-.211-.263c12.859-7.329,28.429-9.043,45.024-4.949,13.463,3.317,27.036,10.256,39.251,20.067,11.793,9.469,21.645,21.247,27.743,33.161,9.141,17.861,14.2,37.235,19.1,55.969,5.457,20.876,11.1,42.463,22.4,61.937,9.8,16.891,24.206,31.536,42.818,43.531a181,181,0,0,0,59.9,24.279c42.082,8.943,84.125,3.251,115.348-15.617,8.55-5.168,16.567-11.263,24.319-17.16,12.132-9.225,24.677-18.765,39.485-24.883a104.069,104.069,0,0,1,44.6-7.313,107.845,107.845,0,0,1,44.219,11.7c13.041,6.789,24.217,16.188,35.025,25.279,5.089,4.281,10.355,8.708,15.749,12.809,19.795,15.049,42.845,26.923,68.514,35.287,23.721,7.732,49.923,12.556,77.874,14.34,49.993,3.193,105.4-3.316,160.248-18.82,41.721-11.792,82.586-27.415,122.106-42.524,56.076-21.439,114.061-43.607,175.2-55.063,63.891-11.971,132.057-12.421,202.6-1.333a721.6,721.6,0,0,1,100,23.245,762.15,762.15,0,0,1,95.246,36.531c8.512,3.935,17.112,8.092,25.445,12.116,33.547,16.2,68.226,32.96,105.746,39.772,35.44,6.433,73.133,4,112.026-7.249,33.8-9.771,67.466-25.792,100.08-47.615s62.333-47.439,91.08-72.216c24.067-20.736,48.946-42.179,75.4-61.311,32.067-23.179,64.64-40.859,96.813-52.552,37.853-13.751,75.173-19.171,110.906-16.113l-.027.316c-35.693-3.056-72.946,2.359-110.72,16.088-32.146,11.681-64.693,29.345-96.72,52.5-26.453,19.124-51.333,40.56-75.387,61.29-28.76,24.785-58.493,50.413-91.106,72.241-32.653,21.847-66.36,37.884-100.187,47.667-38.96,11.265-76.733,13.708-112.24,7.26-37.573-6.823-72.28-23.591-105.853-39.807-8.333-4.021-16.933-8.18-25.44-12.112a761.248,761.248,0,0,0-95.2-36.512,721.284,721.284,0,0,0-99.937-23.231c-70.494-11.079-138.609-10.632-202.451,1.332-61.1,11.448-119.066,33.609-175.124,55.041-39.529,15.112-80.4,30.739-122.142,42.536-45.807,12.947-92.016,19.625-135.133,19.625" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path34" d="M493.315-265.735q-12.3,0-24.231-.753c-27.949-1.768-54.188-6.673-77.988-14.577a231.14,231.14,0,0,1-68.924-36.179c-5.44-4.208-10.751-8.749-15.885-13.141-10.885-9.308-22.139-18.935-35.2-25.864A105.467,105.467,0,0,0,227-368.127a100.011,100.011,0,0,0-44.217,7.595c-14.652,6.3-27.028,16.129-38.995,25.632-7.667,6.087-15.593,12.38-24.076,17.725C89.262-297.991,47.988-291.863,6.472-300.37a180.418,180.418,0,0,1-61.347-24.756c-18.89-12.235-34.174-27.9-44.2-45.3-11.543-20.033-17.453-42.235-23.169-63.707-5.12-19.237-10.416-39.131-19.748-57.448-6.287-12.34-16.373-24.5-28.4-34.243-12.464-10.093-26.219-17.139-39.781-20.369-16.147-3.848-31.237-1.991-43.633,5.376l-.217-.26c12.495-7.423,27.692-9.3,43.952-5.421,13.623,3.247,27.433,10.316,39.939,20.445,12.065,9.771,22.181,21.969,28.488,34.347,9.346,18.344,14.645,38.252,19.77,57.505,5.71,21.453,11.616,43.636,23.14,63.636,10,17.359,25.248,32.985,44.091,45.189a179.985,179.985,0,0,0,61.207,24.7c41.409,8.485,82.566,2.377,112.923-16.748,8.466-5.336,16.385-11.624,24.044-17.705,11.987-9.516,24.381-19.357,39.08-25.684a100.691,100.691,0,0,1,44.411-7.628,105.915,105.915,0,0,1,44.267,11.925c13.1,6.949,24.371,16.589,35.271,25.911,5.132,4.389,10.439,8.928,15.872,13.132a230.793,230.793,0,0,0,68.806,36.117C415-273.469,441.2-268.571,469.111-266.8c49.925,3.159,105.118-3.667,159.637-19.74,41.476-12.228,82.05-28.392,121.288-44.025,55.672-22.18,113.24-45.116,174.092-57.045,63.594-12.465,131.6-13.091,202.122-1.863a706.577,706.577,0,0,1,100.065,23.659,754.067,754.067,0,0,1,95.494,37.333c8.532,4.021,17.175,8.277,25.521,12.391,33.68,16.583,68.506,33.731,106.026,40.644,35.44,6.531,73.026,3.931,111.68-7.727,33.6-10.128,66.986-26.684,99.24-49.2s61.587-48.931,89.946-74.478c23.746-21.381,48.293-43.491,74.453-63.227,31.693-23.912,63.96-42.172,95.92-54.275,37.587-14.232,74.747-19.895,110.453-16.839l-.04.315c-35.64-3.052-72.733,2.6-110.253,16.812-31.933,12.091-64.173,30.332-95.827,54.223-26.146,19.727-50.693,41.831-74.427,63.207-28.373,25.556-57.72,51.981-89.987,74.507-32.293,22.544-65.72,39.116-99.346,49.259-38.733,11.679-76.373,14.28-111.893,7.737-37.573-6.924-72.427-24.084-106.133-40.68-8.347-4.112-16.989-8.368-25.519-12.388a753.8,753.8,0,0,0-95.441-37.313,706.717,706.717,0,0,0-100-23.644c-70.472-11.22-138.425-10.6-201.967,1.863C863.4-375.384,805.852-352.458,750.2-330.283c-39.245,15.636-79.828,31.805-121.322,44.036-45.884,13.528-92.258,20.511-135.558,20.512" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path36" d="M485.651-258.475q-11.792,0-23.261-.719c-27.907-1.751-54.147-6.728-77.993-14.792A231.2,231.2,0,0,1,315.182-311c-5.48-4.309-10.833-8.965-16.012-13.465-10.976-9.539-22.325-19.4-35.445-26.493a103.624,103.624,0,0,0-44.133-12.1,96.819,96.819,0,0,0-44.02,7.908c-14.54,6.513-26.765,16.637-38.588,26.431-7.573,6.273-15.4,12.757-23.8,18.271-15.2,9.977-32.914,16.548-52.651,19.532a172.029,172.029,0,0,1-58.258-1.617c-47.13-9.3-87.521-36.255-108.042-72.113C-117.534-385.2-123.7-408-129.674-430.048c-5.347-19.757-10.878-40.187-20.418-58.987-6.5-12.8-16.843-25.383-29.131-35.421-12.745-10.409-26.727-17.58-40.431-20.737-15.827-3.644-30.56-1.628-42.609,5.831l-.223-.257c12.145-7.516,26.992-9.549,42.932-5.879,13.765,3.169,27.8,10.367,40.591,20.815,12.324,10.067,22.7,22.683,29.216,35.524,9.553,18.828,15.087,39.271,20.439,59.041,5.964,22.031,12.131,44.811,23.878,65.335,20.474,35.775,60.769,62.668,107.79,71.941a171.508,171.508,0,0,0,58.1,1.615C80.142-294.2,97.8-300.751,112.953-310.7c8.379-5.5,16.2-11.981,23.767-18.248,11.843-9.807,24.087-19.949,38.676-26.485a97.361,97.361,0,0,1,44.217-7.943,104.058,104.058,0,0,1,44.316,12.148c13.155,7.109,24.521,16.988,35.511,26.54,5.176,4.5,10.527,9.149,16,13.455a230.773,230.773,0,0,0,69.1,36.949c23.809,8.053,50.011,13.023,77.88,14.771,49.847,3.128,104.83-4.017,159.028-20.661,41.229-12.663,81.509-29.369,120.464-45.524,55.27-22.924,112.424-46.627,172.989-59.028,63.3-12.964,131.137-13.767,201.641-2.395a692.43,692.43,0,0,1,100.132,24.073,746.83,746.83,0,0,1,95.741,38.133c8.56,4.112,17.232,8.463,25.625,12.669,33.8,16.961,68.76,34.5,106.28,41.515,35.453,6.629,72.906,3.867,111.333-8.2,33.387-10.488,66.493-27.579,98.4-50.795s60.827-50.424,88.813-76.744c23.427-22.024,47.64-44.8,73.493-65.141,31.333-24.645,63.306-43.485,95.04-56,37.32-14.712,74.333-20.623,109.986-17.564l-.027.315c-35.6-3.051-72.546,2.849-109.8,17.537-31.707,12.5-63.64,31.319-94.933,55.941-25.84,20.332-50.053,43.1-73.48,65.122-27.987,26.325-56.933,53.549-88.853,76.771-31.933,23.241-65.08,40.349-98.506,50.851-38.507,12.092-76.026,14.856-111.547,8.217-37.573-7.028-72.56-24.579-106.4-41.552-8.384-4.207-17.053-8.556-25.611-12.668a746.686,746.686,0,0,0-95.689-38.112,691.9,691.9,0,0,0-100.07-24.059c-70.449-11.361-138.237-10.556-201.481,2.392-60.525,12.392-117.658,36.088-172.91,59-38.964,16.161-79.253,32.872-120.5,45.539-45.939,14.109-92.45,21.4-135.921,21.4" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path38" d="M478.043-251.214q-11.318,0-22.347-.684c-27.867-1.736-54.108-6.785-78-15.011a231.326,231.326,0,0,1-69.508-37.844c-5.519-4.413-10.917-9.179-16.137-13.788-11.068-9.769-22.512-19.873-35.688-27.124a101.907,101.907,0,0,0-44.18-12.321,93.809,93.809,0,0,0-43.823,8.22c-14.427,6.723-26.5,17.147-38.178,27.229-7.481,6.457-15.216,13.136-23.527,18.816C91.841-293.6,74.536-286.854,55.223-283.683a163.957,163.957,0,0,1-57.237-1.04c-47.928-9.091-89.217-36.807-110.448-74.141-11.985-21.08-18.419-44.475-24.641-67.1-5.576-20.275-11.341-41.239-21.087-60.522-14.057-27.816-43.209-51.539-70.892-57.691-15.519-3.448-29.913-1.281-41.633,6.267l-.228-.251c11.816-7.611,26.324-9.8,41.957-6.321,27.787,6.176,57.041,29.972,71.141,57.871,9.759,19.308,15.528,40.289,21.107,60.577,6.219,22.608,12.648,45.984,24.614,67.032C-90.94-321.754-49.747-294.1-1.93-285.033a163.489,163.489,0,0,0,57.081,1.039c19.252-3.161,36.5-9.88,51.27-19.973,8.294-5.668,16.022-12.339,23.5-18.791,11.7-10.1,23.79-20.541,38.266-27.285a94.228,94.228,0,0,1,44.024-8.26,102.322,102.322,0,0,1,44.365,12.373c13.213,7.271,24.672,17.388,35.753,27.171,5.219,4.607,10.613,9.368,16.125,13.777A231.02,231.02,0,0,0,377.84-267.2c23.853,8.213,50.056,13.255,77.884,14.985,49.76,3.1,104.544-4.367,158.416-21.584,40.984-13.1,80.972-30.343,119.642-47.021,54.869-23.667,111.606-48.139,171.883-61.012,63-13.456,130.678-14.439,201.162-2.924a679.17,679.17,0,0,1,100.2,24.487,740.441,740.441,0,0,1,95.988,38.936c8.593,4.2,17.3,8.652,25.721,12.955,33.941,17.335,69.021,35.26,106.541,42.376,35.453,6.723,72.787,3.8,110.973-8.68,33.187-10.847,66.013-28.469,97.573-52.383,31.533-23.905,60.08-51.917,87.68-79.006,23.107-22.671,47-46.112,72.547-67.06,30.947-25.379,62.627-44.8,94.133-57.719,37.066-15.193,73.906-21.345,109.546-18.289l-.04.315c-35.56-3.051-72.347,3.092-109.333,18.26-31.48,12.907-63.12,32.307-94.04,57.66-25.546,20.937-49.427,44.376-72.52,67.04-27.613,27.1-56.173,55.117-87.733,79.034-31.573,23.939-64.44,41.583-97.667,52.444-38.266,12.505-75.68,15.428-111.2,8.693-37.573-7.127-72.693-25.067-106.656-42.416-8.42-4.3-17.125-8.747-25.715-12.949a739.905,739.905,0,0,0-95.936-38.915,678.549,678.549,0,0,0-100.133-24.472c-70.432-11.505-138.057-10.523-201,2.92C845.522-368.659,788.8-344.2,733.953-320.539c-38.68,16.683-78.676,33.935-119.68,47.037-45.971,14.692-92.606,22.288-136.23,22.288" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path40" d="M470.483-243.951q-10.874,0-21.48-.652c-27.827-1.716-54.071-6.839-78-15.225a231.7,231.7,0,0,1-69.8-38.677c-5.559-4.517-11-9.4-16.263-14.112-11.159-10-22.7-20.344-35.931-27.753a100.271,100.271,0,0,0-44.225-12.544,90.88,90.88,0,0,0-43.624,8.533c-14.316,6.931-26.24,17.656-37.771,28.027-7.389,6.644-15.027,13.515-23.253,19.361-14.452,10.272-31.365,17.183-50.272,20.537a158.538,158.538,0,0,1-56.252-.481,176.518,176.518,0,0,1-64.91-25.9c-20.27-13.347-36.816-30.72-47.85-50.244-12.208-21.6-18.9-45.595-25.379-68.8-5.8-20.792-11.8-42.293-21.756-62.059-14.535-28.867-44.215-53.213-72.176-59.205-15.221-3.264-29.3-.949-40.7,6.691l-.233-.248c11.5-7.707,25.693-10.039,41.031-6.751,28.067,6.016,57.851,30.437,72.428,59.389,9.965,19.791,15.969,41.305,21.776,62.109,6.472,23.187,13.162,47.16,25.354,68.733C-107.8-333.739-91.3-316.4-71.071-303.089a176.123,176.123,0,0,0,64.759,25.84,158.182,158.182,0,0,0,56.095.481c18.846-3.344,35.7-10.231,50.108-20.468,8.209-5.836,15.84-12.7,23.22-19.337,11.551-10.388,23.5-21.129,37.86-28.084a91.132,91.132,0,0,1,43.831-8.575,100.711,100.711,0,0,1,44.415,12.595c13.269,7.432,24.821,17.787,35.995,27.8,5.261,4.715,10.7,9.588,16.252,14.1a231.279,231.279,0,0,0,69.682,38.613c23.9,8.373,50.1,13.488,77.885,15.2,49.691,3.067,104.258-4.719,157.806-22.505,40.735-13.532,80.429-31.32,118.817-48.521,54.468-24.411,110.789-49.649,170.784-62.995,62.7-13.951,130.217-15.113,200.681-3.456a666.692,666.692,0,0,1,100.265,24.9,734.2,734.2,0,0,1,96.234,39.739c8.625,4.293,17.365,8.84,25.819,13.233,34.068,17.713,69.281,36.028,106.8,43.245,35.453,6.819,72.667,3.737,110.626-9.156,32.987-11.205,65.533-29.365,96.72-53.975s59.347-53.409,86.573-81.27c22.773-23.315,46.333-47.423,71.586-68.976,30.573-26.112,61.946-46.111,93.24-59.44,36.8-15.676,73.493-22.076,109.08-19.016l-.04.315c-35.493-3.051-72.133,3.336-108.866,18.984-31.253,13.313-62.6,33.292-93.146,59.38-25.24,21.543-48.787,45.645-71.56,68.954-27.24,27.869-55.4,56.685-86.6,81.3-31.24,24.636-63.813,42.816-96.84,54.036-38.04,12.919-75.333,16-110.853,9.172-37.573-7.229-72.827-25.559-106.92-43.283-8.451-4.395-17.189-8.941-25.811-13.233a733.853,733.853,0,0,0-96.182-39.715,665.928,665.928,0,0,0-100.2-24.885c-70.405-11.647-137.869-10.487-200.513,3.449-59.952,13.337-116.254,38.568-170.7,62.968-38.4,17.207-78.1,35-118.856,48.537-45.985,15.275-92.726,23.179-136.49,23.179" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path42" d="M462.971-236.686q-10.454,0-20.663-.621A283.925,283.925,0,0,1,364.3-252.75a232.177,232.177,0,0,1-70.092-39.509c-5.6-4.62-11.085-9.609-16.391-14.436-11.249-10.232-22.881-20.813-36.172-28.385a98.741,98.741,0,0,0-44.271-12.764A87.963,87.963,0,0,0,153.95-339c-14.205,7.139-25.979,18.164-37.367,28.824-7.293,6.831-14.836,13.893-22.976,19.907a119.61,119.61,0,0,1-49.159,21.028,153.323,153.323,0,0,1-55.3.063,174.988,174.988,0,0,1-65.979-26.248c-20.7-13.708-37.646-31.647-49.012-51.877-12.43-22.124-19.387-46.712-26.116-70.489-6.029-21.311-12.267-43.348-22.427-63.6-15.009-29.92-45.2-54.885-73.413-60.712-14.941-3.085-28.711-.629-39.819,7.1l-.24-.245c11.2-7.8,25.084-10.277,40.148-7.165,28.324,5.849,58.617,30.889,73.67,60.895,10.172,20.275,16.412,42.324,22.447,63.649,6.724,23.763,13.676,48.332,26.09,70.428,11.34,20.187,28.251,38.084,48.9,51.763a174.6,174.6,0,0,0,65.822,26.187,152.932,152.932,0,0,0,55.144-.061A119.245,119.245,0,0,0,93.36-290.5c8.123-6,15.658-13.057,22.945-19.88,11.4-10.679,23.2-21.721,37.453-28.885a88.432,88.432,0,0,1,43.639-8.891,99.156,99.156,0,0,1,44.463,12.819c13.325,7.592,24.973,18.187,36.237,28.429,5.3,4.825,10.785,9.812,16.377,14.427a231.753,231.753,0,0,0,69.976,39.444,283.469,283.469,0,0,0,77.887,15.417c49.625,3.032,103.973-5.068,157.2-23.427,40.491-13.967,79.892-32.3,118-50.023,54.065-25.149,109.972-51.157,169.678-64.977,62.4-14.441,129.758-15.783,200.2-3.984a654.659,654.659,0,0,1,100.332,25.316,729.055,729.055,0,0,1,96.48,40.537c8.656,4.387,17.432,9.031,25.919,13.52,34.192,18.085,69.552,36.791,107.072,44.108,35.44,6.913,72.533,3.672,110.266-9.635,32.773-11.561,65.04-30.256,95.88-55.56s58.6-54.905,85.44-83.536c22.467-23.961,45.693-48.735,70.626-70.893,30.213-26.847,61.293-47.423,92.36-61.163,36.533-16.156,73.067-22.8,108.626-19.741l-.04.316c-35.467-3.051-71.946,3.579-108.413,19.707-31.027,13.723-62.067,34.279-92.253,61.1-24.933,22.148-48.16,46.917-70.613,70.871-26.853,28.639-54.613,58.254-85.466,83.565-30.88,25.333-63.173,44.051-96.013,55.628-37.786,13.332-74.96,16.577-110.493,9.651-37.573-7.331-72.96-26.049-107.178-44.149-8.485-4.489-17.259-9.131-25.912-13.515a728.34,728.34,0,0,0-96.426-40.516,654.112,654.112,0,0,0-100.266-25.3c-70.386-11.788-137.684-10.449-200.028,3.979-59.665,13.811-115.55,39.808-169.6,64.951-38.115,17.729-77.525,36.064-118.036,50.037-45.977,15.86-92.81,24.071-136.7,24.072" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path44" d="M455.5-229.418q-10.058,0-19.889-.6A278.148,278.148,0,0,1,357.6-245.673a232.718,232.718,0,0,1-70.384-40.343c-5.64-4.724-11.172-9.828-16.523-14.764-11.339-10.46-23.064-21.277-36.408-29.007a97.274,97.274,0,0,0-44.317-12.988,85.638,85.638,0,0,0-43.229,9.161c-14.093,7.345-25.717,18.669-36.957,29.62-7.2,7.016-14.649,14.271-22.7,20.453a116.492,116.492,0,0,1-48.094,21.512,148.4,148.4,0,0,1-54.389.588,173.408,173.408,0,0,1-66.99-26.579c-21.11-14.065-38.45-32.567-50.145-53.5-12.651-22.649-19.871-47.832-26.854-72.185-6.257-21.831-12.729-44.4-23.095-65.136a130.213,130.213,0,0,0-31.908-40.087c-13.787-11.656-28.553-19.3-42.7-22.116-14.672-2.916-28.152-.323-38.977,7.5l-.245-.24c10.92-7.893,24.512-10.512,39.309-7.569,14.217,2.825,29.047,10.5,42.884,22.2a130.6,130.6,0,0,1,31.987,40.187c10.377,20.757,16.852,43.343,23.115,65.185,6.977,24.339,14.192,49.507,26.827,72.126,11.671,20.889,28.973,39.349,50.039,53.387a173.025,173.025,0,0,0,66.829,26.517,147.962,147.962,0,0,0,54.229-.587,116.109,116.109,0,0,0,47.93-21.439c8.037-6.169,15.476-13.417,22.672-20.425,11.259-10.969,22.9-22.313,37.042-29.684a85.757,85.757,0,0,1,43.447-9.207A97.664,97.664,0,0,1,234.5-330.047c13.381,7.751,25.12,18.58,36.473,29.055,5.347,4.933,10.876,10.033,16.509,14.752a232.27,232.27,0,0,0,70.269,40.276,277.674,277.674,0,0,0,77.889,15.635c49.543,3,103.686-5.417,156.584-24.347C632.47-269.079,671.58-287.95,709.4-306.2c53.663-25.892,109.152-52.668,168.574-66.96,62.1-14.936,129.3-16.457,199.719-4.516a642.984,642.984,0,0,1,100.4,25.731,723.611,723.611,0,0,1,96.728,41.34c8.685,4.476,17.495,9.215,26.012,13.8,34.323,18.465,69.816,37.559,107.336,44.98,35.44,7.005,72.413,3.605,109.906-10.113,32.587-11.92,64.56-31.149,95.053-57.151s57.84-56.4,84.307-85.8c22.146-24.6,45.04-50.045,69.68-72.808,29.84-27.58,60.613-48.736,91.466-62.884,36.267-16.639,72.667-23.525,108.16-20.468l-.04.316c-35.413-3.051-71.733,3.823-107.946,20.431-30.813,14.129-61.546,35.265-91.36,62.819-24.627,22.752-47.52,48.188-69.653,72.786-26.48,29.409-53.84,59.823-84.347,85.83-30.52,26.029-62.546,45.283-95.173,57.22-37.56,13.744-74.626,17.152-110.146,10.128-37.573-7.432-73.093-26.54-107.444-45.019-8.517-4.583-17.324-9.32-26.007-13.795a723.3,723.3,0,0,0-96.673-41.317,642.772,642.772,0,0,0-100.332-25.713c-70.365-11.931-137.5-10.413-199.543,4.509-59.376,14.281-114.846,41.048-168.49,66.932-37.831,18.253-76.949,37.129-117.214,51.537-45.955,16.445-92.86,24.965-136.869,24.968" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path46" d="M448.076-222.15q-9.678,0-19.156-.569A272.637,272.637,0,0,1,350.9-238.594a233.364,233.364,0,0,1-70.676-41.175c-5.68-4.827-11.257-10.043-16.649-15.088-11.431-10.691-23.249-21.747-36.651-29.637A95.865,95.865,0,0,0,182.566-337.7a82.956,82.956,0,0,0-43.032,9.472c-13.98,7.555-25.455,19.18-36.551,30.421-7.108,7.2-14.459,14.647-22.428,21a113.593,113.593,0,0,1-47.074,21.991,143.611,143.611,0,0,1-53.514,1.1,171.757,171.757,0,0,1-67.944-26.9,161.376,161.376,0,0,1-51.252-55.116c-12.875-23.173-20.357-48.955-27.592-73.886-6.485-22.347-13.192-45.453-23.764-66.668a134.5,134.5,0,0,0-32.567-41.24c-14.028-11.963-28.967-19.723-43.2-22.444-14.623-2.8-27.468-.141-38.173,7.889l-.251-.237c10.648-7.988,23.961-10.743,38.507-7.961,14.305,2.735,29.308,10.525,43.385,22.529a134.848,134.848,0,0,1,32.648,41.341c10.583,21.237,17.292,44.357,23.781,66.716,7.231,24.917,14.708,50.683,27.567,73.828a161.071,161.071,0,0,0,51.146,55,171.377,171.377,0,0,0,67.779,26.835,143.161,143.161,0,0,0,53.35-1.1A113.2,113.2,0,0,0,80.3-277.043c7.952-6.335,15.294-13.773,22.395-20.968,11.115-11.261,22.608-22.9,36.638-30.485a83.483,83.483,0,0,1,43.253-9.523,96.281,96.281,0,0,1,44.56,13.267c13.436,7.911,25.269,18.98,36.715,29.684,5.389,5.041,10.963,10.256,16.636,15.077a233.049,233.049,0,0,0,70.56,41.107,272.255,272.255,0,0,0,77.893,15.851c49.465,2.972,103.4-5.768,155.973-25.271,40-14.835,78.816-34.247,116.353-53.02,53.261-26.636,108.336-54.18,167.47-68.944,61.8-15.429,128.838-17.128,199.241-5.045a632.174,632.174,0,0,1,100.466,26.144,718.8,718.8,0,0,1,96.973,42.143c8.715,4.565,17.555,9.4,26.1,14.075,34.452,18.844,70.081,38.327,107.6,45.849,35.44,7.1,72.293,3.54,109.56-10.591,32.373-12.277,64.08-32.043,94.213-58.74S1660-374.323,1686.076-404.5c21.827-25.251,44.4-51.358,68.72-74.726,29.48-28.312,59.96-50.049,90.573-64.605,36.013-17.12,72.253-24.255,107.72-21.195l-.04.316c-35.387-3.052-71.546,4.068-107.493,21.155-30.587,14.539-61.027,36.252-90.48,64.539-24.307,23.357-46.88,49.46-68.693,74.7-26.093,30.181-53.066,61.391-83.213,88.094-30.16,26.728-61.907,46.515-94.333,58.812-37.333,14.159-74.28,17.728-109.8,10.607-37.587-7.532-73.234-27.033-107.714-45.889-8.547-4.675-17.384-9.508-26.1-14.072a718.342,718.342,0,0,0-96.918-42.119A631.764,631.764,0,0,0,1067.911-375c-70.342-12.073-137.316-10.377-199.06,5.037-59.089,14.755-114.144,42.287-167.384,68.913-37.549,18.779-76.374,38.195-116.394,53.039-45.919,17.033-92.878,25.863-137,25.864" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path48" d="M440.683-214.881q-9.318,0-18.456-.543a267.436,267.436,0,0,1-78.021-16.093,234.108,234.108,0,0,1-70.968-42.007c-5.719-4.929-11.34-10.257-16.777-15.411-11.52-10.923-23.433-22.216-36.892-30.267a94.569,94.569,0,0,0-44.408-13.432,80.615,80.615,0,0,0-42.834,9.787c-13.869,7.764-25.192,19.688-36.144,31.219-7.015,7.387-14.269,15.025-22.151,21.541-25.793,21.317-60.871,29.859-98.772,24.06a170.029,170.029,0,0,1-68.847-27.207,165.733,165.733,0,0,1-52.333-56.723c-13.1-23.7-20.84-50.073-28.329-75.583-6.713-22.865-13.655-46.507-24.433-68.207A138.916,138.916,0,0,0-231.9-516.133c-14.261-12.265-29.363-20.137-43.673-22.765-14.38-2.639-26.964.143-37.409,8.267l-.255-.232c10.541-8.2,23.237-11.007,37.743-8.344,14.384,2.64,29.551,10.543,43.863,22.852a139.24,139.24,0,0,1,33.295,42.491c10.789,21.721,17.735,45.376,24.449,68.252,7.484,25.495,15.225,51.857,28.305,75.525a165.42,165.42,0,0,0,52.228,56.609,169.666,169.666,0,0,0,68.679,27.141c37.778,5.783,72.737-2.731,98.44-23.975,7.867-6.5,15.114-14.133,22.123-21.512,10.97-11.551,22.312-23.495,36.229-31.285a80.98,80.98,0,0,1,43.06-9.839,94.968,94.968,0,0,1,44.609,13.489c13.492,8.072,25.421,19.379,36.956,30.315,5.432,5.151,11.049,10.476,16.764,15.4a233.764,233.764,0,0,0,70.852,41.94,267.066,267.066,0,0,0,77.894,16.065c49.38,2.939,103.11-6.117,155.364-26.191,39.752-15.271,78.274-35.223,115.528-54.52,52.86-27.377,107.521-55.689,166.369-70.927,61.507-15.927,128.38-17.8,198.761-5.577A622.076,622.076,0,0,1,1158.807-346.4a714.833,714.833,0,0,1,97.221,42.944c8.745,4.657,17.62,9.589,26.2,14.359,34.581,19.217,70.341,39.089,107.861,46.713,35.44,7.2,72.187,3.479,109.2-11.065,32.187-12.639,63.6-32.936,93.386-60.331s56.346-59.383,82.04-90.325c21.507-25.893,43.746-52.669,67.773-76.644,29.107-29.045,59.28-51.361,89.68-66.328,35.746-17.6,71.84-24.977,107.253-21.919l-.04.315c-35.32-3.047-71.346,4.313-107.026,21.879-30.36,14.947-60.506,37.24-89.587,66.258-24.013,23.961-46.24,50.733-67.746,76.621-25.707,30.951-52.28,62.954-82.08,90.357-29.813,27.424-61.266,47.748-93.493,60.4-37.093,14.575-73.92,18.3-109.453,11.084-37.587-7.635-73.366-27.523-107.974-46.756-8.58-4.768-17.452-9.7-26.2-14.355a714.571,714.571,0,0,0-97.165-42.92,621.546,621.546,0,0,0-100.464-26.54c-70.317-12.215-137.128-10.34-198.573,5.569-58.8,15.225-113.442,43.527-166.284,70.895-37.263,19.3-75.794,39.26-115.566,54.539-45.868,17.619-92.873,26.76-137.092,26.76" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path50" d="M433.326-207.61q-8.978,0-17.792-.519a262.453,262.453,0,0,1-78.025-16.309,235.023,235.023,0,0,1-71.261-42.839c-5.759-5.032-11.424-10.472-16.9-15.735-11.613-11.153-23.621-22.687-37.136-30.9a93.322,93.322,0,0,0-44.456-13.653,78.407,78.407,0,0,0-42.635,10.1c-13.756,7.972-24.93,20.2-35.736,32.017-6.922,7.573-14.08,15.4-21.877,22.087-25.19,21.589-59.649,30.473-97.027,25.012a168.379,168.379,0,0,1-69.7-27.5,170.1,170.1,0,0,1-53.387-58.323c-13.319-24.219-21.324-51.192-29.067-77.278-6.941-23.383-14.116-47.563-25.1-69.743a143.306,143.306,0,0,0-33.852-43.533c-14.485-12.568-29.741-20.549-44.12-23.083-14.141-2.491-26.483.412-36.679,8.633l-.26-.229c10.292-8.3,22.741-11.231,37.016-8.715,14.451,2.547,29.775,10.56,44.313,23.172a143.653,143.653,0,0,1,33.929,43.633c11,22.2,18.176,46.393,25.12,69.788,7.737,26.071,15.739,53.029,29.041,77.221A169.79,169.79,0,0,0-98.988-266.1a167.959,167.959,0,0,0,69.53,27.439c37.257,5.439,71.6-3.411,96.7-24.923,7.782-6.668,14.932-14.493,21.848-22.057,10.824-11.84,22.016-24.085,35.821-32.085a78.79,78.79,0,0,1,42.866-10.153,93.728,93.728,0,0,1,44.657,13.712c13.551,8.233,25.572,19.78,37.2,30.947,5.475,5.257,11.136,10.7,16.889,15.723a234.65,234.65,0,0,0,71.144,42.769,262.049,262.049,0,0,0,77.9,16.283c49.3,2.907,102.825-6.468,154.752-27.112,39.507-15.705,77.737-36.2,114.706-56.02,52.459-28.12,106.7-57.2,165.265-72.909,61.208-16.42,127.918-18.473,198.281-6.107a612.144,612.144,0,0,1,100.6,26.972,711.188,711.188,0,0,1,97.468,43.745c8.777,4.748,17.685,9.777,26.3,14.64,34.709,19.595,70.6,39.857,108.12,47.58,35.44,7.295,72.067,3.413,108.853-11.541,31.973-13,63.106-33.831,92.546-61.921,29.413-28.081,55.6-60.876,80.92-92.589,21.173-26.539,43.08-53.981,66.813-78.558,28.733-29.78,58.613-52.675,88.786-68.049,35.493-18.083,71.413-25.7,106.787-22.647l-.04.316c-35.28-3.048-71.133,4.556-106.56,22.6-30.133,15.356-59.973,38.228-88.693,67.977-23.707,24.568-45.6,52-66.786,78.537-25.32,31.723-51.507,64.524-80.946,92.622-29.467,28.121-60.64,48.981-92.667,61.995-36.867,14.987-73.573,18.877-109.106,11.564-37.573-7.736-73.5-28.013-108.236-47.623-8.613-4.863-17.519-9.891-26.295-14.637a710.535,710.535,0,0,0-97.412-43.72,611.725,611.725,0,0,0-100.528-26.955c-70.3-12.356-136.948-10.3-198.089,6.1-58.516,15.7-112.74,44.767-165.177,72.877C648.24-271.483,610-250.983,570.473-235.27c-45.8,18.208-92.837,27.659-137.148,27.66" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path52" d="M426-200.338q-8.652,0-17.159-.5a257.677,257.677,0,0,1-78.032-16.527,236,236,0,0,1-71.552-43.669c-5.8-5.133-11.505-10.685-17.024-16.053-11.705-11.387-23.808-23.16-37.381-31.531a92.115,92.115,0,0,0-44.5-13.876,76.35,76.35,0,0,0-42.439,10.411c-13.645,8.18-24.669,20.7-35.33,32.816-6.829,7.757-13.891,15.781-21.6,22.631-24.61,21.861-58.473,31.075-95.354,25.947-24.523-3.411-48.906-13.021-70.508-27.793A174.5,174.5,0,0,1-159.3-318.393c-13.54-24.743-21.809-52.312-29.805-78.976-7.167-23.9-14.579-48.615-25.771-71.277a147.787,147.787,0,0,0-34.477-44.673c-14.705-12.868-30.109-20.959-44.545-23.4-13.919-2.351-26.025.677-35.983,8.995l-.265-.225c10.053-8.4,22.273-11.451,36.321-9.08,14.512,2.451,29.985,10.573,44.744,23.488a148.156,148.156,0,0,1,34.553,44.771c11.2,22.687,18.617,47.411,25.788,71.322,7.992,26.649,16.255,54.205,29.783,78.921a174.17,174.17,0,0,0,54.313,59.8C-83.1-243.987-58.775-234.4-34.315-231c36.757,5.111,70.5-4.071,95.022-25.853,7.695-6.836,14.75-14.851,21.572-22.6,10.679-12.129,21.72-24.675,35.414-32.883a76.641,76.641,0,0,1,42.674-10.471,92.539,92.539,0,0,1,44.707,13.937c13.607,8.393,25.724,20.179,37.443,31.577,5.517,5.367,11.221,10.916,17.011,16.044a235.655,235.655,0,0,0,71.437,43.6,257.325,257.325,0,0,0,77.9,16.5c49.232,2.872,102.537-6.819,154.144-28.035,39.259-16.14,77.2-37.176,113.884-57.517,52.056-28.865,105.884-58.712,164.161-74.894,60.906-16.913,127.457-19.149,197.8-6.637a602.892,602.892,0,0,1,100.667,27.387,707.822,707.822,0,0,1,97.712,44.545c8.808,4.839,17.749,9.964,26.395,14.921,34.84,19.971,70.864,40.624,108.384,48.449,35.44,7.389,71.946,3.347,108.506-12.02,31.773-13.355,62.626-34.723,91.693-63.509s54.853-62.367,79.8-94.85c20.867-27.184,42.44-55.295,65.853-80.48,28.373-30.512,57.947-53.985,87.893-69.771,35.24-18.563,71.013-26.425,106.346-23.369l-.04.313c-35.24-3.047-70.946,4.8-106.106,23.325-29.907,15.764-59.453,39.213-87.8,69.7-23.4,25.175-44.973,53.279-65.84,80.456-24.933,32.492-50.733,66.09-79.813,94.884-29.107,28.82-60,50.215-91.826,63.587-36.64,15.4-73.227,19.455-108.76,12.044-37.587-7.839-73.635-28.508-108.5-48.495-8.644-4.955-17.583-10.079-26.388-14.915a707.01,707.01,0,0,0-97.656-44.521,602.356,602.356,0,0,0-100.594-27.368c-70.274-12.5-136.76-10.269-197.6,6.628-58.229,16.169-112.036,46-164.072,74.857-36.7,20.348-74.645,41.389-113.926,57.539-45.721,18.8-92.78,28.56-137.174,28.56" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path54" d="M418.7-193.065q-8.344,0-16.559-.473a253.227,253.227,0,0,1-78.036-16.743,237.137,237.137,0,0,1-71.845-44.5c-5.836-5.237-11.587-10.9-17.149-16.377-11.8-11.616-23.993-23.628-37.624-32.159a90.968,90.968,0,0,0-44.547-14.1A74.264,74.264,0,0,0,110.7-306.694C97.169-298.306,86.3-285.483,75.78-273.082c-6.736,7.944-13.7,16.159-21.328,23.176C30.4-227.769-2.9-218.229-39.3-223.041c-51.785-6.848-100.333-41.168-126.7-89.569-13.761-25.267-22.293-53.435-30.541-80.676-7.395-24.417-15.041-49.667-26.439-72.812A152.293,152.293,0,0,0-258.069-511.9c-14.917-13.167-30.463-21.364-44.952-23.708-13.7-2.215-25.588.928-35.319,9.345l-.268-.22c9.824-8.5,21.816-11.673,35.657-9.436,14.567,2.355,30.18,10.585,45.153,23.8a152.7,152.7,0,0,1,35.168,45.9c11.408,23.167,19.057,48.427,26.455,72.856,8.245,27.225,16.772,55.38,30.521,80.62,26.312,48.305,74.75,82.557,126.412,89.388,36.268,4.8,69.447-4.709,93.418-26.765,7.61-7,14.569-15.209,21.3-23.145,10.534-12.423,21.424-25.267,35.007-33.685a74.737,74.737,0,0,1,42.481-10.785,91.4,91.4,0,0,1,44.755,14.161c13.664,8.552,25.875,20.577,37.684,32.207,5.56,5.475,11.308,11.136,17.139,16.368a236.756,236.756,0,0,0,71.729,44.433,252.822,252.822,0,0,0,77.9,16.712c49.164,2.843,102.254-7.167,153.533-28.953,39.013-16.576,76.656-38.153,113.061-59.017,51.655-29.607,105.066-60.221,163.057-76.877,60.612-17.408,127-19.819,197.321-7.169a593.732,593.732,0,0,1,100.732,27.8,704.4,704.4,0,0,1,97.96,45.348c8.84,4.929,17.813,10.151,26.492,15.2,34.968,20.348,71.127,41.387,108.644,49.315,35.44,7.487,71.827,3.281,108.146-12.5,31.573-13.713,62.146-35.615,90.866-65.1s54.107-63.861,78.667-97.116c20.547-27.831,41.786-56.605,64.906-82.394,28-31.247,57.266-55.3,87-71.493,34.973-19.045,70.587-27.153,105.88-24.1l-.04.315c-35.187-3.044-70.733,5.044-105.627,24.048-29.706,16.173-58.946,40.2-86.92,71.417-23.093,25.779-44.347,54.547-64.88,82.37-24.56,33.264-49.96,67.66-78.693,97.15-28.76,29.517-59.373,51.445-90.986,65.179-36.4,15.815-72.88,20.024-108.413,12.521-37.581-7.94-73.768-29-108.762-49.36-8.679-5.049-17.651-10.271-26.488-15.2a704.046,704.046,0,0,0-97.9-45.323,593.572,593.572,0,0,0-100.658-27.781C958.81-378.2,892.487-375.791,831.943-358.4,774-341.761,720.61-311.158,668.976-281.565c-36.413,20.871-74.068,42.453-113.1,59.039-45.629,19.388-92.7,29.461-137.168,29.461" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path56" d="M411.436-185.79q-8.056,0-15.984-.453a248.845,248.845,0,0,1-78.041-16.96,238.249,238.249,0,0,1-72.137-45.336c-5.877-5.34-11.675-11.119-17.281-16.707-11.885-11.844-24.175-24.093-37.859-32.781A89.933,89.933,0,0,0,145.54-312.35,72.4,72.4,0,0,0,103.5-301.311c-13.421,8.6-24.145,21.719-34.515,34.409-6.645,8.131-13.514,16.539-21.055,23.723C24.4-220.763-8.35-210.909-44.287-215.411c-24.841-3.116-49.735-12.921-71.989-28.349a183.483,183.483,0,0,1-56.412-63.067c-13.984-25.791-22.776-54.555-31.277-82.37-7.623-24.937-15.505-50.723-27.109-74.352a156.986,156.986,0,0,0-35.695-46.935c-14.909-13.272-31.012-21.8-45.339-24.016-13.5-2.087-25.169,1.173-34.683,9.689l-.273-.217c9.607-8.6,21.393-11.891,35.023-9.783,14.615,2.259,30.363,10.595,45.545,24.108a157.3,157.3,0,0,1,35.769,47.032c11.613,23.649,19.5,49.447,27.124,74.393,8.5,27.8,17.287,56.555,31.257,82.317a183.152,183.152,0,0,0,56.308,62.955c22.2,15.393,47.032,25.172,71.806,28.281,35.809,4.495,68.44-5.332,91.879-27.665,7.525-7.171,14.389-15.568,21.026-23.692,10.386-12.711,21.126-25.855,34.6-34.481a72.87,72.87,0,0,1,42.288-11.1,90.34,90.34,0,0,1,44.8,14.384c13.717,8.712,26.021,20.975,37.92,32.832,5.6,5.585,11.4,11.36,17.272,16.7a237.884,237.884,0,0,0,72.023,45.265,248.435,248.435,0,0,0,77.9,16.928c49.089,2.813,101.968-7.516,152.922-29.873,38.767-17.011,76.117-39.128,112.237-60.519,51.253-30.349,104.25-61.732,161.956-78.86,60.312-17.9,126.54-20.492,196.84-7.7a585.559,585.559,0,0,1,100.8,28.217,701.671,701.671,0,0,1,98.205,46.151c8.869,5.017,17.875,10.337,26.584,15.479,35.1,20.725,71.392,42.156,108.909,50.185,35.44,7.584,71.706,3.217,107.8-12.973,31.373-14.072,61.653-36.509,90.026-66.688s53.36-65.356,77.533-99.382c20.227-28.472,41.146-57.915,63.946-84.309,27.64-31.979,56.613-56.612,86.12-73.213,34.707-19.527,70.173-27.876,105.427-24.824l-.04.316c-35.16-3.051-70.546,5.288-105.173,24.771-29.48,16.583-58.413,41.188-86.026,73.137-22.8,26.384-43.706,55.82-63.933,84.286-24.173,34.035-49.173,69.227-77.56,99.416-28.4,30.213-58.733,52.679-90.146,66.769-36.173,16.231-72.533,20.6-108.066,13-37.583-8.043-73.9-29.491-109.031-50.232-8.709-5.143-17.713-10.459-26.58-15.476a701.149,701.149,0,0,0-98.148-46.124,585,585,0,0,0-100.725-28.2c-70.233-12.78-136.389-10.195-196.635,7.688-57.656,17.113-110.632,48.484-161.864,78.82-36.131,21.4-73.492,43.52-112.281,60.54-45.527,19.976-92.6,30.363-137.137,30.364" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path58" d="M404.192-178.516q-7.77,0-15.433-.433a244.659,244.659,0,0,1-78.045-17.176,239.5,239.5,0,0,1-72.429-46.168c-5.919-5.444-11.76-11.335-17.409-17.029-11.976-12.077-24.361-24.563-38.1-33.413a88.9,88.9,0,0,0-44.639-14.544,70.655,70.655,0,0,0-41.846,11.352C82.977-287.122,72.4-273.7,62.178-260.718,55.628-252.4,48.856-243.8,41.4-236.453c-23.02,22.7-55.253,32.871-90.742,28.656-24.978-2.968-50.106-12.864-72.669-28.619a188.018,188.018,0,0,1-57.371-64.629c-14.207-26.315-23.261-55.676-32.017-84.072-7.849-25.453-15.967-51.772-27.777-75.884-18.443-37.649-52.925-68.089-82-72.381-13.312-1.963-24.773,1.408-34.075,10.025l-.279-.213c9.4-8.7,20.973-12.109,34.419-10.124,29.188,4.309,63.79,34.831,82.278,72.572,11.82,24.132,19.94,50.463,27.793,75.926,8.752,28.381,17.8,57.729,32,84.017a187.648,187.648,0,0,0,57.268,64.519C-99.26-220.944-74.2-211.07-49.287-208.11c35.363,4.207,67.472-5.935,90.4-28.548,7.44-7.337,14.206-15.927,20.749-24.235,10.242-13,20.833-26.448,34.192-35.284a71,71,0,0,1,42.1-11.419A89.312,89.312,0,0,1,183-292.987c13.775,8.872,26.172,21.372,38.161,33.461,5.647,5.693,11.485,11.581,17.4,17.019a239.082,239.082,0,0,0,72.316,46.1,244.194,244.194,0,0,0,77.908,17.147c49,2.78,101.68-7.868,152.31-30.8,38.52-17.447,75.577-40.1,111.416-62.016,50.851-31.092,103.433-63.242,160.853-80.844,60.011-18.4,126.076-21.167,196.358-8.229a577.394,577.394,0,0,1,100.865,28.629,699.426,699.426,0,0,1,98.453,46.951c8.9,5.109,17.936,10.523,26.677,15.76,35.228,21.1,71.656,42.924,109.173,51.053,35.44,7.675,71.6,3.152,107.453-13.449,31.16-14.431,61.173-37.4,89.186-68.277s52.613-66.849,76.4-101.646c19.907-29.117,40.493-59.227,63-86.226,27.267-32.712,55.933-57.924,85.226-74.936,34.44-20.008,69.746-28.6,104.96-25.549l-.04.316c-35.106-3.047-70.346,5.532-104.706,25.5-29.253,16.989-57.893,42.173-85.133,74.856-22.493,26.988-43.067,57.092-62.973,86.2-23.8,34.805-48.4,70.794-76.426,101.678-28.053,30.912-58.107,53.913-89.32,68.364-35.933,16.641-72.187,21.177-107.72,13.479-37.585-8.143-74.041-29.981-109.3-51.1-8.74-5.235-17.776-10.647-26.671-15.755a698.889,698.889,0,0,0-98.394-46.924,577.113,577.113,0,0,0-100.793-28.611C939.426-373.764,873.433-371,813.49-352.624c-57.368,17.588-109.93,49.725-160.76,80.8-35.847,21.919-72.914,44.583-111.456,62.038-45.419,20.569-92.48,31.267-137.082,31.267" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path60" d="M396.975-171.238q-7.508,0-14.911-.415a240.67,240.67,0,0,1-78.049-17.393,240.837,240.837,0,0,1-72.721-47c-5.956-5.545-11.84-11.545-17.531-17.349-12.069-12.308-24.549-25.035-38.348-34.048-13.956-9.112-29.407-14.217-44.686-14.764a68.828,68.828,0,0,0-41.648,11.664c-13.2,9.012-23.621,22.735-33.7,36.005-6.457,8.5-13.134,17.292-20.5,24.812-22.526,22.984-54.257,33.468-89.324,29.532-25.1-2.819-50.45-12.807-73.31-28.884a192.594,192.594,0,0,1-58.313-66.185c-14.429-26.839-23.747-56.8-32.756-85.769-8.076-25.971-16.427-52.827-28.444-77.42-18.892-38.661-53.771-69.7-82.932-73.805C-343.33-534.105-354.6-530.62-363.7-521.9l-.283-.209c9.195-8.807,20.583-12.327,33.839-10.46,29.281,4.121,64.28,35.243,83.218,74,12.027,24.613,20.381,51.48,28.46,77.46,9.005,28.961,18.319,58.907,32.735,85.718a192.251,192.251,0,0,0,58.211,66.075c22.806,16.039,48.09,26,73.118,28.813,34.943,3.927,66.545-6.524,88.986-29.421,7.355-7.5,14.026-16.287,20.477-24.78C65.159-268,75.6-281.746,88.844-290.79a69.254,69.254,0,0,1,41.9-11.736c15.357.552,30.883,5.679,44.9,14.832,13.832,9.035,26.325,21.775,38.408,34.1,5.688,5.8,11.571,11.8,17.52,17.339a240.505,240.505,0,0,0,72.606,46.929,240.307,240.307,0,0,0,77.91,17.36c48.943,2.751,101.4-8.216,151.7-31.717,38.275-17.88,75.037-41.08,110.592-63.514C694.832-299.037,747-331.957,804.133-350.03c59.712-18.889,125.613-21.84,195.877-8.76a569.505,569.505,0,0,1,100.935,29.044,697.366,697.366,0,0,1,98.7,47.753c8.932,5.2,18.006,10.713,26.784,16.044,35.355,21.477,71.913,43.687,109.438,51.916,35.427,7.775,71.453,3.089,107.08-13.928,30.96-14.788,60.693-38.293,88.36-69.865s51.867-68.341,75.267-103.908c19.6-29.763,39.853-60.539,62.053-88.144,26.893-33.447,55.266-59.237,84.32-76.657,34.187-20.489,69.347-29.331,104.506-26.276l-.04.315c-35.053-3.039-70.133,5.776-104.24,26.22-29.027,17.4-57.373,43.161-84.24,76.576-22.187,27.595-42.44,58.364-62.027,88.12-23.413,35.576-47.626,72.362-75.293,103.942-27.707,31.609-57.466,55.144-88.48,69.954-35.706,17.056-71.826,21.752-107.373,13.959-37.581-8.247-74.169-30.472-109.553-51.967-8.773-5.331-17.847-10.841-26.776-16.041a696.914,696.914,0,0,0-98.641-47.724A569,569,0,0,0,999.93-358.479c-70.188-13.067-136.021-10.123-195.665,8.745-57.084,18.059-109.229,50.964-159.657,82.785-35.564,22.441-72.339,45.648-110.636,63.537-45.293,21.161-92.34,32.172-137,32.173" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path62" d="M389.779-163.961q-7.246,0-14.408-.4a236.774,236.774,0,0,1-78.054-17.608A242.249,242.249,0,0,1,224.3-229.8c-6-5.648-11.928-11.764-17.661-17.676-12.16-12.539-24.732-25.5-38.588-34.672-14.011-9.275-29.48-14.459-44.731-14.989a67.22,67.22,0,0,0-41.452,11.979c-13.087,9.221-23.36,23.243-33.3,36.8C42.214-239.669,35.633-230.686,28.349-223c-22.055,23.273-53.3,34.061-87.966,30.4-25.209-2.671-50.767-12.749-73.915-29.145a197.21,197.21,0,0,1-59.232-67.734c-14.652-27.36-24.229-57.915-33.493-87.465-8.3-26.488-16.889-53.88-29.113-78.956a171.237,171.237,0,0,0-37.452-50.3c-15.488-14.143-31.964-22.995-46.389-24.929-12.957-1.733-24.032,1.859-32.941,10.681l-.285-.2c9-8.913,20.2-12.545,33.285-10.789,29.365,3.936,64.747,35.653,84.13,75.416,12.233,25.1,20.823,52.5,29.129,79,9.259,29.536,18.833,60.079,33.472,87.414a196.881,196.881,0,0,0,59.132,67.623c23.091,16.357,48.583,26.411,73.719,29.075,34.534,3.66,65.656-7.1,87.626-30.281,7.269-7.672,13.844-16.647,20.2-25.325C58.208-262.1,68.5-276.149,81.632-285.4a67.281,67.281,0,0,1,39.1-12.1q1.3,0,2.609.045c15.331.533,30.873,5.739,44.949,15.055,13.887,9.193,26.473,22.171,38.644,34.721,5.732,5.911,11.66,12.023,17.651,17.665a241.89,241.89,0,0,0,72.9,47.761A236.388,236.388,0,0,0,375.4-164.674c48.867,2.711,101.108-8.568,151.09-32.639,38.027-18.316,74.5-42.055,109.768-65.015,50.048-32.577,101.8-66.264,158.648-84.81,59.416-19.387,125.158-22.512,195.4-9.292a562.188,562.188,0,0,1,101,29.459,695.493,695.493,0,0,1,98.945,48.555c8.961,5.291,18.068,10.9,26.875,16.323,35.487,21.855,72.18,44.455,109.7,52.785,35.431,7.871,71.35,3.023,106.737-14.4,30.76-15.148,60.2-39.189,87.52-71.456S1572.2-365,1595.223-401.339c19.267-30.409,39.187-61.852,61.08-90.062,26.533-34.18,54.6-60.549,83.44-78.378,33.92-20.969,68.933-30.052,104.053-27l-.04.316c-35.027-3.045-69.946,6.019-103.786,26.941-28.8,17.807-56.853,44.149-83.346,78.3-21.893,28.2-41.813,59.637-61.08,90.038-23.027,36.345-46.84,73.93-74.16,106.206-27.346,32.3-56.827,56.376-87.64,71.545-35.48,17.469-71.48,22.327-107.02,14.437-37.59-8.349-74.313-30.965-109.828-52.837-8.8-5.423-17.909-11.029-26.867-16.319a694.957,694.957,0,0,0-98.888-48.527A561.7,561.7,0,0,0,990.219-356.12c-70.171-13.205-135.838-10.084-195.182,9.276-56.8,18.532-108.526,52.205-158.553,84.768-35.279,22.965-71.761,46.713-109.81,65.038-45.165,21.752-92.182,33.076-136.894,33.077" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path64" d="M382.6-156.682q-7,0-13.927-.381a233.185,233.185,0,0,1-78.058-17.825c-26.473-11.169-51.136-27.543-73.305-48.665-6.037-5.751-12.012-11.979-17.788-18-12.251-12.768-24.917-25.971-38.829-35.3-14.069-9.435-29.552-14.693-44.777-15.209a65.617,65.617,0,0,0-41.256,12.291c-12.974,9.429-23.1,23.751-32.887,37.6-6.272,8.873-12.756,18.048-19.955,25.9C.223-192.7-30.558-181.6-64.838-185.022c-25.3-2.52-51.061-12.688-74.484-29.4C-163.808-231.9-184.6-255.855-199.454-283.7c-14.875-27.884-24.715-59.037-34.232-89.162-8.531-27.005-17.352-54.932-29.783-80.492a176.17,176.17,0,0,0-38.02-51.408c-15.671-14.429-32.26-23.388-46.709-25.229-12.781-1.628-23.683,2.073-32.407,11l-.291-.2c8.815-9.019,19.832-12.76,32.755-11.112,14.533,1.849,31.2,10.845,46.931,25.328a176.474,176.474,0,0,1,38.089,51.5c12.439,25.577,21.263,53.513,29.8,80.529,9.513,30.113,19.349,61.253,34.212,89.114,14.831,27.8,35.589,51.719,60.032,69.162,23.367,16.676,49.055,26.817,74.286,29.331,34.135,3.4,64.8-7.653,86.319-31.131,7.184-7.837,13.663-17,19.929-25.869,9.805-13.872,19.943-28.217,32.966-37.68a66.086,66.086,0,0,1,41.515-12.367c15.305.517,30.865,5.8,45,15.279,13.944,9.352,26.624,22.569,38.887,35.352,5.775,6.017,11.745,12.241,17.777,17.989,22.136,21.092,46.761,37.44,73.191,48.591A232.738,232.738,0,0,0,368.7-157.38c48.783,2.688,100.821-8.917,150.481-33.56,37.78-18.751,73.96-43.032,108.946-66.513,49.645-33.32,100.981-67.776,157.542-86.8,59.116-19.879,124.7-23.181,194.918-9.821A555.166,555.166,0,0,1,1081.656-324.2a694,694,0,0,1,99.192,49.355c8.991,5.381,18.131,11.087,26.967,16.6,35.616,22.232,72.444,45.221,109.966,53.655,35.429,7.967,71.229,2.957,106.389-14.881,30.547-15.505,59.72-40.08,86.68-73.045s50.373-71.329,73.013-108.438c18.947-31.052,38.547-63.16,60.133-91.974,26.16-34.913,53.933-61.863,82.547-80.1,33.653-21.451,68.52-30.781,103.587-27.725l-.04.313c-34.973-3.041-69.733,6.264-103.32,27.665-28.587,18.215-56.32,45.136-82.453,80.017-21.587,28.8-41.173,60.905-60.12,91.949-22.653,37.119-46.067,75.5-73.04,108.474-26.987,33-56.2,57.609-86.8,73.137-35.24,17.885-71.133,22.9-106.674,14.916-37.59-8.449-74.446-31.456-110.09-53.705-8.836-5.516-17.974-11.219-26.961-16.6a693.552,693.552,0,0,0-99.136-49.327,554.647,554.647,0,0,0-100.988-29.851c-70.146-13.348-135.652-10.048-194.7,9.805-56.509,19-107.824,53.443-157.448,86.749-35,23.489-71.187,47.777-108.99,66.537-45.027,22.345-92.013,33.984-136.769,33.985" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path66" d="M375.45-149.4q-6.772,0-13.467-.365a229.621,229.621,0,0,1-78.062-18.041c-26.52-11.344-51.283-28-73.6-49.5-6.076-5.855-12.093-12.195-17.913-18.325-12.341-13-25.1-26.44-39.071-35.931-14.127-9.6-29.626-14.935-44.824-15.433-.78-.027-1.558-.037-2.334-.037a63.876,63.876,0,0,0-38.723,12.641c-12.865,9.637-22.837,24.26-32.481,38.4-6.179,9.059-12.568,18.425-19.68,26.447a94.683,94.683,0,0,1-38.932,26.6,106.41,106.41,0,0,1-46.474,5.491c-25.39-2.372-51.333-12.629-75.023-29.66-24.76-17.8-45.859-42.285-61.013-70.805-15.1-28.408-25.2-60.157-34.969-90.861-8.759-27.524-17.815-55.985-30.452-82.028a181.145,181.145,0,0,0-38.579-52.516C-326-518.035-342.693-527.1-357.16-528.852c-12.62-1.524-23.353,2.283-31.9,11.317l-.293-.2c8.633-9.127,19.472-12.977,32.247-11.432,14.553,1.76,31.331,10.861,47.239,25.632a181.429,181.429,0,0,1,38.648,52.608c12.645,26.061,21.705,54.532,30.468,82.066,9.765,30.692,19.864,62.428,34.948,90.812,15.133,28.477,36.2,52.924,60.915,70.694,23.634,16.992,49.5,27.221,74.82,29.587a105.95,105.95,0,0,0,46.284-5.468A94.285,94.285,0,0,0,15-209.737c7.1-8.005,13.481-17.364,19.654-26.413,9.66-14.163,19.648-28.808,32.558-38.48a64.553,64.553,0,0,1,41.322-12.683c15.279.5,30.856,5.861,45.044,15.5,14,9.513,26.776,22.969,39.129,35.981,5.817,6.128,11.833,12.464,17.9,18.313,22.284,21.469,47.007,38.1,73.484,49.424a229.248,229.248,0,0,0,77.917,18.009c48.716,2.649,100.536-9.269,149.87-34.483C549.413-203.75,585.3-228.573,620-252.579c49.244-34.061,100.164-69.284,156.44-88.777,58.816-20.373,124.237-23.856,194.437-10.351a548.239,548.239,0,0,1,101.133,30.287,692.77,692.77,0,0,1,99.438,50.156c9.02,5.472,18.192,11.273,27.063,16.884,35.744,22.608,72.706,45.987,110.229,54.521,35.441,8.061,71.108,2.892,106.028-15.357,30.36-15.863,59.24-40.975,85.853-74.635s49.613-72.821,71.88-110.7c18.627-31.7,37.893-64.474,59.173-93.894,25.8-35.645,53.266-63.175,81.666-81.821,33.387-21.933,68.093-31.5,103.133-28.453l-.04.315c-34.933-3.047-69.546,6.507-102.866,28.388-28.36,18.624-55.8,46.124-81.56,81.736-21.28,29.411-40.547,62.18-59.173,93.87-22.266,37.888-45.293,77.065-71.906,110.734-26.64,33.7-55.56,58.843-85.96,74.729-35.013,18.3-70.787,23.479-106.326,15.393-37.592-8.549-74.583-31.947-110.356-54.573-8.869-5.609-18.04-11.409-27.057-16.879a692.2,692.2,0,0,0-99.381-50.129A547.927,547.927,0,0,0,970.8-351.4c-70.129-13.489-135.466-10.012-194.213,10.336-56.223,19.475-107.121,54.682-156.342,88.73-34.715,24.012-70.611,48.841-108.168,68.037-44.879,22.937-91.826,34.889-136.624,34.892" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path68" d="M368.315-142.124q-6.544,0-13.027-.349a226.2,226.2,0,0,1-78.066-18.26c-26.568-11.517-51.428-28.452-73.889-50.331-6.117-5.959-12.183-12.411-18.047-18.652C172.856-242.943,160-256.622,145.98-266.271c-14.183-9.759-29.7-15.172-44.87-15.653a62.852,62.852,0,0,0-40.86,12.916c-12.752,9.847-22.576,24.768-32.076,39.2-6.085,9.244-12.377,18.8-19.4,26.989a93.575,93.575,0,0,1-38.282,27.059A103.565,103.565,0,0,1-75.43-169.89c-25.465-2.224-51.584-12.569-75.532-29.915-25.023-18.127-46.42-43.137-61.877-72.33-15.317-28.932-25.683-61.279-35.705-92.558-8.987-28.043-18.277-57.04-31.12-83.562A186.226,186.226,0,0,0-318.8-501.875c-16.025-15-32.827-24.175-47.307-25.832-12.475-1.429-23.037,2.484-31.411,11.625l-.3-.193c8.461-9.237,19.143-13.192,31.759-11.747,14.571,1.668,31.452,10.879,47.536,25.935a186.474,186.474,0,0,1,39.2,53.711c12.852,26.543,22.147,55.548,31.136,83.6,10.019,31.269,20.38,63.6,35.687,92.512,15.433,29.149,36.8,54.124,61.779,72.218,23.891,17.3,49.937,27.624,75.326,29.841a103.2,103.2,0,0,0,45.727-5.845A93.192,93.192,0,0,0,8.465-203c7.014-8.173,13.3-17.721,19.381-26.959,9.513-14.452,19.352-29.4,32.149-39.279a62.9,62.9,0,0,1,38.9-13.036q1.111,0,2.227.035c15.255.487,30.847,5.924,45.094,15.727,14.055,9.672,26.921,23.364,39.363,36.6,5.863,6.239,11.924,12.689,18.037,18.643,22.431,21.848,47.252,38.756,73.777,50.256a225.775,225.775,0,0,0,77.92,18.224c48.621,2.623,100.25-9.616,149.261-35.4,37.288-19.617,72.881-44.983,107.3-69.511,48.843-34.807,99.346-70.8,155.336-90.762C825.729-359.334,890.989-363,961.168-349.348a541.9,541.9,0,0,1,101.2,30.7,691.785,691.785,0,0,1,99.685,50.957c9.049,5.563,18.253,11.46,27.153,17.163,35.877,22.987,72.973,46.756,110.5,55.392,35.441,8.156,70.988,2.828,105.681-15.835,30.146-16.221,58.746-41.868,85.013-76.225,26.24-34.349,48.867-74.314,70.746-112.964,18.32-32.343,37.253-65.785,58.227-95.812,25.427-36.379,52.587-64.487,80.76-83.541,33.146-22.415,67.68-32.231,102.68-29.18l-.04.316c-34.88-3.041-69.346,6.749-102.4,29.111-28.133,19.031-55.28,47.111-80.68,83.457-20.96,30.013-39.893,63.448-58.2,95.784-21.893,38.66-44.52,78.634-70.786,113-26.28,34.4-54.92,60.076-85.12,76.322-34.773,18.711-70.44,24.052-105.978,15.872-37.6-8.652-74.721-32.44-110.624-55.445-8.9-5.7-18.1-11.6-27.149-17.157a691.277,691.277,0,0,0-99.628-50.929,541.3,541.3,0,0,0-101.12-30.677c-70.106-13.633-135.284-9.977-193.726,10.864-55.937,19.947-106.418,55.923-155.238,90.712-34.432,24.537-70.034,49.908-107.348,69.538-44.724,23.532-91.621,35.8-136.457,35.8" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path70" d="M361.2-134.844q-6.332,0-12.6-.335a222.985,222.985,0,0,1-78.072-18.476c-26.616-11.693-51.575-28.907-74.182-51.161-6.156-6.061-12.264-12.627-18.169-18.975-12.523-13.459-25.471-27.377-39.552-37.188-14.239-9.921-29.77-15.411-44.916-15.877a61.421,61.421,0,0,0-40.663,13.229c-12.64,10.055-22.314,25.276-31.668,40C15.381-214.2,9.184-204.447,2.244-196.093A92.562,92.562,0,0,1-35.41-168.58,100.9,100.9,0,0,1-80.8-162.337c-25.531-2.077-51.814-12.511-76.011-30.171-25.28-18.451-46.969-43.985-62.724-73.848-15.541-29.453-26.168-62.4-36.445-94.256-9.213-28.559-18.74-58.089-31.788-85.1a191.33,191.33,0,0,0-39.676-54.717c-16.195-15.284-33.095-24.564-47.587-26.132-12.325-1.336-22.735,2.681-30.94,11.932l-.3-.189c8.295-9.351,18.816-13.405,31.289-12.057,14.583,1.577,31.564,10.895,47.819,26.235a191.623,191.623,0,0,1,39.743,54.809c13.06,27.024,22.589,56.565,31.8,85.134,10.273,31.847,20.9,64.779,36.425,94.212,15.733,29.817,37.389,55.315,62.627,73.734,24.138,17.617,50.35,28.024,75.8,30.095a100.386,100.386,0,0,0,45.191-6.213,92.218,92.218,0,0,0,37.5-27.408c6.929-8.34,13.119-18.083,19.106-27.5,9.368-14.744,19.056-29.989,31.742-40.079a61.84,61.84,0,0,1,40.934-13.316c15.229.469,30.838,5.984,45.142,15.951,14.112,9.832,27.073,23.764,39.607,37.237,5.9,6.345,12.009,12.905,18.161,18.961,22.576,22.227,47.5,39.415,74.069,51.088a222.555,222.555,0,0,0,77.922,18.441c48.557,2.595,99.962-9.967,148.65-36.323,37.041-20.055,72.341-45.96,106.478-71.012,48.441-35.548,98.529-72.308,154.233-92.746,58.22-21.361,123.316-25.2,193.477-11.412a535.449,535.449,0,0,1,101.266,31.117,690.686,690.686,0,0,1,99.93,51.759c9.083,5.653,18.321,11.647,27.256,17.445,36,23.361,73.233,47.52,110.754,56.256,35.436,8.253,70.865,2.763,105.332-16.311,29.947-16.581,58.267-42.76,84.173-77.814s48.12-75.808,69.626-115.228c17.987-32.987,36.587-67.1,57.267-97.728,25.053-37.112,51.92-65.8,79.866-85.264,32.88-22.9,67.266-32.955,102.213-29.907l-.027.316c-34.84-3.043-69.146,6.993-101.946,29.835-27.906,19.44-54.76,48.1-79.787,85.176-20.667,30.62-39.266,64.723-57.253,97.7-21.507,39.431-43.733,80.2-69.653,115.264-25.92,35.092-54.28,61.305-84.28,77.912-34.547,19.125-70.092,24.624-105.632,16.351-37.593-8.753-74.852-32.929-110.884-56.311-8.933-5.795-18.171-11.789-27.249-17.441a690.51,690.51,0,0,0-99.873-51.729,535.153,535.153,0,0,0-101.186-31.093c-70.08-13.772-135.1-9.939-193.242,11.4C702.481-314.865,652.413-278.123,604-242.589c-34.148,25.059-69.458,50.971-106.524,71.037-44.561,24.124-91.408,36.705-136.276,36.708" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path72" d="M354.1-127.564q-6.124,0-12.195-.32a219.762,219.762,0,0,1-78.076-18.693c-26.663-11.865-51.72-29.359-74.473-51.993-6.195-6.161-12.344-12.837-18.291-19.291-12.616-13.693-25.66-27.851-39.8-37.824-14.3-10.081-29.843-15.649-44.961-16.1a60.105,60.105,0,0,0-40.467,13.543C33.3-247.979,23.781-232.458,14.572-217.447c-5.9,9.616-12,19.56-18.855,28.083A91.672,91.672,0,0,1-41.332-161.4a98.294,98.294,0,0,1-44.873,6.6c-25.586-1.931-52.029-12.452-76.466-30.424-25.525-18.772-47.5-44.829-63.552-75.356-15.763-29.977-26.652-63.516-37.181-95.953-9.441-29.076-19.2-59.145-32.459-86.633-10.085-20.916-24.368-40.736-40.213-55.813-16.361-15.567-33.357-24.953-47.855-26.433-12.188-1.243-22.444,2.873-30.492,12.236l-.3-.187c8.131-9.461,18.5-13.624,30.84-12.364,14.589,1.489,31.668,10.913,48.089,26.537,15.876,15.1,30.18,34.957,40.281,55.9,13.265,27.508,23.029,57.585,32.472,86.67,10.527,32.424,21.412,65.952,37.163,95.909,16.029,30.483,37.972,56.5,63.456,75.244,24.379,17.928,50.745,28.423,76.252,30.348a97.854,97.854,0,0,0,44.677-6.575,91.314,91.314,0,0,0,36.9-27.861c6.843-8.507,12.937-18.441,18.832-28.049C23.461-232.626,33-248.171,45.571-258.47A60.478,60.478,0,0,1,86.312-272.1c15.2.453,30.83,6.045,45.191,16.173,14.17,9.995,27.228,24.167,39.854,37.872,5.945,6.452,12.092,13.124,18.281,19.281,22.723,22.6,47.743,40.069,74.361,51.917A219.376,219.376,0,0,0,341.926-128.2c48.487,2.551,99.678-10.317,148.038-37.244,36.8-20.489,71.8-46.935,105.657-72.512,48.039-36.291,97.712-73.816,153.129-94.728,57.922-21.856,122.852-25.875,193-11.944,33.048,6.564,67.141,17.173,101.332,31.532a689.919,689.919,0,0,1,100.177,52.561c9.113,5.743,18.384,11.835,27.351,17.725,36.133,23.737,73.5,48.284,111.017,57.123,35.433,8.345,70.759,2.7,104.972-16.785,29.747-16.94,57.787-43.656,83.333-79.405s47.387-77.3,68.506-117.49c17.667-33.633,35.947-68.409,56.307-99.646C1619.436-536.86,1646-566.125,1673.729-586c32.613-23.377,66.84-33.687,101.76-30.632l-.04.316c-34.8-3.043-68.946,7.237-101.48,30.559-27.693,19.847-54.227,49.084-78.893,86.9-20.36,31.224-38.627,66-56.307,99.621-21.12,40.2-42.96,81.768-68.506,117.525-25.587,35.791-53.667,62.54-83.453,79.5-34.32,19.54-69.74,25.2-105.285,16.829-37.594-8.856-74.986-33.421-111.146-57.178-8.965-5.889-18.237-11.98-27.347-17.721a689.655,689.655,0,0,0-100.12-52.531c-34.164-14.348-68.229-24.948-101.252-31.507-70.056-13.915-134.91-9.9-192.755,11.924-55.364,20.892-105.016,58.4-153.033,94.676-33.863,25.583-68.88,52.037-105.7,72.538-44.393,24.717-91.178,37.614-136.077,37.616" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path74" d="M347.01-120.281q-5.924,0-11.8-.307A216.784,216.784,0,0,1,257.126-139.5c-26.711-12.04-51.865-29.813-74.765-52.825-6.235-6.265-12.431-13.053-18.42-19.619-12.705-13.921-25.844-28.317-40.039-38.449-14.354-10.245-29.917-15.889-45.009-16.323a58.907,58.907,0,0,0-40.268,13.855c-12.42,10.472-21.793,26.295-30.857,41.6-5.806,9.8-11.809,19.936-18.579,28.625a90.874,90.874,0,0,1-36.462,28.425,95.766,95.766,0,0,1-44.384,6.959c-25.633-1.787-52.223-12.4-76.893-30.679-25.764-19.093-48.021-45.669-64.367-76.858-15.983-30.5-27.135-64.636-37.917-97.648-9.668-29.6-19.665-60.2-33.127-88.172-10.276-21.351-24.745-41.559-40.744-56.905-16.525-15.847-33.611-25.343-48.113-26.733-12.052-1.153-22.164,3.059-30.057,12.535l-.308-.183c7.977-9.576,18.215-13.843,30.408-12.668,14.6,1.4,31.767,10.933,48.352,26.84,16.027,15.372,30.52,35.613,40.809,56.995,13.472,27.991,23.472,58.6,33.141,88.206,10.78,33,21.928,67.126,37.9,97.606,16.323,31.145,38.547,57.685,64.271,76.748,24.609,18.237,51.123,28.817,76.676,30.6A95.376,95.376,0,0,0-47.441-154.5a90.546,90.546,0,0,0,36.318-28.315c6.756-8.673,12.754-18.8,18.556-28.593,9.078-15.324,18.464-31.171,30.926-41.677a59.093,59.093,0,0,1,38.659-13.976c.628,0,1.256.009,1.889.028,15.176.436,30.819,6.107,45.238,16.4,14.227,10.153,27.376,24.563,40.093,38.5,5.988,6.561,12.18,13.348,18.411,19.608,22.869,22.981,47.987,40.728,74.654,52.751A216.332,216.332,0,0,0,335.231-120.9c48.416,2.536,99.39-10.666,147.43-38.165,36.551-20.924,71.264-47.911,104.834-74.01,47.636-37.032,96.893-75.328,152.025-96.71,57.623-22.351,122.393-26.549,192.516-12.473,33.04,6.629,67.155,17.377,101.4,31.944a689.867,689.867,0,0,1,100.424,53.361c9.143,5.833,18.445,12.021,27.444,18.005,36.262,24.116,73.759,49.052,111.284,57.992,35.434,8.444,70.636,2.635,104.622-17.263,29.547-17.3,57.307-44.548,82.493-80.994s46.64-78.8,67.373-119.757c17.347-34.276,35.293-69.719,55.36-101.56,24.32-38.579,50.587-68.424,78.093-88.706,32.346-23.86,66.44-34.407,101.293-31.357l-.04.315c-34.76-3.043-68.747,7.483-101.013,31.281-27.467,20.256-53.707,50.072-78,88.616-20.053,31.829-38,67.267-55.347,101.536-20.746,40.971-42.187,83.337-67.386,119.792-25.227,36.488-53.027,63.773-82.613,81.1-34.08,19.955-69.394,25.776-104.938,17.309-37.6-8.959-75.122-33.915-111.413-58.049-9-5.984-18.3-12.169-27.44-18a689.281,689.281,0,0,0-100.365-53.333c-34.219-14.555-68.308-25.295-101.317-31.92-70.036-14.056-134.728-9.865-192.273,12.453-55.076,21.365-104.312,59.643-151.925,96.657-33.581,26.107-68.305,53.1-104.88,74.04-44.22,25.313-90.939,38.525-135.863,38.527" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path76" d="M339.939-113q-5.732,0-11.425-.295a213.862,213.862,0,0,1-78.086-19.124c-26.757-12.217-52.011-30.27-75.056-53.66-6.275-6.368-12.515-13.268-18.548-19.941-12.8-14.153-26.028-28.788-40.281-39.079-14.41-10.407-29.989-16.128-45.054-16.544q-.887-.024-1.77-.025a57.526,57.526,0,0,0-38.3,14.193C19.11-236.8,9.887-220.673.968-205.082c-5.714,9.988-11.621,20.315-18.3,29.169a90.152,90.152,0,0,1-35.9,28.884,93.368,93.368,0,0,1-43.91,7.308c-25.673-1.645-52.4-12.343-77.3-30.933-26-19.413-48.529-46.507-65.165-78.354-16.207-31.024-27.62-65.758-38.657-99.348-9.9-30.113-20.127-61.25-33.795-89.705-10.465-21.784-25.121-42.38-41.269-57.993-16.684-16.129-33.857-25.731-48.36-27.036-11.943-1.071-21.9,3.243-29.641,12.832l-.311-.179c7.825-9.693,17.923-14.053,29.991-12.969,14.6,1.315,31.859,10.955,48.6,27.144,16.175,15.639,30.855,36.267,41.333,58.081,13.677,28.472,23.912,59.619,33.811,89.741,11.033,33.579,22.444,68.3,38.64,99.3,16.613,31.807,39.113,58.861,65.069,78.244,24.833,18.545,51.486,29.215,77.077,30.855a92.887,92.887,0,0,0,43.708-7.272,89.806,89.806,0,0,0,35.754-28.772c6.672-8.84,12.575-19.159,18.283-29.137C9.562-220.834,18.8-236.978,31.147-247.7A58.112,58.112,0,0,1,71.5-261.961c15.151.421,30.81,6.168,45.286,16.621,14.283,10.312,27.527,24.961,40.335,39.128,6.031,6.671,12.268,13.569,18.537,19.932,23.016,23.357,48.232,41.385,74.946,53.583a213.455,213.455,0,0,0,77.932,19.086c48.339,2.506,99.105-11.016,146.818-39.085,36.305-21.36,70.727-48.887,104.014-75.51,47.233-37.776,96.076-76.837,150.918-98.694,57.324-22.845,121.936-27.219,192.037-13.005,33.029,6.7,67.167,17.587,101.466,32.361a689.5,689.5,0,0,1,100.669,54.163c9.173,5.924,18.511,12.208,27.54,18.285,36.392,24.492,74.022,49.819,111.548,58.859,35.431,8.539,70.515,2.571,104.274-17.739,29.333-17.656,56.813-45.44,81.653-82.584s45.893-80.289,66.24-122.021c17.04-34.921,34.653-71.03,54.413-103.477,23.947-39.312,49.907-69.736,77.187-90.426,32.093-24.34,66.027-35.132,100.853-32.085l-.04.316c-34.706-3.045-68.546,7.725-100.56,32.005-27.24,20.665-53.187,51.057-77.106,90.334-19.76,32.436-37.36,68.539-54.4,103.453-20.36,41.743-41.413,84.9-66.253,122.056-24.867,37.184-52.387,65-81.773,82.686-33.853,20.369-69.044,26.351-104.591,17.788-37.6-9.059-75.258-34.405-111.68-58.919-9.029-6.075-18.364-12.359-27.533-18.281a689.372,689.372,0,0,0-100.613-54.132C989.348-322.027,955.239-332.9,922.238-339.6c-70.016-14.2-134.544-9.829-191.786,12.983-54.791,21.835-103.611,60.878-150.823,98.638-33.3,26.629-67.729,54.168-104.057,75.54C431.534-126.528,384.887-113,339.939-113" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path78" d="M332.882-105.717q-5.552,0-11.061-.282a211.009,211.009,0,0,1-78.09-19.342c-26.805-12.391-52.157-30.724-75.35-54.489-6.315-6.473-12.6-13.488-18.677-20.271-12.885-14.383-26.21-29.255-40.517-39.7-14.468-10.568-30.062-16.367-45.1-16.768a56.591,56.591,0,0,0-39.875,14.481C12.013-231.2,2.94-214.779-5.835-198.9c-5.62,10.172-11.431,20.691-18.028,29.713-9.653,13.2-21.547,23.075-35.35,29.341a91.139,91.139,0,0,1-43.456,7.649c-25.705-1.505-52.567-12.29-77.68-31.19-26.219-19.731-49.024-47.34-65.949-79.841-16.429-31.549-28.1-66.877-39.395-101.045-10.121-30.632-20.589-62.305-34.464-91.242-10.652-22.216-25.493-43.2-41.789-59.076-16.839-16.409-34.1-26.119-48.6-27.34-11.817-1-21.644,3.421-29.24,13.125l-.313-.175c7.677-9.809,17.635-14.269,29.589-13.267,14.6,1.229,31.943,10.977,48.844,27.448,16.323,15.905,31.185,36.919,41.852,59.165,13.884,28.955,24.355,60.637,34.48,91.276,11.288,34.157,22.957,69.476,39.377,101,16.9,32.463,39.675,60.035,65.853,79.734,25.052,18.852,51.835,29.608,77.457,31.109a90.633,90.633,0,0,0,43.252-7.612c13.744-6.24,25.59-16.073,35.207-29.228,6.586-9.007,12.392-19.516,18.008-29.68,8.787-15.905,17.873-32.351,30.111-43.276a56.817,56.817,0,0,1,38.478-14.6q.839,0,1.682.021c15.126.4,30.8,6.229,45.336,16.845,14.338,10.472,27.674,25.357,40.571,39.752,6.076,6.781,12.357,13.793,18.669,20.261,23.161,23.735,48.476,42.043,75.238,54.412a210.577,210.577,0,0,0,77.933,19.306c48.277,2.476,98.82-11.366,146.209-40.008,36.059-21.793,70.186-49.863,103.19-77.008,46.832-38.519,95.26-78.349,149.817-100.678,57.025-23.34,121.473-27.895,191.556-13.536,33.019,6.765,67.18,17.792,101.532,32.775A689.464,689.464,0,0,1,1115.063-249.8c9.205,6.013,18.575,12.393,27.637,18.565,36.521,24.869,74.285,50.585,111.81,59.728,35.431,8.629,70.394,2.5,103.913-18.217,29.147-18.015,56.333-46.335,80.827-84.176s45.146-81.781,65.12-124.284c16.706-35.564,33.986-72.34,53.44-105.393,23.573-40.045,49.253-71.048,76.307-92.149,31.827-24.821,65.613-35.857,100.386-32.809l-.04.315c-34.653-3.036-68.346,7.972-100.093,32.728-27.013,21.075-52.667,52.047-76.213,92.057-19.453,33.04-36.733,69.809-53.44,105.369-19.987,42.512-40.64,86.472-65.133,124.321-24.52,37.88-51.746,66.236-80.933,84.277-33.621,20.781-68.694,26.925-104.245,18.267-37.6-9.161-75.391-34.9-111.941-59.787-9.061-6.171-18.429-12.551-27.631-18.563a689.2,689.2,0,0,0-100.858-54.933c-34.327-14.972-68.458-25.988-101.449-32.748-69.993-14.34-134.357-9.792-191.3,13.513C666.72-301.417,618.316-261.6,571.5-223.1c-33.013,27.152-67.151,55.231-103.233,77.037-43.851,26.5-90.425,40.346-135.389,40.348" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path80" d="M325.838-98.433q-5.374,0-10.712-.271a208.3,208.3,0,0,1-78.094-19.558c-26.853-12.564-52.3-31.179-75.641-55.323-6.356-6.576-12.687-13.7-18.807-20.6-12.977-14.612-26.394-29.721-40.758-40.333C87.3-245.242,71.689-251.117,56.679-251.5c-.525-.015-1.051-.021-1.572-.021A55.374,55.374,0,0,0,17-236.706C4.916-225.611-4.006-208.889-12.635-192.717c-5.528,10.357-11.242,21.068-17.755,30.259-9.474,13.372-21.19,23.4-34.819,29.8a88.965,88.965,0,0,1-43.021,7.983c-25.728-1.367-52.715-12.241-78.042-31.447-26.435-20.048-49.505-48.168-66.719-81.324-16.651-32.071-28.588-68-40.132-102.741-10.349-31.148-21.052-63.359-35.133-92.78-10.84-22.645-25.864-44.009-42.3-60.156-16.991-16.688-34.331-26.507-48.827-27.644-11.7-.916-21.4,3.6-28.855,13.416l-.315-.171c7.535-9.928,17.372-14.492,29.2-13.561,14.593,1.147,32.023,11,49.077,27.753,16.464,16.172,31.509,37.568,42.363,60.245,14.091,29.437,24.8,61.656,35.149,92.813,11.54,34.732,23.473,70.646,40.113,102.7,17.192,33.116,40.231,61.2,66.628,81.216,25.26,19.157,52.168,30,77.813,31.367a88.494,88.494,0,0,0,42.812-7.944c13.572-6.374,25.24-16.364,34.68-29.686,6.5-9.175,12.211-19.877,17.734-30.227,8.642-16.193,17.577-32.94,29.7-44.073a55.773,55.773,0,0,1,38.383-14.917c.527,0,1.054.005,1.584.02,15.1.388,30.793,6.289,45.384,17.068C116.467-224.118,129.9-209,142.885-194.371c6.117,6.891,12.445,14.015,18.8,20.585,23.308,24.115,48.72,42.7,75.532,55.248A207.888,207.888,0,0,0,315.15-99.02c48.191,2.44,98.533-11.716,145.6-40.929,35.813-22.228,69.648-50.839,102.369-78.506,46.429-39.261,94.44-79.86,148.713-102.662,56.725-23.833,121.009-28.568,191.074-14.067,33.009,6.832,67.192,18,101.6,33.189a689.875,689.875,0,0,1,101.161,55.765c9.234,6.105,18.64,12.584,27.734,18.849,36.649,25.244,74.547,51.351,112.072,60.592,35.431,8.732,70.276,2.439,103.565-18.692,28.933-18.373,55.853-47.228,79.987-85.765s44.387-83.272,63.987-126.545C1509.4-434,1526.356-471.447,1545.5-505.1c23.213-40.779,48.573-72.361,75.413-93.869,31.56-25.3,65.187-36.584,99.92-33.537l-.027.316c-34.627-3.047-68.146,8.213-99.64,33.451-26.8,21.483-52.146,53.033-75.32,93.776-19.146,33.648-36.106,71.085-52.493,107.29-19.6,43.281-39.853,88.037-64,126.581-24.16,38.576-51.106,67.468-80.093,85.868-33.392,21.2-68.348,27.5-103.9,18.745-37.6-9.263-75.525-35.387-112.2-60.653-9.093-6.264-18.5-12.74-27.729-18.843a689.371,689.371,0,0,0-101.105-55.736c-34.379-15.179-68.533-26.335-101.514-33.16C832.839-349.359,768.641-344.632,712-320.834c-54.217,22.779-102.2,63.358-148.614,102.6-32.731,27.677-66.576,56.3-102.41,78.538-43.659,27.1-90.153,41.257-135.134,41.26" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path82" d="M318.807-91.15q-5.2,0-10.375-.26a205.655,205.655,0,0,1-78.1-19.774c-26.9-12.739-52.448-31.63-75.933-56.154-6.393-6.676-12.767-13.913-18.928-20.913-13.069-14.845-26.583-30.2-41.005-40.967-14.58-10.891-30.208-16.843-45.194-17.212A54.5,54.5,0,0,0,9.792-231.323C-2.181-220.019-10.953-203-19.437-186.536c-5.434,10.544-11.053,21.447-17.479,30.8-9.3,13.543-20.843,23.724-34.3,30.261a86.814,86.814,0,0,1-42.6,8.313c-25.748-1.232-52.854-12.2-78.384-31.705-26.645-20.364-49.979-49-67.478-82.8-16.871-32.595-29.071-69.118-40.868-104.44-10.579-31.665-21.515-64.412-35.8-94.314-11.027-23.075-26.231-44.823-42.809-61.234-17.141-16.967-34.561-26.892-49.048-27.948-11.568-.835-21.164,3.767-28.481,13.705l-.317-.168c7.4-10.047,17.1-14.711,28.831-13.853,14.588,1.063,32.1,11.028,49.3,28.059,16.605,16.437,31.831,38.216,42.872,61.323,14.3,29.919,25.235,62.672,35.815,94.345,11.795,35.312,23.989,71.825,40.852,104.4,17.479,33.763,40.78,62.359,67.386,82.69,25.465,19.461,52.491,30.4,78.152,31.625a86.5,86.5,0,0,0,42.391-8.272C-58-132.253-46.508-142.4-37.242-155.89c6.416-9.341,12.03-20.236,17.459-30.771,8.5-16.485,17.28-33.532,29.293-44.873a54.761,54.761,0,0,1,38.284-15.232c.5,0,.992.007,1.49.017,15.075.372,30.785,6.351,45.432,17.291,14.451,10.8,27.977,26.157,41.058,41.016,6.159,7,12.529,14.232,18.919,20.905,23.455,24.489,48.965,43.357,75.824,56.076a205.264,205.264,0,0,0,77.938,19.736c48.093,2.406,98.246-12.065,144.988-41.849,35.567-22.663,69.109-51.813,101.545-80.006,46.029-40,93.625-81.37,147.612-104.645a281.938,281.938,0,0,1,92.046-22.009c31.3-2.207,64.46.287,98.548,7.413,33,6.9,67.205,18.2,101.665,33.6a690.172,690.172,0,0,1,101.409,56.568c9.267,6.2,18.707,12.773,27.836,19.132,36.776,25.62,74.807,52.113,112.33,61.459,35.429,8.825,70.156,2.371,103.2-19.172,28.747-18.731,55.373-48.121,79.16-87.353s43.64-84.77,62.853-128.814c16.08-36.855,32.693-74.963,51.546-109.225,22.827-41.511,47.907-73.673,74.52-95.59,31.307-25.785,64.773-37.311,99.467-34.263l-.04.315c-34.573-3.044-67.947,8.459-99.173,34.175-26.573,21.892-51.613,54.02-74.44,95.5-18.84,34.249-35.453,72.353-51.52,109.2-19.213,44.053-39.093,89.608-62.88,128.849-23.813,39.275-50.48,68.7-79.253,87.461-33.161,21.611-68,28.076-103.549,19.224-37.6-9.364-75.659-35.877-112.464-61.519-9.128-6.359-18.565-12.933-27.831-19.129a689.915,689.915,0,0,0-101.349-56.535c-34.435-15.385-68.609-26.683-101.581-33.575-69.949-14.623-133.988-9.721-190.333,14.572-53.931,23.251-101.505,64.6-147.512,104.584-32.448,28.2-66,57.361-101.588,80.037-43.463,27.7-89.87,42.171-134.864,42.172" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path84" d="M311.789-83.865q-5.04,0-10.049-.249a203.145,203.145,0,0,1-78.1-19.992c-26.948-12.915-52.595-32.088-76.225-56.987-6.436-6.783-12.853-14.133-19.06-21.243C115.192-197.409,101.585-213,87.107-223.927c-16.19-12.224-33.366-18.227-49.659-17.369A53.5,53.5,0,0,0,2.583-225.939C-9.278-214.426-17.9-197.1-26.24-180.352-31.58-169.624-37.1-158.528-43.443-149c-9.131,13.716-20.505,24.053-33.8,30.725a84.861,84.861,0,0,1-42.2,8.635c-25.763-1.1-52.977-12.152-78.708-31.967-26.849-20.679-50.44-49.817-68.223-84.269-17.1-33.119-29.557-70.24-41.608-106.138-10.8-32.183-21.976-65.463-36.471-95.849-11.212-23.5-26.593-45.632-43.312-62.308-17.287-17.244-34.781-27.279-49.26-28.253-11.473-.78-20.939,3.932-28.12,13.991l-.323-.163c7.263-10.169,16.853-14.925,28.472-14.145,14.58.984,32.165,11.056,49.519,28.367,16.743,16.7,32.147,38.86,43.372,62.395,14.5,30.4,25.677,63.688,36.485,95.88,12.047,35.889,24.505,73,41.591,106.1,17.761,34.409,41.321,63.512,68.132,84.16,25.663,19.765,52.8,30.79,78.472,31.884a84.572,84.572,0,0,0,41.985-8.59c13.242-6.643,24.57-16.941,33.669-30.606,6.33-9.509,11.848-20.595,17.184-31.316C-18.236-197.249-9.6-214.6,2.3-226.147a53.9,53.9,0,0,1,35.124-15.465c16.4-.861,33.669,5.167,49.935,17.451,14.507,10.952,28.125,26.553,41.3,41.639,6.2,7.108,12.619,14.456,19.049,21.232,23.6,24.871,49.212,44.017,76.117,56.909a202.71,202.71,0,0,0,77.941,19.954C349.8-82.049,399.723-96.845,446.14-127.2c35.319-23.1,68.566-52.791,100.72-81.5,45.628-40.748,92.808-82.882,146.51-106.632a275.912,275.912,0,0,1,91.7-22.517c31.229-2.292,64.341.195,98.417,7.389,32.991,6.965,67.219,18.411,101.733,34.017a690.911,690.911,0,0,1,101.653,57.368c9.3,6.288,18.767,12.957,27.927,19.411,36.908,26,75.073,52.881,112.6,62.329,35.431,8.917,70.034,2.309,102.856-19.647,28.532-19.091,54.892-49.016,78.318-88.944s42.893-86.262,61.72-131.077c15.76-37.5,32.053-76.277,50.6-111.144,22.467-42.245,47.227-74.985,73.613-97.312,31.053-26.268,64.36-38.043,99.013-34.989l-.04.315c-34.52-3.04-67.746,8.7-98.706,34.9-26.347,22.3-51.093,55.008-73.547,97.217-18.533,34.856-34.827,73.626-50.573,111.12-18.827,44.824-38.307,91.174-61.746,131.11-23.453,39.973-49.84,69.933-78.418,89.052-32.923,22.025-67.643,28.653-103.2,19.7-37.6-9.467-75.794-36.372-112.733-62.391-9.159-6.451-18.627-13.12-27.92-19.405a690.339,690.339,0,0,0-101.6-57.336c-34.487-15.593-68.684-27.029-101.645-33.989-34.036-7.187-67.108-9.671-98.293-7.38a275.453,275.453,0,0,0-91.554,22.481c-53.645,23.724-100.8,65.839-146.41,106.568-32.163,28.723-65.42,58.424-100.762,81.536C403.11-98.659,356.794-83.866,311.789-83.865" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path86" d="M304.787-76.583q-9.6,0-19.1-.916c-52.921-5.11-101.8-31.134-145.265-77.349-6.475-6.881-12.936-14.345-19.184-21.561-13.25-15.305-26.952-31.133-41.487-42.225-16.274-12.419-33.482-18.509-49.755-17.58a52.609,52.609,0,0,0-34.62,15.657c-11.75,11.723-20.222,29.345-28.417,46.387-5.247,10.915-10.674,22.2-16.928,31.893-8.966,13.891-20.176,24.384-33.319,31.189a82.967,82.967,0,0,1-41.807,8.95c-25.769-.965-53.092-12.11-79.015-32.229C-231.157-155.36-255-185-273.066-220.1c-17.317-33.643-30.04-71.36-42.345-107.834-11.032-32.7-22.439-66.517-37.14-97.386-11.4-23.929-26.953-46.437-43.808-63.379-17.432-17.523-35-27.665-49.467-28.563-11.379-.7-20.721,4.1-27.773,14.277l-.325-.16c7.131-10.292,16.6-15.149,28.127-14.433,14.569.9,32.229,11.087,49.727,28.675,16.879,16.965,32.459,39.5,43.869,63.464,14.708,30.884,26.117,64.708,37.153,97.418,12.3,36.465,25.02,74.172,42.328,107.8,18.044,35.053,41.857,64.661,68.865,85.624,25.857,20.069,53.1,31.184,78.777,32.145a82.481,82.481,0,0,0,41.593-8.905c13.087-6.775,24.253-17.228,33.185-31.068,6.244-9.676,11.667-20.955,16.909-31.861C-25.185-191.354-16.7-209-4.912-220.761A52.992,52.992,0,0,1,29.97-236.531c16.382-.927,33.68,5.184,50.032,17.663,14.564,11.115,28.278,26.953,41.539,42.273,6.246,7.215,12.7,14.675,19.172,21.553,43.408,46.144,92.2,72.128,145.014,77.229,50.9,4.911,103.844-9.957,153.108-43.013,35.075-23.533,68.029-53.765,99.9-83,45.225-41.489,91.99-84.392,145.4-108.613a270.132,270.132,0,0,1,91.349-23.027c31.147-2.375,64.219.1,98.285,7.368,32.981,7.033,67.232,18.617,101.8,34.432a691.308,691.308,0,0,1,101.9,58.171c9.327,6.376,18.831,13.144,28.023,19.691,37.037,26.375,75.336,53.648,112.861,63.195,35.429,9.016,69.917,2.245,102.505-20.124,28.336-19.447,54.4-49.907,77.483-90.533s42.146-87.756,60.6-133.342c15.427-38.144,31.387-77.586,49.627-113.06,22.107-42.976,46.573-76.3,72.733-99.032,30.787-26.748,63.933-38.767,98.56-35.715l-.04.315c-34.493-3.041-67.546,8.947-98.253,35.621-26.133,22.708-50.573,56-72.653,98.937-18.227,35.461-34.187,74.9-49.626,113.034-18.44,45.6-37.52,92.744-60.613,133.377-23.093,40.669-49.2,71.165-77.578,90.644-32.689,22.437-67.3,29.229-102.85,20.181-37.6-9.567-75.929-36.861-113-63.259-9.189-6.544-18.692-13.309-28.016-19.685a690.971,690.971,0,0,0-101.842-58.137c-34.54-15.8-68.761-27.377-101.712-34.4-34.027-7.255-67.049-9.728-98.16-7.359a269.692,269.692,0,0,0-91.2,22.989c-53.359,24.2-100.1,67.078-145.305,108.548-31.881,29.248-64.845,59.491-99.942,83.038-23.461,15.741-48.009,27.471-72.964,34.864a215.62,215.62,0,0,1-61.319,9.132" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path88" d="M297.866-69.293q-9.112,0-18.153-.842a200.311,200.311,0,0,1-73.828-22.009c-25.444-13.19-49.821-32.183-72.456-56.456-6.514-6.985-13.019-14.561-19.308-21.885-13.343-15.539-27.138-31.6-41.731-42.857C56.033-225.954,38.8-232.094,22.548-231.134a51.742,51.742,0,0,0-34.381,15.961c-11.639,11.929-19.96,29.852-28.009,47.184C-45-156.889-50.327-145.41-56.5-135.549c-8.8,14.067-19.854,24.717-32.848,31.653a81.18,81.18,0,0,1-41.431,9.263c-25.771-.835-53.2-12.072-79.3-32.493-27.239-21.305-51.333-51.456-69.679-87.191-17.539-34.164-30.523-72.477-43.08-109.526-11.26-33.221-22.9-67.573-37.812-98.928-11.58-24.355-27.313-47.241-44.3-64.447-17.572-17.8-35.211-28.051-49.664-28.869-11.271-.636-20.512,4.257-27.436,14.56l-.329-.157c7-10.416,16.344-15.368,27.791-14.72,14.557.825,32.289,11.119,49.928,28.984,17.013,17.229,32.768,40.148,44.361,64.532,14.917,31.367,26.564,65.729,37.825,98.958,12.553,37.041,25.535,75.342,43.064,109.488,18.324,35.693,42.388,65.807,69.589,87.083,26.044,20.37,53.383,31.579,79.063,32.41a80.786,80.786,0,0,0,41.215-9.215C-76.609-111.072-65.6-121.681-56.83-135.7c6.16-9.843,11.487-21.313,16.638-32.407,8.058-17.356,16.392-35.3,28.068-47.269A52.145,52.145,0,0,1,22.522-231.45c16.362-.98,33.688,5.2,50.122,17.875,14.619,11.275,28.427,27.355,41.78,42.9,6.288,7.323,12.791,14.895,19.3,21.875,22.607,24.244,46.951,43.214,72.357,56.381a199.819,199.819,0,0,0,73.673,21.967c50.609,4.72,103.1-10.5,151.777-44,34.827-23.966,67.49-54.742,99.077-84.5,44.823-42.232,91.172-85.9,144.3-110.594a264.584,264.584,0,0,1,91-23.535c31.075-2.461,64.1.009,98.156,7.344,32.971,7.1,67.244,18.825,101.865,34.847,33.791,15.637,68.159,35.479,102.146,58.972,9.359,6.467,18.9,13.333,28.12,19.971,37.167,26.753,75.6,54.416,113.125,64.063,35.432,9.111,69.8,2.179,102.152-20.6,28.127-19.807,53.913-50.8,76.646-92.124s41.4-89.248,59.466-135.605c15.12-38.789,30.746-78.9,48.68-114.976,21.733-43.712,45.893-77.609,71.84-100.754,30.52-27.229,63.506-39.491,98.093-36.441l-.04.316c-34.453-3.043-67.347,9.189-97.786,36.342-25.907,23.117-50.053,56.984-71.76,100.658-17.933,36.067-33.56,76.17-48.667,114.953-18.067,46.367-36.76,94.31-59.493,135.641-22.747,41.364-48.56,72.4-76.739,92.232-32.461,22.853-66.946,29.8-102.5,20.661-37.6-9.667-76.061-37.352-113.258-64.124-9.223-6.64-18.759-13.5-28.113-19.969-33.97-23.48-68.318-43.309-102.089-58.939-34.595-16.011-68.837-27.724-101.778-34.816-34.013-7.324-66.989-9.791-98.028-7.337a264.174,264.174,0,0,0-90.852,23.5c-53.07,24.668-99.4,68.316-144.2,110.529-31.6,29.772-64.269,60.555-99.12,84.538-42.961,29.564-88.9,44.911-133.9,44.913" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path90" d="M290.869-62.009q-8.6,0-17.148-.764a198.042,198.042,0,0,1-74.194-22.14c-25.621-13.373-50.212-32.7-73.087-57.441-6.555-7.088-13.1-14.776-19.438-22.212-13.431-15.765-27.321-32.069-41.969-43.48C48.6-220.851,31.357-227.083,15.106-226.051A50.923,50.923,0,0,0-19.042-209.79c-11.527,12.14-19.7,30.363-27.6,47.985-5.062,11.285-10.3,22.956-16.379,32.982-8.645,14.245-19.54,25.052-32.387,32.123a79.677,79.677,0,0,1-41.068,9.571c-25.769-.711-53.288-12.04-79.58-32.764-27.427-21.617-51.767-52.268-70.389-88.64-17.763-34.691-31.009-73.6-43.821-111.23-11.485-33.739-23.363-68.625-38.477-100.458-11.764-24.777-27.671-48.044-44.791-65.513-17.712-18.072-35.42-28.436-49.859-29.18-11.185-.559-20.311,4.419-27.112,14.843l-.331-.153c6.879-10.541,16.124-15.6,27.464-15.005,14.545.751,32.348,11.153,50.127,29.295,17.144,17.493,33.072,40.789,44.851,65.6,15.121,31.851,27,66.744,38.489,100.489,12.808,37.62,26.053,76.521,43.805,111.192,18.6,36.332,42.912,66.948,70.3,88.534,26.224,20.671,53.659,31.972,79.334,32.678a78.924,78.924,0,0,0,40.851-9.519c12.791-7.039,23.645-17.805,32.258-32,6.074-10.009,11.3-21.67,16.362-32.949,7.914-17.647,16.1-35.892,27.661-48.071a51.32,51.32,0,0,1,34.413-16.381c16.352-1.025,33.7,5.224,50.209,18.088,14.676,11.433,28.577,27.752,42.02,43.531,6.332,7.432,12.879,15.117,19.429,22.2,22.848,24.712,47.406,44.012,72.99,57.365a197.665,197.665,0,0,0,74.036,22.095c50.329,4.507,102.366-11.048,150.468-44.991,34.581-24.4,66.952-55.719,98.256-86,44.42-42.975,90.353-87.412,143.193-112.578a259.245,259.245,0,0,1,90.65-24.043c31-2.544,63.976-.081,98.024,7.323,32.963,7.165,67.256,19.029,101.932,35.26,33.844,15.84,68.295,35.951,102.393,59.772,9.389,6.559,18.96,13.521,28.216,20.253,37.3,27.128,75.861,55.18,113.388,64.931,35.429,9.207,69.678,2.113,101.8-21.077,27.929-20.165,53.439-51.695,75.812-93.714s40.653-90.741,58.333-137.869c14.8-39.433,30.093-80.209,47.733-116.893,21.36-44.443,45.226-78.92,70.946-102.474,30.253-27.712,63.12-40.215,97.64-37.167l-.04.316c-34.387-3.04-67.146,9.432-97.333,37.067-25.68,23.524-49.533,57.969-70.866,102.377-17.627,36.672-32.92,77.442-47.72,116.87-17.68,47.136-35.973,95.877-58.346,137.9-22.4,42.063-47.941,73.63-75.913,93.825-32.227,23.265-66.6,30.379-102.154,21.14-37.6-9.772-76.2-37.844-113.522-64.994-9.255-6.731-18.824-13.691-28.21-20.249-34.081-23.809-68.512-43.908-102.336-59.74-34.647-16.217-68.912-28.071-101.842-35.229-34.005-7.395-66.944-9.852-97.893-7.315a258.812,258.812,0,0,0-90.5,24c-52.784,25.14-98.7,69.557-143.1,112.512-31.313,30.293-63.692,61.62-98.3,86.038-42.739,30.157-88.586,45.825-133.6,45.825" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path92" d="M283.883-54.724q-8.112,0-16.177-.692a195.9,195.9,0,0,1-74.548-22.268c-25.795-13.556-50.593-33.213-73.709-58.424-6.6-7.195-13.191-14.995-19.567-22.539-13.523-16-27.506-32.537-42.21-44.108-16.514-13-33.8-19.283-50-18.217-12.97.865-24.7,6.593-33.919,16.564-11.415,12.348-19.437,30.872-27.2,48.784-4.968,11.472-10.107,23.334-16.1,33.528C-78.04-107.671-88.785-96.7-101.49-89.505a77.765,77.765,0,0,1-40.719,9.873c-25.763-.584-53.372-12.006-79.841-33.032-27.608-21.929-52.191-53.083-71.09-90.088-17.985-35.215-31.495-74.72-44.557-112.926-11.715-34.256-23.828-69.678-39.148-102-11.947-25.2-28.027-48.843-45.275-66.574-17.851-18.347-35.623-28.821-50.045-29.491q-.766-.036-1.52-.036c-10.407,0-18.9,5.093-25.276,15.157l-.333-.149c6.755-10.668,15.9-15.815,27.149-15.288,14.529.675,32.4,11.189,50.316,29.607,17.272,17.755,33.373,41.428,45.333,66.657,15.327,32.331,27.444,67.762,39.159,102.025,13.061,38.2,26.567,77.693,44.543,112.888,18.88,36.967,43.433,68.084,71,89.983,26.4,20.972,53.924,32.365,79.593,32.948a77.454,77.454,0,0,0,40.5-9.82c12.649-7.169,23.353-18.093,31.812-32.469,5.99-10.177,11.123-22.03,16.089-33.5,7.768-17.935,15.8-36.481,27.253-48.868A50.545,50.545,0,0,1,7.639-221.288c16.308-1.079,33.7,5.243,50.291,18.3,14.731,11.591,28.725,28.145,42.258,44.155,6.375,7.541,12.967,15.34,19.559,22.528,23.088,25.181,47.854,44.813,73.612,58.349a195.43,195.43,0,0,0,74.385,22.22C317.8-51.423,369.388-67.317,416.924-101.7c34.336-24.837,66.412-56.694,97.433-87.5,44.019-43.717,89.536-88.924,142.089-114.562a254.111,254.111,0,0,1,90.3-24.552c30.921-2.627,63.856-.171,97.893,7.3,32.951,7.233,67.269,19.236,102,35.673,33.9,16.044,68.43,36.425,102.641,60.576,9.419,6.649,19.021,13.707,28.309,20.532,37.424,27.505,76.124,55.947,113.652,65.8,35.421,9.3,69.556,2.051,101.446-21.552,27.727-20.524,52.949-52.589,74.976-95.306s39.907-92.236,57.2-140.134c14.48-40.077,29.453-81.521,46.773-118.808,21-45.176,44.56-80.232,70.053-104.194,30-28.195,62.693-40.941,97.186-37.895l-.04.316c-34.373-3.045-66.946,9.676-96.866,37.789-25.453,23.935-49,58.958-69.973,104.1-17.32,37.276-32.293,78.713-46.773,118.785-17.293,47.908-35.187,97.446-57.213,140.169-22.053,42.76-47.305,74.862-75.073,95.417-31.995,23.68-66.246,30.952-101.809,21.617-37.6-9.872-76.332-38.335-113.786-65.862-9.285-6.824-18.888-13.881-28.3-20.527-34.192-24.139-68.707-44.508-102.581-60.543-34.7-16.424-68.989-28.416-101.91-35.644-33.993-7.463-66.884-9.917-97.76-7.291A253.685,253.685,0,0,0,656.636-303.5c-52.5,25.612-97.994,70.8-141.992,114.493-31.031,30.819-63.117,62.686-97.476,87.538C374.66-70.713,328.9-54.725,283.883-54.724" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path94" d="M276.906-47.437q-7.638,0-15.239-.628c-25.611-2.116-50.807-9.649-74.885-22.392-25.964-13.737-50.969-33.724-74.324-59.4-6.632-7.295-13.269-15.206-19.688-22.856-13.616-16.229-27.694-33.012-42.456-44.744C33.723-210.649,16.388-217.023.235-215.889c-12.923.9-24.574,6.736-33.695,16.867-11.3,12.556-19.177,31.381-26.791,49.584-4.875,11.656-9.918,23.709-15.829,34.07-8.334,14.607-18.933,25.73-31.5,33.063A75.887,75.887,0,0,1-146.366-72.12c-.531,0-1.06-.005-1.593-.015-25.753-.462-53.449-11.981-80.09-33.306-27.785-22.24-52.608-53.891-71.784-91.529-18.205-35.735-31.976-75.837-45.293-114.62-11.941-34.776-24.289-70.734-39.817-103.534-12.129-25.621-28.377-49.64-45.755-67.633-17.985-18.623-35.823-29.208-50.228-29.805-11.007-.464-19.929,4.724-26.491,15.4l-.333-.145c6.633-10.8,15.668-16.045,26.844-15.572,14.512.6,32.445,11.228,50.5,29.921,17.4,18.017,33.672,42.067,45.813,67.714,15.535,32.817,27.885,68.781,39.829,103.564,13.315,38.773,27.081,78.866,45.277,114.584,19.156,37.6,43.948,69.215,71.7,91.425,26.575,21.271,54.181,32.757,79.838,33.22a75.792,75.792,0,0,0,40.159-10.116c12.513-7.3,23.069-18.383,31.378-32.94,5.9-10.344,10.94-22.389,15.811-34.037,7.624-18.227,15.507-37.073,26.847-49.671,9.186-10.2,20.93-16.08,33.962-16.991,16.277-1.144,33.7,5.261,50.368,18.512,14.79,11.756,28.881,28.551,42.506,44.792,6.417,7.649,13.052,15.557,19.68,22.847,23.327,25.65,48.3,45.612,74.225,59.329C211.012-58.009,236.153-50.492,261.7-48.38,311.481-44.261,362.639-60.5,409.62-95.329c34.089-25.273,65.873-57.672,96.61-89,43.617-44.459,88.719-90.432,140.986-116.544a249.076,249.076,0,0,1,89.952-25.06c30.84-2.713,63.735-.264,97.761,7.277,32.943,7.3,67.282,19.443,102.066,36.088,33.948,16.247,68.564,36.9,102.885,61.377,9.449,6.739,19.087,13.893,28.405,20.812,37.556,27.883,76.389,56.713,113.914,66.668,35.431,9.395,69.441,1.982,101.1-22.032,27.525-20.881,52.473-53.481,74.14-96.893s39.16-93.726,56.067-142.393c14.16-40.725,28.8-82.837,45.827-120.732,20.627-45.911,43.893-81.544,69.16-105.916,29.733-28.676,62.293-41.664,96.72-38.621l-.04.316c-34.307-3.036-66.747,9.921-96.4,38.515-25.24,24.341-48.48,59.944-69.093,105.818-17.013,37.884-31.653,79.989-45.8,120.708-16.933,48.677-34.427,99.009-56.093,142.426-21.693,43.457-46.668,76.1-74.234,97.008-31.76,24.094-65.9,31.532-101.46,22.1-37.6-9.972-76.466-38.827-114.05-66.729-9.319-6.919-18.953-14.072-28.4-20.811-34.3-24.465-68.9-45.105-102.829-61.341-34.756-16.632-69.065-28.764-101.976-36.059-33.981-7.531-66.824-9.977-97.626-7.269a248.741,248.741,0,0,0-89.8,25.019C595.2-274.522,550.117-228.569,506.52-184.13c-30.747,31.341-62.54,63.75-96.652,89.038C367.591-63.749,321.926-47.44,276.906-47.437" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path96" d="M269.939-40.15q-7.182,0-14.332-.567c-25.681-2.032-50.987-9.607-75.212-22.513-26.128-13.919-51.337-34.236-74.926-60.385-6.674-7.4-13.357-15.421-19.82-23.182-13.705-16.459-27.876-33.477-42.694-45.371C26.287-205.545,8.944-211.99-7.195-210.807c-12.877.944-24.45,6.88-33.472,17.169-11.194,12.765-18.916,31.889-26.385,50.383-4.782,11.841-9.728,24.087-15.553,34.615-8.185,14.789-18.641,26.072-31.075,33.536a74.739,74.739,0,0,1-40.054,10.467c-25.739-.345-53.515-11.959-80.325-33.584-27.957-22.549-53.016-54.7-72.465-92.966-18.428-36.26-32.463-76.961-46.035-116.324-12.168-35.291-24.749-71.781-40.484-105.064-12.309-26.04-28.728-50.435-46.231-68.689-18.119-18.9-36.019-29.595-50.4-30.119-.384-.015-.769-.023-1.148-.023-10.407,0-18.828,5.277-25.045,15.7l-.336-.143c6.287-10.539,14.82-15.875,25.376-15.875q.582,0,1.169.021c14.495.529,32.492,11.268,50.68,30.236,17.527,18.28,33.965,42.7,46.289,68.772,15.74,33.295,28.324,69.8,40.495,105.093,13.569,39.353,27.6,80.045,46.019,116.289,19.429,38.229,44.459,70.34,72.379,92.86,26.743,21.571,54.431,33.15,80.072,33.495A74.407,74.407,0,0,0-113.9-75.364c12.381-7.431,22.794-18.672,30.952-33.412,5.817-10.511,10.759-22.749,15.538-34.584,7.478-18.515,15.21-37.663,26.438-50.467,9.087-10.365,20.756-16.347,33.743-17.3,16.233-1.192,33.693,5.285,50.441,18.727,14.845,11.913,29.027,28.945,42.743,45.417,6.46,7.759,13.14,15.783,19.81,23.174C129.33-97.689,154.508-77.4,180.6-63.5c24.173,12.878,49.423,20.437,75.045,22.466,49.517,3.92,100.24-12.654,146.674-47.924,33.843-25.706,65.335-58.646,95.789-90.5,43.213-45.2,87.9-91.945,139.881-118.529a244.322,244.322,0,0,1,89.6-25.568c30.769-2.795,63.613-.355,97.629,7.255,32.932,7.369,67.294,19.651,102.132,36.5,34,16.449,68.7,37.369,103.133,62.177,9.477,6.828,19.145,14.079,28.495,21.091,37.687,28.26,76.656,57.483,114.185,67.539,35.424,9.489,69.32,1.919,100.742-22.508,27.323-21.24,51.985-54.375,73.3-98.485s38.413-95.22,54.946-144.66c13.84-41.371,28.147-84.146,44.867-122.644,20.253-46.643,43.213-82.857,68.267-107.636,29.467-29.159,61.853-42.4,96.266-39.348l-.04.315c-34.28-3.036-66.546,10.165-95.933,39.237-25.027,24.751-47.973,60.933-68.213,107.54-16.707,38.487-31.013,81.258-44.853,122.62-16.533,49.449-33.64,100.581-54.96,144.7-21.339,44.153-46.032,77.326-73.4,98.6-31.529,24.508-65.549,32.1-101.112,22.575-37.6-10.075-76.6-39.32-114.32-67.6-9.349-7.011-19.015-14.259-28.491-21.085-34.413-24.8-69.093-45.7-103.074-62.144-34.809-16.839-69.141-29.111-102.041-36.469-33.973-7.6-66.774-10.037-97.492-7.249a243.937,243.937,0,0,0-89.449,25.525c-51.927,26.556-96.592,73.276-139.785,118.457-30.463,31.864-61.964,64.814-95.829,90.539-42.044,31.934-87.61,48.567-132.629,48.569" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path98" d="M262.982-32.865q-6.734,0-13.453-.507C223.781-35.32,198.369-42.935,174-56.005c-26.289-14.1-51.7-34.745-75.524-61.364-6.713-7.5-13.441-15.638-19.946-23.507-13.8-16.691-28.061-33.948-42.935-46C18.854-200.442,1.5-206.953-14.62-205.727c-12.832.983-24.332,7.024-33.257,17.473-11.08,12.972-18.653,32.393-25.975,51.176-4.69,12.031-9.54,24.469-15.281,35.162C-97.171-86.94-107.487-75.5-119.791-67.9a73.268,73.268,0,0,1-39.737,10.757c-25.721-.228-53.575-11.937-80.55-33.862-28.125-22.86-53.417-55.5-73.137-94.4-18.652-36.783-32.947-78.08-46.772-118.018-12.395-35.809-25.212-72.836-41.152-106.6-12.491-26.459-29.077-51.227-46.7-69.744-18.249-19.169-36.211-29.979-50.576-30.435-10.869-.343-19.575,5.021-25.905,15.956l-.339-.14c6.4-11.056,15.241-16.5,26.259-16.135,14.475.461,32.536,11.312,50.855,30.555,17.649,18.541,34.256,43.339,46.76,69.825,15.947,33.78,28.767,70.813,41.164,106.629,13.821,39.931,28.115,81.217,46.756,117.985,19.7,38.856,44.964,71.461,73.053,94.292,26.905,21.869,54.669,33.545,80.292,33.774l.749,0a72.643,72.643,0,0,0,38.764-10.7c12.253-7.56,22.526-18.96,30.538-33.885,5.732-10.679,10.579-23.109,15.266-35.132,7.331-18.8,14.913-38.251,26.026-51.264,8.991-10.525,20.584-16.611,33.53-17.6,16.212-1.241,33.687,5.307,50.511,18.939,14.9,12.075,29.176,29.344,42.983,46.045,6.5,7.867,13.228,16,19.938,23.5,23.8,26.588,49.174,47.206,75.426,61.288,24.315,13.043,49.669,20.64,75.358,22.584,49.253,3.724,99.553-13.18,145.449-48.895,33.6-26.141,64.8-59.622,94.968-92,42.812-45.944,87.081-93.453,138.777-120.512a239.7,239.7,0,0,1,89.253-26.077c30.689-2.879,63.489-.444,97.5,7.235,32.923,7.435,67.307,19.856,102.2,36.916,34.053,16.653,68.836,37.843,103.378,62.98,9.509,6.919,19.211,14.265,28.592,21.371,37.816,28.637,76.918,58.249,114.446,68.405,35.425,9.585,69.2,1.853,100.392-22.983,27.12-21.6,51.5-55.271,72.468-100.076s37.653-96.714,53.813-146.924c13.52-42.013,27.506-85.457,43.906-124.561,19.893-47.377,42.56-84.169,67.387-109.357,29.213-29.637,61.453-43.12,95.8-40.075l-.04.316c-34.227-3.036-66.346,10.408-95.48,39.96-24.787,25.16-47.44,61.921-67.306,109.261-16.413,39.092-30.387,82.53-43.907,124.538-16.146,50.219-32.866,102.146-53.826,146.957-20.984,44.849-45.395,78.558-72.557,100.188-31.3,24.925-65.2,32.68-100.764,23.056-37.6-10.176-76.737-39.812-114.582-68.47-9.381-7.1-19.081-14.449-28.585-21.368-34.528-25.123-69.291-46.3-103.324-62.944C882.655-293.8,848.3-306.2,815.411-313.633c-33.961-7.669-66.717-10.1-97.36-7.225a239.293,239.293,0,0,0-89.1,26.033c-51.639,27.027-95.886,74.513-138.68,120.436-30.18,32.391-61.388,65.881-95.008,92.04C353.46-49.819,308-32.865,262.982-32.865" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path100" d="M256.033-25.579q-6.312,0-12.605-.453C217.617-27.895,192.1-35.548,167.6-48.783c-26.448-14.28-52.054-35.253-76.111-62.34-6.755-7.6-13.525-15.854-20.074-23.833-13.886-16.919-28.246-34.415-43.175-46.627-16.817-13.755-34.216-20.352-50.281-19.063-12.79,1.02-24.216,7.167-33.043,17.773-10.971,13.181-18.392,32.905-25.57,51.98-4.6,12.213-9.35,24.843-15,35.7-7.894,15.161-18.071,26.765-30.25,34.488a71.734,71.734,0,0,1-39.065,11.044h-.368c-25.7-.113-53.627-11.92-80.762-34.144-28.292-23.169-53.812-56.3-73.8-95.823-18.873-37.305-33.431-79.2-47.509-119.714-12.623-36.328-25.675-73.892-41.821-108.138-12.671-26.876-29.424-52.017-47.173-70.8-18.379-19.443-36.4-30.364-50.743-30.753-.273-.007-.547-.011-.819-.011-10.4,0-18.745,5.46-24.807,16.243l-.341-.136c6.289-11.188,15.048-16.723,25.979-16.413,14.455.392,32.576,11.356,51.024,30.873,17.772,18.8,34.545,43.972,47.229,70.875,16.153,34.263,29.208,71.834,41.833,108.169,14.075,40.505,28.629,82.39,47.493,119.678,19.972,39.481,45.464,72.581,73.72,95.721,13.417,10.99,27.167,19.493,40.865,25.279,13.655,5.768,26.991,8.72,39.639,8.776.121,0,.244,0,.367,0a71.313,71.313,0,0,0,38.838-10.983C-114.01-68.641-103.872-80.2-96-95.314c5.646-10.845,10.4-23.468,14.99-35.673,7.187-19.1,14.617-38.844,25.62-52.065,8.893-10.687,20.414-16.879,33.317-17.908,16.18-1.3,33.68,5.329,50.579,19.152,14.956,12.232,29.325,29.741,43.223,46.672,6.546,7.977,13.316,16.224,20.066,23.825,24.03,27.055,49.6,48,76.012,62.262,24.455,13.205,49.909,20.844,75.658,22.7,49.012,3.543,98.88-13.705,144.25-49.86,33.351-26.576,64.254-60.6,94.142-93.5,42.411-46.688,86.265-94.965,137.674-122.5a235.267,235.267,0,0,1,88.905-26.587c30.609-2.963,63.369-.536,97.366,7.212,32.912,7.5,67.32,20.061,102.265,37.331,34.107,16.856,68.971,38.316,103.625,63.78,9.541,7.012,19.279,14.459,28.695,21.659,37.943,29.011,77.177,59.009,114.7,69.267,35.427,9.684,69.084,1.791,100.038-23.46,26.918-21.957,51.02-56.163,71.629-101.665s36.911-98.208,52.684-149.188c13.2-42.659,26.854-86.769,42.96-126.478,19.52-48.108,41.88-85.48,66.493-111.078,28.947-30.119,61.04-43.847,95.347-40.8l-.04.315c-34.187-3.039-66.16,10.651-95.013,40.683-24.587,25.569-46.933,62.908-66.426,110.981-16.107,39.7-29.747,83.8-42.947,126.456-15.773,50.988-32.093,103.713-52.705,149.221-20.631,45.547-44.76,79.79-71.72,101.78-31.062,25.339-64.845,33.256-100.414,23.533-37.6-10.277-76.869-40.3-114.84-69.334-9.415-7.2-19.151-14.643-28.691-21.652-34.636-25.453-69.481-46.9-103.568-63.745-34.916-17.256-69.292-29.805-102.172-37.3-33.953-7.74-66.665-10.159-97.225-7.2a234.8,234.8,0,0,0-88.748,26.54c-51.352,27.5-95.186,75.752-137.577,122.418-29.9,32.912-60.81,66.944-94.182,93.54-41.565,33.12-86.925,50.395-131.936,50.4" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path102" d="M249.094-18.292q-5.9,0-11.789-.4c-25.867-1.777-51.476-9.471-76.117-22.867-26.6-14.461-52.4-35.762-76.689-63.313-6.795-7.709-13.612-16.075-20.2-24.161-13.975-17.151-28.429-34.881-43.414-47.253-16.889-13.943-34.3-20.612-50.341-19.276-12.748,1.057-24.1,7.309-32.833,18.079-10.858,13.389-18.13,33.411-25.163,52.776-4.5,12.4-9.161,25.221-14.731,36.249-7.751,15.351-17.795,27.114-29.849,34.967a70.433,70.433,0,0,1-39.13,11.327h-.007c-12.693,0-26.1-2.961-39.841-8.8-13.767-5.849-27.6-14.472-41.124-25.629-28.451-23.478-54.2-57.1-74.46-97.245-19.1-37.831-33.916-80.322-48.248-121.414C-387.7-332.1-400.986-370.2-417.338-404.93c-12.851-27.291-29.768-52.805-47.639-71.844-18.508-19.716-36.587-30.752-50.905-31.073-.223-.005-.447-.008-.667-.008-10.4,0-18.7,5.552-24.688,16.515l-.341-.132c6.049-11.084,14.467-16.7,25.027-16.7.225,0,.452,0,.679.008,14.433.324,32.613,11.4,51.189,31.192,17.895,19.063,34.832,44.607,47.695,71.924,16.359,34.743,29.649,72.85,42.5,109.7,14.328,41.084,29.145,83.566,48.232,121.381,20.241,40.1,45.961,73.695,74.378,97.143,13.492,11.133,27.3,19.737,41.031,25.572,13.689,5.816,27.037,8.765,39.671,8.767h.007a70.019,70.019,0,0,0,38.9-11.261c12-7.819,22.008-19.54,29.734-34.838C-96.972-99.6-92.318-112.412-87.816-124.8c7.041-19.387,14.322-39.432,25.211-52.861,8.8-10.849,20.245-17.147,33.107-18.213,16.156-1.345,33.67,5.353,50.642,19.363,15.011,12.393,29.472,30.14,43.459,47.3,6.59,8.085,13.405,16.448,20.2,24.15,24.262,27.523,50.031,48.8,76.592,63.239,24.588,13.365,50.139,21.043,75.944,22.814,48.756,3.356,98.217-14.225,143.069-50.821,33.105-27.012,63.717-61.576,93.322-95,42.009-47.429,85.448-96.474,136.569-124.477a230.927,230.927,0,0,1,88.557-27.095c30.532-3.049,63.248-.628,97.234,7.189,32.9,7.568,67.333,20.268,102.332,37.745,34.159,17.057,69.106,38.787,103.87,64.581,9.571,7.1,19.34,14.641,28.787,21.935,38.073,29.388,77.443,59.778,114.972,70.139,35.42,9.779,68.962,1.724,99.685-23.936,26.719-22.317,50.536-57.056,70.793-103.257s36.164-99.7,51.564-151.454c12.88-43.3,26.2-88.078,42-128.392,19.147-48.841,41.213-86.793,65.587-112.8,28.693-30.6,60.613-44.575,94.893-41.525l-.04.316c-34.133-3.041-65.946,10.895-94.547,41.405-24.36,25.977-46.413,63.894-65.533,112.7-15.8,40.3-29.12,85.072-42,128.369-15.4,51.76-31.307,105.282-51.572,151.486-20.276,46.245-44.124,81.024-70.88,103.373-30.832,25.75-64.5,33.826-100.068,24.011-37.605-10.38-77.006-40.792-115.109-70.205-9.444-7.292-19.212-14.832-28.779-21.931-34.749-25.781-69.677-47.5-103.816-64.545-34.969-17.464-69.368-30.152-102.238-37.713-33.943-7.807-66.609-10.221-97.092-7.179a230.509,230.509,0,0,0-88.4,27.044c-51.067,27.972-94.484,76.994-136.472,124.4-29.615,33.435-60.238,68.008-93.364,95.037-41.32,33.716-86.57,51.315-131.572,51.315" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path104" d="M242.161-11q-5.5,0-11-.357c-25.921-1.691-51.623-9.422-76.4-22.981-26.748-14.638-52.742-36.268-77.26-64.288-6.832-7.808-13.691-16.283-20.324-24.477C43.114-140.489,28.566-158.464,13.522-171c-16.96-14.128-34.39-20.864-50.4-19.487-12.707,1.093-23.99,7.451-32.627,18.38-10.747,13.6-17.869,33.921-24.756,53.575-4.41,12.585-8.971,25.6-14.455,36.8-7.611,15.538-17.522,27.467-29.459,35.446A69.148,69.148,0,0,1-177.022-34.68h-.335c-12.581,0-25.881-2.957-39.539-8.793-13.8-5.9-27.692-14.62-41.287-25.924-28.608-23.786-54.581-57.9-75.109-98.662-19.319-38.356-34.4-81.445-48.987-123.114-13.077-37.361-26.6-76-43.159-111.206-13.028-27.705-30.111-53.592-48.1-72.892-18.632-19.987-36.768-31.136-51.065-31.393-10.659-.177-19.085,5.455-25.088,16.781l-.343-.129c6.069-11.455,14.624-17.161,25.44-16.968,14.411.259,32.648,11.451,51.351,31.513,18.012,19.324,35.116,45.237,48.157,72.969,16.564,35.227,30.089,73.866,43.169,111.236,14.583,41.661,29.661,84.741,48.971,123.08,20.509,40.721,46.455,74.8,75.028,98.561,13.567,11.28,27.427,19.983,41.193,25.867,13.6,5.814,26.847,8.76,39.368,8.76h.332a68.748,68.748,0,0,0,38.619-11.539c11.885-7.946,21.757-19.829,29.344-35.32,5.477-11.18,10.034-24.185,14.442-36.766,6.9-19.674,14.025-40.021,24.8-53.66,8.7-11.011,20.08-17.415,32.9-18.52,16.123-1.391,33.655,5.381,50.7,19.579,15.07,12.555,29.628,30.54,43.708,47.934,6.631,8.194,13.487,16.664,20.317,24.468,24.489,27.99,50.451,49.592,77.161,64.211,24.719,13.528,50.364,21.244,76.221,22.929C279.677-8.515,328.754-26.419,373.1-63.46c32.86-27.447,63.18-62.552,92.5-96.5,41.605-48.173,84.629-97.985,135.465-126.46a226.772,226.772,0,0,1,88.206-27.6c30.456-3.132,63.125-.72,97.1,7.165,32.895,7.637,67.345,20.476,102.4,38.163,34.211,17.26,69.241,39.259,104.117,65.383,9.6,7.191,19.4,14.828,28.881,22.215,38.2,29.765,77.707,60.545,115.236,71.005,35.425,9.874,68.845,1.66,99.333-24.413,26.515-22.675,50.052-57.949,69.956-104.846s35.419-101.2,50.432-153.72c12.56-43.947,25.547-89.389,41.053-130.308,18.773-49.575,40.533-88.1,64.693-114.518,28.427-31.083,60.2-45.292,94.426-42.252l-.04.316c-34.093-3.031-65.746,11.141-94.093,42.131-24.12,26.384-45.867,64.881-64.64,114.421-15.493,40.908-28.48,86.344-41.027,130.285-15.013,52.531-30.544,106.852-50.451,153.752-19.923,46.941-43.489,82.256-70.043,104.962-30.6,26.167-64.148,34.405-99.718,24.491-37.608-10.481-77.142-41.285-115.373-71.073-9.479-7.384-19.279-15.021-28.876-22.211-34.859-26.111-69.87-48.1-104.061-65.348-35.024-17.671-69.445-30.5-102.3-38.125-33.932-7.875-66.549-10.287-96.96-7.159a226.333,226.333,0,0,0-88.044,27.552c-50.78,28.444-93.782,78.234-135.369,126.384-29.331,33.96-59.659,69.075-92.54,96.538C332.29-28.925,287.153-11,242.161-11" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path106" d="M235.237-3.715q-5.124,0-10.233-.316c-25.969-1.605-51.763-9.374-76.664-23.093-26.9-14.817-53.079-36.775-77.823-65.26-6.872-7.912-13.775-16.5-20.451-24.8-14.16-17.613-28.8-35.825-43.9-48.517-17.031-14.316-34.493-21.124-50.45-19.7-12.67,1.131-23.881,7.592-32.426,18.684-10.636,13.807-17.609,34.43-24.351,54.375-4.317,12.77-8.782,25.977-14.179,37.338-7.473,15.732-17.255,27.82-29.074,35.929a67.89,67.89,0,0,1-38.571,11.884l-.659,0c-12.472,0-25.671-2.956-39.243-8.792-13.832-5.949-27.776-14.769-41.443-26.219-28.763-24.094-54.959-58.7-75.753-100.077-19.541-38.877-34.885-82.564-49.724-124.81-13.3-37.88-27.063-77.049-43.828-112.744-13.207-28.119-30.452-54.375-48.561-73.934-18.756-20.26-36.947-31.524-51.22-31.716l-.387,0c-10.4,0-18.617,5.737-24.441,17.057l-.345-.127c5.961-11.588,14.44-17.379,25.18-17.245,14.388.195,32.683,11.5,51.51,31.837,18.129,19.583,35.4,45.868,48.615,74.013,16.772,35.708,30.532,74.884,43.839,112.77,14.835,42.239,30.177,85.916,49.707,124.777,20.777,41.34,46.945,75.91,75.673,99.976C-250.326-51-236.415-42.2-222.617-36.267c13.517,5.813,26.661,8.759,39.072,8.759.219,0,.436,0,.655,0a67.493,67.493,0,0,0,38.337-11.812c11.769-8.076,21.513-20.12,28.962-35.8,5.391-11.347,9.853-24.545,14.168-37.308,6.75-19.967,13.731-40.614,24.4-54.461,8.608-11.176,19.916-17.685,32.7-18.827,16.111-1.432,33.643,5.409,50.755,19.792,15.126,12.715,29.778,30.94,43.949,48.566,6.675,8.3,13.575,16.884,20.444,24.79,24.717,28.455,50.868,50.385,77.724,65.181C173.393-13.7,199.126-5.947,225.03-4.348,273.285-1.36,321.955-19.6,365.8-57.085c32.612-27.881,62.639-63.526,91.676-98,41.205-48.917,83.813-99.5,134.364-128.445A222.72,222.72,0,0,1,679.7-311.639c30.379-3.217,63-.812,96.97,7.144,32.884,7.7,67.357,20.681,102.464,38.575,34.264,17.463,69.376,39.729,104.365,66.182,9.631,7.283,19.467,15.017,28.979,22.5,38.332,30.144,77.968,61.313,115.5,71.874,35.417,9.964,68.722,1.594,98.981-24.89,26.313-23.033,49.569-58.844,69.121-106.436s34.673-102.689,49.3-155.982c12.24-44.592,24.907-90.7,40.093-132.226,18.413-50.307,39.88-89.416,63.813-116.24,28.16-31.563,59.773-46.028,93.973-42.977l-.04.316c-34.067-3.04-65.56,11.384-93.627,42.852-23.92,26.795-45.36,65.87-63.76,116.144-15.187,41.512-27.84,87.616-40.08,132.2-14.633,53.3-29.764,108.416-49.316,156.013-19.571,47.637-42.853,83.486-69.205,106.553-30.367,26.58-63.8,34.981-99.372,24.97-37.607-10.582-77.273-41.776-115.634-71.941-9.509-7.479-19.344-15.212-28.973-22.493-34.971-26.439-70.064-48.695-104.308-66.148-35.077-17.879-69.518-30.845-102.37-38.541-33.92-7.947-66.5-10.347-96.822-7.135a222.4,222.4,0,0,0-87.7,28.06C541.555-254.35,498.966-203.793,457.78-154.9c-29.047,34.483-59.081,70.138-91.716,98.038-40.824,34.9-85.848,53.144-130.828,53.147" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path108" d="M228.319,3.572q-4.75,0-9.5-.276C192.809,1.779,166.93-6.029,141.9-19.909c-27.036-15-53.406-37.279-78.375-66.229-6.914-8.014-13.86-16.714-20.581-25.126C28.7-129.106,13.961-147.557-1.2-160.41c-17.1-14.5-34.567-21.379-50.5-19.912-12.632,1.165-23.774,7.731-32.225,18.985-10.525,14.017-17.347,34.94-23.944,55.175-4.226,12.957-8.593,26.355-13.906,37.884-7.336,15.922-16.99,28.174-28.7,36.415a66.717,66.717,0,0,1-38.3,12.156c-12.64.169-26.083-2.8-39.924-8.789-13.863-6-27.857-14.919-41.595-26.514C-299.2-79.413-325.615-114.5-346.675-156.5c-19.763-39.4-35.369-83.686-50.461-126.51-13.532-38.4-27.524-78.1-44.5-114.278-13.385-28.531-30.793-55.157-49.02-74.976-18.879-20.531-37.123-31.909-51.372-32.041h-.259c-10.393,0-18.573,5.829-24.317,17.331l-.347-.124c5.808-11.628,14.107-17.524,24.663-17.524h.265c14.364.133,32.713,11.556,51.664,32.164,18.248,19.841,35.675,46.5,49.072,75.053,16.979,36.192,30.972,75.9,44.507,114.306,15.089,42.816,30.693,87.09,50.447,126.476,21.043,41.953,47.429,77.013,76.309,101.385,13.711,11.572,27.673,20.472,41.5,26.456,13.437,5.813,26.484,8.76,38.792,8.76.319,0,.636,0,.956-.007a66.3,66.3,0,0,0,38.065-12.082c11.655-8.2,21.273-20.413,28.587-36.285,5.305-11.515,9.67-24.906,13.892-37.855,6.605-20.256,13.435-41.2,23.988-55.259,8.515-11.34,19.754-17.955,32.5-19.132C-35.68-182.12-18.11-175.2-.929-160.633,14.253-147.758,29-129.3,43.259-111.441c6.718,8.411,13.664,17.106,20.572,25.117,24.942,28.919,51.28,51.176,78.279,66.149C167.082-6.324,192.9,1.467,218.849,2.979c48.012,2.8,96.293-15.766,139.644-53.689,32.368-28.317,62.1-64.5,90.856-99.5,40.8-49.659,82.994-101.008,133.257-130.43a218.924,218.924,0,0,1,87.51-28.619c30.3-3.3,62.881-.9,96.84,7.121,32.873,7.769,67.371,20.887,102.532,38.989C903.8-245.478,939-222.942,974.1-196.161c9.661,7.372,19.531,15.2,29.072,22.776,38.463,30.52,78.233,62.078,115.764,72.741,22.427,6.372,44.165,5.261,64.608-3.3,50.162-21.013,83.321-82.342,102.305-130.092,19.193-48.277,33.927-104.184,48.179-158.248,11.92-45.236,24.24-92.013,39.133-134.141,18.04-51.041,39.2-90.728,62.92-117.961,27.893-32.044,59.346-46.756,93.506-43.7l-.04.315c-34.013-3.037-65.347,11.628-93.16,43.577-23.693,27.2-44.84,66.856-62.866,117.861-14.88,42.119-27.213,88.889-39.133,134.121-14.247,54.073-28.981,109.985-48.181,158.278-19.007,47.807-52.217,109.216-102.5,130.274-20.533,8.6-42.369,9.72-64.894,3.317-37.608-10.684-77.411-42.267-115.9-72.809-9.541-7.572-19.408-15.4-29.067-22.771-35.081-26.769-70.257-49.295-104.554-66.95-35.13-18.087-69.594-31.193-102.436-38.955-33.908-8.015-66.44-10.407-96.69-7.113a218.458,218.458,0,0,0-87.342,28.567c-50.209,29.389-92.38,80.713-133.165,130.349-28.763,35-58.505,71.2-90.892,99.537C318.191-15,273.287,3.572,228.319,3.572" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path110" d="M221.409,10.861q-4.4,0-8.785-.242C186.57,9.191,160.609,1.344,135.46-12.7,108.281-27.868,81.73-50.476,56.537-79.89c-6.953-8.119-13.946-16.929-20.708-25.452C21.488-123.416,6.658-142.1-8.554-155.116-25.722-169.8-43.208-176.76-59.1-175.244c-12.595,1.2-23.669,7.872-32.027,19.291-10.413,14.225-17.086,35.449-23.538,55.976-4.131,13.141-8.4,26.73-13.629,38.425-7.2,16.119-16.732,28.532-28.326,36.9a65.585,65.585,0,0,1-38.039,12.428c-.415.007-.832.011-1.248.011-12.269,0-25.28-2.959-38.7-8.8-13.891-6.049-27.935-15.068-41.743-26.808-29.061-24.708-55.695-60.288-77.02-102.89-19.983-39.925-35.851-84.805-51.2-128.205-13.76-38.916-27.988-79.157-45.168-115.818-13.56-28.941-31.129-55.937-49.472-76.014-19-20.8-37.3-32.3-51.52-32.368h-.137c-10.389,0-18.528,5.921-24.192,17.6l-.348-.119c5.727-11.811,13.983-17.8,24.54-17.8h.14c14.339.072,32.741,11.609,51.815,32.489,18.364,20.1,35.951,47.125,49.525,76.093,17.185,36.673,31.416,76.922,45.177,115.844,15.343,43.392,31.207,88.262,51.184,128.172,21.305,42.566,47.911,78.111,76.938,102.792,13.78,11.716,27.793,20.715,41.649,26.749,13.815,6.017,27.187,8.955,39.764,8.757a65.174,65.174,0,0,0,37.8-12.354c11.544-8.332,21.037-20.7,28.217-36.77,5.22-11.682,9.49-25.263,13.618-38.4,6.46-20.548,13.139-41.8,23.581-56.061,8.422-11.5,19.593-18.225,32.306-19.436,16.017-1.537,33.607,5.463,50.857,20.217C6.952-142.3,21.792-123.6,36.143-105.519,42.9-97,49.894-88.19,56.843-80.077c25.165,29.384,51.685,51.965,78.824,67.116C160.76,1.049,186.661,8.877,212.647,10.3c47.769,2.621,95.677-16.272,138.542-54.642,32.12-28.749,61.561-65.477,90.03-101,40.4-50.4,82.179-102.518,132.156-132.412a215.14,215.14,0,0,1,87.161-29.129c30.217-3.385,62.759-1,96.708,7.1,32.864,7.836,67.383,21.092,102.6,39.4C894.21-242.5,929.488-219.694,964.7-192.584c9.692,7.463,19.593,15.389,29.17,23.056,38.591,30.9,78.493,62.844,116.025,73.609,22.272,6.39,43.819,5.295,64.044-3.251,50.152-21.19,82.976-83.593,101.68-132.21,18.841-48.975,33.179-105.674,47.045-160.509,11.6-45.881,23.6-93.326,38.187-136.061,17.667-51.773,38.533-92.04,62.026-119.681,27.64-32.527,58.933-47.475,93.053-44.429l-.04.315c-33.947-3.032-65.16,11.872-92.706,44.3-23.467,27.611-44.32,67.845-61.973,119.584-14.587,42.724-26.573,90.162-38.18,136.04-13.868,54.843-28.208,111.552-47.054,160.54-18.726,48.676-51.6,111.157-101.872,132.4-20.315,8.583-41.96,9.685-64.332,3.265-37.609-10.787-77.544-42.758-116.162-73.677-9.575-7.667-19.476-15.593-29.167-23.055-35.192-27.1-70.451-49.891-104.8-67.751-35.186-18.293-69.673-31.539-102.5-39.368-33.9-8.083-66.388-10.468-96.557-7.089a214.718,214.718,0,0,0-86.99,29.073c-49.922,29.86-91.68,81.953-132.061,132.33C413.052-109.628,383.6-72.888,351.463-44.12,311.147-8.032,266.358,10.86,221.409,10.861" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path112" d="M214.5,18.149q-4.05,0-8.1-.208c-26.088-1.344-52.129-9.225-77.4-23.425-27.312-15.351-54.047-38.281-79.46-68.16-6.992-8.221-14.03-17.146-20.834-25.776-14.432-18.3-29.357-37.231-44.626-50.4-17.233-14.867-34.724-21.9-50.59-20.339-12.56,1.235-23.568,8.011-31.834,19.592-10.3,14.433-16.824,35.959-23.132,56.773-4.039,13.328-8.214,27.109-13.356,38.973-7.068,16.312-16.475,28.892-27.96,37.388a64.476,64.476,0,0,1-37.783,12.7c-.5.009-1.011.015-1.517.015-12.175,0-25.1-2.961-38.445-8.809-13.919-6.1-28.012-15.22-41.888-27.105-29.205-25.016-56.055-61.08-77.642-104.293-20.205-40.448-36.335-85.925-51.933-129.9-13.988-39.432-28.451-80.208-45.836-117.352-13.737-29.351-31.468-56.716-49.924-77.054-19.123-21.071-37.472-32.681-51.667-32.693h-.023c-10.387,0-18.483,6.013-24.065,17.873l-.351-.117c5.645-11.992,13.86-18.073,24.416-18.073h.023c14.315.012,32.771,11.668,51.967,32.819,18.476,20.36,36.224,47.752,49.975,77.13,17.391,37.156,31.856,77.938,45.845,117.378,15.6,43.971,31.723,89.438,51.921,129.869,21.568,43.177,48.389,79.206,77.562,104.194C-268.3-29-254.241-19.9-240.357-13.814c13.844,6.067,27.232,9.028,39.78,8.758a64.052,64.052,0,0,0,37.544-12.618c11.437-8.461,20.809-21,27.856-37.259,5.134-11.848,9.307-25.621,13.342-38.941,6.315-20.837,12.843-42.384,23.173-56.859,8.33-11.671,19.434-18.5,32.114-19.744,15.993-1.569,33.586,5.493,50.9,20.433,15.294,13.192,30.228,32.132,44.67,50.449,6.8,8.627,13.838,17.549,20.827,25.767,25.386,29.847,52.088,52.75,79.362,68.078,25.214,14.169,51.191,22.035,77.212,23.375C253.965,20.071,301.5.852,343.886-37.962c31.875-29.185,61.022-66.455,89.21-102.5,40-51.143,81.358-104.028,131.05-134.394a211.53,211.53,0,0,1,86.81-29.637c30.144-3.469,62.637-1.087,96.578,7.076,32.855,7.9,67.394,21.3,102.662,39.819,34.421,18.072,69.782,41.149,105.1,68.588,9.724,7.555,19.66,15.58,29.269,23.341,38.719,31.272,78.755,63.608,116.285,74.473,22.115,6.4,43.479,5.328,63.488-3.2,50.145-21.364,82.629-84.842,101.049-134.332,18.488-49.669,32.431-107.166,45.915-162.77,11.283-46.528,22.944-94.64,37.224-137.98,17.307-52.507,37.88-93.352,61.133-121.4,27.387-33.009,58.533-48.2,92.6-45.156l-.04.315c-33.933-3.033-64.96,12.116-92.253,45.023-23.24,28.02-43.786,68.832-61.067,121.3-14.28,43.331-25.948,91.436-37.229,137.96-13.485,55.612-27.431,113.117-45.922,162.8-18.444,49.548-50.979,113.106-101.241,134.52-20.1,8.565-41.558,9.644-63.778,3.212-37.608-10.887-77.674-43.247-116.422-74.543-9.608-7.76-19.543-15.785-29.264-23.337C919.743-216.2,884.4-239.265,850-257.327c-35.239-18.5-69.747-31.887-102.568-39.781-33.889-8.152-66.331-10.531-96.422-7.069A211.119,211.119,0,0,0,564.367-274.6C514.732-244.265,473.391-191.4,433.41-140.285c-28.2,36.052-57.352,73.332-89.248,102.536C304.1-1.067,259.439,18.148,214.5,18.149" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path114" d="M207.61,25.438q-3.718,0-7.439-.179C174.05,24,147.934,16.084,122.549,1.724,95.1-13.8,68.192-37.057,42.557-67.4c-7.033-8.324-14.116-17.362-20.965-26.1C7.071-112.035-7.946-131.2-23.271-144.529c-17.3-15.049-34.8-22.163-50.633-20.553-12.526,1.268-23.467,8.148-31.643,19.9-10.19,14.644-16.561,36.468-22.723,57.572C-132.217-74.1-136.3-60.128-141.352-48.1c-6.937,16.508-16.224,29.252-27.6,37.879A63.423,63.423,0,0,1-206.489,2.745c-12.591.293-26.048-2.659-39.975-8.8-13.945-6.154-28.087-15.372-42.029-27.4-29.348-25.321-56.409-61.868-78.258-105.689-20.428-40.973-36.821-87.046-52.673-131.6-14.215-39.949-28.912-81.261-46.5-118.886-13.913-29.761-31.8-57.495-50.372-78.09-19.2-21.3-37.571-33.023-51.728-33.023h-.083c-10.34.033-18.365,6.139-23.853,18.144l-.349-.113c5.547-12.14,13.689-18.313,24.2-18.348h.084c14.279,0,32.749,11.767,52.027,33.149,18.589,20.617,36.5,48.379,50.424,78.165,17.6,37.637,32.3,78.953,46.513,118.912,15.849,44.547,32.239,90.613,52.661,131.569,21.829,43.785,48.864,80.3,78.181,105.592C-274.309-21.674-260.2-12.474-246.29-6.339c13.871,6.12,27.267,9.077,39.791,8.765a63.006,63.006,0,0,0,37.295-12.881c11.331-8.588,20.584-21.29,27.5-37.747,5.049-12.017,9.127-25.984,13.07-39.49,6.169-21.125,12.547-42.972,22.764-57.654,8.238-11.837,19.277-18.771,31.923-20.052C-58-167.018-40.384-159.873-23-144.75-7.652-131.4,7.374-112.221,21.907-93.677c6.846,8.74,13.926,17.775,20.957,26.095C68.47-37.272,95.35-14.043,122.758,1.461c25.328,14.328,51.383,22.229,77.433,23.481q3.708.18,7.417.179c44.808,0,89.242-19.5,128.973-56.709,31.629-29.621,60.484-67.432,88.388-104,39.6-51.888,80.542-105.538,129.946-136.378a208.066,208.066,0,0,1,86.462-30.147c30.071-3.551,62.517-1.179,96.445,7.056,32.844,7.971,67.408,21.505,102.73,40.232,34.473,18.276,69.917,41.623,105.349,69.389,9.755,7.644,19.723,15.767,29.364,23.62,38.848,31.648,79.017,64.374,116.548,75.341,21.967,6.42,43.142,5.363,62.938-3.14,50.136-21.532,82.276-86.089,100.41-136.455s31.685-108.661,44.788-165.037c10.963-47.172,22.3-95.948,36.272-139.893,16.933-53.24,37.2-94.662,60.24-123.122,27.12-33.489,58.133-48.924,92.146-45.881l-.04.315c-33.88-3.031-64.76,12.36-91.8,45.747-23.013,28.428-43.267,69.82-60.187,123.025-13.967,43.935-25.3,92.705-36.264,139.87-13.1,56.384-26.655,114.686-44.8,165.072-18.156,50.423-50.345,115.06-100.6,136.645-19.889,8.543-41.161,9.6-63.23,3.156C1054.084-97.16,1013.881-129.912,975-161.584c-9.639-7.852-19.607-15.973-29.359-23.616-35.413-27.755-70.838-51.089-105.292-69.353-35.292-18.709-69.824-32.233-102.634-40.2-33.877-8.22-66.271-10.591-96.29-7.047a207.672,207.672,0,0,0-86.29,30.088c-49.348,30.8-90.274,84.433-129.851,136.294-27.913,36.576-56.776,74.4-88.425,104.037C297.059,5.9,252.525,25.438,207.61,25.438" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path116" d="M200.718,32.729q-3.4,0-6.8-.153c-26.149-1.169-52.336-9.125-77.836-23.645C88.507-6.771,61.418-30.35,35.568-61.15c-7.071-8.427-14.2-17.575-21.086-26.421-14.614-18.767-29.728-38.172-45.112-51.667C-47.993-154.466-65.521-161.648-81.3-160c-12.493,1.3-23.37,8.287-31.457,20.2-10.078,14.852-16.3,36.976-22.316,58.372-3.852,13.7-7.837,27.864-12.805,40.062C-154.685-24.661-163.854-11.752-175.128-3a62.384,62.384,0,0,1-37.293,13.225c-12.572.351-26.031-2.612-39.987-8.81s-28.156-15.525-42.165-27.7c-29.488-25.628-56.761-62.657-78.87-107.084-20.649-41.495-37.305-88.164-53.411-133.3-14.441-40.471-29.375-82.316-47.173-120.425-14.089-30.168-32.137-58.269-50.82-79.122-19.275-21.519-37.651-33.356-51.768-33.356h-.181c-10.285.076-18.233,6.271-23.623,18.419l-.352-.112c5.448-12.281,13.513-18.547,23.972-18.623h.184c14.239,0,32.719,11.881,52.068,33.481,18.7,20.877,36.769,49,50.87,79.2,17.8,38.12,32.739,79.973,47.183,120.449,16.1,45.124,32.755,91.784,53.4,133.265C-351.006-89.1-323.758-52.1-294.3-26.5c13.983,12.149,28.136,21.449,42.072,27.64,13.9,6.172,27.315,9.127,39.8,8.774A61.99,61.99,0,0,0-175.382-3.232c11.227-8.717,20.361-21.582,27.148-38.239,4.963-12.183,8.944-26.34,12.793-40.033,6.023-21.416,12.252-43.563,22.357-58.455,8.148-12,19.122-19.045,31.736-20.357,15.913-1.66,33.541,5.557,50.988,20.859C-14.951-125.942.171-106.525,14.8-87.747,21.684-78.9,28.807-69.754,35.874-61.335c25.824,30.771,52.881,54.323,80.417,70,25.443,14.488,51.566,22.425,77.646,23.591,47.095,2.1,93.884-17.768,135.342-57.472,31.383-30.057,59.943-68.408,87.565-105.5,39.195-52.629,79.724-107.048,128.841-138.361A204.672,204.672,0,0,1,631.8-299.726c29.983-3.636,62.392-1.269,96.313,7.033,32.836,8.037,67.421,21.713,102.8,40.647,34.525,18.477,70.052,42.093,105.594,70.189,9.784,7.736,19.784,15.952,29.455,23.9,38.98,32.028,79.285,65.146,116.818,76.213,21.813,6.435,42.807,5.4,62.393-3.08,50.127-21.7,81.921-87.336,99.768-138.581,17.781-51.064,30.935-110.156,43.656-167.3,10.645-47.817,21.651-97.261,35.321-141.812,16.561-53.972,36.534-95.974,59.348-124.841,26.854-33.972,57.707-49.66,91.68-46.609l-.04.316c-33.827-3.037-64.56,12.6-91.333,46.468-22.787,28.837-42.733,70.809-59.289,124.746-13.668,44.54-24.673,93.98-35.317,141.79C1276.242-333.5,1263.085-274.4,1245.3-223.318c-17.867,51.3-49.709,117.025-99.956,138.774-19.681,8.519-40.773,9.56-62.689,3.1-37.612-11.092-77.948-44.233-116.956-76.285-9.671-7.945-19.671-16.16-29.451-23.893-35.525-28.083-71.033-51.685-105.538-70.153-35.345-18.917-69.9-32.581-102.7-40.609-33.868-8.291-66.221-10.655-96.156-7.025a204.267,204.267,0,0,0-85.94,30.594c-49.064,31.279-89.573,85.673-128.75,138.277-27.629,37.1-56.2,75.461-87.6,105.536-39.539,37.868-83.949,57.732-128.842,57.734" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path118" d="M193.836,40.017q-3.094,0-6.187-.128c-26.175-1.084-52.431-9.075-78.043-23.753C81.908.258,54.644-23.641,28.576-54.907,21.464-63.436,14.3-72.7,7.362-81.652c-14.705-19-29.911-38.64-45.35-52.292-17.426-15.411-34.947-22.668-50.708-20.98-12.46,1.333-23.273,8.424-31.27,20.507C-129.933-119.36-136-96.935-141.877-75.249c-3.759,13.885-7.647,28.243-12.529,40.608-6.677,16.905-15.729,29.982-26.9,38.864a61.4,61.4,0,0,1-37.056,13.485c-12.572.408-26.015-2.569-39.995-8.821s-28.225-15.677-42.3-28c-29.628-25.934-57.109-63.444-79.479-108.474-20.872-42.02-37.789-89.286-54.148-135-14.669-40.988-29.837-83.368-47.841-121.958-14.264-30.576-32.472-59.041-51.265-80.156-19.349-21.737-37.735-33.688-51.812-33.688h-.276c-10.233.115-18.105,6.4-23.4,18.688l-.352-.109c5.349-12.421,13.339-18.779,23.745-18.895h.279c14.2,0,32.692,11.995,52.115,33.813,18.813,21.137,37.037,49.628,51.315,80.23,18.009,38.6,33.179,80.99,47.849,121.982,16.357,45.7,33.271,92.961,54.136,134.966,22.352,44.994,49.808,82.47,79.4,108.377,14.045,12.3,28.245,21.695,42.2,27.937,13.92,6.225,27.312,9.184,39.8,8.785a61,61,0,0,0,36.813-13.4c11.127-8.845,20.143-21.876,26.8-38.733,4.877-12.349,8.763-26.7,12.521-40.577,5.877-21.708,11.954-44.154,21.948-59.253,8.057-12.173,18.968-19.32,31.552-20.667,15.858-1.693,33.514,5.591,51.026,21.077,15.463,13.675,30.68,33.329,45.393,52.337,6.932,8.954,14.1,18.212,21.209,26.739,26.04,31.229,53.27,55.105,80.933,70.96,25.554,14.645,51.746,22.619,77.848,23.7q3.086.126,6.168.127c44.76,0,88.937-20.149,128.141-58.54,31.136-30.49,59.405-69.384,86.744-107,38.792-53.371,78.906-108.558,127.737-140.344a201.4,201.4,0,0,1,85.764-31.164c29.911-3.72,62.275-1.359,96.182,7.011,32.824,8.1,67.433,21.919,102.862,41.061,34.579,18.681,70.189,42.567,105.841,70.99,9.816,7.825,19.849,16.14,29.553,24.18,39.108,32.405,79.548,65.91,117.08,77.08,21.667,6.448,42.479,5.431,61.856-3.019,50.119-21.857,81.564-88.584,99.116-140.71,17.431-51.76,30.189-111.649,42.529-169.565,10.324-48.461,21-98.572,34.366-143.726,16.192-54.706,35.857-97.288,58.457-126.564,26.587-34.453,57.28-50.377,91.213-47.335l-.04.315c-33.8-3.029-64.36,12.848-90.866,47.193-22.56,29.245-42.216,71.794-58.4,126.465-13.364,45.147-24.039,95.252-34.363,143.708-12.341,57.924-25.1,117.821-42.536,169.6-17.573,52.188-49.067,119-99.305,140.9-19.477,8.492-40.391,9.511-62.153,3.036C1036-87.916,995.532-121.448,956.4-153.874c-9.7-8.04-19.737-16.352-29.549-24.175C891.213-206.462,855.621-230.334,821.063-249c-35.4-19.125-69.976-32.927-102.766-41.023-33.856-8.357-66.16-10.715-96.023-7a200.959,200.959,0,0,0-85.588,31.1c-48.777,31.748-88.873,86.91-127.648,140.257-27.347,37.623-55.623,76.528-86.78,107.036-39.275,38.463-83.552,58.651-128.424,58.652" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path120" d="M186.956,47.307q-2.8,0-5.595-.107c-26.195-1-52.518-9.025-78.237-23.862C75.3,7.286,47.869-16.937,21.587-48.659,14.434-57.293,7.219-66.668.242-75.735-14.553-94.96-29.853-114.84-45.348-128.652c-17.49-15.59-35.038-22.918-50.743-21.193-12.43,1.365-23.178,8.563-31.085,20.81-9.855,15.27-15.776,37.992-21.5,59.965-3.667,14.072-7.457,28.622-12.256,41.155-6.551,17.108-15.485,30.349-26.557,39.36a60.475,60.475,0,0,1-36.825,13.747c-12.539.432-26-2.532-40-8.836S-292.61.524-306.747-11.941c-29.761-26.24-57.452-64.229-80.08-109.863-21.095-42.544-38.273-90.408-54.887-136.7-14.9-41.5-30.3-84.418-48.509-123.492-14.439-30.981-32.8-59.813-51.707-81.185-19.424-21.96-37.82-34.023-51.86-34.023l-.364,0c-10.184.153-17.981,6.531-23.175,18.959l-.355-.105c5.252-12.565,13.165-19.016,23.523-19.171,14.208-.228,32.867,11.916,52.533,34.148,18.923,21.393,37.3,50.251,51.755,81.258,18.216,39.084,33.62,82.008,48.518,123.517,16.611,46.281,33.787,94.137,54.875,136.666,22.609,45.6,50.275,83.553,80,109.764C-292.366.28-278.122,9.78-264.139,16.076c13.944,6.277,27.319,9.229,39.807,8.8a60.058,60.058,0,0,0,36.581-13.656c11.027-8.973,19.929-22.172,26.46-39.229,4.792-12.516,8.581-27.061,12.247-41.125,5.731-22,11.659-44.741,21.54-60.049,7.966-12.341,18.813-19.594,31.366-20.972,15.83-1.745,33.489,5.623,51.066,21.289C-29.556-115.036-14.247-95.144.557-75.907,7.533-66.842,14.746-57.471,21.9-48.841c26.256,31.692,53.656,55.887,81.44,71.917C129,37.88,155.254,45.891,181.377,46.884q2.79.108,5.577.105c44.736,0,88.778-20.472,127.718-59.456,30.889-30.925,58.865-70.359,85.921-108.495,38.391-54.114,78.088-110.068,126.633-142.327a198.227,198.227,0,0,1,85.413-31.671c29.843-3.8,62.156-1.452,96.052,6.988,32.816,8.171,67.447,22.125,102.93,41.475,34.631,18.884,70.324,43.04,106.086,71.794,9.847,7.915,19.913,16.325,29.649,24.459,39.237,32.78,79.81,66.674,117.342,77.946,21.516,6.461,42.148,5.468,61.327-2.956,50.108-22.011,81.2-89.827,98.458-142.84,17.076-52.455,29.44-113.14,41.4-171.826,10.005-49.108,20.352-99.885,33.415-145.646,15.824-55.438,35.193-98.6,57.567-128.284,26.32-34.935,56.853-51.107,90.76-48.061l-.04.316c-33.733-3.029-64.16,13.089-90.413,47.914-22.347,29.655-41.695,72.784-57.509,128.189-13.059,45.749-23.4,96.522-33.408,145.625-11.959,58.694-24.325,119.388-41.407,171.857-17.277,53.075-48.417,120.973-98.648,143.037-19.272,8.464-40.011,9.464-61.624,2.973-37.612-11.294-78.216-45.215-117.481-78.02-9.736-8.132-19.8-16.543-29.644-24.455-35.747-28.741-71.421-52.884-106.032-71.757-35.453-19.333-70.052-33.275-102.833-41.437-33.844-8.427-66.107-10.775-95.888-6.979a197.835,197.835,0,0,0-85.238,31.608c-48.49,32.221-88.169,88.152-126.542,142.239C373.854-82.652,345.87-43.207,314.959-12.261c-39.013,39.056-83.154,59.567-128,59.568" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path122" d="M180.082,54.6q-2.512,0-5.024-.087c-26.212-.912-52.6-8.977-78.424-23.973C68.692,14.31,41.091-10.232,14.6-42.413,7.4-51.148.147-60.635-6.872-69.807c-14.887-19.457-30.282-39.577-45.834-53.552-17.552-15.77-35.112-23.166-50.775-21.408-12.4,1.4-23.085,8.7-30.9,21.116-9.745,15.477-15.516,38.5-21.1,60.767-3.573,14.256-7.269,29-11.98,41.7-6.425,17.31-15.245,30.719-26.219,39.857a59.553,59.553,0,0,1-36.6,14c-12.505.485-25.975-2.492-40-8.853S-298.643,7.833-312.843-4.776c-29.893-26.545-57.791-65.014-80.676-111.247-21.317-43.065-38.757-91.526-55.624-138.391-15.124-42.021-30.761-85.474-49.179-125.029-14.613-31.387-33.132-60.584-52.147-82.214-19.5-22.18-37.908-34.36-51.911-34.36-.149,0-.3,0-.447,0-10.135.191-17.86,6.66-22.959,19.229l-.355-.1c5.155-12.708,13-19.252,23.305-19.444.151,0,.3,0,.453,0,14.125,0,32.643,12.224,52.214,34.487,19.032,21.652,37.569,50.876,52.195,82.288,18.421,39.567,34.063,83.025,49.188,125.053,16.864,46.857,34.3,95.312,55.612,138.364,22.867,46.2,50.739,84.63,80.6,111.149C-298.4,7.591-284.111,17.192-270.106,23.54c13.967,6.332,27.369,9.3,39.807,8.816a59.163,59.163,0,0,0,36.356-13.913c10.929-9.1,19.717-22.468,26.123-39.726,4.707-12.684,8.4-27.417,11.972-41.667,5.585-22.286,11.364-45.333,21.132-60.85,7.877-12.511,18.662-19.869,31.186-21.281,15.8-1.776,33.461,5.659,51.1,21.505,15.575,14,30.98,34.128,45.876,53.6C.461-60.807,7.717-51.324,14.9-42.593c26.469,32.149,54.038,56.667,81.942,72.87,25.766,14.963,52.086,23.008,78.226,23.918C221.5,55.8,267.253,34.96,307.369-6.092c30.644-31.36,58.326-71.334,85.1-109.991C430.455-170.941,469.737-227.665,518-260.4a195.187,195.187,0,0,1,85.065-32.181c29.759-3.888,62.028-1.545,95.921,6.967,32.8,8.239,67.457,22.331,103,41.888,34.683,19.088,70.457,43.512,106.334,72.594,9.876,8.007,19.976,16.515,29.747,24.743,39.365,33.156,80.07,67.44,117.6,78.812,21.371,6.479,41.827,5.5,60.8-2.892,50.1-22.16,80.833-91.066,97.794-144.97,16.724-53.153,28.693-114.638,40.269-174.1,9.687-49.749,19.7-101.19,32.457-147.554,15.456-56.172,34.523-99.912,56.678-130.005,26.053-35.417,56.453-51.829,90.293-48.787l-.04.315c-33.707-3.021-63.96,13.336-89.946,48.64-22.121,30.064-41.172,73.771-56.618,129.908-12.753,46.355-22.768,97.792-32.452,147.536-11.577,59.467-23.549,120.958-40.277,174.126-16.981,53.965-47.764,122.957-97.984,145.172-19.075,8.437-39.633,9.416-61.1,2.91-37.612-11.4-78.348-45.707-117.742-78.888-9.768-8.225-19.868-16.732-29.741-24.737-35.859-29.071-71.616-53.483-106.278-72.558-35.508-19.54-70.128-33.621-102.9-41.849-33.835-8.5-66.052-10.836-95.754-6.957a194.773,194.773,0,0,0-84.888,32.116c-48.205,32.693-87.47,89.392-125.441,144.224C366.012-77.256,338.322-37.271,307.659-5.891,268.914,33.758,224.906,54.6,180.082,54.6" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path124" d="M173.214,61.886c-1.492,0-2.98-.024-4.473-.069-26.228-.825-52.673-8.927-78.6-24.08-28.06-16.4-55.827-41.265-82.534-73.9C.373-45.005-6.929-54.605-13.993-63.888c-14.977-19.688-30.464-40.044-46.071-54.177-17.615-15.948-35.187-23.418-50.806-21.622-12.37,1.428-22.994,8.834-30.724,21.423-9.632,15.684-15.253,39.008-20.689,61.563-3.48,14.443-7.079,29.376-11.705,42.242C-180.288,3.052-189,16.629-199.873,25.9a58.68,58.68,0,0,1-36.381,14.256c-12.512.534-25.955-2.456-40-8.869s-28.423-16.142-42.685-28.9c-30.025-26.85-58.127-65.8-81.268-112.626-21.539-43.589-39.241-92.645-56.361-140.086-15.351-42.54-31.224-86.529-49.848-126.569-14.787-31.791-33.461-61.353-52.584-83.241-19.573-22.4-38-34.7-51.963-34.7-.177,0-.351,0-.528.007-10.088.227-17.739,6.787-22.743,19.5l-.359-.1c5.061-12.853,12.829-19.488,23.092-19.717.177,0,.356-.005.535-.005,14.089,0,32.62,12.34,52.268,34.827,19.141,21.908,37.833,51.5,52.632,83.312,18.628,40.052,34.505,84.046,49.857,126.592,17.117,47.435,34.817,96.482,56.349,140.058,23.123,46.795,51.2,85.708,81.193,112.53C-304.435,14.9-290.1,24.6-276.079,31c13.988,6.387,27.375,9.368,39.805,8.83A58.275,58.275,0,0,0-200.14,25.673c10.833-9.23,19.511-22.763,25.791-40.226,4.621-12.851,8.219-27.776,11.7-42.211,5.441-22.579,11.068-45.924,20.725-61.649,7.788-12.681,18.509-20.146,31-21.588,15.751-1.813,33.432,5.693,51.132,21.72,15.632,14.153,31.128,34.524,46.114,54.221C-6.615-54.779.687-45.181,7.915-36.347,34.595-3.74,62.332,21.1,90.353,37.474c25.869,15.119,52.248,23.2,78.4,24.025,46.231,1.444,91.633-19.716,131.31-61.217,30.4-31.8,57.789-72.312,84.277-111.495,37.587-55.6,76.453-113.09,124.424-146.293a192.259,192.259,0,0,1,84.717-32.689c29.679-3.968,61.909-1.635,95.788,6.945,32.8,8.3,67.47,22.536,103.062,42.3,34.736,19.291,70.594,43.984,106.58,73.4,9.907,8.1,20.04,16.7,29.839,25.021,39.5,33.533,80.339,68.211,117.872,79.683,21.224,6.486,41.505,5.537,60.287-2.827,50.09-22.306,80.462-92.308,97.121-147.1,16.372-53.849,27.947-116.13,39.141-176.36,9.365-50.395,19.051-102.5,31.5-149.474,15.088-56.905,33.855-101.224,55.78-131.725,25.809-35.9,56.009-52.565,89.849-49.513l-.04.316c-33.64-3.025-63.76,13.577-89.488,49.361-21.9,30.473-40.656,74.758-55.733,131.63-12.45,46.96-22.134,99.065-31.5,149.454-11.2,60.236-22.773,122.525-39.148,176.389-16.679,54.859-47.1,124.945-97.31,147.3-18.876,8.408-39.263,9.366-60.591,2.844-37.613-11.5-78.484-46.2-118.01-79.756-9.8-8.32-19.929-16.923-29.833-25.017-35.969-29.4-71.809-54.08-106.525-73.358-35.561-19.748-70.2-33.968-102.964-42.264-33.825-8.567-66-10.9-95.621-6.935A191.808,191.808,0,0,0,509-257.258c-47.917,33.165-86.765,90.629-124.336,146.2C358.172-71.861,330.775-31.335,300.358.48c-38.475,40.244-82.346,61.406-127.144,61.407" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path126" d="M166.349,69.177q-1.97,0-3.943-.055c-26.239-.74-52.741-8.879-78.77-24.192C55.462,28.359,27.53,3.174.616-29.919-6.654-38.86-14-48.569-21.1-57.959c-15.07-19.92-30.654-40.517-46.321-54.813C-85.1-128.9-102.659-136.445-118.258-134.61c-12.34,1.458-22.9,8.971-30.545,21.728-9.521,15.895-14.993,39.52-20.285,62.367-3.387,14.626-6.889,29.752-11.431,42.783-6.173,17.716-14.769,31.462-25.552,40.857a57.834,57.834,0,0,1-36.167,14.509c-12.476.567-25.931-2.42-40-8.891s-28.484-16.3-42.807-29.2c-30.155-27.156-58.46-66.577-81.856-114-21.761-44.114-39.727-93.768-57.1-141.789-15.577-43.056-31.685-87.578-50.515-128.1-14.961-32.193-33.791-62.12-53.021-84.265-19.651-22.627-38.089-35.037-52.019-35.037-.2,0-.4,0-.6.008-10.043.261-17.624,6.912-22.536,19.769l-.357-.1c4.965-13,12.664-19.724,22.881-19.989.2-.005.407-.008.611-.008,14.055,0,32.6,12.456,52.324,35.167,19.249,22.167,38.1,52.119,53.069,84.338,18.833,40.532,34.944,85.06,50.523,128.122,17.372,48.013,35.335,97.66,57.089,141.759C-383.176-57.188-354.9-17.8-324.773,9.329c14.3,12.873,28.667,22.678,42.713,29.135,14.009,6.443,27.408,9.42,39.8,8.852A57.438,57.438,0,0,0-206.34,32.9c10.74-9.358,19.305-23.059,25.463-40.725,4.535-13.019,8.036-28.136,11.421-42.756,5.3-22.868,10.772-46.513,20.317-62.448,7.7-12.853,18.36-20.426,30.829-21.9,15.708-1.855,33.4,5.731,51.162,21.937,15.69,14.315,31.282,34.925,46.361,54.856C-13.683-48.742-6.34-39.033.927-30.1,27.816,2.965,55.715,28.12,83.851,44.672c25.968,15.276,52.4,23.4,78.567,24.133,46.021,1.312,91.094-20.195,130.342-62.149,30.153-32.231,57.252-73.289,83.457-112.993,37.183-56.341,75.633-114.6,123.318-148.276a189.4,189.4,0,0,1,84.366-33.2c29.6-4.055,61.788-1.727,95.658,6.923,32.784,8.371,67.483,22.744,103.129,42.717,34.788,19.493,70.728,44.456,106.824,74.2,9.937,8.187,20.1,16.888,29.935,25.3,39.627,33.911,80.6,68.976,118.136,80.552,21.076,6.5,41.189,5.571,59.775-2.76,50.083-22.448,80.09-93.546,96.446-149.238,16.018-54.545,27.2-117.625,38.01-178.626,9.047-51.037,18.4-103.814,30.549-151.389,14.717-57.637,33.184-102.534,54.887-133.445,25.545-36.379,55.612-53.285,89.385-50.239l-.04.315c-33.613-3.023-63.56,13.823-89.021,50.087-21.681,30.881-40.135,75.745-54.843,133.349-12.145,47.565-21.5,100.336-30.545,151.372-10.813,61.007-21.995,124.093-38.019,178.653C1177.8-154.29,1147.741-83.105,1097.536-60.6c-18.684,8.373-38.9,9.309-60.083,2.776-37.612-11.6-78.617-46.692-118.273-80.626-9.829-8.412-19.995-17.112-29.928-25.3-36.08-29.725-72-54.676-106.772-74.16-35.615-19.955-70.279-34.315-103.029-42.677-33.816-8.635-65.938-10.96-95.489-6.912a188.971,188.971,0,0,0-84.185,33.129c-47.632,33.637-86.065,91.869-123.232,148.185C350.332-66.468,323.227-25.4,293.057,6.853,254.85,47.692,211.122,69.177,166.349,69.177" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path128" d="M159.492,76.469c-1.145,0-2.287-.015-3.433-.044-26.247-.654-52.8-8.83-78.932-24.3-28.284-16.748-56.378-42.25-83.5-75.8-7.309-9.043-14.7-18.864-21.846-28.361-15.161-20.153-30.838-40.989-46.562-55.442-17.734-16.3-35.312-23.935-50.861-22.054-12.313,1.485-22.815,9.1-30.369,22.031-9.411,16.1-14.732,40.028-19.877,63.167-3.295,14.812-6.7,30.129-11.156,43.328-6.049,17.922-14.536,31.837-25.225,41.36a57.029,57.029,0,0,1-35.959,14.76c-12.459.6-25.905-2.389-40-8.915s-28.545-16.453-42.928-29.5c-30.281-27.46-58.788-67.357-82.439-115.377-21.985-44.639-40.212-94.892-57.839-143.488-15.8-43.575-32.149-88.632-51.184-129.636-15.133-32.6-34.117-62.887-53.456-85.288-19.727-22.852-38.181-35.381-52.075-35.381-.225,0-.449,0-.672.009-10,.3-17.511,7.04-22.329,20.043l-.36-.1c4.871-13.144,12.5-19.96,22.676-20.263,14.084-.413,32.941,12.191,53.064,35.5,19.357,22.423,38.357,52.739,53.5,85.358,19.04,41.016,35.387,86.078,51.193,129.658,17.624,48.591,35.849,98.834,57.827,143.458,23.633,47.987,52.115,87.85,82.365,115.285,14.357,13.019,28.768,22.921,42.835,29.433,14.031,6.5,27.411,9.491,39.8,8.876a56.624,56.624,0,0,0,35.708-14.661c10.645-9.485,19.1-23.356,25.135-41.228,4.451-13.185,7.857-28.494,11.149-43.3,5.151-23.158,10.476-47.105,19.909-63.248,7.612-13.025,18.212-20.7,30.653-22.205,15.668-1.9,33.369,5.769,51.191,22.152C-58.758-93.217-43.071-72.368-27.9-52.2c7.145,9.495,14.533,19.313,21.839,28.352C21.033,9.667,49.1,35.14,77.342,51.867,103.409,67.3,129.9,75.457,156.069,76.108c1.141.031,2.283.043,3.421.043,44.624,0,88.108-21.768,125.966-63.121,29.907-32.664,56.712-74.264,82.636-114.493,36.781-57.083,74.816-116.109,122.213-150.257a186.617,186.617,0,0,1,84.018-33.707c29.528-4.14,61.665-1.82,95.525,6.9,32.776,8.439,67.5,22.951,103.2,43.132,34.84,19.7,70.865,44.928,107.072,75,9.968,8.277,20.168,17.076,30.032,25.583,39.755,34.287,80.862,69.74,118.4,81.417,20.937,6.513,40.877,5.607,59.272-2.689,50.072-22.584,79.712-94.784,95.761-151.377,15.664-55.237,26.449-119.11,36.88-180.878,8.728-51.687,17.752-105.133,29.6-153.316,14.348-58.369,32.515-103.846,53.995-135.165,25.28-36.861,55.2-54.008,88.92-50.967l-.04.316c-33.56-3.027-63.356,14.064-88.555,50.809-21.46,31.289-39.612,76.733-53.952,135.07-11.843,48.173-20.867,101.614-29.593,153.3-10.432,61.776-21.219,125.656-36.887,180.909-16.067,56.655-45.755,128.942-95.949,151.582-18.493,8.341-38.539,9.252-59.58,2.706C990.8-64.8,949.663-100.283,909.88-134.594c-9.863-8.507-20.063-17.3-30.028-25.579-36.191-30.056-72.2-55.276-107.018-74.961C737.166-255.3,702.481-269.8,669.74-278.226c-33.807-8.7-65.889-11.021-95.354-6.889a186.209,186.209,0,0,0-83.834,33.636c-47.345,34.111-85.364,93.11-122.128,150.168-25.931,40.24-52.742,81.85-82.668,114.536-37.932,41.431-81.521,63.243-126.264,63.245" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path130" d="M152.638,83.758c-.981,0-1.96-.011-2.943-.032-26.252-.569-52.86-8.783-79.086-24.41C42.217,42.4,13.964,16.576-13.364-17.426-20.715-26.576-28.15-36.511-35.342-46.12c-15.25-20.379-31.02-41.452-46.8-56.065-17.794-16.478-35.4-24.172-50.886-22.269-12.288,1.516-22.728,9.24-30.193,22.338C-172.52-85.8-177.69-61.58-182.69-38.153c-3.2,15-6.512,30.509-10.883,43.875-5.925,18.128-14.3,32.212-24.9,41.863a56.237,56.237,0,0,1-35.755,15.008c-12.412.652-25.88-2.355-39.993-8.937s-28.605-16.61-43.047-29.8c-30.408-27.768-59.115-68.14-83.018-116.752-22.207-45.163-40.7-96.011-58.576-145.185-16.033-44.091-32.611-89.684-51.853-131.17-15.305-33-34.444-63.652-53.888-86.312-19.805-23.077-38.277-35.723-52.135-35.723-.249,0-.495,0-.74.012-9.956.329-17.4,7.163-22.127,20.311l-.36-.092c4.777-13.291,12.339-20.2,22.472-20.535.248-.009.5-.013.751-.013,13.985,0,32.565,12.692,52.443,35.855,19.464,22.68,38.617,53.359,53.935,86.382,19.247,41.5,35.827,87.094,51.861,131.193C-460.626-189-442.139-138.162-419.938-93.016c23.887,48.58,52.568,88.92,82.946,116.657,14.416,13.164,28.867,23.168,42.952,29.737,14.049,6.552,27.445,9.548,39.789,8.9a55.84,55.84,0,0,0,35.5-14.909c10.555-9.612,18.9-23.652,24.813-41.731,4.365-13.353,7.675-28.856,10.876-43.848,5-23.447,10.179-47.693,19.5-64.044,7.523-13.2,18.063-20.984,30.478-22.514,15.634-1.929,33.338,5.808,51.22,22.368,15.8,14.635,31.578,35.719,46.837,56.109,7.189,9.607,14.623,19.54,21.971,28.684,27.3,33.97,55.524,59.765,83.881,76.664,26.161,15.589,52.7,23.782,78.877,24.352q1.468.03,2.932.031c44.595,0,87.932-22.092,125.517-64.037,29.66-33.1,56.172-75.239,81.81-115.99,36.38-57.828,74-117.621,121.11-152.244a183.955,183.955,0,0,1,83.67-34.215c29.448-4.225,61.542-1.911,95.393,6.877,32.767,8.505,67.509,23.156,103.262,43.545,34.892,19.9,71,45.4,107.317,75.8,10,8.368,20.232,17.263,30.129,25.863,39.884,34.664,81.127,70.508,118.661,82.286,20.789,6.524,40.565,5.644,58.773-2.62,27.633-12.54,66.557-49.35,95.07-153.512,15.312-55.939,25.7-120.609,35.75-183.149,8.408-52.331,17.1-106.442,28.641-155.229,13.981-59.1,31.848-105.158,53.1-136.886,25.02-37.343,54.8-54.733,88.469-51.691l-.04.315c-33.533-3.027-63.165,14.311-88.1,51.532-21.236,31.7-39.089,77.721-53.061,136.793-11.536,48.777-20.231,102.884-28.637,155.209-10.049,62.548-20.443,127.224-35.757,183.176-15.756,57.556-45.072,130.948-95.258,153.721-18.308,8.307-38.187,9.195-59.085,2.639-37.612-11.8-78.884-47.673-118.8-82.362-9.9-8.6-20.128-17.493-30.124-25.859-36.3-30.385-72.391-55.875-107.264-75.764-35.723-20.371-70.432-35.007-103.162-43.5-33.795-8.775-65.833-11.084-95.221-6.869a183.538,183.538,0,0,0-83.484,34.143c-47.06,34.581-84.661,94.35-121.026,152.152C334.651-55.676,308.133-13.525,278.455,19.6c-37.657,42.025-81.1,64.16-125.817,64.162" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path132" d="M145.788,91.049c-.824,0-1.644-.008-2.469-.023-26.256-.486-52.912-8.736-79.23-24.52-28.5-17.093-56.909-43.231-84.44-77.688-7.393-9.249-14.872-19.3-22.106-29.016C-57.8-60.807-73.663-82.119-89.5-96.892c-17.85-16.655-35.453-24.421-50.911-22.484-12.26,1.543-22.643,9.373-30.023,22.644-9.187,16.521-14.208,41.045-19.063,64.763C-192.6-16.785-195.817-1.083-200.1,12.45c-5.8,18.335-14.073,32.59-24.58,42.368a55.484,55.484,0,0,1-35.552,15.257c-12.412.682-25.855-2.328-39.988-8.967s-28.661-16.769-43.163-30.1c-30.532-28.071-59.439-68.918-83.594-118.12-22.428-45.686-41.18-97.133-59.315-146.883-16.26-44.609-33.072-90.738-52.52-132.7-15.477-33.4-34.769-64.416-54.32-87.33-20.271-23.76-39.108-36.58-53-36.055-9.915.361-17.292,7.285-21.927,20.58l-.36-.089c4.685-13.439,12.177-20.439,22.271-20.808.269-.011.541-.015.815-.015,13.951,0,32.551,12.809,52.505,36.2,19.569,22.937,38.877,53.976,54.367,87.4,19.453,41.979,36.267,88.113,52.529,132.729,18.132,49.743,36.88,101.181,59.3,146.853,24.14,49.171,53.023,89.984,83.525,118.029,14.473,13.305,28.964,23.412,43.068,30.037,14.071,6.608,27.444,9.6,39.781,8.925a55.085,55.085,0,0,0,35.3-15.152c10.465-9.742,18.708-23.952,24.5-42.24,4.28-13.517,7.492-29.212,10.6-44.389,4.86-23.737,9.884-48.284,19.093-64.842,7.436-13.373,17.916-21.266,30.308-22.826,15.58-1.952,33.305,5.848,51.244,22.586C-73.362-82.31-57.491-60.988-42.141-40.365c7.232,9.715,14.711,19.761,22.1,29.006C7.465,23.067,35.843,49.177,64.306,66.248c26.256,15.747,52.841,23.978,79.02,24.461q1.23.024,2.461.022c44.563,0,87.753-22.417,125.064-64.953,29.413-33.535,55.632-76.216,80.988-117.492,35.977-58.569,73.183-119.131,120.006-154.225a181.354,181.354,0,0,1,83.32-34.724c29.373-4.307,61.422-2,95.262,6.856,32.757,8.572,67.521,23.363,103.328,43.96,34.945,20.1,71.136,45.875,107.565,76.6,10.028,8.459,20.295,17.448,30.224,26.144,40.013,35.04,81.389,71.274,118.924,83.153,20.652,6.535,40.26,5.679,58.287-2.548,27.625-12.611,66.422-49.85,94.369-155.652,14.96-56.636,24.957-122.1,34.624-185.418,8.089-52.972,16.452-107.749,27.687-157.138,13.611-59.837,31.177-106.47,52.21-138.606,24.756-37.825,54.376-55.457,88.005-52.419l-.04.316c-33.488-3.032-62.961,14.555-87.636,52.256-21.015,32.107-38.567,78.708-52.171,138.512-11.232,49.381-19.595,104.153-27.683,157.12-9.668,63.323-19.667,128.8-34.629,185.446-15.443,58.461-44.383,132.958-94.558,155.862-18.124,8.272-37.84,9.135-58.6,2.567-37.615-11.905-79.021-48.165-119.064-83.23-9.927-8.693-20.192-17.682-30.219-26.14-36.412-30.713-72.584-56.472-107.51-76.562-35.775-20.579-70.506-35.356-103.226-43.92-33.784-8.841-65.775-11.145-95.086-6.845A180.959,180.959,0,0,0,472.095-245.7c-46.773,35.055-83.96,95.592-119.921,154.133C326.811-50.28,300.585-7.588,271.153,25.968c-37.381,42.617-80.681,65.078-125.365,65.081" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path134" d="M138.944,98.34c-.673,0-1.344-.006-2.016-.016-26.256-.4-52.959-8.689-79.368-24.631C28.956,56.426.391,29.973-27.344-4.935-34.775-14.288-42.3-24.448-49.576-34.276-65.008-55.116-80.965-76.665-96.857-91.6c-17.91-16.83-35.53-24.673-50.932-22.7-12.236,1.571-22.557,9.507-29.851,22.951-9.076,16.729-13.947,41.553-18.656,65.56-3.016,15.372-6.135,31.264-10.332,44.965-5.684,18.544-13.847,32.969-24.263,42.876a54.765,54.765,0,0,1-35.355,15.5c-12.388.728-25.831-2.3-39.981-8.994s-28.719-16.926-43.276-30.4C-380.156,9.783-409.26-31.535-433.67-81.328c-22.651-46.209-41.663-98.252-60.051-148.578-16.487-45.128-33.535-91.793-53.191-134.245-15.651-33.8-35.093-65.177-54.751-88.35-19.96-23.529-38.469-36.415-52.26-36.415-.291,0-.577.005-.863.017-9.876.393-17.185,7.408-21.729,20.851l-.363-.088c4.595-13.587,12.021-20.679,22.075-21.08,14.033-.551,32.992,12.416,53.447,36.531,19.673,23.195,39.133,54.6,54.794,88.418C-526.9-321.8-509.85-275.134-493.36-230c18.384,50.32,37.395,102.356,60.039,148.549,24.392,49.76,53.472,91.045,84.1,119.394,14.531,13.452,29.06,23.66,43.183,30.342,14.087,6.664,27.464,9.68,39.769,8.955a54.362,54.362,0,0,0,35.1-15.4c10.377-9.868,18.513-24.249,24.18-42.744,4.195-13.686,7.312-29.573,10.325-44.938,4.715-24.025,9.589-48.872,18.685-65.64,7.348-13.545,17.769-21.545,30.136-23.132,15.558-2,33.272,5.889,51.268,22.8C-80.664-76.857-64.7-55.3-49.257-34.443c7.276,9.824,14.8,19.983,22.226,29.332C.678,29.765,29.212,56.192,57.778,73.434c26.346,15.9,52.979,24.171,79.156,24.573.668.011,1.34.016,2.009.016,44.529,0,87.57-22.741,124.6-65.872,29.168-33.969,55.093-77.19,80.166-118.99,35.576-59.311,72.362-120.641,118.9-156.208a178.857,178.857,0,0,1,82.97-35.233c29.291-4.392,61.3-2.092,95.13,6.833,32.748,8.64,67.533,23.569,103.394,44.375,35,20.3,71.272,46.345,107.81,77.4,10.06,8.551,20.361,17.639,30.321,26.425,40.141,35.417,81.652,72.04,119.186,84.02,20.515,6.548,39.96,5.713,57.8-2.475,27.621-12.68,66.292-50.347,93.666-157.792,14.607-57.332,24.208-123.6,33.495-187.678,7.769-53.62,15.8-109.064,26.733-159.061,13.241-60.568,30.507-107.78,51.317-140.325C1288.937-724.861,1318.4-742.74,1352-739.7l-.04.315c-33.432-3.027-62.768,14.8-87.184,52.979-20.791,32.517-38.044,79.7-51.279,140.234-10.928,49.987-18.961,105.425-26.729,159.04-9.287,64.091-18.889,130.362-33.5,187.708-15.127,59.369-43.688,134.974-93.854,158-17.943,8.236-37.5,9.073-58.115,2.495-37.615-12.007-79.153-48.655-119.325-84.1-9.96-8.787-20.259-17.875-30.316-26.422-36.523-31.041-72.777-57.071-107.756-77.362-35.829-20.787-70.584-35.7-103.294-44.333-33.772-8.911-65.716-11.207-94.954-6.825a178.467,178.467,0,0,0-82.783,35.159C416.382-207.285,379.61-145.981,344.05-86.7c-25.08,41.81-51.012,85.044-80.2,119.034-37.105,43.213-80.254,66-124.908,66" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
<path id="path136" d="M132.1,105.631c-.527,0-1.051,0-1.577-.009-26.253-.321-53-8.646-79.5-24.745C22.321,63.44-6.4,36.671-34.333,1.312-41.805-8.144-49.376-18.42-56.7-28.357-72.218-49.425-88.269-71.212-104.216-86.3c-17.964-17-35.578-24.924-50.953-22.916-12.211,1.6-22.473,9.64-29.681,23.257C-193.814-69.025-198.534-43.9-203.1-19.6c-2.923,15.555-5.945,31.638-10.056,45.505-5.563,18.754-13.62,33.35-23.949,43.385a54.046,54.046,0,0,1-35.16,15.745c-12.348.771-25.8-2.273-39.971-9.026S-341.01,58.922-355.626,45.3C-386.4,16.624-415.7-25.166-440.362-75.547c-22.873-46.732-42.148-99.369-60.787-150.275-16.716-45.647-34-92.846-53.861-135.78-15.82-34.2-35.417-65.939-55.177-89.368-20.04-23.759-38.569-36.764-52.328-36.764-.308,0-.613.008-.919.02-9.836.425-17.081,7.531-21.536,21.121l-.363-.085c4.5-13.736,11.864-20.92,21.88-21.351,13.979-.612,33.005,12.492,53.57,36.876,19.78,23.449,39.391,55.211,55.223,89.434,19.867,42.945,37.152,90.15,53.869,135.8,18.637,50.9,37.909,103.529,60.776,150.247,24.643,50.348,53.92,92.106,84.668,120.759,14.588,13.6,29.155,23.905,43.295,30.644,14.105,6.722,27.492,9.742,39.757,8.985a53.654,53.654,0,0,0,34.905-15.637c10.291-10,18.32-24.549,23.868-43.255,4.108-13.854,7.129-29.93,10.049-45.477,4.569-24.32,9.295-49.467,18.279-66.443,7.261-13.721,17.624-21.827,29.967-23.443,15.505-2.027,33.236,5.931,51.292,23.018C-87.966-71.4-71.907-49.605-56.377-28.525-49.058-18.59-41.49-8.317-34.02,1.137-6.11,36.464,22.578,63.2,51.245,80.621c26.436,16.06,53.111,24.364,79.285,24.684.522.005,1.05.009,1.572.009,44.5,0,87.388-23.064,124.143-66.786C285.166,4.122,310.8-39.641,335.589-81.965c35.175-60.053,71.547-122.15,117.8-158.189A176.446,176.446,0,0,1,536.007-275.9c29.22-4.472,61.18-2.184,95,6.811,32.737,8.707,67.547,23.777,103.461,44.789,35.05,20.507,71.405,46.82,108.056,78.2,10.091,8.64,20.424,17.824,30.419,26.707,40.271,35.793,81.913,72.8,119.449,84.886,20.373,6.557,39.661,5.751,57.325-2.4,27.615-12.744,66.157-50.839,92.956-159.932,14.253-58.028,23.461-125.089,32.364-189.945,7.449-54.263,15.153-110.373,25.78-160.974,12.872-61.3,29.839-109.093,50.425-142.046,24.232-38.788,53.529-56.916,87.089-53.871l-.04.315c-33.395-3.027-62.567,15.044-86.716,53.7-20.571,32.924-37.523,80.684-50.389,141.954-10.624,50.592-18.327,106.7-25.775,160.954-8.905,64.861-18.113,131.932-32.372,189.973-14.807,60.281-42.985,137-93.142,160.146-17.761,8.2-37.155,9.013-57.639,2.42C954.642-46.31,912.968-83.35,872.669-119.169c-9.993-8.88-20.324-18.064-30.412-26.7-36.635-31.372-72.972-57.669-108-78.165-35.883-20.995-70.659-36.051-103.358-44.748-33.763-8.98-65.664-11.268-94.821-6.8a176.021,176.021,0,0,0-82.433,35.663c-46.2,36-82.556,98.069-117.714,158.1C311.131-39.49,285.491,4.284,256.551,38.71c-36.827,43.808-79.828,66.92-124.45,66.921" transform="translate(1471.332 2090.331)" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 156 KiB |
@@ -0,0 +1,72 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="840" height="726.849" viewBox="0 0 840 726.849">
|
||||
<defs>
|
||||
<linearGradient id="linear-gradient" x1="0.5" y1="1" x2="0.5" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="0.251"/>
|
||||
<stop offset="0.54" stop-color="gray" stop-opacity="0.122"/>
|
||||
<stop offset="1" stop-color="gray" stop-opacity="0.102"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-2" x1="-1.386" y1="7.85" x2="-1.386" y2="6.809" xlink:href="#linear-gradient"/>
|
||||
</defs>
|
||||
<g id="undraw_Taken_if77" transform="translate(0 -0.001)">
|
||||
<g id="Group_1" data-name="Group 1" opacity="0.8">
|
||||
<ellipse id="Ellipse_1" data-name="Ellipse 1" cx="146.46" cy="113.46" rx="146.46" ry="113.46" transform="translate(285.54 18.85)" fill="url(#linear-gradient)"/>
|
||||
</g>
|
||||
<path id="Ellipse_2" data-name="Ellipse 2" d="M143.21,0C222.3,0,286.42,49.67,286.42,110.94S222.3,221.88,143.21,221.88,0,172.21,0,110.94,64.117,0,143.21,0Z" transform="translate(288.79 21.37)" fill="#475569"/>
|
||||
<path id="Path_1" data-name="Path 1" d="M491.94,231.21c0-61.27,64.11-110.94,143.2-110.94A175.54,175.54,0,0,1,706.5,135c-25.17-17-58.1-27.33-94.14-27.33-79.09,0-143.21,49.67-143.21,110.94,0,41.14,28.91,77.05,71.86,96.21C510.94,294.48,491.94,264.57,491.94,231.21Z" transform="translate(-180 -86.57)" fill="#334155" opacity="0.54"/>
|
||||
<path id="Path_2" data-name="Path 2" d="M432,176.9,590.76,451.88,749.52,726.85H114.48L273.24,451.88Z" fill="#f1f5f9" opacity="0.2"/>
|
||||
<g id="Group_2" data-name="Group 2" opacity="0.3">
|
||||
<path id="Path_3" data-name="Path 3" d="M649.67,652.79,662,616.2a62.66,62.66,0,0,0-23.2-70.89l.1-.06a61.48,61.48,0,0,0-15.79-8h0l-.17-.06-.19-.06h0a61.55,61.55,0,0,0-16.9-3.18,59.272,59.272,0,0,0-6.11,0,62.316,62.316,0,0,0-10.49,1.45c-1,.22-2,.47-2.91.74s-1.93.56-2.88.87c-1.9.63-3.77,1.34-5.6,2.15-.92.4-1.83.82-2.72,1.27a61.46,61.46,0,0,0-7.75,4.56c-.83.57-1.64,1.16-2.44,1.76a62,62,0,0,0-21.24,29.6L524.33,634a61.861,61.861,0,0,0-2.68,28.12c.2,1.45.45,2.89.74,4.32s.65,2.84,1,4.24c.27.93.55,1.86.86,2.78.46,1.37,1,2.74,1.51,4.08.37.89.76,1.78,1.17,2.66.81,1.75,1.71,3.46,2.68,5.13a54.1,54.1,0,0,0,3.16,4.88c.84,1.18,1.73,2.34,2.65,3.46a52.246,52.246,0,0,0,3.92,4.33,61.809,61.809,0,0,0,21,13.89h0l.34.14a21.647,21.647,0,0,1,1.4-2.17c3-4.11,8.22-7,13.19-5.92.36.08.72.19,1.08.3,2.52.89,5,2.48,7.43,3.26a6.66,6.66,0,0,0,5.61-.07c4.86-2.59,3.06-10.76,7.23-14.34a6.5,6.5,0,0,1,.61-.46,1.9,1.9,0,0,1-.16-.23c3.22-2,7.68-.67,11.39.62,4,1.41,9.22,2.36,12-.91,1.88-2.24,1.74-5.65,3.53-8,2.08-2.7,6-3,9.39-2.52l.17.05c6.5,2.68,13.6-1.77,13.1-8.78a54.765,54.765,0,0,1,3.02-20.07Z" transform="translate(-180 -86.57)" fill="#f1f5f9"/>
|
||||
</g>
|
||||
<path id="Path_4" data-name="Path 4" d="M563.21,706.78c2.92-4,7.93-6.8,12.73-5.71s9.35,5.66,13.62,3.37c5.84-3.12,1.7-14.59,11.18-15.44a12.441,12.441,0,0,1,5.77,1c4,1.63,10.26,3.47,13.34-.2,1.81-2.16,1.68-5.45,3.41-7.69,2-2.6,5.81-2.93,9.06-2.43l.16.05c6.27,2.59,13.13-1.71,12.64-8.47-.63-9,2.23-17.48,2.85-19.32l11.88-35.31A60.38,60.38,0,0,0,622,540.34h0a60.38,60.38,0,0,0-76.27,37.86L527,633.73a60.39,60.39,0,0,0,34.82,75.15,21.445,21.445,0,0,1,1.39-2.1Z" transform="translate(-180 -86.57)" fill="#fff"/>
|
||||
<circle id="Ellipse_3" data-name="Ellipse 3" cx="6.51" cy="6.51" r="6.51" transform="translate(398.84 479.57)" fill="#475569" opacity="0.2"/>
|
||||
<circle id="Ellipse_4" data-name="Ellipse 4" cx="6.51" cy="6.51" r="6.51" transform="translate(435.86 492.02)" fill="#475569" opacity="0.2"/>
|
||||
<ellipse id="Ellipse_5" data-name="Ellipse 5" cx="9.76" cy="6.51" rx="9.76" ry="6.51" transform="matrix(0.319, -0.948, 0.948, 0.319, 406.3, 524.221)" fill="#475569"/>
|
||||
<circle id="Ellipse_6" data-name="Ellipse 6" cx="9.76" cy="9.76" r="9.76" transform="translate(542.77 477.76)" fill="#fff"/>
|
||||
<circle id="Ellipse_7" data-name="Ellipse 7" cx="4.88" cy="4.88" r="4.88" transform="translate(578.57 467.29)" fill="#fff"/>
|
||||
<ellipse id="Ellipse_19" data-name="Ellipse 19" cx="34" cy="7" rx="34" ry="7" transform="translate(423 44.43)" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_20" data-name="Ellipse 20" cx="34" cy="7" rx="34" ry="7" transform="translate(358 74.43)" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_21" data-name="Ellipse 21" cx="34" cy="7" rx="34" ry="7" transform="translate(483 87.43)" opacity="0.05"/>
|
||||
<g id="Group_4" data-name="Group 4" opacity="0.5">
|
||||
<g id="Group_3" data-name="Group 3" opacity="0.3">
|
||||
<path id="Path_5" data-name="Path 5" d="M662.67,259.79,675,223.2a62.66,62.66,0,0,0-23.2-70.89l.1-.06a61.477,61.477,0,0,0-15.79-8h0l-.17-.06-.19-.06h0a61.55,61.55,0,0,0-16.9-3.18,59.264,59.264,0,0,0-6.11,0,62.32,62.32,0,0,0-10.49,1.45c-1,.22-2,.47-2.91.74s-1.93.56-2.88.87c-1.9.63-3.77,1.34-5.6,2.15-.92.4-1.83.82-2.72,1.27a61.467,61.467,0,0,0-7.75,4.56c-.83.57-1.64,1.16-2.44,1.76a62,62,0,0,0-21.24,29.6L537.33,241a61.858,61.858,0,0,0-2.68,28.12c.2,1.45.45,2.89.74,4.32s.65,2.84,1,4.24c.27.93.55,1.86.86,2.78.46,1.37,1,2.74,1.51,4.08.37.89.76,1.78,1.17,2.66.81,1.75,1.71,3.46,2.68,5.13a54.078,54.078,0,0,0,3.16,4.88c.84,1.18,1.73,2.34,2.65,3.46,1.24,1.5,2.54,2.95,3.92,4.33a61.81,61.81,0,0,0,21,13.89h0l.34.14a21.648,21.648,0,0,1,1.4-2.17c3-4.11,8.22-7,13.19-5.92.36.08.72.19,1.08.3,2.52.89,5,2.48,7.43,3.26a6.66,6.66,0,0,0,5.61-.07c4.86-2.59,3.06-10.76,7.23-14.34a6.509,6.509,0,0,1,.61-.46,1.887,1.887,0,0,1-.16-.23c3.22-2,7.68-.67,11.39.62,4,1.41,9.22,2.36,12-.91,1.88-2.24,1.74-5.65,3.53-8,2.08-2.7,6-3,9.39-2.52h.17c6.5,2.68,13.6-1.77,13.1-8.78C659.06,270.51,662,261.7,662.67,259.79Z" transform="translate(-180 -86.57)" fill="url(#linear-gradient-2)"/>
|
||||
</g>
|
||||
<path id="Path_6" data-name="Path 6" d="M576.21,313.78c2.92-4,7.93-6.8,12.73-5.71s9.35,5.66,13.62,3.37c5.84-3.12,1.7-14.59,11.18-15.44a12.44,12.44,0,0,1,5.77,1c4,1.63,10.26,3.47,13.34-.2,1.81-2.16,1.68-5.45,3.41-7.69,2-2.6,5.81-2.93,9.06-2.43l.16.05c6.27,2.59,13.13-1.71,12.64-8.47-.63-9,2.23-17.48,2.85-19.32l11.88-35.31A60.38,60.38,0,0,0,635,147.34h0a60.38,60.38,0,0,0-76.27,37.86L540,240.73a60.39,60.39,0,0,0,34.82,75.15,21.447,21.447,0,0,1,1.39-2.1Z" transform="translate(-180 -86.57)" fill="#f1f5f9"/>
|
||||
<circle id="Ellipse_8" data-name="Ellipse 8" cx="6.51" cy="6.51" r="6.51" transform="translate(411.84 86.57)" opacity="0.2"/>
|
||||
<circle id="Ellipse_9" data-name="Ellipse 9" cx="6.51" cy="6.51" r="6.51" transform="translate(448.86 99.02)" opacity="0.2"/>
|
||||
</g>
|
||||
<path id="Path_7" data-name="Path 7" d="M749.52,186a87.515,87.515,0,0,1,2.79,22c0,61.27-64.11,110.94-143.2,110.94C544.38,318.9,489.69,285.64,472,240c13.14,50.77,71,89,140.41,89,79.09,0,143.21-49.67,143.21-110.94a88.159,88.159,0,0,0-6.1-32.06Z" transform="translate(-180 -86.57)" opacity="0.1"/>
|
||||
<g id="Group_5" data-name="Group 5" opacity="0.8">
|
||||
<ellipse id="Ellipse_10" data-name="Ellipse 10" cx="296.18" cy="77.41" rx="296.18" ry="77.41" transform="translate(135.82 103.27)" fill="#cbd5e1"/>
|
||||
</g>
|
||||
<path id="Path_8" data-name="Path 8" d="M612,192.4c-158.18,0-286.42,33.51-286.42,74.86H898.42C898.42,225.91,770.18,192.4,612,192.4Z" transform="translate(-180 -86.57)" fill="#f1f5f9"/>
|
||||
<path id="Path_9" data-name="Path 9" d="M612,342.11c158.18,0,286.42-33.51,286.42-74.85H325.58C325.58,308.6,453.82,342.11,612,342.11Z" transform="translate(-180 -86.57)" fill="#fff"/>
|
||||
<path id="Path_10" data-name="Path 10" d="M612,342.11c158.18,0,286.42-33.51,286.42-74.85H325.58C325.58,308.6,453.82,342.11,612,342.11Z" transform="translate(-180 -86.57)" fill="#f1f5f9"/>
|
||||
<rect id="Rectangle_1" data-name="Rectangle 1" width="273.4" height="39.06" rx="17.22" transform="translate(295.3 161.15)" fill="#475569" opacity="0.05"/>
|
||||
<path id="Path_11" data-name="Path 11" d="M313.89,144.38a3.68,3.68,0,0,1-2.05-4.44,1.86,1.86,0,0,0,.08-.41h0a1.84,1.84,0,0,0-3.31-1.22h0a1.82,1.82,0,0,0-.2.36,3.67,3.67,0,0,1-4.44,2.05,2,2,0,0,0-.41-.08h0a1.84,1.84,0,0,0-1.22,3.31h0a1.619,1.619,0,0,0,.36.21,3.68,3.68,0,0,1,2.05,4.44,1.889,1.889,0,0,0-.08.4h0a1.84,1.84,0,0,0,3.31,1.23h0a1.649,1.649,0,0,0,.2-.37,3.67,3.67,0,0,1,4.44-2,2,2,0,0,0,.41.08h0a1.84,1.84,0,0,0,1.22-3.31h0A1.621,1.621,0,0,0,313.89,144.38Z" transform="translate(-180 -86.57)" fill="#fff" opacity="0.5"/>
|
||||
<path id="Path_12" data-name="Path 12" d="M822.89,450.38a3.68,3.68,0,0,1-2-4.44,1.851,1.851,0,0,0,.08-.41h0a1.84,1.84,0,0,0-3.31-1.22h0a1.817,1.817,0,0,0-.2.36,3.67,3.67,0,0,1-4.44,2.05,2,2,0,0,0-.41-.08h0a1.84,1.84,0,0,0-1.22,3.31h0a1.622,1.622,0,0,0,.36.21,3.68,3.68,0,0,1,2,4.44,1.89,1.89,0,0,0-.08.4h0a1.84,1.84,0,0,0,3.31,1.23h0a1.645,1.645,0,0,0,.2-.37,3.67,3.67,0,0,1,4.44-2,2,2,0,0,0,.41.08h0a1.84,1.84,0,0,0,1.22-3.31h0a1.62,1.62,0,0,0-.36-.25Z" transform="translate(-180 -86.57)" fill="#fff" opacity="0.5"/>
|
||||
<path id="Path_13" data-name="Path 13" d="M260.89,592.38a3.68,3.68,0,0,1-2.05-4.44,1.859,1.859,0,0,0,.08-.41h0a1.84,1.84,0,0,0-3.31-1.22h0a1.817,1.817,0,0,0-.2.36,3.67,3.67,0,0,1-4.44,2.05,2,2,0,0,0-.41-.08h0a1.84,1.84,0,0,0-1.22,3.31h0a1.619,1.619,0,0,0,.36.21,3.68,3.68,0,0,1,2.05,4.44,1.891,1.891,0,0,0-.08.4h0a1.84,1.84,0,0,0,3.31,1.23h0a1.647,1.647,0,0,0,.2-.37,3.67,3.67,0,0,1,4.44-2,2,2,0,0,0,.41.08h0a1.84,1.84,0,0,0,1.22-3.31h0a1.62,1.62,0,0,0-.36-.25Z" transform="translate(-180 -86.57)" fill="#fff" opacity="0.5"/>
|
||||
<path id="Path_14" data-name="Path 14" d="M205.89,261.38a3.68,3.68,0,0,1-2-4.44,1.859,1.859,0,0,0,.08-.41h0a1.84,1.84,0,0,0-3.31-1.22h0a1.82,1.82,0,0,0-.2.36,3.67,3.67,0,0,1-4.44,2.05,2,2,0,0,0-.41-.08h0a1.84,1.84,0,0,0-1.22,3.31h0a1.621,1.621,0,0,0,.36.21,3.68,3.68,0,0,1,2.05,4.44,1.889,1.889,0,0,0-.08.4h0a1.84,1.84,0,0,0,3.31,1.23h0a1.65,1.65,0,0,0,.2-.37,3.67,3.67,0,0,1,4.44-2,2,2,0,0,0,.41.08h0a1.84,1.84,0,0,0,1.22-3.31h0A1.62,1.62,0,0,0,205.89,261.38Z" transform="translate(-180 -86.57)" fill="#fff" opacity="0.5"/>
|
||||
<path id="Path_15" data-name="Path 15" d="M812.89,93.38a3.68,3.68,0,0,1-2-4.44,1.858,1.858,0,0,0,.08-.41h0a1.84,1.84,0,0,0-3.31-1.22h0a1.818,1.818,0,0,0-.2.36,3.67,3.67,0,0,1-4.44,2,2,2,0,0,0-.41-.08h0A1.84,1.84,0,0,0,801.34,93h0a1.618,1.618,0,0,0,.36.21,3.68,3.68,0,0,1,2,4.44,1.885,1.885,0,0,0-.08.4h0A1.84,1.84,0,0,0,807,99.23h0a1.65,1.65,0,0,0,.2-.37,3.67,3.67,0,0,1,4.44-2,2,2,0,0,0,.41.08h0a1.84,1.84,0,0,0,1.22-3.31h0a1.623,1.623,0,0,0-.38-.25Z" transform="translate(-180 -86.57)" fill="#fff" opacity="0.5"/>
|
||||
<g id="Group_6" data-name="Group 6" opacity="0.5">
|
||||
<rect id="Rectangle_2" data-name="Rectangle 2" width="3" height="17" transform="translate(110 257.85)" fill="#fff"/>
|
||||
<rect id="Rectangle_3" data-name="Rectangle 3" width="3" height="17" transform="translate(120 264.85) rotate(90)" fill="#fff"/>
|
||||
</g>
|
||||
<g id="Group_7" data-name="Group 7" opacity="0.5">
|
||||
<rect id="Rectangle_4" data-name="Rectangle 4" width="3" height="17" transform="translate(830 177.85)" fill="#fff"/>
|
||||
<rect id="Rectangle_5" data-name="Rectangle 5" width="3" height="17" transform="translate(840 184.85) rotate(90)" fill="#fff"/>
|
||||
</g>
|
||||
<g id="Group_8" data-name="Group 8" opacity="0.5">
|
||||
<rect id="Rectangle_6" data-name="Rectangle 6" width="3" height="17" transform="translate(730 456.85)" fill="#fff"/>
|
||||
<rect id="Rectangle_7" data-name="Rectangle 7" width="3" height="17" transform="translate(740 463.85) rotate(90)" fill="#fff"/>
|
||||
</g>
|
||||
<circle id="Ellipse_11" data-name="Ellipse 11" cx="6" cy="6" r="6" transform="translate(717 75.85)" fill="#fff" opacity="0.5"/>
|
||||
<circle id="Ellipse_12" data-name="Ellipse 12" cx="6" cy="6" r="6" transform="translate(0 6.85)" fill="#fff" opacity="0.5"/>
|
||||
<circle id="Ellipse_13" data-name="Ellipse 13" cx="6" cy="6" r="6" transform="translate(180 351.85)" fill="#fff" opacity="0.5"/>
|
||||
<ellipse id="Ellipse_14" data-name="Ellipse 14" cx="34" cy="7" rx="34" ry="7" transform="translate(200 147.43)" fill="#475569" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_15" data-name="Ellipse 15" cx="34" cy="7" rx="34" ry="7" transform="translate(200 200.43)" fill="#475569" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_16" data-name="Ellipse 16" cx="34" cy="7" rx="34" ry="7" transform="translate(587 147.43)" fill="#475569" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_17" data-name="Ellipse 17" cx="34" cy="7" rx="34" ry="7" transform="translate(587 200.43)" fill="#475569" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_18" data-name="Ellipse 18" cx="34" cy="7" rx="34" ry="7" transform="translate(398 117.43)" fill="#475569" opacity="0.05"/>
|
||||
<ellipse id="Ellipse_22" data-name="Ellipse 22" cx="34" cy="7" rx="34" ry="7" transform="translate(398 221.43)" fill="#475569" opacity="0.05"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 48 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 95 KiB |
|
After Width: | Height: | Size: 68 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 9.2 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 7.6 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 8.6 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
@@ -0,0 +1,121 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="330.653" height="229.984" viewBox="0 0 330.653 229.984">
|
||||
<defs>
|
||||
<linearGradient id="linear-gradient" x1="0.5" y1="1" x2="0.5" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="0.251"/>
|
||||
<stop offset="0.54" stop-color="gray" stop-opacity="0.122"/>
|
||||
<stop offset="1" stop-color="gray" stop-opacity="0.102"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Group_1" data-name="Group 1" transform="translate(-420 -259)">
|
||||
<circle id="Ellipse_37" data-name="Ellipse 37" cx="3.972" cy="3.972" r="3.972" transform="translate(722.377 259)" fill="#f1f5f9" opacity="0.1"/>
|
||||
<ellipse id="Ellipse_38" data-name="Ellipse 38" cx="27.882" cy="2.78" rx="27.882" ry="2.78" transform="translate(620.471 483.424)" fill="#6c63ff" opacity="0.1"/>
|
||||
<path id="Path_65" data-name="Path 65" d="M136.394,487.31l-.122,6.6-.98,53.523L126.9,567.077l-28.9.331V490.352l30.166-2.39Z" transform="translate(354.436 -100.91)" fill="#5f5d7e"/>
|
||||
<path id="Path_66" data-name="Path 66" d="M136.394,487.31l-.122,6.6-.98,53.523L126.9,567.077l-28.9.331V490.352l30.166-2.39Z" transform="translate(354.436 -100.91)" fill="#334155"/>
|
||||
<path id="Path_67" data-name="Path 67" d="M194.819,487.31l-.122,6.6-.98,53.523-8.387,19.641,2.208-73.038-.007-.046-.94-6.031Z" transform="translate(296.011 -100.91)" fill="#475569"/>
|
||||
<path id="Path_68" data-name="Path 68" d="M128.166,487.962l8.228-.652-.122,6.6-7.166.079L98,494.34v-3.988Z" transform="translate(354.436 -100.91)" opacity="0.1"/>
|
||||
<path id="Path_69" data-name="Path 69" d="M930.981,487.562v76.613h-6.729L897.33,544.538V485.4l24.053-2.261,1.476.679,1.393.642Z" transform="translate(-180.328 -98.121)" fill="#475569"/>
|
||||
<rect id="Rectangle_55" data-name="Rectangle 55" width="6.729" height="80.356" transform="translate(743.924 385.698)" fill="#334155"/>
|
||||
<path id="Path_70" data-name="Path 70" d="M930.981,483.819v4.4l-6.729.076-26.922.3v-3.2l24.053-2.261,1.476.679,1.393.642v-.642Z" transform="translate(-180.328 -98.121)" opacity="0.1"/>
|
||||
<path id="Path_71" data-name="Path 71" d="M330.653,464.929v6.242L0,474.858v-7.944l31.113-6.289,270.745-1.986Z" transform="translate(420 -81.73)" fill="#475569"/>
|
||||
<path id="Path_72" data-name="Path 72" d="M330.653,477.64v6.242L0,487.57v-7.944Z" transform="translate(420 -94.441)" fill="#334155"/>
|
||||
<rect id="Rectangle_56" data-name="Rectangle 56" width="115.818" height="89.925" rx="22.82" transform="translate(540.975 289.64)" fill="#475569"/>
|
||||
<rect id="Rectangle_57" data-name="Rectangle 57" width="97.349" height="73.356" rx="7" transform="translate(550.295 297.752)" fill="#f1f5f9"/>
|
||||
<circle id="Ellipse_39" data-name="Ellipse 39" cx="1.595" cy="1.595" r="1.595" transform="translate(544.9 332.833)" fill="#e6e8ec"/>
|
||||
<circle id="Ellipse_40" data-name="Ellipse 40" cx="2.631" cy="2.631" r="2.631" transform="translate(649.326 331.969)" fill="#e6e8ec"/>
|
||||
<path id="Path_73" data-name="Path 73" d="M620.934,349.638l-12.448-7.566a1.7,1.7,0,0,0-2.525,1.483V358.27a1.7,1.7,0,0,0,2.525,1.483l12.448-7.143a1.7,1.7,0,0,0,0-2.972Zm9.36,1.274a17.542,17.542,0,1,0-17.542,17.542,17.542,17.542,0,0,0,17.542-17.542Zm-31.688,0a14.146,14.146,0,1,1,14.146,14.146,14.146,14.146,0,0,1-14.146-14.146Z" transform="translate(-11.469 -14.925)" fill="#475469"/>
|
||||
<path id="Path_74" data-name="Path 74" d="M736.127,405.782a4.14,4.14,0,0,0-.374-1.165c.251-.857.414-1.384.414-1.384a1.93,1.93,0,0,0-.04-.331,5.081,5.081,0,0,0-5.147-4.263c-1.986.036-5.753.169-9.93.639.238-1.671.523-3.671.821-5.729l.546.06a2.6,2.6,0,0,1,.391.02h.175a1.8,1.8,0,0,0,1.211-.371.715.715,0,0,0-.222-1.172A2.952,2.952,0,0,0,726.565,391a2.317,2.317,0,0,0,0-2.694c-.7-.993-2.178-1.655-2.257-2.823a3.449,3.449,0,0,1,.748-1.844,7.7,7.7,0,0,0-1.215-9.251,18.1,18.1,0,0,0-1.47-1.307c-.728-2.674-1.489-5.064-1.714-5.14a5.783,5.783,0,0,1-1.268-1.264,6.084,6.084,0,0,0-.023-1.367c-.351-2.317-2.648-3.972-3.912-6.017a10.388,10.388,0,0,1-1.168-6.894,49.319,49.319,0,0,1,1.807-6.9,8.782,8.782,0,0,0,.354-5.187,9.428,9.428,0,0,0-2.135-3.217,24.318,24.318,0,0,0-7.586-5.958,15.076,15.076,0,0,0-6.716-1.436h-.023l-.364.02-.258.017-.258.026-.275.026h0c-.281.036-.559.079-.837.136a28.9,28.9,0,0,0-6.14-.688h-.268a3.144,3.144,0,0,0-1.754.414c-.735.513-.828,1.433-1.049,2.234a6.2,6.2,0,0,1-2.383,3.31c-.791.569-1.721.993-2.476,1.589a2.522,2.522,0,0,0-1.142,2.37,2.586,2.586,0,0,0,1.655,1.622c-.1.119-.2.235-.288.357.156.063.331.119.473.165.993.3,2.062.331,3.068.6a6.725,6.725,0,0,1,.814.275,11.624,11.624,0,0,0-1.36,5.468,11.78,11.78,0,0,0,6.163,10.333v.331c.1,3.455-.159,7.659-1.926,8.371s-3.459,1.516-4.5,2.036l-.331.175c-.275-.126-.549-.258-.818-.4,0,0-1.407-.166-1.162.907,0,0-4.253-.662-6.587,1.155a60.664,60.664,0,0,0-6.914,6.6c-.751.99-6.56,3.154-6.56,3.154a7.448,7.448,0,0,0,1.039-5.693s-.874-3.78-.457-5.3,1.5-7.143,1.5-7.143.152-5.938-3.088-8.662-5.494-4.965-4.243-2.317a36.912,36.912,0,0,0,1.834,3.545s-7.748,1.84-5,4.713,3.5,2.876,3.5,2.876-.917,7.093-1.086,8.414-1.655,11.383-1.655,11.383-.083,4.786.751,5.527a3.765,3.765,0,0,0,4,2.979s6.58-.166,8.414-.907,8.162-4.7,8.831-4.455a.38.38,0,0,1,.129.086.943.943,0,0,1,.1.1c-.662,1.466-2.231,6.444-1.562,8.89,0,0-.583,6.927,2.916,9.155,0,0,5.081,8.579,3.164,13.2-.152.374-.288.718-.414,1.053-2.909-2.413-7.348-4.634-14.126-5.862-.692-.126-1.38-.278-2.062-.444-1.926-.467-7.225-.894-9.747,7.484a36.849,36.849,0,0,1-2.237,5.667,18.709,18.709,0,0,0-2.118,7.745c-.056,4,2.012,7.973,9.519,9.43a28.567,28.567,0,0,0,1.443,9.079c2.082,5.2,5.415,13.61,5.415,13.61s4,8.579,4.25,12.041a55.272,55.272,0,0,1,.235,7.282,3.231,3.231,0,0,1-.033.364,8.769,8.769,0,0,1-1.119,1.016c-.583.331-2.5,2.393-2.5,2.886a8.82,8.82,0,0,0,.126,1.41,3.474,3.474,0,0,0-1.4,2.515c0,4.475,12.7,8.1,28.365,8.1s28.362-3.641,28.362-8.1c0-4.084-10.592-7.46-24.354-8.016,2.87-1.145,5.418-2.347,6.474-3.31a1.549,1.549,0,0,0,.5-.682L705.5,473.78s-.208.046-.516.136l-.185-.278c-1.185-1.8-3.465-5.4-3.465-6.375,0-.361-.6-2.668-1.476-5.829V451.289c8.692,1.324,19.892-.477,19.892-.477l.05-.026h.218v-.119c1.506-.834,9.039-5.246,11.273-11.1.662-1.708-.162-4.154-1.8-6.769,1.145-2.843,3.972-10.188,3.69-13.117,0-.156-.02-.331-.02-.5a8.635,8.635,0,0,0,.033-.9c.331-4.3,2.979-12.164,2.979-12.164S736.16,405.981,736.127,405.782ZM679.86,386.665c.6,1.059,1.248,2.413,1.5,2.962h0s-.88-1.622-1.486-2.962Zm.629,92.709-.063.023v-.331a19.7,19.7,0,0,1,.063-2.588,3.032,3.032,0,0,0-.285-1.344,31.773,31.773,0,0,1-2.029-7.987,40.057,40.057,0,0,1-.434-6.835,121.041,121.041,0,0,0,.149-15.113l5.124,1.152,5.958,12.147s3.833,5.931,5.021,10.611V473.8a11.453,11.453,0,0,1-1.791,3.886c-.791,1.082-1.562,2.178-2.277,3.31-.218.351-.46.712-.7,1.049-.079,0-3.995.228-4.66.963a4.449,4.449,0,0,0-1.245,1.887l-.169.026a39.5,39.5,0,0,0-2.645-5.544Z" transform="translate(-50.055 -12.157)" fill="url(#linear-gradient)"/>
|
||||
<path id="Path_75" data-name="Path 75" d="M775.915,767.873l-1.324,4.3-5.627,4.882-8.275,2.376s-3.889-2.128-2.565-2.542a3.266,3.266,0,0,0,1.248-1.086c-.463,1.688,3.22-.487,3.22-.487s9.516-6.785,10.509-7.53a7.484,7.484,0,0,1,2.118-.97C775.634,767.465,775.915,767.873,775.915,767.873Z" transform="translate(-120.277 -304.91)" opacity="0.1"/>
|
||||
<path id="Path_76" data-name="Path 76" d="M757.738,692.923l-1.324,4.3-5.627,4.882-8.275,2.376s-3.889-2.128-2.565-2.542a3.264,3.264,0,0,0,1.248-1.086,16.531,16.531,0,0,0,1.1-1.6c.708-1.139,1.476-2.237,2.261-3.31a11.912,11.912,0,0,0,2.089-5.5c.579-4.551-5.3-13.736-5.3-13.736L730.68,654.79l14.894,1.82s8.026,27.555,8.026,28.878c0,.993,2.264,4.584,3.442,6.4C757.457,692.516,757.738,692.923,757.738,692.923Z" transform="translate(-102.1 -229.96)" fill="#f8d4d4"/>
|
||||
<ellipse id="Ellipse_41" data-name="Ellipse 41" cx="28.173" cy="8.126" rx="28.173" ry="8.126" transform="translate(619.203 472.187)" fill="#1e293b"/>
|
||||
<path id="Path_77" data-name="Path 77" d="M770.57,773.456a1.589,1.589,0,0,1-.5.685c-2.045,1.877-9.7,4.667-14.421,6.183a33.427,33.427,0,0,1-3.783,1.076,11.216,11.216,0,0,1-5.213-1.678c-1.655-1.016-.165-2.459.5-3.2s4.634-.966,4.634-.966c-1.9,3.167,2.81.387,2.81.387s9.516-6.785,10.509-7.53a9.136,9.136,0,0,1,2.813-1.158Z" transform="translate(-112.285 -305.197)" fill="#fff"/>
|
||||
<path id="Path_79" data-name="Path 79" d="M789.781,788.09c-2.045,1.877-9.694,4.667-14.421,6.183C779.643,790.645,786.825,788.749,789.781,788.09Z" transform="translate(-131.992 -319.14)" opacity="0.1"/>
|
||||
<ellipse id="Ellipse_42" data-name="Ellipse 42" cx="5.637" cy="1.625" rx="5.637" ry="1.625" transform="translate(641.74 476.07)" opacity="0.1"/>
|
||||
<rect id="Rectangle_58" data-name="Rectangle 58" width="5.792" height="42.862" transform="translate(644.242 434.833)" fill="#1e293b"/>
|
||||
<path id="Path_80" data-name="Path 80" d="M783.792,687.128v4.965A40.74,40.74,0,0,1,778,689.045V685h1.208Z" transform="translate(-133.758 -250.171)" opacity="0.1"/>
|
||||
<path id="Path_81" data-name="Path 81" d="M754.27,610.208s19.124-4.922,23.884-8.606,23.45,13.65,20.981,20.19-11.459,11.277-11.459,11.277-24.86,4.045-29.094-4.392S754.27,610.208,754.27,610.208Z" transform="translate(-117.882 -194.037)" fill="#94a3b8"/>
|
||||
<path id="Path_82" data-name="Path 82" d="M754.27,610.208s19.124-4.922,23.884-8.606,23.45,13.65,20.981,20.19-11.459,11.277-11.459,11.277-24.86,4.045-29.094-4.392S754.27,610.208,754.27,610.208Z" transform="translate(-117.882 -194.037)" fill="#94a3b8" opacity="0.445"/>
|
||||
<path id="Path_83" data-name="Path 83" d="M749.27,604.208s19.124-4.922,23.884-8.606,23.45,13.65,20.981,20.19-11.459,11.277-11.459,11.277-24.86,4.045-29.094-4.392S749.27,604.208,749.27,604.208Z" transform="translate(-114.537 -190.023)" fill="#334155"/>
|
||||
<path id="Path_84" data-name="Path 84" d="M673.421,423.313l-2.069-.751a7.524,7.524,0,0,0,1.036-5.709s-.87-3.793-.457-5.329,1.489-7.166,1.489-7.166.152-5.958-3.068-8.688-5.455-4.965-4.213-2.317a36.851,36.851,0,0,0,1.82,3.558s-7.7,1.844-4.965,4.73,3.475,2.883,3.475,2.883-.91,7.116-1.076,8.44-1.655,11.419-1.655,11.419-.083,4.8.745,5.544a3.744,3.744,0,0,0,3.972,2.979C669.046,432.9,676.069,425.134,673.421,423.313Z" transform="translate(-56.426 -54.261)" fill="#f8d4d4"/>
|
||||
<path id="Path_85" data-name="Path 85" d="M784.127,413.249v4.634l-4.8,1.566-8.175,6.017-2.168,1.6-9.681-3.889-6.123-6.454s.3-.162.814-.43l.331-.175c1.036-.52,2.668-1.324,4.472-2.042s2.016-4.928,1.913-8.4v-.331c-.083-2.433-.331-4.422-.331-4.422s1.009-.192,2.479-.41c4.074-.606,11.677-1.423,11.009,1.072a5.752,5.752,0,0,0,0,2.578c.02.093.04.189.063.281a21.835,21.835,0,0,0,2.82,6.16l6.62,2.383.185.066Z" transform="translate(-117.153 -59.421)" fill="#f8d4d4"/>
|
||||
<path id="Path_86" data-name="Path 86" d="M838.485,441.541v-1.407a4.636,4.636,0,0,1,1.572,0c.579.166,1.678,1.9,2.175,2.069s3.535,11.5,3.2,12.495-3.459,23.411-3.459,23.411l-6.3,6.951-1.241-19.114,4.055-11.336Z" transform="translate(-171.511 -86.307)" fill="#f8d4d4"/>
|
||||
<path id="Path_87" data-name="Path 87" d="M737.631,601.77s-5.762,1.241-5.031,3.062,3.955,1.9,3.955,1.9Z" transform="translate(-103.342 -194.489)" fill="#fdc2cc"/>
|
||||
<path id="Path_88" data-name="Path 88" d="M710.965,463.909l-4.385,9.45-5.213,3.806-.91-5.882s-1.761-3.889-2.519-4.548a.379.379,0,0,0-.129-.086c-.662-.248-6.951,3.724-8.771,4.468s-8.357.91-8.357.91l2.9-10.343s5.792-2.151,6.537-3.144a60.232,60.232,0,0,1,6.868-6.62c2.317-1.82,6.544-1.158,6.544-1.158l.066.027,1.086.47,3.144,7.7Z" transform="translate(-68.65 -93.384)" fill="#f8d4d4"/>
|
||||
<path id="Path_89" data-name="Path 89" d="M701.066,669.314a19.757,19.757,0,0,0-.063,2.595c.023.923.063,1.708.063,1.708l-1.9,3.972s-6.537,2.151-5.461,1.241a3.6,3.6,0,0,0,.662-2.214,56.131,56.131,0,0,0-.235-7.3c-.248-3.475-4.22-12.081-4.22-12.081s-3.31-8.44-5.378-13.653-1.324-14.646-1.324-14.646.331-7.116,1.82-9.268,7.282-2.9,7.282-2.9l2.717,9.013s2.234,8.44,3.062,9.681.579,16.053.248,17.625a42.152,42.152,0,0,0,.434,6.858,32.207,32.207,0,0,0,2.012,8.01,3.059,3.059,0,0,1,.281,1.359Z" transform="translate(-70.252 -204.524)" fill="#f8d4d4"/>
|
||||
<path id="Path_90" data-name="Path 90" d="M722.3,785.068l-1.9,3.972s-6.537,2.151-5.461,1.241a3.6,3.6,0,0,0,.662-2.214c.235-.235.487-.493.745-.758a16.712,16.712,0,0,1,5.908-3.949h0C722.263,784.283,722.3,785.068,722.3,785.068Z" transform="translate(-91.489 -315.975)" opacity="0.1"/>
|
||||
<path id="Path_91" data-name="Path 91" d="M719.522,791.588a.187.187,0,0,1,0,.046c-.331,1.572-5.792,3.724-5.792,3.724s-3.475.579-5.461,1.076a1.374,1.374,0,0,1-.467.043c-1.532-.116-1.6-3.065-1.6-3.518a9.4,9.4,0,0,1,2.482-2.9,17.738,17.738,0,0,0,1.84-1.764,17.078,17.078,0,0,1,6.031-4.028h0S719.787,789.956,719.522,791.588Z" transform="translate(-85.723 -316.584)" fill="#fff"/>
|
||||
<path id="Path_93" data-name="Path 93" d="M722.76,806.268a.2.2,0,0,1,0,.046c-.331,1.572-5.792,3.724-5.792,3.724s-3.475.579-5.461,1.076a1.375,1.375,0,0,1-.467.043c1.8-1.235,6.166-4.2,6.755-4.263S721.287,805.993,722.76,806.268Z" transform="translate(-88.961 -331.264)" opacity="0.1"/>
|
||||
<path id="Path_94" data-name="Path 94" d="M788.514,404.442c-2.045,1.685-3.925,1.443-6.782,1.443-2.065,0-4.75.725-6.441-.2-.07-2.585-.331-4.76-.331-4.76s14.4-2.731,13.488.662a6.018,6.018,0,0,0,.066,2.86Z" transform="translate(-131.724 -59.422)" opacity="0.1"/>
|
||||
<path id="Path_95" data-name="Path 95" d="M781.1,361.146a11.833,11.833,0,0,1-11.833,11.833,8.247,8.247,0,0,1-.907-.033h0a11.833,11.833,0,1,1,12.743-11.8Z" transform="translate(-120.003 -25.593)" fill="#f8d4d4"/>
|
||||
<path id="Path_96" data-name="Path 96" d="M742.7,459.252l3.144,4.965-4.385,9.45-5.213,3.806-.91-5.9s-1.761-3.889-2.519-4.548c.218-.533.367-.778.367-.583,0,.827,2.036,4.551,2.036,4.551,6.289-2.151,4.336-10.509,4.336-10.509s-.781-7.447-1.086-9.407l1.086.47Z" transform="translate(-103.532 -93.675)" opacity="0.1"/>
|
||||
<path id="Path_97" data-name="Path 97" d="M784.127,439.869V444.5l-4.8,1.566-8.175,6.017-2.168,1.6-9.681-3.889-6.123-6.454s.3-.162.814-.43l.331-.175a40.414,40.414,0,0,0,16.718,3c12.468-1.986,12.839-5,12.528-6.067Z" transform="translate(-117.153 -86.041)" opacity="0.1"/>
|
||||
<path id="Path_98" data-name="Path 98" d="M743.016,514.772a92.777,92.777,0,0,1-9.6,4.055c-5.709,2.069-18.287-.662-19.859-1.076s-13.653-5.213-18.287-7.033-5.792-.331-6.868-.5-1.82-2.234-1.986-2.813,2.979-5.627,4.717-8.192,6.951-2.069,7.7-2.234,5.958,0,5.958,0-.331-1.655,1.572-6.289-3.144-13.239-3.144-13.239c-3.475-2.234-2.9-9.185-2.9-9.185-.827-3.062,1.82-10.1,1.82-9.268s2.036,4.551,2.036,4.551c6.289-2.151,4.336-10.509,4.336-10.509s-.91-8.688-1.152-9.764,1.152-.91,1.152-.91q.4.209.814.4a40.229,40.229,0,0,0,17.059,3.161c15.116-2.439,12.438-6.328,12.339-6.467l.735.261c5.461,3.972,3.806,17.128,3.806,17.128l-2.046,9.82-1.519,7.315s5.378,32.6,5.875,34.257S743.016,514.772,743.016,514.772Z" transform="translate(-72.484 -85.901)" fill="#94a3b8"/>
|
||||
<path id="Path_99" data-name="Path 99" d="M730.994,622c-.331.248-4.055,7.944-1.324,10.095S730.994,622,730.994,622Z" transform="translate(-100.759 -208.023)" opacity="0.1"/>
|
||||
<path id="Path_100" data-name="Path 100" d="M743.68,625.27c.083.248,7.778,12.495,12,13.488Z" transform="translate(-110.798 -210.21)" opacity="0.1"/>
|
||||
<path id="Path_101" data-name="Path 101" d="M797.2,332.386l-1.231.261a8.3,8.3,0,0,1,1.039-.308Z" transform="translate(-145.78 -14.236)" opacity="0.1"/>
|
||||
<path id="Path_102" data-name="Path 102" d="M783.931,396.545l-2.317,9.814A11.986,11.986,0,0,1,778.4,404.2a9.8,9.8,0,0,0-2.35-1.966,10.2,10.2,0,0,0-4.081-.563,19.63,19.63,0,0,1-5.1-.874,3.6,3.6,0,0,1-1.324-.642,3.217,3.217,0,0,1-.662-2.8,42.893,42.893,0,0,0,.05-5.723c-.02-.357-.046-.715-.076-1.072-.132-1.6-.563-3.452-2.2-4.137-.841-.331-1.844-.3-2.648-.7a2.185,2.185,0,0,1-.331-.2c-1.192-.834-1.3-2.506-1.254-3.912q.106-2.9.2-5.8a16.864,16.864,0,0,0-.063-2.863h0a6.352,6.352,0,0,0-.516-1.827c-.718-1.536-2.214-2.817-2.482-4.438a1.8,1.8,0,0,1-.03-.228c-.139-1.45.774-2.8,1.1-4.227.642-2.87-1.516-6.014-4.69-6.838-.993-.258-2.059-.308-3.048-.6a4.887,4.887,0,0,1-.467-.165,13.894,13.894,0,0,1,11.167-5.3c7.391,0,13.385,5.3,13.385,11.833a11.356,11.356,0,0,1-4.945,9.185c.02.093.043.189.07.281a20.819,20.819,0,0,0,3.191,6.16l7.493,2.383.834.265C785.8,383.395,783.931,396.545,783.931,396.545Z" transform="translate(-113.969 -25.596)" opacity="0.1"/>
|
||||
<path id="Path_103" data-name="Path 103" d="M867.572,520.655a1.124,1.124,0,0,1-.212-.03A.439.439,0,0,1,867.572,520.655Z" transform="translate(-193.541 -140.2)" opacity="0.1"/>
|
||||
<path id="Path_104" data-name="Path 104" d="M759.671,330a28.465,28.465,0,0,0-6.315-.738,3.5,3.5,0,0,0-1.986.417c-.732.513-.824,1.44-1.043,2.241a6.216,6.216,0,0,1-2.367,3.31c-.784.573-1.708.993-2.459,1.6a2.566,2.566,0,0,0-1.135,2.376,2.938,2.938,0,0,0,2.171,1.84c.993.281,2.049.331,3.048.6,3.174.824,5.329,3.972,4.687,6.835-.331,1.427-1.235,2.777-1.1,4.227.162,1.731,1.761,3.065,2.512,4.67a10.092,10.092,0,0,1,.586,4.687l-.2,5.8c-.053,1.529.079,3.369,1.589,4.117.808.4,1.814.354,2.648.7,1.635.682,2.065,2.539,2.2,4.134a42.74,42.74,0,0,1,.026,6.8,3.187,3.187,0,0,0,.662,2.8,3.549,3.549,0,0,0,1.324.642,19.634,19.634,0,0,0,5.1.874,10.307,10.307,0,0,1,4.081.563,9.878,9.878,0,0,1,2.35,1.966,12.988,12.988,0,0,0,7.672,3.359,2.285,2.285,0,0,0,1.734-.354c.427-.394.175-1.244-.434-1.195a2.943,2.943,0,0,0,2.787-1.066,2.35,2.35,0,0,0,0-2.7c-.692-.993-2.161-1.655-2.241-2.833a3.5,3.5,0,0,1,.741-1.85,7.781,7.781,0,0,0-1.2-9.268c-1.552-1.605-3.879-2.823-4.422-4.882-.361-1.377.185-2.823-.023-4.223-.331-2.317-2.625-3.972-3.886-6.037a10.5,10.5,0,0,1-1.162-6.914,49.179,49.179,0,0,1,1.8-6.918,8.928,8.928,0,0,0,.351-5.206,9.539,9.539,0,0,0-2.122-3.227,23.9,23.9,0,0,0-7.533-5.958,13.774,13.774,0,0,0-9.837-.907" transform="translate(-111.233 -12.175)" fill="#474157"/>
|
||||
<path id="Path_105" data-name="Path 105" d="M759.671,330a28.465,28.465,0,0,0-6.315-.738,3.5,3.5,0,0,0-1.986.417c-.732.513-.824,1.44-1.043,2.241a6.216,6.216,0,0,1-2.367,3.31c-.784.573-1.708.993-2.459,1.6a2.566,2.566,0,0,0-1.135,2.376,2.938,2.938,0,0,0,2.171,1.84c.993.281,2.049.331,3.048.6,3.174.824,5.329,3.972,4.687,6.835-.331,1.427-1.235,2.777-1.1,4.227.162,1.731,1.761,3.065,2.512,4.67a10.092,10.092,0,0,1,.586,4.687l-.2,5.8c-.053,1.529.079,3.369,1.589,4.117.808.4,1.814.354,2.648.7,1.635.682,2.065,2.539,2.2,4.134a42.74,42.74,0,0,1,.026,6.8,3.187,3.187,0,0,0,.662,2.8,3.549,3.549,0,0,0,1.324.642,19.634,19.634,0,0,0,5.1.874,10.307,10.307,0,0,1,4.081.563,9.878,9.878,0,0,1,2.35,1.966,12.988,12.988,0,0,0,7.672,3.359,2.285,2.285,0,0,0,1.734-.354c.427-.394.175-1.244-.434-1.195a2.943,2.943,0,0,0,2.787-1.066,2.35,2.35,0,0,0,0-2.7c-.692-.993-2.161-1.655-2.241-2.833a3.5,3.5,0,0,1,.741-1.85,7.781,7.781,0,0,0-1.2-9.268c-1.552-1.605-3.879-2.823-4.422-4.882-.361-1.377.185-2.823-.023-4.223-.331-2.317-2.625-3.972-3.886-6.037a10.5,10.5,0,0,1-1.162-6.914,49.179,49.179,0,0,1,1.8-6.918,8.928,8.928,0,0,0,.351-5.206,9.539,9.539,0,0,0-2.122-3.227,23.9,23.9,0,0,0-7.533-5.958,13.774,13.774,0,0,0-9.837-.907" transform="translate(-111.233 -12.175)" fill="#1e293b"/>
|
||||
<path id="Path_106" data-name="Path 106" d="M737.18,548.476s2.813,1.076,5.792-1.9S737.18,548.476,737.18,548.476Z" transform="translate(-106.449 -156.917)" opacity="0.1"/>
|
||||
<g id="Group_116" data-name="Group 116" transform="translate(633.048 317.105)" opacity="0.1">
|
||||
<path id="Path_107" data-name="Path 107" d="M793.1,330.871a11.776,11.776,0,0,1,1.655-.209,12.551,12.551,0,0,0-2.317.073Z" transform="translate(-776.467 -330.203)"/>
|
||||
<path id="Path_108" data-name="Path 108" d="M777.411,390.5a9.9,9.9,0,0,0-2.353-1.966,10.3,10.3,0,0,0-4.081-.563,19.53,19.53,0,0,1-5.1-.874,3.549,3.549,0,0,1-1.324-.642,3.225,3.225,0,0,1-.662-2.8,42.733,42.733,0,0,0-.026-6.8c-.136-1.6-.563-3.452-2.2-4.134-.837-.351-1.84-.308-2.648-.7-1.509-.748-1.655-2.588-1.592-4.117q.1-2.9.2-5.8a10.059,10.059,0,0,0-.586-4.69c-.751-1.605-2.35-2.936-2.512-4.67-.136-1.446.778-2.8,1.1-4.227.642-2.87-1.516-6.011-4.69-6.835-.993-.258-2.059-.311-3.048-.6a2.905,2.905,0,0,1-2.155-1.82,2.52,2.52,0,0,1,1.132-2.38c.751-.606,1.675-1.023,2.463-1.6a6.193,6.193,0,0,0,2.363-3.31,3.713,3.713,0,0,1,1.043-2.241,2.648,2.648,0,0,1,1.357-.4c-.295,0-.589-.017-.88-.017a3.521,3.521,0,0,0-1.986.414c-.732.516-.824,1.44-1.043,2.241a6.216,6.216,0,0,1-2.367,3.31c-.784.573-1.708.993-2.459,1.6a2.568,2.568,0,0,0-1.135,2.38,2.92,2.92,0,0,0,2.158,1.82c.99.295,2.049.331,3.048.6,3.174.824,5.329,3.972,4.687,6.835-.331,1.427-1.235,2.78-1.1,4.227.162,1.734,1.761,3.065,2.512,4.67a10.057,10.057,0,0,1,.586,4.69q-.1,2.9-.2,5.8c-.053,1.529.079,3.369,1.589,4.117.808.4,1.814.354,2.648.7,1.635.682,2.065,2.539,2.2,4.134a42.74,42.74,0,0,1,.026,6.8,3.187,3.187,0,0,0,.662,2.8,3.549,3.549,0,0,0,1.324.642,19.5,19.5,0,0,0,5.1.874,10.308,10.308,0,0,1,4.081.563A9.959,9.959,0,0,1,775.9,390.5a12.968,12.968,0,0,0,7.669,3.36,3.544,3.544,0,0,0,1.109-.043,12.945,12.945,0,0,1-7.267-3.317Z" transform="translate(-744.18 -329.32)"/>
|
||||
</g>
|
||||
<path id="Path_109" data-name="Path 109" d="M684.782,484s-2.648,2.429-2.261,3.422S684.782,484,684.782,484Z" transform="translate(-69.856 -115.699)" opacity="0.1"/>
|
||||
<path id="Path_110" data-name="Path 110" d="M668.535,577.927c-1.91-.467-7.176-.9-9.681,7.507a37.186,37.186,0,0,1-2.221,5.683c-2.4,4.935-5.508,15.083,8.146,17.317l32.767,7.447s17.542,2.151,18.7,1.324a3.207,3.207,0,0,0,.993-2.648s-19.363,0-23.169-5.958-3.972-14.067-3.972-14.067.477-12.521-19.528-16.159C669.908,578.248,669.213,578.092,668.535,577.927Z" transform="translate(-51.152 -178.397)" fill="#474157"/>
|
||||
<path id="Path_111" data-name="Path 111" d="M668.535,578.1c-1.91-.467-7.176-.9-9.681,7.51a37.188,37.188,0,0,1-2.221,5.683c-2.4,4.932-5.508,15.08,8.146,17.314l32.767,7.447s17.542,2.151,18.7,1.324a3.207,3.207,0,0,0,.993-2.648s-19.363,0-23.169-5.958S690.1,594.7,690.1,594.7s.477-12.521-19.528-16.159C669.908,578.418,669.213,578.256,668.535,578.1Z" transform="translate(-51.152 -178.511)" fill="#334155"/>
|
||||
<path id="Path_112" data-name="Path 112" d="M811.958,543.834a5.061,5.061,0,0,0-5.114-4.276c-4.713.086-19.22.715-25.959,5.117,0,0-5.13,3.31-6.62,3.31s-21.68,17.211,8.275,32.6c0,0,16.053,4.568,22.341-6.156,0,0,4.468-11.518,4.137-15.507S812,544.178,812,544.178,811.991,544.049,811.958,543.834Z" transform="translate(-125.886 -152.867)" fill="#475569"/>
|
||||
<path id="Path_113" data-name="Path 113" d="M811.958,553.257a4.963,4.963,0,0,0-5.114-3.949c-4.713.079-19.22.662-25.959,4.723,0,0-5.13,3.055-6.62,3.055s-21.68,15.887,8.275,30.1c0,0,16.053,4.217,22.341-5.683,0,0,4.468-10.635,4.137-14.315S812,553.575,812,553.575,811.991,553.456,811.958,553.257Z" transform="translate(-125.886 -159.39)" fill="#475569" opacity="0.1"/>
|
||||
<rect id="Rectangle_59" data-name="Rectangle 59" width="5.296" height="11.277" transform="translate(664.763 427.716)" fill="#1e293b"/>
|
||||
<ellipse id="Ellipse_43" data-name="Ellipse 43" cx="14.908" cy="0.957" rx="14.908" ry="0.957" transform="translate(461.439 379.949)" opacity="0.1"/>
|
||||
<path id="Path_114" data-name="Path 114" d="M266.794,405.634a5.684,5.684,0,0,0-.755,1.42c-.046.126-.093.265-.139.4a1.22,1.22,0,0,0-.262-.089,3.753,3.753,0,0,0-1.182-.1c0-.152.02-.331.023-.483.05-1.744-.156-4.177-1.82-3.148-1.6.993-.457,2.648.573,3.71l.265.258c-.94.662-1.119,2.228-1.274,3.853s-1.536,3.406-2.453,4.415c-.093.1-.175.2-.258.281a3.346,3.346,0,0,0-2.664-.685c-.036-.142-.079-.291-.122-.45-.741-2.674-2.28-7.311-4.243-8.328l.258-.331c.834-1.092,1.774-2.711.387-3.128s-1.513,1.407-1.436,2.77c0,.172.026.331.04.483a2.042,2.042,0,0,0-1.45.708l-.215-.252c-1.125-1.324-3.187-3.432-3.813-1.84-.583,1.483,1.235,3.406,2.512,4.521l.079.07c-.857,3.485,2.876,6.332,4.9,7.563l.261.159c-2.78,3.277-4.5,9.417-4.5,9.417l7.785,1.39s5.163-4.452,4.5-8.635h.053c5.16-1.033,6.332-6.534,5.527-9.8l.093-.036a5.871,5.871,0,0,0,2.39-1.807C271.3,405.928,268.271,403.664,266.794,405.634Z" transform="translate(222.063 -61.62)" fill="#475569"/>
|
||||
<path id="Path_115" data-name="Path 115" d="M266.794,405.634a5.684,5.684,0,0,0-.755,1.42c-.046.126-.093.265-.139.4a1.22,1.22,0,0,0-.262-.089,3.753,3.753,0,0,0-1.182-.1c0-.152.02-.331.023-.483.05-1.744-.156-4.177-1.82-3.148-1.6.993-.457,2.648.573,3.71l.265.258c-.94.662-1.119,2.228-1.274,3.853s-1.536,3.406-2.453,4.415c-.093.1-.175.2-.258.281a3.346,3.346,0,0,0-2.664-.685c-.036-.142-.079-.291-.122-.45-.741-2.674-2.28-7.311-4.243-8.328l.258-.331c.834-1.092,1.774-2.711.387-3.128s-1.513,1.407-1.436,2.77c0,.172.026.331.04.483a2.042,2.042,0,0,0-1.45.708l-.215-.252c-1.125-1.324-3.187-3.432-3.813-1.84-.583,1.483,1.235,3.406,2.512,4.521l.079.07c-.857,3.485,2.876,6.332,4.9,7.563l.261.159c-2.78,3.277-4.5,9.417-4.5,9.417l7.785,1.39s5.163-4.452,4.5-8.635h.053c5.16-1.033,6.332-6.534,5.527-9.8l.093-.036a5.871,5.871,0,0,0,2.39-1.807C271.3,405.928,268.271,403.664,266.794,405.634Z" transform="translate(222.063 -61.62)" fill="none" opacity="0.1"/>
|
||||
<path id="Path_116" data-name="Path 116" d="M252.281,410.632l-.9,2.664s-.506-.357-1.145-.92c-1.278-1.115-3.1-3.038-2.512-4.521.626-1.592,2.688.51,3.813,1.84C251.98,410.222,252.281,410.632,252.281,410.632Z" transform="translate(221.08 -64.374)" fill="#f1f5f9"/>
|
||||
<path id="Path_117" data-name="Path 117" d="M265.366,406.372a12.878,12.878,0,0,1-.887,1.043,13.984,13.984,0,0,1-.162-1.4c-.076-1.364.069-3.174,1.436-2.77S266.187,405.279,265.366,406.372Z" transform="translate(209.915 -61.633)" fill="#f1f5f9"/>
|
||||
<path id="Path_118" data-name="Path 118" d="M297.718,407.222c-.026.877-.113,1.576-.113,1.576a11.254,11.254,0,0,1-1.135-1.013c-1.029-1.069-2.168-2.717-.573-3.71C297.559,403.045,297.765,405.477,297.718,407.222Z" transform="translate(189.306 -62.063)" fill="#f1f5f9"/>
|
||||
<path id="Path_119" data-name="Path 119" d="M310.61,411.379a5.871,5.871,0,0,1-2.4,1.8,6.681,6.681,0,0,1-.8.288l-1.072-1.506a10.934,10.934,0,0,1,.444-1.463,5.688,5.688,0,0,1,.755-1.42,1.919,1.919,0,0,1,3.073,2.3Z" transform="translate(181.79 -65.072)" fill="#f1f5f9"/>
|
||||
<path id="Path_120" data-name="Path 120" d="M256.831,414.57c.453.526.755.937.755.937l-.9,2.664s-.506-.357-1.145-.92a5.213,5.213,0,0,1,1.026-2.34A3.1,3.1,0,0,1,256.831,414.57Z" transform="translate(215.776 -69.249)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_121" data-name="Path 121" d="M265.4,412.088a12.9,12.9,0,0,1-.887,1.043,13.967,13.967,0,0,1-.162-1.4,1.807,1.807,0,0,1,1.049.357Z" transform="translate(209.882 -67.349)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_122" data-name="Path 122" d="M263.826,423.624l-2.264.993a13.76,13.76,0,0,1-1.2-.682c-2.38-1.466-7.162-5.15-3.955-9.493s5.882,3.449,6.934,7.255C263.671,422.84,263.826,423.624,263.826,423.624Z" transform="translate(215.916 -68.308)" fill="#f1f5f9"/>
|
||||
<path id="Path_123" data-name="Path 123" d="M299.22,414.643a1.844,1.844,0,0,1,1.248-.563c-.026.877-.113,1.575-.113,1.575a11.266,11.266,0,0,1-1.135-1.012Z" transform="translate(186.553 -68.921)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_124" data-name="Path 124" d="M308.213,417.581a6.692,6.692,0,0,1-.8.288l-1.072-1.506a10.935,10.935,0,0,1,.444-1.463,3.83,3.83,0,0,1,1.428,2.681Z" transform="translate(181.79 -69.47)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_125" data-name="Path 125" d="M285.8,427.814l-.381.066c-7.589,1.155-2.5-2.939-2.5-2.939s.331-.314.8-.831c.917-1.009,2.294-2.78,2.453-4.415.238-2.459.513-4.766,3.416-4.088C292.452,416.272,293,426.374,285.8,427.814Z" transform="translate(198.577 -69.862)" fill="#f1f5f9"/>
|
||||
<rect id="Rectangle_60" data-name="Rectangle 60" width="14.5" height="3.813" transform="translate(469.747 376.844)" fill="#474157"/>
|
||||
<rect id="Rectangle_61" data-name="Rectangle 61" width="18.946" height="13.306" transform="translate(467.443 364.452)" fill="#474157"/>
|
||||
<rect id="Rectangle_62" data-name="Rectangle 62" width="14.5" height="3.813" transform="translate(469.608 376.844)" fill="#334155" opacity="0.1"/>
|
||||
<rect id="Rectangle_63" data-name="Rectangle 63" width="18.946" height="13.306" transform="translate(467.384 364.455)" fill="#334155" opacity="0.1"/>
|
||||
<rect id="Rectangle_64" data-name="Rectangle 64" width="14.5" height="3.813" transform="translate(470.7 376.844)" fill="#1e293b"/>
|
||||
<path id="Path_126" data-name="Path 126" d="M273.539,439c.331,1.139.49,1.923.49,1.923l-2.264.993a13.763,13.763,0,0,1-1.2-.682A5.677,5.677,0,0,1,273.539,439Z" transform="translate(205.727 -85.593)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_127" data-name="Path 127" d="M285.8,445.244l-.381.066c-7.589,1.155-2.5-2.939-2.5-2.939s.331-.314.8-.831a5,5,0,0,1,2.081,3.7Z" transform="translate(198.577 -87.292)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_128" data-name="Path 128" d="M257.76,451.555s4.25-15.225,10.211-10.525-2.426,11.915-2.426,11.915Z" transform="translate(214.291 -86.348)" fill="#f1f5f9"/>
|
||||
<circle id="Ellipse_44" data-name="Ellipse 44" cx="0.477" cy="0.477" r="0.477" transform="translate(473.719 348.045)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_45" data-name="Ellipse 45" cx="0.477" cy="0.477" r="0.477" transform="translate(473.679 350.273)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_46" data-name="Ellipse 46" cx="0.477" cy="0.477" r="0.477" transform="translate(487.504 348.482)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_47" data-name="Ellipse 47" cx="0.477" cy="0.477" r="0.477" transform="translate(476.38 359.884)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_48" data-name="Ellipse 48" cx="0.477" cy="0.477" r="0.477" transform="translate(486.511 352.179)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_49" data-name="Ellipse 49" cx="0.477" cy="0.477" r="0.477" transform="translate(481.586 357.104)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_50" data-name="Ellipse 50" cx="0.477" cy="0.477" r="0.477" transform="translate(475.347 348.998)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_51" data-name="Ellipse 51" cx="0.477" cy="0.477" r="0.477" transform="translate(486.194 349.915)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_52" data-name="Ellipse 52" cx="0.477" cy="0.477" r="0.477" transform="translate(484.565 353.609)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_53" data-name="Ellipse 53" cx="0.477" cy="0.477" r="0.477" transform="translate(479.557 359.527)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_54" data-name="Ellipse 54" cx="0.477" cy="0.477" r="0.477" transform="translate(478.525 357.184)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_55" data-name="Ellipse 55" cx="0.477" cy="0.477" r="0.477" transform="translate(476.062 351.901)" fill="#1e293b" opacity="0.1"/>
|
||||
<rect id="Rectangle_65" data-name="Rectangle 65" width="14.5" height="1.393" transform="translate(470.7 376.844)" opacity="0.1"/>
|
||||
<rect id="Rectangle_66" data-name="Rectangle 66" width="18.946" height="13.306" transform="translate(468.397 364.452)" fill="#1e293b"/>
|
||||
<circle id="Ellipse_56" data-name="Ellipse 56" cx="0.477" cy="0.477" r="0.477" transform="translate(480.193 361.672)" fill="#1e293b" opacity="0.1"/>
|
||||
<circle id="Ellipse_57" data-name="Ellipse 57" cx="0.477" cy="0.477" r="0.477" transform="translate(477.333 362.268)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_129" data-name="Path 129" d="M399.263,626s2.36,3.088-1.089,7.748-6.289,8.606-5.15,11.505c0,0,5.21-8.659,9.45-8.778S403.927,631.21,399.263,626Z" transform="translate(123.968 -210.699)" fill="#f1f5f9"/>
|
||||
<path id="Path_130" data-name="Path 130" d="M399.525,626a3.8,3.8,0,0,1,.483.967c4.134,4.859,6.338,9.393,2.363,9.509-3.7.116-8.146,6.736-9.211,8.39.036.129.079.258.126.381,0,0,5.21-8.659,9.45-8.778S404.188,631.21,399.525,626Z" transform="translate(123.706 -210.699)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_131" data-name="Path 131" d="M424.553,636.492c0,1.086-.122,1.966-.271,1.966s-.271-.88-.271-1.966.152-.576.3-.576S424.553,635.4,424.553,636.492Z" transform="translate(103.067 -217.252)" fill="#475569"/>
|
||||
<path id="Path_132" data-name="Path 132" d="M426.437,640.312c-.953.52-1.784.834-1.857.7s.642-.662,1.6-1.182.576-.142.662,0S427.393,639.793,426.437,640.312Z" transform="translate(102.689 -219.775)" fill="#475569"/>
|
||||
<path id="Path_133" data-name="Path 133" d="M363.985,626s-2.36,3.088,1.089,7.748,6.289,8.606,5.147,11.505c0,0-5.206-8.659-9.446-8.778S359.321,631.21,363.985,626Z" transform="translate(146.771 -210.699)" fill="#f1f5f9"/>
|
||||
<path id="Path_134" data-name="Path 134" d="M363.985,626a3.8,3.8,0,0,0-.483.967c-4.134,4.859-6.338,9.393-2.363,9.509,3.7.116,8.146,6.736,9.211,8.39a3.669,3.669,0,0,1-.129.381s-5.206-8.655-9.446-8.768S359.321,631.21,363.985,626Z" transform="translate(146.771 -210.699)" fill="#1e293b" opacity="0.1"/>
|
||||
<path id="Path_135" data-name="Path 135" d="M361.44,636.492c0,1.086.122,1.966.271,1.966s.271-.88.271-1.966-.152-.576-.3-.576S361.44,635.4,361.44,636.492Z" transform="translate(144.927 -217.252)" fill="#475569"/>
|
||||
<path id="Path_136" data-name="Path 136" d="M355.691,640.312c.953.52,1.784.834,1.857.7s-.642-.662-1.6-1.182-.576-.142-.662,0S354.734,639.793,355.691,640.312Z" transform="translate(149.17 -219.775)" fill="#475569"/>
|
||||
<path id="Ellipse_58" data-name="Ellipse 58" d="M24.691,0C38.327,0,49.382,1.7,49.382,3.79S38.327,7.58,24.691,7.58,0,5.883,0,3.79,11.055,0,24.691,0Z" transform="translate(492.3 450.604)" fill="#f1f5f9" opacity="0.077"/>
|
||||
<path id="Path_137" data-name="Path 137" d="M380.556,668.693l-.119.963-.166,1.364-.066.566-.169,1.364-.07.569-.165,1.36-1.873,15.49c-.169,1.383-2.429,2.459-5.153,2.459h-9.837c-2.727,0-4.965-1.076-5.15-2.459l-1.893-15.49-.165-1.36-.069-.569-.169-1.364-.066-.566-.165-1.364-.119-.963c-.1-.781,1.125-1.443,2.671-1.443H377.89C379.427,667.25,380.652,667.912,380.556,668.693Z" transform="translate(149.146 -238.296)" fill="#1e293b"/>
|
||||
<path id="Path_138" data-name="Path 138" d="M280.188,623.15l-.165,1.36H255.176l-.165-1.36Z" transform="translate(249.394 -191.79)" fill="#334155"/>
|
||||
<path id="Path_139" data-name="Path 139" d="M280.425,628.98l-.165,1.364H255.88l-.169-1.364Z" transform="translate(248.926 -195.69)" fill="#334155"/>
|
||||
<path id="Path_140" data-name="Path 140" d="M280.668,634.81l-.165,1.364H256.6l-.165-1.364Z" transform="translate(248.444 -199.59)" fill="#334155"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 275 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="311.899" height="291.707" viewBox="0 0 311.899 291.707">
|
||||
<g id="Icon_ionic-ios-apps" data-name="Icon ionic-ios-apps" transform="translate(-4.57 -4.492)">
|
||||
<path id="Path_9" data-name="Path 9" d="M305.678,64.318,184.327,9a65.721,65.721,0,0,0-47.842,0L15.22,64.318c-14.293,6.5-14.293,17.117,0,23.639l120.221,54.826a69.059,69.059,0,0,0,50.033,0L305.687,87.956C319.971,81.46,319.971,70.822,305.678,64.318Z" transform="translate(0.07)" fill="#fff" opacity="0.999"/>
|
||||
<g id="Group_1" data-name="Group 1" transform="translate(4.533 135.941)">
|
||||
<path id="Path_10" data-name="Path 10" d="M108.2,53.266,44,24a10.438,10.438,0,0,0-8.553,0L12.99,34.227c-11.32,5.145-11.32,13.556,0,18.721l95.21,43.42a54.692,54.692,0,0,0,39.625,0l95.2-43.42c11.32-5.148,11.32-13.556,0-18.721L220.582,24a10.438,10.438,0,0,0-8.553,0l-64.2,29.268a54.692,54.692,0,0,1-39.625,0Z" transform="translate(28.02 60.176)" fill="#fff" opacity="0.5"/>
|
||||
<path id="Path_11" data-name="Path 11" d="M274.692,27.406l-23.1-10.493a11.652,11.652,0,0,0-9.618,0l-78.68,35.625a64.317,64.317,0,0,1-37.812,0L46.815,16.914a11.652,11.652,0,0,0-9.618,0L14.108,27.407c-12.819,5.825-12.819,15.351,0,21.2L121.925,97.783a61.937,61.937,0,0,0,44.874,0L274.615,48.608C287.51,42.773,287.51,33.232,274.692,27.406Z" transform="translate(11.592 -15.875)" fill="#fff" opacity="0.75"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="280.056" height="304.433" viewBox="0 0 280.056 304.433">
|
||||
<g id="Group_2" data-name="Group 2" transform="translate(-104.693 -1.265)">
|
||||
<rect id="Rectangle_76" data-name="Rectangle 76" width="4.104" height="33.821" rx="0.751" transform="matrix(0.788, -0.616, 0.616, 0.788, 250.1, 52.551)" fill="#3f3d56"/>
|
||||
<path id="Rectangle_80" data-name="Rectangle 80" d="M12.78,0H124.507a12.78,12.78,0,0,1,12.78,12.78V266.236a12.78,12.78,0,0,1-12.78,12.78H12.78A12.78,12.78,0,0,1,0,266.236V12.78A12.78,12.78,0,0,1,12.78,0Z" transform="matrix(0.788, -0.616, 0.616, 0.788, 104.693, 85.834)" fill="#475569"/>
|
||||
<path id="Path_176" data-name="Path 176" d="M109.443,0H93.695V1.894a8.976,8.976,0,0,1-8.981,8.976H34.63a8.976,8.976,0,0,1-8.981-8.976V0H10.9A10.9,10.9,0,0,0,0,10.9V253.6a10.9,10.9,0,0,0,10.9,10.9h98.54a10.9,10.9,0,0,0,10.9-10.9V10.922A10.9,10.9,0,0,0,109.443,0Z" transform="matrix(0.788, -0.616, 0.616, 0.788, 116.052, 86.183)" fill="#f1f5f9"/>
|
||||
<rect id="Rectangle_81" data-name="Rectangle 81" width="19.171" height="3.891" rx="1.269" transform="matrix(0.788, -0.616, 0.616, 0.788, 153.48, 58.292)" fill="#e6e8ec"/>
|
||||
<circle id="Ellipse_5" data-name="Ellipse 5" cx="2.209" cy="2.209" r="2.209" transform="matrix(0.788, -0.616, 0.616, 0.788, 170.71, 44.496)" fill="#e6e8ec"/>
|
||||
<circle id="Ellipse_11" data-name="Ellipse 11" cx="25.971" cy="25.971" r="25.971" transform="matrix(0.788, -0.616, 0.616, 0.788, 210.99, 151.214)" fill="#fff"/>
|
||||
<path id="Path_222" data-name="Path 222" d="M69.422,34.712A34.711,34.711,0,1,1,34.711,0,34.711,34.711,0,0,1,69.422,34.712ZM30.7,53.085,56.448,27.337a2.237,2.237,0,0,0,0-3.168L53.28,21.024a2.233,2.233,0,0,0-3.164,0l-21,21L19.31,32.2a2.246,2.246,0,0,0-3.168,0l-3.168,3.187a2.247,2.247,0,0,0,0,3.168L27.532,53.1a2.237,2.237,0,0,0,3.168,0Z" transform="matrix(0.788, -0.616, 0.616, 0.788, 196.054, 147.189)" fill="#94a3b8"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,32 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="251.014" height="317.588" viewBox="0 0 251.014 317.588">
|
||||
<defs>
|
||||
<linearGradient id="linear-gradient" x1="0.505" y1="1.007" x2="0.505" gradientUnits="objectBoundingBox">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="0.251"/>
|
||||
<stop offset="0.54" stop-color="gray" stop-opacity="0.122"/>
|
||||
<stop offset="1" stop-color="gray" stop-opacity="0.102"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Group_1" data-name="Group 1" transform="translate(-125.954 18.154)">
|
||||
<rect id="Rectangle_77" data-name="Rectangle 77" width="3.785" height="18.307" rx="1.276" transform="translate(287.945 23.197) rotate(-11)" fill="#3f3d56"/>
|
||||
<rect id="Rectangle_78" data-name="Rectangle 78" width="4.265" height="31.863" rx="1.276" transform="translate(294.207 56.13) rotate(-11)" fill="#3f3d56"/>
|
||||
<rect id="Rectangle_79" data-name="Rectangle 79" width="4.059" height="32.137" rx="1.276" transform="translate(302.481 98.339) rotate(-11)" fill="#3f3d56"/>
|
||||
<path id="Path_190" data-name="Path 190" d="M0,0A.7.7,0,0,0,.83.107,2.943,2.943,0,0,1,0,0Z" transform="translate(269.32 191.355) rotate(-11)" fill="url(#linear-gradient)"/>
|
||||
<path id="Path_192" data-name="Path 192" d="M43.471,0l-.819,4.463L42.02,7.877l-1.15,6.245L29.721,21.927s-1-.86-2.663-2.216C22.489,15.948,12.885,8.288,5.834,4.175A23.753,23.753,0,0,0,0,1.487Z" transform="translate(259.796 205.712) rotate(-11)" fill="#f8d4d4"/>
|
||||
<path id="Path_194" data-name="Path 194" d="M44.318,12.282s13,2.231,13.761-3.32S51.388.41,45.072.037.849,2.268.849,2.268s-6.686,8.918,17.462,10.41Z" transform="translate(249.226 198.636) rotate(-11)" fill="#1e293b"/>
|
||||
<rect id="Rectangle_82" data-name="Rectangle 82" width="68.005" height="80.639" transform="translate(221.269 29.959) rotate(-11)" fill="#334155"/>
|
||||
<path id="Path_198" data-name="Path 198" d="M25.9,6.7a10.913,10.913,0,0,0-4.142,2.932C14.9,16.42,5.088,32.343,5.088,32.343-7.462,17.39,6.426,5.582,12.345,1.523,13.785.541,14.751,0,14.751,0Z" transform="translate(142.668 179.037) rotate(-11)" fill="#f8d4d4"/>
|
||||
<path id="Path_199" data-name="Path 199" d="M36.043,0s3.346,23.41,14.865,28.984S36.043,44.976,36.043,44.976L0,31.588S20.44,24.9,16.35,5.2Z" transform="translate(236.89 52.85) rotate(-11)" fill="#f8d4d4"/>
|
||||
<path id="Path_200" data-name="Path 200" d="M43.508,0l-.815,4.448L42.03,7.875,40.88,14.12l-11.149,7.8s-1-.853-2.663-2.208C22.5,15.947,12.9,8.286,5.834,4.174A23.6,23.6,0,0,0,0,1.486Z" transform="translate(218.498 199.899) rotate(-11)" fill="#f8d4d4"/>
|
||||
<path id="Path_202" data-name="Path 202" d="M43.03,14.445S54.7,14.527,55.4,8.96,49.041.408,43.03.035.5,2.439.5,2.439s-5.181,10.515,17.79,12Z" transform="translate(207.79 192.853) rotate(-11)" fill="#334155"/>
|
||||
<path id="Path_204" data-name="Path 204" d="M89.962,101.836c-.51-.251-1.021-.51-1.523-.761l-1.371-1.729-17.98-22.8v.4c-.122,3.808-1.416,33.98-11.514,36.767-10.776,2.97-23.775,3.716-29.7-16.35S11.119,33.446,0,30.842L16.54,17.279s10.951,12.809,15.413,25.07c-.167-.761-7.73-36.1-1.523-42.349H84.694s8.377,23.859,14.119,35.678c4.47,9.177,11.179,30.873,15.5,45.555C118.588,95.728,103.563,108.53,89.962,101.836Z" transform="translate(242.03 186.268) rotate(-11)" fill="#475569"/>
|
||||
<path id="Path_205" data-name="Path 205" d="M60.518,52.029C52.141,56.986,15.366,54.965,3.4,54.161L.14,53.925c-.35,0,.053-.2.053-.2l.335-3.374L9.449,27.69,57.2,0c-.968,2.917-1.287,7.38-1.211,12.489C56.208,28.908,60.518,52.029,60.518,52.029Z" transform="translate(260.759 136.409) rotate(-11)" opacity="0.1"/>
|
||||
<path id="Path_206" data-name="Path 206" d="M60.916,52.005C52.539,56.963,15.764,54.941,3.8,54.138L.54,53.909,0,53.863l.594-.152L3.53,52.95,9.843,27.682,57.591,0C56.624,2.917,56.3,7.38,56.38,12.489,56.6,28.893,60.916,52.005,60.916,52.005Z" transform="translate(260.16 135.409) rotate(-11)" fill="#cbd5e1"/>
|
||||
<path id="Path_208" data-name="Path 208" d="M2.406,0,13.555,6.686A10.914,10.914,0,0,0,9.413,9.618C8.484,6.907,2.653,3.122,0,1.508,1.439.541,2.406,0,2.406,0Z" transform="translate(154.789 176.698) rotate(-11)" opacity="0.1"/>
|
||||
<path id="Path_209" data-name="Path 209" d="M.761.107A.662.662,0,0,1,0,0,2.642,2.642,0,0,0,.761.107Z" transform="translate(268.311 189.076) rotate(-11)" opacity="0.1"/>
|
||||
<path id="Path_210" data-name="Path 210" d="M135.295,56.833s-10.037,1.112-17.1-6.321c0,0-29.7,8.552-39.76,27.872S0,135.614,0,135.614s11.9,6.686,10.776,10.029L55.744,119.63s15.992-11.514,20.432-14.119,28.992-18.581,34.193,24.895,0,38.275,0,38.275,7.433,2.6,18.208-18.208,44.215-25.641,44.215-25.641l1.858-21.917s6.633-14.53,1.523-20.561a12.946,12.946,0,0,1-2.978-6.29c-.845-5.567-.313-12.841,11.521-20.548,18.208-11.9,37.109-18.43,29.657-27.4s-55.228-42.823-55.228-42.823L148.124,2.658S192,26.711,191.085,30.723c-7.252,5.121-31.631,15.312-45.785,14.961C145.3,45.684,147.928,56.46,135.295,56.833Z" transform="translate(128.76 43.985) rotate(-11)" fill="#94a3b8"/>
|
||||
<path id="Path_211" data-name="Path 211" d="M22.2,9.081A72.58,72.58,0,0,1,20.143,0L.449,5.2A21.591,21.591,0,0,1,0,16.565,21.179,21.179,0,0,0,22.2,9.078Z" transform="translate(252.344 50.975) rotate(-11)" opacity="0.1"/>
|
||||
<circle id="Ellipse_10" data-name="Ellipse 10" cx="21.179" cy="21.179" r="21.179" transform="translate(232.292 28.197) rotate(-11)" fill="#f8d4d4"/>
|
||||
<path id="Path_213" data-name="Path 213" d="M0,0S12.261,24.156,8.544,31.581" transform="translate(312.28 207.976) rotate(-11)" opacity="0.1"/>
|
||||
<path id="Path_221" data-name="Path 221" d="M57.637.16C63.515.83,69.1,3.35,74.886,4.729a8.56,8.56,0,0,0,4.463.167c2.246-.693,4.074-3.046,6.4-2.978,1.434.046,2.7,1.021,3.884,1.957a47.776,47.776,0,0,1,5.331,4.752c3.99,4.333,6.465,10.167,10.1,14.881S119.433,31.9,124.6,29.733c-3.513,13.712-20.022,24.138-32.488,24.991-4.973.341-10.068-.693-14.881.761a12.894,12.894,0,0,1-3.755.914c-2.772,0-5-2.543-6.732-5.018C62.7,45.563,59.494,38.96,54.932,33.652c-1.523-1.759-3.282-3.427-5.414-3.746s-4.089.7-5.985,1.683c-3.13,1.622-6.328,3.3-8.757,6.092S30.815,44.6,31.82,48.343c.541,2.026,1.775,3.854,1.8,5.97.046,3.381-2.936,5.849-3.526,9.138a34.266,34.266,0,0,0-.145,4.158c-.259,4.506-3.209,8.193-6.282,11.034-1.2,1.1-2.526,2.285-2.879,3.983-.236,1.165,0,2.39-.152,3.572-.449,2.924-3.366,4.409-5.948,4.79A17.157,17.157,0,0,1,5.763,89.93c3.61-1.707,5.834-6.564,5-10.913-1.15-6.032-7.212-10.365-6.691-16.5a19.119,19.119,0,0,1,1.676-5.429A49.745,49.745,0,0,0,8.6,46.8a17.334,17.334,0,0,0-.175-8.2c-.761-2.361-2.353-4.241-3.7-6.237A35.466,35.466,0,0,1,.441,23.578a6.177,6.177,0,0,1-.41-2.909A6,6,0,0,1,1.9,17.661c3.313-3.482,6.854-7.1,11.294-8.1A25.42,25.42,0,0,1,19.6,9.322,75.68,75.68,0,0,0,30.741,8.85c3.046-.358,8.193-.312,10.776-2.285,2.406-1.844,3.762-4.158,6.724-5.331A19.8,19.8,0,0,1,57.641.16Z" transform="translate(202.236 5.622) rotate(-11)" fill="#475569"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.7 KiB |
@@ -0,0 +1,122 @@
|
||||
<script setup lang="ts">
|
||||
import { useRouter } from 'vue-router'
|
||||
import { Box } from '@/components/ui/box'
|
||||
import { Lucide } from '@/components/ui/lucide'
|
||||
import {
|
||||
ComboboxRoot,
|
||||
ComboboxControl,
|
||||
ComboboxTrigger,
|
||||
ComboboxContent,
|
||||
ComboboxItemGroup,
|
||||
ComboboxItem,
|
||||
ComboboxItemText,
|
||||
} from '@/components/ui/combobox'
|
||||
import { logout } from '@/modules/auth'
|
||||
import { useImpersonate } from '@/modules/user/composables/useImpersonate'
|
||||
import { useAuthStore } from '@/stores/auth'
|
||||
import { useRoleSwitcher } from '@/composables/useRoleSwitcher'
|
||||
|
||||
interface Props {
|
||||
class?: string
|
||||
boxClass?: string
|
||||
}
|
||||
|
||||
const props = defineProps<Props>()
|
||||
const router = useRouter()
|
||||
const authStore = useAuthStore()
|
||||
|
||||
const {
|
||||
canSwitchRole,
|
||||
roleCollection,
|
||||
roleComboValue,
|
||||
switchingRole,
|
||||
onRoleValueChange,
|
||||
onRoleInputValueChange,
|
||||
} = useRoleSwitcher()
|
||||
|
||||
const { impersonating, loading: impersonateLoading, stopImpersonation } = useImpersonate()
|
||||
|
||||
const goToProfile = (event: MouseEvent) => {
|
||||
event.preventDefault()
|
||||
router.push({ name: 'profile-overview-2' })
|
||||
}
|
||||
|
||||
const handleLogout = async (event: MouseEvent) => {
|
||||
event.preventDefault()
|
||||
|
||||
if (impersonating.value || impersonateLoading.value) {
|
||||
return
|
||||
}
|
||||
|
||||
try {
|
||||
await logout()
|
||||
} catch {
|
||||
// Still redirect to login if the session is already invalid.
|
||||
}
|
||||
|
||||
authStore.clearSession()
|
||||
await router.push({ name: 'login' })
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-bind="$attrs" :class="[
|
||||
'invisible opacity-0 scale-95 transition-all duration-200 delay-0 group-hover/profile:visible group-hover/profile:opacity-100 group-hover/profile:scale-100 group-hover/profile:delay-200',
|
||||
props.class,
|
||||
]">
|
||||
<Box
|
||||
:class="`text-foreground before:shadow-foreground/5 flex w-64 flex-col gap-2.5 px-6 py-5 before:rounded-2xl before:shadow-xl before:backdrop-blur after:rounded-2xl ${props.boxClass ?? ''}`">
|
||||
<div class="flex flex-col gap-0.5">
|
||||
<div class="font-medium">
|
||||
Selamat Datang, {{ authStore.userName }}
|
||||
</div>
|
||||
<div v-if="authStore.userActiveRole" class="text-xs opacity-70">
|
||||
{{ authStore.userActiveRole }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<template v-if="canSwitchRole">
|
||||
<div class="bg-foreground/5 h-px"></div>
|
||||
<div class="flex flex-col gap-1.5">
|
||||
<div class="text-xs font-medium opacity-70">Tukar Peranan</div>
|
||||
<ComboboxRoot class="w-full" :collection="roleCollection" :value="roleComboValue"
|
||||
:disabled="switchingRole || authStore.loading" @value-change="onRoleValueChange"
|
||||
@input-value-change="onRoleInputValueChange">
|
||||
<ComboboxControl>
|
||||
<ComboboxTrigger class="w-full" />
|
||||
</ComboboxControl>
|
||||
<ComboboxContent class="w-(--reference-width)">
|
||||
<ComboboxItemGroup>
|
||||
<ComboboxItem v-for="item in roleCollection.items" :key="item.value" :item="item">
|
||||
<ComboboxItemText>{{ item.label }}</ComboboxItemText>
|
||||
</ComboboxItem>
|
||||
</ComboboxItemGroup>
|
||||
</ComboboxContent>
|
||||
</ComboboxRoot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<div class="bg-foreground/5 h-px"></div>
|
||||
|
||||
<div class="flex flex-col gap-0.5">
|
||||
<a class="hover:bg-foreground/5 -mx-3 flex gap-2.5 rounded-lg px-4 py-1.5" href="" @click="goToProfile">
|
||||
<Lucide icon="Users" /> Profil
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="bg-foreground/5 h-px"></div>
|
||||
|
||||
<div class="flex flex-col gap-0.5">
|
||||
<a v-if="impersonating" href="" class="hover:bg-foreground/5 -mx-3 flex gap-2.5 rounded-lg px-4 py-1.5"
|
||||
:class="{ 'pointer-events-none opacity-50': impersonateLoading }" @click.prevent="stopImpersonation">
|
||||
<Lucide icon="VenetianMask" /> Keluar Penyamaran
|
||||
</a>
|
||||
<a class="hover:bg-foreground/5 -mx-3 flex gap-2.5 rounded-lg px-4 py-1.5"
|
||||
:class="(impersonating || impersonateLoading) && 'pointer-events-none cursor-not-allowed opacity-40'" href=""
|
||||
:aria-disabled="impersonating || impersonateLoading" @click="handleLogout">
|
||||
<Lucide icon="Power" /> Log Keluar
|
||||
</a>
|
||||
</div>
|
||||
</Box>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,66 @@
|
||||
<script setup lang="ts">
|
||||
import { Lucide } from '@/components/ui/lucide'
|
||||
import { useAuthStore } from '@/stores/auth'
|
||||
|
||||
interface Props {
|
||||
class?: string
|
||||
innerClass?: any
|
||||
avatarClass?: string
|
||||
textClass?: string
|
||||
}
|
||||
|
||||
const props = defineProps<Props>()
|
||||
const authStore = useAuthStore()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div :class="['side-menu__account group/profile transition-[width]', props.class]">
|
||||
<div :class="['flex cursor-pointer items-center transition', props.innerClass]">
|
||||
<div :class="[
|
||||
'relative flex-none overflow-hidden rounded-full border-4',
|
||||
props.avatarClass ?? 'h-10 w-10 border-background/20 dark:border-foreground/20',
|
||||
]">
|
||||
<img v-if="authStore.userImageUrl" class="absolute top-0 h-full w-full object-cover"
|
||||
:src="authStore.userImageUrl" :alt="authStore.userName" />
|
||||
<div v-else
|
||||
class="bg-primary text-primary-foreground absolute inset-0 flex items-center justify-center text-sm font-medium">
|
||||
{{ authStore.userName }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="ms-3 flex w-full items-center gap-3 overflow-hidden transition-opacity
|
||||
group-[.side-menu--collapsed]:group-hover:opacity-100
|
||||
xl:group-[.side-menu--collapsed]:opacity-0">
|
||||
<div :class="['flex-1 min-w-0', props.textClass]">
|
||||
<!-- Name + Active Role -->
|
||||
<div class="flex items-center gap-2">
|
||||
<div class="truncate font-semibold text-sm">
|
||||
{{ authStore.userName }}
|
||||
</div>
|
||||
|
||||
<span class="shrink-0 rounded-full bg-green-500 px-2 py-0.5 text-[10px] font-medium text-white">
|
||||
{{ authStore.userActiveRole }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<!-- Position -->
|
||||
<div class="mt-0.5 truncate text-xs text-slate-500">
|
||||
<span class="font-medium text-slate-600">Jawatan:</span>
|
||||
{{ authStore.userPosition }}
|
||||
</div>
|
||||
|
||||
<!-- Roles Summary -->
|
||||
<div class="mt-2 flex items-center gap-1 text-[11px] text-slate-500">
|
||||
<Lucide icon="Shield" class="h-3 w-3" />
|
||||
<span class="truncate">
|
||||
{{authStore.roles.map(role => role.name).join(' • ')}}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Lucide icon="ChevronRight"
|
||||
class="h-4 w-4 flex-none text-slate-400 transition-transform group-hover:translate-x-1" />
|
||||
</div>
|
||||
</div>
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,2 @@
|
||||
export { default as AccountDropdown } from './AccountDropdown.vue'
|
||||
export { default as AccountTrigger } from './AccountTrigger.vue'
|
||||
@@ -0,0 +1,99 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
import type { Chart as ChartInstance } from 'chart.js'
|
||||
|
||||
// Fake visitor data
|
||||
const chartData = new Array(40).fill(0).map((data, key) => {
|
||||
if (key % 3 == 0 || key % 5 == 0) {
|
||||
return Math.ceil(Math.random() * (0 - 20) + 20)
|
||||
} else {
|
||||
return Math.ceil(Math.random() * (0 - 7) + 7)
|
||||
}
|
||||
})
|
||||
|
||||
// Fake visitor bar color
|
||||
const chartColor = () =>
|
||||
chartData.map((data) => {
|
||||
if (data >= 8 && data <= 14) {
|
||||
return getColor('--color-primary', 0.5)
|
||||
} else if (data >= 15) {
|
||||
return getColor('--color-primary', 0.6)
|
||||
}
|
||||
|
||||
return getColor('--color-primary', 0.4)
|
||||
})
|
||||
|
||||
const getRef = (chart: ChartInstance<'bar'>) => {
|
||||
setInterval(() => {
|
||||
const datasets = chart.data.datasets[0]
|
||||
if (datasets) {
|
||||
// Swap visitor data
|
||||
let newData = datasets.data[0]
|
||||
datasets.data.shift()
|
||||
newData !== undefined && datasets.data.push(newData)
|
||||
|
||||
// Swap visitor bar color
|
||||
if (datasets.backgroundColor && Array.isArray(datasets.backgroundColor)) {
|
||||
let newColor = datasets.backgroundColor[0]
|
||||
datasets.backgroundColor.shift()
|
||||
datasets.backgroundColor.push(newColor)
|
||||
}
|
||||
}
|
||||
|
||||
chart.update()
|
||||
}, 1000)
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'bar',
|
||||
data: {
|
||||
labels: chartData,
|
||||
datasets: [
|
||||
{
|
||||
label: 'Html Template',
|
||||
barThickness: 6,
|
||||
data: chartData,
|
||||
backgroundColor: chartColor(),
|
||||
borderColor: () => getColor('--color-primary', 0.1),
|
||||
borderWidth: 0.8,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
y: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
:get-ref="getRef"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,85 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'bar',
|
||||
data: {
|
||||
labels: [
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
'Apr',
|
||||
'May',
|
||||
'Jun',
|
||||
'Jul',
|
||||
'Aug',
|
||||
'Sep',
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec',
|
||||
],
|
||||
datasets: [
|
||||
{
|
||||
label: 'Html Template',
|
||||
barThickness: 8,
|
||||
maxBarThickness: 6,
|
||||
data: [60, 150, 30, 200, 180, 50, 180, 120, 230, 180, 250, 270],
|
||||
backgroundColor: () => getColor('--color-primary', 0.3),
|
||||
borderColor: () => getColor('--color-primary', 0.6),
|
||||
borderWidth: 0.5,
|
||||
},
|
||||
{
|
||||
label: 'VueJs Template',
|
||||
barThickness: 8,
|
||||
maxBarThickness: 6,
|
||||
data: [50, 135, 40, 180, 190, 60, 150, 90, 250, 170, 240, 250],
|
||||
backgroundColor: () => getColor('--color-foreground', 0.2),
|
||||
borderColor: () => getColor('--color-foreground', 0.3),
|
||||
borderWidth: 0.5,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
ticks: {
|
||||
font: {
|
||||
size: 11,
|
||||
},
|
||||
color: () => getColor('--color-foreground', 0.5),
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
y: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
color: () => getColor('--color-foreground', 0.2),
|
||||
},
|
||||
border: {
|
||||
dash: [2, 2],
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,43 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'doughnut',
|
||||
data: {
|
||||
labels: ['Html', 'Vuejs', 'Laravel'],
|
||||
datasets: [
|
||||
{
|
||||
data: [15, 10, 65],
|
||||
backgroundColor: [
|
||||
getColor('--color-pending', 0.4),
|
||||
getColor('--color-primary', 0.4),
|
||||
getColor('--color-warning', 0.4),
|
||||
],
|
||||
borderWidth: 1,
|
||||
borderColor: [
|
||||
getColor('--color-pending', 0.9),
|
||||
getColor('--color-primary', 0.9),
|
||||
getColor('--color-warning', 0.9),
|
||||
],
|
||||
offset: 20,
|
||||
borderRadius: 5,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
cutout: '85%',
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,43 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'doughnut',
|
||||
data: {
|
||||
labels: ['Yellow', 'Dark'],
|
||||
datasets: [
|
||||
{
|
||||
data: [15, 10, 65],
|
||||
backgroundColor: [
|
||||
getColor('--color-pending', 0.4),
|
||||
getColor('--color-warning', 0.4),
|
||||
getColor('--color-primary', 0.4),
|
||||
],
|
||||
borderWidth: 1,
|
||||
borderColor: [
|
||||
getColor('--color-pending', 0.9),
|
||||
getColor('--color-warning', 0.9),
|
||||
getColor('--color-primary', 0.9),
|
||||
],
|
||||
offset: 20,
|
||||
borderRadius: 5,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
cutout: '83%',
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,92 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: [
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
'Apr',
|
||||
'May',
|
||||
'Jun',
|
||||
'Jul',
|
||||
'Aug',
|
||||
'Sep',
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec',
|
||||
],
|
||||
datasets: [
|
||||
{
|
||||
label: '# of Votes',
|
||||
data: [0, 200, 250, 200, 700, 550, 650, 1050, 950, 1100, 900, 1200],
|
||||
borderWidth: 1.5,
|
||||
borderColor: () => getColor('--color-primary', 0.5),
|
||||
backgroundColor: 'transparent',
|
||||
pointBorderColor: 'transparent',
|
||||
tension: 0.3,
|
||||
},
|
||||
{
|
||||
label: '# of Votes',
|
||||
data: [0, 300, 400, 560, 320, 600, 720, 850, 690, 805, 1200, 1010],
|
||||
borderWidth: 1.5,
|
||||
borderDash: [1, 4],
|
||||
borderColor: () => getColor('--color-foreground'),
|
||||
backgroundColor: 'transparent',
|
||||
pointBorderColor: 'transparent',
|
||||
tension: 0.3,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
ticks: {
|
||||
font: {
|
||||
size: 12,
|
||||
},
|
||||
color: () => getColor('--color-foreground', 0.5),
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
y: {
|
||||
ticks: {
|
||||
font: {
|
||||
size: 12,
|
||||
},
|
||||
color: () => getColor('--color-foreground', 0.5),
|
||||
callback: function (value, index, values) {
|
||||
return '$' + value
|
||||
},
|
||||
},
|
||||
grid: {
|
||||
color: () => getColor('--color-foreground', 0.2),
|
||||
},
|
||||
border: {
|
||||
dash: [2, 2],
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,72 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: [
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
'Apr',
|
||||
'May',
|
||||
'Jun',
|
||||
'Jul',
|
||||
'Aug',
|
||||
'Sep',
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec',
|
||||
],
|
||||
datasets: [
|
||||
{
|
||||
label: '# of Votes',
|
||||
data: [0, 200, 250, 200, 500, 450, 850, 1050, 950, 1100, 900, 1200],
|
||||
borderWidth: 1,
|
||||
borderColor: () => getColor('--color-primary', 0.8),
|
||||
backgroundColor: 'transparent',
|
||||
pointBorderColor: 'transparent',
|
||||
tension: 0.4,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
y: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,82 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: [
|
||||
'Jan',
|
||||
'Feb',
|
||||
'Mar',
|
||||
'Apr',
|
||||
'May',
|
||||
'Jun',
|
||||
'Jul',
|
||||
'Aug',
|
||||
'Sep',
|
||||
'Oct',
|
||||
'Nov',
|
||||
'Dec',
|
||||
],
|
||||
datasets: [
|
||||
{
|
||||
label: '# of Votes',
|
||||
data: [0, 200, 250, 200, 700, 550, 650, 1050, 950, 1100, 900, 1200],
|
||||
borderWidth: 1,
|
||||
borderColor: () => getColor('--color-primary', 0.8),
|
||||
backgroundColor: 'transparent',
|
||||
pointBorderColor: 'transparent',
|
||||
tension: 0.4,
|
||||
},
|
||||
{
|
||||
label: '# of Votes',
|
||||
data: [0, 300, 400, 560, 320, 600, 720, 850, 690, 805, 1200, 1010],
|
||||
borderDash: [2, 2],
|
||||
borderWidth: 1,
|
||||
borderColor: () => getColor('--color-foreground', 0.8),
|
||||
backgroundColor: 'transparent',
|
||||
pointBorderColor: 'transparent',
|
||||
tension: 0.4,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
scales: {
|
||||
x: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
y: {
|
||||
ticks: {
|
||||
display: false,
|
||||
},
|
||||
grid: {
|
||||
display: false,
|
||||
},
|
||||
border: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,42 @@
|
||||
<script lang="ts" setup>
|
||||
import { Chart, getColor } from '@/components/ui/chart'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<Chart
|
||||
:config="{
|
||||
type: 'pie',
|
||||
data: {
|
||||
labels: ['31 - 50 Years old', '>= 50 Years old', '17 - 30 Years old'],
|
||||
datasets: [
|
||||
{
|
||||
data: [15, 10, 65],
|
||||
backgroundColor: [
|
||||
getColor('--color-pending', 0.4),
|
||||
getColor('--color-warning', 0.4),
|
||||
getColor('--color-primary', 0.4),
|
||||
],
|
||||
borderWidth: 1,
|
||||
borderColor: [
|
||||
getColor('--color-pending', 0.9),
|
||||
getColor('--color-warning', 0.9),
|
||||
getColor('--color-primary', 0.9),
|
||||
],
|
||||
offset: 20,
|
||||
borderRadius: 5,
|
||||
},
|
||||
],
|
||||
},
|
||||
options: {
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
legend: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,8 @@
|
||||
export { default as Line1 } from './Line1.vue' //report-line-chart
|
||||
export { default as Line2 } from './Line2.vue' //simple-line-chart-1
|
||||
export { default as Line3 } from './Line3.vue' //simple-line-chart-3, simple-line-chart-4
|
||||
export { default as Pie1 } from './Pie1.vue' //report-pie-chart
|
||||
export { default as Donut1 } from './Donut1.vue' //report-donut-chart
|
||||
export { default as Donut2 } from './Donut2.vue' //report-donut-chart-1
|
||||
export { default as Bar1 } from './Bar1.vue' //report-bar-chart
|
||||
export { default as Bar2 } from './Bar2.vue' //report-bar-chart-1
|
||||
@@ -0,0 +1,132 @@
|
||||
<script lang="ts" setup>
|
||||
import _ from 'lodash'
|
||||
import { ref } from 'vue'
|
||||
import fakers from '@/utils/faker'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { Badge } from '@/components/ui/badge'
|
||||
import { Input } from '@/components/ui/input'
|
||||
import { Box } from '@/components/ui/box'
|
||||
import {
|
||||
MenuRoot,
|
||||
MenuTrigger,
|
||||
MenuPositioner,
|
||||
MenuContent,
|
||||
MenuCheckboxItem,
|
||||
} from '@/components/ui/menu'
|
||||
import {
|
||||
Table,
|
||||
TableHeader,
|
||||
TableBody,
|
||||
TableHead,
|
||||
TableRow,
|
||||
TableCell,
|
||||
} from '@/components/ui/table'
|
||||
import { NativeSelect, NativeSelectOption } from '@/components/ui/native-select'
|
||||
import { AvatarRoot, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
|
||||
import {
|
||||
CarouselRoot,
|
||||
CarouselPrevTrigger,
|
||||
CarouselNextTrigger,
|
||||
CarouselItemGroup,
|
||||
CarouselItem,
|
||||
} from '@/components/ui/carousel'
|
||||
import {
|
||||
DatePickerRoot,
|
||||
DatePickerControl,
|
||||
DatePickerInput,
|
||||
DatePickerTrigger,
|
||||
DatePickerPositioner,
|
||||
DatePickerContent,
|
||||
DatePickerYearSelect,
|
||||
DatePickerMonthSelect,
|
||||
DatePickerView,
|
||||
DatePickerViewControl,
|
||||
DatePickerPrevTrigger,
|
||||
DatePickerNextTrigger,
|
||||
DatePickerRangeText,
|
||||
DatePickerTable,
|
||||
DatePickerTableHead,
|
||||
DatePickerTableRow,
|
||||
DatePickerTableHeader,
|
||||
DatePickerTableBody,
|
||||
DatePickerTableCell,
|
||||
DatePickerTableCellTrigger,
|
||||
DatePickerContext,
|
||||
} from '@/components/ui/datepicker'
|
||||
import {
|
||||
PaginationContext,
|
||||
PaginationRoot,
|
||||
PaginationItem,
|
||||
PaginationPrevTrigger,
|
||||
PaginationNextTrigger,
|
||||
PaginationEllipsis,
|
||||
} from '@/components/ui/pagination'
|
||||
import { Map } from '@/components/ui/map'
|
||||
import { Lucide } from '@/components/ui/lucide'
|
||||
import { Line1, Line2, Pie1, Donut1, Donut2 } from '@/components/chart-presets'
|
||||
|
||||
const pc = ref(false)
|
||||
const electronic = ref(false)
|
||||
const smartphone = ref(false)
|
||||
const photography = ref(false)
|
||||
const sport = ref(false)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- BEGIN: Daily Notes -->
|
||||
<CarouselRoot :default-page="0" :slide-count="4">
|
||||
<div class="flex h-10 items-center">
|
||||
<h2 class="me-auto truncate text-lg font-medium">Daily Notes</h2>
|
||||
<CarouselPrevTrigger as-child>
|
||||
<Box as-child>
|
||||
<Button variant="ghost" class="box me-2 px-2">
|
||||
<Lucide icon="ChevronLeft" />
|
||||
</Button>
|
||||
</Box>
|
||||
</CarouselPrevTrigger>
|
||||
<CarouselNextTrigger as-child>
|
||||
<Box as-child>
|
||||
<Button variant="ghost" class="box px-2">
|
||||
<Lucide icon="ChevronRight" />
|
||||
</Button>
|
||||
</Box>
|
||||
</CarouselNextTrigger>
|
||||
</div>
|
||||
<div class="mt-5">
|
||||
<Box>
|
||||
<CarouselItemGroup>
|
||||
<CarouselItem
|
||||
as-child
|
||||
v-for="(faker, fakerKey) in _.take(fakers, 4)"
|
||||
:key="fakerKey"
|
||||
:index="fakerKey"
|
||||
>
|
||||
<div>
|
||||
<div class="truncate text-base font-medium">
|
||||
{{ faker['news'][0]!['title'] }}
|
||||
</div>
|
||||
<div class="mt-2 text-xs opacity-50">Posted 20 Hours ago</div>
|
||||
<div class="mt-2 text-justify opacity-70 line-clamp-3">
|
||||
{{ faker['news'][0]!['shortContent'] }}
|
||||
</div>
|
||||
<div class="mt-5 flex font-medium">
|
||||
<Button variant="ghost" type="button" size="sm" class="border border-foreground/20">
|
||||
View Notes
|
||||
</Button>
|
||||
<Button
|
||||
variant="ghost"
|
||||
class="ms-auto border border-foreground/20"
|
||||
type="button"
|
||||
size="sm"
|
||||
>
|
||||
Dismiss
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</CarouselItem>
|
||||
</CarouselItemGroup>
|
||||
</Box>
|
||||
</div>
|
||||
</CarouselRoot>
|
||||
<!-- END: Daily Notes -->
|
||||
</template>
|
||||
@@ -0,0 +1 @@
|
||||
export { default as DailyNotes } from './DailyNotes.vue'
|
||||
@@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<a
|
||||
class="pr-3 pl-3.5 py-1 border border-foreground/30 bg-background/20 flex items-center gap-2 text-xs"
|
||||
target="_blank"
|
||||
v-bind="$attrs"
|
||||
>
|
||||
<slot />
|
||||
</a>
|
||||
</template>
|
||||
@@ -0,0 +1,101 @@
|
||||
<script lang="ts" setup>
|
||||
import { twMerge } from "tailwind-merge";
|
||||
import {
|
||||
SquareChevronRight,
|
||||
Clipboard,
|
||||
Check,
|
||||
} from "@lucide/vue";
|
||||
import { ref, useSlots, onUnmounted } from "vue";
|
||||
|
||||
const { class: className } = defineProps<{
|
||||
class?: string;
|
||||
}>();
|
||||
|
||||
const slots = useSlots();
|
||||
const packageManager = ref("yarn");
|
||||
const copied = ref(false);
|
||||
const commandRef = ref<HTMLDivElement | null>(null);
|
||||
let copyTimeout: ReturnType<typeof setTimeout> | null = null;
|
||||
|
||||
onUnmounted(() => {
|
||||
if (copyTimeout) clearTimeout(copyTimeout);
|
||||
});
|
||||
|
||||
function handleCopy() {
|
||||
const codeElement = commandRef.value;
|
||||
if (!codeElement) return;
|
||||
|
||||
const text = codeElement.textContent || "";
|
||||
navigator.clipboard.writeText(text).then(() => {
|
||||
copied.value = true;
|
||||
|
||||
if (copyTimeout) clearTimeout(copyTimeout);
|
||||
copyTimeout = setTimeout(() => {
|
||||
copied.value = false;
|
||||
}, 3000);
|
||||
});
|
||||
}
|
||||
|
||||
function getSlotText() {
|
||||
const slotContent = slots.default?.();
|
||||
if (!slotContent || slotContent.length === 0) return "";
|
||||
return slotContent
|
||||
.map((vnode) => (typeof vnode.children === "string" ? vnode.children : ""))
|
||||
.join("");
|
||||
}
|
||||
|
||||
function getDisplayText() {
|
||||
const text = getSlotText();
|
||||
if (packageManager.value === "npm") {
|
||||
return text.replace("add", "install");
|
||||
}
|
||||
return text;
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div :class="twMerge([
|
||||
'mt-8 mb-10 border border-foreground/20 bg-background/50',
|
||||
className,
|
||||
])
|
||||
">
|
||||
<div class="flex items-center py-2 px-5 gap-5">
|
||||
<SquareChevronRight class="stroke-1 size-4 fill-foreground/10" />
|
||||
<div class="flex items-center w-full gap-2">
|
||||
<div @click="packageManager = 'pnpm'" :class="twMerge([
|
||||
'cursor-pointer px-3.5 py-1 [&.active]:border [&.active]:border-foreground/20 [&.active]:bg-foreground/10',
|
||||
packageManager == 'pnpm' && 'active',
|
||||
])
|
||||
">
|
||||
pnpm
|
||||
</div>
|
||||
<div @click="packageManager = 'npm'" :class="twMerge([
|
||||
'cursor-pointer px-3.5 py-1 [&.active]:border [&.active]:border-foreground/20 [&.active]:bg-foreground/10',
|
||||
packageManager == 'npm' && 'active',
|
||||
])
|
||||
">
|
||||
npm
|
||||
</div>
|
||||
<div @click="packageManager = 'yarn'" :class="twMerge([
|
||||
'cursor-pointer px-3.5 py-1 [&.active]:border [&.active]:border-foreground/20 [&.active]:bg-foreground/10',
|
||||
packageManager == 'yarn' && 'active',
|
||||
])
|
||||
">
|
||||
yarn
|
||||
</div>
|
||||
<div @click="packageManager = 'bun'" :class="twMerge([
|
||||
'cursor-pointer px-3.5 py-1 [&.active]:border [&.active]:border-foreground/20 [&.active]:bg-foreground/10',
|
||||
packageManager == 'bun' && 'active',
|
||||
])
|
||||
">
|
||||
bun
|
||||
</div>
|
||||
<Check v-if="copied" class="ms-auto cursor-pointer size-4 stroke-1 fill-foreground/10" />
|
||||
<Clipboard v-else @click="handleCopy" class="ms-auto cursor-pointer size-4 stroke-1 fill-foreground/10" />
|
||||
</div>
|
||||
</div>
|
||||
<div ref="commandRef" class="p-5 border-t border-foreground/20">
|
||||
{{ packageManager }} {{ getDisplayText() }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<div class="hidden xl:block pl-14 col-span-2 text-foreground/50">
|
||||
<div class="flex flex-col lg:mt-10 pt-10 lg:pt-0 sticky top-40">
|
||||
<div class="font-medium text-foreground/70 mb-2">On This Page</div>
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,42 @@
|
||||
<script lang="ts" setup>
|
||||
import * as tabs from "@zag-js/tabs";
|
||||
import { useMachine, normalizeProps } from "@zag-js/vue";
|
||||
import { computed } from "vue";
|
||||
import { cn } from "@mykopkb/core/utils/cn";
|
||||
|
||||
const { class: className } = defineProps<{
|
||||
class?: string;
|
||||
}>();
|
||||
|
||||
const service = useMachine(tabs.machine, {
|
||||
id: crypto.randomUUID(),
|
||||
defaultValue: "preview",
|
||||
});
|
||||
|
||||
const api = computed(() => tabs.connect(service, normalizeProps));
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="mt-10" v-bind="api.getRootProps()">
|
||||
<div class="flex px-3" v-bind="api.getListProps()">
|
||||
<button v-bind="api.getTriggerProps({ value: 'preview' })"
|
||||
class="px-2.5 opacity-70 cursor-pointer data-selected:opacity-100">
|
||||
Preview
|
||||
</button>
|
||||
<button v-bind="api.getTriggerProps({ value: 'code' })"
|
||||
class="px-2.5 opacity-70 cursor-pointer data-selected:opacity-100">
|
||||
Code
|
||||
</button>
|
||||
</div>
|
||||
<div v-bind="api.getContentProps({ value: 'preview' })" :class="cn([
|
||||
'mt-4 backdrop-blur-md border border-foreground/20 bg-background/50 min-h-100 flex flex-col md:flex-row gap-3 items-center justify-center px-5 py-8 sm:p-8 lg:py-20 lg:px-20',
|
||||
className,
|
||||
])
|
||||
">
|
||||
<slot name="preview" />
|
||||
</div>
|
||||
<div v-bind="api.getContentProps({ value: 'code' })" class="-mt-4">
|
||||
<slot name="code" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,88 @@
|
||||
<script lang="ts" setup>
|
||||
import { twMerge } from "tailwind-merge";
|
||||
import { FileScan, Clipboard, ArrowDown, Check } from "@lucide/vue";
|
||||
import { ref, onMounted, onUnmounted } from "vue";
|
||||
|
||||
const { title = "" } = defineProps<{
|
||||
title?: string;
|
||||
}>();
|
||||
|
||||
const expand = ref(false);
|
||||
const copied = ref(false);
|
||||
const codeRef = ref<HTMLDivElement | null>(null);
|
||||
let copyTimeout: ReturnType<typeof setTimeout> | null = null;
|
||||
|
||||
onMounted(() => {
|
||||
if (codeRef.value) {
|
||||
if (
|
||||
codeRef.value.offsetHeight < 300 &&
|
||||
!(codeRef.value.offsetParent === null)
|
||||
) {
|
||||
expand.value = true;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
onUnmounted(() => {
|
||||
if (copyTimeout) clearTimeout(copyTimeout);
|
||||
});
|
||||
|
||||
function handleCopy() {
|
||||
const codeElement = codeRef.value?.querySelector("code");
|
||||
if (!codeElement) return;
|
||||
|
||||
const text = codeElement.textContent || "";
|
||||
navigator.clipboard.writeText(text).then(() => {
|
||||
copied.value = true;
|
||||
|
||||
if (copyTimeout) clearTimeout(copyTimeout);
|
||||
copyTimeout = setTimeout(() => {
|
||||
copied.value = false;
|
||||
}, 3000);
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="mt-8 mb-10 border border-foreground/20 bg-background/50 relative">
|
||||
<div class="flex items-center py-2 px-5 gap-5">
|
||||
<FileScan v-if="title" class="stroke-1 size-4 fill-foreground/10" />
|
||||
<div class="flex items-center w-full gap-2">
|
||||
<div>{{ title }}</div>
|
||||
<div @click="expand = !expand" :class="twMerge([
|
||||
'ms-auto mr-2 cursor-pointer px-3.5 py-1 relative after:w-px after:h-5 after:inset-y-0 after:my-auto after:bg-foreground/20 after:right-0 after:absolute',
|
||||
codeRef &&
|
||||
codeRef.offsetHeight < 300 &&
|
||||
!(codeRef.offsetParent === null) &&
|
||||
'opacity-0',
|
||||
])
|
||||
">
|
||||
{{ expand ? "Collapse" : "Expand" }}
|
||||
</div>
|
||||
<Check v-if="copied" :class="twMerge([
|
||||
'cursor-pointer size-4 stroke-1 fill-foreground/10',
|
||||
!title && 'mt-1',
|
||||
])
|
||||
" />
|
||||
<Clipboard v-else @click="handleCopy" :class="twMerge([
|
||||
'cursor-pointer size-4 stroke-1 fill-foreground/10',
|
||||
!title && 'mt-1',
|
||||
])
|
||||
" />
|
||||
</div>
|
||||
</div>
|
||||
<div :class="twMerge([
|
||||
'text-xs px-5 border-t border-foreground/20 overflow-x-auto overflow-y-hidden before:h-3/4 before:absolute before:bg-linear-to-b before:from-transparent before:to-background/80 before:inset-x-0 before:bottom-0',
|
||||
expand && 'max-h-auto before:hidden',
|
||||
!expand && 'max-h-100',
|
||||
!title && '-mt-13 border-0',
|
||||
])
|
||||
" ref="codeRef">
|
||||
<pre><code><slot /></code></pre>
|
||||
<div v-if="!expand" @click="expand = true"
|
||||
class="absolute bottom-0 inset-x-0 mx-auto w-26 mb-8 py-1 cursor-pointer border border-foreground/50 bg-foreground/15 flex items-center justify-center gap-2 backdrop-blur">
|
||||
<ArrowDown class="size-4" /> Expand
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,13 @@
|
||||
<script lang="ts" setup>
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
const { class: className } = defineProps<{
|
||||
class?: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<p :class="twMerge(['mt-2 opacity-70', className])">
|
||||
<slot />
|
||||
</p>
|
||||
</template>
|
||||
@@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<div class="text-xl font-medium">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<div class="mt-2 text-base opacity-70">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<h2 class="text-2xl font-medium">
|
||||
<slot />
|
||||
</h2>
|
||||
</template>
|
||||