@exxatdesignux/ui 0.0.6 → 0.0.8

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 (264) hide show
  1. package/bin/init.mjs +29 -0
  2. package/package.json +7 -2
  3. package/template/.nvmrc +1 -0
  4. package/template/.prettierignore +7 -0
  5. package/template/.prettierrc +11 -0
  6. package/template/AGENTS.md +485 -0
  7. package/template/Logo/Exxat_Prism.svg +39 -0
  8. package/template/Logo/Exxat_one.svg +36 -0
  9. package/template/README.md +58 -0
  10. package/template/app/(app)/compliance/page.tsx +10 -0
  11. package/template/app/(app)/dashboard/loading.tsx +18 -0
  12. package/template/app/(app)/dashboard/page.tsx +36 -0
  13. package/template/app/(app)/data-list/[id]/page.tsx +28 -0
  14. package/template/app/(app)/data-list/new/page.tsx +31 -0
  15. package/template/app/(app)/data-list/page.tsx +10 -0
  16. package/template/app/(app)/error.tsx +43 -0
  17. package/template/app/(app)/help/page.tsx +34 -0
  18. package/template/app/(app)/layout.tsx +54 -0
  19. package/template/app/(app)/loading.tsx +18 -0
  20. package/template/app/(app)/question-bank/page.tsx +10 -0
  21. package/template/app/(app)/rotations/page.tsx +15 -0
  22. package/template/app/(app)/settings/page.tsx +17 -0
  23. package/template/app/(app)/sites/all/page.tsx +13 -0
  24. package/template/app/(app)/team/page.tsx +10 -0
  25. package/template/app/favicon.ico +0 -0
  26. package/template/app/globals.css +1811 -0
  27. package/template/app/layout.tsx +95 -0
  28. package/template/app/page.tsx +9 -0
  29. package/template/components/.gitkeep +0 -0
  30. package/template/components/app-sidebar-dynamic.tsx +15 -0
  31. package/template/components/app-sidebar.tsx +901 -0
  32. package/template/components/ask-leo-composer.tsx +216 -0
  33. package/template/components/ask-leo-sidebar.tsx +509 -0
  34. package/template/components/chart-area-interactive.tsx +293 -0
  35. package/template/components/charts-overview.tsx +2321 -0
  36. package/template/components/command-menu-01.tsx +133 -0
  37. package/template/components/command-menu-02.tsx +386 -0
  38. package/template/components/command-menu.tsx +182 -0
  39. package/template/components/compliance-board-view.tsx +134 -0
  40. package/template/components/compliance-client.tsx +92 -0
  41. package/template/components/compliance-list-view.tsx +59 -0
  42. package/template/components/compliance-page-header.tsx +89 -0
  43. package/template/components/compliance-table.tsx +525 -0
  44. package/template/components/dashboard-onboarding-gallery.tsx +13 -0
  45. package/template/components/dashboard-onboarding.tsx +21 -0
  46. package/template/components/dashboard-promo-banner.tsx +67 -0
  47. package/template/components/dashboard-quota-progress-card.tsx +369 -0
  48. package/template/components/dashboard-report-charts.tsx +69 -0
  49. package/template/components/dashboard-section-heading.tsx +68 -0
  50. package/template/components/dashboard-tabs.tsx +598 -0
  51. package/template/components/data-list-client.tsx +239 -0
  52. package/template/components/data-list-table-cells.test.tsx +22 -0
  53. package/template/components/data-list-table-cells.tsx +173 -0
  54. package/template/components/data-list-table.tsx +879 -0
  55. package/template/components/data-table/filter-date-calendar.tsx +38 -0
  56. package/template/components/data-table/filter-text-value-input.tsx +77 -0
  57. package/template/components/data-table/index.tsx +1612 -0
  58. package/template/components/data-table/pagination.tsx +256 -0
  59. package/template/components/data-table/types.ts +91 -0
  60. package/template/components/data-table/use-table-state.ts +566 -0
  61. package/template/components/data-view-dashboard-charts-compliance.tsx +960 -0
  62. package/template/components/data-view-dashboard-charts-team.tsx +968 -0
  63. package/template/components/data-view-dashboard-charts.tsx +1668 -0
  64. package/template/components/data-views/board-card-primitives.tsx +93 -0
  65. package/template/components/data-views/index.ts +41 -0
  66. package/template/components/data-views/list-page-board-card.tsx +192 -0
  67. package/template/components/data-views/list-page-board-template.tsx +122 -0
  68. package/template/components/data-views/placement-board-card.tsx +262 -0
  69. package/template/components/export-drawer.tsx +375 -0
  70. package/template/components/exxat-product-logo.tsx +453 -0
  71. package/template/components/form-layout-01.tsx +131 -0
  72. package/template/components/getting-started.tsx +625 -0
  73. package/template/components/key-metrics.tsx +920 -0
  74. package/template/components/leo-insight-indicator.tsx +364 -0
  75. package/template/components/leo-typing-dots.tsx +121 -0
  76. package/template/components/list-hub-status-badge.tsx +51 -0
  77. package/template/components/list-page-dashboard-charts.tsx +18 -0
  78. package/template/components/nav-documents.tsx +89 -0
  79. package/template/components/nav-main.tsx +58 -0
  80. package/template/components/nav-secondary.tsx +64 -0
  81. package/template/components/nav-user.tsx +190 -0
  82. package/template/components/new-placement-back-btn.tsx +28 -0
  83. package/template/components/new-placement-form.tsx +1066 -0
  84. package/template/components/onboarding/index.ts +4 -0
  85. package/template/components/onboarding/onboarding-01.tsx +7 -0
  86. package/template/components/onboarding/onboarding-02.tsx +7 -0
  87. package/template/components/onboarding/onboarding-03.tsx +7 -0
  88. package/template/components/onboarding/onboarding-04.tsx +7 -0
  89. package/template/components/page-header.tsx +57 -0
  90. package/template/components/placement-detail.tsx +438 -0
  91. package/template/components/placements-board-view.tsx +404 -0
  92. package/template/components/placements-list-view.tsx +285 -0
  93. package/template/components/placements-page-header.tsx +160 -0
  94. package/template/components/placements-table-columns.tsx +639 -0
  95. package/template/components/product-switcher.tsx +116 -0
  96. package/template/components/question-bank-board-view.tsx +205 -0
  97. package/template/components/question-bank-client.tsx +77 -0
  98. package/template/components/question-bank-list-view.tsx +59 -0
  99. package/template/components/question-bank-page-header.tsx +89 -0
  100. package/template/components/question-bank-table.tsx +586 -0
  101. package/template/components/rotations-empty-state.tsx +47 -0
  102. package/template/components/rotations-panel-activator.tsx +8 -0
  103. package/template/components/secondary-nav.tsx +394 -0
  104. package/template/components/secondary-panel.tsx +239 -0
  105. package/template/components/section-cards.tsx +106 -0
  106. package/template/components/settings-appearance-card.tsx +424 -0
  107. package/template/components/settings-client.tsx +537 -0
  108. package/template/components/settings-form-row.tsx +42 -0
  109. package/template/components/sidebar-auto-collapse.tsx +23 -0
  110. package/template/components/sidebar-auto-open.tsx +18 -0
  111. package/template/components/sidebar-shell.tsx +37 -0
  112. package/template/components/site-header.tsx +93 -0
  113. package/template/components/sites-all-client.tsx +154 -0
  114. package/template/components/sites-board-view.tsx +67 -0
  115. package/template/components/sites-list-view.tsx +47 -0
  116. package/template/components/sites-table.tsx +312 -0
  117. package/template/components/system-banner-slot.tsx +66 -0
  118. package/template/components/table-properties/column-row.tsx +90 -0
  119. package/template/components/table-properties/draggable-list.ts +49 -0
  120. package/template/components/table-properties/drawer-button.tsx +231 -0
  121. package/template/components/table-properties/drawer.tsx +1102 -0
  122. package/template/components/table-properties/filter-card.tsx +251 -0
  123. package/template/components/table-properties/index.ts +22 -0
  124. package/template/components/table-properties/sort-card.tsx +59 -0
  125. package/template/components/table-properties/types.ts +124 -0
  126. package/template/components/task-list-panel.tsx +98 -0
  127. package/template/components/task-priority-badge.tsx +28 -0
  128. package/template/components/team-board-view.tsx +114 -0
  129. package/template/components/team-client.tsx +93 -0
  130. package/template/components/team-list-view.tsx +62 -0
  131. package/template/components/team-page-header.tsx +92 -0
  132. package/template/components/team-table.tsx +525 -0
  133. package/template/components/templates/list-page.tsx +576 -0
  134. package/template/components/templates/primary-page-template.tsx +56 -0
  135. package/template/components/theme-color-sync.tsx +32 -0
  136. package/template/components/theme-provider.tsx +71 -0
  137. package/template/components/tinted-icon-disc.tsx +53 -0
  138. package/template/components/ui/ai-thinking-surface.tsx +121 -0
  139. package/template/components/ui/avatar.tsx +1 -0
  140. package/template/components/ui/badge.tsx +1 -0
  141. package/template/components/ui/banner.tsx +1 -0
  142. package/template/components/ui/breadcrumb.tsx +1 -0
  143. package/template/components/ui/button.tsx +1 -0
  144. package/template/components/ui/calendar.tsx +1 -0
  145. package/template/components/ui/card.tsx +1 -0
  146. package/template/components/ui/chart.tsx +1 -0
  147. package/template/components/ui/checkbox.tsx +1 -0
  148. package/template/components/ui/coach-mark.tsx +1 -0
  149. package/template/components/ui/collapsible.tsx +1 -0
  150. package/template/components/ui/command.tsx +1 -0
  151. package/template/components/ui/date-picker-field.tsx +1 -0
  152. package/template/components/ui/dialog.tsx +1 -0
  153. package/template/components/ui/dot-pattern.tsx +159 -0
  154. package/template/components/ui/drag-handle-grip.tsx +1 -0
  155. package/template/components/ui/drawer.tsx +1 -0
  156. package/template/components/ui/dropdown-menu.tsx +1 -0
  157. package/template/components/ui/field.tsx +1 -0
  158. package/template/components/ui/form.tsx +1 -0
  159. package/template/components/ui/input-group.tsx +1 -0
  160. package/template/components/ui/input-mask.tsx +1 -0
  161. package/template/components/ui/input.tsx +1 -0
  162. package/template/components/ui/kbd.tsx +1 -0
  163. package/template/components/ui/label.tsx +1 -0
  164. package/template/components/ui/leo-icon.tsx +726 -0
  165. package/template/components/ui/payment-card-fields.tsx +1 -0
  166. package/template/components/ui/popover.tsx +1 -0
  167. package/template/components/ui/radio-group.tsx +1 -0
  168. package/template/components/ui/select.tsx +1 -0
  169. package/template/components/ui/selection-tile-grid.tsx +1 -0
  170. package/template/components/ui/separator.tsx +1 -0
  171. package/template/components/ui/sheet.tsx +1 -0
  172. package/template/components/ui/sidebar.tsx +1 -0
  173. package/template/components/ui/skeleton.tsx +1 -0
  174. package/template/components/ui/sonner.tsx +1 -0
  175. package/template/components/ui/status-badge.tsx +1 -0
  176. package/template/components/ui/table.tsx +1 -0
  177. package/template/components/ui/tabs.tsx +1 -0
  178. package/template/components/ui/textarea.tsx +1 -0
  179. package/template/components/ui/tip.tsx +1 -0
  180. package/template/components/ui/toggle-group.tsx +1 -0
  181. package/template/components/ui/toggle-switch.tsx +1 -0
  182. package/template/components/ui/toggle.tsx +1 -0
  183. package/template/components/ui/tooltip.tsx +1 -0
  184. package/template/components/ui/view-segmented-control.tsx +1 -0
  185. package/template/components.json +27 -0
  186. package/template/contexts/chart-variant-context.tsx +35 -0
  187. package/template/contexts/command-menu-context.tsx +28 -0
  188. package/template/contexts/dashboard-view-context.tsx +35 -0
  189. package/template/contexts/product-context.tsx +38 -0
  190. package/template/contexts/system-banner-context.tsx +127 -0
  191. package/template/docs/command-menu-pattern.md +45 -0
  192. package/template/docs/data-views-pattern.md +160 -0
  193. package/template/ecosystem.config.cjs +20 -0
  194. package/template/eslint.config.mjs +18 -0
  195. package/template/fontawesome-subset.manifest.json +190 -0
  196. package/template/hooks/.gitkeep +0 -0
  197. package/template/hooks/use-app-theme.ts +1 -0
  198. package/template/hooks/use-coach-mark.ts +1 -0
  199. package/template/hooks/use-mobile.ts +1 -0
  200. package/template/hooks/use-mod-key-label.ts +1 -0
  201. package/template/lib/.gitkeep +0 -0
  202. package/template/lib/ask-leo-route-context.ts +133 -0
  203. package/template/lib/chart-keyboard-selection.test.ts +20 -0
  204. package/template/lib/chart-keyboard-selection.ts +17 -0
  205. package/template/lib/chart-line-dash.ts +16 -0
  206. package/template/lib/coach-mark-registry.ts +68 -0
  207. package/template/lib/command-menu-config.ts +127 -0
  208. package/template/lib/command-menu-search-data.ts +44 -0
  209. package/template/lib/conditional-rule-match.ts +32 -0
  210. package/template/lib/dashboard-customize-coach-mark.ts +18 -0
  211. package/template/lib/dashboard-layout-merge.ts +63 -0
  212. package/template/lib/data-list-display-options.ts +35 -0
  213. package/template/lib/data-list-persistence.ts +280 -0
  214. package/template/lib/data-list-view-surface.ts +58 -0
  215. package/template/lib/data-list-view.ts +29 -0
  216. package/template/lib/data-view-dashboard-storage.ts +101 -0
  217. package/template/lib/date-filter.ts +8 -0
  218. package/template/lib/dev-log.test.ts +28 -0
  219. package/template/lib/dev-log.ts +8 -0
  220. package/template/lib/editable-target.ts +10 -0
  221. package/template/lib/floating-sheet-panel.ts +72 -0
  222. package/template/lib/initials-from-name.ts +7 -0
  223. package/template/lib/list-page-table-properties.ts +52 -0
  224. package/template/lib/list-status-badges.ts +168 -0
  225. package/template/lib/logo-dev.ts +12 -0
  226. package/template/lib/mock/compliance-kpi.ts +61 -0
  227. package/template/lib/mock/compliance.ts +146 -0
  228. package/template/lib/mock/dashboard.ts +105 -0
  229. package/template/lib/mock/navigation.tsx +231 -0
  230. package/template/lib/mock/placements-kpi.ts +134 -0
  231. package/template/lib/mock/placements.ts +183 -0
  232. package/template/lib/mock/question-bank-kpi.ts +61 -0
  233. package/template/lib/mock/question-bank.ts +142 -0
  234. package/template/lib/mock/sites-directory.ts +16 -0
  235. package/template/lib/mock/sites-kpi.ts +25 -0
  236. package/template/lib/mock/team-kpi.ts +60 -0
  237. package/template/lib/mock/team.ts +118 -0
  238. package/template/lib/motion-ui.ts +17 -0
  239. package/template/lib/placement-board-card-layout.ts +79 -0
  240. package/template/lib/placement-lifecycle.ts +5 -0
  241. package/template/lib/row-height.ts +10 -0
  242. package/template/lib/stock-portrait.ts +11 -0
  243. package/template/lib/utils.test.ts +13 -0
  244. package/template/lib/utils.ts +1 -0
  245. package/template/next.config.mjs +15 -0
  246. package/template/package.json +83 -0
  247. package/template/postcss.config.mjs +8 -0
  248. package/template/public/.gitkeep +0 -0
  249. package/template/public/Illustration/Rotation.svg +74 -0
  250. package/template/public/avatars/user.svg +11 -0
  251. package/template/public/favicon/favicon.ico +0 -0
  252. package/template/public/favicon.ico +0 -0
  253. package/template/public/logos/exxat-one.svg +36 -0
  254. package/template/public/logos/exxat-prism.svg +39 -0
  255. package/template/public/mock-schools/emory.svg +4 -0
  256. package/template/public/mock-schools/rush.svg +4 -0
  257. package/template/scripts/fontawesome-subset-audit.mjs +190 -0
  258. package/template/scripts/pm2-startup-macos.sh +13 -0
  259. package/template/skills-lock.json +10 -0
  260. package/template/stores/app-store.ts +33 -0
  261. package/template/tests/setup.ts +1 -0
  262. package/template/tsconfig.json +35 -0
  263. package/template/types/react-payment-inputs.d.ts +19 -0
  264. package/template/vitest.config.ts +18 -0
