@thecb/components 12.0.0-beta.0 → 12.0.0-beta.2

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 (421) hide show
  1. package/README.md +33 -11
  2. package/ai-docs/architecture.md +71 -0
  3. package/ai-docs/components.md +167 -0
  4. package/ai-docs/conventions.md +162 -0
  5. package/ai-docs/figma-mcp.md +66 -0
  6. package/ai-docs/integration-guidelines.md +142 -0
  7. package/dist/index.cjs.js +27805 -25779
  8. package/dist/index.cjs.js.map +1 -1
  9. package/dist/index.d.ts +286 -12
  10. package/dist/index.esm.js +26589 -24593
  11. package/dist/index.esm.js.map +1 -1
  12. package/package.json +17 -8
  13. package/src/components/atoms/alert/Alert.js +10 -1
  14. package/src/components/atoms/alert/Alert.mdx +19 -0
  15. package/src/components/atoms/alert/Alert.stories.js +150 -0
  16. package/src/components/atoms/badge/Badge.js +39 -25
  17. package/src/components/atoms/badge/Badge.mdx +27 -0
  18. package/src/components/atoms/badge/Badge.stories.js +168 -0
  19. package/src/components/atoms/badge/Badge.theme.js +49 -1
  20. package/src/components/atoms/badge/index.d.ts +11 -0
  21. package/src/components/atoms/breadcrumb/Breadcrumb.mdx +21 -0
  22. package/src/components/atoms/breadcrumb/Breadcrumb.stories.js +47 -0
  23. package/src/components/atoms/button-with-action/ButtonWithAction.js +3 -29
  24. package/src/components/atoms/button-with-action/ButtonWithAction.stories.js +14 -1
  25. package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +97 -56
  26. package/src/components/atoms/button-with-action/index.d.ts +1 -0
  27. package/src/components/atoms/button-with-link/ButtonWithLink.mdx +21 -0
  28. package/src/components/atoms/button-with-link/ButtonWithLink.stories.js +161 -0
  29. package/src/components/atoms/card/Card.js +22 -1
  30. package/src/components/atoms/card/Card.mdx +41 -0
  31. package/src/components/atoms/card/Card.stories.js +360 -0
  32. package/src/components/atoms/card/Card.theme.js +2 -0
  33. package/src/components/atoms/card/CardText.js +39 -11
  34. package/src/components/atoms/card/index.d.ts +8 -1
  35. package/src/components/atoms/card-type/CardType.js +55 -0
  36. package/src/components/atoms/card-type/CardType.stories.js +86 -0
  37. package/src/components/atoms/card-type/index.js +3 -0
  38. package/src/components/atoms/checkbox/Checkbox.js +121 -93
  39. package/src/components/atoms/checkbox/Checkbox.mdx +15 -0
  40. package/src/components/atoms/checkbox/Checkbox.oldstories.js +17 -13
  41. package/src/components/atoms/checkbox/Checkbox.stories.js +149 -0
  42. package/src/components/atoms/checkbox/Checkbox.theme.js +6 -2
  43. package/src/components/atoms/country-dropdown/CountryDropdown.mdx +36 -0
  44. package/src/components/atoms/country-dropdown/CountryDropdown.stories.js +76 -0
  45. package/src/components/atoms/detail/Detail.js +0 -26
  46. package/src/components/atoms/detail/Detail.mdx +32 -0
  47. package/src/components/atoms/detail/Detail.stories.js +156 -0
  48. package/src/components/atoms/display-box/DisplayBox.mdx +11 -0
  49. package/src/components/atoms/display-box/DisplayBox.stories.js +69 -0
  50. package/src/components/atoms/dropdown/Dropdown.js +17 -5
  51. package/src/components/atoms/dropdown/Dropdown.mdx +65 -0
  52. package/src/components/atoms/dropdown/Dropdown.stories.js +128 -0
  53. package/src/components/atoms/dropdown/Dropdown.theme.js +6 -6
  54. package/src/components/atoms/dropdown/DropdownIcon.js +1 -0
  55. package/src/components/atoms/dropdown/DropdownIconV2.js +50 -0
  56. package/src/components/atoms/dropdown/index.d.ts +59 -0
  57. package/src/components/atoms/form-layouts/FormInput.js +105 -61
  58. package/src/components/atoms/form-layouts/FormInput.mdx +38 -0
  59. package/src/components/atoms/form-layouts/FormInput.stories.js +219 -0
  60. package/src/components/atoms/form-layouts/FormTextarea.js +207 -0
  61. package/src/components/atoms/form-layouts/FormTextarea.mdx +48 -0
  62. package/src/components/atoms/form-layouts/FormTextarea.stories.js +265 -0
  63. package/src/components/atoms/form-layouts/index.d.ts +34 -1
  64. package/src/components/atoms/form-layouts/index.js +3 -1
  65. package/src/components/atoms/form-select/FormSelect.js +5 -3
  66. package/src/components/atoms/form-select/FormSelect.mdx +42 -0
  67. package/src/components/atoms/form-select/FormSelect.stories.js +76 -0
  68. package/src/components/atoms/form-select/FormSelect.styled.js +2 -2
  69. package/src/components/atoms/form-select/FormSelect.theme.js +6 -3
  70. package/src/components/atoms/form-select/index.d.ts +3 -0
  71. package/src/components/atoms/formatted-address/FormattedAddress.mdx +13 -0
  72. package/src/components/atoms/formatted-address/FormattedAddress.stories.js +138 -0
  73. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.js +2 -2
  74. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.mdx +17 -0
  75. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.stories.js +57 -0
  76. package/src/components/atoms/formatted-bank-account/FormattedBankAccount.theme.js +2 -2
  77. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +14 -10
  78. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.mdx +40 -0
  79. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.stories.js +74 -0
  80. package/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js +2 -2
  81. package/src/components/atoms/icons/AgencyIcon.js +24 -0
  82. package/src/components/atoms/icons/AmExLargeIcon.js +54 -0
  83. package/src/components/atoms/icons/AmExSmallIcon.js +54 -0
  84. package/src/components/atoms/icons/AutopayIcon.js +9 -1
  85. package/src/components/atoms/icons/BankGenericSmallIcon.js +48 -0
  86. package/src/components/atoms/icons/CaretArrowDown.d.ts +9 -0
  87. package/src/components/atoms/icons/CaretArrowDown.js +22 -0
  88. package/src/components/atoms/icons/CaretArrowUp.d.ts +9 -0
  89. package/src/components/atoms/icons/CaretArrowUp.js +22 -0
  90. package/src/components/atoms/icons/CarrotIcon.js +2 -0
  91. package/src/components/atoms/icons/CashSmallIcon.js +21 -0
  92. package/src/components/atoms/icons/CashieringImage.d.ts +1 -0
  93. package/src/components/atoms/icons/CashieringImage.js +254 -0
  94. package/src/components/atoms/icons/CheckboxCheckmarkIcon.js +45 -0
  95. package/src/components/atoms/icons/CustomerSearchIcon.js +30 -79
  96. package/src/components/atoms/icons/DiscoverLargeIcon.js +137 -0
  97. package/src/components/atoms/icons/DiscoverSmallIcon.js +137 -0
  98. package/src/components/atoms/icons/ExternalLinkIcon.js +10 -2
  99. package/src/components/atoms/icons/GenericCardLarge.js +1 -1
  100. package/src/components/atoms/icons/GenericSmallIcon.js +27 -0
  101. package/src/components/atoms/icons/GuidedCheckoutImage.js +105 -26
  102. package/src/components/atoms/icons/IconAdd.js +2 -2
  103. package/src/components/atoms/icons/Icons.mdx +40 -0
  104. package/src/components/atoms/icons/Icons.stories.js +343 -0
  105. package/src/components/atoms/icons/KioskImage.js +223 -338
  106. package/src/components/atoms/icons/MasterCardLargeIcon.js +35 -0
  107. package/src/components/atoms/icons/MasterCardSmallIcon.js +35 -0
  108. package/src/components/atoms/icons/{NoCustomerResultsIcon.js → NoResultsIcon.js} +10 -6
  109. package/src/components/atoms/icons/NotFoundIcon.js +70 -333
  110. package/src/components/atoms/icons/OverageIcon.js +27 -0
  111. package/src/components/atoms/icons/PaydotImage.d.ts +1 -0
  112. package/src/components/atoms/icons/PaydotImage.js +46 -0
  113. package/src/components/atoms/icons/PaymentSearchIcon.js +7 -42
  114. package/src/components/atoms/icons/PaymentStatusIcon.d.ts +1 -0
  115. package/src/components/atoms/icons/PaymentStatusIcon.js +28 -0
  116. package/src/components/atoms/icons/PeriscopeFailedIcon.js +2 -2
  117. package/src/components/atoms/icons/PersonIcon.d.ts +1 -0
  118. package/src/components/atoms/icons/PersonIcon.js +28 -0
  119. package/src/components/atoms/icons/ProfileImage.js +58 -37
  120. package/src/components/atoms/icons/RevenueManagementImage.js +138 -393
  121. package/src/components/atoms/icons/ReversalNeededIcon.js +27 -0
  122. package/src/components/atoms/icons/SearchIcon.js +4 -3
  123. package/src/components/atoms/icons/ShortageIcon.js +21 -0
  124. package/src/components/atoms/icons/StandardCheckoutImage.js +105 -336
  125. package/src/components/atoms/icons/SuccessfulIconMedium.js +3 -2
  126. package/src/components/atoms/icons/VisaLargeIcon.js +40 -0
  127. package/src/components/atoms/icons/VisaSmallIcon.js +40 -0
  128. package/src/components/atoms/icons/WireSmallIcon.js +22 -0
  129. package/src/components/atoms/icons/icons.oldstories.js +47 -31
  130. package/src/components/atoms/icons/index.d.ts +4 -1
  131. package/src/components/atoms/icons/index.js +47 -7
  132. package/src/components/atoms/index.d.ts +4 -0
  133. package/src/components/atoms/index.js +3 -1
  134. package/src/components/atoms/jumbo/Jumbo.js +18 -3
  135. package/src/components/atoms/labeled-amount/LabeledAmount.mdx +23 -0
  136. package/src/components/atoms/labeled-amount/LabeledAmount.stories.js +118 -0
  137. package/src/components/atoms/layouts/Box.styled.js +34 -22
  138. package/src/components/atoms/layouts/Center.styled.js +2 -0
  139. package/src/components/atoms/layouts/Motion.js +25 -6
  140. package/src/components/atoms/layouts/Motion.styled.js +36 -0
  141. package/src/components/atoms/layouts/Stack.js +2 -0
  142. package/src/components/atoms/layouts/Stack.styled.js +2 -0
  143. package/src/components/atoms/line-item/LineItem.mdx +28 -0
  144. package/src/components/atoms/line-item/LineItem.stories.js +95 -0
  145. package/src/components/atoms/link/ExternalLink.d.ts +1 -0
  146. package/src/components/atoms/link/ExternalLink.js +37 -19
  147. package/src/components/atoms/link/ExternalLink.styled.js +2 -0
  148. package/src/components/atoms/link/InternalLink.js +11 -1
  149. package/src/components/atoms/link/InternalLink.styled.js +22 -2
  150. package/src/components/atoms/link/Link.mdx +19 -0
  151. package/src/components/atoms/link/Link.stories.js +183 -0
  152. package/src/components/atoms/loading/Loading.mdx +13 -0
  153. package/src/components/atoms/loading/Loading.stories.js +22 -0
  154. package/src/components/atoms/loading-line/LoadingLine.js +23 -11
  155. package/src/components/atoms/loading-line/LoadingLine.mdx +15 -0
  156. package/src/components/atoms/loading-line/LoadingLine.stories.js +132 -0
  157. package/src/components/atoms/loading-line/LoadingPill.styled.js +7 -6
  158. package/src/components/atoms/nav-footer/NavFooter.mdx +15 -0
  159. package/src/components/atoms/nav-footer/NavFooter.stories.js +244 -0
  160. package/src/components/atoms/nav-header/NavHeader.mdx +13 -0
  161. package/src/components/atoms/nav-header/NavHeader.stories.js +130 -0
  162. package/src/components/atoms/nav-tabs/NavTabs.mdx +30 -0
  163. package/src/components/atoms/nav-tabs/NavTabs.stories.js +49 -0
  164. package/src/components/atoms/password-requirements/PasswordRequirements.js +3 -3
  165. package/src/components/atoms/password-requirements/PasswordRequirements.mdx +39 -0
  166. package/src/components/atoms/password-requirements/PasswordRequirements.stories.js +139 -0
  167. package/src/components/atoms/placeholder/Placeholder.mdx +19 -0
  168. package/src/components/atoms/placeholder/Placeholder.stories.js +170 -0
  169. package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.js +13 -7
  170. package/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.theme.js +9 -3
  171. package/src/components/atoms/search/Search.js +123 -0
  172. package/src/components/atoms/search/Search.oldstories.js +58 -0
  173. package/src/components/atoms/search/Search.theme.js +9 -0
  174. package/src/components/atoms/search/index.d.ts +27 -0
  175. package/src/components/atoms/search/index.js +3 -0
  176. package/src/components/atoms/searchable-select/SearchableSelect.mdx +44 -0
  177. package/src/components/atoms/searchable-select/SearchableSelect.stories.js +137 -0
  178. package/src/components/atoms/sortable-table-heading/SortableTableHeading.js +47 -0
  179. package/src/components/atoms/sortable-table-heading/SortableTableHeading.oldstories.js +19 -0
  180. package/src/components/atoms/sortable-table-heading/SortableTableHeading.theme.js +9 -0
  181. package/src/components/atoms/sortable-table-heading/index.d.ts +15 -0
  182. package/src/components/atoms/sortable-table-heading/index.js +3 -0
  183. package/src/components/atoms/spinner/Spinner.js +2 -1
  184. package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.mdx +36 -0
  185. package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +78 -0
  186. package/src/components/atoms/state-province-dropdown/options.js +4 -1
  187. package/src/components/atoms/tab/Tab.js +2 -2
  188. package/src/components/atoms/table/Table.mdx +71 -0
  189. package/src/components/atoms/table/Table.oldstories.js +84 -0
  190. package/src/components/atoms/table/Table.stories.js +65 -0
  191. package/src/components/atoms/table/TableRow.js +1 -0
  192. package/src/components/atoms/title/Title.js +0 -23
  193. package/src/components/atoms/title/Title.mdx +26 -0
  194. package/src/components/atoms/title/Title.stories.js +144 -0
  195. package/src/components/atoms/title/Title.theme.js +3 -0
  196. package/src/components/atoms/toggle-switch/ToggleSwitch.js +66 -48
  197. package/src/components/atoms/toggle-switch/ToggleSwitch.mdx +17 -0
  198. package/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +111 -0
  199. package/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +8 -5
  200. package/src/components/atoms/typeahead-input/TypeaheadInput.mdx +13 -0
  201. package/src/components/atoms/typeahead-input/TypeaheadInput.stories.js +63 -0
  202. package/src/components/atoms/wallet-name/WalletName.js +6 -4
  203. package/src/components/atoms/wallet-name/WalletName.oldstories.js +26 -1
  204. package/src/components/atoms/wallet-name/index.d.ts +2 -0
  205. package/src/components/molecules/address-form/AddressForm.mdx +18 -0
  206. package/src/components/molecules/address-form/AddressForm.stories.js +224 -0
  207. package/src/components/molecules/banner/Banner.mdx +23 -0
  208. package/src/components/molecules/banner/Banner.stories.js +125 -0
  209. package/src/components/molecules/change-password-form/ChangePasswordForm.mdx +15 -0
  210. package/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +206 -0
  211. package/src/components/molecules/collapsible-section/CollapsibleSection.js +1 -1
  212. package/src/components/molecules/collapsible-section/CollapsibleSection.mdx +15 -0
  213. package/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +217 -0
  214. package/src/components/molecules/collapsible-section/index.d.ts +2 -2
  215. package/src/components/molecules/contact-card/ContactCard.js +157 -0
  216. package/src/components/molecules/contact-card/ContactCard.stories.js +80 -0
  217. package/src/components/molecules/contact-card/ContactCard.styled.js +44 -0
  218. package/src/components/molecules/contact-card/index.d.ts +16 -0
  219. package/src/components/molecules/contact-card/index.js +3 -0
  220. package/src/components/molecules/edit-name-form/EditNameForm.mdx +13 -0
  221. package/src/components/molecules/edit-name-form/EditNameForm.stories.js +117 -0
  222. package/src/components/molecules/editable-list/EditableList.js +6 -1
  223. package/src/components/molecules/email-form/EmailForm.js +9 -1
  224. package/src/components/molecules/email-form/EmailForm.state.js +1 -1
  225. package/src/components/molecules/email-form/EmailForm.stories.js +210 -0
  226. package/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +2 -1
  227. package/src/components/molecules/hero-image/HeroImage.js +135 -0
  228. package/src/components/molecules/hero-image/HeroImage.mdx +15 -0
  229. package/src/components/molecules/hero-image/HeroImage.stories.js +149 -0
  230. package/src/components/molecules/hero-image/HeroImage.styled.js +83 -0
  231. package/src/components/molecules/hero-image/HeroImage.theme.js +109 -0
  232. package/src/components/molecules/hero-image/index.js +3 -0
  233. package/src/components/molecules/idle-modal/IdleModal.js +101 -0
  234. package/src/components/molecules/idle-modal/IdleModal.mdx +17 -0
  235. package/src/components/molecules/idle-modal/IdleModal.stories.js +180 -0
  236. package/src/components/molecules/idle-modal/index.d.ts +16 -0
  237. package/src/components/molecules/idle-modal/index.js +3 -0
  238. package/src/components/molecules/index.d.ts +1 -0
  239. package/src/components/molecules/index.js +7 -0
  240. package/src/components/molecules/link-card/LinkCard.js +31 -20
  241. package/src/components/molecules/link-card/LinkCard.mdx +17 -0
  242. package/src/components/molecules/link-card/LinkCard.stories.js +528 -0
  243. package/src/components/molecules/link-card/LinkCard.styled.js +28 -21
  244. package/src/components/molecules/link-card/LinkCard.theme.js +6 -4
  245. package/src/components/molecules/link-card/index.d.ts +3 -1
  246. package/src/components/molecules/login-form/LoginForm.js +2 -1
  247. package/src/components/molecules/login-form/LoginForm.mdx +16 -0
  248. package/src/components/molecules/login-form/LoginForm.stories.js +120 -0
  249. package/src/components/molecules/modal/Modal.mdx +17 -0
  250. package/src/components/molecules/modal/Modal.stories.js +362 -0
  251. package/src/components/molecules/modal/ModalControlV1.js +3 -0
  252. package/src/components/molecules/modal/ModalControlV2.js +2 -0
  253. package/src/components/molecules/modal/__private__/CloseButton.js +2 -1
  254. package/src/components/molecules/module/Module.mdx +17 -0
  255. package/src/components/molecules/module/Module.stories.js +273 -0
  256. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.js +229 -0
  257. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.oldstories.js +74 -0
  258. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.styled.js +65 -0
  259. package/src/components/molecules/multiple-select-filter/MultipleSelectFilter.theme.js +13 -0
  260. package/src/components/molecules/multiple-select-filter/__private__/ActionLinkButton.js +27 -0
  261. package/src/components/molecules/multiple-select-filter/__private__/FilterButton.js +97 -0
  262. package/src/components/molecules/multiple-select-filter/__private__/FilterDropdown.js +27 -0
  263. package/src/components/molecules/multiple-select-filter/__private__/FilterableList.js +146 -0
  264. package/src/components/molecules/multiple-select-filter/__private__/FilterableListItem.js +78 -0
  265. package/src/components/molecules/multiple-select-filter/__private__/SearchBox.js +41 -0
  266. package/src/components/molecules/multiple-select-filter/__private__/useKeyboardNavigation.js +84 -0
  267. package/src/components/molecules/multiple-select-filter/__private__/util.js +44 -0
  268. package/src/components/molecules/multiple-select-filter/index.d.ts +34 -0
  269. package/src/components/molecules/multiple-select-filter/index.js +3 -0
  270. package/src/components/molecules/nav-menu/NavMenuMobile.js +27 -29
  271. package/src/components/molecules/nav-menu/NavMenuMobile.mdx +21 -0
  272. package/src/components/molecules/nav-menu/NavMenuMobile.stories.js +100 -0
  273. package/src/components/molecules/obligation/Obligation.js +141 -3
  274. package/src/components/molecules/obligation/Obligation.mdx +23 -0
  275. package/src/components/molecules/obligation/Obligation.stories.js +642 -0
  276. package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +2 -2
  277. package/src/components/molecules/obligation/icons/PropertyCarIcon.js +2 -2
  278. package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +2 -2
  279. package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +2 -2
  280. package/src/components/molecules/obligation/icons/PropertyLandIcon.js +2 -2
  281. package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +2 -2
  282. package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +2 -2
  283. package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +2 -2
  284. package/src/components/molecules/obligation/modules/AmountModule.js +64 -38
  285. package/src/components/molecules/obligation/modules/AutopayModalModule.js +37 -12
  286. package/src/components/molecules/obligation/modules/InactiveControlsModule.js +56 -12
  287. package/src/components/molecules/obligation/modules/InactiveTitleModule.js +1 -1
  288. package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +42 -10
  289. package/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +4 -1
  290. package/src/components/molecules/pagination/Pagination.mdx +15 -0
  291. package/src/components/molecules/pagination/Pagination.stories.js +181 -0
  292. package/src/components/molecules/partial-amount-form/PartialAmountField.js +68 -29
  293. package/src/components/molecules/partial-amount-form/PartialAmountField.theme.js +7 -0
  294. package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +15 -8
  295. package/src/components/molecules/payment-details/PaymentDetails.js +1 -2
  296. package/src/components/molecules/payment-details/PaymentDetails.oldstories.js +0 -1
  297. package/src/components/molecules/payment-form-ach/PaymentFormACH.js +2 -0
  298. package/src/components/molecules/payment-form-ach/PaymentFormACH.state.js +2 -2
  299. package/src/components/molecules/payment-form-card/PaymentFormCard.js +6 -2
  300. package/src/components/molecules/payment-form-card/PaymentFormCard.state.js +2 -1
  301. package/src/components/molecules/phone-form/PhoneForm.js +7 -1
  302. package/src/components/molecules/phone-form/PhoneForm.state.js +1 -1
  303. package/src/components/molecules/popover/Popover.js +1 -15
  304. package/src/components/molecules/popover/Popover.mdx +15 -0
  305. package/src/components/molecules/popover/Popover.stories.js +220 -0
  306. package/src/components/molecules/radio-group/RadioGroup.js +8 -3
  307. package/src/components/molecules/radio-group/index.d.ts +1 -0
  308. package/src/components/molecules/radio-section/InnerRadioSection.js +3 -3
  309. package/src/components/molecules/radio-section/RadioSection.js +87 -44
  310. package/src/components/molecules/radio-section/RadioSection.stories.js +142 -0
  311. package/src/components/molecules/radio-section/radio-button/RadioButton.js +9 -5
  312. package/src/components/molecules/registration-banner/RegistrationBanner.js +115 -0
  313. package/src/components/molecules/registration-banner/RegistrationBanner.mdx +15 -0
  314. package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +80 -0
  315. package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +46 -0
  316. package/src/components/molecules/registration-banner/RegistrationBanner.theme.js +6 -0
  317. package/src/components/molecules/registration-banner/index.d.ts +15 -0
  318. package/src/components/molecules/registration-banner/index.js +3 -0
  319. package/src/components/molecules/registration-form/RegistrationForm.js +2 -1
  320. package/src/components/molecules/tab-sidebar/TabSidebar.js +5 -3
  321. package/src/components/molecules/tabs/Tabs.js +25 -9
  322. package/src/components/molecules/tabs/Tabs.mdx +17 -0
  323. package/src/components/molecules/tabs/Tabs.stories.js +149 -0
  324. package/src/components/molecules/tabs/index.d.ts +21 -0
  325. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +1 -1
  326. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +110 -0
  327. package/src/components/molecules/toast-notification/Toast.mdx +15 -0
  328. package/src/components/molecules/toast-notification/Toast.stories.js +183 -0
  329. package/src/components/molecules/toast-notification/ToastNotification.js +74 -43
  330. package/src/components/molecules/tooltip/Tooltip.js +269 -0
  331. package/src/components/molecules/tooltip/Tooltip.mdx +25 -0
  332. package/src/components/molecules/tooltip/Tooltip.stories.js +287 -0
  333. package/src/components/molecules/tooltip/Tooltip.theme.js +18 -0
  334. package/src/components/molecules/tooltip/index.d.ts +34 -0
  335. package/src/components/molecules/tooltip/index.js +3 -0
  336. package/src/components/molecules/turnstile-widget/TurnstileWidget.js +183 -0
  337. package/src/components/molecules/turnstile-widget/index.js +3 -0
  338. package/src/components/templates/sidebar-stack-content/SidebarStackContent.js +1 -1
  339. package/src/constants/colors.d.ts +4 -0
  340. package/src/constants/colors.js +8 -1
  341. package/src/constants/regex_constants.js +1 -1
  342. package/src/constants/style_constants.js +13 -0
  343. package/src/deprecated/spinner/Spinner.js +8 -20
  344. package/src/hooks/index.js +2 -0
  345. package/src/hooks/use-conditionally-add-validator/index.js +20 -0
  346. package/src/hooks/use-outside-click/index.js +4 -5
  347. package/src/hooks/use-turnstile-script/index.js +49 -0
  348. package/src/util/formats.js +6 -3
  349. package/src/util/general.js +67 -4
  350. package/src/util/idleTimerUtils.js +36 -0
  351. package/src/util/index.js +3 -1
  352. package/src/util/themeUtils.js +24 -14
  353. package/src/.DS_Store +0 -0
  354. package/src/components/.DS_Store +0 -0
  355. package/src/components/atoms/alert/Alert.oldstories.js +0 -28
  356. package/src/components/atoms/badge/Badge.oldstories.js +0 -33
  357. package/src/components/atoms/breadcrumb/Breadcrumb.oldstories.js +0 -38
  358. package/src/components/atoms/button-with-action/ButtonWithAction.oldstories.js +0 -56
  359. package/src/components/atoms/button-with-link/ButtonWithLink.oldstories.js +0 -32
  360. package/src/components/atoms/country-dropdown/CountryDropdown.oldstories.js +0 -42
  361. package/src/components/atoms/display-box/DisplayBox.oldstories.js +0 -25
  362. package/src/components/atoms/display-card/DisplayCard.js +0 -88
  363. package/src/components/atoms/display-card/DisplayCard.oldstories.js +0 -24
  364. package/src/components/atoms/display-card/index.js +0 -3
  365. package/src/components/atoms/dropdown/Dropdown.oldstories.js +0 -47
  366. package/src/components/atoms/form-select/FormSelect.oldstories.js +0 -50
  367. package/src/components/atoms/formatted-address/FormattedAddress.oldstories.js +0 -32
  368. package/src/components/atoms/icons/NoPaymentResultsIcon.js +0 -54
  369. package/src/components/atoms/icons/PointOfSaleImage.d.ts +0 -1
  370. package/src/components/atoms/icons/PointOfSaleImage.js +0 -439
  371. package/src/components/atoms/labeled-amount/LabeledAmount.oldstories.js +0 -42
  372. package/src/components/atoms/line-item/LineItem.oldstories.js +0 -28
  373. package/src/components/atoms/link/Link.oldstories.js +0 -57
  374. package/src/components/atoms/loading-line/LoadingLine.oldstories.js +0 -28
  375. package/src/components/atoms/nav-footer/NavFooter.oldstories.js +0 -31
  376. package/src/components/atoms/nav-header/NavHeader.oldstories.js +0 -29
  377. package/src/components/atoms/password-requirements/PasswordRequirements.oldstories.js +0 -75
  378. package/src/components/atoms/placeholder/Placeholder.oldstories.js +0 -42
  379. package/src/components/atoms/searchable-select/SearchableSelect.oldstories.js +0 -62
  380. package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.oldstories.js +0 -53
  381. package/src/components/atoms/toggle-switch/ToggleSwitch.oldstories.js +0 -28
  382. package/src/components/molecules/.DS_Store +0 -0
  383. package/src/components/molecules/address-form/AddressForm.oldstories.js +0 -21
  384. package/src/components/molecules/banner/Banner.oldstories.js +0 -29
  385. package/src/components/molecules/change-password-form/ChangePasswordForm.oldstories.js +0 -22
  386. package/src/components/molecules/collapsible-section/CollapsibleSection.oldstories.js +0 -68
  387. package/src/components/molecules/edit-name-form/EdidNameForm.oldstories.js +0 -24
  388. package/src/components/molecules/link-card/LinkCard.oldstories.js +0 -87
  389. package/src/components/molecules/login-form/LoginForm.oldstories.js +0 -24
  390. package/src/components/molecules/modal/Modal.oldstories.js +0 -139
  391. package/src/components/molecules/module/Module.oldstories.js +0 -31
  392. package/src/components/molecules/obligation/.DS_Store +0 -0
  393. package/src/components/molecules/pagination/Pagination.oldstories.js +0 -32
  394. package/src/components/molecules/tabs/Tabs.oldstories.js +0 -241
  395. package/src/components/molecules/toast-notification/ToastNotification.oldstories.js +0 -105
  396. package/src/stories/Button.stories.ts +0 -53
  397. package/src/stories/Button.tsx +0 -48
  398. package/src/stories/Configure.mdx +0 -364
  399. package/src/stories/Header.stories.ts +0 -33
  400. package/src/stories/Header.tsx +0 -56
  401. package/src/stories/Page.stories.ts +0 -32
  402. package/src/stories/Page.tsx +0 -73
  403. package/src/stories/assets/accessibility.png +0 -0
  404. package/src/stories/assets/accessibility.svg +0 -5
  405. package/src/stories/assets/addon-library.png +0 -0
  406. package/src/stories/assets/assets.png +0 -0
  407. package/src/stories/assets/avif-test-image.avif +0 -0
  408. package/src/stories/assets/context.png +0 -0
  409. package/src/stories/assets/discord.svg +0 -15
  410. package/src/stories/assets/docs.png +0 -0
  411. package/src/stories/assets/figma-plugin.png +0 -0
  412. package/src/stories/assets/github.svg +0 -3
  413. package/src/stories/assets/share.png +0 -0
  414. package/src/stories/assets/styling.png +0 -0
  415. package/src/stories/assets/testing.png +0 -0
  416. package/src/stories/assets/theming.png +0 -0
  417. package/src/stories/assets/tutorials.svg +0 -12
  418. package/src/stories/assets/youtube.svg +0 -4
  419. package/src/stories/button.css +0 -30
  420. package/src/stories/header.css +0 -32
  421. package/src/stories/page.css +0 -69
