trdr-ds-install 1.6.5 → 1.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/plugins/trdr-design-system/skills/trdr-ds/SKILL.md +2 -2
- package/plugins/trdr-design-system/skills/trdr-ds/data/components.json +144 -6
- package/plugins/trdr-design-system/skills/trdr-ds/references/logo-trdr.svg +25 -25
- package/plugins/trdr-design-system/skills/trdr-ds/references/tokens.css +2 -2
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ argument-hint: "[analyze|apply|foundation|violations|components|final|resume|sta
|
|
|
6
6
|
allowed-tools: [Read, Glob, Grep, Edit, Write, Bash, WebFetch]
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
**Skill version:** 1.6.
|
|
9
|
+
**Skill version:** 1.6.7
|
|
10
10
|
**npm package:** trdr-ds-install
|
|
11
11
|
|
|
12
12
|
You are implementing the **TRDR Design System** in a developer's project. The Design Hub is the single source of truth and lives at **https://trdr.mrocontent.com.br**.
|
|
@@ -59,7 +59,7 @@ Compare the result with the **Skill version** constant at the top of this file (
|
|
|
59
59
|
- If registry version == local version: skip silently, continue.
|
|
60
60
|
- If registry version > local version:
|
|
61
61
|
```
|
|
62
|
-
🔄 Nova versão da skill disponível: trdr-ds-install@[registry-version] (instalada: 1.6.
|
|
62
|
+
🔄 Nova versão da skill disponível: trdr-ds-install@[registry-version] (instalada: 1.6.7)
|
|
63
63
|
|
|
64
64
|
Responda:
|
|
65
65
|
- `"atualizar"` / `"update"` — instalar a nova versão agora (requer reiniciar /trdr-ds após)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0",
|
|
3
|
-
"generatedAt": "2026-05-
|
|
4
|
-
"total":
|
|
5
|
-
"implemented":
|
|
3
|
+
"generatedAt": "2026-05-13T01:45:02.748Z",
|
|
4
|
+
"total": 19,
|
|
5
|
+
"implemented": 19,
|
|
6
6
|
"categories": {
|
|
7
7
|
"formulario": "Formulário / Controles",
|
|
8
8
|
"modal": "Modais / Overlays",
|
|
@@ -1327,9 +1327,9 @@
|
|
|
1327
1327
|
"implemented": true,
|
|
1328
1328
|
"code": {
|
|
1329
1329
|
"html": "<!-- Card com footer (variante componente) — Design System TRDR (Figma: 2316:2462) -->\n<a href=\"/destino\" class=\"card\">\n\n <!-- Container 1: conteúdo principal -->\n <div class=\"card-container1 card-has-footer\">\n <div class=\"card-header\">\n <!-- Ícone (opcional) -->\n <span class=\"card-icon material-symbols-outlined\">palette</span>\n <!-- Badges do header (opcional) -->\n <div class=\"card-badges\">\n <span class=\"trdr-badge trdr-badge-neutral\">Tokens</span>\n </div>\n </div>\n <!-- H-6: Space Grotesk 500, 26px -->\n <span class=\"card-title\">Design Tokens</span>\n <!-- B-3: Inter 400, 14px, content/tertiary -->\n <p class=\"card-desc\">Cores, espaçamentos e tokens semânticos do design system.</p>\n </div>\n\n <!-- Container 2: footer (opcional) -->\n <div class=\"card-footer\">\n <code class=\"card-figma-id\">2316:2462</code>\n <div class=\"card-badges\">\n <span class=\"trdr-badge trdr-badge-success\">Implementado</span>\n </div>\n </div>\n\n</a>",
|
|
1330
|
-
"css": "/* Card — Design System TRDR (Figma node: 2316:2462, 380×154) */\n.card {\n display: flex;\n flex-direction: column;\n gap: var(--spacing-md); /* 12px entre container1 e footer */\n min-width: 250px;\n padding: var(--spacing-2xl); /* 24px */\n background: var(--surface-tertiary);\n border: 1px solid var(--border-subtle);\n border-radius: var(--radius-md); /* 12px */\n text-decoration: none;\n overflow: hidden;\n transition: border-color 0.15s ease, background-color 0.15s ease;\n cursor: pointer;\n}\n\n.card:hover {\n border-color: var(--border-default);\n background: var(--surface-secondary);\n}\n\n/* Container 1 — conteúdo principal */\n.card-container1 {\n display: flex;\n flex-direction: column;\n gap: 8px;\n align-items: flex-start;\n width: 100%;\n}\n\n/* Borda inferior quando há footer */\n.card-has-footer {\n border-bottom: 1px solid var(--border-subtle);\n padding-bottom: var(--spacing-md); /* 12px */\n}\n\n.card-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n width: 100%;\n}\n\n/* Material Symbols Outlined — ExtraLight (wght 100) */\n.card-icon {\n font-family: 'Material Symbols Outlined';\n font-size: 44px;\n font-style: normal;\n line-height: 1;\n color: var(--content-brand);\n font-variation-settings: 'FILL' 0, 'GRAD' 0, 'wght' 100, 'opsz' 48;\n}\n\n.card-badges {\n display: flex;\n align-items: center;\n gap: 4px;\n flex-shrink: 0;\n}\n\n/* H-6: Space Grotesk Medium 500, 26px */\n.card-title {\n font-family: var(--font-primary); /* Space Grotesk */\n font-size: 26px;\n font-weight: 500;\n line-height: 1.1;\n color: var(--content-secondary);\n}\n\n/* B-3: Inter Regular 400, 14px */\n.card-desc {\n font-family: var(--font-secondary); /* Inter */\n font-size: 14px;\n font-weight: 400;\n line-height: 1.2;\n color: var(--content-tertiary);\n margin: 0;\n}\n\n/* Container 2 — footer */\n.card-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n}\n\n/* B-4: Inter Medium 500, 12px, 0.2px tracking */\n.card-figma-id {\n font-family: var(--font-secondary);\n font-size: 12px;\n font-weight: 500;\n letter-spacing: 0.2px;\n color: var(--content-tertiary);\n font-style: normal;\n}",
|
|
1331
|
-
"react": "'use client'\nimport Link from 'next/link'\nimport styles from './Card.module.css'\n\ninterface CardBadge {\n label: string\n variant?: 'neutral' | 'brand' | 'success'\n}\n\ninterface CardProps {\n href: string\n icon?: string // Material Symbols Outlined name (ex: 'palette')\n title: string\n description: string\n headerBadges?: CardBadge[] // badges no header (topo direito)\n footerLeft?: string // texto do footer (ex: Figma ID '2316:2462')\n footerBadges?: CardBadge[] // badges do footer\n className?: string\n}\n\nexport default function Card({\n href, icon, title, description,\n headerBadges, footerLeft, footerBadges, className = '',\n}: CardProps) {\n const hasFooter = footerLeft || (footerBadges && footerBadges.length > 0)\n\n return (\n <Link href={href} className={`${styles.card} ${className}`}>\n\n {/* Container 1 — conteúdo principal */}\n <div className={`${styles.container1} ${hasFooter ? styles.hasBorder : ''}`}>\n <div className={styles.header}>\n {icon && (\n <span\n className={styles.icon}\n style={{ fontVariationSettings: \"'FILL' 0, 'GRAD' 0, 'wght' 100, 'opsz' 48\" }}\n >\n {icon}\n </span>\n )}\n {headerBadges && headerBadges.length > 0 && (\n <div className={styles.badges}>\n {headerBadges.map(b => (\n <span key={b.label} className={`trdr-badge trdr-badge-${b.variant ?? 'neutral'}`}>\n {b.label}\n </span>\n ))}\n </div>\n )}\n </div>\n <span className={styles.title}>{title}</span>\n <p className={styles.desc}>{description}</p>\n </div>\n\n {/* Container 2 — footer (opcional) */}\n {hasFooter && (\n <div className={styles.container2}>\n {footerLeft && <code className={styles.footerLeft}>{footerLeft}</code>}\n {footerBadges && footerBadges.length > 0 && (\n <div className={styles.badges}>\n {footerBadges.map(b => (\n <span key={b.label} className={`trdr-badge trdr-badge-${b.variant ?? 'neutral'}`}>\n {b.label}\n </span>\n ))}\n </div>\n )}\n </div>\n )}\n\n </Link>\n )\n}\n\n/* Card.module.css — estrutura dois containers */\n/*\n.card {\n display: flex; flex-direction: column;\n gap: var(--spacing-md);\n padding: var(--spacing-2xl);\n background: var(--surface-tertiary);\n border: 1px solid var(--border-subtle);\n border-radius: var(--radius-md);\n text-decoration: none; cursor: pointer;\n transition: border-color 0.15s ease, background-color 0.15s ease;\n}\n.card:hover { border-color: var(--border-default); background: var(--surface-secondary); }\n.container1 { display: flex; flex-direction: column; gap: 8px; width: 100%; }\n.hasBorder { border-bottom: 1px solid var(--border-subtle); padding-bottom: var(--spacing-md); }\n.header { display: flex; align-items: flex-start; justify-content: space-between; width: 100%; }\n.icon { font-family: 'Material Symbols Outlined'; font-size: 44px; color: var(--content-brand); }\n.badges { display: flex; align-items: center; gap: 4px; }\n.title { font-family: var(--font-primary); font-size: 26px; font-weight: 500; color: var(--content-secondary); }\n.desc { font-family: var(--font-secondary); font-size: 14px; font-weight: 400; color: var(--content-tertiary); margin: 0; }\n.container2 { display: flex; align-items: center; justify-content: space-between; width: 100%; }\n.footerLeft { font-family: var(--font-secondary); font-size: 12px; font-weight: 500; letter-spacing: 0.2px; color: var(--content-tertiary); }\n*/",
|
|
1332
|
-
"prompt": "Implemente o componente Card do Design System TRDR.\nReferência Figma: nó 2316:2462 (380×154)\n\nEstrutura de dois containers separados por borda:\n\nContainer 1 (conteúdo principal):\n- Header: ícone Material Symbols Outlined 44px ExtraLight (wght 100) em var(--content-brand) à esquerda + badges à direita (opcional)\n- Título H-6: Space Grotesk Medium 500, 26px, line-height 1.1, var(--content-secondary)\n- Descrição B-3: Inter Regular 400, 14px, line-height 1.2, var(--content-tertiary)\n- Quando há footer: recebe border-bottom 1px solid var(--border-subtle) + padding-bottom 12px\n\nContainer 2 (footer, opcional):\n- Esquerda: Figma ID em B-4 (Inter Medium 500, 12px, 0.2px tracking, var(--content-tertiary))\n- Direita: badges (trdr-badge-success = implementado, trdr-badge-brand = código)\n\nTokens TRDR obrigatórios:\n- Background: var(--surface-tertiary) → hover: var(--surface-secondary)\n- Border: 1px solid var(--border-subtle) → hover: var(--border-default)\n- Border radius: var(--radius-md) — 12px\n- Padding: var(--spacing-2xl) — 24px\n- Gap entre containers: var(--spacing-md) — 12px\n- Transição: border-color e background-color em 0.15s ease\n\nImplemente como componente React com CSS Module. Use as classes .trdr-badge e .trdr-badge-{variant} para os badges. O componente deve aceitar as props: href, icon?, title, description, headerBadges?, footerLeft?, footerBadges?."
|
|
1330
|
+
"css": "/* Card — Design System TRDR (Figma node: 2316:2462, 380×154) */\n.card {\n display: flex;\n flex-direction: column;\n gap: var(--scale-spacing-md); /* 12px entre container1 e footer */\n min-width: 250px;\n padding: var(--scale-spacing-2xl); /* 24px */\n background: var(--surface-tertiary);\n border: 1px solid var(--border-subtle);\n border-radius: var(--scale-radius-md); /* 12px */\n text-decoration: none;\n overflow: hidden;\n transition: border-color 0.15s ease, background-color 0.15s ease;\n cursor: pointer;\n}\n\n.card:hover {\n border-color: var(--border-default);\n background: var(--surface-secondary);\n}\n\n/* Container 1 — conteúdo principal */\n.card-container1 {\n display: flex;\n flex-direction: column;\n gap: 8px;\n align-items: flex-start;\n width: 100%;\n}\n\n/* Borda inferior quando há footer */\n.card-has-footer {\n border-bottom: 1px solid var(--border-subtle);\n padding-bottom: var(--scale-spacing-md); /* 12px */\n}\n\n.card-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n width: 100%;\n}\n\n/* Material Symbols Outlined — ExtraLight (wght 100) */\n.card-icon {\n font-family: 'Material Symbols Outlined';\n font-size: 44px;\n font-style: normal;\n line-height: 1;\n color: var(--content-brand);\n font-variation-settings: 'FILL' 0, 'GRAD' 0, 'wght' 100, 'opsz' 48;\n}\n\n.card-badges {\n display: flex;\n align-items: center;\n gap: 4px;\n flex-shrink: 0;\n}\n\n/* H-6: Space Grotesk Medium 500, 26px */\n.card-title {\n font-family: var(--font-primary); /* Space Grotesk */\n font-size: 26px;\n font-weight: 500;\n line-height: 1.1;\n color: var(--content-secondary);\n}\n\n/* B-3: Inter Regular 400, 14px */\n.card-desc {\n font-family: var(--font-secondary); /* Inter */\n font-size: 14px;\n font-weight: 400;\n line-height: 1.2;\n color: var(--content-tertiary);\n margin: 0;\n}\n\n/* Container 2 — footer */\n.card-footer {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n}\n\n/* B-4: Inter Medium 500, 12px, 0.2px tracking */\n.card-figma-id {\n font-family: var(--font-secondary);\n font-size: 12px;\n font-weight: 500;\n letter-spacing: 0.2px;\n color: var(--content-tertiary);\n font-style: normal;\n}",
|
|
1331
|
+
"react": "'use client'\nimport Link from 'next/link'\nimport styles from './Card.module.css'\n\ninterface CardBadge {\n label: string\n variant?: 'neutral' | 'brand' | 'success'\n}\n\ninterface CardProps {\n href: string\n icon?: string // Material Symbols Outlined name (ex: 'palette')\n title: string\n description: string\n headerBadges?: CardBadge[] // badges no header (topo direito)\n footerLeft?: string // texto do footer (ex: Figma ID '2316:2462')\n footerBadges?: CardBadge[] // badges do footer\n className?: string\n}\n\nexport default function Card({\n href, icon, title, description,\n headerBadges, footerLeft, footerBadges, className = '',\n}: CardProps) {\n const hasFooter = footerLeft || (footerBadges && footerBadges.length > 0)\n\n return (\n <Link href={href} className={`${styles.card} ${className}`}>\n\n {/* Container 1 — conteúdo principal */}\n <div className={`${styles.container1} ${hasFooter ? styles.hasBorder : ''}`}>\n <div className={styles.header}>\n {icon && (\n <span\n className={styles.icon}\n style={{ fontVariationSettings: \"'FILL' 0, 'GRAD' 0, 'wght' 100, 'opsz' 48\" }}\n >\n {icon}\n </span>\n )}\n {headerBadges && headerBadges.length > 0 && (\n <div className={styles.badges}>\n {headerBadges.map(b => (\n <span key={b.label} className={`trdr-badge trdr-badge-${b.variant ?? 'neutral'}`}>\n {b.label}\n </span>\n ))}\n </div>\n )}\n </div>\n <span className={styles.title}>{title}</span>\n <p className={styles.desc}>{description}</p>\n </div>\n\n {/* Container 2 — footer (opcional) */}\n {hasFooter && (\n <div className={styles.container2}>\n {footerLeft && <code className={styles.footerLeft}>{footerLeft}</code>}\n {footerBadges && footerBadges.length > 0 && (\n <div className={styles.badges}>\n {footerBadges.map(b => (\n <span key={b.label} className={`trdr-badge trdr-badge-${b.variant ?? 'neutral'}`}>\n {b.label}\n </span>\n ))}\n </div>\n )}\n </div>\n )}\n\n </Link>\n )\n}\n\n/* Card.module.css — estrutura dois containers */\n/*\n.card {\n display: flex; flex-direction: column;\n gap: var(--scale-spacing-md);\n padding: var(--scale-spacing-2xl);\n background: var(--surface-tertiary);\n border: 1px solid var(--border-subtle);\n border-radius: var(--scale-radius-md);\n text-decoration: none; cursor: pointer;\n transition: border-color 0.15s ease, background-color 0.15s ease;\n}\n.card:hover { border-color: var(--border-default); background: var(--surface-secondary); }\n.container1 { display: flex; flex-direction: column; gap: 8px; width: 100%; }\n.hasBorder { border-bottom: 1px solid var(--border-subtle); padding-bottom: var(--scale-spacing-md); }\n.header { display: flex; align-items: flex-start; justify-content: space-between; width: 100%; }\n.icon { font-family: 'Material Symbols Outlined'; font-size: 44px; color: var(--content-brand); }\n.badges { display: flex; align-items: center; gap: 4px; }\n.title { font-family: var(--font-primary); font-size: 26px; font-weight: 500; color: var(--content-secondary); }\n.desc { font-family: var(--font-secondary); font-size: 14px; font-weight: 400; color: var(--content-tertiary); margin: 0; }\n.container2 { display: flex; align-items: center; justify-content: space-between; width: 100%; }\n.footerLeft { font-family: var(--font-secondary); font-size: 12px; font-weight: 500; letter-spacing: 0.2px; color: var(--content-tertiary); }\n*/",
|
|
1332
|
+
"prompt": "Implemente o componente Card do Design System TRDR.\nReferência Figma: nó 2316:2462 (380×154)\n\nEstrutura de dois containers separados por borda:\n\nContainer 1 (conteúdo principal):\n- Header: ícone Material Symbols Outlined 44px ExtraLight (wght 100) em var(--content-brand) à esquerda + badges à direita (opcional)\n- Título H-6: Space Grotesk Medium 500, 26px, line-height 1.1, var(--content-secondary)\n- Descrição B-3: Inter Regular 400, 14px, line-height 1.2, var(--content-tertiary)\n- Quando há footer: recebe border-bottom 1px solid var(--border-subtle) + padding-bottom 12px\n\nContainer 2 (footer, opcional):\n- Esquerda: Figma ID em B-4 (Inter Medium 500, 12px, 0.2px tracking, var(--content-tertiary))\n- Direita: badges (trdr-badge-success = implementado, trdr-badge-brand = código)\n\nTokens TRDR obrigatórios:\n- Background: var(--surface-tertiary) → hover: var(--surface-secondary)\n- Border: 1px solid var(--border-subtle) → hover: var(--border-default)\n- Border radius: var(--scale-radius-md) — 12px\n- Padding: var(--scale-spacing-2xl) — 24px\n- Gap entre containers: var(--scale-spacing-md) — 12px\n- Transição: border-color e background-color em 0.15s ease\n\nImplemente como componente React com CSS Module. Use as classes .trdr-badge e .trdr-badge-{variant} para os badges. O componente deve aceitar as props: href, icon?, title, description, headerBadges?, footerLeft?, footerBadges?."
|
|
1333
1333
|
}
|
|
1334
1334
|
},
|
|
1335
1335
|
{
|
|
@@ -1843,6 +1843,144 @@
|
|
|
1843
1843
|
"react": "import NewsCard from '@/components/ui/NewsCard'\n\n// Notícia de alta (dot verde)\n<NewsCard\n sentiment=\"up\"\n title=\"Bitcoin ETF sees record inflows as institutional interest grows\"\n source=\"CoinDesk\"\n time=\"2h ago\"\n href=\"https://coindesk.com/article/...\"\n/>\n\n// Notícia de baixa (dot vermelho)\n<NewsCard\n sentiment=\"down\"\n title=\"Petrobras shares fall on dividend cut concerns\"\n source=\"Valor Econômico\"\n time=\"45m ago\"\n/>\n\n// Neutro com callback no botão de ação\n<NewsCard\n sentiment=\"neutral\"\n title=\"Banco Central mantém Selic em 10,5% ao ano\"\n source=\"Folha\"\n time=\"1h ago\"\n onShare={() => console.log('share clicked')}\n/>",
|
|
1844
1844
|
"prompt": "Implemente o componente NewsCard do Design System TRDR — card de notícia financeira, pixel-perfect com o Figma 66:2373.\n\nDIMENSÕES (fixas): width 100%, border-bottom 1px solid var(--border-subtle) (#222222), padding 8px 16px, cursor pointer. Hover: background-color var(--surface-secondary) (#222222).\n\nLAYOUT INTERNO (flex-row, gap 8px, align-items flex-start):\n1. DOT INDICADOR (4×4px, border-radius 9999px, flex-shrink 0, margin-top 6px):\n - sentiment=\"up\" → background var(--context-trading-up) #4FE290\n - sentiment=\"down\" → background var(--context-trading-down) #F34F45\n - sentiment=\"neutral\" → background var(--content-tertiary) #A4A4A4\n\n2. CONTENT (flex: 1, flex-col, gap 8px, min-width 0):\n - Título: font-family var(--font-secondary), 14px/400/1.2, color var(--content-primary) #FFFFFF, width 100%\n - Meta row (flex-row, gap 8px, height 16px, white-space nowrap, align-items center):\n • Fonte: 14px/400/1.2 var(--content-tertiary) #A4A4A4\n • Separador \"•\": 12px/16px var(--content-disabled) #4A4A4A\n • Tempo: 14px/400/1.2 var(--content-tertiary) #A4A4A4\n\n3. BOTÃO DE AÇÃO (20×20px, border-radius var(--radius-sm) 4px, padding 4px, flex-shrink 0):\n - background transparent, border none, color var(--content-tertiary)\n - Hover: background var(--surface-secondary)\n - Ícone: Material Symbols \"open_in_new\" 12px\n\nAPI React: props { title: string; source: string; time: string; sentiment?: 'up' | 'down' | 'neutral'; href?: string; onShare?: () => void }\nQuando href é passado, renderizar como <a target=\"_blank\" rel=\"noreferrer\">, senão como <div>.\n\nUse APENAS tokens semânticos do TRDR. NUNCA hex direto. NUNCA --scale-spacing-* ou --scale-radius-*."
|
|
1845
1845
|
}
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
"slug": "header",
|
|
1849
|
+
"name": "Header Desktop",
|
|
1850
|
+
"figmaId": "1921:55292",
|
|
1851
|
+
"category": "navegacao",
|
|
1852
|
+
"description": "Barra de navegação superior da plataforma TRDR — 56px de altura, logo, nav principal, busca de ativos, cotações em tempo real, botões de ação, status de conexões e controles de janela.",
|
|
1853
|
+
"implemented": true,
|
|
1854
|
+
"props": [
|
|
1855
|
+
{
|
|
1856
|
+
"name": "activeNav",
|
|
1857
|
+
"type": "string",
|
|
1858
|
+
"values": [
|
|
1859
|
+
"Gráfico",
|
|
1860
|
+
"Book e Cotações",
|
|
1861
|
+
"Operação",
|
|
1862
|
+
"Ferramentas",
|
|
1863
|
+
"Analistas"
|
|
1864
|
+
]
|
|
1865
|
+
}
|
|
1866
|
+
],
|
|
1867
|
+
"dimensions": [
|
|
1868
|
+
{
|
|
1869
|
+
"label": "Altura",
|
|
1870
|
+
"width": "100%",
|
|
1871
|
+
"height": "56px"
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
"label": "Nav item",
|
|
1875
|
+
"width": "auto",
|
|
1876
|
+
"height": "40px"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"label": "Botão de ícone",
|
|
1880
|
+
"width": "32px",
|
|
1881
|
+
"height": "32px"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"label": "Conexões btn",
|
|
1885
|
+
"width": "137px",
|
|
1886
|
+
"height": "32px"
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"label": "Badge",
|
|
1890
|
+
"width": "auto (min 14px)",
|
|
1891
|
+
"height": "14px"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"label": "Divider vertical",
|
|
1895
|
+
"width": "1px",
|
|
1896
|
+
"height": "18px"
|
|
1897
|
+
}
|
|
1898
|
+
],
|
|
1899
|
+
"tokens": [
|
|
1900
|
+
{
|
|
1901
|
+
"property": "Background",
|
|
1902
|
+
"token": "bg.primary",
|
|
1903
|
+
"value": "#0E0E0E"
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
"property": "Border bottom",
|
|
1907
|
+
"token": "border.subtle",
|
|
1908
|
+
"value": "#222222"
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"property": "Padding horizontal",
|
|
1912
|
+
"token": "spacing.lg",
|
|
1913
|
+
"value": "16px"
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"property": "Nav item — texto default",
|
|
1917
|
+
"token": "content.tertiary",
|
|
1918
|
+
"value": "#A4A4A4"
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"property": "Nav item — texto hover/active",
|
|
1922
|
+
"token": "content.primary",
|
|
1923
|
+
"value": "#FFFFFF"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"property": "Nav item — BG hover",
|
|
1927
|
+
"token": "surface.secondary",
|
|
1928
|
+
"value": "#222222"
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"property": "Ícone botão",
|
|
1932
|
+
"token": "content.secondary",
|
|
1933
|
+
"value": "#E8E8E8"
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"property": "Badge BG",
|
|
1937
|
+
"token": "action.brand.default",
|
|
1938
|
+
"value": "#00D4FF"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"property": "Badge texto",
|
|
1942
|
+
"token": "content.inverse",
|
|
1943
|
+
"value": "#1A1A1A"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
"property": "Conexões border",
|
|
1947
|
+
"token": "border.subtle",
|
|
1948
|
+
"value": "#222222"
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
"property": "Status dot — conectado",
|
|
1952
|
+
"token": "context.trading.up",
|
|
1953
|
+
"value": "#4FE290"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"property": "Status dot — desconectado",
|
|
1957
|
+
"token": "context.trading.down",
|
|
1958
|
+
"value": "#F34F45"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"property": "Win btn close hover",
|
|
1962
|
+
"token": "context.trading.down",
|
|
1963
|
+
"value": "#F34F45"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"property": "Resultado — alta",
|
|
1967
|
+
"token": "context.trading.up",
|
|
1968
|
+
"value": "#4FE290"
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"property": "Resultado — baixa",
|
|
1972
|
+
"token": "context.trading.down",
|
|
1973
|
+
"value": "#F34F45"
|
|
1974
|
+
}
|
|
1975
|
+
],
|
|
1976
|
+
"anatomy": "Header (flex row, space-between, height 56px, padding 0 16px, bg-primary, border-bottom subtle):\n LEFT: [Logo 107×40] [Divider 1×18] [Nav itens gap-16 — cada item: 40px h, 8px H-pad, ícone 20px + label 14px] [TextInput 116×32 com ícone busca] [Resultado Row — cotações gap-0]\n RIGHT: [4× icon-btn 32×32 + badge absoluto] [Conexões btn 137×32, borda subtle, status dot] [Win Controls 3× 40×40]",
|
|
1977
|
+
"notes": "Componente de 1920px de largura — ocupa 100% da viewport na plataforma. O preview é scrollável horizontalmente. Na platform real, reutiliza TextInput (busca) e FloatingMenu (dropdowns dos itens de nav).",
|
|
1978
|
+
"code": {
|
|
1979
|
+
"html": "<!-- Header Desktop — Design System TRDR (Figma: 1921:55292) -->\n<!-- Adicionar .trdr-header-nav-item-active no item ativo -->\n<header class=\"trdr-header\">\n <div class=\"trdr-header-left\">\n <!-- Logo -->\n <div class=\"trdr-header-logo\">\n <img src=\"/logo-trdr.svg\" alt=\"TRDR\" width=\"107\" height=\"40\" />\n </div>\n <div class=\"trdr-header-divider\"></div>\n\n <!-- Nav principal -->\n <nav class=\"trdr-header-nav\">\n <button class=\"trdr-header-nav-item trdr-header-nav-item-active\" type=\"button\">\n <span class=\"trdr-header-nav-icon material-symbols-outlined\">show_chart</span>\n Gráfico\n </button>\n <button class=\"trdr-header-nav-item\" type=\"button\">\n <span class=\"trdr-header-nav-icon material-symbols-outlined\">format_list_bulleted</span>\n Book e Cotações\n </button>\n <button class=\"trdr-header-nav-item\" type=\"button\">\n <span class=\"trdr-header-nav-icon material-symbols-outlined\">swap_horiz</span>\n Operação\n </button>\n </nav>\n\n <!-- Busca — reutilizar TextInput -->\n <div class=\"trdr-text-input trdr-text-input-with-icon\" style=\"width:116px\">\n <input type=\"text\" placeholder=\"Buscar ativo...\" />\n </div>\n </div>\n\n <div class=\"trdr-header-right\">\n <!-- Ícone com badge -->\n <div style=\"position:relative;display:inline-flex\">\n <button class=\"trdr-header-icon-btn\" type=\"button\" aria-label=\"Notificações\">\n <span class=\"material-symbols-outlined\" style=\"font-size:20px\">notifications</span>\n </button>\n <span class=\"trdr-header-badge\">4</span>\n </div>\n\n <!-- Conexões -->\n <button class=\"trdr-header-conexoes\" type=\"button\">\n <span class=\"trdr-header-status-dot connected\"></span>\n 5/6 Conexões\n </button>\n\n <!-- Controles de janela -->\n <div class=\"trdr-header-wincontrols\">\n <button class=\"trdr-header-win-btn\" aria-label=\"Minimizar\" type=\"button\">\n <span class=\"material-symbols-outlined\" style=\"font-size:16px\">remove</span>\n </button>\n <button class=\"trdr-header-win-btn trdr-header-win-btn-close\" aria-label=\"Fechar\" type=\"button\">\n <span class=\"material-symbols-outlined\" style=\"font-size:16px\">close</span>\n </button>\n </div>\n </div>\n</header>",
|
|
1980
|
+
"css": "/* Header Desktop — Design System TRDR (Figma: 1921:55292, 1920×56px) */\n\n/* Container principal */\n.trdr-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n height: 56px;\n padding: 0 var(--spacing-lg); /* 0 16px */\n background-color: var(--bg-primary); /* #0E0E0E */\n border-bottom: 1px solid var(--border-subtle); /* #222222 */\n width: 100%;\n}\n\n.trdr-header-left,\n.trdr-header-right {\n display: flex;\n align-items: center;\n gap: 8px;\n height: 100%;\n}\n\n/* Divider vertical */\n.trdr-header-divider {\n width: 1px;\n height: 18px;\n background-color: var(--border-subtle);\n margin: 0 8px;\n}\n\n/* Nav items */\n.trdr-header-nav {\n display: flex;\n align-items: center;\n gap: 4px;\n height: 100%;\n}\n\n.trdr-header-nav-item {\n display: flex;\n align-items: center;\n gap: 4px;\n height: 40px;\n padding: 0 8px;\n border-radius: var(--radius-sm);\n border: none;\n background: transparent;\n color: var(--content-tertiary); /* #A4A4A4 */\n font-family: var(--font-secondary);\n font-size: 14px;\n font-weight: 400;\n cursor: pointer;\n transition: color 0.15s ease, background-color 0.15s ease;\n white-space: nowrap;\n}\n\n.trdr-header-nav-item:hover {\n color: var(--content-primary); /* #FFFFFF */\n background-color: var(--surface-secondary); /* #222222 */\n}\n\n.trdr-header-nav-item-active {\n color: var(--content-primary) !important;\n}\n\n.trdr-header-nav-icon {\n font-family: 'Material Symbols Outlined';\n font-weight: 300;\n font-size: 20px;\n line-height: 1;\n font-variation-settings: 'FILL' 0, 'GRAD' 0;\n}\n\n/* Botão de ícone (32×32) */\n.trdr-header-icon-btn {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 32px;\n height: 32px;\n border-radius: var(--radius-sm);\n border: none;\n background: transparent;\n color: var(--content-secondary);\n cursor: pointer;\n transition: background-color 0.1s;\n}\n\n.trdr-header-icon-btn:hover {\n background-color: var(--surface-secondary);\n}\n\n/* Badge numérico (posição absoluta sobre ícone) */\n.trdr-header-badge {\n position: absolute;\n top: 0;\n right: 0;\n background-color: var(--action-brand-default); /* #00D4FF */\n color: var(--content-inverse); /* #1A1A1A */\n font-family: var(--font-secondary);\n font-size: 9px;\n font-weight: 600;\n min-width: 14px;\n height: 14px;\n border-radius: var(--radius-full);\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0 3px;\n line-height: 1;\n pointer-events: none;\n}\n\n/* Botão Conexões */\n.trdr-header-conexoes {\n display: flex;\n align-items: center;\n gap: 6px;\n height: 32px;\n padding: 0 10px;\n border: 1px solid var(--border-subtle);\n border-radius: var(--radius-sm);\n background: transparent;\n color: var(--content-secondary);\n font-family: var(--font-secondary);\n font-size: 13px;\n cursor: pointer;\n white-space: nowrap;\n transition: border-color 0.1s, background-color 0.1s;\n}\n\n.trdr-header-conexoes:hover {\n border-color: var(--border-default);\n background-color: var(--surface-secondary);\n}\n\n/* Dot de status */\n.trdr-header-status-dot {\n width: 6px;\n height: 6px;\n border-radius: var(--radius-full);\n flex-shrink: 0;\n}\n\n.trdr-header-status-dot.connected { background-color: var(--context-trading-up); }\n.trdr-header-status-dot.disconnected { background-color: var(--context-trading-down); }\n\n/* Controles de janela */\n.trdr-header-wincontrols {\n display: flex;\n align-items: center;\n height: 40px;\n margin-left: 8px;\n}\n\n.trdr-header-win-btn {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n border: none;\n background: transparent;\n color: var(--content-tertiary);\n cursor: pointer;\n transition: background-color 0.1s, color 0.1s;\n}\n\n.trdr-header-win-btn:hover {\n background-color: var(--surface-secondary);\n color: var(--content-primary);\n}\n\n.trdr-header-win-btn-close:hover {\n background-color: var(--context-trading-down) !important;\n color: var(--content-primary) !important;\n}",
|
|
1981
|
+
"react": "import Header from '@/components/ui/Header'\n\n// Estado padrão — nav \"Gráfico\" ativo\n<Header activeNav=\"Gráfico\" />\n\n// Com outro item de nav ativo\n<Header activeNav=\"Book e Cotações\" />\n\n// Itens de nav disponíveis:\n// 'Gráfico' | 'Book e Cotações' | 'Operação' | 'Ferramentas' | 'Analistas'",
|
|
1982
|
+
"prompt": "Implemente o componente Header Desktop do Design System TRDR — barra de navegação superior 1920×56px, pixel-perfect com o Figma 1921:55292.\n\nESTRUTURA GERAL (flex row, space-between, height 56px, padding 0 16px):\n- background: var(--bg-primary) #0E0E0E\n- border-bottom: 1px solid var(--border-subtle) #222222\n\nLADO ESQUERDO (flex row, gap 8px, align-items center):\n1. LOGO: img logo-trdr.svg, width 107px, height 40px\n2. DIVIDER: 1×18px, background var(--border-subtle), margin 0 8px\n3. NAV (flex row, gap 4px):\n Cada item: height 40px, padding 0 8px, border-radius var(--radius-sm), font var(--font-secondary) 14px/400\n - Default: color var(--content-tertiary) #A4A4A4\n - Hover: color var(--content-primary) + background var(--surface-secondary) #222222\n - Active: color var(--content-primary)\n - Ícone Material Symbols Outlined 20px + label (gap 4px)\n4. TEXT INPUT (reutilizar componente TextInput): width 116px, height 32px, iconLeft, placeholder \"Buscar ativo...\"\n5. RESULTADO ROW: cotações em tempo real — por item (flex row, gap 6px, border-left 1px subtle, padding 0 8px):\n - Symbol: font-mono 11px content.tertiary\n - Last price: font-mono 13px/500 content.primary\n - Change: font-mono 12px — positivo: context.trading.up #4FE290, negativo: context.trading.down #F34F45\n\nLADO DIREITO (flex row, gap 8px):\n1. 4× ICON BTN (32×32px, border-radius sm, hover surface.secondary, color content.secondary):\n - Notificações + badge \"4\", Meu perfil + badge \"1\", Configurações, Layouts\n - Badge: 14×14px, border-radius full, bg action.brand.default #00D4FF, text content.inverse #1A1A1A, font 9px/600, position absolute top-0 right-0\n2. CONEXÕES BTN (137×32px): border 1px solid border.subtle, font-secondary 13px, gap 6px, \"5/6 Conexões\"\n - Status dot: 6×6px, border-radius full, connected = context.trading.up, disconnected = context.trading.down\n3. WIN CONTROLS (3× 40×40px): Minimizar, Recolher, Fechar\n - Fechar: hover bg context.trading.down #F34F45\n\nREUTILIZAÇÃO: TextInput para campo de busca, FloatingMenu para dropdowns dos itens de nav.\nNUNCA usar hex direto. NUNCA usar --scale-spacing-* ou --scale-radius-*."
|
|
1983
|
+
}
|
|
1846
1984
|
}
|
|
1847
1985
|
]
|
|
1848
1986
|
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
<svg width="105" height="41" viewBox="0 0 105 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_2475_3136)">
|
|
3
|
-
<path d="M22.1577 24.6517C25.8727 20.9367 29.6444 17.278 33.4721 13.6756C33.8973 13.2754 34.3229 12.8757 34.7495 12.4769C34.3507 12.9035 33.951 13.3291 33.5508 13.7543C29.9484 17.582 26.2897 21.3537 22.5747 25.0687C18.8596 28.7838 15.0874 32.443 11.2597 36.0455C10.8344 36.4457 10.4088 36.8454 9.98217 37.2442C10.381 36.8176 10.7807 36.392 11.1809 35.9667C14.7834 32.139 18.4426 28.3668 22.1577 24.6517Z" fill="#00D4FF"/>
|
|
4
|
-
<path d="M14.5478 28.5229C16.0588 28.5003 17.2697 29.2261 17.7291 29.4558L17.7105 29.5256C17.3248 29.4999 16.6195 29.5983 15.8861 29.7327C15.1544 29.8669 14.3989 30.0361 13.9146 30.1505C13.4488 30.2605 13.0847 30.351 12.7884 30.4343C13.1445 30.0006 13.5409 29.5492 13.9623 29.1278C14.0095 29.0806 14.0537 29.0315 14.099 28.9856C14.1047 28.9804 14.1121 28.9765 14.1176 28.9711C14.1288 28.9599 14.1382 28.9469 14.148 28.9352C14.2889 28.7917 14.4219 28.655 14.5478 28.5229Z" fill="#00D4FF"/>
|
|
5
|
-
<path d="M20.5403 12.0426C20.6294 12.0426 20.8249 12.0148 21.0458 11.9763C21.1531 11.9576 21.2633 11.9346 21.3641 11.9149C21.4019 12.01 21.437 12.1032 21.4677 12.1952C21.3527 12.218 21.2226 12.245 21.0962 12.267C20.8814 12.3044 20.6589 12.3375 20.5396 12.3375V12.1897L20.5403 12.0426Z" fill="#00D4FF"/>
|
|
6
|
-
<path d="M13.0936 10.0539C14.502 8.51099 15.8978 7.94588 16.8018 7.81379C16.902 7.90063 16.9986 7.98932 17.0918 8.07896C16.3336 8.12243 14.9259 8.55779 13.4561 10.0988C13.4106 10.0922 13.3653 10.0852 13.3194 10.0794C13.2439 10.07 13.168 10.061 13.0936 10.0539Z" fill="#00D4FF"/>
|
|
7
|
-
<path d="M10.2217 10.3349C11.3058 8.9225 12.3371 7.94766 13.2041 7.30142C13.7258 6.91257 14.1915 6.64203 14.572 6.4638C14.6978 6.50944 14.8254 6.55977 14.9525 6.61917C14.5648 6.77113 14.0229 7.05802 13.3795 7.53758C12.5988 8.11955 11.673 8.98082 10.6919 10.2099C10.5311 10.2474 10.3739 10.2888 10.2217 10.3349Z" fill="#00D4FF"/>
|
|
8
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.19563 7.19853C8.82213 6.53068 9.59196 6.02254 10.415 5.6393C10.9921 5.55072 11.5611 5.46037 12.1289 5.36861C15.0027 4.78531 18.0354 5.56203 19.8166 8.03476C19.9502 8.20105 20.0768 8.36638 20.204 8.54092C20.2295 8.57556 20.2678 8.60123 20.3104 8.60998C20.3528 8.61858 20.3978 8.61029 20.434 8.58719C20.47 8.56393 20.4959 8.52582 20.5058 8.48361C20.5153 8.44146 20.5072 8.39674 20.4864 8.35931C20.3772 8.16679 20.2673 7.98185 20.1481 7.79584C19.2623 6.15079 17.6082 5.05307 15.7832 4.5745C16.0251 4.57872 16.2451 4.58876 16.4378 4.60626H16.4392C17.532 4.7277 19.4111 4.99341 21.4856 5.08964C21.5151 5.16013 21.5465 5.23055 21.5789 5.30025C21.6618 5.64677 21.8202 5.95937 22.025 6.23661C21.3916 7.94152 21.0975 10.0935 22.2107 11.7643C22.2576 11.8681 22.3104 11.9698 22.3723 12.0668C22.4195 12.1405 22.4688 12.2149 22.5208 12.2885C22.7809 12.8252 22.6184 14.0938 22.2556 14.994C22.2263 15.0672 22.1942 15.1407 22.161 15.2129C22.1436 15.2505 22.1372 15.294 22.1465 15.3351C22.156 15.3762 22.1806 15.4124 22.2148 15.4352C22.2491 15.4579 22.2913 15.4665 22.3329 15.4594C22.3746 15.4522 22.4126 15.4293 22.4407 15.3986C22.4983 15.3345 22.5546 15.268 22.6078 15.1997C23.051 14.543 23.4813 13.836 23.491 12.9645C23.5637 13.0024 23.6389 13.0384 23.7168 13.0701C24.752 13.5495 26.1524 12.9048 26.3698 11.7968C26.4254 11.527 26.3919 11.2144 26.231 10.9813C26.2067 10.948 26.1724 10.921 26.1322 10.9088C26.0918 10.8966 26.0488 10.9001 26.0121 10.9184C25.9754 10.9368 25.9472 10.9693 25.9327 11.0089C25.9184 11.0484 25.9191 11.0923 25.9313 11.1318C25.9756 11.3047 25.9373 11.48 25.8574 11.6366C25.5009 12.2885 24.6813 12.522 24.053 12.2408C23.7916 12.1348 23.5444 11.9557 23.319 11.7333C22.0961 10.5423 22.0743 8.5436 22.5187 6.77316C22.7499 6.97966 23.0026 7.15821 23.2541 7.30832C23.2782 7.32259 23.3033 7.33773 23.328 7.35182C23.7394 7.58588 24.2688 7.76899 24.8251 7.64323C25.3878 7.51826 25.7723 7.06716 25.9368 6.63229C25.9762 6.53054 26.0071 6.43087 26.0307 6.31464C26.0366 6.27411 26.0314 6.23072 26.0121 6.1938C25.9926 6.15687 25.9604 6.12845 25.9223 6.11508C25.8841 6.10189 25.8411 6.10442 25.8029 6.12129C25.7649 6.13829 25.7337 6.16879 25.7131 6.20416C25.6698 6.26702 25.6108 6.34645 25.5543 6.40994C25.0156 7.0362 24.4183 6.96047 23.7755 6.57567C23.7539 6.56309 23.7322 6.55014 23.7112 6.53769C23.1249 6.18299 22.5465 5.80278 22.1582 5.27608C22.1233 5.2216 22.0875 5.16623 22.054 5.10966C23.9959 5.16774 26.0558 5.05931 27.7688 4.53376C31.5104 3.38569 33.5205 1.43302 34.6569 0.134365L34.719 0.171653C34.1423 1.69165 32.9607 3.0504 31.7124 4.13946C30.4829 5.21216 29.1847 6.02594 28.3275 6.47899C28.453 6.62107 28.6316 6.90207 28.817 7.27932C29.0201 7.69242 29.237 8.22377 29.4144 8.81714C29.7937 10.0866 29.8393 11.598 29.6595 12.497C29.5633 12.979 29.5961 13.5352 29.6505 13.9823C29.6777 14.2054 29.71 14.4017 29.7341 14.5465C29.746 14.6184 29.7562 14.6795 29.7624 14.724C29.7654 14.7456 29.7676 14.7651 29.7686 14.7799C29.7691 14.7872 29.7695 14.7951 29.7693 14.8013C29.7691 14.807 29.7683 14.8154 29.7658 14.8227C29.7634 14.8297 29.7593 14.8362 29.7562 14.8407C29.7527 14.8457 29.7483 14.8519 29.7437 14.8572C29.7344 14.868 29.7217 14.881 29.7071 14.8952C29.6773 14.9242 29.6358 14.962 29.5863 15.005C29.487 15.0913 29.3517 15.2035 29.2037 15.3254C28.907 15.57 28.5557 15.8558 28.3219 16.0636C28.0833 16.2756 27.8665 16.3721 27.6404 16.3806C27.4158 16.3887 27.1856 16.3098 26.9222 16.1844C26.782 16.1176 26.6194 16.0036 26.4568 15.8723C26.4213 15.789 26.3795 15.7108 26.3263 15.641C25.8946 15.0755 25.3983 14.5584 24.8375 14.0914C24.7976 14.0582 24.7565 14.0247 24.716 13.992C24.6844 13.9667 24.6457 13.9481 24.6048 13.9444C24.5639 13.9407 24.5236 13.9516 24.4922 13.9754C24.4609 13.9994 24.4401 14.0358 24.4328 14.0762C24.4258 14.1166 24.4327 14.1587 24.4487 14.1957C24.4696 14.2434 24.4907 14.2921 24.5123 14.3393C24.7288 14.8144 24.9788 15.2647 25.2615 15.6893C25.1851 15.8935 25.0864 16.1406 24.9141 16.4455C24.5745 17.0463 24.1721 17.6496 23.8245 18.1331C23.7523 18.2335 23.6812 18.3285 23.6146 18.4176C23.5076 17.8924 23.2782 17.3845 22.9558 17.0089C22.918 16.9611 22.8794 16.9148 22.8391 16.8674C22.8123 16.8366 22.7765 16.8119 22.7362 16.8018C22.696 16.7918 22.6538 16.7964 22.6188 16.8156C22.584 16.8349 22.558 16.8683 22.5449 16.9074C22.5321 16.9467 22.5333 16.9901 22.5449 17.029C22.5621 17.0857 22.5778 17.1411 22.5933 17.1961C22.8282 17.9898 22.8672 18.6434 22.7555 19.4175C22.7302 19.6408 22.7576 19.8884 22.855 20.1384C22.8769 20.1949 22.9038 20.2513 22.933 20.3076C22.8716 20.8648 22.8027 21.4963 22.7548 21.9318C22.7027 22.4068 22.6892 23.0708 22.6892 23.616C22.6893 23.8879 22.6928 24.1308 22.6961 24.3051C22.6966 24.3284 22.6964 24.3512 22.6968 24.3721L21.7978 23.1581L21.2322 21.6687C21.2219 21.5104 21.1689 21.3413 21.11 21.197C21.0386 21.0222 20.9377 20.8234 20.8151 20.6177C20.57 20.2063 20.2211 19.7365 19.8021 19.3174C19.3518 18.8671 19.1331 18.4901 19.0384 18.1172C18.9426 17.7393 18.9603 17.3131 19.0757 16.7334C19.0797 16.722 19.0848 16.7107 19.0888 16.6996C19.2295 16.3048 19.4314 16.0301 19.7704 15.9131C20.1138 15.7917 20.5972 15.8378 21.043 15.9787C21.1068 15.9992 21.17 16.0217 21.2295 16.0463C21.2672 16.0629 21.3109 16.0688 21.3517 16.0595C21.3923 16.05 21.4278 16.026 21.4504 15.9925C21.473 15.9586 21.4814 15.9158 21.4746 15.8744C21.4676 15.8333 21.4455 15.7958 21.4159 15.7674C21.3569 15.7133 21.2962 15.6639 21.2329 15.6175C20.7926 15.3054 20.2454 15.0655 19.5984 15.1583C19.4149 15.1816 19.2433 15.246 19.0867 15.3372C18.9386 14.5051 18.4974 13.626 17.58 12.9286C16.9422 12.4439 16.107 11.7618 14.9656 11.3141C13.81 10.8611 12.3591 10.6533 10.4654 11.0483C8.51635 11.4549 6.97771 12.7646 5.94587 13.9271C5.64266 14.2687 5.37954 14.603 5.15866 14.9035C5.24835 14.2016 5.35365 13.4863 5.50047 12.7718C5.89956 10.8302 6.61228 8.88668 8.19563 7.19853ZM20.9843 19.9858C20.9787 20.0081 21.048 20.1555 21.1542 20.3615C21.3175 20.305 21.5141 20.2357 21.6928 20.1668C21.815 20.1196 21.9282 20.0734 22.0153 20.0335C22.0586 20.0136 22.0945 19.9951 22.1209 19.9803C22.1254 20.0721 22.1293 20.1826 22.1285 20.3056C22.0351 20.348 21.919 20.3957 21.7985 20.4423C21.6321 20.5064 21.4513 20.5709 21.2951 20.6253C21.3694 20.7647 21.4487 20.9161 21.5298 21.0644L22.1196 20.7371C22.1157 20.8525 22.1096 20.9696 22.1044 21.0838L21.6735 21.3227C21.878 21.6933 22.0495 21.9994 22.0553 22.0098C22.057 21.9859 22.2085 19.8065 22.0795 19.7248C21.9488 19.6468 21.0112 19.9075 20.9843 19.9858ZM27.1819 12.0012C27.2386 12.3992 27.1975 12.737 27.1024 13.0211C27.2745 13.1172 27.461 13.2208 27.63 13.3167C27.6496 13.3278 27.6696 13.3396 27.6887 13.3505C27.6977 13.4647 27.6951 13.5769 27.6777 13.6847C27.6172 13.6501 27.5516 13.6121 27.4836 13.5735C27.3245 13.4833 27.1497 13.3861 26.9864 13.2946C26.8666 13.5236 26.7109 13.7076 26.5473 13.8497L27.4173 14.2047C27.373 14.2483 27.3282 14.2862 27.2834 14.3193C27.3306 14.2839 27.3795 14.2453 27.4263 14.1985C28.012 13.6128 27.5074 12.4897 27.1819 12.0012ZM25.9617 14.1978C26.185 14.4209 26.733 14.7234 27.273 14.3269C27.2288 14.3588 27.1844 14.3863 27.1404 14.4098L26.2676 14.0535C26.1571 14.1193 26.052 14.1676 25.9617 14.1978ZM23.4115 15.139C23.6275 15.1991 23.9019 15.2786 24.1497 15.3593C24.1628 15.3635 24.1761 15.3695 24.1891 15.3738C24.2708 15.4494 24.3386 15.5273 24.3728 15.6058C24.3928 15.652 24.4001 15.7043 24.399 15.7605C24.3013 15.7231 24.1841 15.6804 24.0586 15.6396C23.824 15.5633 23.5641 15.4888 23.3549 15.4304C23.3375 15.522 23.322 15.6144 23.3156 15.7059C23.4422 15.728 23.5828 15.7577 23.7202 15.7998C23.9292 15.864 24.1566 15.9628 24.3099 16.1106C24.2774 16.1879 24.2397 16.2636 24.2015 16.3322L24.1497 16.3702C24.0653 16.2555 23.8738 16.156 23.6339 16.0822C23.5323 16.0511 23.4278 16.0266 23.3301 16.0077C23.383 16.2762 23.5624 16.5096 24.0089 16.6395C24.0152 16.6309 24.5198 15.9476 24.3728 15.6058C24.2251 15.266 23.4775 14.9102 23.4606 14.9021C23.4499 14.9769 23.4296 15.056 23.4115 15.139ZM25.229 8.09553C25.3245 8.12741 25.4937 8.20964 25.7235 8.35517C26.1223 8.09379 26.8952 7.72057 27.7736 7.66809C27.837 7.75458 27.9 7.85024 27.9608 7.95604C27.1504 7.96099 26.4094 8.28423 25.9907 8.5354C26.1305 8.63513 26.285 8.75298 26.452 8.89172C26.5721 8.81822 26.7256 8.74134 26.9132 8.66936C27.226 8.54951 27.6411 8.44028 28.1666 8.37589C28.2044 8.46551 28.2414 8.55963 28.2757 8.65901C27.7364 8.71943 27.3211 8.82905 27.0189 8.94489C26.8865 8.99566 26.7782 9.04933 26.6895 9.09749C26.828 9.22036 26.9736 9.35589 27.1252 9.5056C27.4197 9.38292 27.8679 9.26831 28.4455 9.26529C28.4662 9.36066 28.4845 9.45949 28.5015 9.56153C28.0017 9.55762 27.6122 9.64088 27.3476 9.73486L27.3566 9.74383C27.4552 9.85387 27.5449 9.96584 27.6279 10.0774C27.7685 10.0667 27.9319 10.0649 28.103 10.0829C28.2545 10.0988 28.4161 10.1298 28.5747 10.183C28.5827 10.2881 28.5908 10.396 28.5947 10.5069C28.4273 10.4357 28.2467 10.3947 28.072 10.3764C27.9867 10.3674 27.904 10.3652 27.8261 10.3653C28.2926 11.0975 28.4592 11.7892 28.5187 12.0868C28.9092 8.96272 27.8329 7.44499 27.1819 7.11911L25.229 8.09553ZM19.6578 17.1484C19.3667 17.5282 19.2856 18.3026 20.0459 18.6828C20.886 19.1029 21.2487 19.4628 21.6452 18.9328C21.6073 18.9823 21.5699 19.0243 21.5326 19.0591C21.4819 18.7735 21.3937 18.395 21.2605 18.0123C21.0994 17.5497 20.8767 17.0977 20.5935 16.7873C20.3298 16.7829 20.0729 16.8435 19.8808 16.9558C20.2725 17.3281 20.5111 17.9091 20.6584 18.3948C20.7364 18.6522 20.792 18.8902 20.8324 19.066C20.8344 19.0748 20.836 19.0838 20.8379 19.0923C20.7349 19.0452 20.6201 18.988 20.494 18.9196C20.4616 18.7865 20.4234 18.6363 20.376 18.4798C20.2272 17.9894 20.001 17.461 19.6578 17.1484ZM20.8455 16.8114C20.9055 16.8224 20.965 16.8365 21.023 16.855C21.2414 17.1719 21.4122 17.5501 21.5395 17.9156C21.64 18.2043 21.7149 18.4909 21.7695 18.7408C21.7935 18.6984 21.8193 18.6534 21.844 18.6041C22.0881 18.1973 21.8701 17.3789 21.3489 17.0138C21.2003 16.9098 21.0258 16.8442 20.8455 16.8114ZM22.8356 8.38417C22.8758 8.62489 22.9324 8.90376 23.0007 9.19279C23.0305 9.17745 23.0634 9.16141 23.0973 9.14031C23.2407 9.05108 23.4139 8.90947 23.6049 8.69491C23.688 8.73826 23.7746 8.78829 23.8645 8.84407C23.6418 9.10259 23.4338 9.27825 23.2527 9.39097C23.1907 9.42954 23.1304 9.45982 23.0739 9.48558C23.1028 9.5979 23.1335 9.71019 23.165 9.82117C23.3624 9.72715 23.5959 9.61057 23.8162 9.48212C23.9804 9.38635 24.1362 9.28587 24.2644 9.18864C24.278 9.17828 24.2902 9.16566 24.303 9.1555C24.3772 9.2161 24.4529 9.28107 24.5281 9.35161C24.5 9.37495 24.473 9.40148 24.4432 9.42412C24.3023 9.53102 24.1349 9.63764 23.9647 9.73693C23.7201 9.87956 23.4606 10.007 23.2479 10.1071C23.286 10.2299 23.3253 10.349 23.3653 10.462C23.6142 10.408 23.9347 10.3261 24.2554 10.2182C24.5231 10.1281 24.783 10.019 25.0018 9.90128C25.0593 9.98878 25.1072 10.0765 25.1489 10.1616C24.9049 10.2936 24.623 10.406 24.35 10.4979C24.0372 10.6032 23.7247 10.6849 23.473 10.741C23.5159 10.8465 23.5583 10.9434 23.6014 11.0282C23.8602 11.0379 24.2351 11.0321 24.5806 10.9868C24.766 10.9624 24.9388 10.9273 25.0778 10.8791C25.201 10.8363 25.2823 10.7865 25.3292 10.7396C25.346 10.876 25.341 10.9973 25.3188 11.098C25.2724 11.1203 25.2236 11.141 25.1745 11.158C25.0095 11.2153 24.8152 11.2538 24.6193 11.2796C24.3384 11.3164 24.0415 11.3275 23.7962 11.3265L23.7996 11.33C24.1645 11.6944 24.963 11.5744 25.2076 11.3307C25.4517 11.0866 25.4147 10.2342 24.6338 9.45312C23.8533 8.67278 23.0803 8.46566 22.8356 8.38417ZM20.3069 10.1312C20.3705 10.5769 20.4178 11.0252 20.4561 11.4529L21.0983 11.33C21.147 11.4225 21.1915 11.5146 21.2336 11.6048L20.4816 11.7478C20.5116 12.1231 20.533 12.4775 20.5486 12.7939C20.5608 12.7932 20.5756 12.7936 20.5921 12.7919C20.6861 12.7816 20.8201 12.7568 20.9726 12.7235C21.1654 12.6813 21.3824 12.6253 21.5768 12.5736C21.6011 12.6724 21.623 12.7686 21.6396 12.863C21.4453 12.9144 21.229 12.9691 21.0354 13.0114C20.8806 13.0453 20.7346 13.0733 20.6245 13.0853C20.6035 13.0876 20.5823 13.0863 20.5617 13.0874C20.5656 13.183 20.5671 13.2739 20.57 13.3595C20.5869 13.3606 20.6053 13.3635 20.6245 13.3643C20.7381 13.3688 20.8813 13.3651 21.0347 13.356C21.255 13.343 21.4932 13.3173 21.6907 13.2939C21.6975 13.3962 21.6999 13.4948 21.6983 13.5901C21.502 13.613 21.2697 13.6373 21.0527 13.6502C20.8947 13.6595 20.7403 13.6642 20.6128 13.6592C20.6017 13.6587 20.5905 13.657 20.5797 13.6564C20.5825 13.7726 20.5861 13.8726 20.5873 13.954C20.7421 13.9914 20.946 14.0277 21.1618 14.059C21.3268 14.0828 21.4953 14.1036 21.6458 14.1204C21.6262 14.2236 21.6029 14.3202 21.5747 14.4098C21.4315 14.3935 21.2742 14.3734 21.1197 14.3511C20.9379 14.3248 20.753 14.2927 20.5942 14.2579C20.641 14.6147 21.0921 14.8533 21.3234 14.9304C21.8115 14.2794 22.1311 12.425 20.3069 10.1312ZM20.5548 12.8954L20.5804 12.8906C20.5752 12.8654 20.5633 12.8478 20.5514 12.834C20.5523 12.8546 20.5539 12.8751 20.5548 12.8954ZM18.4466 12.5923C18.8717 12.9639 19.186 13.282 19.3698 13.4658C19.4512 11.9197 18.6863 8.3879 14.976 6.63022C14.1378 6.23326 13.328 6.14574 12.5695 6.2594L12.6392 6.37196C9.47943 8.30415 8.29286 10.3617 7.99192 11.4322C7.96102 11.4541 7.93195 11.4778 7.90215 11.4999C8.20105 11.2812 8.55007 11.0587 8.94624 10.8549C8.93743 10.8594 8.92806 10.8635 8.91931 10.868C10.2383 8.61149 12.1708 7.0186 13.4126 6.22142C13.5682 6.23072 13.7255 6.24871 13.8842 6.27735C12.7777 6.92856 10.814 8.43248 9.41166 10.6339C9.40522 10.6367 9.39874 10.6394 9.39232 10.6422C10.0896 10.338 10.9073 10.1049 11.8313 10.0387C11.8252 10.0391 11.8187 10.0389 11.8126 10.0394C13.3039 8.31361 14.8386 7.45129 15.8274 7.09771C15.9346 7.16457 16.039 7.23287 16.1402 7.3028C15.2704 7.56872 13.7429 8.33658 12.2214 10.02C12.2148 10.0202 12.2081 10.0206 12.2014 10.0207C12.5595 10.013 12.9325 10.0311 13.3194 10.0794C13.6755 10.124 14.0202 10.1946 14.3531 10.2845C15.588 9.04852 16.7454 8.61821 17.5323 8.54023C17.6135 8.63309 17.691 8.72742 17.7657 8.82197C17.1009 8.83239 15.9554 9.14913 14.679 10.3784C14.6553 10.3709 14.6311 10.3649 14.6072 10.3577C14.8811 10.4414 15.1464 10.5376 15.402 10.6443C16.4548 9.78896 17.4921 9.47948 18.187 9.41031C18.247 9.50374 18.3036 9.59815 18.3582 9.69204C17.7598 9.72351 16.7575 9.96991 15.71 10.7796C15.8969 10.8658 16.0772 10.9585 16.2528 11.0531C17.153 10.4554 18.0746 10.3251 18.7028 10.357C18.7494 10.4591 18.793 10.5611 18.834 10.6622C18.2992 10.6075 17.4224 10.681 16.5456 11.2161C16.7148 11.3144 16.8775 11.416 17.0345 11.5185C17.7165 11.2328 18.3049 11.228 18.7622 11.3252C18.8836 11.351 18.9958 11.3851 19.0971 11.4211C19.1317 11.5411 19.1594 11.6601 19.1869 11.7761C19.0542 11.7154 18.8907 11.655 18.7007 11.6145C18.3402 11.5379 17.877 11.5294 17.3328 11.7188C17.6442 11.9361 17.927 12.1555 18.1787 12.3644C18.6068 12.2205 18.9842 12.2091 19.2856 12.2601C19.3032 12.3664 19.3172 12.4699 19.3291 12.5702C19.1016 12.5177 18.8011 12.5025 18.4466 12.5923ZM12.4631 6.27735C9.91579 6.72525 7.96933 9.43603 7.53133 10.3916C7.28566 10.9277 7.08877 11.5129 7.0887 12.1904C7.23925 12.0399 7.42774 11.8697 7.6508 11.6918C7.64495 11.6965 7.63865 11.701 7.63284 11.7056C7.7779 10.6894 8.85734 8.45539 12.1165 6.35193C12.2306 6.32228 12.3465 6.29816 12.4631 6.27735Z" fill="#00D4FF"/>
|
|
9
|
-
<path d="M20.9498 23.4496C20.3497 24.3588 19.5971 25.7766 19.1295 27.6466L19.0577 27.6425C18.8749 26.3626 18.9219 25.5082 19.0771 24.8306C19.1394 24.5586 19.2211 24.3152 19.3098 24.0842C19.4903 23.8842 19.6612 23.6905 19.8111 23.5082C20.0787 23.1829 20.3093 22.8693 20.4312 22.6257C20.4748 22.5385 20.5153 22.4638 20.552 22.4013L20.9498 23.4496Z" fill="#00D4FF"/>
|
|
10
|
-
<path d="M7.09008 34.3068C7.05477 34.4063 7.01754 34.5056 6.98236 34.6024H6.62466C6.62022 34.5045 6.61623 34.4046 6.61361 34.3068H7.09008Z" fill="#00D4FF"/>
|
|
11
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.66987 21.6887C4.50219 21.2123 5.81136 20.6871 7.24752 20.5238C8.95347 20.3298 10.7814 20.6464 12.218 22.083C13.3219 23.1872 13.6844 24.7161 13.7254 26.046C13.7457 26.7056 13.686 27.3 13.608 27.7391C13.569 27.9588 13.5266 28.1351 13.4893 28.257C13.4733 28.3091 13.4581 28.3468 13.4478 28.3717C13.4083 28.4118 13.3697 28.454 13.3291 28.4946C13.2142 28.6094 13.1009 28.7269 12.99 28.8447C13.0173 28.7286 13.042 28.611 13.0604 28.4925C13.2966 27.0807 12.9416 25.45 11.8354 24.4184C10.671 23.2947 8.98428 22.9149 7.48921 23.1644C7.28269 23.1992 7.07668 23.2463 6.87602 23.3135C6.83536 23.3275 6.79986 23.3551 6.77865 23.3929C6.75774 23.4309 6.75152 23.4766 6.76277 23.5179C6.7743 23.5592 6.80273 23.5954 6.84011 23.6174C6.87758 23.639 6.92239 23.6454 6.96441 23.6367C7.1481 23.5998 7.34187 23.5795 7.5341 23.5697C8.94473 23.5027 10.3676 23.9842 11.2809 24.9729C12.1153 25.8473 12.3721 27.1389 12.1752 28.3544C12.0619 29.0768 11.8584 29.7942 11.5806 30.5137C11.2614 30.9298 10.9928 31.3063 10.7907 31.5978C9.97381 32.3158 9.44577 32.7492 9.05396 32.9851L8.14522 33.945C7.55097 34.8001 7.04487 36.3434 6.68681 37.678C6.50789 38.345 6.36656 38.959 6.26973 39.4057C6.22137 39.6288 6.18434 39.8117 6.15924 39.9374C6.14682 39.9996 6.13728 40.0488 6.13093 40.0818C6.12779 40.098 6.12493 40.1113 6.12334 40.1197C6.12264 40.1236 6.12233 40.1274 6.12195 40.1294L6.12126 40.1315L6.04807 40.1301V40.1273C6.04807 40.1273 6.04715 40.1223 6.04669 40.119C6.04567 40.1113 6.0438 40.0988 6.04185 40.0838C6.03789 40.0533 6.03187 40.0072 6.02459 39.9492C6.00994 39.8323 5.98955 39.6619 5.9652 39.4506C5.9164 39.0269 5.85294 38.4347 5.79464 37.7636C5.67855 36.4271 5.5818 34.772 5.66137 33.4968C5.06459 32.8995 4.51188 32.3069 4.01721 31.7076C4.02067 31.6694 4.01267 31.6302 3.99649 31.5958C3.93255 31.4632 3.87113 31.3343 3.81212 31.2112C3.56694 30.7062 3.3256 30.2345 3.09673 29.7652C2.19236 28.1385 2.68835 26.1878 4.19606 24.9411C4.29676 24.8506 4.40433 24.7596 4.50956 24.6746C4.54257 24.6479 4.56659 24.6091 4.57447 24.5668C4.58196 24.5248 4.5734 24.4811 4.5503 24.446C4.52677 24.4108 4.48943 24.3855 4.44741 24.3762C4.40522 24.3671 4.3606 24.3753 4.32311 24.3956C4.19905 24.4633 4.07143 24.5382 3.95023 24.6152C2.80374 25.2108 1.98593 26.5238 1.83374 27.8876C1.80795 27.8037 1.78165 27.7191 1.75847 27.6342C1.46224 26.5475 1.79964 25.2431 2.32885 24.0531C2.72645 23.1591 3.23447 22.3249 3.66987 21.6887ZM6.67231 33.4885L7.34765 33.5327C7.32273 33.6171 7.29246 33.7156 7.25719 33.8221L6.61638 33.782C6.58633 34.3303 6.67489 35.426 6.67576 35.4365C6.67909 35.4278 7.4744 33.3453 7.40842 33.2399C7.33704 33.1454 6.82742 33.3605 6.67576 33.4837C6.67576 33.4837 6.67371 33.487 6.67231 33.4885ZM6.17927 31.9127C6.65064 32.1346 7.09302 32.2635 7.40842 32.2635C8.38496 32.2634 11.3136 30.7977 11.3141 27.869C11.314 24.9396 8.14082 24.2074 6.432 24.9397C6.26513 25.0113 6.10028 25.0984 5.93965 25.2001C8.10379 25.0184 9.44203 25.6854 10.203 26.6737C10.8281 27.4859 11.0467 28.4941 11.033 29.3695C10.9343 29.6214 10.812 29.8562 10.674 30.0752L10.6705 30.0745C10.8434 29.134 10.7205 27.8306 9.96892 26.8539C9.23117 25.8958 7.86175 25.2184 5.47009 25.5467C5.09407 25.8622 4.75066 26.246 4.46744 26.6626C5.55707 26.2817 6.95355 26.1649 8.06788 26.675C8.70816 26.9684 9.25201 27.4687 9.58429 28.2356C9.88836 28.9378 10.0083 29.8548 9.87777 31.0289C9.77165 31.1271 9.66249 31.2192 9.55253 31.3058L9.54907 31.3051C9.73553 30.0127 9.61647 29.0524 9.3136 28.353C9.01199 27.6569 8.52314 27.2078 7.94496 26.943C6.80016 26.419 5.29319 26.6098 4.21263 27.079C4.04956 27.3702 3.91576 27.6692 3.8204 27.9656C4.85905 27.5463 6.15237 27.3849 7.15292 27.8524C7.71589 28.1157 8.17891 28.576 8.44422 29.2846C8.68948 29.9399 8.76094 30.7998 8.60028 31.9044C8.49094 31.9582 8.38386 32.0058 8.28056 32.0474C8.4736 30.8819 8.40402 30.0162 8.1687 29.3875C7.93072 28.7521 7.52167 28.3505 7.02793 28.1196C6.06403 27.6693 4.75063 27.8608 3.72166 28.3296C3.64022 28.7061 3.62751 29.069 3.69749 29.3937C4.4636 29.0388 5.09528 28.9222 5.61096 28.9897C6.16934 29.0631 6.57605 29.35 6.85323 29.7458C7.332 30.4301 7.42494 31.4363 7.31382 32.2559C7.22438 32.2495 7.12643 32.2362 7.02241 32.2131C7.12704 31.4394 7.03254 30.5159 6.61154 29.9143C6.37714 29.5797 6.04129 29.3434 5.57298 29.2818C5.12302 29.2229 4.53597 29.3248 3.78312 29.6795C3.89985 29.9789 4.08788 30.2656 4.31828 30.5337C4.71496 30.3028 5.05461 30.2303 5.34027 30.299C5.64577 30.3729 5.85044 30.5985 5.98039 30.8631C6.10984 31.1271 6.17347 31.4456 6.19308 31.7456C6.19694 31.8047 6.19728 31.8636 6.19791 31.9217C6.19167 31.9188 6.18552 31.9157 6.17927 31.9127ZM4.52337 30.7554C4.92359 31.1605 5.41468 31.5105 5.89753 31.7705L5.89891 31.765C5.88082 31.4882 5.82287 31.2102 5.71592 30.9923C5.60938 30.7755 5.46223 30.6318 5.27053 30.5855C5.09617 30.5438 4.85356 30.5746 4.52337 30.7554ZM12.082 23.9343C12.3934 24.2129 12.6356 24.4766 12.7973 24.6787C12.8343 24.4937 12.8291 24.2453 12.7642 23.9619C12.6344 23.9471 12.4812 23.9325 12.3271 23.9295C12.2426 23.9278 12.1598 23.9299 12.082 23.9343ZM7.02724 22.324C7.22657 22.2959 7.43463 22.271 7.65218 22.2542C8.02714 22.2254 8.38912 22.2413 8.73632 22.2901C8.72697 22.2888 8.71737 22.2866 8.708 22.2853C9.14327 22.0544 9.66526 21.8811 10.1126 21.7591C10.3013 21.7076 10.4798 21.6646 10.6346 21.6293C10.7765 21.6985 10.9098 21.7708 11.0351 21.8448C11.001 21.8516 10.9628 21.8591 10.9225 21.8675C10.7306 21.9079 10.4724 21.9666 10.1899 22.0436C9.87024 22.1308 9.52422 22.242 9.20519 22.3765C9.4058 22.4235 9.60029 22.482 9.78869 22.5484C10.403 22.3135 11.0703 22.2103 11.5281 22.1748C11.647 22.266 11.7565 22.3589 11.8561 22.4531C11.5198 22.4565 10.8574 22.5183 10.2092 22.7148C10.4268 22.8104 10.6335 22.9178 10.83 23.0304C11.0869 22.969 11.376 22.9356 11.6497 22.922C11.8675 22.9111 12.0817 22.9116 12.2691 22.9171C12.3459 23.0201 12.414 23.1227 12.4728 23.2244C12.2528 23.2109 11.9624 23.2006 11.6642 23.2155C11.5081 23.2233 11.3526 23.2396 11.205 23.2603C11.2005 23.2574 11.1957 23.255 11.1912 23.2521C11.4013 23.3899 11.5966 23.5323 11.7747 23.6754C11.9488 23.6409 12.1483 23.631 12.3333 23.6346C12.4507 23.637 12.5679 23.645 12.6751 23.6546C12.6815 23.6718 12.6866 23.6894 12.6924 23.7064C12.4258 22.9369 11.6944 21.9975 10.0594 21.3814C9.93522 21.4067 9.77179 21.446 9.57255 21.5133C9.20346 21.638 8.70552 21.8557 8.0879 22.2397C7.94477 22.2382 7.79937 22.2429 7.65218 22.2542C7.60413 22.2579 7.5557 22.2638 7.50855 22.268C8.34088 21.6967 9.00207 21.3944 9.47795 21.2336C9.50311 21.2251 9.5291 21.2185 9.55322 21.2108C9.7183 21.2607 9.87572 21.3141 10.0255 21.3697C9.6952 21.247 9.32863 21.1376 8.92207 21.0451C8.4799 21.2365 7.76666 21.6483 7.09008 22.3136C7.06895 22.3165 7.04816 22.321 7.02724 22.324ZM8.4387 20.9526C8.1118 20.9018 7.80381 20.8796 7.51338 20.8821C7.61741 20.8817 7.72372 20.8835 7.83241 20.8891C7.4387 21.1966 6.80393 21.761 6.2062 22.478C6.33891 22.4461 6.47677 22.4171 6.61983 22.3903C6.61443 22.3913 6.60864 22.392 6.60326 22.393C7.22416 21.7045 7.9125 21.2335 8.4387 20.9526ZM7.00446 20.9132C6.59342 21.283 5.90132 21.9754 5.30989 22.75C5.11531 22.8242 4.93693 22.904 4.77403 22.9848C5.29955 22.2174 5.97182 21.4938 6.47136 21.0085C6.24096 21.0648 6.02546 21.1373 5.82433 21.2247C5.95282 21.169 6.08724 21.1191 6.22761 21.0755C5.91307 21.3588 5.44335 21.8131 5.00674 22.3046C4.71085 22.6378 4.43621 22.9821 4.23265 23.2969C4.22657 23.301 4.22071 23.3053 4.2147 23.3094C4.58098 23.0632 5.0796 22.8106 5.72421 22.6106C6.28351 21.8827 6.90891 21.2779 7.37251 20.8835C7.24629 20.8882 7.12376 20.8994 7.00446 20.9132ZM5.4404 21.418C4.28684 22.0791 3.69108 23.2068 3.50207 23.9626C3.55787 23.8789 3.64245 23.7796 3.75618 23.6712C3.74618 23.6807 3.73603 23.6901 3.72649 23.6995L3.69127 23.685C3.87892 23.2104 4.32311 22.6309 4.78646 22.1092C5.00389 21.8644 5.22967 21.6288 5.4404 21.418Z" fill="#00D4FF"/>
|
|
12
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.61638 14.5216C7.59489 13.4193 8.97348 12.2746 10.6477 11.9252C12.3767 11.5646 13.6507 11.7601 14.639 12.1476C15.6413 12.5407 16.3724 13.1361 17.0379 13.6419C18.1797 14.51 18.3675 15.711 18.1994 16.5518C18.0721 17.1885 18.0256 17.7701 18.1697 18.3382C18.3156 18.9129 18.6431 19.4248 19.1689 19.9506C19.5304 20.3122 19.8341 20.7225 20.0452 21.0769C20.1148 21.1938 20.1709 21.3036 20.2171 21.3994C20.0208 21.5592 19.8283 21.8292 19.6302 22.2252C19.5567 22.372 19.3831 22.62 19.1199 22.9399C18.8633 23.2518 18.5414 23.6095 18.1946 23.9702C17.4955 24.6971 16.7172 25.4129 16.181 25.796C15.5415 26.2528 15.054 26.7129 14.5803 27.1978C14.6138 26.8407 14.6334 26.4414 14.6204 26.0183C14.5758 24.574 14.1824 22.7799 12.8519 21.4491C11.1638 19.7609 9.02838 19.4196 7.14602 19.6337C6.06978 19.7561 5.05785 20.0609 4.22644 20.414L4.68702 18.3403C4.78336 17.8448 4.85644 17.3269 4.92526 16.7942C5.00478 16.754 5.07424 16.6901 5.1193 16.6057V16.6043C5.1193 16.6043 5.12188 16.6002 5.12344 16.5974C5.12701 16.5908 5.13317 16.5798 5.14071 16.5663C5.15623 16.5385 5.18012 16.4954 5.21183 16.4413C5.27582 16.3323 5.37295 16.1737 5.49978 15.9807C5.75458 15.5932 6.13153 15.068 6.61638 14.5216ZM18.1497 20.057C18.1105 20.2521 17.9976 20.482 17.8369 20.733C18.0416 21.0275 18.225 21.4413 18.3734 21.8454C18.4779 22.1302 18.567 22.4176 18.6379 22.6665C18.5657 22.7492 18.4865 22.8348 18.4038 22.9241C18.3299 22.6472 18.2242 22.2949 18.0965 21.9469C17.9652 21.5895 17.8135 21.2484 17.6559 20.9954C17.5554 21.1331 17.4447 21.2758 17.3245 21.4194C17.5597 21.7891 17.7122 22.2665 17.8058 22.7141C17.8584 22.9661 17.8935 23.2127 17.9163 23.4309C17.828 23.5196 17.7369 23.6095 17.6442 23.7002C17.6267 23.444 17.5875 23.1143 17.5165 22.7742C17.4324 22.3722 17.3044 21.9682 17.1228 21.6528C17.0013 21.7902 16.8728 21.927 16.7424 22.0637C17.0029 22.373 17.1408 22.8616 17.2105 23.3273C17.2479 23.5768 17.2673 23.8285 17.2755 24.0565C17.1793 24.1481 17.0827 24.2404 16.9854 24.3314C16.9865 24.0549 16.9699 23.7106 16.9191 23.3715C16.8524 22.9257 16.7279 22.5207 16.5352 22.2763C16.4537 22.359 16.3735 22.4424 16.2914 22.5229C16.579 23.0747 16.6173 23.7235 16.5877 24.2499C16.5776 24.429 16.558 24.5963 16.5387 24.7436C16.4224 24.8499 16.308 24.9552 16.1955 25.0564C16.2002 25.0263 16.2055 24.9944 16.2107 24.9611C16.2406 24.7694 16.2769 24.5153 16.2928 24.2326C16.3199 23.7499 16.2821 23.2028 16.0663 22.7383C15.9432 22.8557 15.8219 22.9694 15.7038 23.0774L15.7494 23.0594C15.9622 23.6 15.9453 24.3098 15.8889 24.87C15.8696 25.0609 15.8444 25.2376 15.8219 25.3886C15.7014 25.4952 15.5856 25.5961 15.4773 25.6903C15.4839 25.6469 15.4923 25.597 15.5008 25.5426C15.5294 25.3601 15.5677 25.1147 15.5954 24.8403C15.6479 24.3187 15.6551 23.7185 15.5035 23.2583C15.309 23.4322 15.1304 23.5895 14.976 23.7182L15.2204 25.9154C16.3596 24.939 18.7349 22.7912 19.1261 22.0098C19.5164 21.2288 18.638 20.3826 18.1497 20.057ZM17.4177 15.9068C17.692 13.8763 10.6222 10.3235 7.23993 14.9864C8.30251 14.414 9.75806 13.8627 11.3603 13.6654C13.1751 13.4421 15.1849 13.6741 17.022 14.8469C17.1811 15.0466 17.2972 15.2463 17.3625 15.44C15.4656 14.0124 13.3266 13.7206 11.3963 13.9582C9.56523 14.1837 7.92939 14.8841 6.8843 15.5312C6.78232 15.7049 6.68562 15.8882 6.5929 16.0809C7.71172 15.5199 9.33612 14.9592 11.1373 14.8151C13.1425 14.6549 15.3751 15.0109 17.3687 16.4627C17.3602 16.578 17.3525 16.6964 17.3445 16.817C15.3826 15.3213 13.1647 14.9484 11.1601 15.1086C9.21316 15.2644 7.47768 15.9218 6.3961 16.5194C6.3474 16.6373 6.29984 16.7588 6.25454 16.8833L6.24142 16.9268C8.37908 15.7976 12.9673 14.7078 17.2637 18.0344C17.2555 18.1534 17.2472 18.2718 17.2382 18.3886C12.8341 14.8615 8.08314 16.1823 6.12748 17.328L6.0819 17.4868C8.15012 16.5062 12.6647 15.968 17.089 19.7255C17.0686 19.8441 17.0457 19.9541 17.0213 20.0542C12.4663 16.1004 7.82039 16.8662 5.97211 17.8742L5.91203 18.0848C8.11975 17.1296 12.7918 16.6051 16.3633 21.1832C16.2996 21.2577 16.2331 21.3329 16.1651 21.4076C12.5664 16.7526 7.81949 17.4809 5.80569 18.4591L5.70004 18.8299C6.70325 18.3141 8.23372 17.9016 9.91299 18.1635C11.7516 18.4506 13.7505 19.546 15.4241 22.161C15.3481 22.2338 15.2749 22.3026 15.2066 22.3661C13.568 19.7814 11.6257 18.7294 9.86741 18.4549C8.53329 18.2469 7.29577 18.4831 6.36778 18.8499C6.16377 18.858 5.98826 18.8617 5.8485 18.8527C6.86013 18.9254 9.74716 18.3578 11.803 19.5688C13.9534 20.8358 14.7151 22.7697 14.7274 22.8011C14.755 22.7773 16.6327 21.1547 16.9426 20.3249C17.2539 19.4892 17.2827 17.2744 17.4177 15.9068Z" fill="#00D4FF"/>
|
|
13
|
-
<path d="M1.82545 29.0712C1.85684 29.1262 1.88619 29.1862 1.9166 29.248C1.97786 29.4931 2.06635 29.7328 2.18315 29.962C2.3151 30.4527 2.37534 31.0283 2.26947 31.6227C2.08803 32.64 1.42872 33.7076 -0.142569 34.4933L-0.188835 34.4387C0.216759 33.8709 0.800985 32.9201 1.23505 31.9183C1.45184 31.4177 1.63099 30.9045 1.73154 30.4205C1.83206 29.9361 1.85328 29.4817 1.75778 29.0988L1.82545 29.0712Z" fill="#00D4FF"/>
|
|
14
|
-
<path d="M26.5231 3.99928C27.66 3.51202 30.3227 2.04983 31.8796 0.103981L31.9424 0.14196C31.6152 0.877875 30.9526 1.9565 30.0289 2.80259C29.105 3.64877 27.9138 4.26628 26.5321 4.06903L26.4022 4.05107L26.5231 3.99928Z" fill="#00D4FF"/>
|
|
15
|
-
<path d="M92.2735 29.5387V10.4049H97.8776C99.1177 10.4049 100.191 10.6408 101.097 11.1126C102.003 11.5844 102.703 12.2571 103.196 13.1308C103.704 14.0045 103.959 15.0354 103.959 16.2237C103.959 17.4643 103.68 18.5739 103.124 19.5524C102.583 20.5309 101.844 21.2386 100.906 21.6755L104.197 29.5387H100.31L97.496 22.3045H95.8267V29.5387H92.2735ZM95.8267 18.8971H97.8776C98.6725 18.8971 99.2846 18.6787 99.7138 18.2419C100.159 17.805 100.382 17.1935 100.382 16.4071C100.382 15.5859 100.159 14.9481 99.7138 14.4938C99.2846 14.0394 98.6725 13.8123 97.8776 13.8123H95.8267V18.8971Z" fill="white"/>
|
|
16
|
-
<path d="M75.542 29.5387V10.4049H81.1938C82.402 10.4049 83.4513 10.6583 84.3416 11.165C85.2478 11.6718 85.9474 12.3882 86.4402 13.3143C86.9489 14.2229 87.2033 15.2976 87.2033 16.5382V23.3792C87.2033 24.6023 86.9489 25.677 86.4402 26.6031C85.9474 27.5292 85.2478 28.2543 84.3416 28.7785C83.4513 29.2853 82.402 29.5387 81.1938 29.5387H75.542ZM79.1191 25.8692H81.1938C81.9251 25.8692 82.5133 25.642 82.9585 25.1877C83.4036 24.7334 83.6262 24.1305 83.6262 23.3792V16.5382C83.6262 15.8043 83.4036 15.2102 82.9585 14.7559C82.5133 14.3016 81.9251 14.0744 81.1938 14.0744H79.1191V25.8692Z" fill="white"/>
|
|
17
|
-
<path d="M58.9058 29.5387V10.4049H64.5099C65.75 10.4049 66.8231 10.6408 67.7293 11.1126C68.6355 11.5844 69.335 12.2571 69.8279 13.1308C70.3366 14.0045 70.591 15.0354 70.591 16.2237C70.591 17.4643 70.3128 18.5739 69.7563 19.5524C69.2158 20.5309 68.4765 21.2386 67.5385 21.6755L70.8295 29.5387H66.9423L64.1284 22.3045H62.459V29.5387H58.9058ZM62.459 18.8971H64.5099C65.3048 18.8971 65.9169 18.6787 66.3462 18.2419C66.7913 17.805 67.0139 17.1935 67.0139 16.4071C67.0139 15.5859 66.7913 14.9481 66.3462 14.4938C65.9169 14.0394 65.3048 13.8123 64.5099 13.8123H62.459V18.8971Z" fill="white"/>
|
|
18
|
-
<path d="M46.0375 29.5387V14.0744H41.6258V10.4049H54.0264V14.0744H49.6146V29.5387H46.0375Z" fill="white"/>
|
|
19
|
-
</g>
|
|
20
|
-
<defs>
|
|
21
|
-
<clipPath id="clip0_2475_3136">
|
|
22
|
-
<rect width="104.276" height="40.2147" fill="white"/>
|
|
23
|
-
</clipPath>
|
|
24
|
-
</defs>
|
|
25
|
-
</svg>
|
|
1
|
+
<svg width="105" height="41" viewBox="0 0 105 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2475_3136)">
|
|
3
|
+
<path d="M22.1577 24.6517C25.8727 20.9367 29.6444 17.278 33.4721 13.6756C33.8973 13.2754 34.3229 12.8757 34.7495 12.4769C34.3507 12.9035 33.951 13.3291 33.5508 13.7543C29.9484 17.582 26.2897 21.3537 22.5747 25.0687C18.8596 28.7838 15.0874 32.443 11.2597 36.0455C10.8344 36.4457 10.4088 36.8454 9.98217 37.2442C10.381 36.8176 10.7807 36.392 11.1809 35.9667C14.7834 32.139 18.4426 28.3668 22.1577 24.6517Z" fill="#00D4FF"/>
|
|
4
|
+
<path d="M14.5478 28.5229C16.0588 28.5003 17.2697 29.2261 17.7291 29.4558L17.7105 29.5256C17.3248 29.4999 16.6195 29.5983 15.8861 29.7327C15.1544 29.8669 14.3989 30.0361 13.9146 30.1505C13.4488 30.2605 13.0847 30.351 12.7884 30.4343C13.1445 30.0006 13.5409 29.5492 13.9623 29.1278C14.0095 29.0806 14.0537 29.0315 14.099 28.9856C14.1047 28.9804 14.1121 28.9765 14.1176 28.9711C14.1288 28.9599 14.1382 28.9469 14.148 28.9352C14.2889 28.7917 14.4219 28.655 14.5478 28.5229Z" fill="#00D4FF"/>
|
|
5
|
+
<path d="M20.5403 12.0426C20.6294 12.0426 20.8249 12.0148 21.0458 11.9763C21.1531 11.9576 21.2633 11.9346 21.3641 11.9149C21.4019 12.01 21.437 12.1032 21.4677 12.1952C21.3527 12.218 21.2226 12.245 21.0962 12.267C20.8814 12.3044 20.6589 12.3375 20.5396 12.3375V12.1897L20.5403 12.0426Z" fill="#00D4FF"/>
|
|
6
|
+
<path d="M13.0936 10.0539C14.502 8.51099 15.8978 7.94588 16.8018 7.81379C16.902 7.90063 16.9986 7.98932 17.0918 8.07896C16.3336 8.12243 14.9259 8.55779 13.4561 10.0988C13.4106 10.0922 13.3653 10.0852 13.3194 10.0794C13.2439 10.07 13.168 10.061 13.0936 10.0539Z" fill="#00D4FF"/>
|
|
7
|
+
<path d="M10.2217 10.3349C11.3058 8.9225 12.3371 7.94766 13.2041 7.30142C13.7258 6.91257 14.1915 6.64203 14.572 6.4638C14.6978 6.50944 14.8254 6.55977 14.9525 6.61917C14.5648 6.77113 14.0229 7.05802 13.3795 7.53758C12.5988 8.11955 11.673 8.98082 10.6919 10.2099C10.5311 10.2474 10.3739 10.2888 10.2217 10.3349Z" fill="#00D4FF"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.19563 7.19853C8.82213 6.53068 9.59196 6.02254 10.415 5.6393C10.9921 5.55072 11.5611 5.46037 12.1289 5.36861C15.0027 4.78531 18.0354 5.56203 19.8166 8.03476C19.9502 8.20105 20.0768 8.36638 20.204 8.54092C20.2295 8.57556 20.2678 8.60123 20.3104 8.60998C20.3528 8.61858 20.3978 8.61029 20.434 8.58719C20.47 8.56393 20.4959 8.52582 20.5058 8.48361C20.5153 8.44146 20.5072 8.39674 20.4864 8.35931C20.3772 8.16679 20.2673 7.98185 20.1481 7.79584C19.2623 6.15079 17.6082 5.05307 15.7832 4.5745C16.0251 4.57872 16.2451 4.58876 16.4378 4.60626H16.4392C17.532 4.7277 19.4111 4.99341 21.4856 5.08964C21.5151 5.16013 21.5465 5.23055 21.5789 5.30025C21.6618 5.64677 21.8202 5.95937 22.025 6.23661C21.3916 7.94152 21.0975 10.0935 22.2107 11.7643C22.2576 11.8681 22.3104 11.9698 22.3723 12.0668C22.4195 12.1405 22.4688 12.2149 22.5208 12.2885C22.7809 12.8252 22.6184 14.0938 22.2556 14.994C22.2263 15.0672 22.1942 15.1407 22.161 15.2129C22.1436 15.2505 22.1372 15.294 22.1465 15.3351C22.156 15.3762 22.1806 15.4124 22.2148 15.4352C22.2491 15.4579 22.2913 15.4665 22.3329 15.4594C22.3746 15.4522 22.4126 15.4293 22.4407 15.3986C22.4983 15.3345 22.5546 15.268 22.6078 15.1997C23.051 14.543 23.4813 13.836 23.491 12.9645C23.5637 13.0024 23.6389 13.0384 23.7168 13.0701C24.752 13.5495 26.1524 12.9048 26.3698 11.7968C26.4254 11.527 26.3919 11.2144 26.231 10.9813C26.2067 10.948 26.1724 10.921 26.1322 10.9088C26.0918 10.8966 26.0488 10.9001 26.0121 10.9184C25.9754 10.9368 25.9472 10.9693 25.9327 11.0089C25.9184 11.0484 25.9191 11.0923 25.9313 11.1318C25.9756 11.3047 25.9373 11.48 25.8574 11.6366C25.5009 12.2885 24.6813 12.522 24.053 12.2408C23.7916 12.1348 23.5444 11.9557 23.319 11.7333C22.0961 10.5423 22.0743 8.5436 22.5187 6.77316C22.7499 6.97966 23.0026 7.15821 23.2541 7.30832C23.2782 7.32259 23.3033 7.33773 23.328 7.35182C23.7394 7.58588 24.2688 7.76899 24.8251 7.64323C25.3878 7.51826 25.7723 7.06716 25.9368 6.63229C25.9762 6.53054 26.0071 6.43087 26.0307 6.31464C26.0366 6.27411 26.0314 6.23072 26.0121 6.1938C25.9926 6.15687 25.9604 6.12845 25.9223 6.11508C25.8841 6.10189 25.8411 6.10442 25.8029 6.12129C25.7649 6.13829 25.7337 6.16879 25.7131 6.20416C25.6698 6.26702 25.6108 6.34645 25.5543 6.40994C25.0156 7.0362 24.4183 6.96047 23.7755 6.57567C23.7539 6.56309 23.7322 6.55014 23.7112 6.53769C23.1249 6.18299 22.5465 5.80278 22.1582 5.27608C22.1233 5.2216 22.0875 5.16623 22.054 5.10966C23.9959 5.16774 26.0558 5.05931 27.7688 4.53376C31.5104 3.38569 33.5205 1.43302 34.6569 0.134365L34.719 0.171653C34.1423 1.69165 32.9607 3.0504 31.7124 4.13946C30.4829 5.21216 29.1847 6.02594 28.3275 6.47899C28.453 6.62107 28.6316 6.90207 28.817 7.27932C29.0201 7.69242 29.237 8.22377 29.4144 8.81714C29.7937 10.0866 29.8393 11.598 29.6595 12.497C29.5633 12.979 29.5961 13.5352 29.6505 13.9823C29.6777 14.2054 29.71 14.4017 29.7341 14.5465C29.746 14.6184 29.7562 14.6795 29.7624 14.724C29.7654 14.7456 29.7676 14.7651 29.7686 14.7799C29.7691 14.7872 29.7695 14.7951 29.7693 14.8013C29.7691 14.807 29.7683 14.8154 29.7658 14.8227C29.7634 14.8297 29.7593 14.8362 29.7562 14.8407C29.7527 14.8457 29.7483 14.8519 29.7437 14.8572C29.7344 14.868 29.7217 14.881 29.7071 14.8952C29.6773 14.9242 29.6358 14.962 29.5863 15.005C29.487 15.0913 29.3517 15.2035 29.2037 15.3254C28.907 15.57 28.5557 15.8558 28.3219 16.0636C28.0833 16.2756 27.8665 16.3721 27.6404 16.3806C27.4158 16.3887 27.1856 16.3098 26.9222 16.1844C26.782 16.1176 26.6194 16.0036 26.4568 15.8723C26.4213 15.789 26.3795 15.7108 26.3263 15.641C25.8946 15.0755 25.3983 14.5584 24.8375 14.0914C24.7976 14.0582 24.7565 14.0247 24.716 13.992C24.6844 13.9667 24.6457 13.9481 24.6048 13.9444C24.5639 13.9407 24.5236 13.9516 24.4922 13.9754C24.4609 13.9994 24.4401 14.0358 24.4328 14.0762C24.4258 14.1166 24.4327 14.1587 24.4487 14.1957C24.4696 14.2434 24.4907 14.2921 24.5123 14.3393C24.7288 14.8144 24.9788 15.2647 25.2615 15.6893C25.1851 15.8935 25.0864 16.1406 24.9141 16.4455C24.5745 17.0463 24.1721 17.6496 23.8245 18.1331C23.7523 18.2335 23.6812 18.3285 23.6146 18.4176C23.5076 17.8924 23.2782 17.3845 22.9558 17.0089C22.918 16.9611 22.8794 16.9148 22.8391 16.8674C22.8123 16.8366 22.7765 16.8119 22.7362 16.8018C22.696 16.7918 22.6538 16.7964 22.6188 16.8156C22.584 16.8349 22.558 16.8683 22.5449 16.9074C22.5321 16.9467 22.5333 16.9901 22.5449 17.029C22.5621 17.0857 22.5778 17.1411 22.5933 17.1961C22.8282 17.9898 22.8672 18.6434 22.7555 19.4175C22.7302 19.6408 22.7576 19.8884 22.855 20.1384C22.8769 20.1949 22.9038 20.2513 22.933 20.3076C22.8716 20.8648 22.8027 21.4963 22.7548 21.9318C22.7027 22.4068 22.6892 23.0708 22.6892 23.616C22.6893 23.8879 22.6928 24.1308 22.6961 24.3051C22.6966 24.3284 22.6964 24.3512 22.6968 24.3721L21.7978 23.1581L21.2322 21.6687C21.2219 21.5104 21.1689 21.3413 21.11 21.197C21.0386 21.0222 20.9377 20.8234 20.8151 20.6177C20.57 20.2063 20.2211 19.7365 19.8021 19.3174C19.3518 18.8671 19.1331 18.4901 19.0384 18.1172C18.9426 17.7393 18.9603 17.3131 19.0757 16.7334C19.0797 16.722 19.0848 16.7107 19.0888 16.6996C19.2295 16.3048 19.4314 16.0301 19.7704 15.9131C20.1138 15.7917 20.5972 15.8378 21.043 15.9787C21.1068 15.9992 21.17 16.0217 21.2295 16.0463C21.2672 16.0629 21.3109 16.0688 21.3517 16.0595C21.3923 16.05 21.4278 16.026 21.4504 15.9925C21.473 15.9586 21.4814 15.9158 21.4746 15.8744C21.4676 15.8333 21.4455 15.7958 21.4159 15.7674C21.3569 15.7133 21.2962 15.6639 21.2329 15.6175C20.7926 15.3054 20.2454 15.0655 19.5984 15.1583C19.4149 15.1816 19.2433 15.246 19.0867 15.3372C18.9386 14.5051 18.4974 13.626 17.58 12.9286C16.9422 12.4439 16.107 11.7618 14.9656 11.3141C13.81 10.8611 12.3591 10.6533 10.4654 11.0483C8.51635 11.4549 6.97771 12.7646 5.94587 13.9271C5.64266 14.2687 5.37954 14.603 5.15866 14.9035C5.24835 14.2016 5.35365 13.4863 5.50047 12.7718C5.89956 10.8302 6.61228 8.88668 8.19563 7.19853ZM20.9843 19.9858C20.9787 20.0081 21.048 20.1555 21.1542 20.3615C21.3175 20.305 21.5141 20.2357 21.6928 20.1668C21.815 20.1196 21.9282 20.0734 22.0153 20.0335C22.0586 20.0136 22.0945 19.9951 22.1209 19.9803C22.1254 20.0721 22.1293 20.1826 22.1285 20.3056C22.0351 20.348 21.919 20.3957 21.7985 20.4423C21.6321 20.5064 21.4513 20.5709 21.2951 20.6253C21.3694 20.7647 21.4487 20.9161 21.5298 21.0644L22.1196 20.7371C22.1157 20.8525 22.1096 20.9696 22.1044 21.0838L21.6735 21.3227C21.878 21.6933 22.0495 21.9994 22.0553 22.0098C22.057 21.9859 22.2085 19.8065 22.0795 19.7248C21.9488 19.6468 21.0112 19.9075 20.9843 19.9858ZM27.1819 12.0012C27.2386 12.3992 27.1975 12.737 27.1024 13.0211C27.2745 13.1172 27.461 13.2208 27.63 13.3167C27.6496 13.3278 27.6696 13.3396 27.6887 13.3505C27.6977 13.4647 27.6951 13.5769 27.6777 13.6847C27.6172 13.6501 27.5516 13.6121 27.4836 13.5735C27.3245 13.4833 27.1497 13.3861 26.9864 13.2946C26.8666 13.5236 26.7109 13.7076 26.5473 13.8497L27.4173 14.2047C27.373 14.2483 27.3282 14.2862 27.2834 14.3193C27.3306 14.2839 27.3795 14.2453 27.4263 14.1985C28.012 13.6128 27.5074 12.4897 27.1819 12.0012ZM25.9617 14.1978C26.185 14.4209 26.733 14.7234 27.273 14.3269C27.2288 14.3588 27.1844 14.3863 27.1404 14.4098L26.2676 14.0535C26.1571 14.1193 26.052 14.1676 25.9617 14.1978ZM23.4115 15.139C23.6275 15.1991 23.9019 15.2786 24.1497 15.3593C24.1628 15.3635 24.1761 15.3695 24.1891 15.3738C24.2708 15.4494 24.3386 15.5273 24.3728 15.6058C24.3928 15.652 24.4001 15.7043 24.399 15.7605C24.3013 15.7231 24.1841 15.6804 24.0586 15.6396C23.824 15.5633 23.5641 15.4888 23.3549 15.4304C23.3375 15.522 23.322 15.6144 23.3156 15.7059C23.4422 15.728 23.5828 15.7577 23.7202 15.7998C23.9292 15.864 24.1566 15.9628 24.3099 16.1106C24.2774 16.1879 24.2397 16.2636 24.2015 16.3322L24.1497 16.3702C24.0653 16.2555 23.8738 16.156 23.6339 16.0822C23.5323 16.0511 23.4278 16.0266 23.3301 16.0077C23.383 16.2762 23.5624 16.5096 24.0089 16.6395C24.0152 16.6309 24.5198 15.9476 24.3728 15.6058C24.2251 15.266 23.4775 14.9102 23.4606 14.9021C23.4499 14.9769 23.4296 15.056 23.4115 15.139ZM25.229 8.09553C25.3245 8.12741 25.4937 8.20964 25.7235 8.35517C26.1223 8.09379 26.8952 7.72057 27.7736 7.66809C27.837 7.75458 27.9 7.85024 27.9608 7.95604C27.1504 7.96099 26.4094 8.28423 25.9907 8.5354C26.1305 8.63513 26.285 8.75298 26.452 8.89172C26.5721 8.81822 26.7256 8.74134 26.9132 8.66936C27.226 8.54951 27.6411 8.44028 28.1666 8.37589C28.2044 8.46551 28.2414 8.55963 28.2757 8.65901C27.7364 8.71943 27.3211 8.82905 27.0189 8.94489C26.8865 8.99566 26.7782 9.04933 26.6895 9.09749C26.828 9.22036 26.9736 9.35589 27.1252 9.5056C27.4197 9.38292 27.8679 9.26831 28.4455 9.26529C28.4662 9.36066 28.4845 9.45949 28.5015 9.56153C28.0017 9.55762 27.6122 9.64088 27.3476 9.73486L27.3566 9.74383C27.4552 9.85387 27.5449 9.96584 27.6279 10.0774C27.7685 10.0667 27.9319 10.0649 28.103 10.0829C28.2545 10.0988 28.4161 10.1298 28.5747 10.183C28.5827 10.2881 28.5908 10.396 28.5947 10.5069C28.4273 10.4357 28.2467 10.3947 28.072 10.3764C27.9867 10.3674 27.904 10.3652 27.8261 10.3653C28.2926 11.0975 28.4592 11.7892 28.5187 12.0868C28.9092 8.96272 27.8329 7.44499 27.1819 7.11911L25.229 8.09553ZM19.6578 17.1484C19.3667 17.5282 19.2856 18.3026 20.0459 18.6828C20.886 19.1029 21.2487 19.4628 21.6452 18.9328C21.6073 18.9823 21.5699 19.0243 21.5326 19.0591C21.4819 18.7735 21.3937 18.395 21.2605 18.0123C21.0994 17.5497 20.8767 17.0977 20.5935 16.7873C20.3298 16.7829 20.0729 16.8435 19.8808 16.9558C20.2725 17.3281 20.5111 17.9091 20.6584 18.3948C20.7364 18.6522 20.792 18.8902 20.8324 19.066C20.8344 19.0748 20.836 19.0838 20.8379 19.0923C20.7349 19.0452 20.6201 18.988 20.494 18.9196C20.4616 18.7865 20.4234 18.6363 20.376 18.4798C20.2272 17.9894 20.001 17.461 19.6578 17.1484ZM20.8455 16.8114C20.9055 16.8224 20.965 16.8365 21.023 16.855C21.2414 17.1719 21.4122 17.5501 21.5395 17.9156C21.64 18.2043 21.7149 18.4909 21.7695 18.7408C21.7935 18.6984 21.8193 18.6534 21.844 18.6041C22.0881 18.1973 21.8701 17.3789 21.3489 17.0138C21.2003 16.9098 21.0258 16.8442 20.8455 16.8114ZM22.8356 8.38417C22.8758 8.62489 22.9324 8.90376 23.0007 9.19279C23.0305 9.17745 23.0634 9.16141 23.0973 9.14031C23.2407 9.05108 23.4139 8.90947 23.6049 8.69491C23.688 8.73826 23.7746 8.78829 23.8645 8.84407C23.6418 9.10259 23.4338 9.27825 23.2527 9.39097C23.1907 9.42954 23.1304 9.45982 23.0739 9.48558C23.1028 9.5979 23.1335 9.71019 23.165 9.82117C23.3624 9.72715 23.5959 9.61057 23.8162 9.48212C23.9804 9.38635 24.1362 9.28587 24.2644 9.18864C24.278 9.17828 24.2902 9.16566 24.303 9.1555C24.3772 9.2161 24.4529 9.28107 24.5281 9.35161C24.5 9.37495 24.473 9.40148 24.4432 9.42412C24.3023 9.53102 24.1349 9.63764 23.9647 9.73693C23.7201 9.87956 23.4606 10.007 23.2479 10.1071C23.286 10.2299 23.3253 10.349 23.3653 10.462C23.6142 10.408 23.9347 10.3261 24.2554 10.2182C24.5231 10.1281 24.783 10.019 25.0018 9.90128C25.0593 9.98878 25.1072 10.0765 25.1489 10.1616C24.9049 10.2936 24.623 10.406 24.35 10.4979C24.0372 10.6032 23.7247 10.6849 23.473 10.741C23.5159 10.8465 23.5583 10.9434 23.6014 11.0282C23.8602 11.0379 24.2351 11.0321 24.5806 10.9868C24.766 10.9624 24.9388 10.9273 25.0778 10.8791C25.201 10.8363 25.2823 10.7865 25.3292 10.7396C25.346 10.876 25.341 10.9973 25.3188 11.098C25.2724 11.1203 25.2236 11.141 25.1745 11.158C25.0095 11.2153 24.8152 11.2538 24.6193 11.2796C24.3384 11.3164 24.0415 11.3275 23.7962 11.3265L23.7996 11.33C24.1645 11.6944 24.963 11.5744 25.2076 11.3307C25.4517 11.0866 25.4147 10.2342 24.6338 9.45312C23.8533 8.67278 23.0803 8.46566 22.8356 8.38417ZM20.3069 10.1312C20.3705 10.5769 20.4178 11.0252 20.4561 11.4529L21.0983 11.33C21.147 11.4225 21.1915 11.5146 21.2336 11.6048L20.4816 11.7478C20.5116 12.1231 20.533 12.4775 20.5486 12.7939C20.5608 12.7932 20.5756 12.7936 20.5921 12.7919C20.6861 12.7816 20.8201 12.7568 20.9726 12.7235C21.1654 12.6813 21.3824 12.6253 21.5768 12.5736C21.6011 12.6724 21.623 12.7686 21.6396 12.863C21.4453 12.9144 21.229 12.9691 21.0354 13.0114C20.8806 13.0453 20.7346 13.0733 20.6245 13.0853C20.6035 13.0876 20.5823 13.0863 20.5617 13.0874C20.5656 13.183 20.5671 13.2739 20.57 13.3595C20.5869 13.3606 20.6053 13.3635 20.6245 13.3643C20.7381 13.3688 20.8813 13.3651 21.0347 13.356C21.255 13.343 21.4932 13.3173 21.6907 13.2939C21.6975 13.3962 21.6999 13.4948 21.6983 13.5901C21.502 13.613 21.2697 13.6373 21.0527 13.6502C20.8947 13.6595 20.7403 13.6642 20.6128 13.6592C20.6017 13.6587 20.5905 13.657 20.5797 13.6564C20.5825 13.7726 20.5861 13.8726 20.5873 13.954C20.7421 13.9914 20.946 14.0277 21.1618 14.059C21.3268 14.0828 21.4953 14.1036 21.6458 14.1204C21.6262 14.2236 21.6029 14.3202 21.5747 14.4098C21.4315 14.3935 21.2742 14.3734 21.1197 14.3511C20.9379 14.3248 20.753 14.2927 20.5942 14.2579C20.641 14.6147 21.0921 14.8533 21.3234 14.9304C21.8115 14.2794 22.1311 12.425 20.3069 10.1312ZM20.5548 12.8954L20.5804 12.8906C20.5752 12.8654 20.5633 12.8478 20.5514 12.834C20.5523 12.8546 20.5539 12.8751 20.5548 12.8954ZM18.4466 12.5923C18.8717 12.9639 19.186 13.282 19.3698 13.4658C19.4512 11.9197 18.6863 8.3879 14.976 6.63022C14.1378 6.23326 13.328 6.14574 12.5695 6.2594L12.6392 6.37196C9.47943 8.30415 8.29286 10.3617 7.99192 11.4322C7.96102 11.4541 7.93195 11.4778 7.90215 11.4999C8.20105 11.2812 8.55007 11.0587 8.94624 10.8549C8.93743 10.8594 8.92806 10.8635 8.91931 10.868C10.2383 8.61149 12.1708 7.0186 13.4126 6.22142C13.5682 6.23072 13.7255 6.24871 13.8842 6.27735C12.7777 6.92856 10.814 8.43248 9.41166 10.6339C9.40522 10.6367 9.39874 10.6394 9.39232 10.6422C10.0896 10.338 10.9073 10.1049 11.8313 10.0387C11.8252 10.0391 11.8187 10.0389 11.8126 10.0394C13.3039 8.31361 14.8386 7.45129 15.8274 7.09771C15.9346 7.16457 16.039 7.23287 16.1402 7.3028C15.2704 7.56872 13.7429 8.33658 12.2214 10.02C12.2148 10.0202 12.2081 10.0206 12.2014 10.0207C12.5595 10.013 12.9325 10.0311 13.3194 10.0794C13.6755 10.124 14.0202 10.1946 14.3531 10.2845C15.588 9.04852 16.7454 8.61821 17.5323 8.54023C17.6135 8.63309 17.691 8.72742 17.7657 8.82197C17.1009 8.83239 15.9554 9.14913 14.679 10.3784C14.6553 10.3709 14.6311 10.3649 14.6072 10.3577C14.8811 10.4414 15.1464 10.5376 15.402 10.6443C16.4548 9.78896 17.4921 9.47948 18.187 9.41031C18.247 9.50374 18.3036 9.59815 18.3582 9.69204C17.7598 9.72351 16.7575 9.96991 15.71 10.7796C15.8969 10.8658 16.0772 10.9585 16.2528 11.0531C17.153 10.4554 18.0746 10.3251 18.7028 10.357C18.7494 10.4591 18.793 10.5611 18.834 10.6622C18.2992 10.6075 17.4224 10.681 16.5456 11.2161C16.7148 11.3144 16.8775 11.416 17.0345 11.5185C17.7165 11.2328 18.3049 11.228 18.7622 11.3252C18.8836 11.351 18.9958 11.3851 19.0971 11.4211C19.1317 11.5411 19.1594 11.6601 19.1869 11.7761C19.0542 11.7154 18.8907 11.655 18.7007 11.6145C18.3402 11.5379 17.877 11.5294 17.3328 11.7188C17.6442 11.9361 17.927 12.1555 18.1787 12.3644C18.6068 12.2205 18.9842 12.2091 19.2856 12.2601C19.3032 12.3664 19.3172 12.4699 19.3291 12.5702C19.1016 12.5177 18.8011 12.5025 18.4466 12.5923ZM12.4631 6.27735C9.91579 6.72525 7.96933 9.43603 7.53133 10.3916C7.28566 10.9277 7.08877 11.5129 7.0887 12.1904C7.23925 12.0399 7.42774 11.8697 7.6508 11.6918C7.64495 11.6965 7.63865 11.701 7.63284 11.7056C7.7779 10.6894 8.85734 8.45539 12.1165 6.35193C12.2306 6.32228 12.3465 6.29816 12.4631 6.27735Z" fill="#00D4FF"/>
|
|
9
|
+
<path d="M20.9498 23.4496C20.3497 24.3588 19.5971 25.7766 19.1295 27.6466L19.0577 27.6425C18.8749 26.3626 18.9219 25.5082 19.0771 24.8306C19.1394 24.5586 19.2211 24.3152 19.3098 24.0842C19.4903 23.8842 19.6612 23.6905 19.8111 23.5082C20.0787 23.1829 20.3093 22.8693 20.4312 22.6257C20.4748 22.5385 20.5153 22.4638 20.552 22.4013L20.9498 23.4496Z" fill="#00D4FF"/>
|
|
10
|
+
<path d="M7.09008 34.3068C7.05477 34.4063 7.01754 34.5056 6.98236 34.6024H6.62466C6.62022 34.5045 6.61623 34.4046 6.61361 34.3068H7.09008Z" fill="#00D4FF"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.66987 21.6887C4.50219 21.2123 5.81136 20.6871 7.24752 20.5238C8.95347 20.3298 10.7814 20.6464 12.218 22.083C13.3219 23.1872 13.6844 24.7161 13.7254 26.046C13.7457 26.7056 13.686 27.3 13.608 27.7391C13.569 27.9588 13.5266 28.1351 13.4893 28.257C13.4733 28.3091 13.4581 28.3468 13.4478 28.3717C13.4083 28.4118 13.3697 28.454 13.3291 28.4946C13.2142 28.6094 13.1009 28.7269 12.99 28.8447C13.0173 28.7286 13.042 28.611 13.0604 28.4925C13.2966 27.0807 12.9416 25.45 11.8354 24.4184C10.671 23.2947 8.98428 22.9149 7.48921 23.1644C7.28269 23.1992 7.07668 23.2463 6.87602 23.3135C6.83536 23.3275 6.79986 23.3551 6.77865 23.3929C6.75774 23.4309 6.75152 23.4766 6.76277 23.5179C6.7743 23.5592 6.80273 23.5954 6.84011 23.6174C6.87758 23.639 6.92239 23.6454 6.96441 23.6367C7.1481 23.5998 7.34187 23.5795 7.5341 23.5697C8.94473 23.5027 10.3676 23.9842 11.2809 24.9729C12.1153 25.8473 12.3721 27.1389 12.1752 28.3544C12.0619 29.0768 11.8584 29.7942 11.5806 30.5137C11.2614 30.9298 10.9928 31.3063 10.7907 31.5978C9.97381 32.3158 9.44577 32.7492 9.05396 32.9851L8.14522 33.945C7.55097 34.8001 7.04487 36.3434 6.68681 37.678C6.50789 38.345 6.36656 38.959 6.26973 39.4057C6.22137 39.6288 6.18434 39.8117 6.15924 39.9374C6.14682 39.9996 6.13728 40.0488 6.13093 40.0818C6.12779 40.098 6.12493 40.1113 6.12334 40.1197C6.12264 40.1236 6.12233 40.1274 6.12195 40.1294L6.12126 40.1315L6.04807 40.1301V40.1273C6.04807 40.1273 6.04715 40.1223 6.04669 40.119C6.04567 40.1113 6.0438 40.0988 6.04185 40.0838C6.03789 40.0533 6.03187 40.0072 6.02459 39.9492C6.00994 39.8323 5.98955 39.6619 5.9652 39.4506C5.9164 39.0269 5.85294 38.4347 5.79464 37.7636C5.67855 36.4271 5.5818 34.772 5.66137 33.4968C5.06459 32.8995 4.51188 32.3069 4.01721 31.7076C4.02067 31.6694 4.01267 31.6302 3.99649 31.5958C3.93255 31.4632 3.87113 31.3343 3.81212 31.2112C3.56694 30.7062 3.3256 30.2345 3.09673 29.7652C2.19236 28.1385 2.68835 26.1878 4.19606 24.9411C4.29676 24.8506 4.40433 24.7596 4.50956 24.6746C4.54257 24.6479 4.56659 24.6091 4.57447 24.5668C4.58196 24.5248 4.5734 24.4811 4.5503 24.446C4.52677 24.4108 4.48943 24.3855 4.44741 24.3762C4.40522 24.3671 4.3606 24.3753 4.32311 24.3956C4.19905 24.4633 4.07143 24.5382 3.95023 24.6152C2.80374 25.2108 1.98593 26.5238 1.83374 27.8876C1.80795 27.8037 1.78165 27.7191 1.75847 27.6342C1.46224 26.5475 1.79964 25.2431 2.32885 24.0531C2.72645 23.1591 3.23447 22.3249 3.66987 21.6887ZM6.67231 33.4885L7.34765 33.5327C7.32273 33.6171 7.29246 33.7156 7.25719 33.8221L6.61638 33.782C6.58633 34.3303 6.67489 35.426 6.67576 35.4365C6.67909 35.4278 7.4744 33.3453 7.40842 33.2399C7.33704 33.1454 6.82742 33.3605 6.67576 33.4837C6.67576 33.4837 6.67371 33.487 6.67231 33.4885ZM6.17927 31.9127C6.65064 32.1346 7.09302 32.2635 7.40842 32.2635C8.38496 32.2634 11.3136 30.7977 11.3141 27.869C11.314 24.9396 8.14082 24.2074 6.432 24.9397C6.26513 25.0113 6.10028 25.0984 5.93965 25.2001C8.10379 25.0184 9.44203 25.6854 10.203 26.6737C10.8281 27.4859 11.0467 28.4941 11.033 29.3695C10.9343 29.6214 10.812 29.8562 10.674 30.0752L10.6705 30.0745C10.8434 29.134 10.7205 27.8306 9.96892 26.8539C9.23117 25.8958 7.86175 25.2184 5.47009 25.5467C5.09407 25.8622 4.75066 26.246 4.46744 26.6626C5.55707 26.2817 6.95355 26.1649 8.06788 26.675C8.70816 26.9684 9.25201 27.4687 9.58429 28.2356C9.88836 28.9378 10.0083 29.8548 9.87777 31.0289C9.77165 31.1271 9.66249 31.2192 9.55253 31.3058L9.54907 31.3051C9.73553 30.0127 9.61647 29.0524 9.3136 28.353C9.01199 27.6569 8.52314 27.2078 7.94496 26.943C6.80016 26.419 5.29319 26.6098 4.21263 27.079C4.04956 27.3702 3.91576 27.6692 3.8204 27.9656C4.85905 27.5463 6.15237 27.3849 7.15292 27.8524C7.71589 28.1157 8.17891 28.576 8.44422 29.2846C8.68948 29.9399 8.76094 30.7998 8.60028 31.9044C8.49094 31.9582 8.38386 32.0058 8.28056 32.0474C8.4736 30.8819 8.40402 30.0162 8.1687 29.3875C7.93072 28.7521 7.52167 28.3505 7.02793 28.1196C6.06403 27.6693 4.75063 27.8608 3.72166 28.3296C3.64022 28.7061 3.62751 29.069 3.69749 29.3937C4.4636 29.0388 5.09528 28.9222 5.61096 28.9897C6.16934 29.0631 6.57605 29.35 6.85323 29.7458C7.332 30.4301 7.42494 31.4363 7.31382 32.2559C7.22438 32.2495 7.12643 32.2362 7.02241 32.2131C7.12704 31.4394 7.03254 30.5159 6.61154 29.9143C6.37714 29.5797 6.04129 29.3434 5.57298 29.2818C5.12302 29.2229 4.53597 29.3248 3.78312 29.6795C3.89985 29.9789 4.08788 30.2656 4.31828 30.5337C4.71496 30.3028 5.05461 30.2303 5.34027 30.299C5.64577 30.3729 5.85044 30.5985 5.98039 30.8631C6.10984 31.1271 6.17347 31.4456 6.19308 31.7456C6.19694 31.8047 6.19728 31.8636 6.19791 31.9217C6.19167 31.9188 6.18552 31.9157 6.17927 31.9127ZM4.52337 30.7554C4.92359 31.1605 5.41468 31.5105 5.89753 31.7705L5.89891 31.765C5.88082 31.4882 5.82287 31.2102 5.71592 30.9923C5.60938 30.7755 5.46223 30.6318 5.27053 30.5855C5.09617 30.5438 4.85356 30.5746 4.52337 30.7554ZM12.082 23.9343C12.3934 24.2129 12.6356 24.4766 12.7973 24.6787C12.8343 24.4937 12.8291 24.2453 12.7642 23.9619C12.6344 23.9471 12.4812 23.9325 12.3271 23.9295C12.2426 23.9278 12.1598 23.9299 12.082 23.9343ZM7.02724 22.324C7.22657 22.2959 7.43463 22.271 7.65218 22.2542C8.02714 22.2254 8.38912 22.2413 8.73632 22.2901C8.72697 22.2888 8.71737 22.2866 8.708 22.2853C9.14327 22.0544 9.66526 21.8811 10.1126 21.7591C10.3013 21.7076 10.4798 21.6646 10.6346 21.6293C10.7765 21.6985 10.9098 21.7708 11.0351 21.8448C11.001 21.8516 10.9628 21.8591 10.9225 21.8675C10.7306 21.9079 10.4724 21.9666 10.1899 22.0436C9.87024 22.1308 9.52422 22.242 9.20519 22.3765C9.4058 22.4235 9.60029 22.482 9.78869 22.5484C10.403 22.3135 11.0703 22.2103 11.5281 22.1748C11.647 22.266 11.7565 22.3589 11.8561 22.4531C11.5198 22.4565 10.8574 22.5183 10.2092 22.7148C10.4268 22.8104 10.6335 22.9178 10.83 23.0304C11.0869 22.969 11.376 22.9356 11.6497 22.922C11.8675 22.9111 12.0817 22.9116 12.2691 22.9171C12.3459 23.0201 12.414 23.1227 12.4728 23.2244C12.2528 23.2109 11.9624 23.2006 11.6642 23.2155C11.5081 23.2233 11.3526 23.2396 11.205 23.2603C11.2005 23.2574 11.1957 23.255 11.1912 23.2521C11.4013 23.3899 11.5966 23.5323 11.7747 23.6754C11.9488 23.6409 12.1483 23.631 12.3333 23.6346C12.4507 23.637 12.5679 23.645 12.6751 23.6546C12.6815 23.6718 12.6866 23.6894 12.6924 23.7064C12.4258 22.9369 11.6944 21.9975 10.0594 21.3814C9.93522 21.4067 9.77179 21.446 9.57255 21.5133C9.20346 21.638 8.70552 21.8557 8.0879 22.2397C7.94477 22.2382 7.79937 22.2429 7.65218 22.2542C7.60413 22.2579 7.5557 22.2638 7.50855 22.268C8.34088 21.6967 9.00207 21.3944 9.47795 21.2336C9.50311 21.2251 9.5291 21.2185 9.55322 21.2108C9.7183 21.2607 9.87572 21.3141 10.0255 21.3697C9.6952 21.247 9.32863 21.1376 8.92207 21.0451C8.4799 21.2365 7.76666 21.6483 7.09008 22.3136C7.06895 22.3165 7.04816 22.321 7.02724 22.324ZM8.4387 20.9526C8.1118 20.9018 7.80381 20.8796 7.51338 20.8821C7.61741 20.8817 7.72372 20.8835 7.83241 20.8891C7.4387 21.1966 6.80393 21.761 6.2062 22.478C6.33891 22.4461 6.47677 22.4171 6.61983 22.3903C6.61443 22.3913 6.60864 22.392 6.60326 22.393C7.22416 21.7045 7.9125 21.2335 8.4387 20.9526ZM7.00446 20.9132C6.59342 21.283 5.90132 21.9754 5.30989 22.75C5.11531 22.8242 4.93693 22.904 4.77403 22.9848C5.29955 22.2174 5.97182 21.4938 6.47136 21.0085C6.24096 21.0648 6.02546 21.1373 5.82433 21.2247C5.95282 21.169 6.08724 21.1191 6.22761 21.0755C5.91307 21.3588 5.44335 21.8131 5.00674 22.3046C4.71085 22.6378 4.43621 22.9821 4.23265 23.2969C4.22657 23.301 4.22071 23.3053 4.2147 23.3094C4.58098 23.0632 5.0796 22.8106 5.72421 22.6106C6.28351 21.8827 6.90891 21.2779 7.37251 20.8835C7.24629 20.8882 7.12376 20.8994 7.00446 20.9132ZM5.4404 21.418C4.28684 22.0791 3.69108 23.2068 3.50207 23.9626C3.55787 23.8789 3.64245 23.7796 3.75618 23.6712C3.74618 23.6807 3.73603 23.6901 3.72649 23.6995L3.69127 23.685C3.87892 23.2104 4.32311 22.6309 4.78646 22.1092C5.00389 21.8644 5.22967 21.6288 5.4404 21.418Z" fill="#00D4FF"/>
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.61638 14.5216C7.59489 13.4193 8.97348 12.2746 10.6477 11.9252C12.3767 11.5646 13.6507 11.7601 14.639 12.1476C15.6413 12.5407 16.3724 13.1361 17.0379 13.6419C18.1797 14.51 18.3675 15.711 18.1994 16.5518C18.0721 17.1885 18.0256 17.7701 18.1697 18.3382C18.3156 18.9129 18.6431 19.4248 19.1689 19.9506C19.5304 20.3122 19.8341 20.7225 20.0452 21.0769C20.1148 21.1938 20.1709 21.3036 20.2171 21.3994C20.0208 21.5592 19.8283 21.8292 19.6302 22.2252C19.5567 22.372 19.3831 22.62 19.1199 22.9399C18.8633 23.2518 18.5414 23.6095 18.1946 23.9702C17.4955 24.6971 16.7172 25.4129 16.181 25.796C15.5415 26.2528 15.054 26.7129 14.5803 27.1978C14.6138 26.8407 14.6334 26.4414 14.6204 26.0183C14.5758 24.574 14.1824 22.7799 12.8519 21.4491C11.1638 19.7609 9.02838 19.4196 7.14602 19.6337C6.06978 19.7561 5.05785 20.0609 4.22644 20.414L4.68702 18.3403C4.78336 17.8448 4.85644 17.3269 4.92526 16.7942C5.00478 16.754 5.07424 16.6901 5.1193 16.6057V16.6043C5.1193 16.6043 5.12188 16.6002 5.12344 16.5974C5.12701 16.5908 5.13317 16.5798 5.14071 16.5663C5.15623 16.5385 5.18012 16.4954 5.21183 16.4413C5.27582 16.3323 5.37295 16.1737 5.49978 15.9807C5.75458 15.5932 6.13153 15.068 6.61638 14.5216ZM18.1497 20.057C18.1105 20.2521 17.9976 20.482 17.8369 20.733C18.0416 21.0275 18.225 21.4413 18.3734 21.8454C18.4779 22.1302 18.567 22.4176 18.6379 22.6665C18.5657 22.7492 18.4865 22.8348 18.4038 22.9241C18.3299 22.6472 18.2242 22.2949 18.0965 21.9469C17.9652 21.5895 17.8135 21.2484 17.6559 20.9954C17.5554 21.1331 17.4447 21.2758 17.3245 21.4194C17.5597 21.7891 17.7122 22.2665 17.8058 22.7141C17.8584 22.9661 17.8935 23.2127 17.9163 23.4309C17.828 23.5196 17.7369 23.6095 17.6442 23.7002C17.6267 23.444 17.5875 23.1143 17.5165 22.7742C17.4324 22.3722 17.3044 21.9682 17.1228 21.6528C17.0013 21.7902 16.8728 21.927 16.7424 22.0637C17.0029 22.373 17.1408 22.8616 17.2105 23.3273C17.2479 23.5768 17.2673 23.8285 17.2755 24.0565C17.1793 24.1481 17.0827 24.2404 16.9854 24.3314C16.9865 24.0549 16.9699 23.7106 16.9191 23.3715C16.8524 22.9257 16.7279 22.5207 16.5352 22.2763C16.4537 22.359 16.3735 22.4424 16.2914 22.5229C16.579 23.0747 16.6173 23.7235 16.5877 24.2499C16.5776 24.429 16.558 24.5963 16.5387 24.7436C16.4224 24.8499 16.308 24.9552 16.1955 25.0564C16.2002 25.0263 16.2055 24.9944 16.2107 24.9611C16.2406 24.7694 16.2769 24.5153 16.2928 24.2326C16.3199 23.7499 16.2821 23.2028 16.0663 22.7383C15.9432 22.8557 15.8219 22.9694 15.7038 23.0774L15.7494 23.0594C15.9622 23.6 15.9453 24.3098 15.8889 24.87C15.8696 25.0609 15.8444 25.2376 15.8219 25.3886C15.7014 25.4952 15.5856 25.5961 15.4773 25.6903C15.4839 25.6469 15.4923 25.597 15.5008 25.5426C15.5294 25.3601 15.5677 25.1147 15.5954 24.8403C15.6479 24.3187 15.6551 23.7185 15.5035 23.2583C15.309 23.4322 15.1304 23.5895 14.976 23.7182L15.2204 25.9154C16.3596 24.939 18.7349 22.7912 19.1261 22.0098C19.5164 21.2288 18.638 20.3826 18.1497 20.057ZM17.4177 15.9068C17.692 13.8763 10.6222 10.3235 7.23993 14.9864C8.30251 14.414 9.75806 13.8627 11.3603 13.6654C13.1751 13.4421 15.1849 13.6741 17.022 14.8469C17.1811 15.0466 17.2972 15.2463 17.3625 15.44C15.4656 14.0124 13.3266 13.7206 11.3963 13.9582C9.56523 14.1837 7.92939 14.8841 6.8843 15.5312C6.78232 15.7049 6.68562 15.8882 6.5929 16.0809C7.71172 15.5199 9.33612 14.9592 11.1373 14.8151C13.1425 14.6549 15.3751 15.0109 17.3687 16.4627C17.3602 16.578 17.3525 16.6964 17.3445 16.817C15.3826 15.3213 13.1647 14.9484 11.1601 15.1086C9.21316 15.2644 7.47768 15.9218 6.3961 16.5194C6.3474 16.6373 6.29984 16.7588 6.25454 16.8833L6.24142 16.9268C8.37908 15.7976 12.9673 14.7078 17.2637 18.0344C17.2555 18.1534 17.2472 18.2718 17.2382 18.3886C12.8341 14.8615 8.08314 16.1823 6.12748 17.328L6.0819 17.4868C8.15012 16.5062 12.6647 15.968 17.089 19.7255C17.0686 19.8441 17.0457 19.9541 17.0213 20.0542C12.4663 16.1004 7.82039 16.8662 5.97211 17.8742L5.91203 18.0848C8.11975 17.1296 12.7918 16.6051 16.3633 21.1832C16.2996 21.2577 16.2331 21.3329 16.1651 21.4076C12.5664 16.7526 7.81949 17.4809 5.80569 18.4591L5.70004 18.8299C6.70325 18.3141 8.23372 17.9016 9.91299 18.1635C11.7516 18.4506 13.7505 19.546 15.4241 22.161C15.3481 22.2338 15.2749 22.3026 15.2066 22.3661C13.568 19.7814 11.6257 18.7294 9.86741 18.4549C8.53329 18.2469 7.29577 18.4831 6.36778 18.8499C6.16377 18.858 5.98826 18.8617 5.8485 18.8527C6.86013 18.9254 9.74716 18.3578 11.803 19.5688C13.9534 20.8358 14.7151 22.7697 14.7274 22.8011C14.755 22.7773 16.6327 21.1547 16.9426 20.3249C17.2539 19.4892 17.2827 17.2744 17.4177 15.9068Z" fill="#00D4FF"/>
|
|
13
|
+
<path d="M1.82545 29.0712C1.85684 29.1262 1.88619 29.1862 1.9166 29.248C1.97786 29.4931 2.06635 29.7328 2.18315 29.962C2.3151 30.4527 2.37534 31.0283 2.26947 31.6227C2.08803 32.64 1.42872 33.7076 -0.142569 34.4933L-0.188835 34.4387C0.216759 33.8709 0.800985 32.9201 1.23505 31.9183C1.45184 31.4177 1.63099 30.9045 1.73154 30.4205C1.83206 29.9361 1.85328 29.4817 1.75778 29.0988L1.82545 29.0712Z" fill="#00D4FF"/>
|
|
14
|
+
<path d="M26.5231 3.99928C27.66 3.51202 30.3227 2.04983 31.8796 0.103981L31.9424 0.14196C31.6152 0.877875 30.9526 1.9565 30.0289 2.80259C29.105 3.64877 27.9138 4.26628 26.5321 4.06903L26.4022 4.05107L26.5231 3.99928Z" fill="#00D4FF"/>
|
|
15
|
+
<path d="M92.2735 29.5387V10.4049H97.8776C99.1177 10.4049 100.191 10.6408 101.097 11.1126C102.003 11.5844 102.703 12.2571 103.196 13.1308C103.704 14.0045 103.959 15.0354 103.959 16.2237C103.959 17.4643 103.68 18.5739 103.124 19.5524C102.583 20.5309 101.844 21.2386 100.906 21.6755L104.197 29.5387H100.31L97.496 22.3045H95.8267V29.5387H92.2735ZM95.8267 18.8971H97.8776C98.6725 18.8971 99.2846 18.6787 99.7138 18.2419C100.159 17.805 100.382 17.1935 100.382 16.4071C100.382 15.5859 100.159 14.9481 99.7138 14.4938C99.2846 14.0394 98.6725 13.8123 97.8776 13.8123H95.8267V18.8971Z" fill="white"/>
|
|
16
|
+
<path d="M75.542 29.5387V10.4049H81.1938C82.402 10.4049 83.4513 10.6583 84.3416 11.165C85.2478 11.6718 85.9474 12.3882 86.4402 13.3143C86.9489 14.2229 87.2033 15.2976 87.2033 16.5382V23.3792C87.2033 24.6023 86.9489 25.677 86.4402 26.6031C85.9474 27.5292 85.2478 28.2543 84.3416 28.7785C83.4513 29.2853 82.402 29.5387 81.1938 29.5387H75.542ZM79.1191 25.8692H81.1938C81.9251 25.8692 82.5133 25.642 82.9585 25.1877C83.4036 24.7334 83.6262 24.1305 83.6262 23.3792V16.5382C83.6262 15.8043 83.4036 15.2102 82.9585 14.7559C82.5133 14.3016 81.9251 14.0744 81.1938 14.0744H79.1191V25.8692Z" fill="white"/>
|
|
17
|
+
<path d="M58.9058 29.5387V10.4049H64.5099C65.75 10.4049 66.8231 10.6408 67.7293 11.1126C68.6355 11.5844 69.335 12.2571 69.8279 13.1308C70.3366 14.0045 70.591 15.0354 70.591 16.2237C70.591 17.4643 70.3128 18.5739 69.7563 19.5524C69.2158 20.5309 68.4765 21.2386 67.5385 21.6755L70.8295 29.5387H66.9423L64.1284 22.3045H62.459V29.5387H58.9058ZM62.459 18.8971H64.5099C65.3048 18.8971 65.9169 18.6787 66.3462 18.2419C66.7913 17.805 67.0139 17.1935 67.0139 16.4071C67.0139 15.5859 66.7913 14.9481 66.3462 14.4938C65.9169 14.0394 65.3048 13.8123 64.5099 13.8123H62.459V18.8971Z" fill="white"/>
|
|
18
|
+
<path d="M46.0375 29.5387V14.0744H41.6258V10.4049H54.0264V14.0744H49.6146V29.5387H46.0375Z" fill="white"/>
|
|
19
|
+
</g>
|
|
20
|
+
<defs>
|
|
21
|
+
<clipPath id="clip0_2475_3136">
|
|
22
|
+
<rect width="104.276" height="40.2147" fill="white"/>
|
|
23
|
+
</clipPath>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* SNAPSHOT — TRDR Design Tokens
|
|
3
|
-
* Sincronizado de:
|
|
4
|
-
* Em: 2026-05-
|
|
3
|
+
* Sincronizado de: ../trdr-design-hub
|
|
4
|
+
* Em: 2026-05-13T02:02:58.316Z
|
|
5
5
|
* Não edite manualmente — atualize via "npm run sync-tokens"
|
|
6
6
|
*/
|
|
7
7
|
|