docs: apply HyperFrames design system to Mintlify theme (#225)

* docs: apply HyperFrames design system to Mintlify theme

Update docs config and add custom CSS to match the HyperFrames brand:
- Switch theme from mint to maple, replace cyan palette with warm neutrals
- Add Inter (body/headings) and IBM Plex Mono (code) fonts
- Add custom.css with full light/dark mode CSS variables
- Default to light mode appearance
- Replace box-shadow hover effects with border-color (flat aesthetic)
- Add DESIGN.md to repo root as design system reference
- Fix docs CI to also trigger on DOCS_GUIDELINES.md pushes to main

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: replace HeyGen logo with HyperFrames text wordmark

Replace 41KB HeyGen SVG logos with lightweight (~400B) text-based SVGs
rendering "HyperFrames" in Inter semibold with tight tracking, matching
the wordmark style on hyperframes.heygen.com.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: use ABC Solar Display font for logo wordmark

Match the exact font rendering from hyperframes.heygen.com:
- Load ABC Solar Display Bold from HeyGen static assets CDN
- SVGs use 15.2px/600w/-0.15 letter-spacing (matches computed styles)
- Dark mode fill matches rgb(240,240,240) from the website
- Add @font-face in custom.css for site-wide availability
- Fix lefthook: remove css from oxfmt glob (oxfmt doesn't support CSS)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: convert logo SVGs to outlined paths

SVG <text> elements don't render custom fonts when loaded as <img>
(browser security restriction). Convert the ABC Solar Display glyphs
to SVG paths extracted from the font outlines — renders identically
everywhere with zero font dependency. Remove @font-face for the
display font from custom.css since it's no longer needed.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: constrain logo height to match website sizing

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* Revert "docs: constrain logo height to match website sizing"

This reverts commit 89e9cb598e.

* docs: switch body font from Inter to TT Norms Pro

Use TT Norms Pro (from HeyGen static assets CDN) to match
hyperframes.heygen.com. Loads weights 400-700 via @font-face
with Inter as fallback.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
James Russo
2026-04-07 20:24:35 -07:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 1c61a0b25a
commit fe9cd301ec
8 changed files with 491 additions and 621 deletions
+1
View File
@@ -9,6 +9,7 @@ on:
branches: [main]
paths:
- "docs/**"
- "DOCS_GUIDELINES.md"
concurrency:
group: docs-${{ github.ref }}
+301
View File
@@ -0,0 +1,301 @@
# HyperFrames Design System & Style Guide
Use this guide to configure Mintlify docs or any other platform to match the HyperFrames brand.
---
## Color Palette
### Light Mode
| Token | Hex | Usage |
| ------------------ | --------- | ------------------------------------------------ |
| `--bg` | `#f6f5f1` | Page background |
| `--surface` | `#ffffff` | Cards, panels, elevated surfaces |
| `--surface2` | `#eeedea` | Secondary surfaces, timeline, subtle backgrounds |
| `--border` | `#e0dfdb` | Default borders |
| `--border-light` | `#d0cfcb` | Hover/active borders |
| `--text` | `#1a1a1a` | Primary body text |
| `--text-secondary` | `#6b6b6b` | Secondary/muted text |
| `--text-tertiary` | `#999999` | Tertiary/placeholder text |
| `--heading` | `#0a0a0a` | Headings, nav brand, buttons |
| `--code-bg` | `#ffffff` | Code block backgrounds |
#### Accent Colors (Light)
| Token | Hex | Usage |
| ------------------------ | ----------------------- | ---------------------------- |
| `--accent-green` | `#1a7a0a` | Success, recommended badges |
| `--accent-green-light` | `rgba(26,122,10,0.07)` | Green badge backgrounds |
| `--accent-green-border` | `rgba(26,122,10,0.25)` | Green badge borders |
| `--accent-blue` | `#2563eb` | Links, info badges |
| `--accent-blue-light` | `rgba(37,99,235,0.06)` | Blue badge backgrounds |
| `--accent-blue-border` | `rgba(37,99,235,0.2)` | Blue badge borders |
| `--accent-purple` | `#7c3aed` | Highlights, special elements |
| `--accent-purple-light` | `rgba(124,58,237,0.06)` | Purple badge backgrounds |
| `--accent-purple-border` | `rgba(124,58,237,0.2)` | Purple badge borders |
#### Syntax Highlighting (Light)
| Token | Hex | Usage |
| ---------------------- | --------- | ------------------------------- |
| `--syntax-keyword` | `#9333ea` | Keywords (const, let, function) |
| `--syntax-function` | `#0891b2` | Function names |
| `--syntax-string` | `#16a34a` | Strings, values |
| `--syntax-number` | `#d97706` | Numbers |
| `--syntax-property` | `#6366f1` | Object properties |
| `--syntax-punctuation` | `#aaaaaa` | Brackets, semicolons |
| `--syntax-tag` | `#b45309` | HTML/JSX tags |
| `--syntax-attribute` | `#555555` | HTML attributes |
| `--syntax-comment` | `#bbbbbb` | Comments |
---
### Dark Mode
| Token | Hex | Usage |
| ------------------ | --------- | -------------------------------- |
| `--bg` | `#0a0a0a` | Page background |
| `--surface` | `#141414` | Cards, panels, elevated surfaces |
| `--surface2` | `#1a1a1a` | Secondary surfaces |
| `--border` | `#2a2a2a` | Default borders |
| `--border-light` | `#3a3a3a` | Hover/active borders |
| `--text` | `#e5e5e5` | Primary body text |
| `--text-secondary` | `#a0a0a0` | Secondary/muted text |
| `--text-tertiary` | `#666666` | Tertiary/placeholder text |
| `--heading` | `#f5f5f5` | Headings |
| `--code-bg` | `#141414` | Code block backgrounds |
#### Accent Colors (Dark)
| Token | Hex | Usage |
| ------------------------ | ----------------------- | ---------------------------- |
| `--accent-green` | `#22c55e` | Success, recommended badges |
| `--accent-green-light` | `rgba(34,197,94,0.1)` | Green badge backgrounds |
| `--accent-green-border` | `rgba(34,197,94,0.3)` | Green badge borders |
| `--accent-blue` | `#3b82f6` | Links, info badges |
| `--accent-blue-light` | `rgba(59,130,246,0.1)` | Blue badge backgrounds |
| `--accent-blue-border` | `rgba(59,130,246,0.3)` | Blue badge borders |
| `--accent-purple` | `#a78bfa` | Highlights, special elements |
| `--accent-purple-light` | `rgba(167,139,250,0.1)` | Purple badge backgrounds |
| `--accent-purple-border` | `rgba(167,139,250,0.3)` | Purple badge borders |
#### Syntax Highlighting (Dark)
| Token | Hex | Usage |
| ---------------------- | --------- | -------------------- |
| `--syntax-keyword` | `#c084fc` | Keywords |
| `--syntax-function` | `#22d3ee` | Function names |
| `--syntax-string` | `#4ade80` | Strings, values |
| `--syntax-number` | `#fbbf24` | Numbers |
| `--syntax-property` | `#818cf8` | Object properties |
| `--syntax-punctuation` | `#666666` | Brackets, semicolons |
| `--syntax-tag` | `#fb923c` | HTML/JSX tags |
| `--syntax-attribute` | `#a0a0a0` | HTML attributes |
| `--syntax-comment` | `#555555` | Comments |
---
## Typography
### Font Families
| Token | Stack | Usage |
| ---------------- | ----------------------------------------------------------------------------- | ---------------------- |
| `--font-display` | `'ABC Solar Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif` | Headlines, nav brand |
| `--font-body` | `'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif` | Body text, UI elements |
| `--font-mono` | `'IBM Plex Mono', 'SF Mono', 'Fira Code', monospace` | Code, terminals |
### Google Fonts Import
```css
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap");
```
### Type Scale
| Element | Size | Weight | Letter Spacing | Line Height |
| ---------- | ------------------------------ | ------ | -------------- | ----------- |
| H1 | `clamp(2.6rem, 6vw, 4.5rem)` | 400 | `-0.02em` | 1.0 |
| H2 | `clamp(1.6rem, 3.5vw, 2.2rem)` | 400 | `-0.02em` | 1.2 |
| H3 | `1rem` | 600 | `-0.01em` | 1.4 |
| Body | `1rem` | 400 | `normal` | 1.6 |
| Body Small | `0.95rem` | 400 | `normal` | 1.7 |
| Caption | `0.82rem` | 400 | `normal` | 1.6 |
| Code | `0.75rem` | 400 | `normal` | 1.9 |
| Mono Small | `0.65rem` | 500 | `normal` | 1.6 |
---
## Spacing
| Token | Value | Usage |
| ----- | --------------- | ------------------- |
| `xs` | `0.25rem` (4px) | Tight gaps |
| `sm` | `0.5rem` (8px) | Small gaps |
| `md` | `1rem` (16px) | Default gaps |
| `lg` | `1.5rem` (24px) | Section gaps |
| `xl` | `2rem` (32px) | Large spacing |
| `2xl` | `4rem` (64px) | Section padding |
| `3xl` | `8rem` (128px) | Hero/footer padding |
---
## Border Radius
| Token | Value | Usage |
| ----- | --------------- | ---------------------- |
| `sm` | `4px` | Badges, small elements |
| `md` | `6px` | Buttons, inputs |
| `lg` | `8px` | Cards, panels |
| `xl` | `10px` - `12px` | Large cards |
---
## Shadows & Effects
- **No heavy shadows** — HyperFrames uses a flat, minimal aesthetic
- **Borders over shadows** — Use `1px solid var(--border)` instead of box-shadows
- **Backdrop blur** for nav: `backdrop-filter: blur(12px)`
- **Selection color**: `rgba(128,128,128,0.2)` (light) / `rgba(255,255,255,0.15)` (dark)
---
## Mintlify Configuration
The docs site at `docs/docs.json` implements this design system. Key settings:
```json
{
"theme": "maple",
"colors": {
"primary": "#0a0a0a",
"light": "#f6f5f1",
"dark": "#0a0a0a"
},
"background": {
"color": {
"light": "#f6f5f1",
"dark": "#0a0a0a"
}
},
"fonts": {
"family": "Inter",
"heading": { "family": "Inter" }
},
"appearance": {
"default": "light"
}
}
```
Additional overrides (code font, CSS variables, heading tracking) live in `docs/custom.css`.
---
## Component Patterns
### Cards
```css
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
transition: border-color 0.2s;
}
.card:hover {
border-color: var(--border-light);
}
```
### Buttons
```css
.btn-primary {
font-size: 0.8rem;
padding: 0.4rem 1rem;
border-radius: 6px;
background: var(--heading);
color: #fff;
font-weight: 500;
}
[data-theme="dark"] .btn-primary {
background: var(--heading);
color: #0a0a0a;
}
```
### Code Blocks / Terminals
```css
.terminal {
background: var(--code-bg);
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
}
.terminal-bar {
display: flex;
gap: 5px;
padding: 10px 14px;
border-bottom: 1px solid var(--border);
}
.terminal-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--border-light);
}
.terminal-body {
padding: 0.85rem 1.1rem;
font-family: var(--font-mono);
font-size: 0.8rem;
line-height: 1.9;
}
```
### Badges
```css
.badge-green {
color: var(--accent-green);
background: var(--accent-green-light);
border: 1px solid var(--accent-green-border);
}
.badge-blue {
color: var(--accent-blue);
background: var(--accent-blue-light);
border: 1px solid var(--accent-blue-border);
}
.badge-purple {
color: var(--accent-purple);
background: var(--accent-purple-light);
border: 1px solid var(--accent-purple-border);
}
```
---
## Animation Guidelines
- **Duration**: 0.15s - 0.2s for micro-interactions, 0.5s for reveals
- **Easing**: `ease` or `ease-out` for most transitions
- **Hover states**: Use `opacity: 0.85` or border color changes
- **Scroll reveals**: `translateY(20px)` with opacity fade
---
## Brand Assets
- **Logo**: "HyperFrames" in `--font-display` at 600 weight
- **Primary color**: `#0a0a0a` (near-black)
- **Warm neutral palette**: Beige/cream tones, not pure grays
+141
View File
@@ -0,0 +1,141 @@
/* HyperFrames Design System — Mintlify Theme Overrides */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap');
/* ── TT Norms Pro (matches hyperframes.heygen.com) ── */
@font-face {
font-family: 'TT Norms Pro';
src: url('https://www-static-assets.heygen.com/fonts/tt-norms/TT_Norms_Pro_Normal.woff2') format('woff2');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'TT Norms Pro';
src: url('https://www-static-assets.heygen.com/fonts/tt-norms/TT_Norms_Pro_Medium.woff2') format('woff2');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'TT Norms Pro';
src: url('https://www-static-assets.heygen.com/fonts/tt-norms/TT_Norms_Pro_DemiBold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'TT Norms Pro';
src: url('https://www-static-assets.heygen.com/fonts/tt-norms/TT_Norms_Pro_Bold.woff2') format('woff2');
font-weight: 700;
font-style: normal;
font-display: swap;
}
/* ── Light mode (default) ── */
:root {
--background: #f6f5f1;
--background-light: #ffffff;
--surface2: #eeedea;
--border-color: #e0dfdb;
--border-color-light: #d0cfcb;
--text: #1a1a1a;
--text-secondary: #6b6b6b;
--text-tertiary: #999999;
--heading: #0a0a0a;
--code-bg: #ffffff;
--accent-green: #1a7a0a;
--accent-green-light: rgba(26, 122, 10, 0.07);
--accent-green-border: rgba(26, 122, 10, 0.25);
--accent-blue: #2563eb;
--accent-blue-light: rgba(37, 99, 235, 0.06);
--accent-blue-border: rgba(37, 99, 235, 0.2);
--accent-purple: #7c3aed;
--accent-purple-light: rgba(124, 58, 237, 0.06);
--accent-purple-border: rgba(124, 58, 237, 0.2);
--selection-bg: rgba(128, 128, 128, 0.2);
}
/* ── Dark mode ── */
.dark,
[data-theme="dark"] {
--background: #0a0a0a;
--background-light: #141414;
--surface2: #1a1a1a;
--border-color: #2a2a2a;
--border-color-light: #3a3a3a;
--text: #e5e5e5;
--text-secondary: #a0a0a0;
--text-tertiary: #666666;
--heading: #f5f5f5;
--code-bg: #141414;
--accent-green: #22c55e;
--accent-green-light: rgba(34, 197, 94, 0.1);
--accent-green-border: rgba(34, 197, 94, 0.3);
--accent-blue: #3b82f6;
--accent-blue-light: rgba(59, 130, 246, 0.1);
--accent-blue-border: rgba(59, 130, 246, 0.3);
--accent-purple: #a78bfa;
--accent-purple-light: rgba(167, 139, 250, 0.1);
--accent-purple-border: rgba(167, 139, 250, 0.3);
--selection-bg: rgba(255, 255, 255, 0.15);
}
/* ── Typography ── */
body {
font-family: 'TT Norms Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'TT Norms Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1, h2 {
letter-spacing: -0.02em;
}
h3 {
letter-spacing: -0.01em;
}
/* Code font — IBM Plex Mono (loaded via Google Fonts above) */
code, pre, pre code, kbd,
[class*="code"],
[class*="Code"] {
font-family: 'IBM Plex Mono', 'SF Mono', 'Fira Code', monospace;
}
/* ── Code blocks ── */
pre {
background: var(--code-bg) !important;
border: 1px solid var(--border-color) !important;
border-radius: 8px !important;
}
/* ── Selection ── */
::selection {
background: var(--selection-bg);
}
/* ── Links ── */
a:not([class]) {
color: var(--accent-blue);
}
a:not([class]):hover {
opacity: 0.85;
}
+20 -5
View File
@@ -1,11 +1,26 @@
{
"$schema": "https://mintlify.com/docs.json",
"name": "Hyperframes",
"theme": "mint",
"name": "HyperFrames",
"theme": "maple",
"colors": {
"primary": "#00C4FF",
"light": "#00C4FF",
"dark": "#00A8E1"
"primary": "#0a0a0a",
"light": "#f6f5f1",
"dark": "#0a0a0a"
},
"background": {
"color": {
"light": "#f6f5f1",
"dark": "#0a0a0a"
}
},
"fonts": {
"family": "Inter",
"heading": {
"family": "Inter"
}
},
"appearance": {
"default": "light"
},
"logo": {
"light": "/logo/light.svg",
+13 -309
View File
@@ -1,311 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 12229 2741">
<defs>
<style>
.cls-1 {
fill: url(#linear-gradient-15);
fill-opacity: .7;
}
.cls-2 {
fill: url(#linear-gradient-14);
fill-opacity: .2;
}
.cls-3 {
fill: url(#radial-gradient-7);
}
.cls-4 {
fill: url(#radial-gradient-6);
}
.cls-5 {
fill: url(#radial-gradient-5);
}
.cls-6 {
fill: url(#radial-gradient-4);
}
.cls-7 {
fill: url(#radial-gradient-9);
}
.cls-8 {
fill: url(#radial-gradient-8);
}
.cls-9 {
fill: url(#radial-gradient-3);
}
.cls-10 {
fill: url(#radial-gradient-2);
}
.cls-11 {
fill: url(#linear-gradient-8);
}
.cls-12 {
fill: url(#linear-gradient-7);
}
.cls-13 {
fill: url(#linear-gradient-5);
}
.cls-14 {
fill: url(#linear-gradient-6);
}
.cls-15 {
fill: url(#linear-gradient-9);
}
.cls-16 {
fill: url(#linear-gradient-4);
}
.cls-17 {
fill: url(#linear-gradient-3);
}
.cls-18 {
fill: url(#linear-gradient-2);
}
.cls-19 {
fill: #128414;
}
.cls-20 {
fill: url(#radial-gradient);
}
.cls-21 {
fill: url(#linear-gradient);
}
.cls-22 {
fill: #ab81e9;
}
.cls-23 {
fill: url(#radial-gradient-12);
}
.cls-24 {
fill: url(#radial-gradient-14);
}
.cls-25 {
fill: url(#radial-gradient-13);
}
.cls-26 {
fill: url(#radial-gradient-10);
}
.cls-27 {
fill: url(#radial-gradient-11);
}
.cls-28 {
fill: #fff;
}
.cls-29 {
fill: #0079ff;
}
.cls-30 {
fill: url(#linear-gradient-10);
}
.cls-31 {
fill: url(#linear-gradient-11);
}
.cls-32 {
fill: url(#linear-gradient-12);
}
.cls-33 {
fill: url(#linear-gradient-13);
}
.cls-34 {
fill: url(#linear-gradient-16);
}
.cls-35 {
fill: url(#linear-gradient-17);
}
.cls-36 {
fill: url(#linear-gradient-18);
}
.cls-37 {
fill: #00e1ff;
}
.cls-38 {
fill: #00ba97;
}
</style>
<linearGradient id="linear-gradient" x1="9885.06" y1="4166.65" x2="11163.05" y2="3231.54" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fda1ff"/>
<stop offset="1" stop-color="#97c5ff"/>
</linearGradient>
<linearGradient id="linear-gradient-2" x1="10977.63" y1="4548.03" x2="10717.14" y2="4115.05" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset=".49" stop-color="#b78efa"/>
<stop offset="1" stop-color="#8f6ccd"/>
</linearGradient>
<linearGradient id="linear-gradient-3" x1="10133.99" y1="4126.16" x2="10918.38" y2="2750.53" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset=".2" stop-color="#fda1ff"/>
<stop offset=".3" stop-color="#f3a4ff"/>
<stop offset=".48" stop-color="#d9adff"/>
<stop offset=".71" stop-color="#afbcff"/>
<stop offset=".83" stop-color="#97c5ff"/>
</linearGradient>
<radialGradient id="radial-gradient" cx="5000.91" cy="3779.28" fx="5000.91" fy="3779.28" r="1.01" gradientTransform="translate(-505614.61 -625435.78) rotate(53.1) scale(162.24 -9.73)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-2" cx="5000.91" cy="3385.64" fx="5000.91" fy="3385.64" r="1.01" gradientTransform="translate(-599193.58 -555175.07) rotate(53.1) scale(162.24 -45.43)" xlink:href="#radial-gradient"/>
<linearGradient id="linear-gradient-4" x1="10172.56" y1="4229.46" x2="10644.45" y2="2517.64" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#eebeff"/>
<stop offset="1" stop-color="#79edff"/>
</linearGradient>
<linearGradient id="linear-gradient-5" x1="11741.37" y1="4237.41" x2="11468.06" y2="3030.99" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00b99a"/>
<stop offset="1" stop-color="#009cbd"/>
</linearGradient>
<linearGradient id="linear-gradient-6" x1="11720.67" y1="4349.51" x2="11250.05" y2="2898.07" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00cc9e"/>
<stop offset=".22" stop-color="#00884a"/>
<stop offset=".31" stop-color="#008d64"/>
<stop offset=".55" stop-color="#009a9d"/>
<stop offset=".75" stop-color="#00a3c7"/>
<stop offset=".91" stop-color="#00a8e1"/>
<stop offset="1" stop-color="#00abeb"/>
</linearGradient>
<linearGradient id="linear-gradient-7" x1="11398.05" y1="4298.52" x2="11786.26" y2="3403.21" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#3ce6ac"/>
<stop offset="1" stop-color="#00e3ff"/>
</linearGradient>
<radialGradient id="radial-gradient-3" cx="5011.94" cy="3286.5" fx="5011.94" fy="3286.5" r="1.01" gradientTransform="translate(-1322545.38 875817.22) scale(266.17 -266.17)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-4" cx="5062.2" cy="3311.1" fx="5062.2" fy="3311.1" r="1.01" gradientTransform="translate(-325760.14 221632.44) scale(66.61 -66.61)" xlink:href="#radial-gradient"/>
<linearGradient id="linear-gradient-8" x1="11184.82" y1="3629.72" x2="12228.38" y2="3629.72" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00e4ff"/>
<stop offset="1" stop-color="#00e3f7"/>
</linearGradient>
<linearGradient id="linear-gradient-9" x1="9906.89" y1="5227.07" x2="10187.45" y2="4412.31" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00cdc2"/>
<stop offset="1" stop-color="#288822"/>
</linearGradient>
<linearGradient id="linear-gradient-10" x1="9908.06" y1="5223.68" x2="10187.52" y2="4412.12" xlink:href="#linear-gradient-9"/>
<linearGradient id="linear-gradient-11" x1="9904.1" y1="5226.65" x2="10177.35" y2="4433.13" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00cdc3"/>
<stop offset="1" stop-color="#4fdb5e"/>
</linearGradient>
<radialGradient id="radial-gradient-5" cx="5001.58" cy="3281.44" fx="5001.58" fy="3281.44" r="1.01" gradientTransform="translate(-3463696.84 2280291.84) scale(694.67 -694.67)" xlink:href="#radial-gradient"/>
<radialGradient id="radial-gradient-6" cx="4985.87" cy="3427.74" fx="4985.87" fy="3427.74" r="1.01" gradientTransform="translate(75643.69 -1436104.03) rotate(96.41) scale(287.83 -28.01)" xlink:href="#radial-gradient"/>
<linearGradient id="linear-gradient-12" x1="9969.18" y1="4976.15" x2="10223.05" y2="4342.04" xlink:href="#linear-gradient-11"/>
<radialGradient id="radial-gradient-7" cx="5005.12" cy="3283.18" fx="5005.12" fy="3283.18" r="1.01" gradientTransform="translate(-2232295.66 1472395.23) scale(448.31 -448.31)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#88d2ff"/>
<stop offset="1" stop-color="#0079ff"/>
</radialGradient>
<radialGradient id="radial-gradient-8" cx="5002.19" cy="3281.74" fx="5002.19" fy="3281.74" r="1.01" gradientTransform="translate(-3166398.37 2085321.22) scale(635.28 -635.28)" xlink:href="#radial-gradient-7"/>
<linearGradient id="linear-gradient-13" x1="11171.43" y1="4843.03" x2="11730.7" y2="5086.9" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset=".04" stop-color="#62c7ff"/>
<stop offset=".79" stop-color="#d9b5ff"/>
</linearGradient>
<linearGradient id="linear-gradient-14" x1="11363.16" y1="4968.93" x2="11828.27" y2="4790.22" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#c07dff" stop-opacity="0"/>
<stop offset="1" stop-color="#a855f5"/>
</linearGradient>
<radialGradient id="radial-gradient-9" cx="4995.8" cy="3426.98" fx="4995.8" fy="3426.98" r="1.01" gradientTransform="translate(-719552.54 -1121706.87) rotate(61.84) scale(267.03 -33.41)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff"/>
</radialGradient>
<radialGradient id="radial-gradient-10" cx="4995.01" cy="3559.73" fx="4995.01" fy="3559.73" r="1.01" gradientTransform="translate(-684297.79 -1299492) rotate(64.3) scale(294.83 -17.66)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff" stop-opacity="0"/>
</radialGradient>
<linearGradient id="linear-gradient-15" x1="11548.74" y1="4929.56" x2="12192.44" y2="4756.92" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff" stop-opacity=".5"/>
</linearGradient>
<radialGradient id="radial-gradient-11" cx="5005.63" cy="3713.52" fx="5005.63" fy="3713.52" r="1.01" gradientTransform="translate(-1772066.81 -404692.94) rotate(13.66) scale(365.42 -7.31)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#cda2fd"/>
<stop offset="1" stop-color="#0079ff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-12" cx="5022.1" cy="3444.33" fx="5022.1" fy="3444.33" r="1.01" gradientTransform="translate(-614899.34 -150408.56) rotate(20.22) scale(127.43 -21.66)" gradientUnits="userSpaceOnUse">
<stop offset=".11" stop-color="#fff"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-13" cx="5009.1" cy="3361.08" fx="5009.1" fy="3361.08" r="1.01" gradientTransform="translate(-844346.1 -352652.71) rotate(33.25) scale(181.48 -51.69)" xlink:href="#radial-gradient"/>
<radialGradient id="radial-gradient-14" cx="5005.09" cy="3477.13" fx="5005.09" fy="3477.13" r="1.01" gradientTransform="translate(-1868546.64 -406432.07) rotate(13.89) scale(384.23 -16.07)" xlink:href="#radial-gradient-10"/>
<linearGradient id="linear-gradient-16" x1="10783.39" y1="4964.43" x2="12142.76" y2="4964.43" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#88d2ff"/>
<stop offset="1" stop-color="#f6b6ff"/>
</linearGradient>
<linearGradient id="linear-gradient-17" x1="11210.8" y1="4740.81" x2="11481.49" y2="4981.36" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff" stop-opacity="0"/>
</linearGradient>
<linearGradient id="linear-gradient-18" x1="10783.01" y1="4962.47" x2="12151.93" y2="4962.47" xlink:href="#linear-gradient-16"/>
</defs>
<path class="cls-28" d="M7718.15,2280.85V847.79h388.71v209.91c85.52-150.3,243.59-241,440.54-241,303.2,0,487.19,209.91,487.19,549.38v914.77h-388.71v-829.25c0-207.31-80.33-305.79-235.82-305.79-181.4,0-303.2,139.94-303.2,355.02v780.02h-388.71ZM6999.09,2317.13c-471.64,0-785.21-310.97-785.21-748.92s303.21-756.69,725.61-756.69c378.35,0,647.84,259.14,678.94,645.26l-976.97,352.43c75.15,121.8,217.69,191.77,412.05,191.77,152.89,0,300.6-38.87,409.44-114.02v313.56c-106.25,69.97-282.47,116.61-463.86,116.61ZM6581.86,1534.52l647.85-235.82c-41.46-116.61-147.7-186.58-290.23-186.58-228.04,0-380.95,176.22-357.63,422.4ZM5450.47,2322.31c-572.7,0-984.74-401.67-984.74-945.87s427.58-951.05,1010.65-951.05c230.64,0,448.32,59.6,567.52,152.89v362.8c-124.39-114.02-316.15-181.4-513.1-181.4-401.67,0-660.81,248.78-660.81,616.76s248.78,614.17,603.8,614.17c90.7,0,191.77-18.14,274.69-51.83v-412.04h-388.71v-310.97h741.15v896.63c-168.44,132.16-399.08,209.91-650.45,209.91ZM3260.92,2682.52l272.1-585.66-562.34-1249.06h422.4l347.26,800.75,344.65-800.75h393.9l-816.3,1834.72h-401.67ZM2420.07,2317.13c-471.64,0-785.2-310.97-785.2-748.92s303.2-756.69,725.6-756.69c378.35,0,647.85,259.14,678.95,645.26l-976.97,352.43c75.15,121.8,217.68,191.77,412.04,191.77,152.89,0,300.6-38.87,409.44-114.02v313.56c-106.25,69.97-282.46,116.61-463.86,116.61ZM2002.85,1534.52l647.85-235.82c-41.46-116.61-147.71-186.58-290.24-186.58-228.04,0-380.94,176.22-357.62,422.4ZM.61,2280.85V466.85h393.9v681.54h730.78V466.85h393.9v1813.99h-393.9v-785.2H394.51v785.2H.61Z"/>
<g>
<path class="cls-21" d="M10627.99,2657.98s-868.31-665.14-1000.64-765.35c-73.68-55.78-153.79-186.47-137.09-289.26,12.42-76.42,56.55-115.67,116.35-136.53,186.28-65,777.35-269.13,936.21-320.18,87.58-28.15,226.55-2.4,330.37,82.46,82.23,67.22,147.24,165.71,148.08,292.72,1.88,287.37,17.09,959.9,17.09,1046.42,0,49.35-20.75,133.02-118,162.34-94.64,28.53-212.39-11.45-292.37-72.63h0Z"/>
<path class="cls-18" d="M10866.73,1234.81c82.23,67.21,144.52,160.73,145.36,287.74,1.88,287.37,26.25,959.2,26.25,1045.73,0-86.53-5.79-770.51-7.68-1057.88-1.88-287.37-315.72-436.72-472.64-380-156.93,56.71-765.15,271.46-951.43,336.45,186.28-65,780.27-261.59,939.12-312.64,87.58-28.15,217.18-4.27,321.01,80.6h.01Z"/>
<path class="cls-22" d="M10866.73,1234.81c82.23,67.21,144.52,160.73,145.36,287.74,1.88,287.37,26.25,959.2,26.25,1045.73,0-86.53-5.79-770.51-7.68-1057.88-1.88-287.37-315.72-436.72-472.64-380-156.93,56.71-765.15,271.46-951.43,336.45,186.28-65,780.27-261.59,939.12-312.64,87.58-28.15,217.18-4.27,321.01,80.6h.01Z"/>
<path class="cls-17" d="M10627.99,2657.98s-868.31-665.14-1000.64-765.35c-73.68-55.78-153.79-186.47-137.09-289.26,12.42-76.42,56.55-115.67,116.35-136.53,186.28-65,777.35-269.13,936.21-320.18,87.58-28.15,226.55-2.4,330.37,82.46,82.23,67.22,155.56,166.7,156.97,293.7,1.4,125.09,1.83,322.36,3.37,512.59,2.01,247.64,3.99,483.38,3.85,532.86-.13,49.35-19.75,133.02-117.01,162.34-94.64,28.53-212.39-11.45-292.37-72.63h0Z"/>
<path class="cls-20" d="M10872.6,1228.61c82.29,67.13,147.4,165.57,148.36,292.57,2.18,287.37,18.03,959.89,18.11,1046.42-.08-86.53-6.54-770.5-8.7-1057.88-2.18-287.37-316.15-436.41-473.02-379.54-156.86,56.88-764.88,272.2-951.1,337.38,186.21-65.19,777.09-269.89,935.9-321.1,87.55-28.24,226.53-2.62,330.45,82.15Z"/>
<path class="cls-10" d="M10872.6,1228.61c82.29,67.13,147.4,165.57,148.36,292.57,2.18,287.37,18.03,959.89,18.11,1046.42-.08-86.53-6.54-770.5-8.7-1057.88-2.18-287.37-316.15-436.41-473.02-379.54-156.86,56.88-764.88,272.2-951.1,337.38,186.21-65.19,777.09-269.89,935.9-321.1,87.55-28.24,226.53-2.62,330.45,82.15Z"/>
<path class="cls-16" d="M10632.39,1125.43c40.53,0,85.15,9.01,129.03,26.05,45.69,17.74,89.54,43.92,126.82,75.67,41.02,34.95,73.49,75.66,96.53,121.01,25.49,50.2,38.62,104.8,38.99,162.3.78,119.44,2.25,309.08,3.68,492.48,2.05,264.75,3.99,514.81,3.99,565.35,0,17.52-2.8,51.91-21.64,85.28-19.33,34.27-50.1,57.97-91.44,70.43-20.03,6.04-41.89,9.1-64.96,9.1-36.69,0-77.02-7.88-116.65-22.8-37.36-14.06-73.51-34.05-104.55-57.8-8.68-6.65-869.83-666.29-1000.67-765.36-37.04-28.04-74.6-74.65-100.47-124.67-13.98-27.04-24.09-53.92-30.04-79.9-6.44-28.16-7.77-54.43-3.92-78.07,5.74-35.34,18.4-63.32,38.68-85.55,18.08-19.8,41.99-34.7,73.12-45.56,191.65-66.88,794.69-279.81,951.5-336.48,21.06-7.62,45.29-11.49,72.01-11.49M10632.38,1118.52c-27.02,0-52.25,3.9-74.35,11.88-156.92,56.71-765.14,271.46-951.42,336.46-59.8,20.87-103.94,60.09-116.35,136.52-16.7,102.79,63.41,233.48,137.09,289.27,132.34,100.2,1000.64,765.34,1000.64,765.34,61.92,47.37,146.46,82.03,225.41,82.03,23.03,0,45.58-2.96,66.96-9.4,97.26-29.31,118-112.98,118-162.33,0-86.53-5.79-770.51-7.68-1057.88-1.62-246.89-233.49-391.9-398.29-391.9h-.01Z"/>
<path class="cls-13" d="M11184.83,1489.7c0-78.68,30.02-207.84,100.55-307.99,39.67-56.34,89.69-107.79,141.49-131.36,40.29-18.33,59.58-21.36,107.38-11.5,0,0,579.09,124.18,614.4,131.34,35.31,7.18,73.84,31.14,78.97,104.77,5.13,73.62-14.26,189.97-96.68,309.97-82.42,119.99-584.21,844.79-647.23,935.69-63.01,90.9-157.64,148.93-211.37,134.78-68.18-17.96-82.76-80.79-82.23-124.15.97-80-5.28-1041.54-5.28-1041.54h.01Z"/>
<path class="cls-14" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-38" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-12" d="M11206.75,1489.73c0-78.68,27.14-192.58,97.68-292.73,39.67-56.34,75.27-98.94,124.05-126.98,38.38-22.06,75.61-27.24,123.41-17.38,0,0,561.45,110.41,596.77,117.58,35.31,7.18,73.83,31.14,78.97,104.77,5.13,73.62-14.26,189.97-96.68,309.97-82.42,119.99-584.21,844.79-647.23,935.69-63.02,90.89-157.75,149.34-211.37,134.78-63.19-17.15-59.72-78.89-60.33-124.15-1.12-83.65-5.26-1041.54-5.26-1041.54h0Z"/>
<path class="cls-9" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-6" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-11" d="M11490.41,1033.32v7.74c11.21,0,24.24,1.65,42.21,5.36,5.99,1.29,579.52,124.27,614.47,131.36,19.33,3.92,35.02,12.37,46.63,25.09,15.16,16.61,23.97,41.05,26.17,72.62,2,28.85.99,75.96-15.26,136.49-16.05,59.79-42.99,117.47-80.07,171.45-81.94,119.29-580.28,839.14-647.21,935.66-26.45,38.16-60.43,72.66-95.65,97.17-33.76,23.48-66.42,36.41-91.95,36.41-5.57,0-10.75-.63-15.45-1.86-28.29-7.46-49.14-23.81-61.99-48.64-12.37-23.87-14.69-50.13-14.48-67.95.96-79.05-5.2-1029.97-5.28-1041.65,0-42.19,8.14-94.81,22.31-144.37,17.21-60.22,42.94-115.66,74.38-160.3,43.77-62.16,95.1-109.74,140.81-130.53,23.29-10.6,39.81-16.33,60.35-16.33v-7.74M11490.41,1033.32c-21.1,0-38.15,5.49-63.55,17.03-51.81,23.57-104.27,76.78-143.94,133.11-70.53,100.15-98.1,230.47-98.1,309.15,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,5.41,1.43,11.24,2.12,17.43,2.12,55.05,0,137.27-55.17,193.95-136.9,63.03-90.91,564.82-815.7,647.23-935.69,82.42-120,101.81-239.25,96.68-312.87-5.13-73.62-43.66-97.58-78.97-104.76-35.31-7.18-614.4-131.34-614.4-131.34-17.67-3.65-31.44-5.55-43.83-5.55h-.01Z"/>
<path class="cls-15" d="M9437.47,1273.5c0-52.74,35.09-131.94,81.18-187.1,0,0,693.73-832.95,740.62-889.37s140.83-129.06,212.54-159.28c71.7-30.22,118.82-23.05,140.33,23.56,21.52,46.61,202.95,444.75,224.58,492.12,20.45,44.84,16.78,84.22-25.54,168.45-53.66,106.78-196.32,231.91-292.73,267.09-105.9,38.64-874.43,318.06-954.78,347.18-80.35,29.12-126.19-17.2-126.19-62.66Z"/>
<path class="cls-30" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-19" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-31" d="M9442.61,1263.34c0-52.74,29.94-121.79,76.04-176.95,0,0,693.73-832.95,740.62-889.37,46.89-56.42,140.83-129.06,212.54-159.28,71.7-30.22,108.19-21.79,129.7,24.81,21.52,46.6,196.48,425.61,217.43,473.27,16.91,38.48,17.16,78.63-21.97,155.65-51.59,101.53-197.54,238.66-293.94,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.57-100.68-54.02h0Z"/>
<path class="cls-5" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-19" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-4" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-32" d="M10545.94,29.24c27.42,0,43.82,13.58,55.03,37.89,17.39,37.66,140.95,301.72,199.18,429.45,13.62,29.86,23.61,51.79,27.75,60.86,10.18,22.32,13.18,41.49,10,64.1-3.45,24.58-14.36,54.19-35.38,96-12.65,25.18-30.69,52.11-53.65,80.03-21.8,26.53-46.87,52.61-74.52,77.52-55.36,49.87-113.4,88.08-159.22,104.79-101.76,37.13-871.06,316.83-954.77,347.18-15.57,5.65-30.36,8.51-43.99,8.51-21.02,0-38.88-6.8-51.64-19.66-11.19-11.27-17.61-26.73-17.61-42.39,0-24.03,7.99-55.55,22.5-88.79,14.5-33.21,34.54-65.92,56.45-92.14,6.93-8.33,694.27-833.61,740.62-889.39,22.44-27.01,57.2-59.06,95.36-87.93,39.97-30.25,80.28-54.62,113.49-68.61,27.45-11.56,51.13-17.42,70.39-17.42M10545.94,19.57c-20.75,0-45.48,6.1-74.14,18.19-71.71,30.22-165.66,102.86-212.54,159.28-46.89,56.42-740.62,889.37-740.62,889.37-46.08,55.16-81.17,134.35-81.17,187.11,0,35.59,28.12,71.72,78.92,71.72,14.06,0,29.86-2.76,47.27-9.08,80.35-29.13,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45-21.62-47.38-203.06-445.51-224.58-492.12-12.9-27.98-35.05-41.74-66.2-41.74h0Z"/>
<path class="cls-3" d="M10795.84,67.84c-13.68-29.38-15.69-37.1-7.96-48.05,7.72-10.95,10.71-23.9,48.8-16.43,38.09,7.47,120.12,39.88,260.54,144.12,140.41,104.23,759,564.19,856.6,636.58,97.6,72.38,168.57,150.62,182.45,184.12,11.24,26.23,6.03,31.8-1.73,41.04-6.51,7.76-10.73,15.85-33.26,13.55,0,0-80.39-17.51-175.44-39.6-95.05-22.09-335.58-77.29-451.93-104.39-116.35-27.1-246.96-124.62-293.06-161.33-30.6-24.39-77.73-62.44-126.16-120.61-19.53-23.45-32.77-46.69-50.11-84.56-52.7-115.15-208.75-444.43-208.75-444.43h.01Z"/>
<path class="cls-8" d="M12128.13,955.97c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.69-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-67.4-53.75-115.83-111.93-19.52-23.45-48.83-78.23-66.87-115.77-55.15-114.81-202.86-407.96-202.86-407.96-13.69-29.38-11.25-37.86-4.65-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.57,129.85-132.53-96.69-210.67-127.33-247.56-134.57-38.09-7.47-41.08,5.48-48.8,16.43-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,30.57,61.11,50.11,84.56,48.43,58.17,95.56,96.23,126.16,120.61,46.09,36.72,176.71,134.24,293.06,161.33,116.35,27.1,356.87,82.29,451.93,104.39,95.06,22.09,175.43,39.6,175.43,39.6,22.54,2.3,26.76-5.79,33.27-13.55,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-29" d="M12128.13,955.97c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.69-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-67.4-53.75-115.83-111.93-19.52-23.45-48.83-78.23-66.87-115.77-55.15-114.81-202.86-407.96-202.86-407.96-13.69-29.38-11.25-37.86-4.65-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.57,129.85-132.53-96.69-210.67-127.33-247.56-134.57-38.09-7.47-41.08,5.48-48.8,16.43-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,30.57,61.11,50.11,84.56,48.43,58.17,95.56,96.23,126.16,120.61,46.09,36.72,176.71,134.24,293.06,161.33,116.35,27.1,356.87,82.29,451.93,104.39,95.06,22.09,175.43,39.6,175.43,39.6,22.54,2.3,26.76-5.79,33.27-13.55,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<g>
<path class="cls-33" d="M10807,54.96c-13.69-29.38-13.06-42.37-6.45-48,3.27-2.79,23.71-4.99,41.4-1.02,38.47,8.64,114.85,37.31,255.27,141.55,140.41,104.23,754.99,566.07,852.59,638.45,97.61,72.38,165.94,146.71,179.83,180.21,3.99,11.35,10.92,29.2,5.11,34.75-5.32,5.1-11.85,5.85-29.57,1.72,0,0-81.01-21.21-176.07-43.3-95.06-22.09-332.09-78.89-448.43-105.98-116.35-27.1-233.41-120.57-279.49-157.28-30.61-24.39-72.26-56-120.69-114.17-19.52-23.45-42.89-46.52-60.23-84.39-52.7-115.15-213.29-442.53-213.29-442.53h.02Z"/>
<path class="cls-2" d="M10807,54.96c-13.69-29.38-13.06-42.37-6.45-48,3.27-2.79,23.71-4.99,41.4-1.02,38.47,8.64,114.85,37.31,255.27,141.55,140.41,104.23,754.99,566.07,852.59,638.45,97.61,72.38,165.94,146.71,179.83,180.21,3.99,11.35,10.92,29.2,5.11,34.75-5.32,5.1-11.85,5.85-29.57,1.72,0,0-81.01-21.21-176.07-43.3-95.06-22.09-332.09-78.89-448.43-105.98-116.35-27.1-233.41-120.57-279.49-157.28-30.61-24.39-72.26-56-120.69-114.17-19.52-23.45-42.89-46.52-60.23-84.39-52.7-115.15-213.29-442.53-213.29-442.53h.02Z"/>
</g>
<path class="cls-7" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-37" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,30.85-7.98,37.35-15.75,7.76-9.25,3.53-24.67-10.51-50.11h.01Z"/>
<path class="cls-37" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-26" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-1" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,15.25-15.91,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-27" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-23" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-25" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-23" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-24" d="M12125.55,957.53c3.99,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.76-41.05-95.06-22.09-335.73-80.43-452.09-107.52-116.35-27.1-231.52-119.68-277.61-156.4-30.61-24.38-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.92-407.96-201.92-407.96-13.68-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.57-3.49,28.45-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.51-96.69-210.54-127.91-247.54-134.57-33.39-6.02-35.76,7.59-43.88,18.95-6.23,8.74-4.91,16.16,8.77,45.54,0,0,152.5,321.52,205.2,436.67,17.34,37.88,34.13,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.09,116.74,46.1,36.72,175.03,136.2,291.39,163.3,116.36,27.09,356.88,82.29,451.94,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.53,2.29,26.76-4.85,33.27-12.61,7.76-9.25,4.83-27.02-6.42-53.25h0Z"/>
<path class="cls-34" d="M10817.23,8.75c4.93,0,10.97.69,17.97,2.07,16.08,3.15,44.71,11.79,89.88,35.07,48.86,25.17,105.25,61.4,167.59,107.68,67.62,50.21,248.83,184.89,424.06,315.15,187.77,139.58,381.94,283.9,432.53,321.43,56.73,42.08,97.48,80.77,121.69,105.82,29.77,30.82,51.56,58.9,58.27,75.1l.02.04.02.04c4.5,10.5,6.39,17.9,5.75,22.61-.47,3.46-1.75,6.1-5.43,10.49l-.36.44c-.6.71-1.17,1.42-1.74,2.13-4.6,5.67-9.48,5.24-20.58,5.24-1.83,0-3.87-.1-6.03-.31-15.13-2.92-82.94-15-173.31-36-42.74-9.94-107.71-29.5-184.43-47.17-96.35-22.2-203.46-42.3-267.49-57.22-49.35-11.49-106.75-37.11-170.64-76.14-53.36-32.61-97.72-66.45-119.41-83.73-36.7-29.22-76.43-64.9-121.84-119.45-18.47-22.45-32.35-45.13-50.34-84.42-52.01-113.66-208.56-438.54-210.68-443.02-14.15-30.36-13.41-33.66-8.63-40.43.94-1.34,1.79-2.67,2.62-3.95,4.59-7.16,7.39-11.47,20.51-11.47ZM10817.23,1.15c-20.08,0-23.24,9.95-29.36,18.64-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,28.38,63.86,47.9,87.31,48.44,58.17,96.03,96.47,126.64,120.86,46.1,36.72,177.7,136.18,294.05,163.27,116.35,27.1,357.61,77.36,452.67,99.46,95.06,22.09,175.43,39.6,175.43,39.6,2.65.27,5.04.39,7.22.39,16.34,0,20.31-7.1,26.05-13.96,7.76-9.24,12.97-14.81,1.73-41.04-13.89-33.5-84.85-111.73-182.45-184.12-97.61-72.38-716.2-532.35-856.6-636.58-140.43-104.21-222.46-136.63-260.55-144.1-7.86-1.54-14.22-2.22-19.44-2.22Z"/>
<path class="cls-35" d="M10817.23,8.75c4.93,0,10.97.69,17.97,2.07,16.08,3.15,44.71,11.79,89.88,35.07,48.86,25.17,105.25,61.4,167.59,107.68,67.62,50.21,248.83,184.89,424.06,315.15,187.77,139.58,381.94,283.9,432.53,321.43,56.73,42.08,97.48,80.77,121.69,105.82,29.77,30.82,51.56,58.9,58.27,75.1l.02.04.02.04c4.5,10.5,6.39,17.9,5.75,22.61-.47,3.46-1.75,6.1-5.43,10.49l-.36.44c-.6.71-1.17,1.42-1.74,2.13-4.6,5.67-9.48,5.24-20.58,5.24-1.83,0-3.87-.1-6.03-.31-15.13-2.92-82.94-15-173.31-36-42.74-9.94-107.71-29.5-184.43-47.17-96.35-22.2-203.46-42.3-267.49-57.22-49.35-11.49-106.75-37.11-170.64-76.14-53.36-32.61-97.72-66.45-119.41-83.73-36.7-29.22-76.43-64.9-121.84-119.45-18.47-22.45-32.35-45.13-50.34-84.42-52.01-113.66-208.56-438.54-210.68-443.02-14.15-30.36-13.41-33.66-8.63-40.43.94-1.34,1.79-2.67,2.62-3.95,4.59-7.16,7.39-11.47,20.51-11.47ZM10817.23,1.15c-20.08,0-23.24,9.95-29.36,18.64-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,28.38,63.86,47.9,87.31,48.44,58.17,96.03,96.47,126.64,120.86,46.1,36.72,177.7,136.18,294.05,163.27,116.35,27.1,357.61,77.36,452.67,99.46,95.06,22.09,175.43,39.6,175.43,39.6,2.65.27,5.04.39,7.22.39,16.34,0,20.31-7.1,26.05-13.96,7.76-9.24,12.97-14.81,1.73-41.04-13.89-33.5-84.85-111.73-182.45-184.12-97.61-72.38-716.2-532.35-856.6-636.58-140.43-104.21-222.46-136.63-260.55-144.1-7.86-1.54-14.22-2.22-19.44-2.22Z"/>
<path class="cls-36" d="M10817.09,8.64c4.96,0,11.05.7,18.11,2.09,16.19,3.17,45.03,11.87,90.52,35.32,49.2,25.35,105.99,61.84,168.76,108.44,68.11,50.56,250.59,186.19,427.05,317.37,189.1,140.56,384.63,285.9,435.57,323.69,57.14,42.37,98.18,81.34,122.55,106.57,29.99,31.04,51.93,59.32,58.69,75.63l.02.04.02.04c4.53,10.58,2.28,15.09,1.63,19.83-1.63,3.45-2.28,5.76-5.98,10.19l-.37.44c-.61.72-1.17,1.43-1.75,2.14-4.64,5.71-7.43,9.17-18.61,9.17-1.85,0-3.89-.11-6.07-.31-6.53-1.43-80.97-15.69-171.98-36.84-43.04-10-116.03-26.82-193.29-44.62-97.01-22.35-203.49-41.23-267.97-56.26-49.69-11.57-107.5-37.37-171.84-76.68-53.74-32.84-98.41-66.92-120.25-84.32-36.95-29.43-80.19-65.44-125.93-120.37-18.35-22.04-31.27-43.88-49.37-83.44-52.38-114.46-201.96-447.36-204.1-451.87-14.25-30.57-13.5-33.9-8.69-40.72.95-1.35,1.81-2.69,2.64-3.97,4.64-7.21,7.44-11.56,20.66-11.56ZM10817.09.98c-20.22,0-23.4,10.02-29.56,18.77-7.77,11.03-5.76,18.8,8.03,48.39,0,0,151.54,337.86,204.6,453.82,17.46,38.14,30.8,61.54,50.46,85.16,48.77,58.58,96.22,96.9,127.05,121.46,46.41,36.97,177.95,135.18,295.11,162.47,117.17,27.28,365,76.6,460.73,98.85,95.72,22.25,172.5,36.95,172.5,36.95,2.66.26,5.07.39,7.27.39,16.46,0,20.45-7.16,26.23-14.06,7.81-9.31,11.26-17.13,4.03-38.33-13.99-33.74-85.45-112.52-183.74-185.41-98.29-72.89-719.36-536.15-860.75-641.12-141.42-104.95-224.02-137.59-262.38-145.11-7.91-1.55-14.32-2.23-19.58-2.23Z"/>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95.0 18.5">
<g transform="scale(0.015200, -0.015200) translate(0, -960)" fill="#f0f0f0">
<path d="M42 0V700H227V450H472V700H657V0H472V290H227V0Z" transform="translate(0.0, 0)"/>
<path d="M107 -154 204 59 -14 560H183L301 272L418 560H600L296 -154Z" transform="translate(689.0, 0)"/>
<path d="M34 -154V560H216V477Q242 523 287.5 547.5Q333 572 391 572Q464 572 521.5 534.0Q579 496 612.5 430.0Q646 364 646 281Q646 197 612.0 131.0Q578 65 520.5 27.0Q463 -11 390 -11Q333 -11 287.5 11.5Q242 34 216 77V-154ZM339 139Q395 139 429.0 178.5Q463 218 463 280Q463 342 429.0 381.0Q395 420 339 420Q299 420 271.5 400.5Q244 381 230.0 352.0Q216 323 216 294V265Q216 236 230.0 207.0Q244 178 271.5 158.5Q299 139 339 139Z" transform="translate(1264.0, 0)"/>
<path d="M331 -15Q236 -15 165.0 22.5Q94 60 54.5 126.0Q15 192 15 277Q15 363 53.5 430.0Q92 497 158.5 536.0Q225 575 310 575Q389 575 448.5 539.5Q508 504 542.0 441.0Q576 378 576 294Q576 276 574.5 259.0Q573 242 572 228H191Q203 178 246.5 151.0Q290 124 360 124Q452 124 515 165V29Q484 9 434.5 -3.0Q385 -15 331 -15ZM191 345H413Q411 392 382.5 417.5Q354 443 308 443Q263 443 232.0 417.5Q201 392 191 345Z" transform="translate(1915.0, 0)"/>
<path d="M34 0V560H215V455Q233 508 267.0 537.5Q301 567 346 567Q372 567 387 558V385Q368 396 336 396Q280 396 248.0 358.5Q216 321 216 256V0Z" transform="translate(2494.0, 0)"/>
<path d="M42 0V700H442V547H227V419H431V273H227V0Z" transform="translate(2882.0, 0)"/>
<path d="M34 0V560H215V455Q233 508 267.0 537.5Q301 567 346 567Q372 567 387 558V385Q368 396 336 396Q280 396 248.0 358.5Q216 321 216 256V0Z" transform="translate(3331.0, 0)"/>
<path d="M270 -11Q197 -11 139.5 27.0Q82 65 48.5 130.5Q15 196 15 279Q15 363 48.5 429.0Q82 495 140.0 533.5Q198 572 271 572Q327 572 372.0 549.0Q417 526 444 482V560H626V0H444V84Q417 38 372.0 13.5Q327 -11 270 -11ZM321 139Q362 139 389.0 158.5Q416 178 430.0 207.5Q444 237 444 266V295Q444 324 430.0 353.0Q416 382 389.0 401.0Q362 420 321 420Q266 420 231.5 381.5Q197 343 197 280Q197 218 231.5 178.5Q266 139 321 139Z" transform="translate(3719.0, 0)"/>
<path d="M34 0V560H216V486Q241 527 282.5 549.5Q324 572 379 572Q435 572 475.0 547.0Q515 522 538 477Q564 521 609.0 546.5Q654 572 712 572Q800 572 850.0 514.0Q900 456 900 358V0H718V322Q718 420 647 420Q608 420 583.0 390.0Q558 360 558 309V0H376V322Q376 420 306 420Q266 420 241.0 390.0Q216 360 216 309V0Z" transform="translate(4369.0, 0)"/>
<path d="M331 -15Q236 -15 165.0 22.5Q94 60 54.5 126.0Q15 192 15 277Q15 363 53.5 430.0Q92 497 158.5 536.0Q225 575 310 575Q389 575 448.5 539.5Q508 504 542.0 441.0Q576 378 576 294Q576 276 574.5 259.0Q573 242 572 228H191Q203 178 246.5 151.0Q290 124 360 124Q452 124 515 165V29Q484 9 434.5 -3.0Q385 -15 331 -15ZM191 345H413Q411 392 382.5 417.5Q354 443 308 443Q263 443 232.0 417.5Q201 392 191 345Z" transform="translate(5290.0, 0)"/>
<path d="M136 -12Q63 -12 12 15V151Q46 127 87 127Q117 127 134.5 141.0Q152 155 152 178Q152 191 146.0 205.0Q140 219 125 237L83 288Q62 314 52.5 342.5Q43 371 43 400Q43 451 70.0 490.0Q97 529 143.5 550.5Q190 572 250 572Q318 572 364 548V412Q351 422 332.0 428.0Q313 434 294 434Q265 434 247.5 420.5Q230 407 230 385Q230 360 259 325L300 275Q342 221 342 161Q342 110 315.0 71.0Q288 32 241.5 10.0Q195 -12 136 -12Z" transform="translate(5869.0, 0)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

+13 -305
View File
@@ -1,307 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 12229 2741">
<defs>
<style>
.cls-1 {
fill: url(#linear-gradient-15);
fill-opacity: .7;
}
.cls-2 {
fill: url(#linear-gradient-14);
fill-opacity: .2;
}
.cls-3 {
fill: url(#radial-gradient-7);
}
.cls-4 {
fill: url(#radial-gradient-6);
}
.cls-5 {
fill: url(#radial-gradient-5);
}
.cls-6 {
fill: url(#radial-gradient-4);
}
.cls-7 {
fill: url(#radial-gradient-9);
}
.cls-8 {
fill: url(#radial-gradient-8);
}
.cls-9 {
fill: url(#radial-gradient-3);
}
.cls-10 {
fill: url(#radial-gradient-2);
}
.cls-11 {
fill: url(#linear-gradient-8);
}
.cls-12 {
fill: url(#linear-gradient-7);
}
.cls-13 {
fill: url(#linear-gradient-5);
}
.cls-14 {
fill: url(#linear-gradient-6);
}
.cls-15 {
fill: url(#linear-gradient-9);
}
.cls-16 {
fill: url(#linear-gradient-4);
}
.cls-17 {
fill: url(#linear-gradient-3);
}
.cls-18 {
fill: url(#linear-gradient-2);
}
.cls-19 {
fill: #128414;
}
.cls-20 {
fill: url(#radial-gradient);
}
.cls-21 {
fill: url(#linear-gradient);
}
.cls-22 {
fill: #ab81e9;
}
.cls-23 {
fill: url(#radial-gradient-12);
}
.cls-24 {
fill: url(#radial-gradient-14);
}
.cls-25 {
fill: url(#radial-gradient-13);
}
.cls-26 {
fill: url(#radial-gradient-10);
}
.cls-27 {
fill: url(#radial-gradient-11);
}
.cls-28 {
fill: #0079ff;
}
.cls-29 {
fill: url(#linear-gradient-10);
}
.cls-30 {
fill: url(#linear-gradient-11);
}
.cls-31 {
fill: url(#linear-gradient-12);
}
.cls-32 {
fill: url(#linear-gradient-13);
}
.cls-33 {
fill: url(#linear-gradient-16);
}
.cls-34 {
fill: url(#linear-gradient-17);
}
.cls-35 {
fill: url(#linear-gradient-18);
}
.cls-36 {
fill: #00e1ff;
}
.cls-37 {
fill: #00ba97;
}
</style>
<linearGradient id="linear-gradient" x1="9885.06" y1="4166.65" x2="11163.05" y2="3231.54" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fda1ff"/>
<stop offset="1" stop-color="#97c5ff"/>
</linearGradient>
<linearGradient id="linear-gradient-2" x1="10977.63" y1="4548.03" x2="10717.14" y2="4115.05" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset=".49" stop-color="#b78efa"/>
<stop offset="1" stop-color="#8f6ccd"/>
</linearGradient>
<linearGradient id="linear-gradient-3" x1="10133.99" y1="4126.16" x2="10918.38" y2="2750.53" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset=".2" stop-color="#fda1ff"/>
<stop offset=".3" stop-color="#f3a4ff"/>
<stop offset=".48" stop-color="#d9adff"/>
<stop offset=".71" stop-color="#afbcff"/>
<stop offset=".83" stop-color="#97c5ff"/>
</linearGradient>
<radialGradient id="radial-gradient" cx="5000.91" cy="3779.28" fx="5000.91" fy="3779.28" r="1.01" gradientTransform="translate(-505614.61 -625435.78) rotate(53.1) scale(162.24 -9.73)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-2" cx="5000.91" cy="3385.64" fx="5000.91" fy="3385.64" r="1.01" gradientTransform="translate(-599193.58 -555175.07) rotate(53.1) scale(162.24 -45.43)" xlink:href="#radial-gradient"/>
<linearGradient id="linear-gradient-4" x1="10172.56" y1="4229.46" x2="10644.45" y2="2517.64" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#eebeff"/>
<stop offset="1" stop-color="#79edff"/>
</linearGradient>
<linearGradient id="linear-gradient-5" x1="11741.37" y1="4237.41" x2="11468.06" y2="3030.99" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00b99a"/>
<stop offset="1" stop-color="#009cbd"/>
</linearGradient>
<linearGradient id="linear-gradient-6" x1="11720.67" y1="4349.51" x2="11250.05" y2="2898.07" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00cc9e"/>
<stop offset=".22" stop-color="#00884a"/>
<stop offset=".31" stop-color="#008d64"/>
<stop offset=".55" stop-color="#009a9d"/>
<stop offset=".75" stop-color="#00a3c7"/>
<stop offset=".91" stop-color="#00a8e1"/>
<stop offset="1" stop-color="#00abeb"/>
</linearGradient>
<linearGradient id="linear-gradient-7" x1="11398.05" y1="4298.52" x2="11786.26" y2="3403.21" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#3ce6ac"/>
<stop offset="1" stop-color="#00e3ff"/>
</linearGradient>
<radialGradient id="radial-gradient-3" cx="5011.94" cy="3286.5" fx="5011.94" fy="3286.5" r="1.01" gradientTransform="translate(-1322545.38 875817.22) scale(266.17 -266.17)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#fff"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-4" cx="5062.2" cy="3311.1" fx="5062.2" fy="3311.1" r="1.01" gradientTransform="translate(-325760.14 221632.44) scale(66.61 -66.61)" xlink:href="#radial-gradient"/>
<linearGradient id="linear-gradient-8" x1="11184.82" y1="3629.72" x2="12228.38" y2="3629.72" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00e4ff"/>
<stop offset="1" stop-color="#00e3f7"/>
</linearGradient>
<linearGradient id="linear-gradient-9" x1="9906.89" y1="5227.07" x2="10187.45" y2="4412.31" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00cdc2"/>
<stop offset="1" stop-color="#288822"/>
</linearGradient>
<linearGradient id="linear-gradient-10" x1="9908.06" y1="5223.68" x2="10187.52" y2="4412.12" xlink:href="#linear-gradient-9"/>
<linearGradient id="linear-gradient-11" x1="9904.1" y1="5226.65" x2="10177.35" y2="4433.13" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00cdc3"/>
<stop offset="1" stop-color="#4fdb5e"/>
</linearGradient>
<radialGradient id="radial-gradient-5" cx="5001.58" cy="3281.44" fx="5001.58" fy="3281.44" r="1.01" gradientTransform="translate(-3463696.84 2280291.84) scale(694.67 -694.67)" xlink:href="#radial-gradient"/>
<radialGradient id="radial-gradient-6" cx="4985.87" cy="3427.74" fx="4985.87" fy="3427.74" r="1.01" gradientTransform="translate(75643.69 -1436104.03) rotate(96.41) scale(287.83 -28.01)" xlink:href="#radial-gradient"/>
<linearGradient id="linear-gradient-12" x1="9969.18" y1="4976.15" x2="10223.05" y2="4342.04" xlink:href="#linear-gradient-11"/>
<radialGradient id="radial-gradient-7" cx="5005.12" cy="3283.18" fx="5005.12" fy="3283.18" r="1.01" gradientTransform="translate(-2232295.66 1472395.23) scale(448.31 -448.31)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#88d2ff"/>
<stop offset="1" stop-color="#0079ff"/>
</radialGradient>
<radialGradient id="radial-gradient-8" cx="5002.19" cy="3281.74" fx="5002.19" fy="3281.74" r="1.01" gradientTransform="translate(-3166398.37 2085321.22) scale(635.28 -635.28)" xlink:href="#radial-gradient-7"/>
<linearGradient id="linear-gradient-13" x1="11171.43" y1="4843.03" x2="11730.7" y2="5086.9" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset=".04" stop-color="#62c7ff"/>
<stop offset=".79" stop-color="#d9b5ff"/>
</linearGradient>
<linearGradient id="linear-gradient-14" x1="11363.16" y1="4968.93" x2="11828.27" y2="4790.22" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#c07dff" stop-opacity="0"/>
<stop offset="1" stop-color="#a855f5"/>
</linearGradient>
<radialGradient id="radial-gradient-9" cx="4995.8" cy="3426.98" fx="4995.8" fy="3426.98" r="1.01" gradientTransform="translate(-719552.54 -1121706.87) rotate(61.84) scale(267.03 -33.41)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff"/>
</radialGradient>
<radialGradient id="radial-gradient-10" cx="4995.01" cy="3559.73" fx="4995.01" fy="3559.73" r="1.01" gradientTransform="translate(-684297.79 -1299492) rotate(64.3) scale(294.83 -17.66)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff" stop-opacity="0"/>
</radialGradient>
<linearGradient id="linear-gradient-15" x1="11548.74" y1="4929.56" x2="12192.44" y2="4756.92" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff" stop-opacity=".5"/>
</linearGradient>
<radialGradient id="radial-gradient-11" cx="5005.63" cy="3713.52" fx="5005.63" fy="3713.52" r="1.01" gradientTransform="translate(-1772066.81 -404692.94) rotate(13.66) scale(365.42 -7.31)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#cda2fd"/>
<stop offset="1" stop-color="#0079ff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-12" cx="5022.1" cy="3444.33" fx="5022.1" fy="3444.33" r="1.01" gradientTransform="translate(-614899.34 -150408.56) rotate(20.22) scale(127.43 -21.66)" gradientUnits="userSpaceOnUse">
<stop offset=".11" stop-color="#fff"/>
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="radial-gradient-13" cx="5009.1" cy="3361.08" fx="5009.1" fy="3361.08" r="1.01" gradientTransform="translate(-844346.1 -352652.71) rotate(33.25) scale(181.48 -51.69)" xlink:href="#radial-gradient"/>
<radialGradient id="radial-gradient-14" cx="5005.09" cy="3477.13" fx="5005.09" fy="3477.13" r="1.01" gradientTransform="translate(-1868546.64 -406432.07) rotate(13.89) scale(384.23 -16.07)" xlink:href="#radial-gradient-10"/>
<linearGradient id="linear-gradient-16" x1="10783.39" y1="4964.43" x2="12142.76" y2="4964.43" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#88d2ff"/>
<stop offset="1" stop-color="#f6b6ff"/>
</linearGradient>
<linearGradient id="linear-gradient-17" x1="11210.8" y1="4740.81" x2="11481.49" y2="4981.36" gradientTransform="translate(0 5476.58) scale(1 -1)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#0079ff"/>
<stop offset="1" stop-color="#0079ff" stop-opacity="0"/>
</linearGradient>
<linearGradient id="linear-gradient-18" x1="10783.01" y1="4962.47" x2="12151.93" y2="4962.47" xlink:href="#linear-gradient-16"/>
</defs>
<path d="M7718.15,2280.85V847.79h388.71v209.91c85.52-150.3,243.59-241,440.54-241,303.2,0,487.19,209.91,487.19,549.38v914.77h-388.71v-829.25c0-207.31-80.33-305.79-235.82-305.79-181.4,0-303.2,139.94-303.2,355.02v780.02h-388.71ZM6999.09,2317.13c-471.64,0-785.21-310.97-785.21-748.92s303.21-756.69,725.61-756.69c378.35,0,647.84,259.14,678.94,645.26l-976.97,352.43c75.15,121.8,217.69,191.77,412.05,191.77,152.89,0,300.6-38.87,409.44-114.02v313.56c-106.25,69.97-282.47,116.61-463.86,116.61ZM6581.86,1534.52l647.85-235.82c-41.46-116.61-147.7-186.58-290.23-186.58-228.04,0-380.95,176.22-357.63,422.4ZM5450.47,2322.31c-572.7,0-984.74-401.67-984.74-945.87s427.58-951.05,1010.65-951.05c230.64,0,448.32,59.6,567.52,152.89v362.8c-124.39-114.02-316.15-181.4-513.1-181.4-401.67,0-660.81,248.78-660.81,616.76s248.78,614.17,603.8,614.17c90.7,0,191.77-18.14,274.69-51.83v-412.04h-388.71v-310.97h741.15v896.63c-168.44,132.16-399.08,209.91-650.45,209.91ZM3260.92,2682.52l272.1-585.66-562.34-1249.06h422.4l347.26,800.75,344.65-800.75h393.9l-816.3,1834.72h-401.67ZM2420.07,2317.13c-471.64,0-785.2-310.97-785.2-748.92s303.2-756.69,725.6-756.69c378.35,0,647.85,259.14,678.95,645.26l-976.97,352.43c75.15,121.8,217.68,191.77,412.04,191.77,152.89,0,300.6-38.87,409.44-114.02v313.56c-106.25,69.97-282.46,116.61-463.86,116.61ZM2002.85,1534.52l647.85-235.82c-41.46-116.61-147.71-186.58-290.24-186.58-228.04,0-380.94,176.22-357.62,422.4ZM.61,2280.85V466.85h393.9v681.54h730.78V466.85h393.9v1813.99h-393.9v-785.2H394.51v785.2H.61Z"/>
<g>
<path class="cls-21" d="M10627.99,2657.98s-868.31-665.14-1000.64-765.35c-73.68-55.78-153.79-186.47-137.09-289.26,12.42-76.42,56.55-115.67,116.35-136.53,186.28-65,777.35-269.13,936.21-320.18,87.58-28.15,226.55-2.4,330.37,82.46,82.23,67.22,147.24,165.71,148.08,292.72,1.88,287.37,17.09,959.9,17.09,1046.42,0,49.35-20.75,133.02-118,162.34-94.64,28.53-212.39-11.45-292.37-72.63h0Z"/>
<path class="cls-18" d="M10866.73,1234.81c82.23,67.21,144.52,160.73,145.36,287.74,1.88,287.37,26.25,959.2,26.25,1045.73,0-86.53-5.79-770.51-7.68-1057.88-1.88-287.37-315.72-436.72-472.64-380-156.93,56.71-765.15,271.46-951.43,336.45,186.28-65,780.27-261.59,939.12-312.64,87.58-28.15,217.18-4.27,321.01,80.6h.01Z"/>
<path class="cls-22" d="M10866.73,1234.81c82.23,67.21,144.52,160.73,145.36,287.74,1.88,287.37,26.25,959.2,26.25,1045.73,0-86.53-5.79-770.51-7.68-1057.88-1.88-287.37-315.72-436.72-472.64-380-156.93,56.71-765.15,271.46-951.43,336.45,186.28-65,780.27-261.59,939.12-312.64,87.58-28.15,217.18-4.27,321.01,80.6h.01Z"/>
<path class="cls-17" d="M10627.99,2657.98s-868.31-665.14-1000.64-765.35c-73.68-55.78-153.79-186.47-137.09-289.26,12.42-76.42,56.55-115.67,116.35-136.53,186.28-65,777.35-269.13,936.21-320.18,87.58-28.15,226.55-2.4,330.37,82.46,82.23,67.22,155.56,166.7,156.97,293.7,1.4,125.09,1.83,322.36,3.37,512.59,2.01,247.64,3.99,483.38,3.85,532.86-.13,49.35-19.75,133.02-117.01,162.34-94.64,28.53-212.39-11.45-292.37-72.63h0Z"/>
<path class="cls-20" d="M10872.6,1228.61c82.29,67.13,147.4,165.57,148.36,292.57,2.18,287.37,18.03,959.89,18.11,1046.42-.08-86.53-6.54-770.5-8.7-1057.88-2.18-287.37-316.15-436.41-473.02-379.54-156.86,56.88-764.88,272.2-951.1,337.38,186.21-65.19,777.09-269.89,935.9-321.1,87.55-28.24,226.53-2.62,330.45,82.15Z"/>
<path class="cls-10" d="M10872.6,1228.61c82.29,67.13,147.4,165.57,148.36,292.57,2.18,287.37,18.03,959.89,18.11,1046.42-.08-86.53-6.54-770.5-8.7-1057.88-2.18-287.37-316.15-436.41-473.02-379.54-156.86,56.88-764.88,272.2-951.1,337.38,186.21-65.19,777.09-269.89,935.9-321.1,87.55-28.24,226.53-2.62,330.45,82.15Z"/>
<path class="cls-16" d="M10632.39,1125.43c40.53,0,85.15,9.01,129.03,26.05,45.69,17.74,89.54,43.92,126.82,75.67,41.02,34.95,73.49,75.66,96.53,121.01,25.49,50.2,38.62,104.8,38.99,162.3.78,119.44,2.25,309.08,3.68,492.48,2.05,264.75,3.99,514.81,3.99,565.35,0,17.52-2.8,51.91-21.64,85.28-19.33,34.27-50.1,57.97-91.44,70.43-20.03,6.04-41.89,9.1-64.96,9.1-36.69,0-77.02-7.88-116.65-22.8-37.36-14.06-73.51-34.05-104.55-57.8-8.68-6.65-869.83-666.29-1000.67-765.36-37.04-28.04-74.6-74.65-100.47-124.67-13.98-27.04-24.09-53.92-30.04-79.9-6.44-28.16-7.77-54.43-3.92-78.07,5.74-35.34,18.4-63.32,38.68-85.55,18.08-19.8,41.99-34.7,73.12-45.56,191.65-66.88,794.69-279.81,951.5-336.48,21.06-7.62,45.29-11.49,72.01-11.49M10632.38,1118.52c-27.02,0-52.25,3.9-74.35,11.88-156.92,56.71-765.14,271.46-951.42,336.46-59.8,20.87-103.94,60.09-116.35,136.52-16.7,102.79,63.41,233.48,137.09,289.27,132.34,100.2,1000.64,765.34,1000.64,765.34,61.92,47.37,146.46,82.03,225.41,82.03,23.03,0,45.58-2.96,66.96-9.4,97.26-29.31,118-112.98,118-162.33,0-86.53-5.79-770.51-7.68-1057.88-1.62-246.89-233.49-391.9-398.29-391.9h-.01Z"/>
<path class="cls-13" d="M11184.83,1489.7c0-78.68,30.02-207.84,100.55-307.99,39.67-56.34,89.69-107.79,141.49-131.36,40.29-18.33,59.58-21.36,107.38-11.5,0,0,579.09,124.18,614.4,131.34,35.31,7.18,73.84,31.14,78.97,104.77,5.13,73.62-14.26,189.97-96.68,309.97-82.42,119.99-584.21,844.79-647.23,935.69-63.01,90.9-157.64,148.93-211.37,134.78-68.18-17.96-82.76-80.79-82.23-124.15.97-80-5.28-1041.54-5.28-1041.54h.01Z"/>
<path class="cls-14" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-37" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-12" d="M11206.75,1489.73c0-78.68,27.14-192.58,97.68-292.73,39.67-56.34,75.27-98.94,124.05-126.98,38.38-22.06,75.61-27.24,123.41-17.38,0,0,561.45,110.41,596.77,117.58,35.31,7.18,73.83,31.14,78.97,104.77,5.13,73.62-14.26,189.97-96.68,309.97-82.42,119.99-584.21,844.79-647.23,935.69-63.02,90.89-157.75,149.34-211.37,134.78-63.19-17.15-59.72-78.89-60.33-124.15-1.12-83.65-5.26-1041.54-5.26-1041.54h0Z"/>
<path class="cls-9" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-6" d="M11272.32,2642.04c-63.19-17.15-59.72-65.53-60.33-110.8-1.12-83.66-5.25-1041.54-5.25-1041.54,0-78.68,27.14-192.58,97.67-292.73,39.67-56.34,75.27-98.94,124.06-126.98,38.38-22.06,75.61-27.24,123.4-17.38,0,0,561.45,110.41,596.77,117.58-35.31-7.17-614.4-131.34-614.4-131.34-47.79-9.87-67.09-6.83-107.38,11.5-51.81,23.57-101.82,75.02-141.49,131.36-70.53,100.15-100.55,229.32-100.55,307.99,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,53.73,14.15,148.35-43.87,211.37-134.78-63.02,90.91-157.75,135.99-211.37,121.42h-.01Z"/>
<path class="cls-11" d="M11490.41,1033.32v7.74c11.21,0,24.24,1.65,42.21,5.36,5.99,1.29,579.52,124.27,614.47,131.36,19.33,3.92,35.02,12.37,46.63,25.09,15.16,16.61,23.97,41.05,26.17,72.62,2,28.85.99,75.96-15.26,136.49-16.05,59.79-42.99,117.47-80.07,171.45-81.94,119.29-580.28,839.14-647.21,935.66-26.45,38.16-60.43,72.66-95.65,97.17-33.76,23.48-66.42,36.41-91.95,36.41-5.57,0-10.75-.63-15.45-1.86-28.29-7.46-49.14-23.81-61.99-48.64-12.37-23.87-14.69-50.13-14.48-67.95.96-79.05-5.2-1029.97-5.28-1041.65,0-42.19,8.14-94.81,22.31-144.37,17.21-60.22,42.94-115.66,74.38-160.3,43.77-62.16,95.1-109.74,140.81-130.53,23.29-10.6,39.81-16.33,60.35-16.33v-7.74M11490.41,1033.32c-21.1,0-38.15,5.49-63.55,17.03-51.81,23.57-104.27,76.78-143.94,133.11-70.53,100.15-98.1,230.47-98.1,309.15,0,0,6.25,961.55,5.28,1041.54-.54,43.36,14.04,106.18,82.23,124.15,5.41,1.43,11.24,2.12,17.43,2.12,55.05,0,137.27-55.17,193.95-136.9,63.03-90.91,564.82-815.7,647.23-935.69,82.42-120,101.81-239.25,96.68-312.87-5.13-73.62-43.66-97.58-78.97-104.76-35.31-7.18-614.4-131.34-614.4-131.34-17.67-3.65-31.44-5.55-43.83-5.55h-.01Z"/>
<path class="cls-15" d="M9437.47,1273.5c0-52.74,35.09-131.94,81.18-187.1,0,0,693.73-832.95,740.62-889.37s140.83-129.06,212.54-159.28c71.7-30.22,118.82-23.05,140.33,23.56,21.52,46.61,202.95,444.75,224.58,492.12,20.45,44.84,16.78,84.22-25.54,168.45-53.66,106.78-196.32,231.91-292.73,267.09-105.9,38.64-874.43,318.06-954.78,347.18-80.35,29.12-126.19-17.2-126.19-62.66Z"/>
<path class="cls-29" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-19" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-30" d="M9442.61,1263.34c0-52.74,29.94-121.79,76.04-176.95,0,0,693.73-832.95,740.62-889.37,46.89-56.42,140.83-129.06,212.54-159.28,71.7-30.22,108.19-21.79,129.7,24.81,21.52,46.6,196.48,425.61,217.43,473.27,16.91,38.48,17.16,78.63-21.97,155.65-51.59,101.53-197.54,238.66-293.94,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.57-100.68-54.02h0Z"/>
<path class="cls-5" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-19" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-4" d="M10836.71,553.42c-21.62-47.38-203.06-445.51-224.58-492.12-14.95-32.38-42.25-45.72-81.56-40.72,34.78-3.73,56.32,10.31,70.92,41.97,21.52,46.61,196.48,425.61,217.44,473.27,16.91,38.48,17.16,78.63-21.98,155.65-51.59,101.53-197.53,238.66-293.93,273.84-105.91,38.64-879.37,322.93-959.72,352.05-80.35,29.13-100.68-8.58-100.68-54.03,0-31.16,10.45-68.02,28.51-104.34-20.61,40.38-33.66,82.34-33.66,114.49,0,45.45,45.84,91.77,126.19,62.63,80.35-29.12,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45h-.01Z"/>
<path class="cls-31" d="M10545.94,29.24c27.42,0,43.82,13.58,55.03,37.89,17.39,37.66,140.95,301.72,199.18,429.45,13.62,29.86,23.61,51.79,27.75,60.86,10.18,22.32,13.18,41.49,10,64.1-3.45,24.58-14.36,54.19-35.38,96-12.65,25.18-30.69,52.11-53.65,80.03-21.8,26.53-46.87,52.61-74.52,77.52-55.36,49.87-113.4,88.08-159.22,104.79-101.76,37.13-871.06,316.83-954.77,347.18-15.57,5.65-30.36,8.51-43.99,8.51-21.02,0-38.88-6.8-51.64-19.66-11.19-11.27-17.61-26.73-17.61-42.39,0-24.03,7.99-55.55,22.5-88.79,14.5-33.21,34.54-65.92,56.45-92.14,6.93-8.33,694.27-833.61,740.62-889.39,22.44-27.01,57.2-59.06,95.36-87.93,39.97-30.25,80.28-54.62,113.49-68.61,27.45-11.56,51.13-17.42,70.39-17.42M10545.94,19.57c-20.75,0-45.48,6.1-74.14,18.19-71.71,30.22-165.66,102.86-212.54,159.28-46.89,56.42-740.62,889.37-740.62,889.37-46.08,55.16-81.17,134.35-81.17,187.11,0,35.59,28.12,71.72,78.92,71.72,14.06,0,29.86-2.76,47.27-9.08,80.35-29.13,848.87-308.54,954.78-347.18,96.41-35.18,239.06-160.31,292.73-267.09,42.32-84.23,46-123.6,25.54-168.45-21.62-47.38-203.06-445.51-224.58-492.12-12.9-27.98-35.05-41.74-66.2-41.74h0Z"/>
<path class="cls-3" d="M10795.84,67.84c-13.68-29.38-15.69-37.1-7.96-48.05,7.72-10.95,10.71-23.9,48.8-16.43,38.09,7.47,120.12,39.88,260.54,144.12,140.41,104.23,759,564.19,856.6,636.58,97.6,72.38,168.57,150.62,182.45,184.12,11.24,26.23,6.03,31.8-1.73,41.04-6.51,7.76-10.73,15.85-33.26,13.55,0,0-80.39-17.51-175.44-39.6-95.05-22.09-335.58-77.29-451.93-104.39-116.35-27.1-246.96-124.62-293.06-161.33-30.6-24.39-77.73-62.44-126.16-120.61-19.53-23.45-32.77-46.69-50.11-84.56-52.7-115.15-208.75-444.43-208.75-444.43h.01Z"/>
<path class="cls-8" d="M12128.13,955.97c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.69-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-67.4-53.75-115.83-111.93-19.52-23.45-48.83-78.23-66.87-115.77-55.15-114.81-202.86-407.96-202.86-407.96-13.69-29.38-11.25-37.86-4.65-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.57,129.85-132.53-96.69-210.67-127.33-247.56-134.57-38.09-7.47-41.08,5.48-48.8,16.43-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,30.57,61.11,50.11,84.56,48.43,58.17,95.56,96.23,126.16,120.61,46.09,36.72,176.71,134.24,293.06,161.33,116.35,27.1,356.87,82.29,451.93,104.39,95.06,22.09,175.43,39.6,175.43,39.6,22.54,2.3,26.76-5.79,33.27-13.55,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-28" d="M12128.13,955.97c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.69-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-67.4-53.75-115.83-111.93-19.52-23.45-48.83-78.23-66.87-115.77-55.15-114.81-202.86-407.96-202.86-407.96-13.69-29.38-11.25-37.86-4.65-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.57,129.85-132.53-96.69-210.67-127.33-247.56-134.57-38.09-7.47-41.08,5.48-48.8,16.43-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,30.57,61.11,50.11,84.56,48.43,58.17,95.56,96.23,126.16,120.61,46.09,36.72,176.71,134.24,293.06,161.33,116.35,27.1,356.87,82.29,451.93,104.39,95.06,22.09,175.43,39.6,175.43,39.6,22.54,2.3,26.76-5.79,33.27-13.55,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<g>
<path class="cls-32" d="M10807,54.96c-13.69-29.38-13.06-42.37-6.45-48,3.27-2.79,23.71-4.99,41.4-1.02,38.47,8.64,114.85,37.31,255.27,141.55,140.41,104.23,754.99,566.07,852.59,638.45,97.61,72.38,165.94,146.71,179.83,180.21,3.99,11.35,10.92,29.2,5.11,34.75-5.32,5.1-11.85,5.85-29.57,1.72,0,0-81.01-21.21-176.07-43.3-95.06-22.09-332.09-78.89-448.43-105.98-116.35-27.1-233.41-120.57-279.49-157.28-30.61-24.39-72.26-56-120.69-114.17-19.52-23.45-42.89-46.52-60.23-84.39-52.7-115.15-213.29-442.53-213.29-442.53h.02Z"/>
<path class="cls-2" d="M10807,54.96c-13.69-29.38-13.06-42.37-6.45-48,3.27-2.79,23.71-4.99,41.4-1.02,38.47,8.64,114.85,37.31,255.27,141.55,140.41,104.23,754.99,566.07,852.59,638.45,97.61,72.38,165.94,146.71,179.83,180.21,3.99,11.35,10.92,29.2,5.11,34.75-5.32,5.1-11.85,5.85-29.57,1.72,0,0-81.01-21.21-176.07-43.3-95.06-22.09-332.09-78.89-448.43-105.98-116.35-27.1-233.41-120.57-279.49-157.28-30.61-24.39-72.26-56-120.69-114.17-19.52-23.45-42.89-46.52-60.23-84.39-52.7-115.15-213.29-442.53-213.29-442.53h.02Z"/>
</g>
<path class="cls-7" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-36" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,30.85-7.98,37.35-15.75,7.76-9.25,3.53-24.67-10.51-50.11h.01Z"/>
<path class="cls-36" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-26" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-1" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,15.25-15.91,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-27" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-23" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-25" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-23" d="M12122.38,955.98c4,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.75-41.05-95.06-22.09-335.74-80.43-452.1-107.52-116.35-27.09-231.51-119.68-277.61-156.4-30.6-24.39-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.91-407.96-201.91-407.96-13.69-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.56-3.49,28.44-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.52-96.69-210.54-127.91-247.55-134.57-33.39-6.02-35.76,7.59-43.87,18.95-6.24,8.74-4.92,16.16,8.77,45.54,0,0,152.49,321.52,205.19,436.67,17.34,37.88,34.14,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.1,116.74,46.09,36.72,175.03,136.2,291.39,163.3,116.35,27.09,356.87,82.29,451.93,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.54,2.29,26.76-4.84,33.27-12.61,7.76-9.25,4.84-27.02-6.42-53.25h.01Z"/>
<path class="cls-24" d="M12125.55,957.53c3.99,11.35,6.29,32.09.49,37.64-5.32,5.1-15.04,3.15-32.74-.98,0,0-67.71-18.96-162.76-41.05-95.06-22.09-335.73-80.43-452.09-107.52-116.35-27.1-231.52-119.68-277.61-156.4-30.61-24.38-65.5-59.46-113.92-117.63-19.53-23.45-47.88-72.53-65.91-110.07-55.15-114.81-201.92-407.96-201.92-407.96-13.68-29.38-15.06-37.86-8.45-43.48,3.27-2.79,10.57-3.49,28.45-.44,37.07,6.32,110.37,33.41,242.56,129.85-132.51-96.69-210.54-127.91-247.54-134.57-33.39-6.02-35.76,7.59-43.88,18.95-6.23,8.74-4.91,16.16,8.77,45.54,0,0,152.5,321.52,205.2,436.67,17.34,37.88,34.13,68.86,53.66,92.31,48.43,58.17,91.49,92.36,122.09,116.74,46.1,36.72,175.03,136.2,291.39,163.3,116.36,27.09,356.88,82.29,451.94,104.39,95.06,22.09,175.43,40.56,175.43,40.56,22.53,2.29,26.76-4.85,33.27-12.61,7.76-9.25,4.83-27.02-6.42-53.25h0Z"/>
<path class="cls-33" d="M10817.23,8.75c4.93,0,10.97.69,17.97,2.07,16.08,3.15,44.71,11.79,89.88,35.07,48.86,25.17,105.25,61.4,167.59,107.68,67.62,50.21,248.83,184.89,424.06,315.15,187.77,139.58,381.94,283.9,432.53,321.43,56.73,42.08,97.48,80.77,121.69,105.82,29.77,30.82,51.56,58.9,58.27,75.1l.02.04.02.04c4.5,10.5,6.39,17.9,5.75,22.61-.47,3.46-1.75,6.1-5.43,10.49l-.36.44c-.6.71-1.17,1.42-1.74,2.13-4.6,5.67-9.48,5.24-20.58,5.24-1.83,0-3.87-.1-6.03-.31-15.13-2.92-82.94-15-173.31-36-42.74-9.94-107.71-29.5-184.43-47.17-96.35-22.2-203.46-42.3-267.49-57.22-49.35-11.49-106.75-37.11-170.64-76.14-53.36-32.61-97.72-66.45-119.41-83.73-36.7-29.22-76.43-64.9-121.84-119.45-18.47-22.45-32.35-45.13-50.34-84.42-52.01-113.66-208.56-438.54-210.68-443.02-14.15-30.36-13.41-33.66-8.63-40.43.94-1.34,1.79-2.67,2.62-3.95,4.59-7.16,7.39-11.47,20.51-11.47ZM10817.23,1.15c-20.08,0-23.24,9.95-29.36,18.64-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,28.38,63.86,47.9,87.31,48.44,58.17,96.03,96.47,126.64,120.86,46.1,36.72,177.7,136.18,294.05,163.27,116.35,27.1,357.61,77.36,452.67,99.46,95.06,22.09,175.43,39.6,175.43,39.6,2.65.27,5.04.39,7.22.39,16.34,0,20.31-7.1,26.05-13.96,7.76-9.24,12.97-14.81,1.73-41.04-13.89-33.5-84.85-111.73-182.45-184.12-97.61-72.38-716.2-532.35-856.6-636.58-140.43-104.21-222.46-136.63-260.55-144.1-7.86-1.54-14.22-2.22-19.44-2.22Z"/>
<path class="cls-34" d="M10817.23,8.75c4.93,0,10.97.69,17.97,2.07,16.08,3.15,44.71,11.79,89.88,35.07,48.86,25.17,105.25,61.4,167.59,107.68,67.62,50.21,248.83,184.89,424.06,315.15,187.77,139.58,381.94,283.9,432.53,321.43,56.73,42.08,97.48,80.77,121.69,105.82,29.77,30.82,51.56,58.9,58.27,75.1l.02.04.02.04c4.5,10.5,6.39,17.9,5.75,22.61-.47,3.46-1.75,6.1-5.43,10.49l-.36.44c-.6.71-1.17,1.42-1.74,2.13-4.6,5.67-9.48,5.24-20.58,5.24-1.83,0-3.87-.1-6.03-.31-15.13-2.92-82.94-15-173.31-36-42.74-9.94-107.71-29.5-184.43-47.17-96.35-22.2-203.46-42.3-267.49-57.22-49.35-11.49-106.75-37.11-170.64-76.14-53.36-32.61-97.72-66.45-119.41-83.73-36.7-29.22-76.43-64.9-121.84-119.45-18.47-22.45-32.35-45.13-50.34-84.42-52.01-113.66-208.56-438.54-210.68-443.02-14.15-30.36-13.41-33.66-8.63-40.43.94-1.34,1.79-2.67,2.62-3.95,4.59-7.16,7.39-11.47,20.51-11.47ZM10817.23,1.15c-20.08,0-23.24,9.95-29.36,18.64-7.72,10.95-5.72,18.67,7.96,48.05,0,0,156.06,329.28,208.75,444.43,17.34,37.88,28.38,63.86,47.9,87.31,48.44,58.17,96.03,96.47,126.64,120.86,46.1,36.72,177.7,136.18,294.05,163.27,116.35,27.1,357.61,77.36,452.67,99.46,95.06,22.09,175.43,39.6,175.43,39.6,2.65.27,5.04.39,7.22.39,16.34,0,20.31-7.1,26.05-13.96,7.76-9.24,12.97-14.81,1.73-41.04-13.89-33.5-84.85-111.73-182.45-184.12-97.61-72.38-716.2-532.35-856.6-636.58-140.43-104.21-222.46-136.63-260.55-144.1-7.86-1.54-14.22-2.22-19.44-2.22Z"/>
<path class="cls-35" d="M10817.09,8.64c4.96,0,11.05.7,18.11,2.09,16.19,3.17,45.03,11.87,90.52,35.32,49.2,25.35,105.99,61.84,168.76,108.44,68.11,50.56,250.59,186.19,427.05,317.37,189.1,140.56,384.63,285.9,435.57,323.69,57.14,42.37,98.18,81.34,122.55,106.57,29.99,31.04,51.93,59.32,58.69,75.63l.02.04.02.04c4.53,10.58,2.28,15.09,1.63,19.83-1.63,3.45-2.28,5.76-5.98,10.19l-.37.44c-.61.72-1.17,1.43-1.75,2.14-4.64,5.71-7.43,9.17-18.61,9.17-1.85,0-3.89-.11-6.07-.31-6.53-1.43-80.97-15.69-171.98-36.84-43.04-10-116.03-26.82-193.29-44.62-97.01-22.35-203.49-41.23-267.97-56.26-49.69-11.57-107.5-37.37-171.84-76.68-53.74-32.84-98.41-66.92-120.25-84.32-36.95-29.43-80.19-65.44-125.93-120.37-18.35-22.04-31.27-43.88-49.37-83.44-52.38-114.46-201.96-447.36-204.1-451.87-14.25-30.57-13.5-33.9-8.69-40.72.95-1.35,1.81-2.69,2.64-3.97,4.64-7.21,7.44-11.56,20.66-11.56ZM10817.09.98c-20.22,0-23.4,10.02-29.56,18.77-7.77,11.03-5.76,18.8,8.03,48.39,0,0,151.54,337.86,204.6,453.82,17.46,38.14,30.8,61.54,50.46,85.16,48.77,58.58,96.22,96.9,127.05,121.46,46.41,36.97,177.95,135.18,295.11,162.47,117.17,27.28,365,76.6,460.73,98.85,95.72,22.25,172.5,36.95,172.5,36.95,2.66.26,5.07.39,7.27.39,16.46,0,20.45-7.16,26.23-14.06,7.81-9.31,11.26-17.13,4.03-38.33-13.99-33.74-85.45-112.52-183.74-185.41-98.29-72.89-719.36-536.15-860.75-641.12-141.42-104.95-224.02-137.59-262.38-145.11-7.91-1.55-14.32-2.23-19.58-2.23Z"/>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95.0 18.5">
<g transform="scale(0.015200, -0.015200) translate(0, -960)" fill="#0a0a0a">
<path d="M42 0V700H227V450H472V700H657V0H472V290H227V0Z" transform="translate(0.0, 0)"/>
<path d="M107 -154 204 59 -14 560H183L301 272L418 560H600L296 -154Z" transform="translate(689.0, 0)"/>
<path d="M34 -154V560H216V477Q242 523 287.5 547.5Q333 572 391 572Q464 572 521.5 534.0Q579 496 612.5 430.0Q646 364 646 281Q646 197 612.0 131.0Q578 65 520.5 27.0Q463 -11 390 -11Q333 -11 287.5 11.5Q242 34 216 77V-154ZM339 139Q395 139 429.0 178.5Q463 218 463 280Q463 342 429.0 381.0Q395 420 339 420Q299 420 271.5 400.5Q244 381 230.0 352.0Q216 323 216 294V265Q216 236 230.0 207.0Q244 178 271.5 158.5Q299 139 339 139Z" transform="translate(1264.0, 0)"/>
<path d="M331 -15Q236 -15 165.0 22.5Q94 60 54.5 126.0Q15 192 15 277Q15 363 53.5 430.0Q92 497 158.5 536.0Q225 575 310 575Q389 575 448.5 539.5Q508 504 542.0 441.0Q576 378 576 294Q576 276 574.5 259.0Q573 242 572 228H191Q203 178 246.5 151.0Q290 124 360 124Q452 124 515 165V29Q484 9 434.5 -3.0Q385 -15 331 -15ZM191 345H413Q411 392 382.5 417.5Q354 443 308 443Q263 443 232.0 417.5Q201 392 191 345Z" transform="translate(1915.0, 0)"/>
<path d="M34 0V560H215V455Q233 508 267.0 537.5Q301 567 346 567Q372 567 387 558V385Q368 396 336 396Q280 396 248.0 358.5Q216 321 216 256V0Z" transform="translate(2494.0, 0)"/>
<path d="M42 0V700H442V547H227V419H431V273H227V0Z" transform="translate(2882.0, 0)"/>
<path d="M34 0V560H215V455Q233 508 267.0 537.5Q301 567 346 567Q372 567 387 558V385Q368 396 336 396Q280 396 248.0 358.5Q216 321 216 256V0Z" transform="translate(3331.0, 0)"/>
<path d="M270 -11Q197 -11 139.5 27.0Q82 65 48.5 130.5Q15 196 15 279Q15 363 48.5 429.0Q82 495 140.0 533.5Q198 572 271 572Q327 572 372.0 549.0Q417 526 444 482V560H626V0H444V84Q417 38 372.0 13.5Q327 -11 270 -11ZM321 139Q362 139 389.0 158.5Q416 178 430.0 207.5Q444 237 444 266V295Q444 324 430.0 353.0Q416 382 389.0 401.0Q362 420 321 420Q266 420 231.5 381.5Q197 343 197 280Q197 218 231.5 178.5Q266 139 321 139Z" transform="translate(3719.0, 0)"/>
<path d="M34 0V560H216V486Q241 527 282.5 549.5Q324 572 379 572Q435 572 475.0 547.0Q515 522 538 477Q564 521 609.0 546.5Q654 572 712 572Q800 572 850.0 514.0Q900 456 900 358V0H718V322Q718 420 647 420Q608 420 583.0 390.0Q558 360 558 309V0H376V322Q376 420 306 420Q266 420 241.0 390.0Q216 360 216 309V0Z" transform="translate(4369.0, 0)"/>
<path d="M331 -15Q236 -15 165.0 22.5Q94 60 54.5 126.0Q15 192 15 277Q15 363 53.5 430.0Q92 497 158.5 536.0Q225 575 310 575Q389 575 448.5 539.5Q508 504 542.0 441.0Q576 378 576 294Q576 276 574.5 259.0Q573 242 572 228H191Q203 178 246.5 151.0Q290 124 360 124Q452 124 515 165V29Q484 9 434.5 -3.0Q385 -15 331 -15ZM191 345H413Q411 392 382.5 417.5Q354 443 308 443Q263 443 232.0 417.5Q201 392 191 345Z" transform="translate(5290.0, 0)"/>
<path d="M136 -12Q63 -12 12 15V151Q46 127 87 127Q117 127 134.5 141.0Q152 155 152 178Q152 191 146.0 205.0Q140 219 125 237L83 288Q62 314 52.5 342.5Q43 371 43 400Q43 451 70.0 490.0Q97 529 143.5 550.5Q190 572 250 572Q318 572 364 548V412Q351 422 332.0 428.0Q313 434 294 434Q265 434 247.5 420.5Q230 407 230 385Q230 360 259 325L300 275Q342 221 342 161Q342 110 315.0 71.0Q288 32 241.5 10.0Q195 -12 136 -12Z" transform="translate(5869.0, 0)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

+1 -1
View File
@@ -11,7 +11,7 @@
.tpl-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,0,0,0.25);
border-color: var(--border-color-light, #d0cfcb);
}
.tpl-label {
+1 -1
View File
@@ -5,7 +5,7 @@ pre-commit:
glob: "*.{js,jsx,ts,tsx}"
run: bunx oxlint {staged_files}
format:
glob: "*.{js,jsx,ts,tsx,json,css,md,yaml,yml}"
glob: "*.{js,jsx,ts,tsx,json,md,yaml,yml}"
run: bunx oxfmt --check {staged_files}
typecheck:
glob: "*.{ts,tsx}"