@anyknown/ui 0.7.0 → 0.8.0

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.
Files changed (57) hide show
  1. package/README.md +7 -8
  2. package/dist/brand.css +101 -214
  3. package/dist/components/button/Button.d.ts +3 -2
  4. package/dist/components/button/Button.js +32 -48
  5. package/dist/components/checkbox/Checkbox.js +24 -48
  6. package/dist/components/dialog/Dialog.js +1 -1
  7. package/dist/components/empty-state/EmptyState.js +1 -1
  8. package/dist/components/ghost/Ghost.d.ts +16 -0
  9. package/dist/components/ghost/Ghost.js +50 -0
  10. package/dist/components/group/Group.d.ts +66 -0
  11. package/dist/components/group/Group.js +166 -0
  12. package/dist/components/handoff-receipt/HandoffReceipt.js +12 -42
  13. package/dist/components/icon/Chevron.d.ts +9 -0
  14. package/dist/components/icon/Chevron.js +6 -0
  15. package/dist/components/icon/icon.d.ts +35 -0
  16. package/dist/components/icon/icon.js +10 -0
  17. package/dist/components/icon-button/IconButton.d.ts +17 -0
  18. package/dist/components/icon-button/IconButton.js +66 -0
  19. package/dist/components/page/Page.d.ts +64 -0
  20. package/dist/components/page/Page.js +163 -0
  21. package/dist/components/popover/Popover.js +1 -1
  22. package/dist/components/progress/Progress.js +49 -104
  23. package/dist/components/radio/Radio.js +17 -28
  24. package/dist/components/segmented/Segmented.d.ts +12 -0
  25. package/dist/components/segmented/Segmented.js +43 -0
  26. package/dist/components/settings-rows/SettingsRows.d.ts +25 -0
  27. package/dist/components/settings-rows/SettingsRows.js +63 -0
  28. package/dist/components/spin/Spin.d.ts +5 -0
  29. package/dist/components/spin/Spin.js +25 -0
  30. package/dist/components/status-chip/StatusChip.d.ts +18 -0
  31. package/dist/components/status-chip/StatusChip.js +68 -0
  32. package/dist/components/switch/Switch.js +20 -63
  33. package/dist/components/table/Table.d.ts +39 -0
  34. package/dist/components/table/Table.js +125 -0
  35. package/dist/components/table/TableCells.d.ts +52 -0
  36. package/dist/components/table/TableCells.js +103 -0
  37. package/dist/components/tabs/Tabs.js +16 -48
  38. package/dist/components/text/Text.js +2 -2
  39. package/dist/components/toast/Toast.js +7 -8
  40. package/dist/index.d.ts +11 -0
  41. package/dist/index.js +11 -0
  42. package/dist/themes.stylex.d.ts +33 -496
  43. package/dist/themes.stylex.js +25 -253
  44. package/dist/tokens.css +53 -126
  45. package/dist/tokens.stylex.d.ts +36 -54
  46. package/dist/tokens.stylex.js +62 -90
  47. package/package.json +1 -1
  48. package/dist/lib/paths.d.ts +0 -3
  49. package/dist/lib/paths.js +0 -11
  50. package/dist/lib/progress.d.ts +0 -2
  51. package/dist/lib/progress.js +0 -28
  52. package/dist/lib/silk.d.ts +0 -66
  53. package/dist/lib/silk.js +0 -337
  54. package/dist/lib/svgId.d.ts +0 -1
  55. package/dist/lib/svgId.js +0 -4
  56. package/dist/lib/weave.d.ts +0 -28
  57. package/dist/lib/weave.js +0 -83
package/dist/brand.css CHANGED
@@ -7,8 +7,8 @@
7
7
  * 每個 class 上面一行「//」註解是它的用途,design.md 的詞彙表從這裡掃出來。
8
8
  * 詞彙刻意小,不在這裡的 class 就是不准用;要新的排版需求先回來改這份,再改 DESIGN.md。 */
9
9
 
10
- @import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@100..900&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");
11
- /* Ledger tokens as plain CSS variables — for non-StyleX consumers
10
+ @import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@100..900&display=swap");
11
+ /* Tokens as plain CSS variables — for non-StyleX consumers
12
12
  * (desktop uses Tailwind v4 @theme; reference these vars there).
13
13
  * Source of truth: tokens.stylex.ts. Keep values in sync manually for now. */
14
14
 
@@ -18,41 +18,41 @@ html {
18
18
  }
19
19
 