@@ -1,6 +1,10 @@
1
1
  import React from "react";
2
+ import { SEA_GREEN, HINT_GREEN } from "../../../constants/colors";
2
3
 
3
- const PaymentSearchIcon = () => {
4
+ const PaymentSearchIcon = ({
5
+ fillPrimary = SEA_GREEN,
6
+ fillSecondary = HINT_GREEN
7
+ }) => {
4
8
  return (
5
9
  <svg
6
10
  xmlns="http://www.w3.org/2000/svg"
@@ -9,39 +13,6 @@ const PaymentSearchIcon = () => {
9
13
  height="209"
10
14
  viewBox="0 0 366 209"
11
15
  >
12
- <defs>
13
- <rect
14
- id="payment-search-path-1"
15
- width="64"
16
- height="64"
17
- x="39"
18
- y="40"
19
- rx="6"
20
- ></rect>
21
- <filter
22
- id="payment-search-filter-2"
23
- width="178.1%"
24
- height="178.1%"
25
- x="-39.1%"
26
- y="-35.9%"
27
- filterUnits="objectBoundingBox"
28
- >
29
- <feOffset
30
- dy="2"
31
- in="SourceAlpha"
32
- result="shadowOffsetOuter1"
33
- ></feOffset>
34
- <feGaussianBlur
35
- in="shadowOffsetOuter1"
36
- result="shadowBlurOuter1"
37
- stdDeviation="8"
38
- ></feGaussianBlur>
39
- <feColorMatrix
40
- in="shadowBlurOuter1"
41
- values="0 0 0 0 0.192156863 0 0 0 0 0.490196078 0 0 0 0 0.309803922 0 0 0 0.5 0"
42
- ></feColorMatrix>
43
- </filter>
44
- </defs>
45
16
  <g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
46
17
  <g transform="translate(-537 -466)">
47
18
  <g transform="translate(132 332)">
@@ -68,18 +39,12 @@ const PaymentSearchIcon = () => {
68
39
  fillRule="nonzero"
69
40
  d="M216 58c4.207 0 7.903 2.689 9.348 6.641a2.5 2.5 0 01-4.635 1.87l-.061-.152c-.737-2.016-2.583-3.359-4.651-3.359-1.995 0-3.784 1.25-4.57 3.145l-.083.214a2.5 2.5 0 01-4.696-1.718c1.445-3.952 5.142-6.641 9.349-6.641z"
70
41
  ></path>
71
- <use
72
- fill="#000"
73
- fillOpacity="1"
74
- filter="url(#payment-search-filter-2)"
75
- xlinkHref="#payment-search-path-1"
76
- ></use>
77
42
  <path
78
- fill="#E8FFEF"
43
+ fill={fillSecondary}
79
44
  d="M185 185c28.719 0 52 5.373 52 12s-23.281 12-52 12c-28.718 0-52-5.373-52-12s23.282-12 52-12zM97 44a2 2 0 012 2v52a2 2 0 01-2 2H45a2 2 0 01-2-2V46a2 2 0 012-2h52zM74.134 56h-5.268c-.441 0-.806.304-.86.696l-.006.1v2.456c-4.391.845-7.029 3.74-7.144 7.532l-.004.26v.072c0 5.135 4.208 6.644 9.66 7.865 3.408.801 4.302 1.333 4.351 2.348l.002.093v.073c0 1.077-1.025 1.723-2.963 1.723-2.717 0-5.28-.875-7.66-2.542a.896.896 0 00-1.112.082l-.078.081-2.845 3.336a.84.84 0 00.11 1.21c2.061 1.596 4.522 2.668 7.182 3.207l.5.095.001 2.581c0 .37.3.677.688.725l.108.007h5.407c.403 0 .737-.275.79-.632l.007-.1v-2.602c4.212-.902 6.88-3.587 6.996-7.58l.004-.273v-.072c0-4.705-3.659-6.572-9.513-7.83-3.483-.767-4.411-1.263-4.462-2.344l-.002-.097v-.072c0-.934.842-1.616 2.562-1.616 2.041 0 4.32.669 6.462 2.007a.9.9 0 001.13-.126l.073-.089 2.566-3.556a.841.841 0 00-.185-1.18 14.999 14.999 0 00-5.178-2.318l-.451-.103-.002-2.62c0-.44-.388-.797-.866-.797z"
80
45
  ></path>
81
46
  <path
82
- fill="#317D4F"
47
+ fill={fillPrimary}
83
48
  fillRule="nonzero"
84
49
  d="M182 176v20a4 4 0 01-3.8 3.995l-.2.005h-14a4 4 0 01-.2-7.995l.2-.005h10v-16h8zm14 0v16h10a4 4 0 013.995 3.8l.005.2a4 4 0 01-3.8 3.995l-.2.005h-14a4 4 0 01-3.995-3.8L188 196v-20h8zM69 128.5v9l-7.875 4.429 32.876 6.953c1.81-4.055 5.877-6.882 10.604-6.882a4 4 0 01.2 7.995l-.2.005a3.605 3.605 0 00-3.605 3.593v.035-.023a3.606 3.606 0 003.414 3.601l.191.005h6.644a4 4 0 01.2 7.995l-.2.005h-6.644c-5.246 0-9.679-3.48-11.115-8.259l-44.708-9.457c-3.58-.757-4.322-5.493-1.242-7.336l.175-.1L69 128.5zM263.644 96c6.184 0 11.24 4.838 11.586 10.936l38.713 7.13c3.304.609 4.407 4.749 1.927 6.93l-.15.125L301 133v-10.5l2.891-2.151-31.014-5.712a11.586 11.586 0 01-8.881 4.569l-.352.005H257l-.2-.005a4 4 0 010-7.99l.2-.005h6.644l.191-.005a3.606 3.606 0 003.414-3.601c0-1.99-.358-3.259-2.403-5.238a361.04 361.04 0 00-4.65-4.395A3.998 3.998 0 01263.644 96zM97 40a6 6 0 016 6v52a6 6 0 01-6 6H45a6 6 0 01-6-6V46a6 6 0 016-6h52zm0 4H45a2 2 0 00-1.995 1.85L43 46v52a2 2 0 001.85 1.995L45 100h52a2 2 0 001.995-1.85L99 98V46a2 2 0 00-1.85-1.995L97 44zM74.134 56c.478 0 .866.356.866.796l.002 2.621c2.128.452 3.983 1.265 5.629 2.42.383.27.457.804.185 1.181l-2.566 3.556c-.275.382-.801.466-1.203.215-2.142-1.338-4.42-2.007-6.462-2.007-1.72 0-2.562.682-2.562 1.616v.072c0 1.15.879 1.652 4.464 2.442C78.341 70.169 82 72.036 82 76.742v.07c0 4.144-2.692 6.932-7 7.854v2.602c0 .404-.357.732-.797.732h-5.407c-.44 0-.796-.328-.796-.732v-2.581c-2.852-.502-5.493-1.606-7.684-3.302a.84.84 0 01-.11-1.21l2.846-3.336a.898.898 0 011.19-.163c2.38 1.667 4.943 2.542 7.66 2.542 1.938 0 2.963-.646 2.963-1.723v-.073c0-1.076-.841-1.615-4.353-2.44-5.452-1.222-9.66-2.73-9.66-7.866v-.072c0-3.92 2.657-6.928 7.148-7.792v-2.456c0-.44.388-.796.866-.796h5.268z"
85
50
  ></path>
@@ -0,0 +1 @@
1
+ export const PaymentStatusIcon: JSX.Element;
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+ import { CHARADE_GREY } from "../../../constants/colors";
3
+
4
+ const PaymentStatusIcon = ({
5
+ width = "20",
6
+ height = "21",
7
+ color = CHARADE_GREY,
8
+ ...props
9
+ }) => {
10
+ return (
11
+ <svg
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ width={width}
14
+ height={height}
15
+ viewBox={`0 0 ${width} ${height}`}
16
+ fill="none"
17
+ {...props}
18
+ >
19
+ <path
20
+ fillRule="evenodd"
21
+ clipRule="evenodd"
22
+ d="M10.875 4.375C10.875 3.89175 11.2668 3.5 11.75 3.5H16.125C16.6082 3.5 17 3.89175 17 4.375V8.75C17 9.23325 16.6082 9.625 16.125 9.625H15.25V15.75C15.25 16.7165 14.4665 17.5 13.5 17.5H4.75C3.7835 17.5 3 16.7165 3 15.75V7C3 6.0335 3.7835 5.25 4.75 5.25H10.875V4.375ZM10.875 8.75V6.5625H4.75C4.50838 6.5625 4.3125 6.75838 4.3125 7V15.75C4.3125 15.9916 4.50838 16.1875 4.75 16.1875H13.5C13.7416 16.1875 13.9375 15.9916 13.9375 15.75V9.625H11.75C11.2668 9.625 10.875 9.23325 10.875 8.75ZM13.9375 7.875C14.6624 7.875 15.25 7.28737 15.25 6.5625C15.25 5.83763 14.6624 5.25 13.9375 5.25C13.2126 5.25 12.625 5.83763 12.625 6.5625C12.625 7.28737 13.2126 7.875 13.9375 7.875Z"
23
+ fill={color}
24
+ />
25
+ </svg>
26
+ );
27
+ };
28
+ export default PaymentStatusIcon;
@@ -131,7 +131,7 @@ const PeriscopeFailedIcon = () => {
131
131
  <g transform="translate(132 195)">
132
132
  <g transform="translate(288 64)">
133
133
  <path
134
- fill="#15749D"
134
+ fill="#281978"
135
135
  fillOpacity="0.3"
136
136
  d="M302.247 310.746c36.612 0 66.292 6.549 66.292 14.627S338.86 340 302.247 340c-36.613 0-66.292-6.55-66.292-14.627 0-8.078 29.68-14.627 66.292-14.627zM65.904 208.318c6.071 0 11.057 4.655 11.608 10.6a6.983 6.983 0 014.09-1.321c3.885 0 7.034 3.159 7.034 7.055 0 3.818-3.022 6.926-6.798 7.051l-.237.004H49.756c-4.548 0-8.234-3.696-8.234-8.256 0-4.56 3.686-8.257 8.234-8.257 1.848 0 3.549.618 4.923 1.65 1.378-4.919 5.88-8.526 11.225-8.526zm195.894-57.546c16.134 0 29.213 13.097 29.213 29.254 0 16.157-13.08 29.254-29.213 29.254-16.134 0-29.214-13.097-29.214-29.254 0-16.157 13.08-29.254 29.214-29.254zm80.899 0c16.134 0 29.213 13.097 29.213 29.254 0 16.157-13.08 29.254-29.213 29.254-16.135 0-29.214-13.097-29.214-29.254 0-16.157 13.08-29.254 29.214-29.254zm-80.899 22.503c-5.514 0-10.317 3.673-12.173 9.018a3.377 3.377 0 002.077 4.297 3.37 3.37 0 004.29-2.08l.16-.42c1.027-2.474 3.233-4.064 5.646-4.064 2.547 0 4.863 1.771 5.805 4.484l.12.302a3.37 3.37 0 004.17 1.778 3.377 3.377 0 002.077-4.297c-1.855-5.345-6.658-9.018-12.172-9.018zm80.9 0c-5.515 0-10.318 3.673-12.174 9.018a3.377 3.377 0 002.077 4.297 3.37 3.37 0 004.29-2.08l.16-.42c1.027-2.474 3.233-4.064 5.646-4.064 2.547 0 4.863 1.771 5.805 4.484l.12.302a3.37 3.37 0 004.17 1.778 3.377 3.377 0 002.077-4.297c-1.855-5.345-6.659-9.018-12.172-9.018zM519.99 12.426c12.578 0 22.908 9.642 24.048 21.958a14.473 14.473 0 018.471-2.737c8.049 0 14.575 6.544 14.575 14.617 0 7.966-6.358 14.445-14.262 14.612l-.313.003H486.54c-9.42 0-17.057-7.658-17.057-17.106 0-9.446 7.637-17.104 17.057-17.104 3.83 0 7.352 1.281 10.2 3.418 2.855-10.189 12.179-17.66 23.252-17.66zM170.591 0c6.61 0 12.239 4.15 14.476 9.99a6.571 6.571 0 011.792-.252c2.114 0 3.994.996 5.208 2.543a9.767 9.767 0 014.028-.872c5.431 0 9.833 4.414 9.833 9.86 0 5.354-4.254 9.712-9.557 9.858l-.276.004h-42.442c-5.43 0-9.833-4.415-9.833-9.861 0-5.447 4.403-9.861 9.833-9.861.666 0 1.315.068 1.942.194C157.345 4.93 163.386 0 170.59 0z"
137
137
  ></path>
@@ -154,7 +154,7 @@ const PeriscopeFailedIcon = () => {
154
154
  filter="url(#periscope-failed-filter-2)"
155
155
  xlinkHref="#periscope-failed-path-1"
156
156
  ></use>
157
- <use fill="#15749D" xlinkHref="#periscope-failed-path-1"></use>
157
+ <use fill="#281978" xlinkHref="#periscope-failed-path-1"></use>
158
158
  </g>
159
159
  <g transform="translate(0 96.764)">
160
160
  <g>
@@ -0,0 +1 @@
1
+ export const PersonIcon: JSX.Element;
@@ -0,0 +1,28 @@
1
+ import React from "react";
2
+ import { CHARADE_GREY } from "../../../constants/colors";
3
+
4
+ const PersonIcon = ({
5
+ width = "20",
6
+ height = "21",
7
+ color = CHARADE_GREY,
8
+ ...props
9
+ }) => {
10
+ return (
11
+ <svg
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ width={width}
14
+ height={height}
15
+ viewBox={`0 0 ${width} ${height}`}
16
+ fill="none"
17
+ {...props}
18
+ >
19
+ <path
20
+ fillRule="evenodd"
21
+ clipRule="evenodd"
22
+ d="M15.25 4.8125H4.75C4.50838 4.8125 4.3125 5.00838 4.3125 5.25V15.75C4.3125 15.9916 4.50838 16.1875 4.75 16.1875H5.625V14.7778C5.625 12.8985 7.02411 11.375 8.75 11.375H11.25C12.9759 11.375 14.375 12.8985 14.375 14.7778V16.1875H15.25C15.4916 16.1875 15.6875 15.9916 15.6875 15.75V5.25C15.6875 5.00838 15.4916 4.8125 15.25 4.8125ZM4.75 17.5H5.625H14.375H15.25C16.2165 17.5 17 16.7165 17 15.75V5.25C17 4.2835 16.2165 3.5 15.25 3.5H4.75C3.7835 3.5 3 4.2835 3 5.25V15.75C3 16.7165 3.7835 17.5 4.75 17.5ZM10 10.5C11.2081 10.5 12.1875 9.52062 12.1875 8.3125C12.1875 7.10438 11.2081 6.125 10 6.125C8.79188 6.125 7.8125 7.10438 7.8125 8.3125C7.8125 9.52062 8.79188 10.5 10 10.5Z"
23
+ fill={color}
24
+ />
25
+ </svg>
26
+ );
27
+ };
28
+ export default PersonIcon;
@@ -4,46 +4,67 @@ const ProfileImage = () => {
4
4
  return (
5
5
  <svg
6
6
  width="184"
7
- height="96"
8
- viewBox="0 0 184 96"
7
+ height="170"
8
+ viewBox="0 0 184 170"
9
9
  fill="none"
10
10
  xmlns="http://www.w3.org/2000/svg"
11
11
  >
12
- <rect width="100%" height="100%" />
13
-
14
- <path
15
- opacity="0.301503"
16
- fillRule="evenodd"
17
- clipRule="evenodd"
18
- d="M94.852 82.878C104.348 82.878 112.046 84.5875 112.046 86.6961C112.046 88.8047 104.348 90.5142 94.852 90.5142C85.3562 90.5142 77.6585 88.8047 77.6585 86.6961C77.6585 84.5875 85.3562 82.878 94.852 82.878ZM72.2787 14.2607C73.4863 14.2607 74.4907 15.1895 74.5849 16.3934L74.8968 20.3792L124.311 20.3797C126.275 20.3797 127.95 21.9865 128.052 23.9685L130.545 72.4173C130.647 74.3994 129.138 76.0061 127.173 76.0061H59.0042C57.0399 76.0061 55.3649 74.3994 55.2629 72.4173L52.7697 23.9685C52.6677 21.9865 54.1773 20.3797 56.1416 20.3797H57.3272L57.2348 18.5853C57.2242 18.3778 57.24 18.1764 57.2793 17.9844L57.1835 16.7544C57.0838 15.4808 58.0355 14.3674 59.3091 14.2677C59.3692 14.263 59.4294 14.2607 59.4897 14.2607H72.2787ZM25.6253 58.5473C27.265 58.5473 28.6115 59.8132 28.7601 61.4301C29.0716 61.2048 29.4521 61.0708 29.8643 61.0708C30.9135 61.0708 31.7642 61.93 31.7642 62.9898C31.7642 64.0495 30.9135 64.9087 29.8643 64.9087H21.2647C20.0368 64.9087 19.0413 63.9032 19.0413 62.6629C19.0413 61.4227 20.0368 60.4172 21.2647 60.4172C21.7639 60.4172 22.2231 60.5854 22.5942 60.8659C22.9665 59.5283 24.1819 58.5473 25.6253 58.5473ZM43.2509 27.4402C43.4641 27.4402 43.6374 27.6701 43.6374 27.9546V50.5727H27.4446V27.9546C27.4446 27.6701 27.6175 27.4402 27.831 27.4402H43.2509ZM171.261 31.6508C172.13 31.6508 172.834 32.3551 172.834 33.2238V45.733C172.834 46.6018 172.13 47.306 171.261 47.306H149.688C148.819 47.306 148.115 46.6018 148.115 45.733V33.2238C148.115 32.3551 148.819 31.6508 149.688 31.6508H171.261ZM18.7873 11.4829C20.6337 11.4829 22.2063 12.6396 22.8313 14.2667C22.9908 14.2217 23.1581 14.1964 23.3317 14.1964C23.9224 14.1964 24.4475 14.4741 24.7868 14.9051C25.1303 14.7503 25.5107 14.662 25.9119 14.662C27.429 14.662 28.6587 15.8922 28.6587 17.4098C28.6587 18.9274 27.429 20.1576 25.9119 20.1576H14.0561C12.5391 20.1576 11.3093 18.9274 11.3093 17.4098C11.3093 15.8922 12.5391 14.662 14.0561 14.662C14.242 14.662 14.4233 14.6809 14.5986 14.7163C15.0875 12.8563 16.775 11.4829 18.7873 11.4829ZM137.732 5.20482C139.701 5.20482 141.379 6.4386 142.045 8.17418C142.215 8.12623 142.394 8.09917 142.579 8.09917C143.21 8.09917 143.769 8.39545 144.131 8.85512C144.498 8.69003 144.903 8.59583 145.331 8.59583C146.95 8.59583 148.261 9.90805 148.261 11.5268C148.261 13.1456 146.95 14.4578 145.331 14.4578H132.685C131.067 14.4578 129.755 13.1456 129.755 11.5268C129.755 9.90805 131.067 8.59583 132.685 8.59583C132.883 8.59583 133.077 8.61604 133.264 8.65372C133.785 6.6698 135.585 5.20482 137.732 5.20482Z"
19
- fill="#3B5BDB"
20
- />
21
- <path
22
- fillRule="evenodd"
23
- clipRule="evenodd"
24
- d="M83.3809 18.8872C84.6585 18.8872 85.6942 19.9228 85.6942 21.2004C85.6942 21.2673 85.6912 21.3342 85.6854 21.4008L85.631 22.0361C85.6642 22.2027 85.6788 22.3761 85.6726 22.5542L85.6123 24.2892H131.357C133.321 24.2892 134.86 25.8427 134.793 27.759L133.164 74.6024C133.097 76.5188 131.451 78.0723 129.487 78.0723H61.3176C59.3533 78.0723 57.815 76.5188 57.8816 74.6024L59.5108 27.759C59.5774 25.8427 61.2238 24.2892 63.1881 24.2892L65.7718 24.2886L66.0577 21C66.1616 19.8046 67.1623 18.8872 68.3622 18.8872H83.3809Z"
25
- fill="white"
26
- />
27
- <path
28
- fillRule="evenodd"
29
- clipRule="evenodd"
30
- d="M47.3809 30.8048C47.5941 30.8048 47.7674 30.9397 47.7674 31.1063V52.2024H31.5746V31.1063C31.5746 30.9397 31.7475 30.8048 31.961 30.8048H47.3809ZM167.965 35.3586C168.834 35.3586 169.538 36.0629 169.538 36.9316V49.4408C169.538 50.3096 168.834 51.0138 167.965 51.0138H146.392C145.523 51.0138 144.819 50.3096 144.819 49.4408V36.9316C144.819 36.0629 145.523 35.3586 146.392 35.3586H167.965Z"
31
- fill="#CACED8"
32
- />
33
- <path
34
- d="M71.9311 13.8795C73.8589 13.8795 75.4809 15.4355 75.5814 17.3925L75.5914 17.7305L83.8477 17.7305C85.0292 17.7305 86.0727 18.321 86.6993 19.2229L124.311 19.2231C126.63 19.2231 128.625 20.9098 129.104 23.1328L131.357 23.1325C133.921 23.1325 135.962 25.1454 135.952 27.6566L135.949 27.7992L134.415 71.9173L151.583 71.9215C152.205 71.9144 152.715 72.3801 152.723 72.9618C152.73 73.517 152.277 73.9771 151.695 74.024L151.611 74.0279L134.341 74.0235L134.32 74.6426C134.233 77.1397 132.149 79.1517 129.632 79.2267L129.487 79.2289H61.3175C59.5379 79.2289 58.0104 78.2592 57.2457 76.8263C56.0234 76.3439 55.0325 75.3785 54.5082 74.1747L41.3503 74.1748C40.6988 74.1669 40.177 73.6323 40.1849 72.9808C40.1925 72.3589 40.6799 71.8553 41.2908 71.8176L41.3789 71.8154L54.0735 71.8149L51.6146 24.0279C51.4812 21.4355 53.4392 19.3019 55.9989 19.2252L56.1341 19.2226L56.0798 17.4881C55.9802 15.5523 57.4411 13.9521 59.3519 13.8819L59.4829 13.8795H71.9311ZM83.8477 20.0438H68.8508C68.2698 20.0438 67.779 20.4747 67.7039 21.0508L67.1309 25.445L63.1881 25.4458C61.841 25.4458 60.7114 26.5117 60.6667 27.7992L59.0375 74.6426C58.9938 75.8982 60.0013 76.9157 61.3175 76.9157H129.487C130.834 76.9157 131.963 75.8498 132.008 74.5622L133.637 27.7188C133.681 26.4632 132.673 25.4458 131.357 25.4458L84.4598 25.4452L84.9946 21.35C85.0011 21.3004 85.0043 21.2504 85.0043 21.2004C85.0043 20.5616 84.4865 20.0438 83.8477 20.0438ZM166.14 71.8158C166.791 71.7987 167.333 72.3128 167.35 72.9641C167.367 73.5859 166.899 73.8763 166.29 73.9373L166.202 73.9429L157.382 74.1745C156.731 74.1916 156.189 73.6774 156.172 73.0261C156.156 72.4044 156.623 71.8824 157.232 71.8213L157.32 71.8158H166.14ZM36.7607 72.9343C36.7927 73.5554 36.3384 74.0891 35.7311 74.1655L35.6433 74.1733H31.1562C30.5056 74.2069 29.9508 73.7066 29.9172 73.0559C29.8852 72.4348 30.3396 71.9011 30.9469 71.8247L31.0346 71.8169H35.5217C36.1724 71.7833 36.7271 72.2836 36.7607 72.9343ZM71.9311 16.1928H59.4829C58.8664 16.1928 58.3982 16.6626 58.3893 17.304L58.391 17.3925L58.5206 21.5363H56.1417C54.8818 21.5363 53.9167 22.5228 53.9215 23.7895L53.9248 23.9091L56.418 72.3579C56.4394 72.7726 56.5623 73.1664 56.7614 73.5134L58.3548 27.7188C58.4433 25.1737 60.6065 23.1325 63.1878 23.1325L65.0991 23.132L65.41 20.7516C65.6295 19.0689 67.0313 17.7989 68.7137 17.7332L68.8508 17.7305L73.2776 17.7305L73.2703 17.4881C73.2354 16.81 72.6745 16.244 72.0208 16.1961L71.9311 16.1928ZM102.623 53.4035L102.709 53.4057C103.313 53.4446 103.771 53.966 103.733 54.5701C103.626 56.2271 102.248 57.5614 100.602 57.6287L100.472 57.6314H92.6619C90.9042 57.6314 89.5508 56.1845 89.6639 54.4291C89.7029 53.8249 90.2242 53.3667 90.8283 53.4057C91.4037 53.4428 91.8467 53.9174 91.854 54.4844L91.8518 54.5701C91.8218 55.0356 92.1338 55.3968 92.5815 55.4355L92.6619 55.439H100.472C100.989 55.439 101.457 55.0243 101.535 54.5148L101.545 54.4291C101.582 53.8537 102.056 53.4107 102.623 53.4035ZM47.7674 30.0825L47.7673 30.2991C48.0986 30.4289 48.3457 30.7235 48.3457 31.1063V52.2024C48.3457 52.5218 48.0868 52.7807 47.7674 52.7807H31.5746C31.2552 52.7807 30.9963 52.5218 30.9963 52.2024V31.1063C30.9963 30.7235 31.2432 30.4289 31.5745 30.2991L31.5746 30.0825H47.7674ZM47.1887 32.8626H32.1526L32.1526 51.6237H47.1888L47.1887 32.8626ZM169.538 49.4408C169.538 50.3096 168.834 51.0138 167.965 51.0138H146.392C145.523 51.0138 144.819 50.3096 144.819 49.4408V36.9316C144.819 36.0629 145.523 35.3586 146.392 35.3586H167.965C168.834 35.3586 169.538 36.0629 169.538 36.9316V49.4408ZM39.4646 47.7956C39.7944 47.7956 40.0618 48.063 40.0618 48.3928V49.6515C40.0618 49.9813 39.7944 50.2486 39.4646 50.2486H34.9043C34.5745 50.2486 34.3071 49.9813 34.3071 49.6515V48.3928C34.3071 48.063 34.5745 47.7956 34.9043 47.7956H39.4646ZM168.358 42.362H145.999L145.999 49.4408C145.999 49.6383 146.144 49.8017 146.334 49.8298L146.392 49.8341H167.965C168.162 49.8341 168.326 49.6886 168.354 49.4989L168.358 49.4408L168.358 42.362ZM38.8668 48.9895H35.5011V49.0537H38.8668V48.9895ZM165.509 45.9805C165.944 45.9805 166.296 46.3327 166.296 46.767V46.8419C166.296 47.2763 165.944 47.6284 165.509 47.6284H161.315C160.88 47.6284 160.528 47.2763 160.528 46.8419V46.767C160.528 46.3327 160.88 45.9805 161.315 45.9805H165.509ZM45.1566 42.3614C45.476 42.3614 45.7349 42.6204 45.7349 42.9398V45.8313C45.7349 46.1507 45.476 46.4096 45.1566 46.4096H34.1686C33.8492 46.4096 33.5903 46.1507 33.5903 45.8313V42.9398C33.5903 42.6204 33.8492 42.3614 34.1686 42.3614H45.1566ZM44.5783 43.5181H34.7469V45.253H44.5783V43.5181ZM90.8521 40.371C92.3628 40.371 93.6393 41.3636 94.0634 42.8059C94.2342 43.3867 93.9018 43.996 93.3209 44.1668C92.7678 44.3295 92.1888 44.0357 91.9874 43.5057L91.96 43.4244C91.8058 42.8997 91.3732 42.5633 90.8521 42.5633C90.3229 42.5633 89.8034 42.9085 89.5364 43.4403L89.4893 43.5422C89.2535 44.0998 88.6103 44.3606 88.0527 44.1248C87.4951 43.8889 87.2343 43.2457 87.4701 42.6881C88.0529 41.3103 89.382 40.371 90.8521 40.371ZM104.45 40.371C105.961 40.371 107.237 41.3636 107.661 42.8059C107.832 43.3867 107.5 43.996 106.919 44.1668C106.366 44.3295 105.787 44.0357 105.585 43.5057L105.558 43.4244C105.404 42.8997 104.971 42.5633 104.45 42.5633C103.921 42.5633 103.401 42.9085 103.134 43.4403L103.087 43.5422C102.851 44.0998 102.208 44.3606 101.651 44.1248C101.093 43.8889 100.832 43.2457 101.068 42.6881C101.651 41.3103 102.98 40.371 104.45 40.371ZM45.1566 37.1566C45.476 37.1566 45.7349 37.4155 45.7349 37.7349V40.6265C45.7349 40.9459 45.476 41.2048 45.1566 41.2048H34.1686C33.8492 41.2048 33.5903 40.9459 33.5903 40.6265V37.7349C33.5903 37.4155 33.8492 37.1566 34.1686 37.1566H45.1566ZM44.5783 38.3133H34.7469V40.0482H44.5783V38.3133ZM167.965 36.5384H146.392C146.195 36.5384 146.031 36.6839 146.003 36.8735L145.999 36.9316L145.999 39.0662H168.358L168.358 36.9316C168.358 36.7342 168.213 36.5707 168.023 36.5426L167.965 36.5384ZM39.4429 34.6055C39.7727 34.6055 40.0401 34.8729 40.0401 35.2027C40.0401 35.5106 39.8072 35.764 39.508 35.7964L39.4429 35.7999H34.2161C33.8862 35.7999 33.6189 35.5325 33.6189 35.2027C33.6189 34.8949 33.8518 34.6415 34.151 34.609L34.2161 34.6055H39.4429ZM124.311 21.5363L87.3005 21.5358L87.2884 21.6494L87.0947 23.132L126.685 23.1327C126.295 22.2381 125.42 21.5891 124.433 21.5394L124.311 21.5363Z"
35
- fill="#3B414D"
36
- />
37
- <path
38
- d="M98.1446 79.1933L98.1445 85.1196L101.64 85.1196C102.262 85.1196 102.772 85.6009 102.817 86.2114L102.82 86.2994C102.82 86.9213 102.339 87.4309 101.729 87.4759L101.64 87.4792H96.9648C96.3429 87.4792 95.8334 86.9979 95.7883 86.3875L95.7851 86.2994V79.1933H98.1446ZM93.5647 79.1933V86.0691C93.5647 86.6911 93.0834 87.2006 92.473 87.2456L92.3849 87.2489H87.7093C87.0577 87.2489 86.5295 86.7207 86.5295 86.0691C86.5295 85.4472 87.0108 84.9376 87.6212 84.8926L87.7093 84.8894L91.2048 84.8889L91.2052 79.1933H93.5647ZM159.313 54.3545C159.964 54.3545 160.493 54.8827 160.493 55.5342C160.493 56.1562 160.011 56.6657 159.401 56.7108L159.313 56.714L156.09 56.7141C156.049 56.758 156.004 56.7992 155.955 56.8372L155.881 56.8911L140.722 66.9493C140.328 67.2108 139.819 67.2102 139.428 66.9562L139.346 66.8979C137.331 65.3329 135.82 64.1588 134.812 63.3756C134.806 63.3708 134.802 63.0684 134.801 62.4686L134.801 61.5763C134.802 61.2284 134.803 60.83 134.804 60.3813L140.123 64.5143L151.879 56.7138L149.558 56.714C148.906 56.714 148.378 56.1858 148.378 55.5342C148.378 54.9123 148.859 54.4028 149.47 54.3577L149.558 54.3545H159.313ZM47.1807 55.2058C47.8322 55.2058 48.3604 55.734 48.3604 56.3855C48.3604 57.0075 47.8792 57.517 47.2687 57.5621L47.1807 57.5653L44.8141 57.5651L51.4387 64.2677L57.1838 59.2789C57.2079 59.258 57.265 59.2166 57.2943 59.1953L57.3034 59.1884L57.3027 59.197C57.2994 59.2522 57.298 59.5369 57.2975 59.9135L57.2971 61.1812C57.297 61.2281 57.297 61.2745 57.297 61.3202L57.2965 61.7055C57.2958 62.0603 57.2941 62.3082 57.2903 62.3115C56.1481 63.3034 54.4349 64.7911 52.1507 66.7748L52.1408 66.7828L52.131 66.7916C52.1196 66.8012 52.108 66.8105 52.0963 66.8195L52.1507 66.7748C52.1234 66.7985 52.0953 66.8208 52.0666 66.8415C52.0515 66.8525 52.0361 66.8631 52.0205 66.8733C52.0085 66.881 51.9963 66.8886 51.984 66.896C51.9689 66.9052 51.9537 66.9139 51.9383 66.9222C51.9246 66.9295 51.9108 66.9366 51.897 66.9435C51.8846 66.9496 51.8719 66.9556 51.8591 66.9613C51.8435 66.9682 51.8281 66.9747 51.8125 66.9809C51.7955 66.9877 51.7782 66.9941 51.7607 67C51.7491 67.0041 51.7376 67.0078 51.726 67.0114C51.7114 67.0159 51.6966 67.0201 51.6817 67.0241C51.6603 67.0298 51.6389 67.0349 51.6174 67.0393C51.6118 67.0404 51.6061 67.0416 51.6005 67.0426C51.5761 67.0474 51.5515 67.0513 51.5269 67.0544C51.5187 67.0554 51.5104 67.0564 51.502 67.0573C51.4808 67.0596 51.4597 67.0612 51.4384 67.0623C51.4263 67.0629 51.4143 67.0633 51.4023 67.0636C51.3866 67.0639 51.3706 67.0639 51.3546 67.0636C51.3386 67.0633 51.3228 67.0627 51.307 67.0618C51.2935 67.061 51.2799 67.0599 51.2665 67.0586C51.248 67.0569 51.2293 67.0547 51.2107 67.0521C51.2008 67.0507 51.1912 67.0492 51.1815 67.0475C51.162 67.0443 51.1424 67.0405 51.1228 67.0362C51.1064 67.0326 51.0904 67.0287 51.0744 67.0245C51.0609 67.021 51.0474 67.0171 51.034 67.0131C50.9782 66.9961 50.9233 66.975 50.87 66.9496C50.8416 66.9361 50.814 66.9216 50.7869 66.9059C50.7553 66.8877 50.7242 66.8678 50.694 66.8463C50.6867 66.8409 50.6794 66.8357 50.6723 66.8303C50.6537 66.8166 50.6354 66.8021 50.6175 66.787C50.6161 66.7856 50.6144 66.7842 50.6127 66.7828L50.5888 66.7619C50.5737 66.7484 50.5589 66.7343 50.5443 66.7198L50.5381 66.7134L42.2934 58.3715C42.072 58.1475 41.9587 57.8573 41.953 57.5655L36.771 57.5653C36.1195 57.5653 35.5913 57.0371 35.5913 56.3855C35.5913 55.7636 36.0726 55.2541 36.683 55.209L36.771 55.2058H47.1807ZM43.251 26.8618C43.7967 26.8618 44.1763 27.3304 44.2128 27.869L44.2157 27.9546V30.0829C44.2157 30.0829 43.9267 30.0926 43.6376 30.0975L43.6374 30.1386H31.3335V31.2409L28.0228 31.2408L28.0231 41.3851C28.4789 41.237 28.9625 41.1508 29.4641 41.1362L29.6159 41.134C32.4601 41.134 34.7657 43.4397 34.7657 46.2838C34.7657 49.1279 32.4601 51.4335 29.6159 51.4335C29.0258 51.4335 28.4589 51.3343 27.931 51.1516L27.4447 51.151C27.1485 51.151 26.9043 50.9284 26.8704 50.6413C25.4256 49.7291 24.4662 48.1185 24.4662 46.2838C24.4662 44.4508 25.4239 42.8414 26.8662 41.9289L26.8663 27.9546C26.8663 27.4096 27.2183 26.9139 27.7463 26.8657L27.8311 26.8618H43.251ZM142.965 38.2425C145.809 38.2425 148.115 40.5481 148.115 43.3922C148.115 46.2363 145.809 48.542 142.965 48.542C140.121 48.542 137.816 46.2363 137.816 43.3922C137.816 40.5481 140.121 38.2425 142.965 38.2425ZM171.261 31.0725C172.411 31.0725 173.35 31.9745 173.409 33.1096L173.412 33.2238V45.733C173.412 46.8828 172.51 47.822 171.375 47.8814L171.261 47.8843H169.053V46.7277H171.261C171.781 46.7277 172.208 46.328 172.252 45.8188L172.256 45.733L172.255 39.2325L169.364 39.2328V35.9369L172.255 35.9367L172.256 33.2238C172.256 32.7034 171.856 32.2763 171.347 32.2328L171.261 32.2291H149.688C149.168 32.2291 148.741 32.6288 148.697 33.138L148.693 33.2238V35.9585H147.537V33.2238C147.537 32.074 148.439 31.1349 149.574 31.0755L149.688 31.0725H171.261ZM31.5746 36.6529V37.2312L29.637 37.2306V38.8696L31.5746 38.87V39.4483H29.0587V36.6529H31.5746ZM31.2748 33.1688V33.7472L29.637 33.7469V35.3858L31.2748 35.386V35.9643H29.0587V33.1688H31.2748Z"
39
- fill="#3B5BDB"
40
- />
41
- <path
42
- fillRule="evenodd"
43
- clipRule="evenodd"
44
- d="M30.2338 43.6059L30.2338 45.6653L32.2937 45.6658V46.9018L30.2338 46.9017L30.2338 48.9617H28.9979L28.9974 46.9017L26.938 46.9018V45.6658L28.9974 45.6653L28.9979 43.6059H30.2338ZM143.583 40.7144L143.583 42.7737L145.643 42.7743V44.0102L143.583 44.0102L143.583 46.0701H142.347L142.347 44.0102L140.287 44.0102V42.7743L142.347 42.7737L142.347 40.7144H143.583Z"
45
- fill="white"
46
- />
12
+ <g id="Illustration - Profile">
13
+ <path
14
+ d="M0 4C0 1.79086 1.79086 0 4 0H184V170H4C1.79086 170 0 168.209 0 166V4Z"
15
+ fill="#D9DAF9"
16
+ />
17
+ <path
18
+ fillRule="evenodd"
19
+ clipRule="evenodd"
20
+ d="M94.7468 118.59C103.892 118.59 111.306 120.237 111.306 122.267C111.306 124.298 103.892 125.945 94.7468 125.945C85.6015 125.945 78.1881 124.298 78.1881 122.267C78.1881 120.237 85.6015 118.59 94.7468 118.59ZM73.0069 52.5063C74.1699 52.5063 75.1372 53.4009 75.228 54.5603L75.5284 58.399L123.118 58.3995C125.01 58.3995 126.623 59.9469 126.721 61.8558L129.122 108.516C129.22 110.425 127.767 111.972 125.875 111.972H60.2225C58.3307 111.972 56.7175 110.425 56.6193 108.516L54.2181 61.8558C54.1199 59.9469 55.5739 58.3995 57.4656 58.3995H58.6074L58.5185 56.6713C58.5082 56.4714 58.5234 56.2775 58.5613 56.0926L58.469 54.908C58.373 53.6814 59.2895 52.6091 60.5162 52.5131C60.574 52.5086 60.632 52.5063 60.69 52.5063H73.0069ZM28.076 95.1579C29.6551 95.1579 30.9519 96.3771 31.095 97.9343C31.395 97.7173 31.7615 97.5882 32.1585 97.5882C33.1689 97.5882 33.9882 98.4157 33.9882 99.4364C33.9882 100.457 33.1689 101.284 32.1585 101.284H23.8763C22.6938 101.284 21.735 100.316 21.735 99.1215C21.735 97.9271 22.6938 96.9587 23.8763 96.9587C24.3571 96.9587 24.7993 97.1208 25.1568 97.3909C25.5153 96.1027 26.6858 95.1579 28.076 95.1579ZM45.0508 65.1992C45.2562 65.1992 45.423 65.4207 45.423 65.6947V87.4777H29.8281V65.6947C29.8281 65.4207 29.9946 65.1992 30.2002 65.1992H45.0508ZM168.335 69.2544C169.171 69.2544 169.849 69.9327 169.849 70.7694V82.8167C169.849 83.6534 169.171 84.3317 168.335 84.3317H147.558C146.722 84.3317 146.043 83.6534 146.043 82.8167V70.7694C146.043 69.9327 146.722 69.2544 147.558 69.2544H168.335ZM21.4904 49.8311C23.2687 49.8311 24.7832 50.9451 25.3851 52.5121C25.5387 52.4688 25.6998 52.4444 25.8671 52.4444C26.4359 52.4444 26.9417 52.7119 27.2684 53.127C27.5992 52.9779 27.9656 52.8928 28.352 52.8928C29.813 52.8928 30.9974 54.0776 30.9974 55.5392C30.9974 57.0008 29.813 58.1856 28.352 58.1856H16.9339C15.4729 58.1856 14.2885 57.0008 14.2885 55.5392C14.2885 54.0776 15.4729 52.8928 16.9339 52.8928C17.1129 52.8928 17.2876 52.9111 17.4564 52.9451C17.9272 51.1539 19.5524 49.8311 21.4904 49.8311ZM136.044 43.7848C137.94 43.7848 139.556 44.973 140.198 46.6446C140.361 46.5984 140.534 46.5723 140.712 46.5723C141.319 46.5723 141.858 46.8577 142.206 47.3004C142.56 47.1414 142.95 47.0506 143.363 47.0506C144.921 47.0506 146.184 48.3144 146.184 49.8734C146.184 51.4324 144.921 52.6962 143.363 52.6962H131.183C129.625 52.6962 128.362 51.4324 128.362 49.8734C128.362 48.3144 129.625 47.0506 131.183 47.0506C131.374 47.0506 131.56 47.0701 131.741 47.1064C132.243 45.1957 133.976 43.7848 136.044 43.7848Z"
21
+ fill="#A99DD2"
22
+ />
23
+ <path
24
+ fillRule="evenodd"
25
+ clipRule="evenodd"
26
+ d="M83.6991 56.962C84.9295 56.962 85.927 57.9594 85.927 59.1899C85.927 59.2543 85.9242 59.3187 85.9186 59.3829L85.8661 59.9947C85.8982 60.1551 85.9122 60.3221 85.9063 60.4937L85.8481 62.1646H129.904C131.796 62.1646 133.277 63.6607 133.213 65.5063L131.644 110.62C131.58 112.466 129.994 113.962 128.103 113.962H62.4504C60.5586 113.962 59.0771 112.466 59.1413 110.62L60.7103 65.5063C60.7745 63.6607 62.3601 62.1646 64.2518 62.1646L66.7401 62.164L67.0155 58.9969C67.1156 57.8456 68.0793 56.962 69.2349 56.962H83.6991Z"
27
+ fill="white"
28
+ />
29
+ <path
30
+ fillRule="evenodd"
31
+ clipRule="evenodd"
32
+ d="M49.0283 68.4397C49.2336 68.4397 49.4004 68.5696 49.4004 68.73V89.0473H33.8055V68.73C33.8055 68.5696 33.972 68.4397 34.1776 68.4397H49.0283ZM165.16 72.8253C165.997 72.8253 166.675 73.5036 166.675 74.3403V86.3876C166.675 87.2243 165.997 87.9026 165.16 87.9026H144.384C143.547 87.9026 142.869 87.2243 142.869 86.3876V74.3403C142.869 73.5036 143.547 72.8253 144.384 72.8253H165.16Z"
33
+ fill="#CACED8"
34
+ />
35
+ <path
36
+ d="M72.6721 52.1393C74.5287 52.1393 76.0909 53.6378 76.1876 55.5225L76.1972 55.8481L84.1487 55.8481C85.2866 55.8481 86.2916 56.4168 86.8951 57.2854L123.118 57.2855C125.351 57.2855 127.273 58.91 127.734 61.0509L129.904 61.0506C132.373 61.0506 134.339 62.9892 134.329 65.4077L134.326 65.5451L132.849 108.034L149.383 108.038C149.982 108.031 150.474 108.48 150.481 109.04C150.488 109.575 150.051 110.018 149.491 110.063L149.41 110.067L132.778 110.063L132.757 110.659C132.674 113.064 130.667 115.002 128.243 115.074L128.103 115.076H62.4503C60.7364 115.076 59.2653 114.142 58.5289 112.762C57.3517 112.297 56.3973 111.368 55.8925 110.208L43.2203 110.208C42.5929 110.201 42.0904 109.686 42.098 109.059C42.1052 108.46 42.5746 107.975 43.163 107.938L43.2479 107.936L55.4738 107.936L53.1057 61.913C52.9772 59.4163 54.8629 57.3615 57.3281 57.2876L57.4583 57.285L57.406 55.6146C57.3101 53.7503 58.7171 52.2091 60.5573 52.1416L60.6834 52.1393H72.6721ZM84.1487 58.0759H69.7055C69.146 58.0759 68.6733 58.491 68.6009 59.0457L68.049 63.2778L64.2518 63.2785C62.9545 63.2785 61.8666 64.305 61.8235 65.5451L60.2545 110.659C60.2124 111.868 61.1828 112.848 62.4503 112.848H128.103C129.4 112.848 130.488 111.822 130.531 110.582L132.1 65.4676C132.142 64.2584 131.172 63.2785 129.904 63.2785L84.7382 63.2779L85.2533 59.3339C85.2595 59.2862 85.2627 59.238 85.2627 59.1899C85.2627 58.5747 84.7639 58.0759 84.1487 58.0759ZM163.403 107.937C164.03 107.92 164.552 108.415 164.568 109.042C164.584 109.641 164.134 109.921 163.547 109.98L163.462 109.985L154.968 110.208C154.341 110.225 153.819 109.729 153.803 109.102C153.787 108.503 154.238 108.001 154.824 107.942L154.909 107.937H163.403ZM38.8001 109.014C38.831 109.612 38.3934 110.126 37.8085 110.2L37.724 110.207H33.4026C32.7759 110.239 32.2417 109.758 32.2094 109.131C32.1785 108.533 32.6161 108.019 33.201 107.945L33.2855 107.938H37.6069C38.2335 107.905 38.7678 108.387 38.8001 109.014ZM72.6721 54.3671H60.6834C60.0897 54.3671 59.6388 54.8196 59.6302 55.4373L59.6318 55.5225L59.7567 59.5134H57.4656C56.2522 59.5134 55.3228 60.4634 55.3274 61.6834L55.3306 61.7985L57.7318 108.459C57.7523 108.858 57.8706 109.237 58.0624 109.572L59.597 65.4676C59.6823 63.0164 61.7656 61.0506 64.2516 61.0506L66.0923 61.0501L66.3918 58.7576C66.6031 57.137 67.9531 55.9139 69.5735 55.8507L69.7055 55.8481L73.9688 55.8481L73.9618 55.6146C73.9282 54.9615 73.3881 54.4164 72.7585 54.3703L72.6721 54.3671ZM49.4005 67.744L49.4004 67.9526C49.7195 68.0776 49.9574 68.3613 49.9574 68.73V89.0473C49.9574 89.3549 49.7081 89.6042 49.4005 89.6042H33.8055C33.4979 89.6042 33.2486 89.3549 33.2486 89.0473V68.73C33.2486 68.3613 33.4864 68.0776 33.8054 67.9526L33.8055 67.744H49.4005ZM48.8432 70.4215H34.3622L34.3622 88.4899H48.8432L48.8432 70.4215ZM166.675 86.3876C166.675 87.2243 165.997 87.9026 165.16 87.9026H144.384C143.547 87.9026 142.869 87.2243 142.869 86.3876V74.3403C142.869 73.5036 143.547 72.8254 144.384 72.8254H165.16C165.997 72.8254 166.675 73.5036 166.675 74.3403V86.3876ZM41.4042 84.8032C41.7219 84.8032 41.9794 85.0607 41.9794 85.3783V86.5905C41.9794 86.9081 41.7219 87.1656 41.4042 87.1656H37.0123C36.6947 87.1656 36.4371 86.9081 36.4371 86.5905V85.3783C36.4371 85.0607 36.6947 84.8032 37.0123 84.8032H41.4042ZM165.539 79.5702H144.005L144.005 86.3876C144.005 86.5778 144.146 86.7352 144.328 86.7623L144.384 86.7664H165.16C165.351 86.7664 165.508 86.6262 165.535 86.4436L165.539 86.3876L165.539 79.5702ZM40.8285 85.953H37.587V86.0148H40.8285V85.953ZM162.795 83.0551C163.214 83.0551 163.553 83.3942 163.553 83.8126V83.8847C163.553 84.303 163.214 84.6422 162.795 84.6422H158.756C158.337 84.6422 157.998 84.303 157.998 83.8847V83.8126C157.998 83.3942 158.337 83.0551 158.756 83.0551H162.795ZM46.8861 79.5696C47.1937 79.5696 47.443 79.819 47.443 80.1266V82.9114C47.443 83.219 47.1937 83.4684 46.8861 83.4684H36.3038C35.9962 83.4684 35.7468 83.219 35.7468 82.9114V80.1266C35.7468 79.819 35.9962 79.5696 36.3038 79.5696H46.8861ZM46.3291 80.6836H36.8607V82.3544H46.3291V80.6836ZM46.8861 74.557C47.1937 74.557 47.443 74.8063 47.443 75.1139V77.8987C47.443 78.2063 47.1937 78.4557 46.8861 78.4557H36.3038C35.9962 78.4557 35.7468 78.2063 35.7468 77.8987V75.1139C35.7468 74.8063 35.9962 74.557 36.3038 74.557H46.8861ZM46.3291 75.6709H36.8607V77.3418H46.3291V75.6709ZM165.16 73.9616H144.384C144.194 73.9616 144.037 74.1017 144.009 74.2843L144.005 74.3403L144.005 76.3961H165.539L165.539 74.3403C165.539 74.1501 165.399 73.9927 165.216 73.9657L165.16 73.9616ZM41.3833 72.1001C41.701 72.1001 41.9585 72.3576 41.9585 72.6752C41.9585 72.9717 41.7342 73.2158 41.446 73.247L41.3833 73.2504H36.3495C36.0318 73.2504 35.7743 72.9929 35.7743 72.6752C35.7743 72.3787 35.9986 72.1347 36.2868 72.1034L36.3495 72.1001H41.3833ZM123.118 59.5134L87.474 59.5129L87.4624 59.6223L87.2758 61.0501L125.405 61.0508C125.029 60.1892 124.186 59.5642 123.235 59.5163L123.118 59.5134Z"
37
+ fill="#292A33"
38
+ />
39
+ <path
40
+ d="M97.9177 115.042L97.9177 120.749L101.285 120.749C101.884 120.749 102.374 121.213 102.418 121.801L102.421 121.885C102.421 122.484 101.957 122.975 101.369 123.018L101.285 123.022H96.7815C96.1826 123.022 95.6918 122.558 95.6485 121.97L95.6453 121.885V115.042H97.9177ZM93.5069 115.042V121.664C93.5069 122.263 93.0434 122.753 92.4555 122.797L92.3707 122.8H87.8677C87.2402 122.8 86.7315 122.291 86.7315 121.664C86.7315 121.065 87.195 120.574 87.7829 120.531L87.8677 120.527L91.2342 120.527L91.2345 115.042H93.5069ZM156.828 91.1199C157.455 91.1199 157.964 91.6286 157.964 92.2561C157.964 92.8551 157.5 93.3458 156.912 93.3892L156.828 93.3923L153.724 93.3923C153.684 93.4346 153.641 93.4743 153.594 93.5109L153.522 93.5629L138.923 103.25C138.544 103.501 138.054 103.501 137.677 103.256L137.598 103.2C135.658 101.693 134.202 100.562 133.232 99.8079C133.226 99.8033 133.222 99.5121 133.221 98.9344L133.221 98.075C133.221 97.74 133.222 97.3564 133.224 96.9242L138.346 100.905L149.668 93.3921L147.433 93.3923C146.805 93.3923 146.296 92.8836 146.296 92.2561C146.296 91.6571 146.76 91.1664 147.348 91.123L147.433 91.1199H156.828ZM48.8354 91.9397C49.4629 91.9397 49.9716 92.4484 49.9716 93.076C49.9716 93.6749 49.5081 94.1657 48.9202 94.209L48.8354 94.2122L46.5562 94.2119L52.9362 100.667L58.4692 95.8625C58.4924 95.8423 58.5474 95.8025 58.5756 95.782L58.5844 95.7753L58.5838 95.7836C58.5805 95.8368 58.5792 96.111 58.5787 96.4737L58.5783 97.6945C58.5783 97.7397 58.5783 97.7844 58.5782 97.8284L58.5778 98.1995C58.5771 98.5412 58.5755 98.7799 58.5717 98.7831C57.4718 99.7384 55.8218 101.171 53.6219 103.082L53.6124 103.089L53.603 103.098C53.592 103.107 53.5808 103.116 53.5696 103.125L53.6219 103.082C53.5956 103.105 53.5686 103.126 53.5409 103.146C53.5264 103.157 53.5116 103.167 53.4966 103.176C53.485 103.184 53.4733 103.191 53.4614 103.198C53.4468 103.207 53.4322 103.216 53.4174 103.224C53.4042 103.231 53.3909 103.238 53.3776 103.244C53.3657 103.25 53.3534 103.256 53.3411 103.261C53.3261 103.268 53.3112 103.274 53.2962 103.28C53.2798 103.287 53.2631 103.293 53.2464 103.299C53.2352 103.302 53.2241 103.306 53.2129 103.31C53.1989 103.314 53.1846 103.318 53.1702 103.322C53.1497 103.327 53.129 103.332 53.1083 103.336C53.1029 103.337 53.0975 103.339 53.0921 103.34C53.0685 103.344 53.0449 103.348 53.0212 103.351C53.0133 103.352 53.0052 103.353 52.9972 103.354C52.9768 103.356 52.9564 103.357 52.936 103.359C52.9243 103.359 52.9127 103.36 52.9012 103.36C52.8861 103.36 52.8706 103.36 52.8552 103.36C52.8398 103.36 52.8246 103.359 52.8094 103.358C52.7963 103.357 52.7833 103.356 52.7703 103.355C52.7525 103.353 52.7346 103.351 52.7167 103.349C52.7071 103.347 52.6978 103.346 52.6885 103.344C52.6698 103.341 52.6509 103.338 52.632 103.333C52.6162 103.33 52.6008 103.326 52.5854 103.322C52.5724 103.319 52.5594 103.315 52.5465 103.311C52.4927 103.295 52.4399 103.274 52.3885 103.25C52.3612 103.237 52.3346 103.223 52.3085 103.208C52.2781 103.19 52.2481 103.171 52.219 103.15C52.2119 103.145 52.205 103.14 52.1981 103.135C52.1802 103.122 52.1626 103.108 52.1454 103.093C52.144 103.092 52.1424 103.091 52.1407 103.089L52.1177 103.069C52.1031 103.056 52.0889 103.043 52.0749 103.029L52.0689 103.023L44.1286 94.9886C43.9154 94.7729 43.8062 94.4934 43.8007 94.2123L38.8101 94.2122C38.1826 94.2122 37.6739 93.7035 37.6739 93.076C37.6739 92.477 38.1374 91.9862 38.7253 91.9429L38.8101 91.9397H48.8354ZM45.0508 64.6423C45.5764 64.6423 45.9419 65.0935 45.9771 65.6123L45.9799 65.6947V67.7444C45.9799 67.7444 45.7016 67.7538 45.4231 67.7585L45.4229 67.7981H33.5733V68.8596L30.3849 68.8596L30.3852 78.6293C30.8241 78.4867 31.2898 78.4036 31.7729 78.3897L31.9191 78.3875C34.6583 78.3875 36.8788 80.608 36.8788 83.3472C36.8788 86.0863 34.6583 88.3068 31.9191 88.3068C31.3508 88.3068 30.8049 88.2112 30.2964 88.0352L29.828 88.0347C29.5428 88.0347 29.3076 87.8203 29.275 87.5438C27.8836 86.6653 26.9595 85.1141 26.9595 83.3472C26.9595 81.5818 27.8818 80.0319 29.2709 79.153L29.2711 65.6947C29.2711 65.1698 29.6101 64.6924 30.1185 64.646L30.2002 64.6423H45.0508ZM141.084 75.6027C143.823 75.6027 146.043 77.8232 146.043 80.5623C146.043 83.3015 143.823 85.522 141.084 85.522C138.345 85.522 136.124 83.3015 136.124 80.5623C136.124 77.8232 138.345 75.6027 141.084 75.6027ZM168.335 68.6975C169.442 68.6975 170.346 69.5662 170.404 70.6593L170.406 70.7694V82.8167C170.406 83.9241 169.538 84.8285 168.445 84.8857L168.335 84.8886H166.208V83.7747H168.335C168.836 83.7747 169.247 83.3897 169.289 82.8994L169.293 82.8167L169.292 76.5562L166.508 76.5565V73.3823L169.292 73.3821L169.293 70.7694C169.293 70.2681 168.908 69.8568 168.417 69.8149L168.335 69.8114H147.558C147.057 69.8114 146.646 70.1963 146.604 70.6867L146.6 70.7694V73.4031H145.486V70.7694C145.486 69.662 146.355 68.7575 147.448 68.7003L147.558 68.6975H168.335ZM33.8055 74.0718V74.6288L31.9394 74.6283V76.2067L33.8055 76.2071V76.764H31.3825V74.0718H33.8055ZM33.5168 70.7164V71.2734L31.9394 71.2731V72.8515L33.5168 72.8517V73.4086H31.3825V70.7164H33.5168Z"
41
+ fill="#6145F7"
42
+ />
43
+ <path
44
+ fillRule="evenodd"
45
+ clipRule="evenodd"
46
+ d="M32.5143 80.7681L32.5143 82.7515L34.4981 82.752V83.9423L32.5143 83.9423L32.5143 85.9261H31.324L31.3235 83.9423L29.3401 83.9423V82.752L31.3235 82.7515L31.324 80.7681H32.5143ZM141.679 77.9833L141.679 79.9667L143.663 79.9672V81.1575L141.679 81.1575L141.679 83.1413H140.489L140.488 81.1575L138.505 81.1575V79.9672L140.488 79.9667L140.489 77.9833H141.679Z"
47
+ fill="white"
48
+ />
49
+ <path
50
+ fillRule="evenodd"
51
+ clipRule="evenodd"
52
+ d="M103.263 81.9553C102.228 81.9553 101.482 82.5571 101.299 83.2006C101.185 83.601 100.768 83.8333 100.367 83.7193C99.9668 83.6054 99.7346 83.1884 99.8486 82.7881C100.251 81.3743 101.69 80.4478 103.263 80.4478C104.835 80.4478 106.275 81.3743 106.677 82.7881C106.791 83.1884 106.559 83.6054 106.158 83.7193C105.758 83.8333 105.341 83.601 105.227 83.2006C105.044 82.5571 104.298 81.9553 103.263 81.9553Z"
53
+ fill="#292A33"
54
+ />
55
+ <path
56
+ fillRule="evenodd"
57
+ clipRule="evenodd"
58
+ d="M86.5299 81.9553C85.495 81.9553 84.7487 82.5571 84.5656 83.2006C84.4517 83.601 84.0347 83.8333 83.6343 83.7193C83.2339 83.6054 83.0017 83.1884 83.1156 82.7881C83.5179 81.3743 84.9576 80.4478 86.5299 80.4478C88.1022 80.4478 89.5418 81.3743 89.9441 82.7881C90.058 83.1884 89.8258 83.6054 89.4254 83.7193C89.025 83.8333 88.6081 83.601 88.4941 83.2006C88.311 82.5571 87.5647 81.9553 86.5299 81.9553Z"
59
+ fill="#292A33"
60
+ />
61
+ <path
62
+ fillRule="evenodd"
63
+ clipRule="evenodd"
64
+ d="M87.4261 92.4004C87.8424 92.4004 88.1799 92.7379 88.1799 93.1541C88.1799 94.0581 88.9127 94.7908 89.8166 94.7908H98.7807C99.6847 94.7908 100.417 94.0581 100.417 93.1541C100.417 92.7379 100.755 92.4004 101.171 92.4004C101.587 92.4004 101.925 92.7379 101.925 93.1541C101.925 94.8906 100.517 96.2984 98.7807 96.2984H89.8166C88.0801 96.2984 86.6724 94.8906 86.6724 93.1541C86.6724 92.7379 87.0098 92.4004 87.4261 92.4004Z"
65
+ fill="#292A33"
66
+ />
67
+ </g>
47
68
  </svg>
48
69
  );
49
70
  };