@@ -0,0 +1,74 @@
1
+ <svg width="621" height="555" viewBox="0 0 621 555" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M122.342 123.069C114.715 107.852 110.6 95.9693 110.803 78.7987C110.979 56.8721 120.068 35.96 135.981 20.8709C161.254 -3.48111 197.835 -4.8786 228.161 8.21898C231.142 9.50613 234.851 9.0519 237.315 9.91536C255.315 16.2574 270.693 25.5771 279.679 43.0209C291.048 65.0878 293.73 97.5104 273.684 115.67C272.892 116.602 272.2 117.248 271.807 118.399C271.725 120.581 271.63 125.096 270.991 127.125C267.968 136.718 269.013 146.899 267.011 156.495C262.653 177.384 247.41 198.966 229.311 209.827C228.098 210.821 227.257 211.162 226.751 212.416C227.463 213.112 229.565 215.067 230.091 215.726C231.1 216.234 233.339 217.464 234.329 217.704C248.676 223.254 287.101 237.383 297.432 245.723C302.97 250.192 306.985 256.325 309.865 262.774C312.625 268.95 319.279 287.006 318.276 293.547L319.099 295.132C328.131 296.027 339.745 295.711 348.959 295.743C355.607 295.764 366.326 295.909 372.679 295.18L372.921 293.166C380.988 293.07 413.779 291.233 418.429 295.812C420.133 297.484 421.065 300.703 421.601 302.99C423.872 312.755 424.585 323.387 425.919 333.345L433.033 385.988C435.342 402.727 436.038 416.707 443.453 431.877C445.649 436.371 447.91 449.183 443.415 452.601C439.51 455.89 430.644 456.956 426.015 459.398L425.271 460.416L422.313 460.684C417.299 467.588 416.592 469.045 407.946 467.679C396.401 473.829 393.096 468.247 380.844 468.708C377.587 466.86 374.174 464.996 371.062 462.944C363.745 469.704 354.127 478.29 347.663 485.929C346.795 486.957 346.225 489.143 345.92 490.482C345.898 490.139 345.67 489.271 345.584 488.902L344.802 489.084C341.381 497.702 334.672 504.612 326.153 508.276C319.496 511.19 313.599 510.761 306.735 509.144L306.272 508.924L305.928 513.788C306.28 525.266 308.381 543.436 310.362 554.588C303.573 554.593 264.705 555.321 261.219 554.256L259.497 554.368C252.689 554.802 195.644 555.402 191.744 554.357L189.799 554.143C186.903 554.845 159.267 554.572 154.349 554.572C123.269 554.352 92.1869 554.475 61.1096 554.941C62.5978 545.707 63.5653 535.497 64.6282 526.14C63.0328 525.202 60.0725 525.84 58.0582 526.054C50.8169 526.332 43.677 526.29 36.9602 523.194C27.1245 518.657 21.4587 509.01 17.8603 499.207C11.4746 481.81 9.72285 460.743 7.44767 442.279C2.02517 398.287 -7.77091 305.159 10.9539 265.324C18.8311 248.561 32.5239 240.608 48.68 233.149C53.8619 230.757 59.0487 228.222 64.4139 226.271L64.5119 224.116C63.6746 222.955 63.6039 223.044 63.5793 221.64C64.8752 220.26 66.6741 220.424 68.3878 219.741C88.5682 211.711 86.046 186.207 88.8264 169.942C89.931 163.083 92.1441 156.45 95.3803 150.302C101.77 138.149 109.176 131.408 122.058 127.411C122.113 126.023 122.249 124.469 122.342 123.069Z" fill="#2E2837"/>
3
+ <path d="M122.342 123.069C124.011 118.016 125.286 114.251 129.969 111.11C135.867 107.156 143.131 108.811 146.883 114.664C141.741 114.25 136.488 108.08 130.11 113.524C121.241 121.092 124.269 132.153 129.891 140.371C135.053 147.917 145.205 147.686 146.442 149.403L146.238 150.545C145.319 150.746 144.452 150.955 143.592 151.341C142.48 166.52 144.691 178.727 136.489 192.961L135.728 189.284L135.247 188.834C134.699 190.053 134.792 190.038 133.735 190.825C136.965 204.791 152.656 224.122 162.657 234.474C180.301 252.736 177.631 254.707 176.632 278.817C175.28 311.421 180.828 346.153 183.188 378.736C183.441 382.062 183.784 385.324 184.373 388.597C165.206 404.977 137.999 417.222 115.307 428.513C109.179 421.539 105.068 424.432 97.7075 428.106C91.9582 430.977 81.7475 432.638 78.5219 437.609C61.6716 441.851 49.4707 445.3 40.2093 461.434C38.8475 463.807 36.6162 468.199 37.3534 470.845C39.6821 469.919 42.32 462.591 44.2528 459.682C46.2216 456.769 48.5337 454.106 51.1384 451.744C59.4468 444.331 69.4394 442.038 79.8907 440.255C81.3886 439.998 81.5552 436.73 83.2475 436.302C91.723 433.543 99.7261 429.713 108.046 426.676C108.814 426.397 111.492 427.887 112.219 428.454L112.35 429.408C110.541 430.999 106.911 430.543 106.471 431.824C103.421 440.699 105.446 453.324 106.667 462.361C107.656 469.683 116.438 491.494 123.169 494.553C126.025 493.642 125.944 491.259 129.118 489.282C130.852 490.236 130.736 493.058 129.777 494.628C125.812 501.104 117.649 502.855 111.628 506.423C104.647 510.563 102.942 516.209 93.9891 512.133C82.506 518.33 70.8687 523.258 58.0582 526.054C50.8169 526.333 43.677 526.29 36.9602 523.194C27.1245 518.657 21.4587 509.01 17.8603 499.208C11.4746 481.81 9.72285 460.743 7.44767 442.279C2.02517 398.287 -7.77091 305.16 10.9539 265.324C18.8311 248.561 32.5239 240.608 48.68 233.15C53.8619 230.758 59.0487 228.222 64.4139 226.271L64.5119 224.117C63.6746 222.955 63.6039 223.044 63.5793 221.64C64.8752 220.26 66.6741 220.424 68.3878 219.742C88.5682 211.712 86.046 186.207 88.8264 169.943C89.931 163.084 92.1441 156.45 95.3803 150.302C101.77 138.149 109.176 131.408 122.058 127.411C122.113 126.023 122.249 124.47 122.342 123.069Z" fill="#FAA4A2"/>
4
+ <path d="M122.059 127.411C124.547 140.151 128.966 145.987 141.038 150.804C141.239 157.257 141.304 164.929 140.803 171.378C136.818 171.933 135.041 171.984 131.93 174.826C126.019 180.227 121.976 187.352 116.999 193.625C114.449 196.84 110.636 201.381 108.563 204.829C101.976 207.456 93.5726 211.753 86.9292 214.618C83.717 216.004 65.9731 223.01 64.5128 224.116C63.6754 222.955 63.6047 223.044 63.5801 221.64C64.876 220.26 66.6749 220.424 68.3886 219.741C88.569 211.711 86.0469 186.207 88.8272 169.942C89.9319 163.083 92.1449 156.45 95.3811 150.302C101.771 138.149 109.177 131.408 122.059 127.411Z" fill="#957F6E"/>
5
+ <path d="M122.342 123.069C124.011 118.016 125.286 114.251 129.969 111.11C135.867 107.156 143.131 108.811 146.884 114.664C141.741 114.25 136.489 108.08 130.11 113.524C121.242 121.092 124.269 132.153 129.891 140.371C135.053 147.917 145.205 147.686 146.442 149.403L146.238 150.545C145.319 150.746 144.452 150.955 143.593 151.341C142.48 166.52 144.691 178.727 136.489 192.961L135.728 189.284C137.503 186.639 140.741 176.562 139.168 173.891C133.942 172.665 116.573 197.967 112.389 202.963C116.102 219.147 129.123 258.644 136.857 273.498C143.676 266.347 154.341 251.456 164.371 249.581C166.064 249.265 171.13 251.177 171.207 253.759L170.223 254.563C168.361 253.54 164.651 251.456 162.728 252.249C153.066 256.25 144.451 271.141 136.245 276.733C128.831 264.686 113.393 220.498 110.706 205.989C100.268 211.641 76.3123 222.054 64.4141 226.271L64.5121 224.117C65.9725 223.011 83.7164 216.004 86.9285 214.619C93.5719 211.753 101.975 207.456 108.562 204.829C110.635 201.381 114.448 196.84 116.998 193.626C121.976 187.353 126.018 180.227 131.93 174.826C135.04 171.984 136.817 171.934 140.802 171.378C141.304 164.93 141.238 157.258 141.038 150.805C128.965 145.987 124.546 140.152 122.059 127.411C122.113 126.023 122.249 124.47 122.342 123.069Z" fill="#352735"/>
6
+ <path d="M133.735 190.825C132.988 187.886 132.651 186.395 133.76 183.588L134.487 183.324C135.594 184.882 135.273 186.843 135.246 188.834C134.699 190.053 134.792 190.038 133.735 190.825Z" fill="#352735"/>
7
+ <path d="M70.4863 340.865L71.8143 341.594C74.1399 346.029 83.9086 427.388 82.6443 432.059C82.0352 431.711 81.6886 431.378 81.1406 430.934C79.3941 413.022 77.3418 395.142 74.9847 377.3C74.2706 371.965 70.1499 344.561 70.4863 340.865Z" fill="#352735"/>
8
+ <path d="M34.3848 262.297C45.0471 263.947 69.5249 307.805 66.6712 316.349C65.9705 316.076 65.7685 315.883 65.1332 315.47C63.3819 312.235 62.4707 307.757 61.1887 304.259C57.8078 295.035 53.4101 286.326 47.4873 278.457C45.8812 275.983 43.9108 273.824 42.121 271.521C39.6058 268.275 34.6226 266.346 34.3848 262.297Z" fill="#352735"/>
9
+ <path d="M77.3909 456.977C76.6002 469.886 78.2207 480.711 82.9425 492.715C85.1014 498.2 88.4218 502.716 91.1984 507.885L90.7757 509.004L90.0397 509.009C89.5639 508.629 88.6993 507.938 88.3516 507.44C77.2232 491.446 73.9838 474.9 75.3418 456.377L77.3909 456.977Z" fill="#382534"/>
10
+ <path d="M75.3418 456.377C75.7463 452.45 76.185 445.717 78.2373 442.53C79.7513 444.351 77.8297 454.031 77.3909 456.977L75.3418 456.377Z" fill="#1B131C"/>
11
+ <path d="M372.922 293.166C380.99 293.07 413.781 291.232 418.431 295.812C420.134 297.483 421.067 300.703 421.602 302.99C423.874 312.755 424.586 323.387 425.92 333.345L433.034 385.988C435.343 402.727 436.04 416.707 443.454 431.877C445.651 436.371 447.911 449.183 443.417 452.601C439.511 455.89 430.645 456.955 426.017 459.398L425.272 460.416L422.315 460.684C417.301 467.588 416.593 469.045 407.947 467.679C396.402 473.828 393.097 468.247 380.845 468.708C377.588 466.86 374.176 464.995 371.063 462.944C363.747 469.704 354.129 478.29 347.665 485.929C346.796 486.957 346.226 489.142 345.921 490.481C345.899 490.139 345.671 489.271 345.586 488.901L344.804 489.083C341.382 497.702 334.673 504.612 326.155 508.276C319.498 511.189 313.6 510.761 306.736 509.143L306.273 508.924L305.929 513.787C306.281 525.266 308.383 543.435 310.364 554.587C303.574 554.593 264.706 555.321 261.221 554.255C261.695 547.785 260.766 530.617 260.496 523.643L257.797 461.38C257.578 457.079 256.472 440.897 257.08 437.169C258.869 436.317 261.227 436.521 263.298 436.494C264.457 435.664 269.341 435.974 271.169 435.996C270.061 434.919 267.703 434.769 266.063 434.48C258.655 433.403 249.184 435.026 241.603 434.544C231.037 433.869 231.348 427.147 231.526 418.984C243.522 415.663 258.123 414.806 269.261 409.219C271.849 407.923 272.964 403.627 273.704 400.959C277.836 398.11 285.661 400.027 287.847 392.325C287.061 383.845 263.268 385.356 256.488 385.115C253.103 384.285 250.541 385.34 247.719 383.819C255.808 381.955 291.804 384.386 291.072 372.393C290.636 365.237 265.615 366.217 259.218 365.687C250.421 364.958 237.231 367.16 227.683 368.306C231.428 365.601 238.196 360.368 243.35 359.024C251.779 356.827 268.092 359.066 274.585 351.31C275.978 349.194 273.764 345.375 271.643 344.963C257.545 342.199 241.284 340.592 227.894 346.436L226.229 318.545C225.88 313.065 222.858 296.225 230.826 295.839C259.947 294.43 289.97 295.823 319.1 295.132C328.132 296.026 339.746 295.71 348.96 295.743C355.608 295.764 366.327 295.909 372.681 295.18L372.922 293.166Z" fill="#EBEBEB"/>
12
+ <path d="M372.921 293.166C380.989 293.07 413.78 291.232 418.43 295.812C420.133 297.483 421.066 300.703 421.601 302.99C423.873 312.755 424.585 323.387 425.919 333.345L433.033 385.988C435.342 402.727 436.039 416.707 443.453 431.877C445.65 436.371 447.91 449.183 443.416 452.601C439.51 455.89 430.644 456.955 426.016 459.398L425.271 460.416L422.314 460.684C417.299 467.588 416.592 469.045 407.946 467.679C396.401 473.828 393.096 468.247 380.844 468.708C377.587 466.86 374.174 464.995 371.062 462.944C363.746 469.704 354.128 478.29 347.664 485.929C346.795 486.957 346.225 489.142 345.92 490.481C345.898 490.139 345.67 489.271 345.584 488.901L344.803 489.083C341.381 497.702 334.672 504.612 326.154 508.276C319.497 511.189 313.599 510.761 306.735 509.143L306.272 508.924L305.928 513.787C306.28 525.266 308.382 543.435 310.363 554.587C303.573 554.593 264.705 555.321 261.22 554.255C261.694 547.785 260.765 530.617 260.495 523.643L257.796 461.38C257.577 457.079 256.471 440.897 257.079 437.169C258.868 436.317 261.226 436.521 263.297 436.494C264.456 435.664 269.34 435.974 271.168 435.996C280.607 436.135 287.454 436.767 296.643 434.491C321.22 432.926 351.878 434.849 377.142 434.233C377.169 428.288 375.985 415.631 383.673 414.34C391.687 416.016 388.076 431.662 391.489 434.405L392.555 433.96C393.717 429.53 384.969 400.279 398.421 402.855C405.262 407.194 405.182 432.46 410.11 434.839C412.007 430.377 401.967 406.214 408.407 401.602C420.407 393.016 422.608 428.882 427.976 433.778L428.925 433.725C429.782 429.423 425.48 420.408 429.514 415.989C431.116 414.232 432.83 415.148 434.624 414.34C434.646 412.095 433.264 403.83 432.883 401.232C431.662 392.903 430.483 384.563 429.358 376.218L422.705 327.683C421.558 319.311 420.808 310.66 419.142 302.39C418.805 300.697 418.189 299.235 416.967 297.987C412.703 293.643 380.528 295.293 372.68 295.18L372.921 293.166Z" fill="#F2E1DA"/>
13
+ <path d="M263.297 436.494C268.646 436.574 300.988 436.06 303.496 437.18L305.117 437.212C304.884 451.412 304.631 464.621 305.111 478.821C305.324 485.131 307.549 504.221 306.735 509.143L306.272 508.924L305.928 513.787C306.28 525.266 308.382 543.435 310.363 554.588C303.573 554.593 264.705 555.321 261.22 554.255C261.694 547.785 260.765 530.617 260.495 523.643L257.796 461.38C257.577 457.079 256.471 440.897 257.079 437.169C258.868 436.317 261.226 436.521 263.297 436.494Z" fill="#FAA4A2"/>
14
+ <path d="M303.496 437.18L305.117 437.212C304.884 451.412 304.631 464.621 305.111 478.821C305.325 485.131 307.549 504.221 306.735 509.144L306.272 508.924L305.928 513.788C303.68 493.797 301.015 457.277 303.496 437.18Z" fill="#1B131C"/>
15
+ <path d="M377.143 434.234C377.169 428.288 375.985 415.631 383.673 414.34C391.687 416.017 388.077 431.663 391.489 434.405L392.555 433.961C393.718 429.531 384.969 400.279 398.421 402.856C405.262 407.194 405.182 432.461 410.11 434.839C409.902 435.391 409.875 435.605 409.543 436.076L409.189 436.639C408.348 438.931 408.075 442.445 409.837 444.368C409.848 445.509 409.618 445.102 410.239 445.772C409.302 449.285 408.675 454.631 407.673 457.229L406.778 457.347C405.273 454.915 407.341 445.182 407.169 442.156C406.837 436.264 401.073 407.269 396.605 405.063C388.902 408.534 396.455 431.663 395.593 438.755C394.864 444.716 392.93 449.698 391.789 455.381L390.921 456.206L389.925 456.018C387.669 452.194 389.86 424.008 384.31 417.698C376.66 416.183 381.144 446.066 377.341 452.992L376.639 453.303C375.91 452.756 375.466 452.681 375.552 451.969C376.339 445.75 377.255 442.777 377.105 436.462C368.228 436.489 358.996 436.382 350.148 436.591C341.363 442.708 331.001 447.073 320.902 450.512C309.609 463.775 306.981 495.785 328.291 499.181L329.147 500.761C328.126 501.559 327.998 501.479 326.715 501.821L329.031 501.854C331.323 499.566 342.119 489.384 344.803 489.084C341.382 497.702 334.672 504.612 326.154 508.276C319.497 511.19 313.599 510.761 306.735 509.144C307.549 504.221 305.325 485.131 305.111 478.821C304.631 464.621 304.884 451.412 305.117 437.212L303.496 437.18C300.989 436.06 268.647 436.575 263.297 436.494C264.457 435.664 269.34 435.975 271.168 435.996C280.607 436.135 287.454 436.767 296.643 434.491C321.22 432.927 351.878 434.85 377.143 434.234Z" fill="#2B313D"/>
16
+ <path d="M305.116 437.212L305.448 437.078C305.71 439.719 305.247 448.975 305.882 449.768L306.067 449.778C307.98 450.839 310.185 448.439 312.14 447.389C318.167 444.149 324.022 441.551 330.893 443.725C327.782 445.938 324.319 445.895 322.19 447.132C308.748 454.947 306.6 480.803 314.629 493.101C317.748 497.879 321.907 500.365 326.715 501.821L329.031 501.854C331.322 499.566 342.119 489.384 344.803 489.084C341.381 497.702 334.672 504.612 326.153 508.276C319.497 511.19 313.599 510.761 306.735 509.144C307.549 504.221 305.324 485.131 305.11 478.821C304.63 464.621 304.884 451.412 305.116 437.212Z" fill="#FAA4A2"/>
17
+ <path d="M305.449 437.078C309.373 435.781 339.195 437.04 347.118 436.167C342.967 438.556 338.535 441.315 333.866 442.37L332.504 441.947C331.927 442.557 331.438 443.088 330.895 443.725C324.024 441.55 318.168 444.148 312.141 447.389C310.186 448.439 307.981 450.838 306.068 449.778L305.884 449.767C305.248 448.974 305.711 439.718 305.449 437.078Z" fill="#E9B3B6"/>
18
+ <path d="M306.066 449.778C310.633 441.946 324.313 438.556 332.502 441.946C331.925 442.557 331.436 443.087 330.893 443.725C324.022 441.55 318.167 444.148 312.139 447.389C310.184 448.438 307.979 450.838 306.066 449.778Z" fill="#352735"/>
19
+ <path d="M390.824 436.21C392.646 436.638 391.96 436.172 393.074 437.463C393.599 440.19 392.555 443.43 391.901 446.205L391.537 446.441C390.487 444.095 390.674 438.829 390.824 436.21Z" fill="#EBEBEB"/>
20
+ <path d="M372.92 293.166C380.988 293.07 413.779 291.232 418.429 295.812C420.133 297.483 421.065 300.703 421.601 302.99C423.872 312.755 424.584 323.387 425.918 333.345L433.033 385.988C435.342 402.727 436.038 416.707 443.452 431.877C445.649 436.371 447.909 449.183 443.415 452.601C439.509 455.89 430.643 456.955 426.015 459.398L425.27 460.416L422.313 460.684C417.299 467.588 416.592 469.045 407.945 467.679C396.401 473.828 393.095 468.247 380.843 468.708C377.586 466.86 374.174 464.995 371.061 462.944C370.402 462.226 369.304 461.867 368.351 461.423C364.13 459.505 361.69 457.995 358.319 454.856L358.622 454.025L358.127 454.063C361.794 454.208 377.184 463.614 381.663 466.142C389.184 465.778 391.826 466.951 399.127 468.879C406.402 465.638 406.729 465.279 414.567 465.67C416.736 463.828 418.879 461.128 421.134 459.012C426.309 454.588 440.897 454.824 443.281 448.208C445.333 442.514 437.431 418.164 432.893 416.777L431.559 417.505C427.676 423.028 433.017 435.605 433.488 443.789C431.597 444.148 429.433 444.395 427.509 444.662C426.213 447.7 423.481 455.579 420.877 456.757C419.961 454.384 424.102 446.044 425.109 443.157C427.059 437.549 416.913 403.782 411.851 402.582C401.008 408.287 420.417 433.28 410.238 445.771C409.617 445.102 409.847 445.509 409.836 444.368C408.074 442.445 408.347 438.931 409.188 436.638L409.542 436.076C409.874 435.605 409.901 435.39 410.109 434.839C412.006 430.377 401.967 406.214 408.406 401.602C420.406 393.016 422.608 428.882 427.976 433.778L428.924 433.725C429.781 429.423 425.479 420.408 429.513 415.989C431.115 414.232 432.829 415.148 434.624 414.34C434.645 412.095 433.263 403.83 432.883 401.232C431.661 392.903 430.483 384.563 429.358 376.218L422.704 327.683C421.558 319.311 420.808 310.66 419.142 302.39C418.804 300.697 418.188 299.235 416.967 297.987C412.702 293.643 380.527 295.293 372.679 295.18L372.92 293.166Z" fill="#2B313D"/>
21
+ <path d="M409.543 436.076C411.922 437.067 411.354 439.81 410.031 441.39L409.479 440.977C409.339 439.451 409.238 438.171 409.189 436.639L409.543 436.076Z" fill="#EBEBEB"/>
22
+ <path d="M428.12 436.018C429.347 436.494 429.299 436.709 430.075 437.833C430.525 439.992 430.413 440.169 429.979 442.392L428.575 441.824C427.199 439.697 427.622 438.444 428.12 436.018Z" fill="#EBEBEB"/>
23
+ <path d="M368.351 461.423C369.305 461.867 370.403 462.226 371.062 462.944C363.746 469.704 354.127 478.29 347.663 485.929C346.795 486.957 346.225 489.142 345.92 490.482C345.898 490.139 345.67 489.271 345.584 488.901L344.803 489.083C342.119 489.383 331.323 499.566 329.031 501.853L326.715 501.821C327.997 501.478 328.126 501.559 329.146 500.761L328.29 499.18C329.859 497.257 337.589 491.012 339.655 489.175C343.973 485.323 367.237 464.101 368.351 461.423Z" fill="#2B313D"/>
24
+ <path d="M266.062 434.48C275.251 434.304 287.442 434.062 296.644 434.491C287.455 436.767 280.608 436.135 271.169 435.996C270.061 434.919 267.703 434.77 266.062 434.48Z" fill="#1B131C"/>
25
+ <path d="M122.343 123.069C114.716 107.852 110.601 95.9693 110.804 78.7987C110.98 56.8721 120.069 35.96 135.982 20.8709C161.255 -3.48111 197.836 -4.8786 228.162 8.21898C231.143 9.50613 234.852 9.0519 237.316 9.91536C255.316 16.2574 270.694 25.5771 279.68 43.0209C291.049 65.0878 293.731 97.5104 273.685 115.67C272.893 116.602 272.201 117.248 271.808 118.399C271.726 120.581 271.631 125.096 270.992 127.125C267.969 136.718 269.014 146.899 267.012 156.495C262.654 177.384 247.411 198.966 229.312 209.827C210.939 214.795 182.474 197.108 170.216 184.451C168.328 182.502 166.643 180.364 164.565 178.511L163.56 178.777L163.597 179.997C171.37 194.405 197.158 206.808 212.37 211.892C210.721 216.6 208.205 231.398 211.111 235.392L211.715 235.105C212.659 233.305 212.348 224.004 212.414 221.034C221.872 234.191 226.269 254.155 230.076 269.85C216.646 289.004 197.502 285.785 178.935 275.592C179.593 255.805 182.981 252.372 167.754 236.499C155.236 223.453 144.094 209.412 136.49 192.961C144.692 178.727 142.481 166.52 143.593 151.341C144.453 150.954 145.32 150.746 146.239 150.545L146.443 149.403C145.206 147.685 135.054 147.917 129.892 140.371C124.27 132.153 121.242 121.092 130.111 113.523C136.489 108.08 141.742 114.25 146.884 114.663C143.132 108.81 135.868 107.156 129.97 111.11C125.287 114.25 124.012 118.015 122.343 123.069Z" fill="#F2E1DA"/>
26
+ <path d="M122.343 123.069C114.716 107.852 110.601 95.9693 110.804 78.7987C110.98 56.8721 120.069 35.96 135.982 20.8709C161.255 -3.48111 197.836 -4.8786 228.162 8.21898C231.143 9.50613 234.852 9.0519 237.316 9.91536C255.316 16.2574 270.694 25.5771 279.68 43.0209C291.049 65.0878 293.731 97.5104 273.685 115.67C272.893 116.602 272.201 117.248 271.808 118.399C271.63 114.142 273.165 106.999 272.894 102.155C271.751 81.8053 260.282 59.7164 246.162 45.7387L245.178 45.6766C241.466 66.5373 234.93 84.8579 219.341 100.049C216.853 102.473 216.815 102.149 219.554 104.233L219.422 105.177L218.483 105.795C216.891 105.458 216.325 105.268 214.775 104.72C213.763 105.073 205.786 109.48 205.197 110.114C200.445 115.223 168.793 121.287 166.749 114.519L166.467 113.952L165.215 114.228C162.636 115.485 161.39 115.236 158.585 115.11L157.024 116.025C152.509 116.722 150.726 117.105 146.884 114.663C143.132 108.81 135.868 107.156 129.97 111.11C125.287 114.25 124.012 118.015 122.343 123.069Z" fill="#957F6E"/>
27
+ <path d="M214.14 101.861C228.429 87.9841 235.323 76.3553 240.85 56.5005C241.91 52.6926 242.28 42.3654 244.287 39.5693L245.229 39.9603C245.703 42.096 245.403 43.509 245.177 45.6767C241.465 66.5374 234.929 84.8581 219.34 100.05C216.852 102.473 216.814 102.149 219.553 104.233L219.421 105.177L218.481 105.795C216.89 105.458 216.324 105.268 214.774 104.72C213.762 105.073 205.785 109.48 205.196 110.114C200.444 115.223 168.792 121.287 166.748 114.519C169.02 114.44 174.844 115.125 178.027 115.12C190.895 115.096 200.793 110.816 211.179 103.598C208.99 103.688 206.321 103.751 204.178 104.068C201.663 104.44 196.294 106.578 194.004 105.924L193.963 105.413C197.523 101.077 208.93 101.535 214.14 101.861Z" fill="#2B313D"/>
28
+ <path d="M157.023 116.025C155.139 115.871 153.064 115.577 151.812 114.011C152.973 113.042 156.3 112.711 157.974 112.302C178.37 107.304 195.498 90.5564 202.821 71.112C203.74 68.6732 205.236 61.0949 207.681 60.9111C208.919 63.8936 203.395 75.8085 201.884 78.8874C194.569 93.7852 181.112 106.721 165.428 112.411C164.429 112.773 164.916 112.367 164.272 113.265L165.214 114.228C162.634 115.485 161.389 115.236 158.584 115.109L157.023 116.025Z" fill="#2B313D"/>
29
+ <path d="M246.162 45.7393C247.024 45.3831 247.822 44.8121 248.684 45.4061C257.796 51.6882 266.977 70.9735 270.686 80.5466C275.003 91.6885 276.327 105.104 273.684 115.671C272.893 116.602 272.2 117.248 271.807 118.399C271.629 114.143 273.165 107 272.893 102.156C271.751 81.8058 260.282 59.717 246.162 45.7393Z" fill="#2B313D"/>
30
+ <path d="M205.797 169.625C211.373 169.752 217.625 170.74 223.391 170.818C230.647 170.917 237.702 170.554 244.94 170.232C243.144 173.961 241.563 176.881 239.497 180.472C228.928 193.971 210.759 182.636 205.797 169.625Z" fill="#2B313D"/>
31
+ <path d="M209.354 172.297C219.916 173.357 230.553 173.437 241.13 172.535C239.936 175.115 238.697 177.105 237.232 179.533C236.48 180.302 235.681 181.024 234.838 181.694C226.082 188.584 214.552 179.581 209.354 172.297Z" fill="#EBEBEB"/>
32
+ <path d="M236.929 124.006C237.5 124.428 237.623 124.646 238.098 125.182C238.015 127.447 236.983 135.94 237.497 137.37C241.318 148.005 250.279 149.758 235.62 158.571L234.97 157.212C236.544 153.125 245.028 151.91 239.137 145.317C234.28 139.882 233.298 130.375 236.929 124.006Z" fill="#2B313D"/>
33
+ <path d="M207.014 125.073C212.975 127.298 211.994 132.811 208.344 136.83C202.052 135.167 203.127 128.846 207.014 125.073Z" fill="#2B313D"/>
34
+ <path d="M254.23 125.095C260.634 125.866 259.592 131.791 256.858 135.854C256.214 135.844 255.268 135.706 254.601 135.632C250.644 132.984 251.85 128.481 254.23 125.095Z" fill="#2B313D"/>
35
+ <path d="M255.437 101.985C260.893 101.617 263.691 101.419 268.605 104.353L268.831 105.255C266.931 105.717 266.111 105.089 264.02 104.449C257.867 103.429 253.717 105.896 249.502 104.873L249.756 104.176C251.607 102.784 253.187 102.575 255.437 101.985Z" fill="#2B313D"/>
36
+ <path d="M133.422 123.203C138.315 123.806 143.504 128.89 142.033 134.074C141.339 133.909 141.177 133.734 140.532 133.376C138.476 129.062 133.672 124.505 133.422 123.203Z" fill="#2B313D"/>
37
+ <path d="M229.079 420.489C229.497 441.01 238.647 436.248 254.472 436.58C254.559 439.237 254.951 454.829 255.45 456.817L255.991 455.676C256.103 457.272 256.251 458.702 256.437 460.288L257.797 461.38L260.496 523.644C260.766 530.618 261.694 547.785 261.22 554.256L259.498 554.368C252.69 554.802 195.645 555.402 191.745 554.358L189.8 554.143C188.771 517.173 188.619 482.11 186.947 444.845L188.793 444.117C190.628 439.435 203.089 437.351 207.745 436.119C217.576 433.516 221.763 426.472 229.079 420.489Z" fill="#F2E1DA"/>
38
+ <path d="M188.793 444.116C189.792 449.205 190.344 471.616 190.494 477.985C191.084 502.935 192.165 529.423 191.745 554.357L189.8 554.143C188.771 517.173 188.619 482.109 186.947 444.845L188.793 444.116Z" fill="#352735"/>
39
+ <path d="M255.449 456.817L255.991 455.676C256.103 457.272 256.25 458.702 256.437 460.288L257.796 461.38L260.496 523.644C260.766 530.618 261.694 547.785 261.22 554.256L259.498 554.368C258.331 521.844 256.982 489.325 255.449 456.817Z" fill="#1B131C"/>
40
+ <path d="M132.465 486.877C143.279 477.814 155.482 468.858 166.594 460.068C170.566 456.929 183.211 446.923 186.946 444.845C188.618 482.11 188.77 517.173 189.799 554.143C186.903 554.845 159.267 554.571 154.348 554.571C123.268 554.352 92.1867 554.475 61.1094 554.941C62.5976 545.707 63.5651 535.497 64.628 526.14C70.9451 526.788 87.781 518.169 93.8254 515.164C104.627 517.778 104.906 513.322 114.086 508.088C126.023 501.28 132.314 502.443 132.465 486.877Z" fill="#FAA4A2"/>
41
+ <path d="M214.774 212.268C219.112 213.255 222.464 213.884 226.751 212.416C227.463 213.112 229.565 215.067 230.091 215.726C231.1 216.234 233.339 217.464 234.328 217.704C248.675 223.254 287.101 237.383 297.432 245.723C302.97 250.192 306.985 256.325 309.865 262.774C312.625 268.95 319.279 287.007 318.276 293.547C316.248 292.931 298.284 293.108 294.615 293.108L238.423 293.075C232.686 270.932 226.696 235.256 213.027 217.942L214.774 212.268Z" fill="#FAA4A2"/>
42
+ <path d="M230.092 215.726C231.101 216.234 233.34 217.464 234.329 217.704C234.231 217.969 234.133 218.235 234.034 218.501C242.559 232.726 250.504 247.42 257.866 262.276C258.729 264.017 258.619 264.408 258.143 265.57L256.954 265.988C250.867 263.502 243.967 252.318 237.674 253.395C235.199 255.248 235.541 256.577 233.648 258.687L232.865 258.692L232.465 257.492C235.139 241.719 249.037 256.55 254.287 261.301C249.013 247.796 236.896 229.242 230.092 215.726Z" fill="#352735"/>
43
+ <path d="M240.797 385.232C243.434 384.499 245.065 384.231 247.717 383.818C250.539 385.34 253.101 384.284 256.486 385.115C251.257 385.222 246.027 385.259 240.797 385.232Z" fill="#D4D9E9"/>
44
+ <path d="M240.462 345.177C246.78 344.363 266.1 344.839 271.379 347.48C272.672 349.103 272.42 348.225 272.33 350.153C267.953 356.12 247.659 354.915 241.409 356.988C235.843 358.83 229.024 364.84 224.027 367.91C223.799 368.049 220.368 369.243 219.488 369.629L219.255 370.743C221.11 372.168 286.963 361.884 288.243 373.919C285.307 381.386 260.126 379.346 253.057 380.604C249.212 381.29 230.019 384.059 227.93 386.02L227.97 387.257C231.926 389.657 284.48 383.55 285.119 392.613C280.661 402.11 233.439 399.063 228.51 403.621C232.61 406.899 269.229 397.911 271.42 403.825C266.951 410.113 246.828 413.241 239.168 414.661C223.239 417.623 224.686 423.842 212.053 431.855C206.554 435.342 196.85 435.063 191.714 438.411C182.231 444.582 172.544 452.29 163.641 459.29C150.344 469.741 135.692 480.379 123.071 491.504C121.813 490.053 120.616 488.547 119.484 486.999C109.561 473.137 105.081 450.731 108.044 434.056C116.646 431.308 131.267 423.242 139.648 418.973C150.992 413.075 162.734 407.129 173.487 400.305C188.737 390.632 194.299 379.378 202.966 364.803C207.494 357.186 231.623 346.537 240.462 345.177Z" fill="#F2E1DA"/>
45
+ <path d="M230.409 272.678C231.415 273.856 235.196 290.156 235.928 292.973C235.129 292.984 234.33 293.011 233.531 293.054C217.654 293.937 223.793 315.695 224.565 327.271C220.858 333.457 218.551 340.78 214.607 347.25C212.037 352.944 204.717 357.642 201.752 362.441C196.635 370.722 191.85 378.666 186.239 386.668C185.992 384.617 185.763 382.56 185.552 380.508C183.766 350.073 176.994 308.153 178.942 278.506C195.41 286.449 219.563 292.4 230.409 272.678Z" fill="#F2E1DA"/>
46
+ <path d="M224.173 333.093C225.369 334.266 225.422 344.968 225.534 347.491L214.66 352.869L214.372 352.89L214.133 352.408C219.239 345.182 220.598 341.277 224.173 333.093Z" fill="#EBEBEB"/>
47
+ <path d="M400.237 246.175C389.688 237.901 398.469 211.881 398.19 200.735C397.944 190.983 392.27 180.865 391.445 171.057C390.39 158.472 391.66 145.969 392.436 133.407C391.349 98.0167 392.345 59.2001 427.21 39.3443C441.01 31.4853 447.165 33.4421 461.512 31.923C476.662 30.3198 483.556 27.5468 499.387 32.3054C508.847 35.192 517.478 40.3219 524.533 47.2585C551.458 73.4863 543.304 112.805 555.122 144.91C561.749 162.912 579.058 179.206 588.208 196.366C595.654 210.327 599.742 225.081 594.99 240.776L594.524 243.232C606.985 251.037 615.744 258.719 618.54 274.188C624.535 307.371 615.947 347.223 608.549 379.785C605.801 391.88 601.933 403.825 599.672 415.523C599.083 418.957 595.563 438.079 594.379 440.2C592.67 458.235 591.878 472.28 591.615 490.396L592.954 493.904C597.224 498.023 597.053 499.935 594.712 505.297C595.044 514.376 597.824 523.364 598.124 532.063C599.42 535.615 600.883 549.949 601.606 554.641C595.054 555.053 585.283 554.721 578.447 554.7L535.794 554.593C489.128 554.427 442.456 554.539 395.79 554.919C396.69 547.79 398.635 540.521 399.347 533.274C399.604 530.617 400.038 525.4 400.906 523.129L401.426 520.922C383.174 516.246 351.324 511.468 345.92 490.481C346.225 489.142 346.795 486.957 347.663 485.928C354.127 478.29 363.745 469.704 371.062 462.944C374.174 464.995 377.587 466.859 380.844 468.707C393.095 468.247 396.401 473.828 407.945 467.679C416.592 469.045 417.299 467.588 422.313 460.683L425.27 460.416L426.015 459.398C430.644 456.955 439.51 455.889 443.415 452.6C447.91 449.183 445.649 436.37 443.453 431.876C436.038 416.707 435.342 402.727 433.033 385.988L425.919 333.345C424.585 323.387 423.872 312.754 421.601 302.99C421.065 300.702 420.133 297.483 418.429 295.812C413.779 291.232 380.988 293.069 372.92 293.166C372.529 291.918 372.733 290.654 373.081 289.395C379.638 265.559 382.724 260.272 402.524 247.687L400.237 246.175Z" fill="#2B313D"/>
48
+ <path d="M400.238 246.175C389.69 237.901 398.47 211.881 398.191 200.735C397.945 190.983 392.272 180.865 391.447 171.057C390.391 158.472 391.661 145.969 392.438 133.407C391.35 98.0167 392.347 59.2001 427.211 39.3443C441.011 31.4853 447.166 33.4421 461.513 31.923C476.663 30.3198 483.557 27.5468 499.388 32.3054C508.849 35.192 517.479 40.3219 524.534 47.2585C551.459 73.4863 543.306 112.805 555.124 144.91C561.75 162.912 579.059 179.206 588.209 196.366C595.656 210.327 599.743 225.081 594.991 240.776L594.525 243.232C584.497 238.951 571.688 234.754 562.5 230.351C558.354 252.05 536.7 283.144 554.357 302.406L554.572 303.477C552.772 304.773 553.099 303.595 550.64 304.232C545.443 306.536 534.906 298.651 531.45 294.869C530.995 296.042 530.743 296.878 530.084 297.949L529.077 298.715C525.9 298.603 519.74 294.505 517.441 292.186C506.974 281.628 504.863 268.012 504.627 254.042C499.816 257.931 495.434 261.059 489.284 262.323C488.856 261.145 488.936 261.782 489.477 260.347C487.859 259.485 488.149 254.337 488.09 252.489C487.463 233.684 488.127 233.402 475.854 220.467C474.766 219.67 474.515 219.688 474.027 218.482C472.474 214.694 465.011 206.812 460.731 206.492C452.824 205.9 444.847 211.672 438.809 215.996C425.524 204.001 415.243 190.97 411.616 173.052C410.69 168.498 409.913 159.755 408.177 155.839C405.434 158.498 407.775 162.096 408.081 165.799C409.72 185.768 421.554 205.377 437.202 217.598C429.574 223.948 431.915 227.35 441.161 227.297C434.288 233.85 426.263 235.632 417.488 238.893C411.643 241.098 405.89 243.527 400.238 246.175Z" fill="#957F6E"/>
49
+ <path d="M437.845 85.162C465.247 61.0248 469.87 129.261 504.027 134.134C505.623 134.338 506.818 134.186 507.847 135.036L508.918 136.817C512.314 137.354 521.529 130.503 525.048 137.039C533.239 152.249 524.03 161.66 511.704 167.291L511.564 168.249C512.475 169.061 512.946 169.093 514.114 169.467C514.607 171.058 514.655 174.485 514.8 176.295C516.214 194.566 510.895 213.254 507.536 231.211C506.368 237.641 505.43 244.111 504.729 250.61C499.827 255.372 495.654 257.386 489.477 260.348C487.859 259.485 488.148 254.338 488.089 252.49C487.463 233.684 488.127 233.403 475.854 220.467C474.766 219.67 474.514 219.689 474.027 218.482C472.473 214.695 465.011 206.813 460.73 206.492C452.823 205.901 444.847 211.673 438.809 215.997C425.523 204.002 415.243 190.971 411.616 173.053C410.689 168.499 409.913 159.755 408.177 155.84C406.672 152.963 404.1 139.488 402.793 134.957C405.798 122.434 410.443 96.2305 420.616 88.6511C423.584 86.4411 428.159 87.0967 431.582 87.8048L432.659 86.9858C433.002 85.9665 433.066 85.9928 433.634 85.0559C435.241 84.3194 436.098 84.7474 437.845 85.162Z" fill="#F2E1DA"/>
50
+ <path d="M474.027 218.482C482.861 212.419 490.447 207.145 496.645 198.278C497.952 196.406 500.063 193.412 502.313 192.872L502.704 193.503C499.827 201.07 489.097 210.563 482.599 215.228C481.158 216.26 476.717 219.412 475.854 220.467C474.767 219.67 474.515 219.689 474.027 218.482Z" fill="#2B313D"/>
51
+ <path d="M439.43 147.01C440.035 147.143 440.742 147.417 441.342 147.624C448.333 157.094 440.656 163.854 440.072 171.138C441.171 174.405 444.224 173.657 445.488 178.148C443.346 177.633 441.337 176.668 439.596 175.318C434.544 171.44 441.503 164.906 441.562 159.324C441.615 153.879 439.772 151.828 439.43 147.01Z" fill="#2B313D"/>
52
+ <path d="M469.478 187.444L471.091 188.083L471.289 189.08C463.162 195.562 449.373 196.356 439.516 194.592L438.498 193.361L438.707 192.477C440.614 191.967 444.069 192.806 446.266 193.042C455.137 193.994 461.989 191.822 469.478 187.444Z" fill="#2B313D"/>
53
+ <path d="M467.561 125.534C470.898 125.274 477.364 125.335 480.166 127.181L480.096 127.963C478.698 129.012 470.561 127.642 467.496 127.957C463.269 128.657 460.034 130.751 456.878 130.95L456.289 130.063L456.777 128.949C459.723 126.967 464.1 126.176 467.561 125.534Z" fill="#2B313D"/>
54
+ <path d="M468.417 146.004C474.502 147.137 474.084 152.459 470.951 156.608C470.147 156.376 469.413 156.199 468.706 155.722C467.522 154.902 466.718 153.643 466.467 152.225C466.043 149.689 467.024 147.951 468.417 146.004Z" fill="#2B313D"/>
55
+ <path d="M422.266 149.18C423.439 149.318 424.055 149.329 425.014 150.069C426.176 150.957 426.9 152.299 427.007 153.758C427.2 156.363 426.364 157.599 424.837 159.532C419.496 157.662 419.137 153.363 422.266 149.18Z" fill="#2B313D"/>
56
+ <path d="M417.427 129.301C421.665 129.01 425.779 129.406 429.54 131.518L429.165 132.054C425.656 132.602 423.449 131.834 419.913 131.214C414.915 131.891 411.545 134.37 408.111 133.68L408.315 132.996C412.22 130.237 412.885 130.134 417.427 129.301Z" fill="#2B313D"/>
57
+ <path d="M519.213 143.964L520.177 144.717C520.092 146.076 516.031 151.735 514.927 153.493C514.236 153.256 514.108 153.093 513.481 152.683C512.913 149.54 517.022 145.909 519.213 143.964Z" fill="#2B313D"/>
58
+ <path d="M507.847 135.035C512.652 132.872 517.672 130.474 522.879 132.699C531.857 136.535 531.632 149.277 527.866 156.731C524.92 162.566 521.647 165.341 516.198 168.435C520.8 198.176 508.313 224.897 506.898 254.203C506.32 266.239 510.456 283.69 520.409 291.318C522.391 292.866 529.184 296.589 530.084 297.949L529.077 298.715C525.9 298.603 519.74 294.505 517.441 292.186C506.973 281.628 504.863 268.012 504.627 254.043C499.816 257.931 495.434 261.059 489.284 262.324C488.856 261.145 488.936 261.783 489.477 260.347C495.654 257.385 499.827 255.371 504.729 250.609C505.431 244.11 506.368 237.64 507.536 231.211C510.895 213.254 516.215 194.566 514.8 176.294C514.656 174.485 514.607 171.057 514.114 169.466C512.947 169.092 512.475 169.06 511.564 168.248L511.704 167.291C524.031 161.659 533.24 152.249 525.048 137.038C521.529 130.503 512.315 137.353 508.918 136.816L507.847 135.035Z" fill="#2B313D"/>
59
+ <path d="M550.435 302.652C536.377 276.165 554.474 257.267 559.868 231.882C561.958 222.039 561.642 213.117 559.895 203.377C559.649 202.02 559.504 198.883 560.409 197.745C563.999 202.332 563.345 221.646 563.126 227.863C572.811 232.688 584.629 236.068 594.99 240.776L594.524 243.232C584.495 238.951 571.686 234.754 562.499 230.351C558.352 252.05 536.699 283.144 554.356 302.406L554.57 303.477C552.77 304.773 553.097 303.595 550.638 304.232L550.435 302.652Z" fill="#2B313D"/>
60
+ <path d="M437.844 85.1615C437.657 79.7145 443.742 76.9329 448.21 77.7583C471.76 82.1131 473.426 114.929 492.835 127.25C500.008 131.802 507.198 131.263 509.341 132.685C508.066 134.419 506.062 134.123 504.026 134.133C469.869 129.261 465.246 61.0243 437.844 85.1615Z" fill="#333136"/>
61
+ <path d="M402.793 134.956C401.764 137.907 401.191 144.856 399.696 146.626L398.893 146.239C397.435 138.37 407.716 106.998 410.839 98.3059C413.41 91.147 424.639 77.7645 432.659 86.9851L431.582 87.8041C428.159 87.0959 423.584 86.4403 420.616 88.6504C410.443 96.2298 405.798 122.434 402.793 134.956Z" fill="#2E2E33"/>
62
+ <path d="M531.449 294.87C529.22 291.051 524.57 282.331 525.084 277.863L525.754 277.167L526.718 277.285C528.256 279.283 528.288 282.491 529.161 285.089C532.649 295.47 540.438 300.269 550.434 302.653L550.638 304.233C545.441 306.536 534.904 298.652 531.449 294.87Z" fill="#2B313D"/>
63
+ <path d="M452.935 44.3418C454.478 44.4312 453.878 44.1254 454.869 45.1072C454.365 46.3896 452.019 47.8337 450.765 48.6789C443.265 53.7194 439.864 60.8466 436.703 69.0104C435.701 69.2284 436.103 69.1791 435.015 68.8733C434.64 67.1121 436.108 64.3867 436.815 62.7192C440.426 54.2662 445.248 49.2001 452.935 44.3418Z" fill="#2B313D"/>
64
+ <path d="M562.499 230.352C571.686 234.754 584.495 238.951 594.524 243.232C606.985 251.038 615.744 258.719 618.54 274.188C624.535 307.371 615.947 347.223 608.549 379.785C605.801 391.88 601.933 403.825 599.672 415.523C596.276 424.078 593.179 434.807 590.185 443.704C585.669 457.357 579.995 470.598 573.224 483.282C552.947 520.429 527.313 513.054 508.697 479.694C493.719 452.858 485.078 420.028 474.851 391.06C469.804 376.753 463.735 360.588 459.904 346.088C476.522 342.686 497.849 327.619 505.135 312.112C515.356 332.702 528.749 354.096 540.513 373.92C548.206 386.872 557.742 398.688 564.481 412.32C568.649 420.746 569.431 426.675 571.67 435.556L572.351 435.958L573.261 435.476C574.858 420.467 557.581 395.576 549.235 383.02C554.008 368.033 556.949 346.061 560.463 330.324C561.449 325.915 563.629 315.283 563.854 311.094L563.056 310.242L562.081 310.532C561.181 312.085 556.992 336.264 556.231 340.099C553.611 353.597 550.745 367.037 547.628 380.428C539.206 367.824 531.39 354.829 524.195 341.487C518.86 331.791 511.06 316.981 505.06 308.036C502.954 308.448 501.786 308.855 499.697 308.448C496.413 305.443 492.385 293.648 491.426 289.25C490.579 285.356 487.772 264.718 489.283 262.324C495.433 261.06 499.815 257.931 504.626 254.043C504.861 268.012 506.972 281.628 517.44 292.186C519.738 294.505 525.899 298.603 529.076 298.715L530.083 297.949C530.742 296.878 530.994 296.042 531.449 294.869C534.904 298.651 545.442 306.536 550.638 304.232C553.097 303.595 552.77 304.773 554.57 303.477L554.356 302.406C536.699 283.144 558.353 252.05 562.499 230.352Z" fill="#D7F1EE"/>
65
+ <path d="M402.524 247.688C413.115 244.108 428.468 235.967 439.504 233.901C431.447 238.796 432.979 237.732 430.654 246.742C430.059 248.151 428.206 249.86 427.986 251.322C427.193 256.577 429.315 263.412 432.165 267.863C435.507 273.075 438.191 274.832 443.945 273.246C444.572 278.565 445.209 283.525 446.125 288.812C447.791 298.437 456.154 303.553 460.82 311.486C463.89 316.708 466.022 323.479 468.309 329.183C463.863 333.549 459.432 338.552 456.866 344.299C461.297 359.817 467.506 376.668 472.686 392.154C482.779 422.311 492.1 452.392 506.415 480.814C503.774 480.433 492.234 479.507 490.445 477.294C490.065 476.834 489.807 474.488 488.286 474.07C483.872 472.854 478.89 471.847 474.475 470.872C463.032 468.408 451.622 465.778 440.254 462.987C437.324 462.275 428.49 460.331 426.015 459.399C430.643 456.956 439.509 455.89 443.415 452.601C447.909 449.184 445.649 436.371 443.452 431.877C436.038 416.708 435.341 402.727 433.032 385.989L425.918 333.345C424.584 323.388 423.872 312.755 421.6 302.99C421.065 300.703 420.132 297.484 418.429 295.813C413.779 291.233 380.988 293.07 372.92 293.167C372.529 291.919 372.732 290.655 373.081 289.396C379.638 265.56 382.724 260.273 402.524 247.688Z" fill="#D7F1EE"/>
66
+ <path d="M422.313 460.684C439.772 466.506 468.695 471.852 487.301 476.389C478.633 492.249 471.315 512.764 475.204 530.917C453.176 528.753 431.388 526.605 409.628 522.374C407.029 521.865 404.024 521.254 401.426 520.922C383.174 516.246 351.324 511.468 345.92 490.482C346.225 489.142 346.795 486.957 347.663 485.929C354.127 478.29 363.745 469.704 371.062 462.944C374.174 464.996 377.587 466.86 380.844 468.708C393.095 468.247 396.401 473.828 407.945 467.679C416.592 469.045 417.299 467.588 422.313 460.684Z" fill="#D7F1EE"/>
67
+ <path d="M486.745 518.121C489.745 518.222 496.409 518.378 499.002 519.229C509.523 522.69 517.018 527.382 528.129 530.044C537.048 532.176 545.223 530.285 552.707 531.512C556.495 537.248 556.645 538.475 563.914 539.996C567.75 540.8 572.63 541.003 576.145 538.85C580.479 536.332 577.377 531.86 583.323 530.467C584.352 530.226 587.373 527.81 587.346 526.803C587.164 519.69 590.941 520.151 593.684 514.821C593.989 514.237 594.268 513.471 594.423 513.08C595.446 519.256 596.362 526.107 598.125 532.063C599.421 535.615 600.884 549.948 601.607 554.641C595.055 555.053 585.284 554.721 578.448 554.7L535.795 554.593C489.129 554.426 442.457 554.539 395.791 554.919C396.691 547.79 398.636 540.521 399.348 533.274C399.605 530.617 400.039 525.4 400.907 523.129C422.1 527.076 457.634 533.001 479.218 533.033C483.204 528.041 484.923 524.318 486.745 518.121Z" fill="#D7F1EE"/>
68
+ <path d="M488.143 480.079C495.563 481.782 500.363 482.436 507.842 482.875C516.327 497.177 530.711 514.451 549.702 509.598C562.436 506.347 569.701 493.931 575.952 483.373C581.54 486.635 587.433 490.46 592.956 493.904C597.226 498.023 597.054 499.935 594.713 505.297L593.363 506.095C587.845 505.335 580.688 492.056 576.301 492.126L575.749 493.122C576.89 496.234 588.124 504.735 590.684 509.486C593.749 515.185 588.242 518.913 586.897 518.292C581.904 515.983 579.445 506.192 572.358 503.669C572.122 510.616 595.94 522.524 578.545 530.033C576.665 527.023 570.879 517.301 567.627 516.819C567.108 521.324 575.926 526.568 576.295 532.738C576.863 542.107 556.393 537.404 556.109 532.031C559.051 531.089 565.115 534.329 567.488 533.504C562.592 526.953 547.131 529.021 539.84 528.914C535.822 528.866 531.82 528.357 527.915 527.398C515.899 524.479 508.436 519.074 497.545 516.401C494.888 515.753 480.542 515.774 476.652 515.673C477.745 504.606 482.695 489.865 488.143 480.079Z" fill="#F2E1DA"/>
69
+ <path d="M577.162 480.888C581.292 472.842 584.962 464.572 588.166 456.114C589.859 451.706 592.409 443.891 594.38 440.2C592.671 458.235 591.878 472.28 591.616 490.395C587.485 487.348 581.592 483.743 577.162 480.888Z" fill="#D7F1EE"/>
70
+ <path d="M458.71 208.452L460.799 208.454C464.822 210.512 484.145 232.219 484.526 235.804C486.449 253.807 485.436 275.929 490.167 293.852C491.87 300.301 496.976 309.686 499.992 315.846C493.413 326.28 483.974 332.279 473.79 338.514C471.122 330.399 468.122 322.477 465.176 314.48C461.967 305.759 453.326 300.901 449.918 292.802C446.452 284.569 447.46 273.867 444.958 265.302C443.635 260.787 440.029 257.723 435.331 259.378C437.233 261.671 441.138 262.078 442.317 265.27C443.126 267.456 444.106 271.039 441.315 272.03C434.442 270.418 427.311 255.441 431.404 249.838C434.179 246.035 451.82 252.056 455.49 248.886C454.761 245.374 437.549 248.616 433.51 244.781C431.051 231.848 459.497 243.086 462.974 240.553L462.652 239.669C458.543 237.279 445.317 236.762 439.563 235.6L439.097 234.673C440.485 221.424 464.056 234.124 470.956 231.722L470.667 230.878C468.342 229.142 466.001 228.937 463.118 228.324C461.131 225.752 458.822 221.936 456.754 219.055C452.131 220.049 437.677 228.439 435.374 223.558C437.302 217.247 452.865 210.475 458.71 208.452Z" fill="#F2E1DA"/>
71
+ <path d="M468.354 331.979C470.229 333.142 470.979 337.406 471.584 339.661C468.783 340.946 466.281 341.894 463.404 342.982C462.161 343.26 462.204 343.228 460.924 343.099L460.816 341.985C462.236 338.745 465.97 334.738 468.354 331.979Z" fill="#D7F1EE"/>
72
+ <path d="M476.458 518.04L484.199 518.179C482.86 522.106 482.179 523.761 480.299 527.451C479.511 528.662 479.474 528.699 478.424 529.696L477.524 529.385C475.992 526.701 476.399 521.216 476.458 518.04Z" fill="#D7F1EE"/>
73
+ <path d="M454.403 222.181L455.983 222.689C457.22 223.994 458.313 224.756 458.447 226.471L457.724 227.134L455.431 226.808C453.562 226.592 450.524 226.661 449.635 224.98C450.781 223.496 452.635 222.949 454.403 222.181Z" fill="#EBEBEB"/>
74
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" fill="none" aria-hidden="true">
2
+ <rect width="128" height="128" rx="24" fill="hsl(220 14% 92%)"/>
3
+ <circle cx="64" cy="48" r="22" fill="hsl(220 9% 46%)"/>
4
+ <path
5
+ d="M24 108c8-28 28-40 40-40s32 12 40 40"
6
+ stroke="hsl(220 9% 46%)"
7
+ stroke-width="12"
8
+ stroke-linecap="round"
9
+ fill="none"
10
+ />
11
+ </svg>
Binary file
@@ -0,0 +1,36 @@
1
+ <svg width="766" height="164" viewBox="0 0 766 164" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_73_1036)">
3
+ <path d="M73.4939 155.238C114.084 155.238 146.988 122.334 146.988 81.7439C146.988 41.1544 114.084 8.25 73.4939 8.25C32.9044 8.25 0 41.1544 0 81.7439C0 122.334 32.9044 155.238 73.4939 155.238Z" fill="url(#paint0_linear_73_1036)"/>
4
+ <path d="M0.594727 90.9915C4.59951 122.921 29.0894 148.466 60.4966 154.085L102.462 116.355V102.302H86.8312L102.462 88.2489V74.1957H86.8312L102.462 60.1425V46.0894H50.5575L0.594727 90.9915Z" fill="#BE1E6D"/>
5
+ <path d="M102.474 116.355H50.5576L58.6764 102.302H102.474V116.355Z" fill="white"/>
6
+ <path d="M102.474 60.1303H58.6764L50.5576 46.0771H102.474V60.1303Z" fill="white"/>
7
+ <path d="M102.474 88.2368H66.7949L70.8483 81.2102L66.7949 74.1836H102.474V88.2368Z" fill="white"/>
8
+ <path d="M39.2227 74.1835H66.795L58.6762 60.1304H39.2227V74.1835Z" fill="white"/>
9
+ <path d="M39.2227 102.302H58.6762L66.795 88.2368H39.2227V102.302Z" fill="white"/>
10
+ </g>
11
+ <g clip-path="url(#clip1_73_1036)">
12
+ <path d="M579.64 32.6512C592.027 32.3136 602.339 34.2511 611.886 42.8549C621.616 51.9225 625.419 64.8345 626.05 77.6623C627.31 103.322 613.505 127.896 585.51 129.148C585.162 129.199 584.811 129.234 584.461 129.252C574.085 129.753 562.004 126.318 554.126 119.188C536.921 103.616 535.647 72.9436 546.054 53.3303C552.613 40.9652 565.665 33.3388 579.64 32.6512ZM584.116 123.144C589.474 122.455 593.908 120.383 597.184 115.86C606.219 102.471 605.632 82.6132 604.178 67.1363C603.351 58.3677 600.264 47.6909 593.184 42.0268C590.322 39.7365 585.27 38.2385 581.604 38.7657C572.591 39.5696 567.54 44.6598 564.488 52.8846C558.062 70.2058 555.754 124.532 584.116 123.144Z" fill="#E31B79"/>
13
+ <path d="M430.755 55.7344C443.603 55.2553 459.709 58.3988 463.175 73.143C464.166 77.3587 463.884 82.6952 463.877 87.0408L463.845 105.91C463.857 112.149 463.051 112.645 469.328 113.205C469.057 117.66 469.234 123.628 469.242 128.194C461.169 128.149 448.96 129.818 446.764 119.668C444.471 122.422 443.567 123.605 440.357 125.604C433.884 129.636 423.423 129.934 416.178 128.172C410.382 126.762 405.62 123.519 402.512 118.29C400.527 114.233 400.122 109.477 400.649 105.072C402.505 89.5606 418.762 87.5983 431.172 85.928C435.522 85.237 440.828 84.6483 444.472 82.0073C447.548 79.7708 447.168 76.525 444.97 73.7922C440.68 68.4582 429.516 68.0981 424.356 72.2079C421.359 74.5939 420.834 77.8667 420.5 81.4362C414.437 81.3803 408.373 81.3842 402.31 81.4478C402.503 79.5217 402.653 77.3957 403.031 75.5059C405.774 61.7822 418.095 56.4115 430.755 55.7344ZM420.852 112.903C428.033 116.948 440.992 113.872 444.937 106.311C445.852 104.557 447.932 97.6766 446.702 95.9674L446.344 95.9145C442.708 97.4881 435.913 98.8678 431.795 99.3372C425.343 100.072 411.452 104.687 420.852 112.903Z" fill="#273441"/>
14
+ <path d="M677.935 59.0477C699.855 57.8913 696.583 76.9682 696.748 92.0377C696.845 100.807 696.517 109.637 697.098 118.395C697.259 120.816 697.771 123.787 700.211 124.947C701.104 125.374 701.849 125.466 702.614 126.131C702.778 127.168 702.853 126.832 702.5 127.735C699.251 128.44 678.411 127.93 673.804 127.775C673.206 127.755 672.953 127.462 672.68 127.015C673.231 125.409 675.671 125.143 677.582 123.199C679.398 114.08 678.719 105.254 678.844 95.9909C678.858 90.3513 678.931 84.9044 678.377 79.2797C677.042 65.7365 665.601 69.2473 656.927 73.9796C657.192 76.486 657.033 81.4311 657.025 84.1135L657 106.393C656.994 112.303 656.332 118.583 658.741 124.027C660.446 125.154 662.221 124.835 663.019 126.793C662.85 127.589 663.003 127.49 662.488 127.922C658.98 128.008 635.083 128.474 633.558 127.735C632.96 127.446 632.882 127.238 632.676 126.643C633.394 124.87 634.977 125.133 636.384 124.383C637.23 123.934 637.658 122.7 637.906 121.828C639.341 116.75 639.266 75.7628 637.889 71.6175C636.952 68.8035 633.614 67.9918 632.445 65.6353C632.095 64.9279 632.198 64.6117 632.418 63.913C635.133 62.7812 653.765 59.3261 657.053 59.0324L656.98 68.2382C663.158 62.7473 669.782 59.9066 677.935 59.0477Z" fill="#E31B79"/>
15
+ <path d="M331.798 57.0712C337.592 57.1185 343.354 57.0072 349.156 57.1749C351.068 59.3357 353.387 63.1655 355.063 65.6344C358.847 71.2087 362.432 77.014 366.36 82.4907C370.845 75.0665 378.273 64.1367 383.331 57.1032C385.626 57.0945 399.689 56.8398 400.866 57.3117C401.39 58.6028 399.759 61.1078 399.008 62.1658C392.221 71.7261 386.21 82.4699 379.267 91.8592C383.35 97.6717 387.268 104.526 391.166 110.532C393.16 113.606 400.626 124.783 400.949 127.559C399.879 128.243 384.096 127.95 382.001 127.951C377.115 119.684 371.356 110.895 366.217 102.718C364.993 105.113 362.366 109.016 360.85 111.436C357.401 116.922 353.992 122.433 350.622 127.968C348.242 127.897 332.898 128.279 332.168 127.57C332.118 126.754 332.069 125.826 332.449 125.099C334.495 121.173 337.285 117.058 339.661 113.307L353.193 91.8005C352.418 90.7063 351.628 89.4998 350.898 88.362C344.705 78.7208 337.866 69.3865 332.081 59.5087C331.713 58.8803 331.753 57.7841 331.798 57.0712Z" fill="#273441"/>
16
+ <path d="M311.843 57.1062C314.843 57.097 327.108 56.8601 329.377 57.2135L329.606 57.8503C329.333 60.3776 324.215 67.3436 322.511 69.9223C317.651 77.1875 312.847 84.4905 308.101 91.8305C309.118 93.8473 311.981 98.1472 313.27 100.2L323.962 117.113C325.904 120.182 329.179 124.459 329.551 127.99C323.658 127.748 316.574 127.94 310.593 127.946C307.782 122.799 304.084 117.694 301.099 112.597C299.196 109.347 296.932 105.769 294.706 102.746C293.772 104.889 290.7 109.57 289.357 111.724C285.993 117.165 282.58 122.576 279.12 127.956C276.595 127.908 261.817 128.243 260.671 127.615C260.249 126.007 261.797 123.527 262.702 122.205C269.332 112.519 275.107 101.261 281.979 91.8322C281.555 91.3258 281.153 90.8019 280.774 90.2617C279.987 89.1263 279.24 87.9296 278.486 86.7642C272.548 77.5965 266.263 68.6263 260.479 59.3668C260.192 58.9075 260.442 57.6507 260.539 57.1068C266.332 57.0478 272.125 57.0656 277.917 57.1596C283.454 64.9372 289.73 74.44 294.84 82.5018C296.784 80.011 299.246 76.0686 301.022 73.3917L311.843 57.1062Z" fill="#273441"/>
17
+ <path d="M479.835 35.8541C485.68 35.8897 491.521 35.8895 497.366 35.853C497.152 42.4806 497.332 50.2661 497.324 56.9807L514.284 56.9509L514.292 72.0978C508.643 72.0524 502.993 72.036 497.341 72.0485L497.313 93.563C497.313 97.0693 496.581 108.123 499.41 110.474C502.231 112.82 510.459 112.62 514.295 112.135L514.279 123.529L514.292 127.437C511.116 127.895 507.911 128.146 504.704 128.188C479.71 128.491 479.891 117.266 479.916 96.9484C479.949 88.6621 479.938 80.3759 479.88 72.09C476.431 72.026 471.882 71.9331 468.516 72.1906C468.292 67.7063 468.488 61.552 468.523 56.9865C469.391 56.999 470.258 56.9979 471.126 56.9829C482.417 56.741 480.091 43.7789 479.835 35.8541Z" fill="#273441"/>
18
+ <path d="M196 35.7646L235.626 35.811C239.705 35.8108 250.804 36.0941 254.421 35.6509L254.407 50.8756C240.766 50.8038 227.125 50.8041 213.485 50.877L213.495 74.3467C224.554 74.3448 238.413 74.7338 249.193 74.2652L249.203 89.7182C245.211 89.4232 239.525 89.5845 235.431 89.5872L213.496 89.6342L213.484 113.004L256.078 112.926L256.072 128.097C251.917 127.617 239.134 127.901 234.375 127.929C221.693 128.004 208.639 127.754 196 127.94V35.7646Z" fill="#273441"/>
19
+ <path d="M765.695 111.581C764.975 112.808 764.201 114.145 763.431 115.334C759.103 122.071 752.257 126.795 744.421 128.451C738.137 129.794 731.661 129.518 725.655 127.155C704.375 118.784 701.479 90.2098 712.245 72.5278C724.1 53.0555 757.792 53.4083 764.26 77.0772C764.933 79.5425 765.164 82.3339 765.695 84.8904V88.317C761.667 88.6393 755.214 88.441 751.038 88.436L724.401 88.4051C725.018 94.4891 725.082 99.3499 727.666 104.929C735.589 122.017 750.591 119.084 762.151 108.735C763.172 109.32 764.655 110.224 765.695 110.669V111.581ZM737.739 82.3573C741.742 82.3648 745.848 82.325 749.842 82.3896C749.575 74.8096 748.304 62.8235 737.466 64.6145C727.219 65.6478 726.515 74.7732 724.812 82.424C729.121 82.3579 733.43 82.3356 737.739 82.3573Z" fill="#E31B79"/>
20
+ </g>
21
+ <defs>
22
+ <linearGradient id="paint0_linear_73_1036" x1="28.3733" y1="134.255" x2="117.195" y2="30.9074" gradientUnits="userSpaceOnUse">
23
+ <stop offset="0.04" stop-color="#E21C79"/>
24
+ <stop offset="0.65" stop-color="#E21E7B"/>
25
+ <stop offset="0.73" stop-color="#E42880"/>
26
+ <stop offset="0.88" stop-color="#E9448E"/>
27
+ <stop offset="1" stop-color="#EF609D"/>
28
+ </linearGradient>
29
+ <clipPath id="clip0_73_1036">
30
+ <rect width="147" height="147" fill="white" transform="translate(0 8.25)"/>
31
+ </clipPath>
32
+ <clipPath id="clip1_73_1036">
33
+ <rect width="569.695" height="163.5" fill="white" transform="translate(196)"/>
34
+ </clipPath>
35
+ </defs>
36
+ </svg>
@@ -0,0 +1,39 @@
1
+ <svg width="845" height="164" viewBox="0 0 845 164" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_73_1049)">
3
+ <path d="M60.56 142.305C94.0064 142.305 121.12 115.191 121.12 81.7451C121.12 48.2987 94.0064 21.1851 60.56 21.1851C27.1136 21.1851 0 48.2987 0 81.7451C0 115.191 27.1136 142.305 60.56 142.305Z" fill="url(#paint0_linear_73_1049)"/>
4
+ <path d="M0.490234 89.3652C3.79023 115.675 23.9702 136.725 49.8502 141.355L84.4302 110.265V98.6852H71.5502L84.4302 87.1052V75.5252H71.5502L84.4302 63.9452V52.3652H41.6602L0.490234 89.3652Z" fill="#BE1E6D"/>
5
+ <path d="M84.4397 110.265H41.6597L48.3497 98.6851H84.4397V110.265Z" fill="white"/>
6
+ <path d="M84.4397 63.935H48.3497L41.6597 52.355H84.4397V63.935Z" fill="white"/>
7
+ <path d="M84.44 87.0951H55.04L58.38 81.3051L55.04 75.5151H84.44V87.0951Z" fill="white"/>
8
+ <path d="M32.3198 75.5151H55.0398L48.3498 63.9351H32.3198V75.5151Z" fill="white"/>
9
+ <path d="M32.3198 98.6852H48.3498L55.0398 87.0952H32.3198V98.6852Z" fill="white"/>
10
+ </g>
11
+ <g clip-path="url(#clip1_73_1049)">
12
+ <path d="M516.224 35.7236L539.045 35.6448C548.902 35.625 559.716 34.8998 569.171 37.7297C585.061 42.4847 589.938 57.0863 585.808 72.1784C580.934 89.9788 559.598 94.2839 544.16 89.3496C544.351 93.6141 544.239 98.6862 544.245 103.011C544.219 108.886 543.484 116.871 546.468 122.242C548.536 125.968 552.34 124.047 553.976 126.463C553.706 127.638 552.504 127.799 551.372 127.789C542.691 127.708 534 127.796 525.316 127.765C522.622 127.756 518.799 127.94 516.227 127.341L516.102 126.775C519.23 122.746 524.611 126.79 524.921 115.051C525.418 96.2037 525.079 77.3564 525.181 58.4995C525.194 55.9626 525.161 53.3199 525.02 50.8087C524.542 42.2774 524.714 40.2086 516.276 37.7666C515.835 36.8568 516.026 36.8479 516.224 35.7236ZM561.758 81.7577C566.075 76.0378 567.208 72.0182 567.607 64.7877C568.193 54.1196 565.344 41.9079 552.274 41.5163C550.509 41.4632 548.73 41.5288 546.919 41.6016C546.122 41.9652 544.775 42.8401 544.588 43.8455C543.978 47.2131 544.117 51.0942 544.219 54.5488C544.456 62.5893 544.077 70.5968 544.127 78.6252C544.176 86.7181 553.374 86.2803 558.649 83.5938C559.72 83.0443 560.757 82.4312 561.758 81.7577Z" fill="#E31B79"/>
13
+ <path d="M402.818 55.8327C405.052 55.5377 410.074 55.66 412.311 55.837C423.661 56.7359 434.899 61.6492 437.377 73.8645C438.215 77.9916 437.996 82.5469 437.985 86.8025C437.977 92.7617 437.929 98.7208 437.839 104.68C437.771 110.573 437.002 112.867 443.417 113.143L443.425 127.935C435.329 127.94 423.442 129.682 420.634 119.91C413.623 128.59 403.51 130.322 392.744 128.652C386.398 127.668 380.94 124.729 377.251 119.341C374.341 114.429 373.846 108.153 375.083 102.656C377.954 90.5343 391.037 87.8972 401.558 86.4666C405.949 85.8693 419.888 84.6536 420.496 78.9129C421.531 69.1633 405.427 66.9952 399.222 71.6421C395.538 74.4015 395.056 77.1527 394.214 81.4294C388.59 81.2 382.169 81.3447 376.488 81.3849C377.656 64.6911 386.55 57.7136 402.818 55.8327ZM394.722 112.842C402.622 116.994 414.879 113.956 419.195 105.867C420.898 102.675 420.786 100.037 420.753 96.5686C420.676 96.4397 420.464 96.0521 420.367 95.9825C417.57 96.9217 415.105 97.5589 412.227 98.1463C405.998 99.4177 386.104 100.755 393.813 111.851C394.008 112.132 394.46 112.588 394.722 112.842Z" fill="#273441"/>
14
+ <path d="M285.842 57.092C288.383 57.0821 302.013 56.8534 303.49 57.3801C303.921 59.8946 296.385 70.3368 294.519 73.0942C290.393 79.1912 286.383 85.8209 282.086 91.7382L296.149 114.075C297.839 116.764 303.016 124.546 303.836 127.148C302.355 128.098 287.357 127.674 284.53 127.661C283.197 125.148 280.545 121.155 278.947 118.593C275.663 113.239 272.302 107.934 268.867 102.676C267.615 105.328 264.978 109.267 263.356 111.861L253.472 127.619C250.818 127.679 236.379 128.223 234.929 127.307C234.802 127.226 234.833 127.271 234.805 127.121C234.334 124.593 253.23 96.0195 256.079 91.7346C254.614 89.9792 253.162 87.6385 251.899 85.6936C246.461 77.3195 240.713 69.1346 235.418 60.6715C234.529 59.2505 234.261 58.7567 234.685 57.1032L252.113 57.0953C257.638 65.5363 263.657 74.0278 269.026 82.5146C273.446 74.8182 280.898 65.1741 285.842 57.092Z" fill="#273441"/>
15
+ <path d="M305.863 57.0737L323.379 57.1011C329.02 65.2052 335.012 74.2679 340.362 82.5632C345.285 74.7113 352.033 64.6471 357.386 57.0948C361.996 57.0674 369.815 56.7925 374.173 57.1818C376.244 58.9665 368.54 69.0402 367.023 71.3256L353.506 91.742C356.918 98.694 374.121 122.433 374.944 127.689C368.802 127.534 362.114 127.674 355.93 127.682C351.193 119.662 345.363 110.633 340.337 102.74C335.343 110.592 329.601 119.589 324.992 127.585C318.896 127.832 311.626 127.673 305.417 127.677C306.982 123.265 310.578 118.366 313.063 114.31C317.652 106.819 322.836 99.2867 327.267 91.7074C321.78 83.8363 316.645 75.6089 311.249 67.6613C309.415 64.9596 305.794 60.2636 305.863 57.0737Z" fill="#273441"/>
16
+ <path d="M454.026 36.0116C459.731 36.0271 465.436 36.0096 471.14 35.9585L471.16 57.0945L488.243 57.052L488.254 72.2463C482.683 72.1227 476.754 72.2229 471.155 72.2212L471.138 93.4004C471.135 97.6102 471.294 101.493 471.405 105.692C471.614 113.586 482.181 112.858 488.24 111.97L488.243 121.691L488.265 127.416C484.779 127.724 481.282 127.899 477.783 127.94C452.823 127.992 454.009 116.222 454.008 96.2313L454.009 72.2176C450.214 72.1859 446.419 72.2047 442.624 72.274C442.557 67.2104 442.563 62.1465 442.64 57.0833C443.23 57.0955 443.82 57.1018 444.409 57.1021C456.599 57.0942 454.076 44.6883 454.026 36.0116Z" fill="#273441"/>
17
+ <path d="M709.341 59.4712C716.161 59.8473 722.388 60.0978 728.658 62.9393C728.596 67.6956 729.116 72.4767 728.948 77.2304C728.915 78.25 728.625 78.2575 727.805 78.5895C726.149 78.3568 725.164 76.1287 724.331 74.7855C720.494 68.5946 713.855 63.7545 706.235 65.229C703.018 65.852 701.173 67.4402 699.448 70.0608C699.27 72.2558 698.99 76.0269 700.63 77.7446C708.168 85.6309 720.708 87.2873 728.365 95.1211C735.62 102.545 734.454 115.729 726.821 122.426C719.902 128.588 710.773 129.464 701.895 129.132C698.341 128.594 689.667 127.399 686.796 125.738C685.518 124.267 684.932 110.419 684.816 107.618L685.324 107.085C686.041 107.047 686.789 107.004 687.286 107.65C693.165 115.302 696.79 123.714 708.043 123.502C713.075 123.407 720.214 119.506 719.134 114.29C717.023 104.1 698.266 101.216 691.511 94.1994C687.54 90.077 685.36 87.1363 684.928 81.2675C684.793 65.2695 695.615 60.3273 709.341 59.4712Z" fill="#E31B79"/>
18
+ <path d="M618.055 70.3023C622.942 64.803 628.655 59.6719 636.542 60.0331C638.09 60.104 640.181 60.1933 641.587 60.8365C642.259 61.9866 638.782 76.3723 637.902 78.2548C635.943 78.7173 631.319 73.5997 628.408 73.0406C624.032 72.2007 621.786 73.8225 618.229 76.0014C618.437 79.0644 618.295 83.7093 618.288 86.8732L618.259 106.8C618.252 111.321 617.926 118.732 619.257 122.874C620.791 125.951 623.31 124.084 624.272 127.062L623.946 127.616C621.934 127.967 595.543 127.866 594.604 127.405C594.357 124.494 599.386 125.153 599.606 121.179C600.476 105.594 600.377 89.6685 599.732 74.0856C599.596 70.8189 593.995 67.4322 593.794 65.223C594.693 64.2789 614.389 60.52 617.165 60.0681L617.926 60.1713C618.796 61.2686 618.203 68.5635 618.055 70.3023Z" fill="#E31B79"/>
19
+ <path d="M671.456 60.0659L671.852 60.1147C673.07 61.728 670.436 114.857 673.459 123.901C674.924 124.763 678.053 125.34 677.648 127.371C676.251 128.137 652.159 127.715 648.348 127.662C648.045 127.023 648.138 126.807 648.292 126.107C648.954 125.397 650.802 124.955 651.813 124.637C652.261 123.884 652.718 123.058 652.975 122.219C654.365 117.667 654.21 81.5708 653.492 75.5704C653.209 73.2049 652.633 71.4493 651.53 69.3564C649.652 68.3464 646.85 67.491 647.746 65.0283C649.745 64.1607 668.736 60.3504 671.456 60.0659Z" fill="#E31B79"/>
20
+ <path d="M660.464 29.0874C666.085 27.8926 671.627 31.4201 672.932 37.0223C674.236 42.6241 670.821 48.2405 665.252 49.6553C661.55 50.5958 657.632 49.4605 655 46.6872C652.372 43.914 651.447 39.9353 652.58 36.2846C653.713 32.6341 656.729 29.8814 660.464 29.0874Z" fill="#E31B79"/>
21
+ <path d="M761.916 68.9873C765.581 65.9846 769.029 63.5459 773.531 61.9241C782.963 58.5285 794.742 58.5338 798.918 69.5262C799.61 69.5908 800.947 68.4074 801.605 67.8757C808.511 62.3085 818.884 58.2474 827.862 60.5298C841.12 63.901 839.358 80.4903 839.325 91.0205L839.262 111.901C839.256 115.431 838.9 120.475 840.685 123.589C841.396 124.831 843.267 125.24 844.568 125.534V127.647C839.022 127.927 832.702 127.69 827.097 127.775C824.693 127.811 817.643 127.894 815.585 127.5C815.189 126.534 815.216 126.934 815.555 125.874C816.879 124.858 819.632 125.262 819.978 122.643C821.746 109.29 821.101 93.9062 820.705 80.4959C820.297 66.6729 808.834 70.1054 800.397 74.8545C800.785 87.0695 800.242 99.8169 800.453 112.114C800.495 114.734 800.341 121.388 802.119 123.764C803.239 125.265 805.804 125.298 806.723 126.439L806.347 127.002C805.531 127.396 803.762 127.897 802.906 127.828C795.131 127.208 784.899 128.621 777.394 127.525C776.613 125.13 781.445 124.649 781.929 121.478C783.045 114.488 782.548 107.249 782.597 100.194C782.702 85.2196 785.768 60.2954 762.104 74.6161C762.308 78.0539 762.163 83.0849 762.163 86.6324L762.143 109.455C762.137 112.774 761.923 117.623 762.4 120.955C762.835 124.001 767.399 125.604 767.926 127.128L767.692 127.463C765.249 127.893 741.759 127.94 738.703 127.531C738.044 126.817 738.143 127.132 738.166 126.259C738.864 125.368 740.204 125.442 741.136 124.866C742.368 124.103 742.892 122.707 743.237 121.366C744.347 117.035 744.443 79.9484 743.652 74.8749C743.316 72.7155 742.266 70.9361 741.176 69.0881C739.793 68.3511 738.248 67.8405 737.435 66.6122C737.244 65.4908 737.168 65.9094 737.718 64.9278C740.27 64.0206 759.538 60.1982 762.209 60.0646C762.193 62.9836 762.242 66.1026 761.916 68.9873Z" fill="#E31B79"/>
22
+ <path d="M170.13 35.5752C189.392 35.5686 209.114 35.7911 228.335 35.5347C228.339 40.4077 228.22 45.8813 228.386 50.7056L187.397 50.7283C187.445 58.5473 187.443 66.3666 187.393 74.1856C199.283 74.1872 211.506 74.3409 223.368 74.1655L223.38 89.3357C211.424 89.2981 199.329 89.2147 187.376 89.3499C187.435 97.1307 187.447 104.912 187.41 112.692L230.17 112.697C230.192 117.588 230.294 122.754 230.163 127.622L170.13 127.589V35.5752Z" fill="#273441"/>
23
+ </g>
24
+ <defs>
25
+ <linearGradient id="paint0_linear_73_1049" x1="23.38" y1="125.015" x2="96.57" y2="39.8551" gradientUnits="userSpaceOnUse">
26
+ <stop offset="0.04" stop-color="#E21C79"/>
27
+ <stop offset="0.65" stop-color="#E21E7B"/>
28
+ <stop offset="0.73" stop-color="#E42880"/>
29
+ <stop offset="0.88" stop-color="#E9448E"/>
30
+ <stop offset="1" stop-color="#EF609D"/>
31
+ </linearGradient>
32
+ <clipPath id="clip0_73_1049">
33
+ <rect width="121.13" height="121.13" fill="white" transform="translate(0 21.1851)"/>
34
+ </clipPath>
35
+ <clipPath id="clip1_73_1049">
36
+ <rect width="674.438" height="163.5" fill="white" transform="translate(170.13)"/>
37
+ </clipPath>
38
+ </defs>
39
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" fill="none" aria-hidden="true">
2
+ <rect width="128" height="128" rx="16" fill="hsl(265 40% 32%)"/>
3
+ <text x="64" y="78" text-anchor="middle" font-family="system-ui,sans-serif" font-size="36" font-weight="700" fill="white">EU</text>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" fill="none" aria-hidden="true">
2
+ <rect width="128" height="128" rx="16" fill="hsl(222 47% 20%)"/>
3
+ <text x="64" y="78" text-anchor="middle" font-family="system-ui,sans-serif" font-size="36" font-weight="700" fill="white">RU</text>
4
+ </svg>
@@ -0,0 +1,190 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Scans apps/web + packages/ui for Font Awesome class usage and writes
4
+ * fontawesome-subset.manifest.json for Font Awesome Kit subsetting.
5
+ *
6
+ * Run: pnpm fa:subset-audit (from apps/web)
7
+ *
8
+ * Then: https://fontawesome.com/kits → Kit → Settings → Icon Selection → By Icon
9
+ * Enable styles: Light, Solid, Duotone (see manifest.duotoneNote).
10
+ * Paste / upload icons from manifest.icons (hyphenated names as in FA search).
11
+ */
12
+
13
+ import fs from "node:fs"
14
+ import path from "node:path"
15
+ import { fileURLToPath } from "node:url"
16
+
17
+ const __dirname = path.dirname(fileURLToPath(import.meta.url))
18
+ const WEB_ROOT = path.join(__dirname, "..")
19
+ const REPO_ROOT = path.join(WEB_ROOT, "..", "..")
20
+ const UI_SRC = path.join(REPO_ROOT, "packages", "ui", "src")
21
+
22
+ const IGNORE_DIR = new Set([
23
+ "node_modules",
24
+ ".next",
25
+ "dist",
26
+ "coverage",
27
+ ".turbo",
28
+ ])
29
+
30
+ /** Modifier / utility tokens — not icon names */
31
+ const IGNORE_ICONS = new Set([
32
+ "solid",
33
+ "light",
34
+ "regular",
35
+ "brands",
36
+ "duotone",
37
+ "spin",
38
+ "pulse",
39
+ "beat",
40
+ "fade",
41
+ "beat-fade",
42
+ "bounce",
43
+ "flip",
44
+ "shake",
45
+ "fw",
46
+ "xs",
47
+ "sm",
48
+ "lg",
49
+ "xl",
50
+ "2xl",
51
+ "1x",
52
+ "2x",
53
+ "3x",
54
+ "4x",
55
+ "5x",
56
+ "6x",
57
+ "7x",
58
+ "8x",
59
+ "9x",
60
+ "10x",
61
+ "rotate-90",
62
+ "rotate-180",
63
+ "rotate-270",
64
+ "rotate-by",
65
+ "flip-horizontal",
66
+ "flip-vertical",
67
+ ])
68
+
69
+ function walkFiles(root, out = []) {
70
+ if (!fs.existsSync(root)) return out
71
+ for (const ent of fs.readdirSync(root, { withFileTypes: true })) {
72
+ if (IGNORE_DIR.has(ent.name)) continue
73
+ const p = path.join(root, ent.name)
74
+ if (ent.isDirectory()) walkFiles(p, out)
75
+ else if (/\.(tsx|ts|jsx|js)$/.test(ent.name) && !ent.name.endsWith(".d.ts"))
76
+ out.push(p)
77
+ }
78
+ return out
79
+ }
80
+
81
+ function addIcon(set, name) {
82
+ if (!name || name.length < 2) return
83
+ const n = name.toLowerCase()
84
+ if (IGNORE_ICONS.has(n)) return
85
+ set.add(n)
86
+ }
87
+
88
+ function extractFromText(text, styles, icons) {
89
+ // fa-solid fa-grid-2, fa-light fa-arrow-left, etc.
90
+ const reStyled = /\bfa-(solid|light|regular|brands)\s+fa-([a-z0-9-]+)\b/gi
91
+ let m
92
+ while ((m = reStyled.exec(text)) !== null) {
93
+ styles.add(m[1].toLowerCase())
94
+ addIcon(icons, m[2])
95
+ }
96
+
97
+ // fa-duotone fa-solid fa-star-christmas
98
+ const reDuotone = /\bfa-duotone\s+fa-solid\s+fa-([a-z0-9-]+)\b/gi
99
+ while ((m = reDuotone.exec(text)) !== null) {
100
+ styles.add("duotone")
101
+ styles.add("solid")
102
+ addIcon(icons, m[1])
103
+ }
104
+
105
+ // "fa-light fa-books" in strings
106
+ const reQuoted = /["'](fa-(?:solid|light|regular|brands)\s+fa-([a-z0-9-]+))["']/gi
107
+ while ((m = reQuoted.exec(text)) !== null) {
108
+ const styleMatch = /^fa-(\w+)\s/.exec(m[1])
109
+ if (styleMatch) styles.add(styleMatch[1].toLowerCase())
110
+ addIcon(icons, m[2])
111
+ }
112
+
113
+ // list-status-badges style: "fa-circle-check" (suffix only)
114
+ const reBare = /["']fa-([a-z0-9-]+)["']/g
115
+ while ((m = reBare.exec(text)) !== null) {
116
+ const token = m[1].toLowerCase()
117
+ if (!IGNORE_ICONS.has(token)) addIcon(icons, token)
118
+ }
119
+
120
+ // className={`fa-light ${foo}`} — skip dynamic; human must grep ${ if needed
121
+ }
122
+
123
+ /** Dynamic class templates — expand to concrete icon names for the kit list */
124
+ function applyDynamicIconExpansions(icons) {
125
+ // data-table SortChevron: `fa-solid fa-arrow-${asc ? "up" : "down"}`
126
+ if (icons.delete("arrow")) {
127
+ icons.add("arrow-up")
128
+ icons.add("arrow-down")
129
+ }
130
+ }
131
+
132
+ function main() {
133
+ const files = [
134
+ ...walkFiles(path.join(WEB_ROOT, "app")),
135
+ ...walkFiles(path.join(WEB_ROOT, "components")),
136
+ ...walkFiles(path.join(WEB_ROOT, "lib")),
137
+ ...walkFiles(path.join(WEB_ROOT, "contexts")),
138
+ ...walkFiles(path.join(WEB_ROOT, "hooks")),
139
+ ...walkFiles(UI_SRC),
140
+ ]
141
+
142
+ const styles = new Set()
143
+ const icons = new Set()
144
+
145
+ for (const file of files) {
146
+ let text
147
+ try {
148
+ text = fs.readFileSync(file, "utf8")
149
+ } catch {
150
+ continue
151
+ }
152
+ extractFromText(text, styles, icons)
153
+ }
154
+
155
+ applyDynamicIconExpansions(icons)
156
+
157
+ // Ensure we always list core styles the app relies on
158
+ styles.add("light")
159
+ styles.add("solid")
160
+
161
+ const sortedStyles = [...styles].sort()
162
+ const sortedIcons = [...icons].sort()
163
+
164
+ const manifest = {
165
+ kitId: "d9bd5774e0",
166
+ generatedAt: new Date().toISOString(),
167
+ sourcePaths: ["apps/web/{app,components,lib,contexts,hooks}", "packages/ui/src"],
168
+ stylesDetected: sortedStyles,
169
+ duotoneNote:
170
+ "Icons used as fa-duotone fa-solid … require Duotone + Solid in Kit settings (e.g. star-christmas).",
171
+ iconCount: sortedIcons.length,
172
+ icons: sortedIcons,
173
+ kitSteps: [
174
+ "Open https://fontawesome.com/kits and select this kit.",
175
+ "Settings → Icon Selection → By Icon → add every name from `icons` (search in FA).",
176
+ "Settings → Icon Selection → By Style → enable only: Light, Solid, and Duotone if duotone icons are used.",
177
+ "Save the kit, then verify the app (hard refresh). Missing icons show as empty squares.",
178
+ "Re-run `pnpm fa:subset-audit` after adding icons and commit the updated manifest.",
179
+ ],
180
+ }
181
+
182
+ const outPath = path.join(WEB_ROOT, "fontawesome-subset.manifest.json")
183
+ fs.writeFileSync(outPath, JSON.stringify(manifest, null, 2) + "\n", "utf8")
184
+
185
+ console.log(`Wrote ${outPath}`)
186
+ console.log(`Styles: ${sortedStyles.join(", ")}`)
187
+ console.log(`Icons: ${sortedIcons.length}`)
188
+ }
189
+
190
+ main()
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env bash
2
+ # Run once after `npm run dev:daemon` + `npx pm2 save` — installs PM2 launchd hook (needs your password).
3
+ set -euo pipefail
4
+ ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
5
+ export NVM_DIR="${NVM_DIR:-$HOME/.nvm}"
6
+ # shellcheck source=/dev/null
7
+ [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
8
+ cd "$ROOT"
9
+ nvm use
10
+ PM2_BIN="$ROOT/node_modules/pm2/bin/pm2"
11
+ NODE_BIN="$(dirname "$(command -v node)")"
12
+ echo "Installing PM2 startup (launchd). You may be prompted for your macOS password."
13
+ sudo env PATH="$PATH:$NODE_BIN" "$PM2_BIN" startup launchd -u "$(whoami)" --hp "$HOME"
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 1,
3
+ "skills": {
4
+ "shadcn": {
5
+ "source": "shadcn/ui",
6
+ "sourceType": "github",
7
+ "computedHash": "507f011a70e8b3ae242bdc0bb5b39fd91a1d4049a0f3c281991ccf84973d591c"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,33 @@
1
+ "use client"
2
+
3
+ /**
4
+ * useAppStore — global client state, persisted to localStorage via Zustand.
5
+ *
6
+ * `skipHydration: true` ensures the server and initial client renders both
7
+ * use the default ("exxat-one"), preventing any SSR/CSR hydration mismatch.
8
+ * The store is manually rehydrated in ProductProvider after mount.
9
+ */
10
+
11
+ import { create } from "zustand"
12
+ import { persist } from "zustand/middleware"
13
+
14
+ export type Product = "exxat-one" | "exxat-prism"
15
+
16
+ interface AppState {
17
+ /** Currently active product — drives theme class and sidebar logo */
18
+ product: Product
19
+ setProduct: (product: Product) => void
20
+ }
21
+
22
+ export const useAppStore = create<AppState>()(
23
+ persist(
24
+ (set) => ({
25
+ product: "exxat-one",
26
+ setProduct: (product) => set({ product }),
27
+ }),
28
+ {
29
+ name: "exxat-app",
30
+ skipHydration: true,
31
+ }
32
+ )
33
+ )
@@ -0,0 +1 @@
1
+ import "@testing-library/jest-dom/vitest"
@@ -0,0 +1,35 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2017",
4
+ "lib": ["dom", "dom.iterable", "esnext"],
5
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
+ "strict": true,
8
+ "noEmit": true,
9
+ "esModuleInterop": true,
10
+ "module": "esnext",
11
+ "moduleResolution": "bundler",
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "allowImportingTsExtensions": true,
15
+ "jsx": "react-jsx",
16
+ "incremental": true,
17
+ "plugins": [
18
+ {
19
+ "name": "next"
20
+ }
21
+ ],
22
+ "baseUrl": ".",
23
+ "paths": {
24
+ "@/*": ["./*"]
25
+ }
26
+ },
27
+ "include": [
28
+ "next-env.d.ts",
29
+ "**/*.ts",
30
+ "**/*.tsx",
31
+ ".next/types/**/*.ts",
32
+ ".next/dev/types/**/*.ts"
33
+ ],
34
+ "exclude": ["node_modules"]
35
+ }
@@ -0,0 +1,19 @@
1
+ declare module "react-payment-inputs" {
2
+ import type * as React from "react"
3
+
4
+ export type PaymentInputsReturn = {
5
+ meta: { cardType?: string }
6
+ getCardNumberProps: () => React.InputHTMLAttributes<HTMLInputElement>
7
+ getExpiryDateProps: () => React.InputHTMLAttributes<HTMLInputElement>
8
+ getCVCProps: () => React.InputHTMLAttributes<HTMLInputElement>
9
+ getCardImageProps: (opts: { images: unknown }) => React.SVGProps<SVGSVGElement>
10
+ }
11
+
12
+ export function usePaymentInputs(): PaymentInputsReturn
13
+ }
14
+
15
+ declare module "react-payment-inputs/images" {
16
+ export type CardImages = unknown
17
+ const images: unknown
18
+ export default images
19
+ }
@@ -0,0 +1,18 @@
1
+ import path from "node:path"
2
+ import { defineConfig } from "vitest/config"
3
+ import react from "@vitejs/plugin-react"
4
+
5
+ export default defineConfig({
6
+ plugins: [react()],
7
+ test: {
8
+ environment: "jsdom",
9
+ setupFiles: ["./tests/setup.ts"],
10
+ include: ["**/*.{test,spec}.{ts,tsx}"],
11
+ exclude: ["node_modules", ".next", "out", "build"],
12
+ },
13
+ resolve: {
14
+ alias: {
15
+ "@": path.resolve(__dirname, "./"),
16
+ },
17
+ },
18
+ })