trdr-ds-install 1.3.1 → 1.4.1

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/README.md CHANGED
@@ -43,9 +43,23 @@ The skill is **offline-first**: it ships with a snapshot of the catalog (`data/c
43
43
  |---------|-----------|
44
44
  | `/trdr-ds` *(default = analyze)* | Scan + plan, no changes |
45
45
  | `/trdr-ds apply` | Scan + plan + execute after approval |
46
+ | `/trdr-ds apply batch 15` | Same as apply, but process violations in batches of 15 files (default: 25) |
47
+ | `/trdr-ds resume` | Continue a batched migration from the last checkpoint (`DS_PROGRESS.md`) |
48
+ | `/trdr-ds status` | Show migration progress from `DS_PROGRESS.md` — no files modified |
46
49
  | `/trdr-ds sync` | Refresh local snapshot from the Hub (no project changes) |
47
50
  | `/trdr-ds apply --latest` | Sync first, then apply |
48
51
 
52
+ **Large project support:**
53
+
54
+ For projects with more than 50 violations or 30 affected files, Phase 2 switches automatically to **batched mode**:
55
+ - Violations are processed folder by folder (e.g. `src/components/`, `src/pages/`, `src/app/`)
56
+ - Progress is saved to `DS_PROGRESS.md` after each batch — safe to stop and resume across sessions
57
+ - After each batch the dev chooses: `"continuar"` / `"pular [pasta]"` / `"parar"` / `"tudo"`
58
+
59
+ **Logo audit:**
60
+
61
+ Phase 1 automatically scans for logo files (`logo*.svg`, `*trdr*.svg`, `brand*.svg`) and checks each against the official TRDR logo fingerprint (`viewBox="0 0 105 41"`, `fill="#00D4FF"`). Wrong logos are replaced in Phase 2 without changing the filename or path.
62
+
49
63
  The skill matches detected UI patterns against the catalog. Implemented components (`implemented: true`) are applied with full code; stubs (`implemented: false`) get tokens + a banner comment + an entry in `MISSING_COMPONENTS.md` for the maintainer to revisit.
50
64
 
51
65
  ## For maintainers (Mauro)
@@ -98,7 +112,8 @@ trdr-plugins/
98
112
  ├── bin/install.js ← copies skill to ~/.claude/skills
99
113
  ├── scripts/
100
114
  │ ├── sync-components.js ← pull /components.json from Hub
101
- └── sync-tokens.js ← pull /tokens.css from Hub
115
+ ├── sync-tokens.js ← pull /tokens.css from Hub
116
+ │ └── sync-version.js ← syncs Skill version constant on npm version
102
117
  └── plugins/trdr-design-system/
103
118
  ├── .claude-plugin/plugin.json
104
119
  └── skills/trdr-ds/
@@ -107,5 +122,6 @@ trdr-plugins/
107
122
  │ └── components.json ← snapshot of /components.json
108
123
  └── references/
109
124
  ├── rules.md ← absolute design rules (PT-BR)
110
- └── tokens.css ← snapshot of /tokens.css
125
+ ├── tokens.css ← snapshot of /tokens.css
126
+ └── logo-trdr.svg ← official TRDR logo (105×41px)
111
127
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trdr-ds-install",
3
- "version": "1.3.1",
3
+ "version": "1.4.1",
4
4
  "description": "Installs the TRDR Design System skill for Claude Code",
5
5
  "bin": {
6
6
  "trdr-ds-install": "./bin/install.js"
@@ -10,6 +10,7 @@
10
10
  "sync-tokens": "node scripts/sync-tokens.js",
11
11
  "sync": "node scripts/sync-tokens.js && node scripts/sync-components.js",
12
12
  "sync:local": "node scripts/sync-tokens.js --local ../trdr-design-hub && node scripts/sync-components.js --local ../trdr-design-hub",
13
+ "version": "node scripts/sync-version.js",
13
14
  "postpublish": "node bin/install.js"
14
15
  },
15
16
  "files": [
@@ -6,7 +6,7 @@ argument-hint: "[analyze|apply|resume|status|sync|batch N]"
6
6
  allowed-tools: [Read, Glob, Grep, Edit, Write, Bash, WebFetch]
7
7
  ---
8
8
 
9
- **Skill version:** 1.3.0
9
+ **Skill version:** 1.4.1
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**.
@@ -55,7 +55,7 @@ Compare the result with the **Skill version** constant at the top of this file (
55
55
  - If registry version == local version: skip silently, continue.
56
56
  - If registry version > local version:
57
57
  ```
58
- 🔄 Nova versão da skill disponível: trdr-ds-install@[registry-version] (instalada: 1.3.0)
58
+ 🔄 Nova versão da skill disponível: trdr-ds-install@[registry-version] (instalada: 1.4.1)
59
59
 
60
60
  Responda:
61
61
  - `"atualizar"` / `"update"` — instalar a nova versão agora (requer reiniciar /trdr-ds após)
@@ -188,6 +188,33 @@ Use Grep (not Bash grep) to search for the patterns below. Group patterns from t
188
188
 
189
189
  **Output:** `replacementCandidates[]` — passed to Step 5 template and Phase 2 Step 6.
190
190
 
191
+ ### Step 3.6 — Logo audit
192
+
193
+ Glob for logo files across the project:
194
+
195
+ ```
196
+ Patterns: ["**/logo*.svg", "**/*trdr*.svg", "**/brand*.svg", "**/icon-trdr*.svg"]
197
+ Exclude: node_modules/, .next/, dist/, build/, out/, references/
198
+ ```
199
+
200
+ The official TRDR logo fingerprint (both must be present):
201
+ - `viewBox="0 0 105 41"` — exact dimensions of the reference logo
202
+ - `fill="#00D4FF"` — brand cyan used in the symbol paths
203
+
204
+ For each found SVG file:
205
+ 1. Read its content.
206
+ 2. Check for both fingerprint markers.
207
+ 3. Classify:
208
+ - ✅ **CORRECT** — contains both markers → already the official logo
209
+ - ❌ **WRONG** — SVG file exists but doesn't match (different viewBox, colors, or both)
210
+ - ⚠️ **UNKNOWN** — binary or unusually formatted SVG, can't determine
211
+
212
+ Store result as `logoAudit = { correct: string[], wrong: string[], unknown: string[] }`.
213
+
214
+ If no logo files are found at all, check if a `public/` directory exists at the project root — flag it as a suggested location to add the logo.
215
+
216
+ Include logo findings in the migration plan (Step 5 below).
217
+
191
218
  ### Step 4 — Load component catalog (offline-first)
192
219
 
193
220
  Read the local snapshot from the skill directory:
@@ -312,8 +339,25 @@ Progress saved to `DS_PROGRESS.md` — resumable anytime with `/trdr-ds resume`.
312
339
  To change batch size: reply with `"Apply, batch 15"` or `"Apply, batch 40"`.
313
340
  [END large project block]
314
341
 
342
+ ### LOGOS:
343
+ [If logoAudit.correct.length > 0:]
344
+ | ✅ [file] | Official TRDR logo — no action needed |
345
+
346
+ [If logoAudit.wrong.length > 0:]
347
+ | ❌ [file] | Wrong logo — will be replaced with the official TRDR logo |
348
+
349
+ [If logoAudit.unknown.length > 0:]
350
+ | ⚠️ [file] | Could not verify — manual check recommended |
351
+
352
+ [If no logo files found AND public/ exists:]
353
+ > ℹ️ No logo file detected. The official TRDR logo will be copied to `public/logo-trdr.svg`.
354
+
355
+ [If no logo files found AND no public/ exists:]
356
+ > ℹ️ No logo file detected. Specify a path to add the official TRDR logo, or skip.
357
+
315
358
  ### WHAT WILL NOT BE TOUCHED:
316
- - Images, SVGs, fonts files
359
+ - Correct TRDR logo files (already match the official reference)
360
+ - Images, fonts, non-SVG assets
317
361
  - node_modules/, .next/, dist/, build/, out/
318
362
  - Third-party library files
319
363
  - Any file you explicitly exclude
@@ -366,6 +410,7 @@ Status: IN_PROGRESS
366
410
  - [ ] components.css
367
411
  - [ ] CLAUDE.md
368
412
  - [ ] @import no CSS global
413
+ - [ ] logos
369
414
 
370
415
  ## Lotes de Violações
371
416
  Total de arquivos com violações: [total_files_with_violations]
@@ -531,7 +576,7 @@ bg.primary (base) → bg.secondary/tertiary (content areas) → surface.* (cards
531
576
 
532
577
  Then output:
533
578
  ```
534
- ✅ Foundation complete — tokens.css, components.css, CLAUDE.md, @import all done.
579
+ ✅ Foundation complete — tokens.css, components.css, CLAUDE.md, @import, logos all done.
535
580
  Starting violation processing in [N] batches of up to [batch_size] files each.
536
581
  ```
537
582
 
@@ -686,6 +731,36 @@ Use the `replacementCandidates[]` list built in Phase 1 Step 3.5. For each entry
686
731
  4. **If no slug matches** the detected pattern:
687
732
  - Flag the pattern in `MISSING_COMPONENTS.md` under "Unmapped patterns" with the file location and a one-line description of the UI need.
688
733
 
734
+ ### Step 6.5 — Replace wrong logos
735
+
736
+ Load the official TRDR logo from the skill directory:
737
+ ```
738
+ Read: <skill-dir>/references/logo-trdr.svg
739
+ ```
740
+
741
+ Where `<skill-dir>` is `~/.claude/skills/trdr-ds/` or `<project>/.claude/skills/trdr-ds/`. Try both.
742
+
743
+ If `references/logo-trdr.svg` is missing from the skill directory → STOP with:
744
+ > ❌ Logo reference missing. Run `npx trdr-ds-install@latest` to restore it.
745
+
746
+ **For each file in `logoAudit.wrong`:**
747
+ - Overwrite the file in place with the official logo content (same path, same filename).
748
+ - Report: `✅ Replaced [path] with official TRDR logo (105×41px, #00D4FF)`
749
+
750
+ **If no logo files were found AND `public/` exists at the project root:**
751
+ - Write the official logo to `public/logo-trdr.svg`.
752
+ - Report: `✅ Added official TRDR logo → public/logo-trdr.svg`
753
+
754
+ **If no logo files found AND no `public/` exists:**
755
+ - Do nothing. Log in DS_MIGRATION.md under "Manual steps": "Add logo-trdr.svg to your assets directory. Reference: <skill-dir>/references/logo-trdr.svg"
756
+
757
+ **Never modify correct logos** (`logoAudit.correct`) — they already match the official reference.
758
+
759
+ **For BATCHED mode:** Logo replacement always runs as part of the Foundation phase (before batched violation processing), regardless of project size. Update `DS_PROGRESS.md` after this step:
760
+ ```
761
+ - [x] logos — [N] replaced, [M] already correct
762
+ ```
763
+
689
764
  ### Step 7 — Generate DS_MIGRATION.md
690
765
 
691
766
  Create `DS_MIGRATION.md` at the project root:
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "version": "1.0",
3
- "generatedAt": "2026-05-12T15:34:28.515Z",
4
- "total": 17,
5
- "implemented": 17,
3
+ "generatedAt": "2026-05-12T20:17:42.750Z",
4
+ "total": 18,
5
+ "implemented": 18,
6
6
  "categories": {
7
7
  "formulario": "Formulário / Controles",
8
8
  "modal": "Modais / Overlays",
@@ -1722,6 +1722,127 @@
1722
1722
  "react": "import Janela from '@/components/ui/Janela'\nimport Boleta from '@/components/ui/Boleta'\n\n// Versão default — slot vazio mostra \"Componente coringa\"\n<Janela />\n\n// Com tabs/ferramentas customizadas e callback\n<Janela\n tools={[\n { label: 'Book', icon: 'view_list' },\n { label: 'Gráfico', icon: 'show_chart' },\n ]}\n tabs={['Mercado', 'Posições', 'Histórico']}\n activeTab={0}\n onTabChange={(i) => console.log('tab', i)}\n/>\n\n// Com conteúdo customizado no slot\n<Janela activeTab={2} showSideScroll showBottomScroll>\n <Boleta versao=\"simples\" />\n</Janela>\n\n// Com floating menu de ações aberto\n<Janela\n showActionsMenu\n onActionsMenuToggle={() => setMenuOpen(v => !v)}\n actions={[\n { icon: 'close', label: 'Fechar', onClick: handleClose },\n { icon: 'remove', label: 'Minimizar' },\n { icon: 'arrow_outward', label: 'Maximizar' },\n ]}\n/>",
1723
1723
  "prompt": "Implemente o componente Janela do Design System TRDR — janela de ferramenta de trading composta, pixel-perfect com o Figma 1909:41600.\n\nDIMENSÕES (fixas): 476×312 px, border-radius var(--radius-md) (8px), border 1px solid var(--border-subtle), background var(--bg-secondary), overflow hidden, position relative, font-family var(--font-secondary). Layout em coluna com 3 faixas:\n\n1. HEADER (height 41px, bg var(--bg-secondary), border-bottom 1px var(--border-subtle), padding 0 8px, gap 8px):\n - Tag AI: padding 2px 4px, gap 2px, bg var(--bg-brand) #00D4FF, border-radius var(--radius-sm) 4px, texto \"AI\" Inter 11/600 var(--content-primary). Ícone Material \"auto_awesome\" 12px à esquerda.\n - Abas Ferramentas (flex:1, height 100%, overflow hidden): 3 botões \"Ferramenta N\", padding 0 12px, font Inter 14/16.8 var(--content-tertiary); ativa muda para var(--content-primary) e ganha ::after com height 2px var(--bg-brand) (#00D4FF) no bottom 0 left/right 0. Botão chevron 40×40 com ícone Material \"keyboard_arrow_down\" tertiary.\n - Controles à direita (gap 8px): divider vertical 1×33 var(--border-subtle); botão ícone \"link\" 24×24 cor var(--bg-brand) (cyan); botão \"Multi\" 33h padding 0 8px gap 4 bg var(--action-secondary-default) (#4A4A4A) radius var(--radius-lg) (16px) texto primary + chevron 16px; botões ícone \"more_horiz\" e \"close\" 24×24 tertiary.\n\n2. PILL TABS (height 45px, bg var(--bg-tertiary) #1A1A1A, padding 8px, gap 8px, border-bottom subtle, overflow hidden):\n - 5 pills \"Aba 1..Aba 5\". Cada pill 31h padding 8px 12px radius var(--radius-lg) Inter 14/16.8 whitespace nowrap.\n - Ativa: bg var(--action-secondary-default) #4A4A4A, texto var(--content-primary).\n - Inativa: bg var(--surface-secondary) #222222, texto var(--content-tertiary). Hover muda texto para var(--content-secondary).\n\n3. CONTAINER CENTRAL (flex 1, bg var(--bg-tertiary), padding 16px, gap 8px, position relative, overflow hidden):\n - Slot via children. Quando vazio mostrar fallback \"Componente coringa\" centralizado, Inter 14/16.8 var(--content-primary).\n - Scrollbars opcionais (controlados por props showSideScroll/showBottomScroll):\n • Lateral (right 0, top 0, bottom 6px, width 14px, bg var(--bg-secondary), border-left subtle): seta cima 12×12 Material \"arrow_drop_up\", track 6px com thumb radius 16 bg var(--action-secondary-default) 60% de altura, seta baixo \"arrow_drop_down\".\n • Inferior (left 0, right 14px, height 14px, bg var(--bg-secondary), border-top subtle): seta esquerda \"arrow_left\", track horizontal com thumb radius 16, seta direita \"arrow_right\".\n • Canto: quando ambos ativos, 14×14 no canto inferior direito com bg secondary e borders.\n\n4. FLOATING ACTIONS MENU (opcional, posição absoluta top 45px right 40px, width 172px):\n - bg var(--bg-secondary), border 1px var(--border-subtle), border-radius var(--radius-md) (8px), box-shadow 0 4px 12px rgba(0,0,0,0.30), padding 8px, gap 4px, z-index 10.\n - 5 ações: { close: Fechar, remove: Minimizar, arrow_outward: Maximizar, keep: Fixar, edit: Renomear aba }. Cada item: height 32px, padding 0 8px, gap 8px, border-radius var(--radius-sm), ícone Material 20px var(--content-tertiary), label Inter 14/16.8 var(--content-secondary). Hover bg var(--surface-secondary).\n\nAPI React (TypeScript): props { tools?: JanelaTool[]; activeTool?: number; onToolChange?; tabs?: string[]; activeTab?: number; onTabChange?; multiLabel?: string; onMultiClick?; onLinkClick?; onClose?; showSideScroll?: boolean; showBottomScroll?: boolean; showActionsMenu?: boolean; onActionsMenuToggle?; actions?: JanelaAction[]; children?: ReactNode }. Suporta estado controlado E não-controlado (defaultActiveTool/defaultActiveTab). aria-selected nas pills, aria-expanded no botão de menu, role=\"tab\"/\"tablist\"/\"menu\"/\"menuitem\".\n\nUse APENAS tokens semânticos do TRDR (var(--bg-*), var(--surface-*), var(--content-*), var(--action-*), var(--border-*), var(--radius-*), var(--spacing-*)). NUNCA hex direto. NUNCA --scale-spacing-* ou --scale-radius-* (não existem). O componente deve funcionar nos dois temas (light e dark) sem alterações."
1724
1724
  }
1725
+ },
1726
+ {
1727
+ "slug": "news-card",
1728
+ "name": "News Card",
1729
+ "figmaId": "66:2373",
1730
+ "category": "trading",
1731
+ "description": "Card de notícia financeira — exibe título, fonte, tempo e indicador de sentimento (alta/baixa/neutro). Usado em feeds de notícias dentro do contexto de trading.",
1732
+ "implemented": true,
1733
+ "props": [
1734
+ {
1735
+ "name": "sentiment",
1736
+ "type": "enum",
1737
+ "values": [
1738
+ "up",
1739
+ "down",
1740
+ "neutral"
1741
+ ]
1742
+ },
1743
+ {
1744
+ "name": "title",
1745
+ "type": "string",
1746
+ "values": []
1747
+ },
1748
+ {
1749
+ "name": "source",
1750
+ "type": "string",
1751
+ "values": []
1752
+ },
1753
+ {
1754
+ "name": "time",
1755
+ "type": "string",
1756
+ "values": []
1757
+ },
1758
+ {
1759
+ "name": "href",
1760
+ "type": "string",
1761
+ "values": []
1762
+ }
1763
+ ],
1764
+ "dimensions": [
1765
+ {
1766
+ "label": "Default",
1767
+ "width": "100%",
1768
+ "height": "74px"
1769
+ },
1770
+ {
1771
+ "label": "Dot indicador",
1772
+ "width": "4px",
1773
+ "height": "4px"
1774
+ },
1775
+ {
1776
+ "label": "Botão de ação",
1777
+ "width": "20px",
1778
+ "height": "20px"
1779
+ }
1780
+ ],
1781
+ "tokens": [
1782
+ {
1783
+ "property": "Border bottom",
1784
+ "token": "border.subtle",
1785
+ "value": "#222222"
1786
+ },
1787
+ {
1788
+ "property": "Dot — alta",
1789
+ "token": "context.trading.up",
1790
+ "value": "#4FE290"
1791
+ },
1792
+ {
1793
+ "property": "Dot — baixa",
1794
+ "token": "context.trading.down",
1795
+ "value": "#F34F45"
1796
+ },
1797
+ {
1798
+ "property": "Dot — neutro",
1799
+ "token": "content.tertiary",
1800
+ "value": "#A4A4A4"
1801
+ },
1802
+ {
1803
+ "property": "Título",
1804
+ "token": "content.primary",
1805
+ "value": "#FFFFFF"
1806
+ },
1807
+ {
1808
+ "property": "Fonte / Tempo",
1809
+ "token": "content.tertiary",
1810
+ "value": "#A4A4A4"
1811
+ },
1812
+ {
1813
+ "property": "Separador •",
1814
+ "token": "content.disabled",
1815
+ "value": "#4A4A4A"
1816
+ },
1817
+ {
1818
+ "property": "Hover BG",
1819
+ "token": "surface.secondary",
1820
+ "value": "#222222"
1821
+ },
1822
+ {
1823
+ "property": "Padding",
1824
+ "token": "spacing.sm + spacing.lg",
1825
+ "value": "8px 16px"
1826
+ },
1827
+ {
1828
+ "property": "Gap inner",
1829
+ "token": "spacing.sm",
1830
+ "value": "8px"
1831
+ },
1832
+ {
1833
+ "property": "Radius botão",
1834
+ "token": "radius.sm",
1835
+ "value": "4px"
1836
+ }
1837
+ ],
1838
+ "anatomy": "Container (border-bottom subtle, padding 8px 16px):\n [Dot 4×4px] [Content flex-1 gap-8px] [Action 20×20px]\n Content:\n [Title — Inter 14/400/1.2 content-primary]\n [Meta row gap-8px h-16px]\n [Source 14/400] [• 12px disabled] [Time 14/400]",
1839
+ "notes": "O dot indicador sobe (up) ou desce (down) conforme sentimento da notícia. Hover aplica surface.secondary. Quando href é passado, o container se torna um <a> com target _blank.",
1840
+ "code": {
1841
+ "html": "<!-- News Card — Design System TRDR (Figma: 66:2373) -->\n<!-- sentiment: adicionar .trdr-news-card-dot-up | -down | -neutral -->\n<div class=\"trdr-news-card\">\n <div class=\"trdr-news-card-inner\">\n <div class=\"trdr-news-card-dot trdr-news-card-dot-up\"></div>\n <div class=\"trdr-news-card-content\">\n <p class=\"trdr-news-card-title\">Bitcoin ETF sees record inflows as institutional interest grows</p>\n <div class=\"trdr-news-card-meta\">\n <span class=\"trdr-news-card-source\">CoinDesk</span>\n <span class=\"trdr-news-card-sep\">•</span>\n <span class=\"trdr-news-card-time\">2h ago</span>\n </div>\n </div>\n <button class=\"trdr-news-card-action\" aria-label=\"Abrir notícia\">\n <span class=\"material-symbols-outlined\" style=\"font-size:12px;line-height:12px\">open_in_new</span>\n </button>\n </div>\n</div>",
1842
+ "css": "/* News Card — Design System TRDR (Figma node: 66:2373, 313×74) */\n.trdr-news-card {\n display: flex;\n flex-direction: column;\n padding: 8px 16px; /* --spacing-sm --spacing-lg */\n border-bottom: 1px solid var(--border-subtle); /* #222222 */\n width: 100%;\n cursor: pointer;\n text-decoration: none;\n transition: background-color 0.15s ease;\n}\n\n.trdr-news-card:hover {\n background-color: var(--surface-secondary); /* #222222 */\n}\n\n.trdr-news-card-inner {\n display: flex;\n gap: 8px; /* --spacing-sm */\n align-items: flex-start;\n width: 100%;\n}\n\n.trdr-news-card-dot {\n width: 4px;\n height: 4px;\n border-radius: 9999px;\n flex-shrink: 0;\n margin-top: 6px;\n}\n\n.trdr-news-card-dot-up { background-color: var(--context-trading-up); } /* #4FE290 */\n.trdr-news-card-dot-down { background-color: var(--context-trading-down); } /* #F34F45 */\n.trdr-news-card-dot-neutral{ background-color: var(--content-tertiary); } /* #A4A4A4 */\n\n.trdr-news-card-content {\n display: flex;\n flex-direction: column;\n gap: 8px;\n flex: 1;\n min-width: 0;\n}\n\n.trdr-news-card-title {\n font-family: var(--font-secondary);\n font-size: 14px;\n font-weight: 400;\n line-height: 1.2;\n color: var(--content-primary); /* #FFFFFF */\n width: 100%;\n}\n\n.trdr-news-card-meta {\n display: flex;\n gap: 8px;\n align-items: center;\n height: 16px;\n white-space: nowrap;\n}\n\n.trdr-news-card-source,\n.trdr-news-card-time {\n font-family: var(--font-secondary);\n font-size: 14px;\n font-weight: 400;\n line-height: 1.2;\n color: var(--content-tertiary); /* #A4A4A4 */\n}\n\n.trdr-news-card-sep {\n font-size: 12px;\n line-height: 16px;\n color: var(--content-disabled); /* #4A4A4A */\n}\n\n.trdr-news-card-action {\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 4px;\n border-radius: var(--radius-sm); /* 4px */\n flex-shrink: 0;\n width: 20px;\n height: 20px;\n background: transparent;\n border: none;\n cursor: pointer;\n color: var(--content-tertiary);\n transition: background-color 0.15s ease;\n}\n\n.trdr-news-card-action:hover {\n background-color: var(--surface-secondary);\n}",
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
+ "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
+ }
1725
1846
  }
1726
1847
  ]