20
20
  :root {
21
- --ak-bg: #fafaf6;
22
- --ak-surface: #ffffff;
21
+ --ak-bg: #ffffff;
22
+ --ak-surface: #f5f5f7;
23
23
  --ak-surface-raised: #ffffff;
24
- --ak-border: #e3e0d5;
25
- --ak-border-strong: #c8c3b4;
26
- --ak-text: #23211d;
27
- --ak-text-muted: #635d52;
28
- --ak-text-faint: #9c958a;
29
- --ak-accent: #23705a;
30
- --ak-accent-text: #fcfcf9;
31
- --ak-accent-subtle: #e7f0eb;
24
+ --ak-border: #e5e5ea;
25
+ --ak-border-strong: #c7c7cc;
26
+ --ak-text: #1d1d1f;
27
+ --ak-text-muted: #6e6e73;
28
+ --ak-text-faint: #86868b;
29
+ --ak-accent: #1d1d1f;
30
+ --ak-accent-text: #ffffff;
31
+ --ak-accent-subtle: #e8e8ed;
32
32
  --ak-danger: #b3402e;
33
33
  --ak-danger-subtle: #f7e7e3;
34
34
  --ak-success: #23705a;
35
35
  --ak-success-subtle: #e7f0eb;
36
- --ak-warning: #9a6a1b;
36
+ --ak-warning: #b25000;
37
37
  --ak-warning-subtle: #f5ebd9;
38
38
  --ak-info: #2c5c86;
39
39
  --ak-info-subtle: #e4edf5;
40
- --ak-focus-ring: #23705a;
41
- --ak-bone: #ece9df;
42
- --ak-sheen: #f6f4ec;
40
+ --ak-focus-ring: #1d1d1f;
41
+ --ak-bone: #e6e6ea;
42
+ --ak-sheen: #f2f2f5;
43
43
  --ak-success-hl: #c6e0c6;
44
44
  --ak-danger-hl: #efcec3;
45
45
 
46
- --ak-layer1: #efece3;
47
- --ak-layer2: #fafaf6;
48
- --ak-layer3: #f1efe7;
49
- --ak-layer4: #e8e5da;
50
- --ak-layer5: #dedacd;
46
+ --ak-layer1: #efeff2;
47
+ --ak-layer2: #ffffff;
48
+ --ak-layer3: #f2f2f5;
49
+ --ak-layer4: #e6e6ea;
50
+ --ak-layer5: #d9d9de;
51
51
 
52
52
  --ak-shadow-popover: 0 8px 24px rgba(35, 33, 29, 0.1);
53
53
  --ak-shadow-raised: 0 1px 2px rgba(35, 33, 29, 0.08);
54
54
 
55
- --ak-font-display: "Newsreader Variable", Georgia, "Times New Roman", serif;
55
+ --ak-font-display: "Geist Variable", system-ui, sans-serif;
56
56
  --ak-font-body: "Geist Variable", system-ui, sans-serif;
57
57
  --ak-font-mono: "Geist Mono Variable", ui-monospace, monospace;
58
58
 
@@ -72,103 +72,6 @@ html {
72
72
 
73
73
  @media (prefers-color-scheme: dark) {
74
74
  :root:not([data-theme="light"]) {
75
- --ak-bg: #181613;
76
- --ak-surface: #201d18;
77
- --ak-surface-raised: #282420;
78
- --ak-border: #35302a;
79
- --ak-border-strong: #4a443c;
80
- --ak-text: #eae6dc;
81
- --ak-text-muted: #b0a697;
82
- --ak-text-faint: #736a5d;
83
- --ak-accent: #4fa184;
84
- --ak-accent-text: #14120f;
85
- --ak-accent-subtle: #22352e;
86
- --ak-danger: #dd7059;
87
- --ak-danger-subtle: #3d231e;
88
- --ak-success: #4fa184;
89
- --ak-success-subtle: #22352e;
90
- --ak-warning: #d9a254;
91
- --ak-warning-subtle: #3a2f1d;
92
- --ak-info: #6fa3ce;
93
- --ak-info-subtle: #1e2c38;
94
- --ak-focus-ring: #4fa184;
95
- --ak-bone: #2a2620;
96
- --ak-sheen: #35302a;
97
- --ak-success-hl: #2f4a2e;
98
- --ak-danger-hl: #573328;
99
-
100
- --ak-layer1: #0e0c09;
101
- --ak-layer2: #181613;
102
- --ak-layer3: #211e19;
103
- --ak-layer4: #2b2721;
104
- --ak-layer5: #35302a;
105
-
106
- --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
107
- --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
108
- }
109
- }
110
-
111
- [data-theme="dark"] {
112
- --ak-layer1: #0e0c09;
113
- --ak-layer2: #181613;
114
- --ak-layer3: #211e19;
115
- --ak-layer4: #2b2721;
116
- --ak-layer5: #35302a;
117
- --ak-bone: #2a2620;
118
- --ak-sheen: #35302a;
119
- --ak-success-hl: #2f4a2e;
120
- --ak-danger-hl: #573328;
121
- --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
122
- --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
123
- --ak-bg: #181613;
124
- --ak-surface: #201d18;
125
- --ak-surface-raised: #282420;
126
- --ak-border: #35302a;
127
- --ak-border-strong: #4a443c;
128
- --ak-text: #eae6dc;
129
- --ak-text-muted: #b0a697;
130
- --ak-text-faint: #736a5d;
131
- --ak-accent: #4fa184;
132
- --ak-accent-text: #14120f;
133
- --ak-accent-subtle: #22352e;
134
- --ak-danger: #dd7059;
135
- --ak-danger-subtle: #3d231e;
136
- --ak-success: #4fa184;
137
- --ak-success-subtle: #22352e;
138
- --ak-warning: #d9a254;
139
- --ak-warning-subtle: #3a2f1d;
140
- --ak-info: #6fa3ce;
141
- --ak-info-subtle: #1e2c38;
142
- --ak-focus-ring: #4fa184;
143
- }
144
-
145
- /* neutral palette:紙與墨換一套,語意色(danger / success / info)不換。
146
- * 掛在 <html> 上:data-palette="neutral";亮暗照樣跟系統,data-theme 才鎖。 */
147
- [data-palette="neutral"] {
148
- --ak-bg: #ffffff;
149
- --ak-surface: #f5f5f7;
150
- --ak-surface-raised: #ffffff;
151
- --ak-border: #e5e5ea;
152
- --ak-border-strong: #c7c7cc;
153
- --ak-text: #1d1d1f;
154
- --ak-text-muted: #6e6e73;
155
- --ak-text-faint: #86868b;
156
- --ak-accent: #1d1d1f;
157
- --ak-accent-text: #ffffff;
158
- --ak-accent-subtle: #e8e8ed;
159
- --ak-warning: #b25000;
160
- --ak-focus-ring: #1d1d1f;
161
- --ak-bone: #e6e6ea;
162
- --ak-sheen: #f2f2f5;
163
- --ak-layer1: #efeff2;
164
- --ak-layer2: #ffffff;
165
- --ak-layer3: #f2f2f5;
166
- --ak-layer4: #e6e6ea;
167
- --ak-layer5: #d9d9de;
168
- }
169
-
170
- @media (prefers-color-scheme: dark) {
171
- [data-palette="neutral"]:not([data-theme="light"]) {
172
75
  --ak-bg: #000000;
173
76
  --ak-surface: #1c1c1e;
174
77
  --ak-surface-raised: #2c2c2e;
@@ -180,19 +83,43 @@ html {
180
83
  --ak-accent: #f5f5f7;
181
84
  --ak-accent-text: #000000;
182
85
  --ak-accent-subtle: #2c2c2e;
86
+ --ak-danger: #dd7059;
87
+ --ak-danger-subtle: #3d231e;
88
+ --ak-success: #4fa184;
89
+ --ak-success-subtle: #22352e;
183
90
  --ak-warning: #ffb340;
91
+ --ak-warning-subtle: #3a2f1d;
92
+ --ak-info: #6fa3ce;
93
+ --ak-info-subtle: #1e2c38;
184
94
  --ak-focus-ring: #f5f5f7;
185
95
  --ak-bone: #2c2c2e;
186
96
  --ak-sheen: #3f3f42;
97
+ --ak-success-hl: #2f4a2e;
98
+ --ak-danger-hl: #573328;
99
+
187
100
  --ak-layer1: #000000;
188
101
  --ak-layer2: #161618;
189
102
  --ak-layer3: #242426;
190
103
  --ak-layer4: #323234;
191
104
  --ak-layer5: #3f3f42;
105
+
106
+ --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
107
+ --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
192
108
  }
193
109
  }
194
110
 
195
- [data-palette="neutral"][data-theme="dark"] {
111
+ [data-theme="dark"] {
112
+ --ak-layer1: #000000;
113
+ --ak-layer2: #161618;
114
+ --ak-layer3: #242426;
115
+ --ak-layer4: #323234;
116
+ --ak-layer5: #3f3f42;
117
+ --ak-bone: #2c2c2e;
118
+ --ak-sheen: #3f3f42;
119
+ --ak-success-hl: #2f4a2e;
120
+ --ak-danger-hl: #573328;
121
+ --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
122
+ --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
196
123
  --ak-bg: #000000;
197
124
  --ak-surface: #1c1c1e;
198
125
  --ak-surface-raised: #2c2c2e;
@@ -204,76 +131,52 @@ html {
204
131
  --ak-accent: #f5f5f7;
205
132
  --ak-accent-text: #000000;
206
133
  --ak-accent-subtle: #2c2c2e;
134
+ --ak-danger: #dd7059;
135
+ --ak-danger-subtle: #3d231e;
136
+ --ak-success: #4fa184;
137
+ --ak-success-subtle: #22352e;
207
138
  --ak-warning: #ffb340;
139
+ --ak-warning-subtle: #3a2f1d;
140
+ --ak-info: #6fa3ce;
141
+ --ak-info-subtle: #1e2c38;
208
142
  --ak-focus-ring: #f5f5f7;
209
- --ak-bone: #2c2c2e;
210
- --ak-sheen: #3f3f42;
211
- --ak-layer1: #000000;
212
- --ak-layer2: #161618;
213
- --ak-layer3: #242426;
214
- --ak-layer4: #323234;
215
- --ak-layer5: #3f3f42;
216
- }
217
- /* 織體與手動主題:由 scripts/brand-css.mjs 生成 */
218
- :root {
219
- --ak-weave-primary-light: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 36' preserveAspectRatio='none'%3e%3crect width='120' height='36' fill='%2311362C'/%3e%3cg fill='none' stroke-linecap='round'%3e%3cg stroke='%23123C31' opacity='.5'%3e%3cpath d='M-4.0,0.8L0.0,0.9L4.0,1.0L8.0,1.0L12.0,1.1L16.0,1.2L20.0,1.3L24.0,1.4L28.0,1.5L32.0,1.5L36.0,1.6L40.0,1.7L44.0,1.7L48.0,1.8L52.0,1.8L56.0,1.8L60.0,1.8L64.0,1.8L68.0,1.8L72.0,1.7L76.0,1.7L80.0,1.6L84.0,1.5L88.0,1.5L92.0,1.4L96.0,1.3L100.0,1.2L104.0,1.2L108.0,1.1L112.0,1.1L116.0,1.0L120.0,1.0L124.0,1.0' stroke-width='0.78'/%3e%3cpath d='M-4.0,3.3L0.0,3.4L4.0,3.4L8.0,3.5L12.0,3.6L16.0,3.7L20.0,3.8L24.0,3.9L28.0,4.0L32.0,4.0L36.0,4.1L40.0,4.1L44.0,4.2L48.0,4.2L52.0,4.2L56.0,4.2L60.0,4.2L64.0,4.2L68.0,4.1L72.0,4.1L76.0,4.0L80.0,3.9L84.0,3.9L88.0,3.8L92.0,3.7L96.0,3.6L100.0,3.6L104.0,3.5L108.0,3.4L112.0,3.4L116.0,3.4L120.0,3.4L124.0,3.4' stroke-width='0.59'/%3e%3cpath d='M-4.0,5.8L0.0,5.8L4.0,5.9L8.0,6.0L12.0,6.1L16.0,6.2L20.0,6.3L24.0,6.4L28.0,6.4L32.0,6.5L36.0,6.5L40.0,6.6L44.0,6.6L48.0,6.6L52.0,6.6L56.0,6.6L60.0,6.6L64.0,6.5L68.0,6.5L72.0,6.4L76.0,6.3L80.0,6.3L84.0,6.2L88.0,6.1L92.0,6.0L96.0,5.9L100.0,5.9L104.0,5.8L108.0,5.8L112.0,5.7L116.0,5.7L120.0,5.7L124.0,5.8' stroke-width='0.55'/%3e%3cpath d='M-4.0,8.3L0.0,8.3L4.0,8.4L8.0,8.5L12.0,8.6L16.0,8.7L20.0,8.8L24.0,8.8L28.0,8.9L32.0,8.9L36.0,9.0L40.0,9.0L44.0,9.0L48.0,9.0L52.0,9.0L56.0,9.0L60.0,8.9L64.0,8.9L68.0,8.8L72.0,8.7L76.0,8.6L80.0,8.6L84.0,8.5L88.0,8.4L92.0,8.3L96.0,8.3L100.0,8.2L104.0,8.2L108.0,8.1L112.0,8.1L116.0,8.1L120.0,8.1L124.0,8.2' stroke-width='0.78'/%3e%3cpath d='M-4.0,10.7L0.0,10.8L4.0,10.9L8.0,11.0L12.0,11.1L16.0,11.2L20.0,11.2L24.0,11.3L28.0,11.3L32.0,11.4L36.0,11.4L40.0,11.4L44.0,11.4L48.0,11.4L52.0,11.4L56.0,11.3L60.0,11.3L64.0,11.2L68.0,11.1L72.0,11.0L76.0,11.0L80.0,10.9L84.0,10.8L88.0,10.7L92.0,10.6L96.0,10.6L100.0,10.5L104.0,10.5L108.0,10.5L112.0,10.5L116.0,10.5L120.0,10.6L124.0,10.6' stroke-width='0.78'/%3e%3cpath d='M-4.0,13.2L0.0,13.3L4.0,13.4L8.0,13.5L12.0,13.6L16.0,13.6L20.0,13.7L24.0,13.7L28.0,13.8L32.0,13.8L36.0,13.8L40.0,13.8L44.0,13.8L48.0,13.8L52.0,13.7L56.0,13.6L60.0,13.6L64.0,13.5L68.0,13.4L72.0,13.3L76.0,13.3L80.0,13.2L84.0,13.1L88.0,13.0L92.0,13.0L96.0,12.9L100.0,12.9L104.0,12.9L108.0,12.9L112.0,12.9L116.0,12.9L120.0,13.0L124.0,13.1' stroke-width='0.67'/%3e%3cpath d='M-4.0,15.7L0.0,15.8L4.0,15.9L8.0,16.0L12.0,16.0L16.0,16.1L20.0,16.1L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.0L56.0,16.0L60.0,15.9L64.0,15.8L68.0,15.7L72.0,15.6L76.0,15.6L80.0,15.5L84.0,15.4L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.3L116.0,15.4L120.0,15.4L124.0,15.5' stroke-width='0.79'/%3e%3cpath d='M-4.0,18.2L0.0,18.3L4.0,18.4L8.0,18.4L12.0,18.5L16.0,18.6L20.0,18.6L24.0,18.6L28.0,18.6L32.0,18.6L36.0,18.6L40.0,18.5L44.0,18.5L48.0,18.4L52.0,18.4L56.0,18.3L60.0,18.2L64.0,18.1L68.0,18.0L72.0,18.0L76.0,17.9L80.0,17.8L84.0,17.7L88.0,17.7L92.0,17.7L96.0,17.6L100.0,17.6L104.0,17.7L108.0,17.7L112.0,17.8L116.0,17.8L120.0,17.9L124.0,18.0' stroke-width='0.61'/%3e%3cpath d='M-4.0,20.7L0.0,20.8L4.0,20.9L8.0,20.9L12.0,21.0L16.0,21.0L20.0,21.0L24.0,21.0L28.0,21.0L32.0,21.0L36.0,20.9L40.0,20.9L44.0,20.8L48.0,20.8L52.0,20.7L56.0,20.6L60.0,20.5L64.0,20.4L68.0,20.3L72.0,20.3L76.0,20.2L80.0,20.1L84.0,20.1L88.0,20.0L92.0,20.0L96.0,20.0L100.0,20.0L104.0,20.1L108.0,20.1L112.0,20.2L116.0,20.3L120.0,20.4L124.0,20.5' stroke-width='0.60'/%3e%3cpath d='M-4.0,23.2L0.0,23.3L4.0,23.3L8.0,23.4L12.0,23.4L16.0,23.4L20.0,23.4L24.0,23.4L28.0,23.4L32.0,23.3L36.0,23.3L40.0,23.2L44.0,23.2L48.0,23.1L52.0,23.0L56.0,22.9L60.0,22.8L64.0,22.7L68.0,22.7L72.0,22.6L76.0,22.5L80.0,22.5L84.0,22.4L88.0,22.4L92.0,22.4L96.0,22.4L100.0,22.5L104.0,22.5L108.0,22.6L112.0,22.7L116.0,22.8L120.0,22.9L124.0,23.0' stroke-width='0.80'/%3e%3cpath d='M-4.0,25.7L0.0,25.7L4.0,25.8L8.0,25.8L12.0,25.8L16.0,25.8L20.0,25.8L24.0,25.8L28.0,25.7L32.0,25.7L36.0,25.6L40.0,25.6L44.0,25.5L48.0,25.4L52.0,25.3L56.0,25.2L60.0,25.1L64.0,25.0L68.0,25.0L72.0,24.9L76.0,24.8L80.0,24.8L84.0,24.8L88.0,24.8L92.0,24.8L96.0,24.8L100.0,24.9L104.0,25.0L108.0,25.0L112.0,25.2L116.0,25.3L120.0,25.4L124.0,25.6' stroke-width='0.58'/%3e%3cpath d='M-4.0,28.1L0.0,28.2L4.0,28.2L8.0,28.2L12.0,28.2L16.0,28.2L20.0,28.2L24.0,28.1L28.0,28.1L32.0,28.0L36.0,28.0L40.0,27.9L44.0,27.8L48.0,27.7L52.0,27.6L56.0,27.5L60.0,27.4L64.0,27.4L68.0,27.3L72.0,27.2L76.0,27.2L80.0,27.2L84.0,27.2L88.0,27.2L92.0,27.2L96.0,27.3L100.0,27.3L104.0,27.4L108.0,27.5L112.0,27.7L116.0,27.8L120.0,27.9L124.0,28.1' stroke-width='0.70'/%3e%3cpath d='M-4.0,30.6L0.0,30.6L4.0,30.6L8.0,30.6L12.0,30.6L16.0,30.6L20.0,30.6L24.0,30.5L28.0,30.4L32.0,30.4L36.0,30.3L40.0,30.2L44.0,30.1L48.0,30.0L52.0,29.9L56.0,29.8L60.0,29.7L64.0,29.7L68.0,29.6L72.0,29.6L76.0,29.5L80.0,29.5L84.0,29.6L88.0,29.6L92.0,29.6L96.0,29.7L100.0,29.8L104.0,29.9L108.0,30.0L112.0,30.2L116.0,30.3L120.0,30.5L124.0,30.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,33.0L0.0,33.0L4.0,33.0L8.0,33.0L12.0,33.0L16.0,33.0L20.0,32.9L24.0,32.8L28.0,32.8L32.0,32.7L36.0,32.6L40.0,32.5L44.0,32.4L48.0,32.3L52.0,32.2L56.0,32.1L60.0,32.1L64.0,32.0L68.0,32.0L72.0,31.9L76.0,31.9L80.0,31.9L84.0,32.0L88.0,32.0L92.0,32.1L96.0,32.2L100.0,32.3L104.0,32.4L108.0,32.5L112.0,32.7L116.0,32.8L120.0,33.0L124.0,33.2' stroke-width='0.70'/%3e%3cpath d='M-4.0,35.4L0.0,35.4L4.0,35.4L8.0,35.4L12.0,35.4L16.0,35.3L20.0,35.2L24.0,35.2L28.0,35.1L32.0,35.0L36.0,34.9L40.0,34.8L44.0,34.7L48.0,34.6L52.0,34.5L56.0,34.4L60.0,34.4L64.0,34.3L68.0,34.3L72.0,34.3L76.0,34.3L80.0,34.3L84.0,34.4L88.0,34.5L92.0,34.5L96.0,34.7L100.0,34.8L104.0,34.9L108.0,35.1L112.0,35.2L116.0,35.4L120.0,35.6L124.0,35.7' stroke-width='0.53'/%3e%3c/g%3e%3cg stroke='%231E6250'%3e%3c/g%3e%3cg stroke='%23216A55'%3e%3cpath d='M-4.0,26.5L0.0,26.6L4.0,26.6L8.0,26.6L12.0,26.6L16.0,26.6L20.0,26.6L24.0,26.6L28.0,26.6L32.0,26.5L36.0,26.4L40.0,26.4L44.0,26.3L48.0,26.2L52.0,26.1L56.0,26.0L60.0,25.9L64.0,25.8L68.0,25.8L72.0,25.7L76.0,25.6L80.0,25.6L84.0,25.6L88.0,25.6L92.0,25.6L96.0,25.7L100.0,25.7L104.0,25.8L108.0,25.9L112.0,26.0L116.0,26.1L120.0,26.3L124.0,26.4' stroke-width='0.76'/%3e%3cpath d='M-4.0,31.6L0.0,31.6L4.0,31.7L8.0,31.7L12.0,31.6L16.0,31.6L20.0,31.6L24.0,31.5L28.0,31.4L32.0,31.3L36.0,31.3L40.0,31.2L44.0,31.1L48.0,31.0L52.0,30.9L56.0,30.8L60.0,30.7L64.0,30.7L68.0,30.6L72.0,30.6L76.0,30.6L80.0,30.6L84.0,30.6L88.0,30.6L92.0,30.7L96.0,30.8L100.0,30.9L104.0,31.0L108.0,31.1L112.0,31.2L116.0,31.4L120.0,31.6L124.0,31.7' stroke-width='0.87'/%3e%3cpath d='M-4.0,34.0L0.0,34.0L4.0,34.0L8.0,34.0L12.0,33.9L16.0,33.9L20.0,33.8L24.0,33.7L28.0,33.7L32.0,33.6L36.0,33.5L40.0,33.4L44.0,33.3L48.0,33.2L52.0,33.1L56.0,33.0L60.0,33.0L64.0,32.9L68.0,32.9L72.0,32.9L76.0,32.8L80.0,32.9L84.0,32.9L88.0,33.0L92.0,33.0L96.0,33.1L100.0,33.2L104.0,33.4L108.0,33.5L112.0,33.7L116.0,33.8L120.0,34.0L124.0,34.2' stroke-width='0.86'/%3e%3cpath d='M-4.0,36.4L0.0,36.4L4.0,36.3L8.0,36.3L12.0,36.3L16.0,36.2L20.0,36.1L24.0,36.0L28.0,36.0L32.0,35.9L36.0,35.8L40.0,35.7L44.0,35.6L48.0,35.5L52.0,35.4L56.0,35.3L60.0,35.3L64.0,35.2L68.0,35.2L72.0,35.2L76.0,35.2L80.0,35.3L84.0,35.3L88.0,35.4L92.0,35.5L96.0,35.6L100.0,35.7L104.0,35.9L108.0,36.0L112.0,36.2L116.0,36.4L120.0,36.5L124.0,36.7' stroke-width='0.86'/%3e%3c/g%3e%3cg stroke='%2323705A'%3e%3cpath d='M-4.0,16.4L0.0,16.5L4.0,16.5L8.0,16.6L12.0,16.7L16.0,16.7L20.0,16.8L24.0,16.8L28.0,16.8L32.0,16.8L36.0,16.8L40.0,16.8L44.0,16.8L48.0,16.7L52.0,16.6L56.0,16.6L60.0,16.5L64.0,16.4L68.0,16.3L72.0,16.2L76.0,16.2L80.0,16.1L84.0,16.0L88.0,16.0L92.0,15.9L96.0,15.9L100.0,15.9L104.0,15.9L108.0,15.9L112.0,15.9L116.0,16.0L120.0,16.1L124.0,16.2' stroke-width='0.62'/%3e%3cpath d='M-4.0,17.7L0.0,17.8L4.0,17.8L8.0,17.9L12.0,18.0L16.0,18.0L20.0,18.1L24.0,18.1L28.0,18.1L32.0,18.1L36.0,18.1L40.0,18.0L44.0,18.0L48.0,17.9L52.0,17.9L56.0,17.8L60.0,17.7L64.0,17.6L68.0,17.5L72.0,17.5L76.0,17.4L80.0,17.3L84.0,17.2L88.0,17.2L92.0,17.1L96.0,17.1L100.0,17.1L104.0,17.1L108.0,17.2L112.0,17.2L116.0,17.3L120.0,17.4L124.0,17.5' stroke-width='0.66'/%3e%3cpath d='M-4.0,19.0L0.0,19.1L4.0,19.1L8.0,19.2L12.0,19.3L16.0,19.3L20.0,19.3L24.0,19.3L28.0,19.4L32.0,19.3L36.0,19.3L40.0,19.3L44.0,19.2L48.0,19.2L52.0,19.1L56.0,19.0L60.0,18.9L64.0,18.8L68.0,18.7L72.0,18.7L76.0,18.6L80.0,18.5L84.0,18.5L88.0,18.4L92.0,18.4L96.0,18.4L100.0,18.4L104.0,18.4L108.0,18.4L112.0,18.5L116.0,18.6L120.0,18.7L124.0,18.8' stroke-width='0.79'/%3e%3cpath d='M-4.0,22.8L0.0,22.8L4.0,22.9L8.0,22.9L12.0,23.0L16.0,23.0L20.0,23.0L24.0,23.0L28.0,23.0L32.0,22.9L36.0,22.9L40.0,22.8L44.0,22.8L48.0,22.7L52.0,22.6L56.0,22.5L60.0,22.4L64.0,22.3L68.0,22.3L72.0,22.2L76.0,22.1L80.0,22.1L84.0,22.0L88.0,22.0L92.0,22.0L96.0,22.0L100.0,22.0L104.0,22.1L108.0,22.2L112.0,22.2L116.0,22.3L120.0,22.5L124.0,22.6' stroke-width='1.18'/%3e%3cpath d='M-4.0,23.9L0.0,23.9L4.0,24.0L8.0,24.0L12.0,24.1L16.0,24.1L20.0,24.1L24.0,24.1L28.0,24.0L32.0,24.0L36.0,23.9L40.0,23.9L44.0,23.8L48.0,23.7L52.0,23.6L56.0,23.6L60.0,23.5L64.0,23.4L68.0,23.3L72.0,23.2L76.0,23.2L80.0,23.1L84.0,23.1L88.0,23.1L92.0,23.1L96.0,23.1L100.0,23.1L104.0,23.2L108.0,23.3L112.0,23.4L116.0,23.5L120.0,23.6L124.0,23.7' stroke-width='0.84'/%3e%3cpath d='M-4.0,27.9L0.0,27.9L4.0,28.0L8.0,28.0L12.0,28.0L16.0,28.0L20.0,28.0L24.0,27.9L28.0,27.9L32.0,27.8L36.0,27.7L40.0,27.6L44.0,27.6L48.0,27.5L52.0,27.4L56.0,27.3L60.0,27.2L64.0,27.1L68.0,27.1L72.0,27.0L76.0,27.0L80.0,26.9L84.0,26.9L88.0,26.9L92.0,27.0L96.0,27.0L100.0,27.1L104.0,27.2L108.0,27.3L112.0,27.4L116.0,27.5L120.0,27.7L124.0,27.8' stroke-width='1.31'/%3e%3cpath d='M-4.0,29.2L0.0,29.2L4.0,29.2L8.0,29.2L12.0,29.2L16.0,29.2L20.0,29.2L24.0,29.1L28.0,29.1L32.0,29.0L36.0,28.9L40.0,28.8L44.0,28.7L48.0,28.7L52.0,28.6L56.0,28.5L60.0,28.4L64.0,28.3L68.0,28.3L72.0,28.2L76.0,28.2L80.0,28.2L84.0,28.2L88.0,28.2L92.0,28.2L96.0,28.3L100.0,28.4L104.0,28.5L108.0,28.6L112.0,28.7L116.0,28.8L120.0,29.0L124.0,29.1' stroke-width='1.29'/%3e%3cpath d='M-4.0,30.5L0.0,30.5L4.0,30.5L8.0,30.5L12.0,30.5L16.0,30.5L20.0,30.5L24.0,30.4L28.0,30.3L32.0,30.3L36.0,30.2L40.0,30.1L44.0,30.0L48.0,29.9L52.0,29.8L56.0,29.7L60.0,29.7L64.0,29.6L68.0,29.5L72.0,29.5L76.0,29.5L80.0,29.5L84.0,29.5L88.0,29.5L92.0,29.5L96.0,29.6L100.0,29.7L104.0,29.8L108.0,29.9L112.0,30.1L116.0,30.2L120.0,30.4L124.0,30.5' stroke-width='0.89'/%3e%3cpath d='M-4.0,32.7L0.0,32.7L4.0,32.7L8.0,32.7L12.0,32.7L16.0,32.7L20.0,32.6L24.0,32.6L28.0,32.5L32.0,32.4L36.0,32.3L40.0,32.2L44.0,32.1L48.0,32.0L52.0,31.9L56.0,31.9L60.0,31.8L64.0,31.7L68.0,31.7L72.0,31.6L76.0,31.6L80.0,31.6L84.0,31.7L88.0,31.7L92.0,31.8L96.0,31.9L100.0,32.0L104.0,32.1L108.0,32.2L112.0,32.4L116.0,32.5L120.0,32.7L124.0,32.9' stroke-width='0.66'/%3e%3cpath d='M-4.0,35.2L0.0,35.2L4.0,35.2L8.0,35.1L12.0,35.1L16.0,35.0L20.0,35.0L24.0,34.9L28.0,34.8L32.0,34.7L36.0,34.6L40.0,34.5L44.0,34.4L48.0,34.3L52.0,34.3L56.0,34.2L60.0,34.1L64.0,34.1L68.0,34.0L72.0,34.0L76.0,34.0L80.0,34.1L84.0,34.1L88.0,34.2L92.0,34.3L96.0,34.4L100.0,34.5L104.0,34.6L108.0,34.8L112.0,34.9L116.0,35.1L120.0,35.3L124.0,35.4' stroke-width='0.70'/%3e%3c/g%3e%3cg stroke='%2328795F'%3e%3cpath d='M-4.0,2.2L0.0,2.3L4.0,2.3L8.0,2.4L12.0,2.5L16.0,2.6L20.0,2.7L24.0,2.8L28.0,2.8L32.0,2.9L36.0,3.0L40.0,3.0L44.0,3.1L48.0,3.1L52.0,3.1L56.0,3.1L60.0,3.1L64.0,3.1L68.0,3.1L72.0,3.0L76.0,3.0L80.0,2.9L84.0,2.8L88.0,2.7L92.0,2.7L96.0,2.6L100.0,2.5L104.0,2.4L108.0,2.4L112.0,2.3L116.0,2.3L120.0,2.3L124.0,2.3' stroke-width='0.91'/%3e%3cpath d='M-4.0,9.8L0.0,9.8L4.0,9.9L8.0,10.0L12.0,10.1L16.0,10.2L20.0,10.3L24.0,10.3L28.0,10.4L32.0,10.4L36.0,10.5L40.0,10.5L44.0,10.5L48.0,10.5L52.0,10.4L56.0,10.4L60.0,10.3L64.0,10.3L68.0,10.2L72.0,10.1L76.0,10.0L80.0,10.0L84.0,9.9L88.0,9.8L92.0,9.7L96.0,9.7L100.0,9.6L104.0,9.6L108.0,9.6L112.0,9.6L116.0,9.6L120.0,9.6L124.0,9.7' stroke-width='1.37'/%3e%3cpath d='M-4.0,13.8L0.0,13.9L4.0,13.9L8.0,14.0L12.0,14.1L16.0,14.2L20.0,14.2L24.0,14.3L28.0,14.3L32.0,14.3L36.0,14.3L40.0,14.3L44.0,14.3L48.0,14.3L52.0,14.2L56.0,14.2L60.0,14.1L64.0,14.0L68.0,13.9L72.0,13.8L76.0,13.8L80.0,13.7L84.0,13.6L88.0,13.5L92.0,13.5L96.0,13.4L100.0,13.4L104.0,13.4L108.0,13.4L112.0,13.4L116.0,13.5L120.0,13.5L124.0,13.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,15.1L0.0,15.2L4.0,15.3L8.0,15.4L12.0,15.5L16.0,15.5L20.0,15.6L24.0,15.6L28.0,15.6L32.0,15.6L36.0,15.6L40.0,15.6L44.0,15.6L48.0,15.6L52.0,15.5L56.0,15.4L60.0,15.4L64.0,15.3L68.0,15.2L72.0,15.1L76.0,15.0L80.0,14.9L84.0,14.9L88.0,14.8L92.0,14.8L96.0,14.7L100.0,14.7L104.0,14.7L108.0,14.7L112.0,14.7L116.0,14.8L120.0,14.9L124.0,15.0' stroke-width='0.85'/%3e%3cpath d='M-4.0,20.3L0.0,20.4L4.0,20.5L8.0,20.5L12.0,20.6L16.0,20.6L20.0,20.7L24.0,20.7L28.0,20.7L32.0,20.6L36.0,20.6L40.0,20.5L44.0,20.5L48.0,20.4L52.0,20.3L56.0,20.3L60.0,20.2L64.0,20.1L68.0,20.0L72.0,19.9L76.0,19.8L80.0,19.8L84.0,19.7L88.0,19.7L92.0,19.7L96.0,19.7L100.0,19.7L104.0,19.7L108.0,19.8L112.0,19.8L116.0,19.9L120.0,20.0L124.0,20.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,21.5L0.0,21.6L4.0,21.7L8.0,21.7L12.0,21.8L16.0,21.8L20.0,21.8L24.0,21.8L28.0,21.8L32.0,21.8L36.0,21.7L40.0,21.7L44.0,21.6L48.0,21.5L52.0,21.5L56.0,21.4L60.0,21.3L64.0,21.2L68.0,21.1L72.0,21.0L76.0,21.0L80.0,20.9L84.0,20.9L88.0,20.8L92.0,20.8L96.0,20.8L100.0,20.8L104.0,20.9L108.0,20.9L112.0,21.0L116.0,21.1L120.0,21.2L124.0,21.4' stroke-width='1.29'/%3e%3cpath d='M-4.0,25.2L0.0,25.3L4.0,25.3L8.0,25.4L12.0,25.4L16.0,25.4L20.0,25.4L24.0,25.4L28.0,25.3L32.0,25.3L36.0,25.2L40.0,25.1L44.0,25.1L48.0,25.0L52.0,24.9L56.0,24.8L60.0,24.7L64.0,24.6L68.0,24.6L72.0,24.5L76.0,24.4L80.0,24.4L84.0,24.4L88.0,24.4L92.0,24.4L96.0,24.4L100.0,24.4L104.0,24.5L108.0,24.6L112.0,24.7L116.0,24.8L120.0,25.0L124.0,25.1' stroke-width='0.62'/%3e%3c/g%3e%3cg stroke='%232E8266'%3e%3cpath d='M-4.0,-0.1L0.0,-0.1L4.0,-0.0L8.0,0.0L12.0,0.1L16.0,0.2L20.0,0.2L24.0,0.3L28.0,0.4L32.0,0.5L36.0,0.6L40.0,0.7L44.0,0.7L48.0,0.8L52.0,0.8L56.0,0.8L60.0,0.8L64.0,0.8L68.0,0.8L72.0,0.8L76.0,0.7L80.0,0.6L84.0,0.6L88.0,0.5L92.0,0.4L96.0,0.4L100.0,0.3L104.0,0.2L108.0,0.1L112.0,0.1L116.0,0.0L120.0,0.0L124.0,0.0' stroke-width='0.94'/%3e%3cpath d='M-4.0,1.0L0.0,1.1L4.0,1.1L8.0,1.2L12.0,1.3L16.0,1.4L20.0,1.5L24.0,1.6L28.0,1.7L32.0,1.7L36.0,1.8L40.0,1.9L44.0,1.9L48.0,2.0L52.0,2.0L56.0,2.0L60.0,2.0L64.0,2.0L68.0,2.0L72.0,1.9L76.0,1.9L80.0,1.8L84.0,1.7L88.0,1.7L92.0,1.6L96.0,1.5L100.0,1.4L104.0,1.4L108.0,1.3L112.0,1.2L116.0,1.2L120.0,1.2L124.0,1.2' stroke-width='1.31'/%3e%3cpath d='M-4.0,3.5L0.0,3.6L4.0,3.7L8.0,3.8L12.0,3.9L16.0,3.9L20.0,4.0L24.0,4.1L28.0,4.2L32.0,4.3L36.0,4.3L40.0,4.4L44.0,4.4L48.0,4.5L52.0,4.5L56.0,4.5L60.0,4.4L64.0,4.4L68.0,4.4L72.0,4.3L76.0,4.2L80.0,4.2L84.0,4.1L88.0,4.0L92.0,3.9L96.0,3.9L100.0,3.8L104.0,3.7L108.0,3.7L112.0,3.6L116.0,3.6L120.0,3.6L124.0,3.6' stroke-width='0.90'/%3e%3cpath d='M-4.0,4.7L0.0,4.8L4.0,4.9L8.0,5.0L12.0,5.1L16.0,5.1L20.0,5.2L24.0,5.3L28.0,5.4L32.0,5.5L36.0,5.5L40.0,5.6L44.0,5.6L48.0,5.6L52.0,5.6L56.0,5.6L60.0,5.6L64.0,5.5L68.0,5.5L72.0,5.4L76.0,5.4L80.0,5.3L84.0,5.2L88.0,5.1L92.0,5.0L96.0,5.0L100.0,4.9L104.0,4.8L108.0,4.8L112.0,4.8L116.0,4.7L120.0,4.7L124.0,4.7' stroke-width='1.03'/%3e%3cpath d='M-4.0,6.1L0.0,6.1L4.0,6.2L8.0,6.3L12.0,6.4L16.0,6.5L20.0,6.6L24.0,6.7L28.0,6.7L32.0,6.8L36.0,6.8L40.0,6.9L44.0,6.9L48.0,6.9L52.0,6.9L56.0,6.9L60.0,6.8L64.0,6.8L68.0,6.7L72.0,6.7L76.0,6.6L80.0,6.5L84.0,6.4L88.0,6.4L92.0,6.3L96.0,6.2L100.0,6.2L104.0,6.1L108.0,6.1L112.0,6.0L116.0,6.0L120.0,6.0L124.0,6.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,7.3L0.0,7.3L4.0,7.4L8.0,7.5L12.0,7.6L16.0,7.7L20.0,7.8L24.0,7.8L28.0,7.9L32.0,8.0L36.0,8.0L40.0,8.0L44.0,8.0L48.0,8.0L52.0,8.0L56.0,8.0L60.0,8.0L64.0,7.9L68.0,7.9L72.0,7.8L76.0,7.7L80.0,7.6L84.0,7.5L88.0,7.5L92.0,7.4L96.0,7.3L100.0,7.3L104.0,7.2L108.0,7.2L112.0,7.2L116.0,7.2L120.0,7.2L124.0,7.2' stroke-width='1.05'/%3e%3cpath d='M-4.0,8.5L0.0,8.5L4.0,8.6L8.0,8.7L12.0,8.8L16.0,8.9L20.0,8.9L24.0,9.0L28.0,9.1L32.0,9.1L36.0,9.2L40.0,9.2L44.0,9.2L48.0,9.2L52.0,9.2L56.0,9.1L60.0,9.1L64.0,9.0L68.0,9.0L72.0,8.9L76.0,8.8L80.0,8.7L84.0,8.7L88.0,8.6L92.0,8.5L96.0,8.4L100.0,8.4L104.0,8.3L108.0,8.3L112.0,8.3L116.0,8.3L120.0,8.3L124.0,8.4' stroke-width='0.79'/%3e%3cpath d='M-4.0,11.0L0.0,11.1L4.0,11.2L8.0,11.2L12.0,11.3L16.0,11.4L20.0,11.5L24.0,11.5L28.0,11.6L32.0,11.6L36.0,11.6L40.0,11.6L44.0,11.6L48.0,11.6L52.0,11.6L56.0,11.5L60.0,11.5L64.0,11.4L68.0,11.3L72.0,11.3L76.0,11.2L80.0,11.1L84.0,11.0L88.0,10.9L92.0,10.9L96.0,10.8L100.0,10.8L104.0,10.7L108.0,10.7L112.0,10.7L116.0,10.8L120.0,10.8L124.0,10.9' stroke-width='1.36'/%3e%3cpath d='M-4.0,12.4L0.0,12.5L4.0,12.6L8.0,12.6L12.0,12.7L16.0,12.8L20.0,12.9L24.0,12.9L28.0,12.9L32.0,13.0L36.0,13.0L40.0,13.0L44.0,13.0L48.0,12.9L52.0,12.9L56.0,12.8L60.0,12.8L64.0,12.7L68.0,12.6L72.0,12.6L76.0,12.5L80.0,12.4L84.0,12.3L88.0,12.2L92.0,12.2L96.0,12.1L100.0,12.1L104.0,12.1L108.0,12.1L112.0,12.1L116.0,12.1L120.0,12.2L124.0,12.2' stroke-width='0.73'/%3e%3c/g%3e%3cg stroke='%235CAA89' opacity='.45'%3e%3cpath d='M-4.0,15.8L0.0,15.9L4.0,15.9L8.0,16.0L12.0,16.1L16.0,16.1L20.0,16.2L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.1L56.0,16.0L60.0,15.9L64.0,15.9L68.0,15.8L72.0,15.7L76.0,15.6L80.0,15.5L84.0,15.5L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.4L116.0,15.4L120.0,15.5L124.0,15.6' stroke-width='0.69'/%3e%3cpath d='M-4.0,14.5L0.0,14.6L4.0,14.7L8.0,14.8L12.0,14.8L16.0,14.9L20.0,15.0L24.0,15.0L28.0,15.0L32.0,15.0L36.0,15.0L40.0,15.0L44.0,15.0L48.0,15.0L52.0,14.9L56.0,14.8L60.0,14.8L64.0,14.7L68.0,14.6L72.0,14.5L76.0,14.4L80.0,14.4L84.0,14.3L88.0,14.2L92.0,14.2L96.0,14.1L100.0,14.1L104.0,14.1L108.0,14.1L112.0,14.1L116.0,14.2L120.0,14.3L124.0,14.3' stroke-width='0.60'/%3e%3cpath d='M-4.0,15.4L0.0,15.5L4.0,15.5L8.0,15.6L12.0,15.7L16.0,15.7L20.0,15.8L24.0,15.8L28.0,15.9L32.0,15.9L36.0,15.9L40.0,15.8L44.0,15.8L48.0,15.8L52.0,15.7L56.0,15.6L60.0,15.6L64.0,15.5L68.0,15.4L72.0,15.3L76.0,15.2L80.0,15.1L84.0,15.1L88.0,15.0L92.0,15.0L96.0,14.9L100.0,14.9L104.0,14.9L108.0,14.9L112.0,15.0L116.0,15.0L120.0,15.1L124.0,15.2' stroke-width='0.47'/%3e%3cpath d='M-4.0,11.3L0.0,11.4L4.0,11.5L8.0,11.6L12.0,11.7L16.0,11.7L20.0,11.8L24.0,11.9L28.0,11.9L32.0,11.9L36.0,12.0L40.0,12.0L44.0,12.0L48.0,11.9L52.0,11.9L56.0,11.9L60.0,11.8L64.0,11.7L68.0,11.6L72.0,11.6L76.0,11.5L80.0,11.4L84.0,11.3L88.0,11.3L92.0,11.2L96.0,11.1L100.0,11.1L104.0,11.1L108.0,11.1L112.0,11.1L116.0,11.1L120.0,11.1L124.0,11.2' stroke-width='0.45'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
220
- --ak-weave-secondary-light: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 36' preserveAspectRatio='none'%3e%3crect width='120' height='36' fill='%23CBC5B4'/%3e%3cg fill='none' stroke-linecap='round'%3e%3cg stroke='%23C9C4B4' opacity='.5'%3e%3cpath d='M-4.0,0.8L0.0,0.9L4.0,1.0L8.0,1.0L12.0,1.1L16.0,1.2L20.0,1.3L24.0,1.4L28.0,1.5L32.0,1.5L36.0,1.6L40.0,1.7L44.0,1.7L48.0,1.8L52.0,1.8L56.0,1.8L60.0,1.8L64.0,1.8L68.0,1.8L72.0,1.7L76.0,1.7L80.0,1.6L84.0,1.5L88.0,1.5L92.0,1.4L96.0,1.3L100.0,1.2L104.0,1.2L108.0,1.1L112.0,1.1L116.0,1.0L120.0,1.0L124.0,1.0' stroke-width='0.78'/%3e%3cpath d='M-4.0,3.3L0.0,3.4L4.0,3.4L8.0,3.5L12.0,3.6L16.0,3.7L20.0,3.8L24.0,3.9L28.0,4.0L32.0,4.0L36.0,4.1L40.0,4.1L44.0,4.2L48.0,4.2L52.0,4.2L56.0,4.2L60.0,4.2L64.0,4.2L68.0,4.1L72.0,4.1L76.0,4.0L80.0,3.9L84.0,3.9L88.0,3.8L92.0,3.7L96.0,3.6L100.0,3.6L104.0,3.5L108.0,3.4L112.0,3.4L116.0,3.4L120.0,3.4L124.0,3.4' stroke-width='0.59'/%3e%3cpath d='M-4.0,5.8L0.0,5.8L4.0,5.9L8.0,6.0L12.0,6.1L16.0,6.2L20.0,6.3L24.0,6.4L28.0,6.4L32.0,6.5L36.0,6.5L40.0,6.6L44.0,6.6L48.0,6.6L52.0,6.6L56.0,6.6L60.0,6.6L64.0,6.5L68.0,6.5L72.0,6.4L76.0,6.3L80.0,6.3L84.0,6.2L88.0,6.1L92.0,6.0L96.0,5.9L100.0,5.9L104.0,5.8L108.0,5.8L112.0,5.7L116.0,5.7L120.0,5.7L124.0,5.8' stroke-width='0.55'/%3e%3cpath d='M-4.0,8.3L0.0,8.3L4.0,8.4L8.0,8.5L12.0,8.6L16.0,8.7L20.0,8.8L24.0,8.8L28.0,8.9L32.0,8.9L36.0,9.0L40.0,9.0L44.0,9.0L48.0,9.0L52.0,9.0L56.0,9.0L60.0,8.9L64.0,8.9L68.0,8.8L72.0,8.7L76.0,8.6L80.0,8.6L84.0,8.5L88.0,8.4L92.0,8.3L96.0,8.3L100.0,8.2L104.0,8.2L108.0,8.1L112.0,8.1L116.0,8.1L120.0,8.1L124.0,8.2' stroke-width='0.78'/%3e%3cpath d='M-4.0,10.7L0.0,10.8L4.0,10.9L8.0,11.0L12.0,11.1L16.0,11.2L20.0,11.2L24.0,11.3L28.0,11.3L32.0,11.4L36.0,11.4L40.0,11.4L44.0,11.4L48.0,11.4L52.0,11.4L56.0,11.3L60.0,11.3L64.0,11.2L68.0,11.1L72.0,11.0L76.0,11.0L80.0,10.9L84.0,10.8L88.0,10.7L92.0,10.6L96.0,10.6L100.0,10.5L104.0,10.5L108.0,10.5L112.0,10.5L116.0,10.5L120.0,10.6L124.0,10.6' stroke-width='0.78'/%3e%3cpath d='M-4.0,13.2L0.0,13.3L4.0,13.4L8.0,13.5L12.0,13.6L16.0,13.6L20.0,13.7L24.0,13.7L28.0,13.8L32.0,13.8L36.0,13.8L40.0,13.8L44.0,13.8L48.0,13.8L52.0,13.7L56.0,13.6L60.0,13.6L64.0,13.5L68.0,13.4L72.0,13.3L76.0,13.3L80.0,13.2L84.0,13.1L88.0,13.0L92.0,13.0L96.0,12.9L100.0,12.9L104.0,12.9L108.0,12.9L112.0,12.9L116.0,12.9L120.0,13.0L124.0,13.1' stroke-width='0.67'/%3e%3cpath d='M-4.0,15.7L0.0,15.8L4.0,15.9L8.0,16.0L12.0,16.0L16.0,16.1L20.0,16.1L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.0L56.0,16.0L60.0,15.9L64.0,15.8L68.0,15.7L72.0,15.6L76.0,15.6L80.0,15.5L84.0,15.4L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.3L116.0,15.4L120.0,15.4L124.0,15.5' stroke-width='0.79'/%3e%3cpath d='M-4.0,18.2L0.0,18.3L4.0,18.4L8.0,18.4L12.0,18.5L16.0,18.6L20.0,18.6L24.0,18.6L28.0,18.6L32.0,18.6L36.0,18.6L40.0,18.5L44.0,18.5L48.0,18.4L52.0,18.4L56.0,18.3L60.0,18.2L64.0,18.1L68.0,18.0L72.0,18.0L76.0,17.9L80.0,17.8L84.0,17.7L88.0,17.7L92.0,17.7L96.0,17.6L100.0,17.6L104.0,17.7L108.0,17.7L112.0,17.8L116.0,17.8L120.0,17.9L124.0,18.0' stroke-width='0.61'/%3e%3cpath d='M-4.0,20.7L0.0,20.8L4.0,20.9L8.0,20.9L12.0,21.0L16.0,21.0L20.0,21.0L24.0,21.0L28.0,21.0L32.0,21.0L36.0,20.9L40.0,20.9L44.0,20.8L48.0,20.8L52.0,20.7L56.0,20.6L60.0,20.5L64.0,20.4L68.0,20.3L72.0,20.3L76.0,20.2L80.0,20.1L84.0,20.1L88.0,20.0L92.0,20.0L96.0,20.0L100.0,20.0L104.0,20.1L108.0,20.1L112.0,20.2L116.0,20.3L120.0,20.4L124.0,20.5' stroke-width='0.60'/%3e%3cpath d='M-4.0,23.2L0.0,23.3L4.0,23.3L8.0,23.4L12.0,23.4L16.0,23.4L20.0,23.4L24.0,23.4L28.0,23.4L32.0,23.3L36.0,23.3L40.0,23.2L44.0,23.2L48.0,23.1L52.0,23.0L56.0,22.9L60.0,22.8L64.0,22.7L68.0,22.7L72.0,22.6L76.0,22.5L80.0,22.5L84.0,22.4L88.0,22.4L92.0,22.4L96.0,22.4L100.0,22.5L104.0,22.5L108.0,22.6L112.0,22.7L116.0,22.8L120.0,22.9L124.0,23.0' stroke-width='0.80'/%3e%3cpath d='M-4.0,25.7L0.0,25.7L4.0,25.8L8.0,25.8L12.0,25.8L16.0,25.8L20.0,25.8L24.0,25.8L28.0,25.7L32.0,25.7L36.0,25.6L40.0,25.6L44.0,25.5L48.0,25.4L52.0,25.3L56.0,25.2L60.0,25.1L64.0,25.0L68.0,25.0L72.0,24.9L76.0,24.8L80.0,24.8L84.0,24.8L88.0,24.8L92.0,24.8L96.0,24.8L100.0,24.9L104.0,25.0L108.0,25.0L112.0,25.2L116.0,25.3L120.0,25.4L124.0,25.6' stroke-width='0.58'/%3e%3cpath d='M-4.0,28.1L0.0,28.2L4.0,28.2L8.0,28.2L12.0,28.2L16.0,28.2L20.0,28.2L24.0,28.1L28.0,28.1L32.0,28.0L36.0,28.0L40.0,27.9L44.0,27.8L48.0,27.7L52.0,27.6L56.0,27.5L60.0,27.4L64.0,27.4L68.0,27.3L72.0,27.2L76.0,27.2L80.0,27.2L84.0,27.2L88.0,27.2L92.0,27.2L96.0,27.3L100.0,27.3L104.0,27.4L108.0,27.5L112.0,27.7L116.0,27.8L120.0,27.9L124.0,28.1' stroke-width='0.70'/%3e%3cpath d='M-4.0,30.6L0.0,30.6L4.0,30.6L8.0,30.6L12.0,30.6L16.0,30.6L20.0,30.6L24.0,30.5L28.0,30.4L32.0,30.4L36.0,30.3L40.0,30.2L44.0,30.1L48.0,30.0L52.0,29.9L56.0,29.8L60.0,29.7L64.0,29.7L68.0,29.6L72.0,29.6L76.0,29.5L80.0,29.5L84.0,29.6L88.0,29.6L92.0,29.6L96.0,29.7L100.0,29.8L104.0,29.9L108.0,30.0L112.0,30.2L116.0,30.3L120.0,30.5L124.0,30.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,33.0L0.0,33.0L4.0,33.0L8.0,33.0L12.0,33.0L16.0,33.0L20.0,32.9L24.0,32.8L28.0,32.8L32.0,32.7L36.0,32.6L40.0,32.5L44.0,32.4L48.0,32.3L52.0,32.2L56.0,32.1L60.0,32.1L64.0,32.0L68.0,32.0L72.0,31.9L76.0,31.9L80.0,31.9L84.0,32.0L88.0,32.0L92.0,32.1L96.0,32.2L100.0,32.3L104.0,32.4L108.0,32.5L112.0,32.7L116.0,32.8L120.0,33.0L124.0,33.2' stroke-width='0.70'/%3e%3cpath d='M-4.0,35.4L0.0,35.4L4.0,35.4L8.0,35.4L12.0,35.4L16.0,35.3L20.0,35.2L24.0,35.2L28.0,35.1L32.0,35.0L36.0,34.9L40.0,34.8L44.0,34.7L48.0,34.6L52.0,34.5L56.0,34.4L60.0,34.4L64.0,34.3L68.0,34.3L72.0,34.3L76.0,34.3L80.0,34.3L84.0,34.4L88.0,34.5L92.0,34.5L96.0,34.7L100.0,34.8L104.0,34.9L108.0,35.1L112.0,35.2L116.0,35.4L120.0,35.6L124.0,35.7' stroke-width='0.53'/%3e%3c/g%3e%3cg stroke='%23E4E0D3'%3e%3c/g%3e%3cg stroke='%23E8E5D9'%3e%3cpath d='M-4.0,26.5L0.0,26.6L4.0,26.6L8.0,26.6L12.0,26.6L16.0,26.6L20.0,26.6L24.0,26.6L28.0,26.6L32.0,26.5L36.0,26.4L40.0,26.4L44.0,26.3L48.0,26.2L52.0,26.1L56.0,26.0L60.0,25.9L64.0,25.8L68.0,25.8L72.0,25.7L76.0,25.6L80.0,25.6L84.0,25.6L88.0,25.6L92.0,25.6L96.0,25.7L100.0,25.7L104.0,25.8L108.0,25.9L112.0,26.0L116.0,26.1L120.0,26.3L124.0,26.4' stroke-width='0.76'/%3e%3cpath d='M-4.0,31.6L0.0,31.6L4.0,31.7L8.0,31.7L12.0,31.6L16.0,31.6L20.0,31.6L24.0,31.5L28.0,31.4L32.0,31.3L36.0,31.3L40.0,31.2L44.0,31.1L48.0,31.0L52.0,30.9L56.0,30.8L60.0,30.7L64.0,30.7L68.0,30.6L72.0,30.6L76.0,30.6L80.0,30.6L84.0,30.6L88.0,30.6L92.0,30.7L96.0,30.8L100.0,30.9L104.0,31.0L108.0,31.1L112.0,31.2L116.0,31.4L120.0,31.6L124.0,31.7' stroke-width='0.87'/%3e%3cpath d='M-4.0,34.0L0.0,34.0L4.0,34.0L8.0,34.0L12.0,33.9L16.0,33.9L20.0,33.8L24.0,33.7L28.0,33.7L32.0,33.6L36.0,33.5L40.0,33.4L44.0,33.3L48.0,33.2L52.0,33.1L56.0,33.0L60.0,33.0L64.0,32.9L68.0,32.9L72.0,32.9L76.0,32.8L80.0,32.9L84.0,32.9L88.0,33.0L92.0,33.0L96.0,33.1L100.0,33.2L104.0,33.4L108.0,33.5L112.0,33.7L116.0,33.8L120.0,34.0L124.0,34.2' stroke-width='0.86'/%3e%3cpath d='M-4.0,36.4L0.0,36.4L4.0,36.3L8.0,36.3L12.0,36.3L16.0,36.2L20.0,36.1L24.0,36.0L28.0,36.0L32.0,35.9L36.0,35.8L40.0,35.7L44.0,35.6L48.0,35.5L52.0,35.4L56.0,35.3L60.0,35.3L64.0,35.2L68.0,35.2L72.0,35.2L76.0,35.2L80.0,35.3L84.0,35.3L88.0,35.4L92.0,35.5L96.0,35.6L100.0,35.7L104.0,35.9L108.0,36.0L112.0,36.2L116.0,36.4L120.0,36.5L124.0,36.7' stroke-width='0.86'/%3e%3c/g%3e%3cg stroke='%23EDEAE0'%3e%3cpath d='M-4.0,16.4L0.0,16.5L4.0,16.5L8.0,16.6L12.0,16.7L16.0,16.7L20.0,16.8L24.0,16.8L28.0,16.8L32.0,16.8L36.0,16.8L40.0,16.8L44.0,16.8L48.0,16.7L52.0,16.6L56.0,16.6L60.0,16.5L64.0,16.4L68.0,16.3L72.0,16.2L76.0,16.2L80.0,16.1L84.0,16.0L88.0,16.0L92.0,15.9L96.0,15.9L100.0,15.9L104.0,15.9L108.0,15.9L112.0,15.9L116.0,16.0L120.0,16.1L124.0,16.2' stroke-width='0.62'/%3e%3cpath d='M-4.0,17.7L0.0,17.8L4.0,17.8L8.0,17.9L12.0,18.0L16.0,18.0L20.0,18.1L24.0,18.1L28.0,18.1L32.0,18.1L36.0,18.1L40.0,18.0L44.0,18.0L48.0,17.9L52.0,17.9L56.0,17.8L60.0,17.7L64.0,17.6L68.0,17.5L72.0,17.5L76.0,17.4L80.0,17.3L84.0,17.2L88.0,17.2L92.0,17.1L96.0,17.1L100.0,17.1L104.0,17.1L108.0,17.2L112.0,17.2L116.0,17.3L120.0,17.4L124.0,17.5' stroke-width='0.66'/%3e%3cpath d='M-4.0,19.0L0.0,19.1L4.0,19.1L8.0,19.2L12.0,19.3L16.0,19.3L20.0,19.3L24.0,19.3L28.0,19.4L32.0,19.3L36.0,19.3L40.0,19.3L44.0,19.2L48.0,19.2L52.0,19.1L56.0,19.0L60.0,18.9L64.0,18.8L68.0,18.7L72.0,18.7L76.0,18.6L80.0,18.5L84.0,18.5L88.0,18.4L92.0,18.4L96.0,18.4L100.0,18.4L104.0,18.4L108.0,18.4L112.0,18.5L116.0,18.6L120.0,18.7L124.0,18.8' stroke-width='0.79'/%3e%3cpath d='M-4.0,22.8L0.0,22.8L4.0,22.9L8.0,22.9L12.0,23.0L16.0,23.0L20.0,23.0L24.0,23.0L28.0,23.0L32.0,22.9L36.0,22.9L40.0,22.8L44.0,22.8L48.0,22.7L52.0,22.6L56.0,22.5L60.0,22.4L64.0,22.3L68.0,22.3L72.0,22.2L76.0,22.1L80.0,22.1L84.0,22.0L88.0,22.0L92.0,22.0L96.0,22.0L100.0,22.0L104.0,22.1L108.0,22.2L112.0,22.2L116.0,22.3L120.0,22.5L124.0,22.6' stroke-width='1.18'/%3e%3cpath d='M-4.0,23.9L0.0,23.9L4.0,24.0L8.0,24.0L12.0,24.1L16.0,24.1L20.0,24.1L24.0,24.1L28.0,24.0L32.0,24.0L36.0,23.9L40.0,23.9L44.0,23.8L48.0,23.7L52.0,23.6L56.0,23.6L60.0,23.5L64.0,23.4L68.0,23.3L72.0,23.2L76.0,23.2L80.0,23.1L84.0,23.1L88.0,23.1L92.0,23.1L96.0,23.1L100.0,23.1L104.0,23.2L108.0,23.3L112.0,23.4L116.0,23.5L120.0,23.6L124.0,23.7' stroke-width='0.84'/%3e%3cpath d='M-4.0,27.9L0.0,27.9L4.0,28.0L8.0,28.0L12.0,28.0L16.0,28.0L20.0,28.0L24.0,27.9L28.0,27.9L32.0,27.8L36.0,27.7L40.0,27.6L44.0,27.6L48.0,27.5L52.0,27.4L56.0,27.3L60.0,27.2L64.0,27.1L68.0,27.1L72.0,27.0L76.0,27.0L80.0,26.9L84.0,26.9L88.0,26.9L92.0,27.0L96.0,27.0L100.0,27.1L104.0,27.2L108.0,27.3L112.0,27.4L116.0,27.5L120.0,27.7L124.0,27.8' stroke-width='1.31'/%3e%3cpath d='M-4.0,29.2L0.0,29.2L4.0,29.2L8.0,29.2L12.0,29.2L16.0,29.2L20.0,29.2L24.0,29.1L28.0,29.1L32.0,29.0L36.0,28.9L40.0,28.8L44.0,28.7L48.0,28.7L52.0,28.6L56.0,28.5L60.0,28.4L64.0,28.3L68.0,28.3L72.0,28.2L76.0,28.2L80.0,28.2L84.0,28.2L88.0,28.2L92.0,28.2L96.0,28.3L100.0,28.4L104.0,28.5L108.0,28.6L112.0,28.7L116.0,28.8L120.0,29.0L124.0,29.1' stroke-width='1.29'/%3e%3cpath d='M-4.0,30.5L0.0,30.5L4.0,30.5L8.0,30.5L12.0,30.5L16.0,30.5L20.0,30.5L24.0,30.4L28.0,30.3L32.0,30.3L36.0,30.2L40.0,30.1L44.0,30.0L48.0,29.9L52.0,29.8L56.0,29.7L60.0,29.7L64.0,29.6L68.0,29.5L72.0,29.5L76.0,29.5L80.0,29.5L84.0,29.5L88.0,29.5L92.0,29.5L96.0,29.6L100.0,29.7L104.0,29.8L108.0,29.9L112.0,30.1L116.0,30.2L120.0,30.4L124.0,30.5' stroke-width='0.89'/%3e%3cpath d='M-4.0,32.7L0.0,32.7L4.0,32.7L8.0,32.7L12.0,32.7L16.0,32.7L20.0,32.6L24.0,32.6L28.0,32.5L32.0,32.4L36.0,32.3L40.0,32.2L44.0,32.1L48.0,32.0L52.0,31.9L56.0,31.9L60.0,31.8L64.0,31.7L68.0,31.7L72.0,31.6L76.0,31.6L80.0,31.6L84.0,31.7L88.0,31.7L92.0,31.8L96.0,31.9L100.0,32.0L104.0,32.1L108.0,32.2L112.0,32.4L116.0,32.5L120.0,32.7L124.0,32.9' stroke-width='0.66'/%3e%3cpath d='M-4.0,35.2L0.0,35.2L4.0,35.2L8.0,35.1L12.0,35.1L16.0,35.0L20.0,35.0L24.0,34.9L28.0,34.8L32.0,34.7L36.0,34.6L40.0,34.5L44.0,34.4L48.0,34.3L52.0,34.3L56.0,34.2L60.0,34.1L64.0,34.1L68.0,34.0L72.0,34.0L76.0,34.0L80.0,34.1L84.0,34.1L88.0,34.2L92.0,34.3L96.0,34.4L100.0,34.5L104.0,34.6L108.0,34.8L112.0,34.9L116.0,35.1L120.0,35.3L124.0,35.4' stroke-width='0.70'/%3e%3c/g%3e%3cg stroke='%23F1EEE6'%3e%3cpath d='M-4.0,2.2L0.0,2.3L4.0,2.3L8.0,2.4L12.0,2.5L16.0,2.6L20.0,2.7L24.0,2.8L28.0,2.8L32.0,2.9L36.0,3.0L40.0,3.0L44.0,3.1L48.0,3.1L52.0,3.1L56.0,3.1L60.0,3.1L64.0,3.1L68.0,3.1L72.0,3.0L76.0,3.0L80.0,2.9L84.0,2.8L88.0,2.7L92.0,2.7L96.0,2.6L100.0,2.5L104.0,2.4L108.0,2.4L112.0,2.3L116.0,2.3L120.0,2.3L124.0,2.3' stroke-width='0.91'/%3e%3cpath d='M-4.0,9.8L0.0,9.8L4.0,9.9L8.0,10.0L12.0,10.1L16.0,10.2L20.0,10.3L24.0,10.3L28.0,10.4L32.0,10.4L36.0,10.5L40.0,10.5L44.0,10.5L48.0,10.5L52.0,10.4L56.0,10.4L60.0,10.3L64.0,10.3L68.0,10.2L72.0,10.1L76.0,10.0L80.0,10.0L84.0,9.9L88.0,9.8L92.0,9.7L96.0,9.7L100.0,9.6L104.0,9.6L108.0,9.6L112.0,9.6L116.0,9.6L120.0,9.6L124.0,9.7' stroke-width='1.37'/%3e%3cpath d='M-4.0,13.8L0.0,13.9L4.0,13.9L8.0,14.0L12.0,14.1L16.0,14.2L20.0,14.2L24.0,14.3L28.0,14.3L32.0,14.3L36.0,14.3L40.0,14.3L44.0,14.3L48.0,14.3L52.0,14.2L56.0,14.2L60.0,14.1L64.0,14.0L68.0,13.9L72.0,13.8L76.0,13.8L80.0,13.7L84.0,13.6L88.0,13.5L92.0,13.5L96.0,13.4L100.0,13.4L104.0,13.4L108.0,13.4L112.0,13.4L116.0,13.5L120.0,13.5L124.0,13.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,15.1L0.0,15.2L4.0,15.3L8.0,15.4L12.0,15.5L16.0,15.5L20.0,15.6L24.0,15.6L28.0,15.6L32.0,15.6L36.0,15.6L40.0,15.6L44.0,15.6L48.0,15.6L52.0,15.5L56.0,15.4L60.0,15.4L64.0,15.3L68.0,15.2L72.0,15.1L76.0,15.0L80.0,14.9L84.0,14.9L88.0,14.8L92.0,14.8L96.0,14.7L100.0,14.7L104.0,14.7L108.0,14.7L112.0,14.7L116.0,14.8L120.0,14.9L124.0,15.0' stroke-width='0.85'/%3e%3cpath d='M-4.0,20.3L0.0,20.4L4.0,20.5L8.0,20.5L12.0,20.6L16.0,20.6L20.0,20.7L24.0,20.7L28.0,20.7L32.0,20.6L36.0,20.6L40.0,20.5L44.0,20.5L48.0,20.4L52.0,20.3L56.0,20.3L60.0,20.2L64.0,20.1L68.0,20.0L72.0,19.9L76.0,19.8L80.0,19.8L84.0,19.7L88.0,19.7L92.0,19.7L96.0,19.7L100.0,19.7L104.0,19.7L108.0,19.8L112.0,19.8L116.0,19.9L120.0,20.0L124.0,20.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,21.5L0.0,21.6L4.0,21.7L8.0,21.7L12.0,21.8L16.0,21.8L20.0,21.8L24.0,21.8L28.0,21.8L32.0,21.8L36.0,21.7L40.0,21.7L44.0,21.6L48.0,21.5L52.0,21.5L56.0,21.4L60.0,21.3L64.0,21.2L68.0,21.1L72.0,21.0L76.0,21.0L80.0,20.9L84.0,20.9L88.0,20.8L92.0,20.8L96.0,20.8L100.0,20.8L104.0,20.9L108.0,20.9L112.0,21.0L116.0,21.1L120.0,21.2L124.0,21.4' stroke-width='1.29'/%3e%3cpath d='M-4.0,25.2L0.0,25.3L4.0,25.3L8.0,25.4L12.0,25.4L16.0,25.4L20.0,25.4L24.0,25.4L28.0,25.3L32.0,25.3L36.0,25.2L40.0,25.1L44.0,25.1L48.0,25.0L52.0,24.9L56.0,24.8L60.0,24.7L64.0,24.6L68.0,24.6L72.0,24.5L76.0,24.4L80.0,24.4L84.0,24.4L88.0,24.4L92.0,24.4L96.0,24.4L100.0,24.4L104.0,24.5L108.0,24.6L112.0,24.7L116.0,24.8L120.0,25.0L124.0,25.1' stroke-width='0.62'/%3e%3c/g%3e%3cg stroke='%23F5F3EC'%3e%3cpath d='M-4.0,-0.1L0.0,-0.1L4.0,-0.0L8.0,0.0L12.0,0.1L16.0,0.2L20.0,0.2L24.0,0.3L28.0,0.4L32.0,0.5L36.0,0.6L40.0,0.7L44.0,0.7L48.0,0.8L52.0,0.8L56.0,0.8L60.0,0.8L64.0,0.8L68.0,0.8L72.0,0.8L76.0,0.7L80.0,0.6L84.0,0.6L88.0,0.5L92.0,0.4L96.0,0.4L100.0,0.3L104.0,0.2L108.0,0.1L112.0,0.1L116.0,0.0L120.0,0.0L124.0,0.0' stroke-width='0.94'/%3e%3cpath d='M-4.0,1.0L0.0,1.1L4.0,1.1L8.0,1.2L12.0,1.3L16.0,1.4L20.0,1.5L24.0,1.6L28.0,1.7L32.0,1.7L36.0,1.8L40.0,1.9L44.0,1.9L48.0,2.0L52.0,2.0L56.0,2.0L60.0,2.0L64.0,2.0L68.0,2.0L72.0,1.9L76.0,1.9L80.0,1.8L84.0,1.7L88.0,1.7L92.0,1.6L96.0,1.5L100.0,1.4L104.0,1.4L108.0,1.3L112.0,1.2L116.0,1.2L120.0,1.2L124.0,1.2' stroke-width='1.31'/%3e%3cpath d='M-4.0,3.5L0.0,3.6L4.0,3.7L8.0,3.8L12.0,3.9L16.0,3.9L20.0,4.0L24.0,4.1L28.0,4.2L32.0,4.3L36.0,4.3L40.0,4.4L44.0,4.4L48.0,4.5L52.0,4.5L56.0,4.5L60.0,4.4L64.0,4.4L68.0,4.4L72.0,4.3L76.0,4.2L80.0,4.2L84.0,4.1L88.0,4.0L92.0,3.9L96.0,3.9L100.0,3.8L104.0,3.7L108.0,3.7L112.0,3.6L116.0,3.6L120.0,3.6L124.0,3.6' stroke-width='0.90'/%3e%3cpath d='M-4.0,4.7L0.0,4.8L4.0,4.9L8.0,5.0L12.0,5.1L16.0,5.1L20.0,5.2L24.0,5.3L28.0,5.4L32.0,5.5L36.0,5.5L40.0,5.6L44.0,5.6L48.0,5.6L52.0,5.6L56.0,5.6L60.0,5.6L64.0,5.5L68.0,5.5L72.0,5.4L76.0,5.4L80.0,5.3L84.0,5.2L88.0,5.1L92.0,5.0L96.0,5.0L100.0,4.9L104.0,4.8L108.0,4.8L112.0,4.8L116.0,4.7L120.0,4.7L124.0,4.7' stroke-width='1.03'/%3e%3cpath d='M-4.0,6.1L0.0,6.1L4.0,6.2L8.0,6.3L12.0,6.4L16.0,6.5L20.0,6.6L24.0,6.7L28.0,6.7L32.0,6.8L36.0,6.8L40.0,6.9L44.0,6.9L48.0,6.9L52.0,6.9L56.0,6.9L60.0,6.8L64.0,6.8L68.0,6.7L72.0,6.7L76.0,6.6L80.0,6.5L84.0,6.4L88.0,6.4L92.0,6.3L96.0,6.2L100.0,6.2L104.0,6.1L108.0,6.1L112.0,6.0L116.0,6.0L120.0,6.0L124.0,6.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,7.3L0.0,7.3L4.0,7.4L8.0,7.5L12.0,7.6L16.0,7.7L20.0,7.8L24.0,7.8L28.0,7.9L32.0,8.0L36.0,8.0L40.0,8.0L44.0,8.0L48.0,8.0L52.0,8.0L56.0,8.0L60.0,8.0L64.0,7.9L68.0,7.9L72.0,7.8L76.0,7.7L80.0,7.6L84.0,7.5L88.0,7.5L92.0,7.4L96.0,7.3L100.0,7.3L104.0,7.2L108.0,7.2L112.0,7.2L116.0,7.2L120.0,7.2L124.0,7.2' stroke-width='1.05'/%3e%3cpath d='M-4.0,8.5L0.0,8.5L4.0,8.6L8.0,8.7L12.0,8.8L16.0,8.9L20.0,8.9L24.0,9.0L28.0,9.1L32.0,9.1L36.0,9.2L40.0,9.2L44.0,9.2L48.0,9.2L52.0,9.2L56.0,9.1L60.0,9.1L64.0,9.0L68.0,9.0L72.0,8.9L76.0,8.8L80.0,8.7L84.0,8.7L88.0,8.6L92.0,8.5L96.0,8.4L100.0,8.4L104.0,8.3L108.0,8.3L112.0,8.3L116.0,8.3L120.0,8.3L124.0,8.4' stroke-width='0.79'/%3e%3cpath d='M-4.0,11.0L0.0,11.1L4.0,11.2L8.0,11.2L12.0,11.3L16.0,11.4L20.0,11.5L24.0,11.5L28.0,11.6L32.0,11.6L36.0,11.6L40.0,11.6L44.0,11.6L48.0,11.6L52.0,11.6L56.0,11.5L60.0,11.5L64.0,11.4L68.0,11.3L72.0,11.3L76.0,11.2L80.0,11.1L84.0,11.0L88.0,10.9L92.0,10.9L96.0,10.8L100.0,10.8L104.0,10.7L108.0,10.7L112.0,10.7L116.0,10.8L120.0,10.8L124.0,10.9' stroke-width='1.36'/%3e%3cpath d='M-4.0,12.4L0.0,12.5L4.0,12.6L8.0,12.6L12.0,12.7L16.0,12.8L20.0,12.9L24.0,12.9L28.0,12.9L32.0,13.0L36.0,13.0L40.0,13.0L44.0,13.0L48.0,12.9L52.0,12.9L56.0,12.8L60.0,12.8L64.0,12.7L68.0,12.6L72.0,12.6L76.0,12.5L80.0,12.4L84.0,12.3L88.0,12.2L92.0,12.2L96.0,12.1L100.0,12.1L104.0,12.1L108.0,12.1L112.0,12.1L116.0,12.1L120.0,12.2L124.0,12.2' stroke-width='0.73'/%3e%3c/g%3e%3cg stroke='%23FFFFFF' opacity='.45'%3e%3cpath d='M-4.0,15.8L0.0,15.9L4.0,15.9L8.0,16.0L12.0,16.1L16.0,16.1L20.0,16.2L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.1L56.0,16.0L60.0,15.9L64.0,15.9L68.0,15.8L72.0,15.7L76.0,15.6L80.0,15.5L84.0,15.5L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.4L116.0,15.4L120.0,15.5L124.0,15.6' stroke-width='0.69'/%3e%3cpath d='M-4.0,14.5L0.0,14.6L4.0,14.7L8.0,14.8L12.0,14.8L16.0,14.9L20.0,15.0L24.0,15.0L28.0,15.0L32.0,15.0L36.0,15.0L40.0,15.0L44.0,15.0L48.0,15.0L52.0,14.9L56.0,14.8L60.0,14.8L64.0,14.7L68.0,14.6L72.0,14.5L76.0,14.4L80.0,14.4L84.0,14.3L88.0,14.2L92.0,14.2L96.0,14.1L100.0,14.1L104.0,14.1L108.0,14.1L112.0,14.1L116.0,14.2L120.0,14.3L124.0,14.3' stroke-width='0.60'/%3e%3cpath d='M-4.0,15.4L0.0,15.5L4.0,15.5L8.0,15.6L12.0,15.7L16.0,15.7L20.0,15.8L24.0,15.8L28.0,15.9L32.0,15.9L36.0,15.9L40.0,15.8L44.0,15.8L48.0,15.8L52.0,15.7L56.0,15.6L60.0,15.6L64.0,15.5L68.0,15.4L72.0,15.3L76.0,15.2L80.0,15.1L84.0,15.1L88.0,15.0L92.0,15.0L96.0,14.9L100.0,14.9L104.0,14.9L108.0,14.9L112.0,15.0L116.0,15.0L120.0,15.1L124.0,15.2' stroke-width='0.47'/%3e%3cpath d='M-4.0,11.3L0.0,11.4L4.0,11.5L8.0,11.6L12.0,11.7L16.0,11.7L20.0,11.8L24.0,11.9L28.0,11.9L32.0,11.9L36.0,12.0L40.0,12.0L44.0,12.0L48.0,11.9L52.0,11.9L56.0,11.9L60.0,11.8L64.0,11.7L68.0,11.6L72.0,11.6L76.0,11.5L80.0,11.4L84.0,11.3L88.0,11.3L92.0,11.2L96.0,11.1L100.0,11.1L104.0,11.1L108.0,11.1L112.0,11.1L116.0,11.1L120.0,11.1L124.0,11.2' stroke-width='0.45'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
221
- --ak-weave-primary-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 36' preserveAspectRatio='none'%3e%3crect width='120' height='36' fill='%23173629'/%3e%3cg fill='none' stroke-linecap='round'%3e%3cg stroke='%231B4437' opacity='.5'%3e%3cpath d='M-4.0,0.8L0.0,0.9L4.0,1.0L8.0,1.0L12.0,1.1L16.0,1.2L20.0,1.3L24.0,1.4L28.0,1.5L32.0,1.5L36.0,1.6L40.0,1.7L44.0,1.7L48.0,1.8L52.0,1.8L56.0,1.8L60.0,1.8L64.0,1.8L68.0,1.8L72.0,1.7L76.0,1.7L80.0,1.6L84.0,1.5L88.0,1.5L92.0,1.4L96.0,1.3L100.0,1.2L104.0,1.2L108.0,1.1L112.0,1.1L116.0,1.0L120.0,1.0L124.0,1.0' stroke-width='0.78'/%3e%3cpath d='M-4.0,3.3L0.0,3.4L4.0,3.4L8.0,3.5L12.0,3.6L16.0,3.7L20.0,3.8L24.0,3.9L28.0,4.0L32.0,4.0L36.0,4.1L40.0,4.1L44.0,4.2L48.0,4.2L52.0,4.2L56.0,4.2L60.0,4.2L64.0,4.2L68.0,4.1L72.0,4.1L76.0,4.0L80.0,3.9L84.0,3.9L88.0,3.8L92.0,3.7L96.0,3.6L100.0,3.6L104.0,3.5L108.0,3.4L112.0,3.4L116.0,3.4L120.0,3.4L124.0,3.4' stroke-width='0.59'/%3e%3cpath d='M-4.0,5.8L0.0,5.8L4.0,5.9L8.0,6.0L12.0,6.1L16.0,6.2L20.0,6.3L24.0,6.4L28.0,6.4L32.0,6.5L36.0,6.5L40.0,6.6L44.0,6.6L48.0,6.6L52.0,6.6L56.0,6.6L60.0,6.6L64.0,6.5L68.0,6.5L72.0,6.4L76.0,6.3L80.0,6.3L84.0,6.2L88.0,6.1L92.0,6.0L96.0,5.9L100.0,5.9L104.0,5.8L108.0,5.8L112.0,5.7L116.0,5.7L120.0,5.7L124.0,5.8' stroke-width='0.55'/%3e%3cpath d='M-4.0,8.3L0.0,8.3L4.0,8.4L8.0,8.5L12.0,8.6L16.0,8.7L20.0,8.8L24.0,8.8L28.0,8.9L32.0,8.9L36.0,9.0L40.0,9.0L44.0,9.0L48.0,9.0L52.0,9.0L56.0,9.0L60.0,8.9L64.0,8.9L68.0,8.8L72.0,8.7L76.0,8.6L80.0,8.6L84.0,8.5L88.0,8.4L92.0,8.3L96.0,8.3L100.0,8.2L104.0,8.2L108.0,8.1L112.0,8.1L116.0,8.1L120.0,8.1L124.0,8.2' stroke-width='0.78'/%3e%3cpath d='M-4.0,10.7L0.0,10.8L4.0,10.9L8.0,11.0L12.0,11.1L16.0,11.2L20.0,11.2L24.0,11.3L28.0,11.3L32.0,11.4L36.0,11.4L40.0,11.4L44.0,11.4L48.0,11.4L52.0,11.4L56.0,11.3L60.0,11.3L64.0,11.2L68.0,11.1L72.0,11.0L76.0,11.0L80.0,10.9L84.0,10.8L88.0,10.7L92.0,10.6L96.0,10.6L100.0,10.5L104.0,10.5L108.0,10.5L112.0,10.5L116.0,10.5L120.0,10.6L124.0,10.6' stroke-width='0.78'/%3e%3cpath d='M-4.0,13.2L0.0,13.3L4.0,13.4L8.0,13.5L12.0,13.6L16.0,13.6L20.0,13.7L24.0,13.7L28.0,13.8L32.0,13.8L36.0,13.8L40.0,13.8L44.0,13.8L48.0,13.8L52.0,13.7L56.0,13.6L60.0,13.6L64.0,13.5L68.0,13.4L72.0,13.3L76.0,13.3L80.0,13.2L84.0,13.1L88.0,13.0L92.0,13.0L96.0,12.9L100.0,12.9L104.0,12.9L108.0,12.9L112.0,12.9L116.0,12.9L120.0,13.0L124.0,13.1' stroke-width='0.67'/%3e%3cpath d='M-4.0,15.7L0.0,15.8L4.0,15.9L8.0,16.0L12.0,16.0L16.0,16.1L20.0,16.1L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.0L56.0,16.0L60.0,15.9L64.0,15.8L68.0,15.7L72.0,15.6L76.0,15.6L80.0,15.5L84.0,15.4L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.3L116.0,15.4L120.0,15.4L124.0,15.5' stroke-width='0.79'/%3e%3cpath d='M-4.0,18.2L0.0,18.3L4.0,18.4L8.0,18.4L12.0,18.5L16.0,18.6L20.0,18.6L24.0,18.6L28.0,18.6L32.0,18.6L36.0,18.6L40.0,18.5L44.0,18.5L48.0,18.4L52.0,18.4L56.0,18.3L60.0,18.2L64.0,18.1L68.0,18.0L72.0,18.0L76.0,17.9L80.0,17.8L84.0,17.7L88.0,17.7L92.0,17.7L96.0,17.6L100.0,17.6L104.0,17.7L108.0,17.7L112.0,17.8L116.0,17.8L120.0,17.9L124.0,18.0' stroke-width='0.61'/%3e%3cpath d='M-4.0,20.7L0.0,20.8L4.0,20.9L8.0,20.9L12.0,21.0L16.0,21.0L20.0,21.0L24.0,21.0L28.0,21.0L32.0,21.0L36.0,20.9L40.0,20.9L44.0,20.8L48.0,20.8L52.0,20.7L56.0,20.6L60.0,20.5L64.0,20.4L68.0,20.3L72.0,20.3L76.0,20.2L80.0,20.1L84.0,20.1L88.0,20.0L92.0,20.0L96.0,20.0L100.0,20.0L104.0,20.1L108.0,20.1L112.0,20.2L116.0,20.3L120.0,20.4L124.0,20.5' stroke-width='0.60'/%3e%3cpath d='M-4.0,23.2L0.0,23.3L4.0,23.3L8.0,23.4L12.0,23.4L16.0,23.4L20.0,23.4L24.0,23.4L28.0,23.4L32.0,23.3L36.0,23.3L40.0,23.2L44.0,23.2L48.0,23.1L52.0,23.0L56.0,22.9L60.0,22.8L64.0,22.7L68.0,22.7L72.0,22.6L76.0,22.5L80.0,22.5L84.0,22.4L88.0,22.4L92.0,22.4L96.0,22.4L100.0,22.5L104.0,22.5L108.0,22.6L112.0,22.7L116.0,22.8L120.0,22.9L124.0,23.0' stroke-width='0.80'/%3e%3cpath d='M-4.0,25.7L0.0,25.7L4.0,25.8L8.0,25.8L12.0,25.8L16.0,25.8L20.0,25.8L24.0,25.8L28.0,25.7L32.0,25.7L36.0,25.6L40.0,25.6L44.0,25.5L48.0,25.4L52.0,25.3L56.0,25.2L60.0,25.1L64.0,25.0L68.0,25.0L72.0,24.9L76.0,24.8L80.0,24.8L84.0,24.8L88.0,24.8L92.0,24.8L96.0,24.8L100.0,24.9L104.0,25.0L108.0,25.0L112.0,25.2L116.0,25.3L120.0,25.4L124.0,25.6' stroke-width='0.58'/%3e%3cpath d='M-4.0,28.1L0.0,28.2L4.0,28.2L8.0,28.2L12.0,28.2L16.0,28.2L20.0,28.2L24.0,28.1L28.0,28.1L32.0,28.0L36.0,28.0L40.0,27.9L44.0,27.8L48.0,27.7L52.0,27.6L56.0,27.5L60.0,27.4L64.0,27.4L68.0,27.3L72.0,27.2L76.0,27.2L80.0,27.2L84.0,27.2L88.0,27.2L92.0,27.2L96.0,27.3L100.0,27.3L104.0,27.4L108.0,27.5L112.0,27.7L116.0,27.8L120.0,27.9L124.0,28.1' stroke-width='0.70'/%3e%3cpath d='M-4.0,30.6L0.0,30.6L4.0,30.6L8.0,30.6L12.0,30.6L16.0,30.6L20.0,30.6L24.0,30.5L28.0,30.4L32.0,30.4L36.0,30.3L40.0,30.2L44.0,30.1L48.0,30.0L52.0,29.9L56.0,29.8L60.0,29.7L64.0,29.7L68.0,29.6L72.0,29.6L76.0,29.5L80.0,29.5L84.0,29.6L88.0,29.6L92.0,29.6L96.0,29.7L100.0,29.8L104.0,29.9L108.0,30.0L112.0,30.2L116.0,30.3L120.0,30.5L124.0,30.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,33.0L0.0,33.0L4.0,33.0L8.0,33.0L12.0,33.0L16.0,33.0L20.0,32.9L24.0,32.8L28.0,32.8L32.0,32.7L36.0,32.6L40.0,32.5L44.0,32.4L48.0,32.3L52.0,32.2L56.0,32.1L60.0,32.1L64.0,32.0L68.0,32.0L72.0,31.9L76.0,31.9L80.0,31.9L84.0,32.0L88.0,32.0L92.0,32.1L96.0,32.2L100.0,32.3L104.0,32.4L108.0,32.5L112.0,32.7L116.0,32.8L120.0,33.0L124.0,33.2' stroke-width='0.70'/%3e%3cpath d='M-4.0,35.4L0.0,35.4L4.0,35.4L8.0,35.4L12.0,35.4L16.0,35.3L20.0,35.2L24.0,35.2L28.0,35.1L32.0,35.0L36.0,34.9L40.0,34.8L44.0,34.7L48.0,34.6L52.0,34.5L56.0,34.4L60.0,34.4L64.0,34.3L68.0,34.3L72.0,34.3L76.0,34.3L80.0,34.3L84.0,34.4L88.0,34.5L92.0,34.5L96.0,34.7L100.0,34.8L104.0,34.9L108.0,35.1L112.0,35.2L116.0,35.4L120.0,35.6L124.0,35.7' stroke-width='0.53'/%3e%3c/g%3e%3cg stroke='%233F8A70'%3e%3c/g%3e%3cg stroke='%2347957A'%3e%3cpath d='M-4.0,26.5L0.0,26.6L4.0,26.6L8.0,26.6L12.0,26.6L16.0,26.6L20.0,26.6L24.0,26.6L28.0,26.6L32.0,26.5L36.0,26.4L40.0,26.4L44.0,26.3L48.0,26.2L52.0,26.1L56.0,26.0L60.0,25.9L64.0,25.8L68.0,25.8L72.0,25.7L76.0,25.6L80.0,25.6L84.0,25.6L88.0,25.6L92.0,25.6L96.0,25.7L100.0,25.7L104.0,25.8L108.0,25.9L112.0,26.0L116.0,26.1L120.0,26.3L124.0,26.4' stroke-width='0.76'/%3e%3cpath d='M-4.0,31.6L0.0,31.6L4.0,31.7L8.0,31.7L12.0,31.6L16.0,31.6L20.0,31.6L24.0,31.5L28.0,31.4L32.0,31.3L36.0,31.3L40.0,31.2L44.0,31.1L48.0,31.0L52.0,30.9L56.0,30.8L60.0,30.7L64.0,30.7L68.0,30.6L72.0,30.6L76.0,30.6L80.0,30.6L84.0,30.6L88.0,30.6L92.0,30.7L96.0,30.8L100.0,30.9L104.0,31.0L108.0,31.1L112.0,31.2L116.0,31.4L120.0,31.6L124.0,31.7' stroke-width='0.87'/%3e%3cpath d='M-4.0,34.0L0.0,34.0L4.0,34.0L8.0,34.0L12.0,33.9L16.0,33.9L20.0,33.8L24.0,33.7L28.0,33.7L32.0,33.6L36.0,33.5L40.0,33.4L44.0,33.3L48.0,33.2L52.0,33.1L56.0,33.0L60.0,33.0L64.0,32.9L68.0,32.9L72.0,32.9L76.0,32.8L80.0,32.9L84.0,32.9L88.0,33.0L92.0,33.0L96.0,33.1L100.0,33.2L104.0,33.4L108.0,33.5L112.0,33.7L116.0,33.8L120.0,34.0L124.0,34.2' stroke-width='0.86'/%3e%3cpath d='M-4.0,36.4L0.0,36.4L4.0,36.3L8.0,36.3L12.0,36.3L16.0,36.2L20.0,36.1L24.0,36.0L28.0,36.0L32.0,35.9L36.0,35.8L40.0,35.7L44.0,35.6L48.0,35.5L52.0,35.4L56.0,35.3L60.0,35.3L64.0,35.2L68.0,35.2L72.0,35.2L76.0,35.2L80.0,35.3L84.0,35.3L88.0,35.4L92.0,35.5L96.0,35.6L100.0,35.7L104.0,35.9L108.0,36.0L112.0,36.2L116.0,36.4L120.0,36.5L124.0,36.7' stroke-width='0.86'/%3e%3c/g%3e%3cg stroke='%234FA184'%3e%3cpath d='M-4.0,16.4L0.0,16.5L4.0,16.5L8.0,16.6L12.0,16.7L16.0,16.7L20.0,16.8L24.0,16.8L28.0,16.8L32.0,16.8L36.0,16.8L40.0,16.8L44.0,16.8L48.0,16.7L52.0,16.6L56.0,16.6L60.0,16.5L64.0,16.4L68.0,16.3L72.0,16.2L76.0,16.2L80.0,16.1L84.0,16.0L88.0,16.0L92.0,15.9L96.0,15.9L100.0,15.9L104.0,15.9L108.0,15.9L112.0,15.9L116.0,16.0L120.0,16.1L124.0,16.2' stroke-width='0.62'/%3e%3cpath d='M-4.0,17.7L0.0,17.8L4.0,17.8L8.0,17.9L12.0,18.0L16.0,18.0L20.0,18.1L24.0,18.1L28.0,18.1L32.0,18.1L36.0,18.1L40.0,18.0L44.0,18.0L48.0,17.9L52.0,17.9L56.0,17.8L60.0,17.7L64.0,17.6L68.0,17.5L72.0,17.5L76.0,17.4L80.0,17.3L84.0,17.2L88.0,17.2L92.0,17.1L96.0,17.1L100.0,17.1L104.0,17.1L108.0,17.2L112.0,17.2L116.0,17.3L120.0,17.4L124.0,17.5' stroke-width='0.66'/%3e%3cpath d='M-4.0,19.0L0.0,19.1L4.0,19.1L8.0,19.2L12.0,19.3L16.0,19.3L20.0,19.3L24.0,19.3L28.0,19.4L32.0,19.3L36.0,19.3L40.0,19.3L44.0,19.2L48.0,19.2L52.0,19.1L56.0,19.0L60.0,18.9L64.0,18.8L68.0,18.7L72.0,18.7L76.0,18.6L80.0,18.5L84.0,18.5L88.0,18.4L92.0,18.4L96.0,18.4L100.0,18.4L104.0,18.4L108.0,18.4L112.0,18.5L116.0,18.6L120.0,18.7L124.0,18.8' stroke-width='0.79'/%3e%3cpath d='M-4.0,22.8L0.0,22.8L4.0,22.9L8.0,22.9L12.0,23.0L16.0,23.0L20.0,23.0L24.0,23.0L28.0,23.0L32.0,22.9L36.0,22.9L40.0,22.8L44.0,22.8L48.0,22.7L52.0,22.6L56.0,22.5L60.0,22.4L64.0,22.3L68.0,22.3L72.0,22.2L76.0,22.1L80.0,22.1L84.0,22.0L88.0,22.0L92.0,22.0L96.0,22.0L100.0,22.0L104.0,22.1L108.0,22.2L112.0,22.2L116.0,22.3L120.0,22.5L124.0,22.6' stroke-width='1.18'/%3e%3cpath d='M-4.0,23.9L0.0,23.9L4.0,24.0L8.0,24.0L12.0,24.1L16.0,24.1L20.0,24.1L24.0,24.1L28.0,24.0L32.0,24.0L36.0,23.9L40.0,23.9L44.0,23.8L48.0,23.7L52.0,23.6L56.0,23.6L60.0,23.5L64.0,23.4L68.0,23.3L72.0,23.2L76.0,23.2L80.0,23.1L84.0,23.1L88.0,23.1L92.0,23.1L96.0,23.1L100.0,23.1L104.0,23.2L108.0,23.3L112.0,23.4L116.0,23.5L120.0,23.6L124.0,23.7' stroke-width='0.84'/%3e%3cpath d='M-4.0,27.9L0.0,27.9L4.0,28.0L8.0,28.0L12.0,28.0L16.0,28.0L20.0,28.0L24.0,27.9L28.0,27.9L32.0,27.8L36.0,27.7L40.0,27.6L44.0,27.6L48.0,27.5L52.0,27.4L56.0,27.3L60.0,27.2L64.0,27.1L68.0,27.1L72.0,27.0L76.0,27.0L80.0,26.9L84.0,26.9L88.0,26.9L92.0,27.0L96.0,27.0L100.0,27.1L104.0,27.2L108.0,27.3L112.0,27.4L116.0,27.5L120.0,27.7L124.0,27.8' stroke-width='1.31'/%3e%3cpath d='M-4.0,29.2L0.0,29.2L4.0,29.2L8.0,29.2L12.0,29.2L16.0,29.2L20.0,29.2L24.0,29.1L28.0,29.1L32.0,29.0L36.0,28.9L40.0,28.8L44.0,28.7L48.0,28.7L52.0,28.6L56.0,28.5L60.0,28.4L64.0,28.3L68.0,28.3L72.0,28.2L76.0,28.2L80.0,28.2L84.0,28.2L88.0,28.2L92.0,28.2L96.0,28.3L100.0,28.4L104.0,28.5L108.0,28.6L112.0,28.7L116.0,28.8L120.0,29.0L124.0,29.1' stroke-width='1.29'/%3e%3cpath d='M-4.0,30.5L0.0,30.5L4.0,30.5L8.0,30.5L12.0,30.5L16.0,30.5L20.0,30.5L24.0,30.4L28.0,30.3L32.0,30.3L36.0,30.2L40.0,30.1L44.0,30.0L48.0,29.9L52.0,29.8L56.0,29.7L60.0,29.7L64.0,29.6L68.0,29.5L72.0,29.5L76.0,29.5L80.0,29.5L84.0,29.5L88.0,29.5L92.0,29.5L96.0,29.6L100.0,29.7L104.0,29.8L108.0,29.9L112.0,30.1L116.0,30.2L120.0,30.4L124.0,30.5' stroke-width='0.89'/%3e%3cpath d='M-4.0,32.7L0.0,32.7L4.0,32.7L8.0,32.7L12.0,32.7L16.0,32.7L20.0,32.6L24.0,32.6L28.0,32.5L32.0,32.4L36.0,32.3L40.0,32.2L44.0,32.1L48.0,32.0L52.0,31.9L56.0,31.9L60.0,31.8L64.0,31.7L68.0,31.7L72.0,31.6L76.0,31.6L80.0,31.6L84.0,31.7L88.0,31.7L92.0,31.8L96.0,31.9L100.0,32.0L104.0,32.1L108.0,32.2L112.0,32.4L116.0,32.5L120.0,32.7L124.0,32.9' stroke-width='0.66'/%3e%3cpath d='M-4.0,35.2L0.0,35.2L4.0,35.2L8.0,35.1L12.0,35.1L16.0,35.0L20.0,35.0L24.0,34.9L28.0,34.8L32.0,34.7L36.0,34.6L40.0,34.5L44.0,34.4L48.0,34.3L52.0,34.3L56.0,34.2L60.0,34.1L64.0,34.1L68.0,34.0L72.0,34.0L76.0,34.0L80.0,34.1L84.0,34.1L88.0,34.2L92.0,34.3L96.0,34.4L100.0,34.5L104.0,34.6L108.0,34.8L112.0,34.9L116.0,35.1L120.0,35.3L124.0,35.4' stroke-width='0.70'/%3e%3c/g%3e%3cg stroke='%2356A98B'%3e%3cpath d='M-4.0,2.2L0.0,2.3L4.0,2.3L8.0,2.4L12.0,2.5L16.0,2.6L20.0,2.7L24.0,2.8L28.0,2.8L32.0,2.9L36.0,3.0L40.0,3.0L44.0,3.1L48.0,3.1L52.0,3.1L56.0,3.1L60.0,3.1L64.0,3.1L68.0,3.1L72.0,3.0L76.0,3.0L80.0,2.9L84.0,2.8L88.0,2.7L92.0,2.7L96.0,2.6L100.0,2.5L104.0,2.4L108.0,2.4L112.0,2.3L116.0,2.3L120.0,2.3L124.0,2.3' stroke-width='0.91'/%3e%3cpath d='M-4.0,9.8L0.0,9.8L4.0,9.9L8.0,10.0L12.0,10.1L16.0,10.2L20.0,10.3L24.0,10.3L28.0,10.4L32.0,10.4L36.0,10.5L40.0,10.5L44.0,10.5L48.0,10.5L52.0,10.4L56.0,10.4L60.0,10.3L64.0,10.3L68.0,10.2L72.0,10.1L76.0,10.0L80.0,10.0L84.0,9.9L88.0,9.8L92.0,9.7L96.0,9.7L100.0,9.6L104.0,9.6L108.0,9.6L112.0,9.6L116.0,9.6L120.0,9.6L124.0,9.7' stroke-width='1.37'/%3e%3cpath d='M-4.0,13.8L0.0,13.9L4.0,13.9L8.0,14.0L12.0,14.1L16.0,14.2L20.0,14.2L24.0,14.3L28.0,14.3L32.0,14.3L36.0,14.3L40.0,14.3L44.0,14.3L48.0,14.3L52.0,14.2L56.0,14.2L60.0,14.1L64.0,14.0L68.0,13.9L72.0,13.8L76.0,13.8L80.0,13.7L84.0,13.6L88.0,13.5L92.0,13.5L96.0,13.4L100.0,13.4L104.0,13.4L108.0,13.4L112.0,13.4L116.0,13.5L120.0,13.5L124.0,13.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,15.1L0.0,15.2L4.0,15.3L8.0,15.4L12.0,15.5L16.0,15.5L20.0,15.6L24.0,15.6L28.0,15.6L32.0,15.6L36.0,15.6L40.0,15.6L44.0,15.6L48.0,15.6L52.0,15.5L56.0,15.4L60.0,15.4L64.0,15.3L68.0,15.2L72.0,15.1L76.0,15.0L80.0,14.9L84.0,14.9L88.0,14.8L92.0,14.8L96.0,14.7L100.0,14.7L104.0,14.7L108.0,14.7L112.0,14.7L116.0,14.8L120.0,14.9L124.0,15.0' stroke-width='0.85'/%3e%3cpath d='M-4.0,20.3L0.0,20.4L4.0,20.5L8.0,20.5L12.0,20.6L16.0,20.6L20.0,20.7L24.0,20.7L28.0,20.7L32.0,20.6L36.0,20.6L40.0,20.5L44.0,20.5L48.0,20.4L52.0,20.3L56.0,20.3L60.0,20.2L64.0,20.1L68.0,20.0L72.0,19.9L76.0,19.8L80.0,19.8L84.0,19.7L88.0,19.7L92.0,19.7L96.0,19.7L100.0,19.7L104.0,19.7L108.0,19.8L112.0,19.8L116.0,19.9L120.0,20.0L124.0,20.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,21.5L0.0,21.6L4.0,21.7L8.0,21.7L12.0,21.8L16.0,21.8L20.0,21.8L24.0,21.8L28.0,21.8L32.0,21.8L36.0,21.7L40.0,21.7L44.0,21.6L48.0,21.5L52.0,21.5L56.0,21.4L60.0,21.3L64.0,21.2L68.0,21.1L72.0,21.0L76.0,21.0L80.0,20.9L84.0,20.9L88.0,20.8L92.0,20.8L96.0,20.8L100.0,20.8L104.0,20.9L108.0,20.9L112.0,21.0L116.0,21.1L120.0,21.2L124.0,21.4' stroke-width='1.29'/%3e%3cpath d='M-4.0,25.2L0.0,25.3L4.0,25.3L8.0,25.4L12.0,25.4L16.0,25.4L20.0,25.4L24.0,25.4L28.0,25.3L32.0,25.3L36.0,25.2L40.0,25.1L44.0,25.1L48.0,25.0L52.0,24.9L56.0,24.8L60.0,24.7L64.0,24.6L68.0,24.6L72.0,24.5L76.0,24.4L80.0,24.4L84.0,24.4L88.0,24.4L92.0,24.4L96.0,24.4L100.0,24.4L104.0,24.5L108.0,24.6L112.0,24.7L116.0,24.8L120.0,25.0L124.0,25.1' stroke-width='0.62'/%3e%3c/g%3e%3cg stroke='%235EB193'%3e%3cpath d='M-4.0,-0.1L0.0,-0.1L4.0,-0.0L8.0,0.0L12.0,0.1L16.0,0.2L20.0,0.2L24.0,0.3L28.0,0.4L32.0,0.5L36.0,0.6L40.0,0.7L44.0,0.7L48.0,0.8L52.0,0.8L56.0,0.8L60.0,0.8L64.0,0.8L68.0,0.8L72.0,0.8L76.0,0.7L80.0,0.6L84.0,0.6L88.0,0.5L92.0,0.4L96.0,0.4L100.0,0.3L104.0,0.2L108.0,0.1L112.0,0.1L116.0,0.0L120.0,0.0L124.0,0.0' stroke-width='0.94'/%3e%3cpath d='M-4.0,1.0L0.0,1.1L4.0,1.1L8.0,1.2L12.0,1.3L16.0,1.4L20.0,1.5L24.0,1.6L28.0,1.7L32.0,1.7L36.0,1.8L40.0,1.9L44.0,1.9L48.0,2.0L52.0,2.0L56.0,2.0L60.0,2.0L64.0,2.0L68.0,2.0L72.0,1.9L76.0,1.9L80.0,1.8L84.0,1.7L88.0,1.7L92.0,1.6L96.0,1.5L100.0,1.4L104.0,1.4L108.0,1.3L112.0,1.2L116.0,1.2L120.0,1.2L124.0,1.2' stroke-width='1.31'/%3e%3cpath d='M-4.0,3.5L0.0,3.6L4.0,3.7L8.0,3.8L12.0,3.9L16.0,3.9L20.0,4.0L24.0,4.1L28.0,4.2L32.0,4.3L36.0,4.3L40.0,4.4L44.0,4.4L48.0,4.5L52.0,4.5L56.0,4.5L60.0,4.4L64.0,4.4L68.0,4.4L72.0,4.3L76.0,4.2L80.0,4.2L84.0,4.1L88.0,4.0L92.0,3.9L96.0,3.9L100.0,3.8L104.0,3.7L108.0,3.7L112.0,3.6L116.0,3.6L120.0,3.6L124.0,3.6' stroke-width='0.90'/%3e%3cpath d='M-4.0,4.7L0.0,4.8L4.0,4.9L8.0,5.0L12.0,5.1L16.0,5.1L20.0,5.2L24.0,5.3L28.0,5.4L32.0,5.5L36.0,5.5L40.0,5.6L44.0,5.6L48.0,5.6L52.0,5.6L56.0,5.6L60.0,5.6L64.0,5.5L68.0,5.5L72.0,5.4L76.0,5.4L80.0,5.3L84.0,5.2L88.0,5.1L92.0,5.0L96.0,5.0L100.0,4.9L104.0,4.8L108.0,4.8L112.0,4.8L116.0,4.7L120.0,4.7L124.0,4.7' stroke-width='1.03'/%3e%3cpath d='M-4.0,6.1L0.0,6.1L4.0,6.2L8.0,6.3L12.0,6.4L16.0,6.5L20.0,6.6L24.0,6.7L28.0,6.7L32.0,6.8L36.0,6.8L40.0,6.9L44.0,6.9L48.0,6.9L52.0,6.9L56.0,6.9L60.0,6.8L64.0,6.8L68.0,6.7L72.0,6.7L76.0,6.6L80.0,6.5L84.0,6.4L88.0,6.4L92.0,6.3L96.0,6.2L100.0,6.2L104.0,6.1L108.0,6.1L112.0,6.0L116.0,6.0L120.0,6.0L124.0,6.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,7.3L0.0,7.3L4.0,7.4L8.0,7.5L12.0,7.6L16.0,7.7L20.0,7.8L24.0,7.8L28.0,7.9L32.0,8.0L36.0,8.0L40.0,8.0L44.0,8.0L48.0,8.0L52.0,8.0L56.0,8.0L60.0,8.0L64.0,7.9L68.0,7.9L72.0,7.8L76.0,7.7L80.0,7.6L84.0,7.5L88.0,7.5L92.0,7.4L96.0,7.3L100.0,7.3L104.0,7.2L108.0,7.2L112.0,7.2L116.0,7.2L120.0,7.2L124.0,7.2' stroke-width='1.05'/%3e%3cpath d='M-4.0,8.5L0.0,8.5L4.0,8.6L8.0,8.7L12.0,8.8L16.0,8.9L20.0,8.9L24.0,9.0L28.0,9.1L32.0,9.1L36.0,9.2L40.0,9.2L44.0,9.2L48.0,9.2L52.0,9.2L56.0,9.1L60.0,9.1L64.0,9.0L68.0,9.0L72.0,8.9L76.0,8.8L80.0,8.7L84.0,8.7L88.0,8.6L92.0,8.5L96.0,8.4L100.0,8.4L104.0,8.3L108.0,8.3L112.0,8.3L116.0,8.3L120.0,8.3L124.0,8.4' stroke-width='0.79'/%3e%3cpath d='M-4.0,11.0L0.0,11.1L4.0,11.2L8.0,11.2L12.0,11.3L16.0,11.4L20.0,11.5L24.0,11.5L28.0,11.6L32.0,11.6L36.0,11.6L40.0,11.6L44.0,11.6L48.0,11.6L52.0,11.6L56.0,11.5L60.0,11.5L64.0,11.4L68.0,11.3L72.0,11.3L76.0,11.2L80.0,11.1L84.0,11.0L88.0,10.9L92.0,10.9L96.0,10.8L100.0,10.8L104.0,10.7L108.0,10.7L112.0,10.7L116.0,10.8L120.0,10.8L124.0,10.9' stroke-width='1.36'/%3e%3cpath d='M-4.0,12.4L0.0,12.5L4.0,12.6L8.0,12.6L12.0,12.7L16.0,12.8L20.0,12.9L24.0,12.9L28.0,12.9L32.0,13.0L36.0,13.0L40.0,13.0L44.0,13.0L48.0,12.9L52.0,12.9L56.0,12.8L60.0,12.8L64.0,12.7L68.0,12.6L72.0,12.6L76.0,12.5L80.0,12.4L84.0,12.3L88.0,12.2L92.0,12.2L96.0,12.1L100.0,12.1L104.0,12.1L108.0,12.1L112.0,12.1L116.0,12.1L120.0,12.2L124.0,12.2' stroke-width='0.73'/%3e%3c/g%3e%3cg stroke='%238FD2B4' opacity='.45'%3e%3cpath d='M-4.0,15.8L0.0,15.9L4.0,15.9L8.0,16.0L12.0,16.1L16.0,16.1L20.0,16.2L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.1L56.0,16.0L60.0,15.9L64.0,15.9L68.0,15.8L72.0,15.7L76.0,15.6L80.0,15.5L84.0,15.5L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.4L116.0,15.4L120.0,15.5L124.0,15.6' stroke-width='0.69'/%3e%3cpath d='M-4.0,14.5L0.0,14.6L4.0,14.7L8.0,14.8L12.0,14.8L16.0,14.9L20.0,15.0L24.0,15.0L28.0,15.0L32.0,15.0L36.0,15.0L40.0,15.0L44.0,15.0L48.0,15.0L52.0,14.9L56.0,14.8L60.0,14.8L64.0,14.7L68.0,14.6L72.0,14.5L76.0,14.4L80.0,14.4L84.0,14.3L88.0,14.2L92.0,14.2L96.0,14.1L100.0,14.1L104.0,14.1L108.0,14.1L112.0,14.1L116.0,14.2L120.0,14.3L124.0,14.3' stroke-width='0.60'/%3e%3cpath d='M-4.0,15.4L0.0,15.5L4.0,15.5L8.0,15.6L12.0,15.7L16.0,15.7L20.0,15.8L24.0,15.8L28.0,15.9L32.0,15.9L36.0,15.9L40.0,15.8L44.0,15.8L48.0,15.8L52.0,15.7L56.0,15.6L60.0,15.6L64.0,15.5L68.0,15.4L72.0,15.3L76.0,15.2L80.0,15.1L84.0,15.1L88.0,15.0L92.0,15.0L96.0,14.9L100.0,14.9L104.0,14.9L108.0,14.9L112.0,15.0L116.0,15.0L120.0,15.1L124.0,15.2' stroke-width='0.47'/%3e%3cpath d='M-4.0,11.3L0.0,11.4L4.0,11.5L8.0,11.6L12.0,11.7L16.0,11.7L20.0,11.8L24.0,11.9L28.0,11.9L32.0,11.9L36.0,12.0L40.0,12.0L44.0,12.0L48.0,11.9L52.0,11.9L56.0,11.9L60.0,11.8L64.0,11.7L68.0,11.6L72.0,11.6L76.0,11.5L80.0,11.4L84.0,11.3L88.0,11.3L92.0,11.2L96.0,11.1L100.0,11.1L104.0,11.1L108.0,11.1L112.0,11.1L116.0,11.1L120.0,11.1L124.0,11.2' stroke-width='0.45'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
222
- --ak-weave-secondary-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 36' preserveAspectRatio='none'%3e%3crect width='120' height='36' fill='%230E0C09'/%3e%3cg fill='none' stroke-linecap='round'%3e%3cg stroke='%2315120E' opacity='.5'%3e%3cpath d='M-4.0,0.8L0.0,0.9L4.0,1.0L8.0,1.0L12.0,1.1L16.0,1.2L20.0,1.3L24.0,1.4L28.0,1.5L32.0,1.5L36.0,1.6L40.0,1.7L44.0,1.7L48.0,1.8L52.0,1.8L56.0,1.8L60.0,1.8L64.0,1.8L68.0,1.8L72.0,1.7L76.0,1.7L80.0,1.6L84.0,1.5L88.0,1.5L92.0,1.4L96.0,1.3L100.0,1.2L104.0,1.2L108.0,1.1L112.0,1.1L116.0,1.0L120.0,1.0L124.0,1.0' stroke-width='0.78'/%3e%3cpath d='M-4.0,3.3L0.0,3.4L4.0,3.4L8.0,3.5L12.0,3.6L16.0,3.7L20.0,3.8L24.0,3.9L28.0,4.0L32.0,4.0L36.0,4.1L40.0,4.1L44.0,4.2L48.0,4.2L52.0,4.2L56.0,4.2L60.0,4.2L64.0,4.2L68.0,4.1L72.0,4.1L76.0,4.0L80.0,3.9L84.0,3.9L88.0,3.8L92.0,3.7L96.0,3.6L100.0,3.6L104.0,3.5L108.0,3.4L112.0,3.4L116.0,3.4L120.0,3.4L124.0,3.4' stroke-width='0.59'/%3e%3cpath d='M-4.0,5.8L0.0,5.8L4.0,5.9L8.0,6.0L12.0,6.1L16.0,6.2L20.0,6.3L24.0,6.4L28.0,6.4L32.0,6.5L36.0,6.5L40.0,6.6L44.0,6.6L48.0,6.6L52.0,6.6L56.0,6.6L60.0,6.6L64.0,6.5L68.0,6.5L72.0,6.4L76.0,6.3L80.0,6.3L84.0,6.2L88.0,6.1L92.0,6.0L96.0,5.9L100.0,5.9L104.0,5.8L108.0,5.8L112.0,5.7L116.0,5.7L120.0,5.7L124.0,5.8' stroke-width='0.55'/%3e%3cpath d='M-4.0,8.3L0.0,8.3L4.0,8.4L8.0,8.5L12.0,8.6L16.0,8.7L20.0,8.8L24.0,8.8L28.0,8.9L32.0,8.9L36.0,9.0L40.0,9.0L44.0,9.0L48.0,9.0L52.0,9.0L56.0,9.0L60.0,8.9L64.0,8.9L68.0,8.8L72.0,8.7L76.0,8.6L80.0,8.6L84.0,8.5L88.0,8.4L92.0,8.3L96.0,8.3L100.0,8.2L104.0,8.2L108.0,8.1L112.0,8.1L116.0,8.1L120.0,8.1L124.0,8.2' stroke-width='0.78'/%3e%3cpath d='M-4.0,10.7L0.0,10.8L4.0,10.9L8.0,11.0L12.0,11.1L16.0,11.2L20.0,11.2L24.0,11.3L28.0,11.3L32.0,11.4L36.0,11.4L40.0,11.4L44.0,11.4L48.0,11.4L52.0,11.4L56.0,11.3L60.0,11.3L64.0,11.2L68.0,11.1L72.0,11.0L76.0,11.0L80.0,10.9L84.0,10.8L88.0,10.7L92.0,10.6L96.0,10.6L100.0,10.5L104.0,10.5L108.0,10.5L112.0,10.5L116.0,10.5L120.0,10.6L124.0,10.6' stroke-width='0.78'/%3e%3cpath d='M-4.0,13.2L0.0,13.3L4.0,13.4L8.0,13.5L12.0,13.6L16.0,13.6L20.0,13.7L24.0,13.7L28.0,13.8L32.0,13.8L36.0,13.8L40.0,13.8L44.0,13.8L48.0,13.8L52.0,13.7L56.0,13.6L60.0,13.6L64.0,13.5L68.0,13.4L72.0,13.3L76.0,13.3L80.0,13.2L84.0,13.1L88.0,13.0L92.0,13.0L96.0,12.9L100.0,12.9L104.0,12.9L108.0,12.9L112.0,12.9L116.0,12.9L120.0,13.0L124.0,13.1' stroke-width='0.67'/%3e%3cpath d='M-4.0,15.7L0.0,15.8L4.0,15.9L8.0,16.0L12.0,16.0L16.0,16.1L20.0,16.1L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.0L56.0,16.0L60.0,15.9L64.0,15.8L68.0,15.7L72.0,15.6L76.0,15.6L80.0,15.5L84.0,15.4L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.3L116.0,15.4L120.0,15.4L124.0,15.5' stroke-width='0.79'/%3e%3cpath d='M-4.0,18.2L0.0,18.3L4.0,18.4L8.0,18.4L12.0,18.5L16.0,18.6L20.0,18.6L24.0,18.6L28.0,18.6L32.0,18.6L36.0,18.6L40.0,18.5L44.0,18.5L48.0,18.4L52.0,18.4L56.0,18.3L60.0,18.2L64.0,18.1L68.0,18.0L72.0,18.0L76.0,17.9L80.0,17.8L84.0,17.7L88.0,17.7L92.0,17.7L96.0,17.6L100.0,17.6L104.0,17.7L108.0,17.7L112.0,17.8L116.0,17.8L120.0,17.9L124.0,18.0' stroke-width='0.61'/%3e%3cpath d='M-4.0,20.7L0.0,20.8L4.0,20.9L8.0,20.9L12.0,21.0L16.0,21.0L20.0,21.0L24.0,21.0L28.0,21.0L32.0,21.0L36.0,20.9L40.0,20.9L44.0,20.8L48.0,20.8L52.0,20.7L56.0,20.6L60.0,20.5L64.0,20.4L68.0,20.3L72.0,20.3L76.0,20.2L80.0,20.1L84.0,20.1L88.0,20.0L92.0,20.0L96.0,20.0L100.0,20.0L104.0,20.1L108.0,20.1L112.0,20.2L116.0,20.3L120.0,20.4L124.0,20.5' stroke-width='0.60'/%3e%3cpath d='M-4.0,23.2L0.0,23.3L4.0,23.3L8.0,23.4L12.0,23.4L16.0,23.4L20.0,23.4L24.0,23.4L28.0,23.4L32.0,23.3L36.0,23.3L40.0,23.2L44.0,23.2L48.0,23.1L52.0,23.0L56.0,22.9L60.0,22.8L64.0,22.7L68.0,22.7L72.0,22.6L76.0,22.5L80.0,22.5L84.0,22.4L88.0,22.4L92.0,22.4L96.0,22.4L100.0,22.5L104.0,22.5L108.0,22.6L112.0,22.7L116.0,22.8L120.0,22.9L124.0,23.0' stroke-width='0.80'/%3e%3cpath d='M-4.0,25.7L0.0,25.7L4.0,25.8L8.0,25.8L12.0,25.8L16.0,25.8L20.0,25.8L24.0,25.8L28.0,25.7L32.0,25.7L36.0,25.6L40.0,25.6L44.0,25.5L48.0,25.4L52.0,25.3L56.0,25.2L60.0,25.1L64.0,25.0L68.0,25.0L72.0,24.9L76.0,24.8L80.0,24.8L84.0,24.8L88.0,24.8L92.0,24.8L96.0,24.8L100.0,24.9L104.0,25.0L108.0,25.0L112.0,25.2L116.0,25.3L120.0,25.4L124.0,25.6' stroke-width='0.58'/%3e%3cpath d='M-4.0,28.1L0.0,28.2L4.0,28.2L8.0,28.2L12.0,28.2L16.0,28.2L20.0,28.2L24.0,28.1L28.0,28.1L32.0,28.0L36.0,28.0L40.0,27.9L44.0,27.8L48.0,27.7L52.0,27.6L56.0,27.5L60.0,27.4L64.0,27.4L68.0,27.3L72.0,27.2L76.0,27.2L80.0,27.2L84.0,27.2L88.0,27.2L92.0,27.2L96.0,27.3L100.0,27.3L104.0,27.4L108.0,27.5L112.0,27.7L116.0,27.8L120.0,27.9L124.0,28.1' stroke-width='0.70'/%3e%3cpath d='M-4.0,30.6L0.0,30.6L4.0,30.6L8.0,30.6L12.0,30.6L16.0,30.6L20.0,30.6L24.0,30.5L28.0,30.4L32.0,30.4L36.0,30.3L40.0,30.2L44.0,30.1L48.0,30.0L52.0,29.9L56.0,29.8L60.0,29.7L64.0,29.7L68.0,29.6L72.0,29.6L76.0,29.5L80.0,29.5L84.0,29.6L88.0,29.6L92.0,29.6L96.0,29.7L100.0,29.8L104.0,29.9L108.0,30.0L112.0,30.2L116.0,30.3L120.0,30.5L124.0,30.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,33.0L0.0,33.0L4.0,33.0L8.0,33.0L12.0,33.0L16.0,33.0L20.0,32.9L24.0,32.8L28.0,32.8L32.0,32.7L36.0,32.6L40.0,32.5L44.0,32.4L48.0,32.3L52.0,32.2L56.0,32.1L60.0,32.1L64.0,32.0L68.0,32.0L72.0,31.9L76.0,31.9L80.0,31.9L84.0,32.0L88.0,32.0L92.0,32.1L96.0,32.2L100.0,32.3L104.0,32.4L108.0,32.5L112.0,32.7L116.0,32.8L120.0,33.0L124.0,33.2' stroke-width='0.70'/%3e%3cpath d='M-4.0,35.4L0.0,35.4L4.0,35.4L8.0,35.4L12.0,35.4L16.0,35.3L20.0,35.2L24.0,35.2L28.0,35.1L32.0,35.0L36.0,34.9L40.0,34.8L44.0,34.7L48.0,34.6L52.0,34.5L56.0,34.4L60.0,34.4L64.0,34.3L68.0,34.3L72.0,34.3L76.0,34.3L80.0,34.3L84.0,34.4L88.0,34.5L92.0,34.5L96.0,34.7L100.0,34.8L104.0,34.9L108.0,35.1L112.0,35.2L116.0,35.4L120.0,35.6L124.0,35.7' stroke-width='0.53'/%3e%3c/g%3e%3cg stroke='%232B2620'%3e%3c/g%3e%3cg stroke='%232F2A23'%3e%3cpath d='M-4.0,26.5L0.0,26.6L4.0,26.6L8.0,26.6L12.0,26.6L16.0,26.6L20.0,26.6L24.0,26.6L28.0,26.6L32.0,26.5L36.0,26.4L40.0,26.4L44.0,26.3L48.0,26.2L52.0,26.1L56.0,26.0L60.0,25.9L64.0,25.8L68.0,25.8L72.0,25.7L76.0,25.6L80.0,25.6L84.0,25.6L88.0,25.6L92.0,25.6L96.0,25.7L100.0,25.7L104.0,25.8L108.0,25.9L112.0,26.0L116.0,26.1L120.0,26.3L124.0,26.4' stroke-width='0.76'/%3e%3cpath d='M-4.0,31.6L0.0,31.6L4.0,31.7L8.0,31.7L12.0,31.6L16.0,31.6L20.0,31.6L24.0,31.5L28.0,31.4L32.0,31.3L36.0,31.3L40.0,31.2L44.0,31.1L48.0,31.0L52.0,30.9L56.0,30.8L60.0,30.7L64.0,30.7L68.0,30.6L72.0,30.6L76.0,30.6L80.0,30.6L84.0,30.6L88.0,30.6L92.0,30.7L96.0,30.8L100.0,30.9L104.0,31.0L108.0,31.1L112.0,31.2L116.0,31.4L120.0,31.6L124.0,31.7' stroke-width='0.87'/%3e%3cpath d='M-4.0,34.0L0.0,34.0L4.0,34.0L8.0,34.0L12.0,33.9L16.0,33.9L20.0,33.8L24.0,33.7L28.0,33.7L32.0,33.6L36.0,33.5L40.0,33.4L44.0,33.3L48.0,33.2L52.0,33.1L56.0,33.0L60.0,33.0L64.0,32.9L68.0,32.9L72.0,32.9L76.0,32.8L80.0,32.9L84.0,32.9L88.0,33.0L92.0,33.0L96.0,33.1L100.0,33.2L104.0,33.4L108.0,33.5L112.0,33.7L116.0,33.8L120.0,34.0L124.0,34.2' stroke-width='0.86'/%3e%3cpath d='M-4.0,36.4L0.0,36.4L4.0,36.3L8.0,36.3L12.0,36.3L16.0,36.2L20.0,36.1L24.0,36.0L28.0,36.0L32.0,35.9L36.0,35.8L40.0,35.7L44.0,35.6L48.0,35.5L52.0,35.4L56.0,35.3L60.0,35.3L64.0,35.2L68.0,35.2L72.0,35.2L76.0,35.2L80.0,35.3L84.0,35.3L88.0,35.4L92.0,35.5L96.0,35.6L100.0,35.7L104.0,35.9L108.0,36.0L112.0,36.2L116.0,36.4L120.0,36.5L124.0,36.7' stroke-width='0.86'/%3e%3c/g%3e%3cg stroke='%23332E26'%3e%3cpath d='M-4.0,16.4L0.0,16.5L4.0,16.5L8.0,16.6L12.0,16.7L16.0,16.7L20.0,16.8L24.0,16.8L28.0,16.8L32.0,16.8L36.0,16.8L40.0,16.8L44.0,16.8L48.0,16.7L52.0,16.6L56.0,16.6L60.0,16.5L64.0,16.4L68.0,16.3L72.0,16.2L76.0,16.2L80.0,16.1L84.0,16.0L88.0,16.0L92.0,15.9L96.0,15.9L100.0,15.9L104.0,15.9L108.0,15.9L112.0,15.9L116.0,16.0L120.0,16.1L124.0,16.2' stroke-width='0.62'/%3e%3cpath d='M-4.0,17.7L0.0,17.8L4.0,17.8L8.0,17.9L12.0,18.0L16.0,18.0L20.0,18.1L24.0,18.1L28.0,18.1L32.0,18.1L36.0,18.1L40.0,18.0L44.0,18.0L48.0,17.9L52.0,17.9L56.0,17.8L60.0,17.7L64.0,17.6L68.0,17.5L72.0,17.5L76.0,17.4L80.0,17.3L84.0,17.2L88.0,17.2L92.0,17.1L96.0,17.1L100.0,17.1L104.0,17.1L108.0,17.2L112.0,17.2L116.0,17.3L120.0,17.4L124.0,17.5' stroke-width='0.66'/%3e%3cpath d='M-4.0,19.0L0.0,19.1L4.0,19.1L8.0,19.2L12.0,19.3L16.0,19.3L20.0,19.3L24.0,19.3L28.0,19.4L32.0,19.3L36.0,19.3L40.0,19.3L44.0,19.2L48.0,19.2L52.0,19.1L56.0,19.0L60.0,18.9L64.0,18.8L68.0,18.7L72.0,18.7L76.0,18.6L80.0,18.5L84.0,18.5L88.0,18.4L92.0,18.4L96.0,18.4L100.0,18.4L104.0,18.4L108.0,18.4L112.0,18.5L116.0,18.6L120.0,18.7L124.0,18.8' stroke-width='0.79'/%3e%3cpath d='M-4.0,22.8L0.0,22.8L4.0,22.9L8.0,22.9L12.0,23.0L16.0,23.0L20.0,23.0L24.0,23.0L28.0,23.0L32.0,22.9L36.0,22.9L40.0,22.8L44.0,22.8L48.0,22.7L52.0,22.6L56.0,22.5L60.0,22.4L64.0,22.3L68.0,22.3L72.0,22.2L76.0,22.1L80.0,22.1L84.0,22.0L88.0,22.0L92.0,22.0L96.0,22.0L100.0,22.0L104.0,22.1L108.0,22.2L112.0,22.2L116.0,22.3L120.0,22.5L124.0,22.6' stroke-width='1.18'/%3e%3cpath d='M-4.0,23.9L0.0,23.9L4.0,24.0L8.0,24.0L12.0,24.1L16.0,24.1L20.0,24.1L24.0,24.1L28.0,24.0L32.0,24.0L36.0,23.9L40.0,23.9L44.0,23.8L48.0,23.7L52.0,23.6L56.0,23.6L60.0,23.5L64.0,23.4L68.0,23.3L72.0,23.2L76.0,23.2L80.0,23.1L84.0,23.1L88.0,23.1L92.0,23.1L96.0,23.1L100.0,23.1L104.0,23.2L108.0,23.3L112.0,23.4L116.0,23.5L120.0,23.6L124.0,23.7' stroke-width='0.84'/%3e%3cpath d='M-4.0,27.9L0.0,27.9L4.0,28.0L8.0,28.0L12.0,28.0L16.0,28.0L20.0,28.0L24.0,27.9L28.0,27.9L32.0,27.8L36.0,27.7L40.0,27.6L44.0,27.6L48.0,27.5L52.0,27.4L56.0,27.3L60.0,27.2L64.0,27.1L68.0,27.1L72.0,27.0L76.0,27.0L80.0,26.9L84.0,26.9L88.0,26.9L92.0,27.0L96.0,27.0L100.0,27.1L104.0,27.2L108.0,27.3L112.0,27.4L116.0,27.5L120.0,27.7L124.0,27.8' stroke-width='1.31'/%3e%3cpath d='M-4.0,29.2L0.0,29.2L4.0,29.2L8.0,29.2L12.0,29.2L16.0,29.2L20.0,29.2L24.0,29.1L28.0,29.1L32.0,29.0L36.0,28.9L40.0,28.8L44.0,28.7L48.0,28.7L52.0,28.6L56.0,28.5L60.0,28.4L64.0,28.3L68.0,28.3L72.0,28.2L76.0,28.2L80.0,28.2L84.0,28.2L88.0,28.2L92.0,28.2L96.0,28.3L100.0,28.4L104.0,28.5L108.0,28.6L112.0,28.7L116.0,28.8L120.0,29.0L124.0,29.1' stroke-width='1.29'/%3e%3cpath d='M-4.0,30.5L0.0,30.5L4.0,30.5L8.0,30.5L12.0,30.5L16.0,30.5L20.0,30.5L24.0,30.4L28.0,30.3L32.0,30.3L36.0,30.2L40.0,30.1L44.0,30.0L48.0,29.9L52.0,29.8L56.0,29.7L60.0,29.7L64.0,29.6L68.0,29.5L72.0,29.5L76.0,29.5L80.0,29.5L84.0,29.5L88.0,29.5L92.0,29.5L96.0,29.6L100.0,29.7L104.0,29.8L108.0,29.9L112.0,30.1L116.0,30.2L120.0,30.4L124.0,30.5' stroke-width='0.89'/%3e%3cpath d='M-4.0,32.7L0.0,32.7L4.0,32.7L8.0,32.7L12.0,32.7L16.0,32.7L20.0,32.6L24.0,32.6L28.0,32.5L32.0,32.4L36.0,32.3L40.0,32.2L44.0,32.1L48.0,32.0L52.0,31.9L56.0,31.9L60.0,31.8L64.0,31.7L68.0,31.7L72.0,31.6L76.0,31.6L80.0,31.6L84.0,31.7L88.0,31.7L92.0,31.8L96.0,31.9L100.0,32.0L104.0,32.1L108.0,32.2L112.0,32.4L116.0,32.5L120.0,32.7L124.0,32.9' stroke-width='0.66'/%3e%3cpath d='M-4.0,35.2L0.0,35.2L4.0,35.2L8.0,35.1L12.0,35.1L16.0,35.0L20.0,35.0L24.0,34.9L28.0,34.8L32.0,34.7L36.0,34.6L40.0,34.5L44.0,34.4L48.0,34.3L52.0,34.3L56.0,34.2L60.0,34.1L64.0,34.1L68.0,34.0L72.0,34.0L76.0,34.0L80.0,34.1L84.0,34.1L88.0,34.2L92.0,34.3L96.0,34.4L100.0,34.5L104.0,34.6L108.0,34.8L112.0,34.9L116.0,35.1L120.0,35.3L124.0,35.4' stroke-width='0.70'/%3e%3c/g%3e%3cg stroke='%2338322A'%3e%3cpath d='M-4.0,2.2L0.0,2.3L4.0,2.3L8.0,2.4L12.0,2.5L16.0,2.6L20.0,2.7L24.0,2.8L28.0,2.8L32.0,2.9L36.0,3.0L40.0,3.0L44.0,3.1L48.0,3.1L52.0,3.1L56.0,3.1L60.0,3.1L64.0,3.1L68.0,3.1L72.0,3.0L76.0,3.0L80.0,2.9L84.0,2.8L88.0,2.7L92.0,2.7L96.0,2.6L100.0,2.5L104.0,2.4L108.0,2.4L112.0,2.3L116.0,2.3L120.0,2.3L124.0,2.3' stroke-width='0.91'/%3e%3cpath d='M-4.0,9.8L0.0,9.8L4.0,9.9L8.0,10.0L12.0,10.1L16.0,10.2L20.0,10.3L24.0,10.3L28.0,10.4L32.0,10.4L36.0,10.5L40.0,10.5L44.0,10.5L48.0,10.5L52.0,10.4L56.0,10.4L60.0,10.3L64.0,10.3L68.0,10.2L72.0,10.1L76.0,10.0L80.0,10.0L84.0,9.9L88.0,9.8L92.0,9.7L96.0,9.7L100.0,9.6L104.0,9.6L108.0,9.6L112.0,9.6L116.0,9.6L120.0,9.6L124.0,9.7' stroke-width='1.37'/%3e%3cpath d='M-4.0,13.8L0.0,13.9L4.0,13.9L8.0,14.0L12.0,14.1L16.0,14.2L20.0,14.2L24.0,14.3L28.0,14.3L32.0,14.3L36.0,14.3L40.0,14.3L44.0,14.3L48.0,14.3L52.0,14.2L56.0,14.2L60.0,14.1L64.0,14.0L68.0,13.9L72.0,13.8L76.0,13.8L80.0,13.7L84.0,13.6L88.0,13.5L92.0,13.5L96.0,13.4L100.0,13.4L104.0,13.4L108.0,13.4L112.0,13.4L116.0,13.5L120.0,13.5L124.0,13.6' stroke-width='0.73'/%3e%3cpath d='M-4.0,15.1L0.0,15.2L4.0,15.3L8.0,15.4L12.0,15.5L16.0,15.5L20.0,15.6L24.0,15.6L28.0,15.6L32.0,15.6L36.0,15.6L40.0,15.6L44.0,15.6L48.0,15.6L52.0,15.5L56.0,15.4L60.0,15.4L64.0,15.3L68.0,15.2L72.0,15.1L76.0,15.0L80.0,14.9L84.0,14.9L88.0,14.8L92.0,14.8L96.0,14.7L100.0,14.7L104.0,14.7L108.0,14.7L112.0,14.7L116.0,14.8L120.0,14.9L124.0,15.0' stroke-width='0.85'/%3e%3cpath d='M-4.0,20.3L0.0,20.4L4.0,20.5L8.0,20.5L12.0,20.6L16.0,20.6L20.0,20.7L24.0,20.7L28.0,20.7L32.0,20.6L36.0,20.6L40.0,20.5L44.0,20.5L48.0,20.4L52.0,20.3L56.0,20.3L60.0,20.2L64.0,20.1L68.0,20.0L72.0,19.9L76.0,19.8L80.0,19.8L84.0,19.7L88.0,19.7L92.0,19.7L96.0,19.7L100.0,19.7L104.0,19.7L108.0,19.8L112.0,19.8L116.0,19.9L120.0,20.0L124.0,20.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,21.5L0.0,21.6L4.0,21.7L8.0,21.7L12.0,21.8L16.0,21.8L20.0,21.8L24.0,21.8L28.0,21.8L32.0,21.8L36.0,21.7L40.0,21.7L44.0,21.6L48.0,21.5L52.0,21.5L56.0,21.4L60.0,21.3L64.0,21.2L68.0,21.1L72.0,21.0L76.0,21.0L80.0,20.9L84.0,20.9L88.0,20.8L92.0,20.8L96.0,20.8L100.0,20.8L104.0,20.9L108.0,20.9L112.0,21.0L116.0,21.1L120.0,21.2L124.0,21.4' stroke-width='1.29'/%3e%3cpath d='M-4.0,25.2L0.0,25.3L4.0,25.3L8.0,25.4L12.0,25.4L16.0,25.4L20.0,25.4L24.0,25.4L28.0,25.3L32.0,25.3L36.0,25.2L40.0,25.1L44.0,25.1L48.0,25.0L52.0,24.9L56.0,24.8L60.0,24.7L64.0,24.6L68.0,24.6L72.0,24.5L76.0,24.4L80.0,24.4L84.0,24.4L88.0,24.4L92.0,24.4L96.0,24.4L100.0,24.4L104.0,24.5L108.0,24.6L112.0,24.7L116.0,24.8L120.0,25.0L124.0,25.1' stroke-width='0.62'/%3e%3c/g%3e%3cg stroke='%233D372E'%3e%3cpath d='M-4.0,-0.1L0.0,-0.1L4.0,-0.0L8.0,0.0L12.0,0.1L16.0,0.2L20.0,0.2L24.0,0.3L28.0,0.4L32.0,0.5L36.0,0.6L40.0,0.7L44.0,0.7L48.0,0.8L52.0,0.8L56.0,0.8L60.0,0.8L64.0,0.8L68.0,0.8L72.0,0.8L76.0,0.7L80.0,0.6L84.0,0.6L88.0,0.5L92.0,0.4L96.0,0.4L100.0,0.3L104.0,0.2L108.0,0.1L112.0,0.1L116.0,0.0L120.0,0.0L124.0,0.0' stroke-width='0.94'/%3e%3cpath d='M-4.0,1.0L0.0,1.1L4.0,1.1L8.0,1.2L12.0,1.3L16.0,1.4L20.0,1.5L24.0,1.6L28.0,1.7L32.0,1.7L36.0,1.8L40.0,1.9L44.0,1.9L48.0,2.0L52.0,2.0L56.0,2.0L60.0,2.0L64.0,2.0L68.0,2.0L72.0,1.9L76.0,1.9L80.0,1.8L84.0,1.7L88.0,1.7L92.0,1.6L96.0,1.5L100.0,1.4L104.0,1.4L108.0,1.3L112.0,1.2L116.0,1.2L120.0,1.2L124.0,1.2' stroke-width='1.31'/%3e%3cpath d='M-4.0,3.5L0.0,3.6L4.0,3.7L8.0,3.8L12.0,3.9L16.0,3.9L20.0,4.0L24.0,4.1L28.0,4.2L32.0,4.3L36.0,4.3L40.0,4.4L44.0,4.4L48.0,4.5L52.0,4.5L56.0,4.5L60.0,4.4L64.0,4.4L68.0,4.4L72.0,4.3L76.0,4.2L80.0,4.2L84.0,4.1L88.0,4.0L92.0,3.9L96.0,3.9L100.0,3.8L104.0,3.7L108.0,3.7L112.0,3.6L116.0,3.6L120.0,3.6L124.0,3.6' stroke-width='0.90'/%3e%3cpath d='M-4.0,4.7L0.0,4.8L4.0,4.9L8.0,5.0L12.0,5.1L16.0,5.1L20.0,5.2L24.0,5.3L28.0,5.4L32.0,5.5L36.0,5.5L40.0,5.6L44.0,5.6L48.0,5.6L52.0,5.6L56.0,5.6L60.0,5.6L64.0,5.5L68.0,5.5L72.0,5.4L76.0,5.4L80.0,5.3L84.0,5.2L88.0,5.1L92.0,5.0L96.0,5.0L100.0,4.9L104.0,4.8L108.0,4.8L112.0,4.8L116.0,4.7L120.0,4.7L124.0,4.7' stroke-width='1.03'/%3e%3cpath d='M-4.0,6.1L0.0,6.1L4.0,6.2L8.0,6.3L12.0,6.4L16.0,6.5L20.0,6.6L24.0,6.7L28.0,6.7L32.0,6.8L36.0,6.8L40.0,6.9L44.0,6.9L48.0,6.9L52.0,6.9L56.0,6.9L60.0,6.8L64.0,6.8L68.0,6.7L72.0,6.7L76.0,6.6L80.0,6.5L84.0,6.4L88.0,6.4L92.0,6.3L96.0,6.2L100.0,6.2L104.0,6.1L108.0,6.1L112.0,6.0L116.0,6.0L120.0,6.0L124.0,6.1' stroke-width='1.00'/%3e%3cpath d='M-4.0,7.3L0.0,7.3L4.0,7.4L8.0,7.5L12.0,7.6L16.0,7.7L20.0,7.8L24.0,7.8L28.0,7.9L32.0,8.0L36.0,8.0L40.0,8.0L44.0,8.0L48.0,8.0L52.0,8.0L56.0,8.0L60.0,8.0L64.0,7.9L68.0,7.9L72.0,7.8L76.0,7.7L80.0,7.6L84.0,7.5L88.0,7.5L92.0,7.4L96.0,7.3L100.0,7.3L104.0,7.2L108.0,7.2L112.0,7.2L116.0,7.2L120.0,7.2L124.0,7.2' stroke-width='1.05'/%3e%3cpath d='M-4.0,8.5L0.0,8.5L4.0,8.6L8.0,8.7L12.0,8.8L16.0,8.9L20.0,8.9L24.0,9.0L28.0,9.1L32.0,9.1L36.0,9.2L40.0,9.2L44.0,9.2L48.0,9.2L52.0,9.2L56.0,9.1L60.0,9.1L64.0,9.0L68.0,9.0L72.0,8.9L76.0,8.8L80.0,8.7L84.0,8.7L88.0,8.6L92.0,8.5L96.0,8.4L100.0,8.4L104.0,8.3L108.0,8.3L112.0,8.3L116.0,8.3L120.0,8.3L124.0,8.4' stroke-width='0.79'/%3e%3cpath d='M-4.0,11.0L0.0,11.1L4.0,11.2L8.0,11.2L12.0,11.3L16.0,11.4L20.0,11.5L24.0,11.5L28.0,11.6L32.0,11.6L36.0,11.6L40.0,11.6L44.0,11.6L48.0,11.6L52.0,11.6L56.0,11.5L60.0,11.5L64.0,11.4L68.0,11.3L72.0,11.3L76.0,11.2L80.0,11.1L84.0,11.0L88.0,10.9L92.0,10.9L96.0,10.8L100.0,10.8L104.0,10.7L108.0,10.7L112.0,10.7L116.0,10.8L120.0,10.8L124.0,10.9' stroke-width='1.36'/%3e%3cpath d='M-4.0,12.4L0.0,12.5L4.0,12.6L8.0,12.6L12.0,12.7L16.0,12.8L20.0,12.9L24.0,12.9L28.0,12.9L32.0,13.0L36.0,13.0L40.0,13.0L44.0,13.0L48.0,12.9L52.0,12.9L56.0,12.8L60.0,12.8L64.0,12.7L68.0,12.6L72.0,12.6L76.0,12.5L80.0,12.4L84.0,12.3L88.0,12.2L92.0,12.2L96.0,12.1L100.0,12.1L104.0,12.1L108.0,12.1L112.0,12.1L116.0,12.1L120.0,12.2L124.0,12.2' stroke-width='0.73'/%3e%3c/g%3e%3cg stroke='%235E5546' opacity='.45'%3e%3cpath d='M-4.0,15.8L0.0,15.9L4.0,15.9L8.0,16.0L12.0,16.1L16.0,16.1L20.0,16.2L24.0,16.2L28.0,16.2L32.0,16.2L36.0,16.2L40.0,16.2L44.0,16.2L48.0,16.1L52.0,16.1L56.0,16.0L60.0,15.9L64.0,15.9L68.0,15.8L72.0,15.7L76.0,15.6L80.0,15.5L84.0,15.5L88.0,15.4L92.0,15.3L96.0,15.3L100.0,15.3L104.0,15.3L108.0,15.3L112.0,15.4L116.0,15.4L120.0,15.5L124.0,15.6' stroke-width='0.69'/%3e%3cpath d='M-4.0,14.5L0.0,14.6L4.0,14.7L8.0,14.8L12.0,14.8L16.0,14.9L20.0,15.0L24.0,15.0L28.0,15.0L32.0,15.0L36.0,15.0L40.0,15.0L44.0,15.0L48.0,15.0L52.0,14.9L56.0,14.8L60.0,14.8L64.0,14.7L68.0,14.6L72.0,14.5L76.0,14.4L80.0,14.4L84.0,14.3L88.0,14.2L92.0,14.2L96.0,14.1L100.0,14.1L104.0,14.1L108.0,14.1L112.0,14.1L116.0,14.2L120.0,14.3L124.0,14.3' stroke-width='0.60'/%3e%3cpath d='M-4.0,15.4L0.0,15.5L4.0,15.5L8.0,15.6L12.0,15.7L16.0,15.7L20.0,15.8L24.0,15.8L28.0,15.9L32.0,15.9L36.0,15.9L40.0,15.8L44.0,15.8L48.0,15.8L52.0,15.7L56.0,15.6L60.0,15.6L64.0,15.5L68.0,15.4L72.0,15.3L76.0,15.2L80.0,15.1L84.0,15.1L88.0,15.0L92.0,15.0L96.0,14.9L100.0,14.9L104.0,14.9L108.0,14.9L112.0,15.0L116.0,15.0L120.0,15.1L124.0,15.2' stroke-width='0.47'/%3e%3cpath d='M-4.0,11.3L0.0,11.4L4.0,11.5L8.0,11.6L12.0,11.7L16.0,11.7L20.0,11.8L24.0,11.9L28.0,11.9L32.0,11.9L36.0,12.0L40.0,12.0L44.0,12.0L48.0,11.9L52.0,11.9L56.0,11.9L60.0,11.8L64.0,11.7L68.0,11.6L72.0,11.6L76.0,11.5L80.0,11.4L84.0,11.3L88.0,11.3L92.0,11.2L96.0,11.1L100.0,11.1L104.0,11.1L108.0,11.1L112.0,11.1L116.0,11.1L120.0,11.1L124.0,11.2' stroke-width='0.45'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
223
- --ak-weave-primary: var(--ak-weave-primary-light);
224
- --ak-weave-primary-shadow: drop-shadow(0 1px 1.5px rgba(18, 60, 49, 0.3));
225
- --ak-weave-secondary: var(--ak-weave-secondary-light);
226
- --ak-weave-secondary-shadow: drop-shadow(0 1px 1.5px rgba(80, 74, 60, 0.22));
227
- }
228
- @media (prefers-color-scheme: dark) {
229
- :root:not([data-theme="light"]) {
230
- --ak-weave-primary: var(--ak-weave-primary-dark);
231
- --ak-weave-primary-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
232
- --ak-weave-secondary: var(--ak-weave-secondary-dark);
233
- --ak-weave-secondary-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
234
- }
235
- }
236
- [data-theme="dark"] {
237
- --ak-weave-primary: var(--ak-weave-primary-dark);
238
- --ak-weave-primary-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
239
- --ak-weave-secondary: var(--ak-weave-secondary-dark);
240
- --ak-weave-secondary-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
241
143
  }
144
+ /* 手動主題:由 scripts/brand-css.mjs 生成 */
242
145
  /* 手動鎖定淺色;放在 html 上就整頁鎖,放在子樹上只鎖那塊。 */
243
146
  :root.ak-theme-light,
244
147
  .ak-theme-light {
245
- --ak-bg: #fafaf6;
246
- --ak-surface: #ffffff;
148
+ --ak-bg: #ffffff;
149
+ --ak-surface: #f5f5f7;
247
150
  --ak-surface-raised: #ffffff;
248
- --ak-border: #e3e0d5;
249
- --ak-border-strong: #c8c3b4;
250
- --ak-text: #23211d;
251
- --ak-text-muted: #635d52;
252
- --ak-text-faint: #9c958a;
253
- --ak-accent: #23705a;
254
- --ak-accent-text: #fcfcf9;
255
- --ak-accent-subtle: #e7f0eb;
151
+ --ak-border: #e5e5ea;
152
+ --ak-border-strong: #c7c7cc;
153
+ --ak-text: #1d1d1f;
154
+ --ak-text-muted: #6e6e73;
155
+ --ak-text-faint: #86868b;
156
+ --ak-accent: #1d1d1f;
157
+ --ak-accent-text: #ffffff;
158
+ --ak-accent-subtle: #e8e8ed;
256
159
  --ak-danger: #b3402e;
257
160
  --ak-danger-subtle: #f7e7e3;
258
161
  --ak-success: #23705a;
259
162
  --ak-success-subtle: #e7f0eb;
260
- --ak-warning: #9a6a1b;
163
+ --ak-warning: #b25000;
261
164
  --ak-warning-subtle: #f5ebd9;
262
165
  --ak-info: #2c5c86;
263
166
  --ak-info-subtle: #e4edf5;
264
- --ak-focus-ring: #23705a;
265
- --ak-bone: #ece9df;
266
- --ak-sheen: #f6f4ec;
167
+ --ak-focus-ring: #1d1d1f;
168
+ --ak-bone: #e6e6ea;
169
+ --ak-sheen: #f2f2f5;
267
170
  --ak-success-hl: #c6e0c6;
268
171
  --ak-danger-hl: #efcec3;
269
- --ak-layer1: #efece3;
270
- --ak-layer2: #fafaf6;
271
- --ak-layer3: #f1efe7;
272
- --ak-layer4: #e8e5da;
273
- --ak-layer5: #dedacd;
172
+ --ak-layer1: #efeff2;
173
+ --ak-layer2: #ffffff;
174
+ --ak-layer3: #f2f2f5;
175
+ --ak-layer4: #e6e6ea;
176
+ --ak-layer5: #d9d9de;
274
177
  --ak-shadow-popover: 0 8px 24px rgba(35, 33, 29, 0.1);
275
178
  --ak-shadow-raised: 0 1px 2px rgba(35, 33, 29, 0.08);
276
- --ak-font-display: "Newsreader Variable", Georgia, "Times New Roman", serif;
179
+ --ak-font-display: "Geist Variable", system-ui, sans-serif;
277
180
  --ak-font-body: "Geist Variable", system-ui, sans-serif;
278
181
  --ak-font-mono: "Geist Mono Variable", ui-monospace, monospace;
279
182
  --ak-radius-sm: 0.375rem;
@@ -286,54 +189,46 @@ html {
286
189
  --ak-motion-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
287
190
  --ak-motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
288
191
  --ak-motion-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
289
- --ak-weave-primary: var(--ak-weave-primary-light);
290
- --ak-weave-primary-shadow: drop-shadow(0 1px 1.5px rgba(18, 60, 49, 0.3));
291
- --ak-weave-secondary: var(--ak-weave-secondary-light);
292
- --ak-weave-secondary-shadow: drop-shadow(0 1px 1.5px rgba(80, 74, 60, 0.22));
293
192
  }
294
193
  /* 手動鎖定暗色。 */
295
194
  :root.ak-theme-dark,
296
195
  .ak-theme-dark {
297
- --ak-layer1: #0e0c09;
298
- --ak-layer2: #181613;
299
- --ak-layer3: #211e19;
300
- --ak-layer4: #2b2721;
301
- --ak-layer5: #35302a;
302
- --ak-bone: #2a2620;
303
- --ak-sheen: #35302a;
196
+ --ak-layer1: #000000;
197
+ --ak-layer2: #161618;
198
+ --ak-layer3: #242426;
199
+ --ak-layer4: #323234;
200
+ --ak-layer5: #3f3f42;
201
+ --ak-bone: #2c2c2e;
202
+ --ak-sheen: #3f3f42;
304
203
  --ak-success-hl: #2f4a2e;
305
204
  --ak-danger-hl: #573328;
306
205
  --ak-shadow-popover: 0 8px 24px rgba(0, 0, 0, 0.4);
307
206
  --ak-shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.3);
308
- --ak-bg: #181613;
309
- --ak-surface: #201d18;
310
- --ak-surface-raised: #282420;
311
- --ak-border: #35302a;
312
- --ak-border-strong: #4a443c;
313
- --ak-text: #eae6dc;
314
- --ak-text-muted: #b0a697;
315
- --ak-text-faint: #736a5d;
316
- --ak-accent: #4fa184;
317
- --ak-accent-text: #14120f;
318
- --ak-accent-subtle: #22352e;
207
+ --ak-bg: #000000;
208
+ --ak-surface: #1c1c1e;
209
+ --ak-surface-raised: #2c2c2e;
210
+ --ak-border: #38383a;
211
+ --ak-border-strong: #48484a;
212
+ --ak-text: #f5f5f7;
213
+ --ak-text-muted: #98989d;
214
+ --ak-text-faint: #8e8e93;
215
+ --ak-accent: #f5f5f7;
216
+ --ak-accent-text: #000000;
217
+ --ak-accent-subtle: #2c2c2e;
319
218
  --ak-danger: #dd7059;
320
219
  --ak-danger-subtle: #3d231e;
321
220
  --ak-success: #4fa184;
322
221
  --ak-success-subtle: #22352e;
323
- --ak-warning: #d9a254;
222
+ --ak-warning: #ffb340;
324
223
  --ak-warning-subtle: #3a2f1d;
325
224
  --ak-info: #6fa3ce;
326
225
  --ak-info-subtle: #1e2c38;
327
- --ak-focus-ring: #4fa184;
328
- --ak-weave-primary: var(--ak-weave-primary-dark);
329
- --ak-weave-primary-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
330
- --ak-weave-secondary: var(--ak-weave-secondary-dark);
331
- --ak-weave-secondary-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
226
+ --ak-focus-ring: #f5f5f7;
332
227
  }
333
228
 
334
229
  :root {
335
230
  /* Google Fonts 的家族名沒有 Variable 後綴;兩個名字都列,fontsource 或 Google Fonts 都能接上 */
336
- --ak-font-display: "Newsreader Variable", "Newsreader", Georgia, "Times New Roman", serif;
231
+ --ak-font-display: "Geist Variable", "Geist", system-ui, sans-serif;
337
232
  --ak-font-body: "Geist Variable", "Geist", system-ui, sans-serif;
338
233
  --ak-font-mono: "Geist Mono Variable", "Geist Mono", ui-monospace, monospace;
339
234
  }
@@ -396,7 +291,7 @@ body {
396
291
  font-family: var(--ak-font-display);
397
292
  font-optical-sizing: auto;
398
293
  font-size: 2.25rem;
399
- font-weight: 500;
294
+ font-weight: 600;
400
295
  line-height: 1.2;
401
296
  letter-spacing: -0.01em;
402
297
  margin: 0 0 1rem;
@@ -408,7 +303,7 @@ body {
408
303
  font-family: var(--ak-font-display);
409
304
  font-optical-sizing: auto;
410
305
  font-size: 1.75rem;
411
- font-weight: 500;
306
+ font-weight: 600;
412
307
  line-height: 1.2;
413
308
  margin: 0 0 0.75rem;
414
309
  text-wrap: balance;
@@ -419,7 +314,7 @@ body {
419
314
  font-family: var(--ak-font-display);
420
315
  font-optical-sizing: auto;
421
316
  font-size: 1.375rem;
422
- font-weight: 500;
317
+ font-weight: 600;
423
318
  line-height: 1.4;
424
319
  margin: 2rem 0 0.5rem;
425
320
  text-wrap: balance;
@@ -561,7 +456,7 @@ body {
561
456
  font-family: var(--ak-font-display);
562
457
  font-optical-sizing: auto;
563
458
  font-size: 2.25rem;
564
- font-weight: 500;
459
+ font-weight: 600;
565
460
  line-height: 1.2;
566
461
  letter-spacing: -0.01em;
567
462
  font-variant-numeric: tabular-nums;
@@ -663,10 +558,6 @@ body {
663
558
  line-height: 1.2;
664
559
  color: var(--ak-accent-text);
665
560
  background-color: var(--ak-accent);
666
- background-image: var(--ak-weave-primary);
667
- background-size: 100% 100%;
668
- background-repeat: no-repeat;
669
- filter: var(--ak-weave-primary-shadow);
670
561
  cursor: pointer;
671
562
  text-decoration: none;
672
563
  transition: opacity var(--ak-motion-fast) var(--ak-motion-ease-out);
@@ -688,7 +579,7 @@ body {
688
579
  cursor: not-allowed;
689
580
  }
690
581
 
691
- /* 次要按鈕:淺色織體,其他動作都用它。 */
582
+ /* 次要按鈕:其他動作都用它。 */
692
583
  .ak-btn-secondary {
693
584
  display: inline-flex;
694
585
  align-items: center;
@@ -704,10 +595,6 @@ body {
704
595
  line-height: 1.2;
705
596
  color: var(--ak-text);
706
597
  background-color: var(--ak-bone);
707
- background-image: var(--ak-weave-secondary);
708
- background-size: 100% 100%;
709
- background-repeat: no-repeat;
710
- filter: var(--ak-weave-secondary-shadow);
711
598
  cursor: pointer;
712
599
  text-decoration: none;
713
600
  transition: opacity var(--ak-motion-fast) var(--ak-motion-ease-out);
@@ -1,7 +1,8 @@
1
- import { type ComponentProps } from "react";
1
+ import type { ComponentProps } from "react";
2
2
  import { type StyleArg } from "../../lib/styled.js";
3
+ type Variant = "primary" | "secondary" | "ghost" | "danger" | "dangerGhost";
3
4
  type ButtonProps = ComponentProps<"button"> & {
4
- variant?: "primary" | "secondary" | "ghost" | "danger" | "dangerGhost";
5
+ variant?: Variant;
5
6
  size?: "xs" | "sm" | "md";
6
7
  /** Square, no side padding — for a button whose whole label is one icon. */
7
8
  icon?: boolean;