1727
1848
  }
@@ -0,0 +1,16 @@
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_2297_15673)">
3
+ <path d="M34.7496 12.4768C34.3229 12.8757 33.8969 13.2753 33.4716 13.6756C29.6438 17.2781 25.8724 20.9369 22.1573 24.652C18.4422 28.3671 14.7834 32.1385 11.1809 35.9662C10.7806 36.3915 10.381 36.8175 9.98216 37.2442C10.4089 36.8454 10.8349 36.4458 11.2602 36.0455C15.0879 32.443 18.8593 28.7842 22.5744 25.0691C26.2895 21.354 29.9483 17.5826 33.5508 13.7548C33.9511 13.3295 34.3507 12.9035 34.7496 12.4768Z" fill="#00D4FF"/>
4
+ <path d="M14.5479 28.5224C16.0588 28.4998 17.2697 29.2256 17.7291 29.4554L17.7105 29.5251C17.3248 29.4994 16.6194 29.5978 15.8861 29.7323C15.1544 29.8664 14.3989 30.0356 13.9146 30.15C13.4488 30.2601 13.0847 30.3505 12.7884 30.4338C13.1446 30.0001 13.5408 29.5488 13.9623 29.1273C14.0101 29.0795 14.0546 29.0302 14.1004 28.9837C14.1057 28.9789 14.1125 28.9757 14.1177 28.9706C14.1267 28.9615 14.1336 28.9504 14.1418 28.9409C14.2851 28.7951 14.42 28.6565 14.5479 28.5224ZM8.19563 7.19806C8.82217 6.53017 9.59191 6.02208 10.415 5.63883C10.9921 5.55025 11.5611 5.4599 12.1289 5.36815C15.0027 4.78485 18.0354 5.56157 19.8166 8.0343C19.9503 8.20068 20.0767 8.36582 20.204 8.54046C20.2296 8.57526 20.2677 8.60074 20.3104 8.60951C20.353 8.61817 20.3978 8.60995 20.434 8.58672C20.4701 8.56338 20.496 8.52554 20.5058 8.48314C20.5153 8.44086 20.5074 8.39635 20.4864 8.35885C20.3772 8.16621 20.2674 7.9815 20.1481 7.79537C19.2623 6.15029 17.6082 5.05259 15.7832 4.57403C16.0251 4.57825 16.2451 4.58829 16.4378 4.6058H16.4392C17.532 4.72723 19.4111 4.99294 21.4856 5.08917C21.5152 5.15983 21.5464 5.22991 21.5789 5.29978C21.6618 5.64653 21.8201 5.95876 22.025 6.23615C21.3914 7.94116 21.0973 10.0929 22.2107 11.7639C22.2577 11.8678 22.3103 11.9692 22.3723 12.0663C22.4196 12.1402 22.4687 12.2143 22.5208 12.288C22.7813 12.8244 22.6186 14.0931 22.2556 14.9935C22.2262 15.0669 22.1943 15.1401 22.161 15.2124C22.1434 15.2501 22.1371 15.2934 22.1465 15.3346C22.1559 15.376 22.1805 15.4118 22.2149 15.4347C22.2492 15.4575 22.2913 15.4661 22.3329 15.4589C22.3747 15.4517 22.4126 15.4289 22.4407 15.3982C22.4983 15.3339 22.5545 15.2676 22.6078 15.1993C23.0511 14.5424 23.4815 13.8358 23.491 12.964C23.5637 13.002 23.6389 13.0379 23.7168 13.0697C24.7522 13.5493 26.1527 12.9047 26.3698 11.7963C26.4255 11.5264 26.3921 11.2139 26.231 10.9808C26.2066 10.9475 26.1724 10.9205 26.1323 10.9083C26.0918 10.8961 26.0488 10.8997 26.0121 10.918C25.9754 10.9363 25.9472 10.9687 25.9327 11.0084C25.9182 11.0481 25.9191 11.0917 25.9313 11.1313C25.9758 11.3044 25.9374 11.4794 25.8574 11.6361C25.501 12.2884 24.6815 12.5217 24.0531 12.2403C23.7915 12.1343 23.5445 11.9553 23.319 11.7328C22.096 10.5417 22.0741 8.54324 22.5187 6.77269C22.75 6.97931 23.0024 7.15768 23.2541 7.30786C23.2783 7.3222 23.3032 7.33718 23.328 7.35136C23.7395 7.58552 24.2686 7.76861 24.8251 7.64276C25.388 7.51775 25.7724 7.06682 25.9368 6.63182C25.9763 6.52994 26.0071 6.43061 26.0307 6.31418C26.0366 6.27351 26.0315 6.23034 26.0121 6.19333C25.9926 6.15632 25.9606 6.12794 25.9223 6.11461C25.8841 6.10137 25.8411 6.10394 25.8029 6.12083C25.7648 6.13781 25.7337 6.16826 25.7131 6.20369C25.6698 6.2666 25.6109 6.34587 25.5543 6.40947C25.0155 7.03615 24.4185 6.96022 23.7755 6.5752C23.7538 6.56254 23.7324 6.54975 23.7112 6.53722C23.1245 6.18229 22.5451 5.80285 22.1568 5.27561C22.1219 5.22119 22.0875 5.16571 22.054 5.10919C23.996 5.16728 26.0558 5.05887 27.7688 4.53329C31.5106 3.38514 33.5206 1.43254 34.6569 0.133898L34.719 0.171187C34.1424 1.69135 32.9609 3.04983 31.7125 4.13899C30.4828 5.21178 29.1847 6.02544 28.3275 6.47852C28.4531 6.62052 28.6314 6.90137 28.817 7.27885C29.0202 7.69201 29.2369 8.22312 29.4144 8.81667C29.7938 10.0862 29.8393 11.5975 29.6595 12.4965C29.5632 12.9787 29.5961 13.5346 29.6505 13.9819C29.6777 14.2051 29.71 14.4011 29.7341 14.546C29.7461 14.6181 29.7562 14.6789 29.7624 14.7235C29.7654 14.7454 29.7676 14.7645 29.7686 14.7794C29.7691 14.7869 29.7695 14.7945 29.7693 14.8008C29.7691 14.8065 29.7683 14.8147 29.7658 14.8222C29.7634 14.8294 29.7593 14.8356 29.7562 14.8402C29.7526 14.8453 29.7484 14.8513 29.7437 14.8568C29.7344 14.8676 29.7219 14.8804 29.7071 14.8948C29.6773 14.9237 29.6359 14.9615 29.5863 15.0045C29.4869 15.0908 29.3518 15.2029 29.2037 15.325C28.907 15.5696 28.5558 15.8553 28.3219 16.0631C28.0833 16.2753 27.8666 16.3716 27.6404 16.3801C27.4157 16.3883 27.1857 16.3094 26.9222 16.184C26.7819 16.1171 26.6195 16.0032 26.4568 15.8719C26.4212 15.7884 26.3796 15.7104 26.3263 15.6405C25.8945 15.075 25.3984 14.5579 24.8375 14.091C24.7975 14.0577 24.7566 14.0243 24.716 13.9915C24.6844 13.9662 24.6457 13.9477 24.6048 13.9439C24.5639 13.9402 24.5236 13.9512 24.4922 13.975C24.4608 13.999 24.4401 14.0352 24.4328 14.0758C24.4256 14.1163 24.4326 14.1581 24.4487 14.1952C24.4697 14.2431 24.4907 14.2915 24.5123 14.3389C24.7288 14.8141 24.9787 15.2641 25.2615 15.6889C25.1851 15.8931 25.0866 16.14 24.9142 16.445C24.5745 17.0459 24.1721 17.6491 23.8245 18.1327C23.752 18.2335 23.6808 18.3284 23.6139 18.4179C23.5069 17.8923 23.2785 17.3842 22.9558 17.0085C22.9179 16.9604 22.8795 16.9145 22.8391 16.8669C22.8123 16.8361 22.7765 16.8114 22.7362 16.8013C22.696 16.7914 22.6538 16.7959 22.6188 16.8151C22.5839 16.8344 22.558 16.8677 22.5449 16.907C22.5319 16.9464 22.5333 16.9894 22.5449 17.0285C22.5622 17.0855 22.5777 17.1404 22.5933 17.1956C22.8283 17.9896 22.8673 18.6428 22.7555 19.4171C22.7301 19.6405 22.7575 19.8877 22.855 20.138C22.877 20.1947 22.9037 20.2506 22.933 20.3072C22.8715 20.8644 22.8027 21.4957 22.7549 21.9313C22.7026 22.4063 22.6892 23.0702 22.6892 23.6155C22.6893 23.8876 22.6929 24.1302 22.6962 24.3047C22.6966 24.3282 22.6964 24.3506 22.6968 24.3716L21.7978 23.1577L21.2315 21.6675C21.2211 21.5093 21.1689 21.3407 21.11 21.1966C21.0385 21.0216 20.9378 20.8231 20.8151 20.6172C20.57 20.2058 20.2212 19.7361 19.8021 19.3169C19.3516 18.8664 19.133 18.4898 19.0384 18.1168C18.9426 17.7388 18.9602 17.3129 19.0757 16.733C19.0798 16.7214 19.0848 16.7104 19.0888 16.6991C19.2295 16.3043 19.4313 16.0296 19.7704 15.9126C20.1139 15.7912 20.5971 15.8373 21.043 15.9782C21.107 15.9987 21.1699 16.0211 21.2295 16.0459C21.2673 16.0625 21.3107 16.0684 21.3517 16.059C21.3924 16.0495 21.4278 16.0257 21.4504 15.992C21.4731 15.958 21.4816 15.9155 21.4746 15.8739C21.4676 15.8326 21.4457 15.7954 21.4159 15.7669C21.3568 15.7127 21.2964 15.6635 21.2329 15.6171C20.7926 15.3049 20.2455 15.0651 19.5984 15.1578C19.4149 15.1811 19.2433 15.2456 19.0867 15.3367C18.9386 14.5045 18.4976 13.6256 17.58 12.9281C16.9422 12.4434 16.107 11.7613 14.9656 11.3136C13.81 10.8606 12.359 10.6529 10.4654 11.0478C8.51635 11.4544 6.97772 12.7641 5.94587 13.9266C5.64282 14.2681 5.38018 14.6019 5.15935 14.9023C5.24904 14.2006 5.35366 13.4857 5.50048 12.7714C5.89959 10.8297 6.61212 8.88628 8.19563 7.19806ZM20.9498 23.4491C20.3496 24.3584 19.5971 25.7759 19.1295 27.6462L19.0577 27.642C18.8749 26.3618 18.9218 25.5078 19.0771 24.8302C19.1394 24.5579 19.2211 24.3148 19.3098 24.0837C19.4904 23.8837 19.6611 23.6901 19.8111 23.5078C20.0789 23.1822 20.3094 22.8689 20.4312 22.6253C20.4749 22.5379 20.5152 22.4635 20.552 22.4009L20.9498 23.4491ZM3.66987 21.6882C4.50222 21.2118 5.81135 20.6866 7.24753 20.5233C8.95348 20.3293 10.7814 20.646 12.218 22.0825C13.3221 23.1867 13.6844 24.7156 13.7254 26.0455C13.7457 26.7053 13.686 27.2994 13.608 27.7387C13.569 27.9586 13.5266 28.1346 13.4893 28.2566C13.4732 28.3089 13.4582 28.3463 13.4478 28.3712C13.4082 28.4114 13.3697 28.4534 13.3291 28.4941C13.2141 28.609 13.101 28.7263 12.99 28.8442C13.0174 28.7278 13.0413 28.6102 13.0598 28.4914C13.2959 27.0793 12.9413 25.4488 11.8347 24.4172C10.6703 23.2938 8.98345 22.9138 7.48853 23.1632C7.28216 23.198 7.07584 23.2452 6.87533 23.3124C6.83478 23.3263 6.79913 23.354 6.77797 23.3918C6.75684 23.4298 6.75088 23.4753 6.76208 23.5168C6.7734 23.5582 6.80198 23.5941 6.83942 23.6162C6.87688 23.638 6.92163 23.6441 6.96372 23.6355C7.14725 23.5987 7.34135 23.5784 7.53341 23.5685C8.94392 23.5015 10.3669 23.9833 11.2802 24.9717C12.1151 25.8462 12.3714 27.1375 12.1745 28.3533C12.0611 29.0769 11.8569 29.7946 11.5786 30.5153C11.26 30.9306 10.9925 31.3063 10.7907 31.5974C9.9737 32.3155 9.44581 32.7487 9.05397 32.9847L8.14522 33.9445C7.55087 34.7996 7.04492 36.3428 6.68682 37.6775C6.50783 38.3447 6.36658 38.9585 6.26973 39.4053C6.22133 39.6286 6.18436 39.8112 6.15925 39.937C6.14678 39.9994 6.1373 40.0482 6.13094 40.0813C6.12776 40.0978 6.12494 40.1108 6.12334 40.1193C6.12257 40.1234 6.12235 40.1268 6.12196 40.1289L6.12127 40.131L6.04807 40.1296V40.1269C6.04781 40.125 6.04716 40.122 6.04669 40.1186C6.04566 40.1108 6.04383 40.0985 6.04186 40.0834C6.03789 40.0528 6.0319 40.007 6.02459 39.9487C6.00994 39.8318 5.98958 39.6617 5.96521 39.4501C5.9164 39.0264 5.85296 38.4344 5.79465 37.7632C5.67854 36.4265 5.58176 34.7716 5.66137 33.4964C5.06447 32.8989 4.51197 32.3065 4.01721 31.7072C4.02071 31.6687 4.01285 31.6299 3.9965 31.5953C3.93245 31.4626 3.87123 31.334 3.81212 31.2107C3.56684 30.7055 3.32569 30.2342 3.09673 29.7647C2.19223 28.1379 2.68814 26.1874 4.19606 24.9406C4.29683 24.85 4.40427 24.7592 4.50956 24.6741C4.54271 24.6473 4.5667 24.6088 4.57447 24.5664C4.58202 24.5242 4.57363 24.4807 4.5503 24.4455C4.52677 24.4102 4.48952 24.385 4.44741 24.3758C4.40524 24.3666 4.36059 24.3748 4.32312 24.3951C4.19901 24.4629 4.07148 24.5377 3.95023 24.6147C2.80363 25.2104 1.98592 26.5233 1.83374 27.8871C1.8079 27.803 1.78169 27.7188 1.75848 27.6337C1.46221 26.5469 1.79954 25.2427 2.32886 24.0526C2.72653 23.1585 3.23443 22.3245 3.66987 21.6882ZM20.9843 19.9854C20.9584 20.0632 22.044 21.9892 22.0553 22.0093C22.0566 21.9914 22.2091 19.8039 22.0795 19.7243C21.9488 19.6463 21.0108 19.9071 20.9843 19.9854ZM6.61638 14.5212C7.5949 13.4188 8.97347 12.2741 10.6477 11.9248C12.3767 11.5641 13.6507 11.7597 14.639 12.1471C15.6414 12.5403 16.3724 13.1356 17.0379 13.6414C18.18 14.5096 18.3675 15.7105 18.1994 16.5513C18.072 17.1883 18.0255 17.7694 18.1697 18.3378C18.3156 18.9127 18.643 19.4242 19.1689 19.9502C19.5305 20.3118 19.834 20.722 20.0452 21.0764C20.1149 21.1935 20.1708 21.303 20.2171 21.3989C20.0207 21.5587 19.8284 21.8285 19.6302 22.2248C19.5568 22.3715 19.3833 22.6192 19.1199 22.9395C18.8633 23.2514 18.5416 23.6089 18.1946 23.9697C17.4954 24.6967 16.7172 25.4124 16.181 25.7955C15.5411 26.2526 15.0536 26.7128 14.5796 27.198C14.6132 26.8406 14.6334 26.4414 14.6204 26.0179C14.5758 24.5735 14.1826 22.7795 12.8519 21.4486C11.1638 19.7605 9.02839 19.4191 7.14602 19.6332C6.06978 19.7556 5.05786 20.0604 4.22644 20.4135L4.68703 18.3398C4.78344 17.844 4.85709 17.3262 4.92595 16.793C5.00523 16.7528 5.07442 16.6895 5.1193 16.6052V16.6038C5.1201 16.6024 5.12181 16.5999 5.12345 16.5969C5.12705 16.5903 5.13306 16.5796 5.14071 16.5658C5.15627 16.5379 5.18 16.4951 5.21184 16.4409C5.27586 16.3317 5.37283 16.1734 5.49979 15.9803C5.75463 15.5927 6.13141 15.0676 6.61638 14.5212ZM6.67577 33.4832C6.52502 33.6078 6.67467 35.4228 6.67577 35.4361C6.67901 35.4276 7.47871 33.3334 7.40773 33.2388C7.33552 33.1449 6.82727 33.3602 6.67577 33.4832ZM27.1819 12.0007C27.377 13.3672 26.45 14.0343 25.9617 14.1973C26.2058 14.4414 26.8398 14.783 27.4256 14.1973C28.0115 13.6115 27.5074 12.489 27.1819 12.0007ZM18.1497 20.0565C17.9544 21.0329 15.9525 22.9039 14.976 23.7177L15.2204 25.915C16.3598 24.9384 18.7355 22.7904 19.1261 22.0093C19.5165 21.2283 18.6379 20.382 18.1497 20.0565ZM6.43201 24.9393C4.72323 25.6716 3.25838 28.1129 3.74652 29.5776C4.23497 31.0418 6.43105 32.2618 7.40773 32.2624C8.38418 32.2624 11.3139 30.7977 11.3141 27.8685C11.314 24.9391 8.14083 24.2069 6.43201 24.9393ZM23.4606 14.9017C23.3791 15.4712 22.966 16.3349 24.0082 16.6383C24.0177 16.6256 24.5206 15.9466 24.3735 15.606C24.2241 15.2624 23.4606 14.9017 23.4606 14.9017ZM25.229 8.09506C25.4733 8.1766 26.2058 8.583 27.1819 9.559C28.1583 10.5354 28.4373 11.6794 28.5187 12.0864C28.9093 8.96195 27.8329 7.44433 27.1819 7.11865L25.229 8.09506ZM19.6806 17.1169C19.3702 17.4842 19.2645 18.291 20.0452 18.6816C21.0216 19.1698 21.3559 19.5798 21.844 18.6036C22.0881 18.1967 21.8704 17.3783 21.3489 17.0133C20.8276 16.6486 19.9913 16.7499 19.6806 17.1169ZM17.4177 15.9064C17.723 13.6477 8.9399 9.50526 6.25454 16.8828L5.69935 18.8356C6.54074 18.9944 9.63434 18.2909 11.803 19.5683C13.9564 20.837 14.7171 22.7741 14.7274 22.8007C14.7554 22.7765 16.6332 21.154 16.9426 20.3244C17.254 19.4886 17.2826 17.2739 17.4177 15.9064ZM8.87305 21.0329C5.35793 20.2518 3.82763 22.6602 3.50207 23.9622C3.82755 23.4739 5.11356 22.4491 7.65218 22.2538C10.1908 22.0585 12.1462 23.8644 12.7974 24.6782C12.9601 23.8645 12.3882 21.8141 8.87305 21.0329ZM22.8356 8.38371C22.9983 9.35992 23.4347 10.964 23.7996 11.3295C24.1645 11.6944 24.9632 11.5742 25.2076 11.3302C25.4517 11.0861 25.415 10.2338 24.6338 9.45265C23.8531 8.67209 23.0802 8.46516 22.8356 8.38371ZM20.3062 10.1301C20.5909 12.1228 20.5907 14.1674 20.5907 14.1973C20.5907 14.5878 21.0792 14.8486 21.3234 14.93C21.8116 14.2789 22.1311 12.4242 20.3062 10.1301ZM1.82546 29.0707C1.85694 29.1258 1.88611 29.1856 1.91661 29.2475C1.97788 29.4929 2.06626 29.7322 2.18315 29.9615C2.31521 30.4524 2.37537 31.0277 2.26947 31.6222C2.08815 32.6397 1.42893 33.707 -0.142565 34.4928L-0.188831 34.4382C0.216818 33.8703 0.800968 32.9198 1.23505 31.9178C1.45192 31.4171 1.63102 30.9042 1.73154 30.42C1.8321 29.9354 1.85341 29.4814 1.75778 29.0983L1.82546 29.0707ZM26.5231 3.99882C27.6601 3.51151 30.3228 2.04948 31.8796 0.103514L31.9424 0.141494C31.6153 0.877416 30.9528 1.95588 30.0289 2.80212C29.1049 3.64843 27.914 4.26586 26.5321 4.06856L26.4023 4.05061L26.5231 3.99882ZM14.976 6.62975C11.2655 4.87229 8.10496 9.13962 7.53134 10.3911C7.28556 10.9273 7.08876 11.5122 7.08871 12.1899C7.98393 11.2948 10.1947 9.68805 13.3187 10.0783C16.4432 10.4688 18.7187 12.8142 19.3699 13.4653C19.4512 11.9192 18.6865 8.38738 14.976 6.62975Z" fill="#00D4FF"/>
5
+ <path d="M22.1203 20.7376C22.1164 20.853 22.1103 20.9701 22.1051 21.0842L21.6742 21.3231C21.6279 21.2393 21.5787 21.1528 21.5306 21.0649L22.1203 20.7376ZM21.1535 20.3619C21.3172 20.3054 21.5145 20.2363 21.6935 20.1672C21.816 20.1199 21.9288 20.0739 22.016 20.0339C22.0595 20.014 22.0952 19.9956 22.1217 19.9807L22.1224 19.9801C22.1268 20.0717 22.1293 20.1827 22.1286 20.3053C22.0351 20.3478 21.9198 20.3962 21.7992 20.4427C21.6327 20.507 21.4515 20.5706 21.2951 20.625C21.2447 20.5306 21.1951 20.4424 21.1535 20.3619ZM26.2676 14.0532C26.3594 13.9984 26.4541 13.9305 26.5473 13.8495L27.4167 14.2051C27.3255 14.2949 27.233 14.3613 27.1412 14.4102L26.2676 14.0532ZM7.09082 34.3072C7.0555 34.4067 7.01828 34.506 6.9831 34.6028H6.62402C6.61957 34.5049 6.61559 34.4051 6.61297 34.3072H7.09082ZM27.6308 13.3171C27.6503 13.3282 27.669 13.3401 27.6881 13.3509C27.697 13.4651 27.6959 13.5774 27.6784 13.6851C27.6178 13.6504 27.5526 13.6126 27.4844 13.574C27.3252 13.4837 27.1505 13.3866 26.9872 13.295C27.0315 13.2102 27.0692 13.1189 27.1018 13.0215C27.2742 13.1179 27.4613 13.221 27.6308 13.3171ZM17.3252 21.4184C17.5607 21.7882 17.7129 22.2667 17.8065 22.7146C17.8592 22.9666 17.8942 23.2131 17.917 23.4313C17.8285 23.5203 17.7365 23.6097 17.6436 23.7006C17.626 23.4444 17.5883 23.1148 17.5172 22.7746C17.4331 22.3723 17.3061 21.9667 17.1243 21.6511C17.1932 21.5732 17.2606 21.4957 17.3252 21.4184ZM16.7438 22.0634C17.0041 22.3729 17.1416 22.8622 17.2113 23.3278C17.2486 23.5771 17.2673 23.8284 17.2755 24.0563C17.1793 24.1478 17.0828 24.2401 16.9855 24.3311C16.9866 24.0547 16.9706 23.7109 16.9199 23.372C16.8531 22.9258 16.7289 22.5197 16.5359 22.2754C16.6054 22.2049 16.6756 22.1349 16.7438 22.0634ZM17.8369 20.7314C18.042 21.026 18.2255 21.4411 18.3741 21.8459C18.4787 22.1307 18.5678 22.418 18.6386 22.6669C18.5664 22.7497 18.4873 22.8351 18.4045 22.9245C18.3306 22.6476 18.225 22.2955 18.0972 21.9474C17.9659 21.5896 17.8143 21.2476 17.6567 20.9944C17.722 20.9048 17.7822 20.8169 17.8369 20.7314ZM16.2922 22.5219C16.58 23.0739 16.618 23.7237 16.5884 24.2503C16.5784 24.4289 16.5587 24.5956 16.5394 24.7427C16.423 24.849 16.3088 24.9542 16.1962 25.0555C16.2009 25.0258 16.2063 24.9943 16.2114 24.9616C16.2413 24.7699 16.2777 24.5156 16.2936 24.233C16.3207 23.7501 16.2838 23.2013 16.0678 22.7367C16.1419 22.666 16.2176 22.5951 16.2922 22.5219ZM15.7032 23.0778L15.7501 23.0598C15.9628 23.6004 15.946 24.3103 15.8896 24.8704C15.8704 25.0611 15.8444 25.2375 15.8219 25.3883C15.7017 25.4947 15.5869 25.596 15.4787 25.6901C15.4853 25.6468 15.493 25.5971 15.5015 25.543C15.5301 25.3606 15.5685 25.115 15.5961 24.8407C15.6487 24.3192 15.6564 23.7182 15.505 23.258C15.5698 23.2001 15.6356 23.1396 15.7032 23.0778ZM7.34839 33.5332C7.32346 33.6176 7.2932 33.716 7.25793 33.8225L6.61642 33.7818C6.62464 33.6317 6.64109 33.5235 6.67167 33.489L7.34839 33.5332ZM4.46679 26.6644C5.55685 26.2831 6.95377 26.1648 8.06862 26.6755C8.70901 26.9688 9.25276 27.4689 9.58503 28.2361C9.88894 28.938 10.0088 29.8545 9.8785 31.0279C9.77209 31.1265 9.66285 31.2187 9.55257 31.3055H9.54981C9.73625 30.0133 9.61714 29.0529 9.31434 28.3535C9.01275 27.6571 8.52399 27.2083 7.9457 26.9434C6.80038 26.4188 5.29287 26.6111 4.21198 27.0808C4.2908 26.9399 4.37471 26.8 4.46679 26.6644ZM5.46806 25.5471C5.62038 25.4192 5.77779 25.3022 5.9397 25.1998C8.10437 25.018 9.4428 25.6855 10.2037 26.6741C10.8287 27.4862 11.0467 28.4939 11.0331 29.3692C10.9343 29.6213 10.8128 29.8565 10.6747 30.0757L10.6712 30.075C10.8442 29.1344 10.7212 27.831 9.96966 26.8543C9.23179 25.8957 7.86141 25.2181 5.46806 25.5471ZM20.5942 16.7863C20.7386 16.7888 20.8847 16.8106 21.023 16.8547C21.2417 17.1718 21.4129 17.5502 21.5402 17.916C21.6406 18.2045 21.715 18.4907 21.7695 18.7405C21.6886 18.8836 21.6109 18.9874 21.5326 19.0603C21.482 18.7745 21.3946 18.3958 21.2613 18.0127C21.1001 17.5499 20.8776 17.0968 20.5942 16.7863ZM23.3163 15.705C23.4431 15.7271 23.5835 15.758 23.7209 15.8002C23.9298 15.8644 24.1567 15.9626 24.31 16.1103C24.2772 16.1883 24.2387 16.2642 24.2002 16.3333L24.1505 16.3706C24.0662 16.2557 23.8749 16.1565 23.6346 16.0827C23.5329 16.0514 23.4286 16.027 23.3308 16.0081C23.3115 15.9106 23.3088 15.8087 23.3163 15.705ZM3.81976 27.9661C4.85879 27.5464 6.15277 27.3848 7.15366 27.8528C7.71673 28.1161 8.17967 28.5762 8.44496 29.285C8.69013 29.9402 8.76092 30.7998 8.60033 31.9042C8.49088 31.958 8.384 32.0055 8.28061 32.0471C8.47357 30.882 8.40467 30.0166 8.16943 29.3879C7.93148 28.7523 7.52251 28.351 7.02867 28.1201C6.06422 27.6691 4.74979 27.8613 3.72032 28.3307C3.74632 28.2101 3.78041 28.0885 3.81976 27.9661ZM23.4116 15.1401C23.6278 15.2003 23.9024 15.279 24.1505 15.3597C24.1638 15.364 24.1766 15.3698 24.1898 15.3742C24.2714 15.4498 24.3388 15.5272 24.3728 15.6055C24.393 15.6519 24.4009 15.7044 24.3997 15.7609C24.3019 15.7234 24.1852 15.681 24.0593 15.64C23.8245 15.5637 23.5644 15.4886 23.355 15.4301C23.3738 15.3317 23.3912 15.2334 23.4116 15.1401ZM19.6806 17.1171C19.7335 17.0546 19.8018 17.0002 19.8809 16.9541C20.2732 17.3265 20.5117 17.9091 20.6591 18.3953C20.7372 18.6527 20.7928 18.8907 20.8331 19.0665C20.8352 19.0754 20.8367 19.0842 20.8387 19.0927C20.7354 19.0455 20.6206 18.988 20.4941 18.9194C20.4617 18.7864 20.4241 18.6366 20.3767 18.4802C20.2278 17.9893 20.0016 17.4594 19.6578 17.1468C19.6655 17.1369 19.6727 17.1264 19.6806 17.1171ZM3.69754 29.3948C4.4642 29.0396 5.09578 28.9224 5.6117 28.9901C6.17031 29.0635 6.57678 29.3502 6.85397 29.7463C7.33257 30.4305 7.42626 31.4362 7.31524 32.2557C7.22518 32.2493 7.12666 32.2369 7.02177 32.2135C7.12649 31.4398 7.03329 30.5164 6.61228 29.9148C6.37786 29.5799 6.04225 29.3438 5.57372 29.2822C5.12363 29.2231 4.53652 29.3243 3.78316 29.6793C3.76993 29.6454 3.75727 29.6113 3.74587 29.5771C3.72617 29.518 3.71099 29.4569 3.69754 29.3948ZM27.628 10.0771C27.7688 10.0665 27.9322 10.0653 28.1038 10.0833C28.2552 10.0993 28.4162 10.1296 28.5747 10.1828C28.5827 10.2879 28.5908 10.3957 28.5947 10.5066C28.4274 10.4355 28.2475 10.3952 28.0727 10.3768C27.987 10.3678 27.9038 10.3657 27.8255 10.3657C27.7646 10.2702 27.6996 10.1733 27.628 10.0771ZM4.31902 30.5342C4.71601 30.3031 5.05521 30.2304 5.34101 30.2994C5.64668 30.3733 5.85119 30.5988 5.98113 30.8636C6.11054 31.1275 6.17422 31.4461 6.19382 31.7461C6.19767 31.8052 6.19803 31.864 6.19865 31.9221C6.09983 31.8761 6.0002 31.825 5.89965 31.7709C5.89953 31.7691 5.89977 31.7672 5.89965 31.7654C5.88157 31.4886 5.82357 31.2106 5.71666 30.9927C5.6101 30.7757 5.4631 30.6323 5.27126 30.586C5.09683 30.5439 4.85416 30.574 4.52341 30.7551C4.45222 30.6831 4.38382 30.6096 4.31902 30.5342ZM27.126 9.50603C27.4204 9.38337 27.8681 9.26805 28.4456 9.26503C28.4663 9.36026 28.4852 9.4587 28.5022 9.56058C28.0022 9.55658 27.613 9.64129 27.3483 9.73529C27.2951 9.67626 27.2399 9.61724 27.1819 9.5592C27.1636 9.54087 27.1441 9.52396 27.126 9.50603ZM5.70077 18.8303C6.70414 18.3146 8.23438 17.9019 9.91372 18.1639C11.7523 18.451 13.7505 19.5458 15.4242 22.1608C15.348 22.2336 15.2749 22.3023 15.2067 22.3658C13.5681 19.7813 11.6264 18.7299 9.86815 18.4554C8.53439 18.2472 7.29791 18.4838 6.3699 18.8503C6.08368 18.8617 5.85372 18.865 5.69939 18.8358L5.70077 18.8303ZM5.91139 18.0866C8.11859 17.1311 12.7912 16.6041 16.3633 21.183C16.2995 21.2575 16.2339 21.3333 16.1658 21.4081C12.5667 16.7518 7.81854 17.4812 5.80504 18.4595L5.91139 18.0866ZM6.08126 17.4872C8.14926 16.5064 12.6647 15.9674 17.0898 19.7259C17.0694 19.8443 17.0457 19.954 17.0214 20.0539C12.4659 16.0997 7.81928 16.8664 5.97146 17.8746L6.08126 17.4872ZM26.4513 8.89215C26.5717 8.81846 26.7258 8.74196 26.914 8.66979C27.2269 8.54989 27.6415 8.4407 28.1673 8.37632C28.205 8.46574 28.2415 8.55962 28.2757 8.65875C27.7364 8.71917 27.3219 8.82948 27.0196 8.94532C26.8867 8.99628 26.7777 9.04961 26.6889 9.09793C26.6069 9.02515 26.5282 8.95604 26.4513 8.89215ZM11.7747 23.6751C11.9492 23.6405 12.1488 23.6314 12.334 23.635C12.4515 23.6374 12.5679 23.6448 12.6752 23.6544C12.7143 23.7601 12.743 23.863 12.7656 23.9617C12.6356 23.9468 12.4825 23.933 12.3278 23.9299C12.243 23.9282 12.1602 23.9296 12.082 23.934C11.9863 23.8484 11.8832 23.7623 11.7747 23.6751ZM23.6001 11.028C23.859 11.0377 24.235 11.0327 24.5814 10.9872C24.767 10.9628 24.9395 10.9278 25.0785 10.8795C25.2013 10.8368 25.2823 10.7875 25.3292 10.7407C25.3459 10.8766 25.3409 10.9973 25.3188 11.0977C25.2724 11.12 25.2244 11.1414 25.1752 11.1585C25.0101 11.2158 24.8162 11.2542 24.62 11.28C24.3391 11.3169 24.0424 11.3279 23.7969 11.327C23.7329 11.2619 23.6666 11.1589 23.6001 11.028ZM20.5873 13.9538C20.7424 13.9912 20.9463 14.0281 21.1625 14.0594C21.3275 14.0833 21.4954 14.1033 21.6459 14.1202C21.6263 14.2231 21.6035 14.3195 21.5755 14.4088C21.4321 14.3926 21.2751 14.3739 21.1204 14.3515C20.9386 14.3252 20.7539 14.2931 20.5949 14.2583C20.5923 14.2384 20.5908 14.2182 20.5908 14.1975C20.5908 14.1975 20.5897 14.1101 20.5873 13.9538ZM25.7235 8.35491C26.1224 8.09346 26.8956 7.72085 27.7744 7.66852C27.8377 7.75508 27.9007 7.85059 27.9615 7.95647C27.1506 7.96123 26.4095 8.28524 25.9907 8.53652C25.8943 8.46764 25.8054 8.40683 25.7235 8.35491ZM10.8308 23.0308C11.0878 22.9694 11.3766 22.936 11.6504 22.9224C11.8683 22.9116 12.0817 22.9113 12.2691 22.9169C12.3461 23.02 12.4133 23.123 12.4722 23.2249C12.2522 23.2114 11.9628 23.2011 11.6649 23.2159C11.5088 23.2237 11.3534 23.2387 11.2057 23.2594C11.086 23.1805 10.9603 23.1051 10.8308 23.0308ZM6.24008 16.9279C8.37708 15.7984 12.9663 14.7068 17.2638 18.0341C17.2555 18.1534 17.248 18.272 17.2389 18.3891C12.8336 14.8604 8.08098 16.1831 6.12614 17.3291L6.24008 16.9279ZM23.366 10.4624C23.615 10.4085 23.9354 10.3266 24.2561 10.2187C24.5239 10.1285 24.783 10.0187 25.0019 9.90102C25.0594 9.98848 25.1079 10.0756 25.1497 10.1607C24.9054 10.2929 24.6241 10.4063 24.3507 10.4983C24.0376 10.6037 23.725 10.6846 23.473 10.7407C23.4375 10.6534 23.4007 10.5605 23.366 10.4624ZM20.6253 13.3647C20.739 13.3692 20.8817 13.3655 21.0355 13.3564C21.2557 13.3434 21.4932 13.3184 21.6908 13.295C21.6975 13.3971 21.7006 13.4954 21.6991 13.5905C21.5026 13.6134 21.2707 13.6378 21.0534 13.6506C20.8952 13.66 20.7412 13.6646 20.6135 13.6596C20.6021 13.6591 20.5909 13.6567 20.5797 13.6561C20.5775 13.5665 20.573 13.4674 20.5694 13.3599C20.5868 13.3611 20.6054 13.364 20.6253 13.3647ZM20.5928 12.7923C20.687 12.782 20.8206 12.7573 20.9733 12.7239C21.1663 12.6817 21.383 12.6258 21.5775 12.5741C21.6018 12.6729 21.6238 12.769 21.6404 12.8634C21.4459 12.9149 21.2299 12.9695 21.0362 13.0119C20.8811 13.0458 20.7355 13.0737 20.6253 13.0858C20.6038 13.0881 20.5821 13.0866 20.5611 13.0878C20.5585 13.026 20.5565 12.9622 20.5535 12.8966L20.5811 12.891C20.5756 12.8642 20.5628 12.845 20.55 12.831C20.5494 12.8188 20.5486 12.8066 20.5479 12.7944C20.5606 12.7936 20.5756 12.7942 20.5928 12.7923ZM9.78943 22.5488C10.4037 22.314 11.0704 22.2101 11.5282 22.1746C11.6474 22.266 11.7569 22.359 11.8569 22.4535C11.5211 22.4569 10.8595 22.5189 10.2113 22.7153C10.0746 22.6551 9.93383 22.5998 9.78943 22.5488ZM6.59225 16.0813C7.71124 15.5201 9.33621 14.9596 11.138 14.8155C13.1434 14.6553 15.3756 15.0109 17.3694 16.4632C17.3609 16.5784 17.3533 16.6968 17.3452 16.8174C15.3832 15.3213 13.1657 14.9488 11.1608 15.109C9.21173 15.2649 7.47488 15.9238 6.39338 16.5219C6.45626 16.3694 6.52397 16.2232 6.59225 16.0813ZM23.1644 9.82161C23.362 9.72748 23.5963 9.61124 23.8169 9.48255C23.9812 9.38672 24.1369 9.28636 24.2651 9.18908C24.2788 9.17864 24.2909 9.16613 24.3038 9.15593C24.378 9.2166 24.4535 9.28141 24.5289 9.35204C24.5007 9.37543 24.4738 9.40185 24.4439 9.42455C24.303 9.53152 24.1357 9.63801 23.9654 9.73736C23.7206 9.88016 23.4608 10.008 23.2479 10.1082C23.2189 10.0146 23.1919 9.91847 23.1644 9.82161ZM20.541 12.0431C20.6302 12.043 20.8254 12.0153 21.0465 11.9768C21.1541 11.958 21.2639 11.9351 21.3648 11.9153C21.4026 12.0105 21.4377 12.1036 21.4684 12.1957C21.3533 12.2184 21.2235 12.2454 21.0969 12.2675C20.8819 12.3049 20.6597 12.3379 20.5403 12.3379V12.1901L20.541 12.0431ZM8.70736 22.2857C9.143 22.0545 9.66555 21.8817 10.1133 21.7596C10.3023 21.708 10.4804 21.6651 10.6353 21.6297C10.7777 21.6991 10.9115 21.771 11.0372 21.8452C11.0023 21.8523 10.9638 21.86 10.9226 21.8687C10.7306 21.909 10.4732 21.967 10.1906 22.0441C9.87058 22.1313 9.52396 22.2422 9.20454 22.3769C9.04254 22.3389 8.87673 22.3086 8.70736 22.2857ZM21.0983 11.3311C21.1471 11.4236 21.1923 11.515 21.2343 11.6053L20.4803 11.7489C20.4725 11.6517 20.4644 11.5531 20.4554 11.4533L21.0983 11.3311ZM7.23928 14.9868C8.30207 14.4142 9.75819 13.8631 11.3611 13.6658C13.1758 13.4425 15.1849 13.6739 17.0221 14.8466C17.1812 15.0463 17.2972 15.246 17.3625 15.4398C15.4656 14.0122 13.3273 13.7211 11.397 13.9586C9.56495 14.1842 7.92882 14.8856 6.88366 15.533C6.99709 15.3397 7.11542 15.1576 7.23928 14.9868ZM23.0981 9.14074C23.2414 9.05149 23.4146 8.90997 23.6056 8.69534C23.6886 8.73862 23.7749 8.78816 23.8646 8.84381C23.6418 9.10242 23.4346 9.27866 23.2535 9.3914C23.1911 9.43016 23.1306 9.46086 23.0739 9.4867C23.0487 9.38859 23.0236 9.29079 23.0007 9.19391C23.0307 9.17843 23.0638 9.16204 23.0981 9.14074ZM18.1787 12.3642C18.6073 12.22 18.9847 12.2094 19.2863 12.2606C19.304 12.3668 19.3179 12.4703 19.3298 12.5706C19.1022 12.518 18.8016 12.5021 18.4467 12.592C18.3618 12.5179 18.2723 12.4419 18.1787 12.3642ZM7.50928 22.2685C8.34189 21.697 9.00278 21.3948 9.47869 21.2341C9.50375 21.2256 9.52925 21.2197 9.55326 21.212C9.731 21.2656 9.90006 21.3215 10.0601 21.3818C9.93587 21.4071 9.77286 21.4464 9.57329 21.5137C9.20413 21.6384 8.7059 21.8552 8.08795 22.2395C7.9448 22.2379 7.79943 22.2427 7.65222 22.254C7.60405 22.2577 7.55656 22.2642 7.50928 22.2685ZM17.0345 11.5182C17.717 11.2323 18.3055 11.2282 18.7629 11.3256C18.8843 11.3514 18.9959 11.3848 19.0971 11.4209C19.1318 11.5412 19.1601 11.6603 19.1876 11.7765C19.0548 11.7157 18.8918 11.6555 18.7015 11.6149C18.3409 11.5382 17.8781 11.5298 17.3335 11.7192C17.2367 11.6516 17.1367 11.585 17.0345 11.5182ZM6.60261 22.3935C7.22426 21.7039 7.91425 21.2339 8.44081 20.953C8.5813 20.9749 8.72567 21.0004 8.87309 21.0331C8.88955 21.0368 8.90578 21.0411 8.92212 21.0449C8.47965 21.2363 7.76581 21.6485 7.08875 22.3147C6.92035 22.3373 6.75845 22.3639 6.60261 22.3935ZM16.2535 11.0535C17.154 10.4557 18.0754 10.324 18.7035 10.3561C18.7504 10.4586 18.7935 10.5611 18.8347 10.6627C18.3 10.6077 17.4229 10.6805 16.5456 11.2158C16.4503 11.1604 16.3526 11.1069 16.2535 11.0535ZM5.72563 22.6089C6.28487 21.8813 6.9098 21.2781 7.37325 20.884C7.52129 20.8785 7.67401 20.8814 7.83176 20.8895C7.43829 21.1969 6.80537 21.7611 6.20832 22.477C6.03915 22.5176 5.8783 22.5616 5.72563 22.6089ZM6.4721 21.0076C6.64187 20.9661 6.81964 20.9344 7.00588 20.913C6.59481 21.2827 5.90195 21.9756 5.30993 22.7512C5.11587 22.8252 4.938 22.9039 4.77546 22.9846C5.3012 22.217 5.97262 21.4927 6.4721 21.0076ZM15.4021 10.644C16.4552 9.78839 17.4928 9.47978 18.1877 9.41074C18.2478 9.50424 18.3043 9.59852 18.359 9.69248C17.7606 9.72378 16.758 9.9693 15.7101 10.7794C15.609 10.7328 15.5064 10.6875 15.4021 10.644ZM5.44251 21.4157C5.68045 21.2795 5.94227 21.1642 6.22903 21.0752C5.91449 21.3585 5.44451 21.8131 5.00748 22.3051C4.71157 22.6382 4.43628 22.9818 4.2327 23.2967C4.02197 23.4368 3.85437 23.5748 3.72723 23.7L3.69201 23.6855C3.87967 23.2108 4.3238 22.6314 4.7872 22.1097C5.0054 21.864 5.23115 21.627 5.44251 21.4157ZM14.3545 10.2843C15.5895 9.04843 16.7463 8.61844 17.5331 8.54066C17.6141 8.63334 17.6912 8.72735 17.7658 8.82171C17.1008 8.83212 15.9551 9.14896 14.6784 10.3789C14.5718 10.3452 14.4638 10.3138 14.3545 10.2843ZM13.0929 10.0543C14.5016 8.51106 15.8977 7.94567 16.8018 7.81353C16.9022 7.90044 16.9986 7.98899 17.0918 8.0787C16.3337 8.12215 14.9259 8.55749 13.4562 10.0985C13.4106 10.0919 13.3646 10.0842 13.3187 10.0785C13.243 10.069 13.1676 10.0615 13.0929 10.0543ZM11.8141 10.0391C13.3052 8.31376 14.8387 7.45095 15.8275 7.09745C15.9347 7.16436 16.039 7.23255 16.1403 7.30254C15.2705 7.56843 13.743 8.33626 12.2215 10.0198C12.0835 10.0224 11.9477 10.0292 11.8141 10.0391ZM10.221 10.3354C11.3055 8.92239 12.3377 7.9482 13.2048 7.30185C13.7266 6.91296 14.1915 6.64177 14.5721 6.46354C14.6978 6.50917 14.8247 6.56021 14.9519 6.6196C14.5642 6.77163 14.0232 7.05874 13.3802 7.53801C12.5994 8.11999 11.6738 8.98108 10.6926 10.2104C10.5312 10.2479 10.3738 10.289 10.221 10.3354ZM8.91866 10.8685C10.2377 8.61145 12.1707 7.01839 13.4127 6.22116C13.5688 6.23048 13.7264 6.24829 13.8857 6.27709C12.7794 6.92792 10.8146 8.43148 9.4117 10.6337C9.23999 10.708 9.07566 10.7869 8.91866 10.8685ZM7.63289 11.7054C7.77812 10.6889 8.85817 8.45515 12.1179 6.35167C12.2666 6.31309 12.4172 6.28134 12.5702 6.25845L12.64 6.37239C9.47805 8.30578 8.29136 10.364 7.99128 11.434C7.86296 11.5251 7.7437 11.6165 7.63289 11.7054Z" fill="#00D4FF"/>
6
+ <path d="M92.2734 29.5387V10.4049H97.8776C99.1176 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.2734ZM95.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"/>
7
+ <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"/>
8
+ <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"/>
9
+ <path d="M46.0375 29.5387V14.0744H41.6258V10.4049H54.0264V14.0744H49.6146V29.5387H46.0375Z" fill="white"/>
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_2297_15673">
13
+ <rect width="104.276" height="40.2147" fill="white"/>
14
+ </clipPath>
15
+ </defs>
16
+ </svg>
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * SNAPSHOT — TRDR Design Tokens
3
3
  * Sincronizado de: https://trdr.mrocontent.com.br/tokens.css
4
- * Em: 2026-05-12T15:40:04.662Z
4
+ * Em: 2026-05-12T20:19:03.361Z
5
5
  * Não edite manualmente — atualize via "npm run sync-tokens"
6
6
  */
7
7