adata-ui 2.1.0 → 2.1.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 (307) hide show
  1. package/.editorconfig +12 -12
  2. package/.nuxtrc +1 -1
  3. package/.playground/app.config.ts +5 -5
  4. package/README.md +75 -75
  5. package/app.config.ts +4 -3
  6. package/app.vue +1 -0
  7. package/assets/styles/index.scss +104 -0
  8. package/assets/styles/modules/_base.scss +5 -0
  9. package/assets/styles/modules/_typography.scss +152 -0
  10. package/components/elements/README.md +1 -1
  11. package/components/elements/accordion/AAccordion.vue +13 -12
  12. package/components/elements/curve-block/ACurveBlock.vue +94 -19
  13. package/components/elements/feature-description/AFeatureDescription.vue +4 -4
  14. package/components/elements/illustrations/noAccess.vue +11 -2
  15. package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
  16. package/components/elements/select/ASelect.vue +65 -9
  17. package/components/features/lang-switcher/lang-switcher.vue +8 -1
  18. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
  19. package/components/features/payment/banner/PaymentBanner.vue +108 -0
  20. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
  21. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
  22. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
  23. package/components/features/payment/process/PaymentProcess.vue +138 -0
  24. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
  25. package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
  26. package/components/forms/README.md +1 -1
  27. package/components/forms/checkbox/ACheckbox.vue +0 -2
  28. package/components/forms/radio-button/ARadioButton.vue +21 -13
  29. package/components/forms/request-demo/ARequestDemo.vue +21 -7
  30. package/components/modals/AConfirmationEmail.vue +40 -0
  31. package/components/modals/AnotherDeviceModal.vue +3 -2
  32. package/components/modals/ConnectingTariffModal.vue +0 -1
  33. package/components/modals/ContentNavigationModal.vue +148 -75
  34. package/components/modals/Insufficient-funds-modal.vue +5 -2
  35. package/components/modals/LimitReachedModal.vue +4 -3
  36. package/components/modals/ReportBugModal.vue +3 -3
  37. package/components/modals/Resend.vue +82 -0
  38. package/components/modals/SubmitApplicationModal.vue +4 -0
  39. package/components/modals/id/AuthModal.vue +78 -0
  40. package/components/modals/id/IdAutoLogoutModal.vue +45 -0
  41. package/components/modals/id/IdBanner.vue +58 -0
  42. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
  43. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
  44. package/components/modals/id/IdLoginModal.vue +316 -0
  45. package/components/modals/id/IdModals.vue +114 -0
  46. package/components/modals/id/IdNewPasswordModal.vue +129 -0
  47. package/components/modals/id/IdOtpInput.vue +155 -0
  48. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
  49. package/components/modals/id/IdRecoveryModal.vue +117 -0
  50. package/components/modals/id/IdRegistrationModal.vue +215 -0
  51. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
  52. package/components/modals/id/IdTwoFactorModal.vue +130 -0
  53. package/components/navigation/README.md +1 -1
  54. package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
  55. package/components/navigation/footer/AFooter.vue +210 -57
  56. package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
  57. package/components/navigation/header/AHeader.vue +59 -51
  58. package/components/navigation/header/AlmatyContacts.vue +16 -14
  59. package/components/navigation/header/AstanaContacts.vue +13 -11
  60. package/components/navigation/header/CardGallery.vue +5 -4
  61. package/components/navigation/header/HeaderLink.vue +16 -8
  62. package/components/navigation/header/NavList.vue +21 -5
  63. package/components/navigation/header/ProductMenu.vue +8 -78
  64. package/components/navigation/header/ProfileMenu.vue +10 -5
  65. package/components/navigation/header/TopHeader.vue +2 -2
  66. package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
  67. package/components/navigation/pill-tabs/APillTabs.vue +18 -4
  68. package/components/navigation/pill-tabs/types.ts +1 -0
  69. package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
  70. package/components/overlays/README.md +1 -1
  71. package/components/overlays/side-panel/ASidePanel.vue +439 -0
  72. package/components/overlays/tooltip/ATooltip.vue +149 -154
  73. package/components/utils/removeTrailingSlash.ts +7 -0
  74. package/composables/useBuyTariffs.ts +91 -0
  75. package/composables/useHeaderNavigationLinks.ts +174 -297
  76. package/composables/useIdModals.ts +36 -0
  77. package/composables/usePayment.ts +74 -0
  78. package/composables/useUrls.ts +21 -0
  79. package/eslint.config.mjs +45 -0
  80. package/icons/adata-logo.vue +1 -1
  81. package/icons/ai-assistant.vue +13 -0
  82. package/icons/akimat.vue +20 -0
  83. package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
  84. package/icons/arrow/arrow-circle-reset.vue +1 -1
  85. package/icons/arrow/arrow-corner.vue +1 -1
  86. package/icons/arrow/arrow-graph-down.vue +1 -1
  87. package/icons/arrow/arrow-graph-up.vue +1 -1
  88. package/icons/arrow/arrow-square-down.vue +1 -1
  89. package/icons/arrow/arrow-top-right-on-square.vue +1 -1
  90. package/icons/arrow-currency-gray.vue +1 -1
  91. package/icons/arrow-currency-green.vue +1 -1
  92. package/icons/arrow-currency-red.vue +1 -1
  93. package/icons/avatar.vue +1 -1
  94. package/icons/bank.vue +5 -0
  95. package/icons/block.vue +1 -1
  96. package/icons/bookmark/bookmark-filled.vue +1 -1
  97. package/icons/bookmark/bookmark.vue +1 -1
  98. package/icons/browsers/browser-duck.vue +1 -1
  99. package/icons/browsers/browser-google.vue +7 -1
  100. package/icons/browsers/browser-yandex.vue +1 -1
  101. package/icons/building-vector.vue +1 -1
  102. package/icons/calculator.vue +1 -1
  103. package/icons/calendar.vue +1 -1
  104. package/icons/car.vue +1 -1
  105. package/icons/chart-bar.vue +5 -0
  106. package/icons/chart-pie.vue +16 -0
  107. package/icons/check/check-circle.vue +1 -1
  108. package/icons/check/check.vue +1 -1
  109. package/icons/check/checkmark-circle.vue +1 -1
  110. package/icons/check-sb.vue +7 -0
  111. package/icons/checkbox/checkbox-active.vue +1 -1
  112. package/icons/checkbox/checkbox-empty.vue +1 -1
  113. package/icons/checkbox/checkbox-intermediate.vue +1 -1
  114. package/icons/chevron/chevron-down.vue +1 -1
  115. package/icons/chevron/chevron-left.vue +1 -1
  116. package/icons/chevron/chevron-right.vue +1 -1
  117. package/icons/chevron/chevron-up.vue +1 -1
  118. package/icons/chevron/double-chevron-right.vue +1 -1
  119. package/icons/clipboard-text.vue +1 -1
  120. package/icons/clock.vue +1 -1
  121. package/icons/company/company-bazis.vue +3 -3
  122. package/icons/company/company-bereke.vue +13 -13
  123. package/icons/company/company-bigroup.vue +5 -5
  124. package/icons/company/company-erg.vue +6 -6
  125. package/icons/company/company-forte.vue +11 -11
  126. package/icons/company/company-halyk.vue +4 -4
  127. package/icons/company/company-jusan.vue +20 -3
  128. package/icons/company/company-kaspi.vue +3 -3
  129. package/icons/company/company-mycar.vue +2 -2
  130. package/icons/company/company-samruk.vue +9 -9
  131. package/icons/company-egov-small.vue +1 -1
  132. package/icons/company.vue +1 -1
  133. package/icons/copy.vue +1 -1
  134. package/icons/currency/currency-dollar.vue +1 -1
  135. package/icons/currency/currency-down.vue +1 -1
  136. package/icons/currency/currency-eur.vue +1 -1
  137. package/icons/currency/currency-rub.vue +1 -1
  138. package/icons/currency/currency-tenge.vue +9 -0
  139. package/icons/currency/currency-usd.vue +1 -1
  140. package/icons/currency/currency-yuan.vue +1 -1
  141. package/icons/delete.vue +1 -1
  142. package/icons/document.vue +1 -1
  143. package/icons/download.vue +1 -1
  144. package/icons/edit.vue +1 -1
  145. package/icons/education.vue +1 -1
  146. package/icons/egov-small.vue +1 -1
  147. package/icons/excel-icon.vue +14 -0
  148. package/icons/expand-window.vue +1 -1
  149. package/icons/eye-closed.vue +1 -1
  150. package/icons/eye-open.vue +1 -1
  151. package/icons/eye-opened.vue +1 -1
  152. package/icons/file/file.vue +1 -1
  153. package/icons/filter.vue +1 -1
  154. package/icons/flag.vue +1 -1
  155. package/icons/gift.vue +1 -1
  156. package/icons/globe.vue +1 -1
  157. package/icons/google.vue +41 -0
  158. package/icons/hand/hand-thumb-up-filled.vue +1 -1
  159. package/icons/hand/hand-thumb-up.vue +1 -1
  160. package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
  161. package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
  162. package/icons/handshake.vue +1 -1
  163. package/icons/hcheck.vue +1 -1
  164. package/icons/hdocument.vue +1 -1
  165. package/icons/history.vue +1 -1
  166. package/icons/horizontal-more.vue +1 -1
  167. package/icons/hot-line.vue +6 -0
  168. package/icons/hummer.vue +1 -1
  169. package/icons/info/info-circle.vue +1 -1
  170. package/icons/invoice.vue +1 -1
  171. package/icons/kaspi-qr.vue +13 -0
  172. package/icons/link-chain.vue +1 -1
  173. package/icons/link.vue +1 -1
  174. package/icons/linkedin.vue +24 -24
  175. package/icons/loader-circle.vue +1 -1
  176. package/icons/location.vue +1 -1
  177. package/icons/lock.vue +1 -1
  178. package/icons/logo.vue +1 -1
  179. package/icons/logout.vue +1 -1
  180. package/icons/magnify/magnifying-glass-minus.vue +1 -1
  181. package/icons/magnify/magnifying-glass-plus.vue +1 -1
  182. package/icons/magnify/magnifying-glass.vue +1 -1
  183. package/icons/mail.vue +1 -1
  184. package/icons/mailru.vue +34 -0
  185. package/icons/main-filter.vue +1 -1
  186. package/icons/map/map-pin-filled.vue +1 -1
  187. package/icons/map/map-pin-rect.vue +1 -1
  188. package/icons/map/map-pin.vue +1 -1
  189. package/icons/map-marker-start.vue +1 -1
  190. package/icons/medal.vue +1 -1
  191. package/icons/menu-filled.vue +1 -1
  192. package/icons/menu.vue +1 -1
  193. package/icons/message/message.vue +1 -1
  194. package/icons/minus/minus-circle.vue +1 -1
  195. package/icons/money.vue +1 -1
  196. package/icons/monitoring.vue +1 -1
  197. package/icons/moon.vue +1 -1
  198. package/icons/more.vue +1 -1
  199. package/icons/notification.vue +1 -1
  200. package/icons/paperclip.vue +1 -1
  201. package/icons/payment/payment-card.vue +1 -1
  202. package/icons/payment/payment-kaspi.vue +1 -1
  203. package/icons/person-vector.vue +1 -1
  204. package/icons/person-with-briefcase.vue +1 -1
  205. package/icons/phone-filled.vue +1 -1
  206. package/icons/phone.vue +1 -1
  207. package/icons/plus/plus-circle.vue +1 -1
  208. package/icons/plus/plus.vue +1 -1
  209. package/icons/profile.vue +1 -1
  210. package/icons/radio/radio-check.vue +1 -1
  211. package/icons/radio/radio-empty.vue +1 -1
  212. package/icons/receipt.vue +1 -1
  213. package/icons/sanctions.vue +8 -0
  214. package/icons/scales/scale.vue +1 -1
  215. package/icons/scales/scales.vue +1 -1
  216. package/icons/scales/standing-scales.vue +1 -1
  217. package/icons/search.vue +1 -1
  218. package/icons/share/share-alt.vue +1 -1
  219. package/icons/share/share.vue +1 -1
  220. package/icons/socials/face-book.vue +1 -1
  221. package/icons/socials/instagram.vue +1 -1
  222. package/icons/socials/telegram.vue +1 -1
  223. package/icons/socials/tik-tok.vue +1 -1
  224. package/icons/socials/youtube.vue +1 -1
  225. package/icons/sort/sort-asc.vue +1 -1
  226. package/icons/sort/sort-desc.vue +1 -1
  227. package/icons/splitting-arrows.vue +1 -1
  228. package/icons/star/star-filled.vue +1 -1
  229. package/icons/star/star-half-filled.vue +1 -1
  230. package/icons/star/star.vue +1 -1
  231. package/icons/sun.vue +14 -14
  232. package/icons/sviazi.vue +1 -1
  233. package/icons/tag.vue +1 -1
  234. package/icons/tasks.vue +10 -0
  235. package/icons/tender-search.vue +1 -1
  236. package/icons/toasts/check-circle-toast.vue +1 -1
  237. package/icons/toasts/warning-triangle-toast.vue +1 -1
  238. package/icons/trash.vue +1 -1
  239. package/icons/triangle.vue +1 -1
  240. package/icons/truck.vue +1 -1
  241. package/icons/user.vue +1 -1
  242. package/icons/users-focus.vue +1 -1
  243. package/icons/users.vue +1 -1
  244. package/icons/warning/warning-circle.vue +1 -1
  245. package/icons/warning/warning-triangle-filled.vue +1 -1
  246. package/icons/warning/warning-triangle.vue +1 -1
  247. package/icons/whatsapp.vue +1 -1
  248. package/icons/work-bag.vue +1 -1
  249. package/icons/work-case.vue +9 -0
  250. package/icons/work-search.vue +1 -1
  251. package/icons/work.vue +1 -1
  252. package/icons/x-mark.vue +1 -1
  253. package/icons/yandex.vue +28 -0
  254. package/illustrations/address-location.vue +1 -1
  255. package/illustrations/ball-with-chain.vue +1 -1
  256. package/illustrations/bill.vue +1 -1
  257. package/illustrations/buildings.vue +1 -1
  258. package/illustrations/calendar.vue +1 -1
  259. package/illustrations/chains.vue +1 -1
  260. package/illustrations/coin-percent.vue +1 -1
  261. package/illustrations/coins-stack.vue +1 -1
  262. package/illustrations/delete-dark.vue +1 -1
  263. package/illustrations/delete.vue +1 -1
  264. package/illustrations/doc-with-stamp.vue +1 -1
  265. package/illustrations/document.vue +1 -1
  266. package/illustrations/door.vue +1 -1
  267. package/illustrations/empty-box.vue +1 -1
  268. package/illustrations/empty-wallet.vue +1 -1
  269. package/illustrations/graph-in-coin.vue +1 -1
  270. package/illustrations/hammer.vue +1 -1
  271. package/illustrations/hand-cash.vue +1 -1
  272. package/illustrations/info.vue +1 -1
  273. package/illustrations/mail.vue +1 -1
  274. package/illustrations/ok.vue +1 -1
  275. package/illustrations/people-group.vue +1 -1
  276. package/illustrations/person-with-phone.vue +1 -1
  277. package/illustrations/person.vue +1 -1
  278. package/illustrations/phone-check.vue +1 -1
  279. package/illustrations/phone-payment-method.vue +1 -1
  280. package/illustrations/stop-hand.vue +1 -1
  281. package/illustrations/stop-sign.vue +1 -1
  282. package/illustrations/suit.vue +1 -1
  283. package/illustrations/suitcase.vue +1 -1
  284. package/illustrations/terminal-dark.vue +1 -1
  285. package/illustrations/terminal.vue +1 -1
  286. package/illustrations/trash-can.vue +1 -1
  287. package/illustrations/turn-on-tariff.vue +1 -1
  288. package/illustrations/two-persons.vue +1 -1
  289. package/lang/en.ts +475 -270
  290. package/lang/kk.ts +476 -271
  291. package/lang/ru.ts +315 -107
  292. package/layouts/default.vue +13 -13
  293. package/nuxt.config.ts +42 -14
  294. package/package.json +69 -53
  295. package/public/kaspi/logo.svg +4 -0
  296. package/shared/constans/pages.ts +17 -2
  297. package/tailwind.config.ts +163 -0
  298. package/vitest.config.ts +14 -0
  299. package/.eslintrc.cjs +0 -4
  300. package/.playground/app.vue +0 -9
  301. package/.playground/pages/index.vue +0 -13
  302. package/.prettierignore +0 -24
  303. package/.prettierrc +0 -10
  304. package/assets/styles/index.css +0 -226
  305. package/components/modals/AuthModal.vue +0 -50
  306. package/components/navigation/footer/NewFooter.vue +0 -276
  307. package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
@@ -3,15 +3,15 @@
3
3
  </script>
4
4
 
5
5
  <template>
6
- <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="https://www.w3.org/2000/svg" class="group">
7
- <path class="group-hover:fill-[#846D41]" d="M42.5587 30.7173L34.667 30.8673V29.9151L42.5604 30.1083C42.557 30.2273 42.557 30.3447 42.557 30.4619C42.557 30.5483 42.5587 30.6345 42.5587 30.7173ZM56.2601 16.3656L56.0669 8.74805H57.0312L56.8829 16.3656C56.7724 16.3621 56.6603 16.3621 56.5482 16.3621C56.4533 16.3621 56.355 16.3638 56.2601 16.3656ZM70.5377 30.1083L78.4311 29.9151V30.8673L70.5394 30.7189C70.5412 30.6345 70.5429 30.5499 70.5429 30.4637C70.5429 30.3447 70.5429 30.2273 70.5377 30.1083ZM42.657 32.1559L34.836 33.1149L34.736 32.1662L42.5984 31.5487C42.6122 31.7523 42.6329 31.9541 42.657 32.1559ZM54.7853 16.4724L53.7952 8.9171L54.7526 8.81706L55.4062 16.4086C55.1993 16.4276 54.9923 16.4466 54.7853 16.4724ZM70.4291 28.6714L78.2621 27.6675L78.3622 28.6145L70.4929 29.2769C70.4756 29.0751 70.4566 28.875 70.4291 28.6714ZM42.8985 33.579L35.2397 35.3332L35.0396 34.4018L42.7795 32.9822C42.814 33.1822 42.8554 33.3806 42.8985 33.579ZM53.3346 16.7364L51.551 9.31556L52.4946 9.11892L53.9435 16.6087C53.74 16.645 53.5347 16.6898 53.3346 16.7364ZM70.1772 27.2518L77.8585 25.4475L78.0568 26.3807L70.3014 27.8503C70.2651 27.6503 70.2237 27.4519 70.1772 27.2518ZM43.2867 34.9727L35.8745 37.4998L35.5795 36.5925L43.1073 34.3897C43.1625 34.5846 43.2211 34.7795 43.2867 34.9727ZM51.9201 17.1539L49.3637 9.94345L50.2797 9.65021L52.5117 16.9589C52.3117 17.0192 52.1151 17.0848 51.9201 17.1539ZM69.7821 25.8649L77.2237 23.2826L77.5204 24.1899L69.9667 26.448C69.9081 26.2531 69.8477 26.0599 69.7821 25.8649ZM43.818 36.3234L36.7335 39.5853L36.3419 38.7142L43.5747 35.761C43.6541 35.9491 43.7334 36.1371 43.818 36.3234ZM50.5608 17.7145L47.2524 10.7939L48.1338 10.4092L51.1283 17.4608C50.9369 17.5419 50.7472 17.6265 50.5608 17.7145ZM69.244 24.5264L76.3647 21.1972L76.7527 22.0682L69.4855 25.0835C69.4096 24.8955 69.3302 24.711 69.244 24.5264ZM44.4872 37.6137L37.8082 41.5724L37.3286 40.7462L44.1871 37.0738C44.2837 37.2566 44.3837 37.4378 44.4872 37.6137ZM49.2706 18.4182L45.2428 11.8547L46.0794 11.3821L49.8071 18.1042C49.6242 18.2061 49.4466 18.3096 49.2706 18.4182ZM68.5713 23.2429L75.29 19.2083L75.7712 20.0345L68.8731 23.7777C68.7748 23.5966 68.6747 23.4189 68.5713 23.2429ZM64.6711 42.0193L64.6383 41.971C64.8074 41.8502 64.9747 41.7242 65.1368 41.5966L65.4577 42.0193H64.6711ZM45.2876 38.8332L40.9994 42.0193H39.4814L44.934 38.3278C45.0461 38.4986 45.1651 38.6677 45.2876 38.8332ZM48.0649 19.2514L43.3539 13.1208L44.1371 12.5637L48.565 18.8839C48.396 19.003 48.2287 19.1238 48.0649 19.2514ZM67.7692 22.0354L74.0135 17.3418L74.5776 18.1146L68.1244 22.5357C68.0089 22.3667 67.8916 22.1994 67.7692 22.0354ZM66.6204 42.0193L65.7906 41.0515C65.9458 40.9135 66.0977 40.7738 66.246 40.6289L67.5501 42.0193H66.6204ZM46.2122 39.9665L43.9784 42.0193H42.8088L45.8068 39.499C45.9379 39.6595 46.0725 39.8147 46.2122 39.9665ZM46.9556 20.1984L41.61 14.5698L42.3293 13.935L47.4128 19.7827C47.2558 19.919 47.1058 20.0569 46.9556 20.1984ZM66.8446 20.9143L72.5473 15.6169L73.1873 16.3275L67.2481 21.3765C67.1171 21.2196 66.9825 21.0643 66.8446 20.9143ZM68.9524 42.0193L66.836 40.0235C66.974 39.8699 67.1102 39.7146 67.243 39.5577L70.0927 42.021H68.9524V42.0193ZM47.254 41.0032L46.3554 42.0193H45.4101L46.8004 40.5789C46.9487 40.7238 47.0989 40.8652 47.254 41.0032ZM45.9517 21.2541L40.0282 16.1913L40.6751 15.4875L46.3622 20.7969C46.2226 20.9471 46.0846 21.0988 45.9517 21.2541ZM65.8061 19.8896L70.9068 14.0506L71.6193 14.6923L66.2581 20.3088C66.1115 20.1674 65.9597 20.0259 65.8061 19.8896ZM71.8573 42.0193L67.7692 38.8937C67.8899 38.728 68.0107 38.5589 68.1262 38.3899L73.3339 42.0193H71.8573ZM48.4012 41.9296L48.3357 42.0193H47.5387L47.9043 41.5518C48.0649 41.6812 48.2322 41.8053 48.4012 41.9296ZM45.0651 22.4063L38.6241 17.968L39.1933 17.1987L45.4239 21.9078C45.3014 22.0717 45.1807 22.2373 45.0651 22.4063ZM64.666 18.9754L69.1129 12.6637L69.8891 13.2278L65.161 19.348C64.9988 19.2204 64.8333 19.0944 64.666 18.9754ZM75.1969 41.726L68.5764 37.6758C68.6816 37.4998 68.7817 37.3204 68.8783 37.1393L75.6833 40.9032L75.1969 41.726ZM44.3027 23.638L37.4149 19.8793L37.9013 19.0565L44.6097 23.1084C44.5028 23.2826 44.401 23.4585 44.3027 23.638ZM63.4308 18.1836L67.1792 11.4683L68.0107 11.9496L63.9639 18.5028C63.7879 18.3924 63.6102 18.2872 63.4308 18.1836ZM76.287 39.7492L69.2508 36.3872C69.3354 36.2026 69.4165 36.0147 69.4941 35.8266L76.6855 38.8798L76.287 39.7492ZM43.6731 24.9386L36.4144 21.9044L36.8111 21.035L43.9214 24.3815C43.8335 24.5643 43.7507 24.7506 43.6731 24.9386ZM62.1182 17.5246L65.1299 10.4765L66.008 10.8715L62.6822 17.7869C62.4976 17.6937 62.3096 17.6075 62.1182 17.5246ZM77.1633 37.6671L69.7874 35.04C69.8528 34.8468 69.9133 34.6536 69.9702 34.4569L77.4652 36.7616L77.1633 37.6671ZM43.178 26.2945L35.6312 24.0175L35.9366 23.1136L43.3695 25.7149C43.3005 25.9081 43.2366 26.1013 43.178 26.2945ZM60.7399 17.0072L62.991 9.70369L63.9052 10.0056L61.3299 17.2091C61.1349 17.1349 60.9382 17.0675 60.7399 17.0072ZM77.8171 35.5075L70.1841 33.648C70.229 33.4513 70.2704 33.2512 70.3066 33.0494L78.0241 34.5777L77.8171 35.5075ZM42.8261 27.6934L35.0758 26.2065L35.2828 25.2749L42.9589 27.0983C42.9106 27.2949 42.8675 27.495 42.8261 27.6934ZM59.3133 16.6381L60.7831 9.15342L61.7232 9.35869L59.9223 16.7761C59.7205 16.7261 59.5169 16.6795 59.3133 16.6381ZM78.2397 33.2926L70.4324 32.2266C70.4583 32.0248 70.4791 31.823 70.4946 31.6194L78.3484 32.3456L78.2397 33.2926ZM42.6191 29.1199L34.7515 28.4368L34.8585 27.4898L42.6881 28.5128C42.6639 28.7162 42.6381 28.9181 42.6191 29.1199ZM57.8523 16.4241L58.525 8.83257L59.4841 8.93952L58.4715 16.4949C58.2663 16.4655 58.0592 16.4431 57.8523 16.4241Z" fill="#BDC7CE"/>
8
- <path class="group-hover:fill-[#846D41]" d="M66.4774 20.398C67.5676 20.5706 68.4974 21.1208 69.327 21.8643L70.2206 22.6611L69.327 23.4581C68.4957 24.1999 67.5658 24.7536 66.4774 24.9244V26.708C66.4774 27.3514 66.9121 28.3777 67.1277 29.0005C67.5952 30.3562 68.004 31.9794 66.612 32.9627L53.3988 42.3224L53.3452 41.5634C53.1573 38.8932 53.8627 38.1911 54.5648 35.8297C54.6717 35.4725 54.3785 34.7135 54.256 34.3703C53.9128 33.4215 53.5833 32.5211 53.5833 31.4948V28.5278L47.7184 32.6867L47.1233 31.7C43.8821 26.3284 43.8821 18.994 47.1233 13.6224L47.7184 12.6391L53.5833 16.7963V13.8294C53.5833 12.8047 53.9128 11.9043 54.256 10.9538C54.3785 10.6123 54.6717 9.85158 54.5648 9.49451C53.8627 7.1313 53.159 6.43096 53.3452 3.75899L53.4005 3L66.6137 12.3597C66.9966 12.6305 67.283 12.9841 67.4382 13.4309C67.7608 14.352 67.4348 15.437 67.1295 16.3219C66.9139 16.9447 66.4792 17.971 66.4792 18.6144V20.398H66.4774Z" fill="#BDC7CE"/>
9
- <path class="group-hover:fill-[#fff]" d="M66.0509 20.779C67.1928 20.8567 68.157 21.3913 69.0437 22.1814L69.5801 22.6593L69.0437 23.137C68.1588 23.9288 67.1928 24.4618 66.0509 24.5377V26.7042C66.0509 28.3517 68.2951 31.2755 66.3648 32.6106L53.7709 41.5287C53.5828 38.8274 54.2504 38.3875 54.9749 35.9449C55.1215 35.4533 54.8247 34.6822 54.6574 34.22C54.3348 33.3247 54.0106 32.4588 54.0106 31.4893V27.6961L47.8472 32.0655L47.4902 31.4738C44.3301 26.2385 44.3301 19.0731 47.4902 13.836L47.8472 13.2444L54.0106 17.6154V13.8274C54.0106 12.858 54.3348 11.992 54.6574 11.0968C54.8247 10.6345 55.1215 9.86342 54.9749 9.37008C54.2504 6.93098 53.5828 6.48939 53.7709 3.78809L66.3648 12.7062C68.2951 14.0413 66.0509 16.9651 66.0509 18.6125V20.779Z" fill="white"/>
10
- <path class="group-hover:fill-[#123258]" d="M54.6528 13.828C54.6528 12.0513 55.9655 10.4505 55.5911 9.18959C55.1548 7.71646 54.5216 6.72115 54.3095 5.14453L66.003 13.2364C67.4106 14.2092 65.4114 16.9243 65.4114 18.6148V21.4282C66.7086 21.3126 67.7194 21.8577 68.6181 22.6633C67.7194 23.4671 66.7069 24.0122 65.4114 23.8967V26.7101C65.4114 28.4006 67.4106 31.1139 66.003 32.0903L54.3095 40.1803C54.5234 38.602 55.1548 37.6068 55.5911 36.1336C55.9655 34.8727 54.6528 33.2719 54.6528 31.4969V26.46L48.0409 31.1484C45.0033 26.115 45.0033 19.2064 48.0409 14.173L54.6528 18.8632V13.828Z" fill="#BDC7CE"/>
11
- <path class="group-hover:fill-[#fff]" d="M63.3791 12.5789C60.8608 11.2058 58.463 9.74302 56.4172 7.80762C56.8864 10.0069 57.9869 11.7267 59.7774 13.1636C60.1345 13.45 59.9775 13.9968 59.291 13.8933C57.8575 13.6794 57.6678 12.465 56.1274 12.189V18.6146C57.6696 18.3368 57.8575 17.1259 59.291 16.9103C59.9758 16.8068 60.1345 17.3536 59.7774 17.6399C58.0335 19.0389 56.9433 20.7086 56.4568 22.8269L56.4189 22.7907L56.4431 22.8925L56.4189 22.9942L56.4568 22.9597C56.9451 25.0798 58.0335 26.746 59.7774 28.1467C60.1345 28.4331 59.9758 28.9799 59.291 28.8763C57.8575 28.6625 57.6678 27.4499 56.1274 27.1738V33.5993C57.6696 33.3233 57.8575 32.1089 59.291 31.8933C59.9758 31.7916 60.1345 32.3384 59.7774 32.623C57.9869 34.06 56.8881 35.7797 56.4172 37.979C58.463 36.0454 60.8608 34.5826 63.3791 33.2094C63.9795 32.88 63.9915 32.3539 63.2947 31.8002C63.1135 31.6553 63.06 31.3776 63.3447 31.3137C64.1623 31.1258 64.5642 30.8152 64.8886 30.3858C64.5642 29.9597 64.1623 29.6474 63.3447 29.4577C63.0618 29.3921 63.1135 29.1145 63.2947 28.9696C63.9915 28.4175 63.9811 27.8897 63.3791 27.562C60.9038 26.2131 58.5492 24.7778 56.5259 22.8925C58.5475 21.0106 60.9038 19.5736 63.3791 18.2247C63.9795 17.8969 63.9915 17.3674 63.2947 16.8171C63.1135 16.6722 63.06 16.3928 63.3447 16.3289C64.1623 16.1409 64.5642 15.8304 64.8886 15.4026C64.5642 14.9748 64.1623 14.6644 63.3447 14.4746C63.0618 14.4091 63.1135 14.1331 63.2947 13.9864C63.9915 13.4362 63.9795 12.9066 63.3791 12.5789ZM63.4482 21.9127C63.8708 21.3952 64.1916 20.7518 64.1847 20.0342L59.2358 22.8597L64.1847 25.6887C64.1916 24.9693 63.8708 24.3276 63.4482 23.8084C64.0209 23.5617 64.5452 23.2392 65.0317 22.8597C64.5452 22.4819 64.0209 22.1594 63.4482 21.9127ZM54.6145 20.0704C52.0962 18.6973 49.6984 17.2345 47.6526 15.3026C48.1201 17.4985 49.2223 19.22 51.0112 20.6552C51.3682 20.9432 51.206 21.5177 50.5247 21.3866C49.0912 21.1089 48.2667 19.8289 46.7246 19.6823V26.1078C48.2667 25.9767 49.0912 24.6709 50.5247 24.4036C51.206 24.2776 51.3682 24.8469 51.0112 25.1332C49.2223 26.5701 48.1218 28.2898 47.6526 30.4875C49.6967 28.5539 52.0944 27.0927 54.6145 25.7162C55.2149 25.3885 55.2253 24.8607 54.5283 24.3087C54.3473 24.1638 54.2937 23.886 54.5784 23.8222C55.396 23.6325 55.7996 23.3219 56.124 22.8941C55.7996 22.4681 55.396 22.1576 54.5784 21.9679C54.2955 21.9024 54.3473 21.6246 54.5283 21.4814C55.2269 20.926 55.2149 20.3982 54.6145 20.0704Z" fill="white"/>
12
- <path class="group-hover:fill-[#123258]" d="M65.0786 50.3068C69.41 48.9924 72.3683 46.3066 74.5659 42.9688H69.2719C68.6113 44.6006 67.2296 45.1077 65.2459 44.68C65.7789 46.0979 65.6857 48.5266 63.5899 49.0925C60.7679 49.8549 59.2551 47.3623 60.5557 46.0582C61.4217 47.7245 62.9086 46.8345 63.0673 45.7287C63.2605 44.3832 60.566 43.545 59.3552 44.9577C58.1494 46.3618 57.8388 49.246 61.2181 50.7967C63.3001 51.7541 64.7629 52.4337 65.5771 54.3329C65.96 53.4134 66.0808 51.5591 65.0786 50.3068ZM53.994 52.2923H59.0671C57.7613 51.5505 57.2213 50.8105 56.5296 49.5892C55.8396 50.8087 55.3015 51.5505 53.994 52.2923ZM54.7098 42.9688H58.3512C57.4128 43.4845 57.0264 44.0003 56.5296 44.8456C56.0346 44.0021 55.6482 43.4863 54.7098 42.9688ZM48.1463 50.3068C43.8149 48.9924 40.8548 46.3066 38.6572 42.9688H43.9529C44.6118 44.6006 45.9952 45.1077 47.979 44.68C47.4459 46.0979 47.5374 48.5266 49.635 49.0925C52.457 49.8549 53.9698 47.3623 52.6691 46.0582C51.805 47.7245 50.3163 46.8345 50.1576 45.7287C49.9644 44.3832 52.6588 43.545 53.8697 44.9577C55.0755 46.3618 55.3859 49.246 52.0085 50.7967C49.9265 51.7541 48.4636 52.4337 47.6495 54.3329C47.2631 53.4134 47.1424 51.5591 48.1463 50.3068Z" fill="#BDC7CE"/>
13
- <path class="group-hover:fill-[#846D41]" d="M83.1337 19.5098H149.024V20.1238H83.1337V19.5098ZM83.1337 34.2668H149.024V34.8809H83.1337V34.2668ZM83.4252 30.5633C83.4011 30.8013 83.3752 31.0049 83.3475 31.1826C83.3286 31.3326 83.2992 31.4809 83.2613 31.6258C83.2372 31.7483 83.1957 31.8967 83.1406 32.0727C83.0734 32.2796 83.0043 32.485 82.9336 32.6902L83.5719 32.9851C83.7392 33.0662 83.9151 33.13 84.0962 33.1783C84.2825 33.2284 84.4739 33.2749 84.6706 33.3129C84.8827 33.3542 85.095 33.3836 85.3037 33.4009C85.5124 33.4198 85.7177 33.4284 85.9143 33.4284C86.5371 33.4284 87.0942 33.344 87.591 33.1732C88.0878 33.0059 88.5259 32.7575 88.9123 32.4297C89.3367 32.0433 89.6592 31.6138 89.8783 31.1394C90.0956 30.6616 90.2044 30.1373 90.2044 29.5646C90.2044 29.3765 90.1905 29.1954 90.1663 29.0195C90.1388 28.8383 90.0974 28.6589 90.0405 28.4829C89.9818 28.295 89.9146 28.1207 89.8317 27.9569C89.7524 27.7965 89.6644 27.6481 89.5661 27.5171C89.378 27.2789 89.0986 27.0357 88.7277 26.7822C88.3535 26.532 87.8877 26.2613 87.3219 25.9783C87.0804 25.8525 86.8406 25.7265 86.6009 25.5971C86.3887 25.4798 86.1817 25.3573 85.9781 25.2262C85.6832 25.0382 85.4623 24.8243 85.3158 24.5811C85.1674 24.3414 85.0932 24.0705 85.0932 23.7687C85.0846 23.5306 85.1295 23.3185 85.2226 23.127C85.3158 22.9354 85.4537 22.7699 85.6331 22.6232C85.7988 22.4836 85.9781 22.3835 86.18 22.3232C86.3818 22.261 86.6078 22.2282 86.863 22.23C87.0839 22.23 87.2995 22.2559 87.5065 22.3162C87.7134 22.3766 87.9101 22.4663 88.0912 22.5888C88.2223 22.6629 88.35 22.7905 88.4725 22.97C88.595 23.1512 88.7122 23.3701 88.8261 23.6358H89.1365C89.1952 23.4323 89.2418 23.2511 89.2745 23.0994C89.3108 22.9424 89.3419 22.8164 89.366 22.7198L89.6765 21.9178L89.2504 21.6556C88.902 21.4797 88.5329 21.345 88.1534 21.2571C87.7739 21.1726 87.3753 21.1312 86.9579 21.1312C86.4163 21.1398 85.9229 21.2157 85.4727 21.3641C85.026 21.5107 84.6257 21.7297 84.2721 22.0161C84.0514 22.1938 83.8617 22.3852 83.7046 22.5888C83.5477 22.794 83.4183 23.02 83.3217 23.2598C83.2338 23.472 83.1647 23.7031 83.1147 23.9566C83.0664 24.2292 83.0422 24.5052 83.044 24.7812C83.044 25.0106 83.0612 25.2332 83.0923 25.4419C83.1217 25.6454 83.1665 25.8455 83.2251 26.0422C83.4873 26.7787 84.0445 27.3859 84.8949 27.8603L85.9764 28.4485C86.1817 28.5554 86.38 28.6624 86.5767 28.7727C86.7682 28.8762 86.9563 28.9883 87.1391 29.1057C87.4754 29.3196 87.7289 29.5473 87.898 29.7957C88.0705 30.0423 88.1534 30.308 88.1534 30.5961C88.1534 30.8583 88.0998 31.1032 87.9877 31.3291C87.8791 31.5534 87.7204 31.757 87.5168 31.9381C87.3529 32.0692 87.1495 32.1675 86.908 32.2331C86.6647 32.2986 86.3853 32.3314 86.0765 32.3314C85.5279 32.3383 85.0657 32.1968 84.6897 31.9036C84.317 31.6087 84.0306 31.1601 83.8323 30.5633H83.4252ZM90.9081 31.9709L90.2853 33.2146L91.2186 33.1836L92.1018 33.2146L92.4468 32.0192C92.5279 31.7673 92.609 31.5137 92.6917 31.2636C92.771 31.0238 92.8521 30.7823 92.9385 30.5443L93.2161 29.8078L94.0993 29.7095C94.2391 29.6939 94.4012 29.6853 94.5892 29.6801C94.7772 29.6767 94.9911 29.6767 95.2292 29.6767C95.469 29.6767 95.6863 29.6801 95.8829 29.6887C96.0813 29.6939 96.252 29.7026 96.39 29.7095L97.3077 29.8078L97.5527 30.5616L98.0943 32.0519L98.4377 33.2128L99.8797 33.1818L101.534 33.2128L100.911 31.9364C99.9124 29.8078 98.8964 27.3842 97.8649 24.6656L97.0645 22.4922L96.6384 21.3278L95.8864 21.3778L95.2809 21.3278L94.8703 22.4922L94.02 24.7001C93.4714 26.0681 92.9401 27.3531 92.4192 28.5624C91.9328 29.706 91.429 30.8428 90.9081 31.9709ZM93.7423 28.4502L94.02 27.7792L94.8548 25.6679L95.2654 24.6846L95.6569 25.6679L96.509 27.7792L96.7868 28.4502L96.2296 28.5312C96.1002 28.5485 95.9622 28.5571 95.8208 28.5589C95.6777 28.564 95.5259 28.564 95.362 28.564C94.986 28.564 94.641 28.5485 94.3304 28.5157L93.7423 28.4502ZM103.107 33.1836L103.942 33.2146L103.975 32.1675C103.992 31.7725 104.02 31.3326 104.059 30.841C104.099 30.3511 104.147 29.8094 104.204 29.2196L104.466 26.8287L104.63 25.4384L105.319 26.7804L106.202 28.6158L107.281 30.8583C107.438 31.186 107.577 31.4775 107.701 31.7346C107.809 31.9588 107.916 32.1865 108.02 32.4141L108.346 33.2163L108.691 33.1852L109.051 33.2163L109.593 31.9243C109.781 31.4896 109.976 31.0566 110.178 30.6272C110.447 30.0493 110.726 29.4783 111.018 28.9108L112.082 26.8477L112.786 25.3884L112.917 26.7977L113.195 29.173C113.212 29.3541 113.241 29.6887 113.281 30.1821C113.319 30.6788 113.367 31.3344 113.424 32.1537L113.49 33.218L115.011 33.1869L116.388 33.218L116.108 31.6966C115.975 30.9653 115.853 30.2321 115.742 29.4972C115.62 28.7003 115.503 27.8413 115.389 26.9167C115.273 26.0732 115.177 25.2901 115.09 24.5621C115.011 23.8359 114.937 23.1563 114.882 22.5284L114.751 21.333L114.08 21.3831L113.391 21.333L112.884 22.5612C112.715 22.9372 112.508 23.3823 112.265 23.8981C111.987 24.4879 111.703 25.0728 111.409 25.654L110.002 28.3898L109.377 29.5352L108.756 28.3398C108.532 27.9172 108.311 27.4894 108.097 27.0616C107.861 26.5907 107.633 26.1164 107.413 25.6367L106.217 23.0994L105.431 21.3313L104.777 21.3813L104.057 21.3313L103.876 22.9027L103.369 26.865L103.074 28.9608C102.995 29.4386 102.917 29.9164 102.843 30.3943C102.76 30.9238 102.662 31.4982 102.55 32.121L102.338 33.218L103.107 33.1836ZM118.468 21.3778L117.143 21.3278L117.226 22.0489C117.242 22.2696 117.255 22.5335 117.264 22.8423C117.273 23.1477 117.274 23.4961 117.274 23.879V30.2873C117.266 30.6841 117.26 31.0808 117.257 31.4758C117.254 31.8053 117.248 32.0623 117.242 32.2486L117.143 33.2146L118.502 33.1836L119.91 33.2146L119.844 32.2659C119.812 31.7277 119.796 31.0721 119.796 30.3028L119.781 28.326V27.6394L120.222 28.326C120.476 28.7158 120.7 29.0747 120.892 29.3989C121.073 29.6973 121.247 29.9975 121.416 30.3028L122.513 32.2659L123.037 33.2146L124.528 33.1836L126.215 33.2146L125.526 32.2986C125.142 31.7449 124.738 31.1308 124.312 30.4581C123.859 29.7387 123.417 29.0125 122.989 28.2777L122.465 27.3445C122.827 27.2548 123.137 27.1634 123.393 27.0633C123.648 26.965 123.85 26.8615 123.988 26.7545C124.221 26.6062 124.426 26.4182 124.593 26.2008C124.761 25.9887 124.897 25.7437 125.004 25.4643C125.076 25.2797 125.126 25.0883 125.156 24.8933C125.187 24.7001 125.201 24.4983 125.201 24.2878C125.192 23.8135 125.102 23.3892 124.928 23.0183C124.755 22.644 124.497 22.3145 124.152 22.0299C123.865 21.8005 123.52 21.6245 123.117 21.5055C122.71 21.3847 122.244 21.3244 121.711 21.3244L120.17 21.3572L118.468 21.3778ZM119.779 26.9357V22.4404L120.4 22.3904C121.064 22.3904 121.563 22.556 121.895 22.8924C122.232 23.2287 122.397 23.7306 122.397 24.4017C122.39 24.7381 122.349 25.0451 122.268 25.3298C122.189 25.6161 122.063 25.8731 121.89 26.1025C121.685 26.3785 121.456 26.5872 121.202 26.7304C120.948 26.8684 120.671 26.9426 120.367 26.9495L119.779 26.9357ZM129.768 22.0644L129.816 21.3278L128.407 21.3778L127.032 21.3278L127.098 22.0144L127.146 23.2425L127.162 25.3711V28.188C127.162 28.6227 127.176 29.016 127.203 29.3645C127.229 29.7163 127.277 30.0217 127.341 30.2838C127.415 30.6358 127.538 30.96 127.714 31.2551C127.89 31.5534 128.119 31.8225 128.404 32.0674C128.895 32.5176 129.468 32.8541 130.122 33.0783C130.776 33.2974 131.509 33.4112 132.318 33.4112C132.671 33.4112 133.011 33.3905 133.341 33.3457C133.67 33.3026 133.996 33.2319 134.315 33.1335C134.66 33.0265 134.976 32.8955 135.266 32.7367C135.554 32.5781 135.823 32.3866 136.068 32.1675C136.452 31.838 136.761 31.4068 136.991 30.8703C137.22 30.3339 137.37 29.6871 137.443 28.9245C137.475 28.7124 137.501 28.3036 137.52 27.6999C137.537 27.0926 137.551 26.2957 137.56 25.3056L137.591 23.227L137.624 22.0627L137.689 21.3261L136.872 21.3761L135.971 21.3261L136.037 22.0782L136.068 23.2252L136.101 25.2884V27.4998C136.085 28.2104 136.028 28.8314 135.926 29.3541C135.83 29.8819 135.683 30.3166 135.495 30.6599C135.228 31.1585 134.872 31.5258 134.432 31.7707C133.993 32.014 133.465 32.133 132.842 32.133C132.256 32.1243 131.752 32.0261 131.336 31.8329C130.92 31.6397 130.582 31.3464 130.32 30.9531C130.201 30.7651 130.101 30.5685 130.02 30.3615C129.934 30.1303 129.875 29.8889 129.846 29.6439C129.787 29.3179 129.744 28.9746 129.711 28.621C129.68 28.2484 129.665 27.8741 129.665 27.4998L129.68 25.3867L129.73 23.2408L129.768 22.0644ZM141.277 21.3778L139.902 21.3278L139.952 22.261L139.985 23.5859L140.018 25.6161L140.001 29.0056L139.985 30.6926L139.952 32.183L139.902 33.2146L141.345 33.1836L142.669 33.2146L142.586 32.1675C142.562 31.945 142.547 31.7087 142.535 31.4551C142.526 31.1842 142.521 30.9135 142.521 30.6444V29.0056L142.536 27.8603L143.292 29.0056L144.339 30.6444C144.584 31.0118 144.794 31.336 144.967 31.6138C145.11 31.8398 145.252 32.0675 145.388 32.2986L145.912 33.2146L147.615 33.1836L149.269 33.2146L148.565 32.2814L147.354 30.5133L145.519 27.8448L144.52 26.2905L145.143 25.5523L146.78 23.7341L148.074 22.3421L149.072 21.3261L147.911 21.3761L146.814 21.3261L146.159 22.292C145.988 22.5457 145.776 22.832 145.524 23.1545C145.238 23.515 144.948 23.8722 144.653 24.224L143.556 25.5833L142.524 26.7321V25.5523L142.59 23.603L142.605 22.2783L142.671 21.3295L141.277 21.3778Z" fill="#BDC7CE"/>
14
- <path class="group-hover:fill-[#846D41]" d="M83.8958 35.7247L83.2266 35.7022L83.2507 36.1542L83.2662 36.7994L83.2834 37.7878L83.2749 39.4351L83.2662 40.2544L83.2507 40.9789L83.2266 41.481L83.9268 41.4654L84.5737 41.481L84.5323 40.9721C84.5203 40.8582 84.5116 40.7427 84.5081 40.6271C84.5048 40.4959 84.5013 40.3632 84.5013 40.232V39.4351L84.5099 38.878L84.8755 39.4351L85.3844 40.232C85.5052 40.4115 85.6069 40.5684 85.6897 40.703C85.7604 40.8134 85.8278 40.9238 85.8933 41.0359L86.1486 41.481L86.9766 41.4654L87.7822 41.481L87.4389 41.029L86.8489 40.1682L85.9589 38.871L85.4741 38.1155L85.776 37.7567L86.5729 36.8736L87.2008 36.1974L87.6856 35.704L87.1197 35.7264L86.5868 35.704L86.2676 36.1715C86.1849 36.2957 86.0796 36.4337 85.9589 36.5906C85.8191 36.7666 85.6794 36.9391 85.5362 37.1116L85.0015 37.7705L84.4995 38.3277V37.7532L84.5305 36.8062L84.5392 36.1611L84.572 35.7006L83.8958 35.7247ZM94.8718 40.8755L94.5699 41.481L95.0235 41.4654L95.4531 41.481L95.6204 40.9014C95.6601 40.7771 95.6997 40.6547 95.7412 40.534C95.7791 40.4115 95.8205 40.2959 95.8602 40.1837L95.9964 39.8267L96.426 39.7784C96.4932 39.7698 96.5726 39.7663 96.6657 39.7646C96.7572 39.7628 96.8607 39.7628 96.9762 39.7628C97.0936 39.7628 97.1988 39.7646 97.2954 39.7698C97.392 39.7714 97.4747 39.7749 97.542 39.7801L97.9887 39.8284L98.1079 40.1959L98.3718 40.9203L98.5391 41.4843L99.2394 41.4688L100.045 41.4843L99.7413 40.8634C99.2567 39.8284 98.7633 38.6503 98.2596 37.3289L97.8697 36.2698L97.6628 35.7057L97.297 35.7281L97.0021 35.7057L96.802 36.2698L96.3881 37.3444C96.1362 37.9741 95.8774 38.6002 95.6118 39.223C95.3703 39.7749 95.1254 40.3269 94.8718 40.8755ZM96.2501 39.1626L96.3846 38.8366L96.79 37.8102L96.9901 37.3324L97.1815 37.8102L97.5955 38.8366L97.7317 39.1626L97.4609 39.2022C97.3971 39.2109 97.3316 39.2144 97.2626 39.216C97.1919 39.2195 97.1195 39.2195 97.04 39.2195C96.871 39.2195 96.7037 39.2126 96.5381 39.1953L96.2501 39.1626ZM109.605 36.249H110.003L109.638 36.9184L108.937 38.1535L108.054 39.6577C107.907 39.9077 107.759 40.1578 107.607 40.4046C107.471 40.6219 107.35 40.8099 107.242 40.9634L106.979 41.3447L107.067 41.5275L107.878 41.4723C108.009 41.4671 108.142 41.4654 108.273 41.4654C108.437 41.4637 108.632 41.4637 108.858 41.4637C109.391 41.4671 109.846 41.4723 110.224 41.4775C110.6 41.481 110.898 41.4861 111.117 41.4947L111.675 41.5275L111.651 41.1462L111.675 40.7237C111.547 40.7513 111.435 40.7771 111.34 40.7979C111.245 40.8203 111.169 40.8358 111.109 40.8427C111.005 40.8634 110.878 40.879 110.721 40.8876C110.567 40.8979 110.388 40.9031 110.184 40.9065C109.984 40.9151 109.801 40.922 109.632 40.9255C109.46 40.9289 109.303 40.9306 109.156 40.9306L108.749 40.922L109.101 40.2683L109.801 39.0418L110.598 37.6721L111.402 36.3578L111.721 35.8402L111.651 35.6592L110.759 35.6902C110.202 35.7057 109.636 35.7144 109.063 35.7144C108.546 35.723 108.13 35.7144 107.821 35.6902L107.328 35.6592L107.343 35.961L107.328 36.3199L107.806 36.2973L108.753 36.2629L109.605 36.249ZM119.625 35.7247L118.766 35.7022L119.037 36.1387C119.123 36.2767 119.208 36.4165 119.29 36.5561C119.366 36.6855 119.435 36.808 119.499 36.9184L120.27 38.407L120.636 39.0832V40.27L120.612 40.9703L120.581 41.4792L121.264 41.4637L121.926 41.4792L121.876 40.9945C121.861 40.7944 121.852 40.5098 121.852 40.1354C121.852 39.9974 121.855 39.8767 121.859 39.7749C121.861 39.6732 121.864 39.5904 121.868 39.5231L121.924 39.0832L122.257 38.3518L123.015 36.8701C123.113 36.6717 123.196 36.5078 123.261 36.3819C123.327 36.256 123.375 36.1697 123.413 36.1214L123.675 35.7006L123.222 35.723L122.775 35.7006L122.623 36.1059C122.571 36.2474 122.521 36.3837 122.473 36.5078C122.43 36.6217 122.382 36.7355 122.33 36.8459C122.273 36.977 122.212 37.1168 122.145 37.2651C122.071 37.4221 121.997 37.5808 121.923 37.7377L121.595 38.3915L121.269 37.7532C121.19 37.6014 121.112 37.4497 121.038 37.2961C120.972 37.1599 120.912 37.0236 120.855 36.8856C120.788 36.7442 120.726 36.6044 120.67 36.475C120.615 36.3456 120.564 36.2215 120.52 36.1076L120.369 35.7022L119.625 35.7247ZM131.238 41.1462L131.222 41.4792L131.595 41.4637L131.936 41.4792L131.912 41.1376C131.895 40.8582 131.888 40.4511 131.888 39.9198L131.872 38.6762L131.879 37.8015L131.895 37.4652L132.326 37.9344L133.304 38.9935C133.742 39.4559 134.099 39.8456 134.379 40.1631C134.515 40.3183 134.65 40.4735 134.784 40.6306C134.901 40.7685 135.015 40.9065 135.126 41.048L135.462 41.4775L135.869 41.4619L136.235 41.4775L136.218 41.0394V40.1804L136.226 38.6054L136.25 36.9391L136.281 36.056V35.6988L135.923 35.7212L135.571 35.6988L135.586 36.1284L135.61 37.0512L135.643 38.0862L135.659 39.0108L135.674 39.7422L135.252 39.3143C135.1 39.1557 134.948 38.997 134.8 38.8366C134.632 38.6572 134.467 38.476 134.303 38.2949L133.34 37.2444C133.125 37.0047 132.944 36.7994 132.79 36.6286C132.669 36.4905 132.55 36.3509 132.433 36.2094L132.043 35.7006L131.629 35.723L131.217 35.7006L131.241 36.2335L131.279 37.0615L131.286 38.407L131.27 39.9285C131.26 40.1562 131.251 40.3838 131.246 40.6116C131.246 40.8134 131.243 40.9911 131.238 41.1462ZM144.092 40.8755L143.79 41.481L144.244 41.4654L144.673 41.481L144.841 40.9014C144.88 40.7771 144.92 40.6547 144.961 40.534C145.001 40.4115 145.041 40.2959 145.08 40.1837L145.215 39.8267L145.645 39.7784C145.713 39.7698 145.793 39.7663 145.884 39.7646C145.976 39.7628 146.079 39.7628 146.195 39.7628C146.312 39.7628 146.417 39.7646 146.514 39.7698C146.611 39.7714 146.693 39.7749 146.761 39.7801L147.207 39.8284L147.326 40.1959L147.59 40.9203L147.756 41.4843L148.456 41.4688L149.26 41.4843L148.958 40.8634C148.473 39.8284 147.978 38.6503 147.476 37.3289L147.088 36.2698L146.88 35.7057L146.514 35.7281L146.219 35.7057L146.021 36.2698L145.607 37.3444C145.355 37.9723 145.096 38.6002 144.83 39.223C144.591 39.7749 144.344 40.3269 144.092 40.8755ZM145.47 39.1626L145.605 38.8366L146.012 37.8102L146.212 37.3324L146.404 37.8102L146.817 38.8366L146.952 39.1626L146.683 39.2022C146.617 39.2109 146.552 39.2144 146.483 39.216C146.412 39.2195 146.34 39.2195 146.259 39.2195C146.077 39.2195 145.908 39.2109 145.757 39.1953L145.47 39.1626Z" fill="#BDC7CE"/>
6
+ <svg width="200" height="62" viewBox="0 0 200 62" fill="none" xmlns="http://www.w3.org/2000/svg" class="group">
7
+ <path class="fill-[#846D41]" d="M42.5587 30.7173L34.667 30.8673V29.9151L42.5604 30.1083C42.557 30.2273 42.557 30.3447 42.557 30.4619C42.557 30.5483 42.5587 30.6345 42.5587 30.7173ZM56.2601 16.3656L56.0669 8.74805H57.0312L56.8829 16.3656C56.7724 16.3621 56.6603 16.3621 56.5482 16.3621C56.4533 16.3621 56.355 16.3638 56.2601 16.3656ZM70.5377 30.1083L78.4311 29.9151V30.8673L70.5394 30.7189C70.5412 30.6345 70.5429 30.5499 70.5429 30.4637C70.5429 30.3447 70.5429 30.2273 70.5377 30.1083ZM42.657 32.1559L34.836 33.1149L34.736 32.1662L42.5984 31.5487C42.6122 31.7523 42.6329 31.9541 42.657 32.1559ZM54.7853 16.4724L53.7952 8.9171L54.7526 8.81706L55.4062 16.4086C55.1993 16.4276 54.9923 16.4466 54.7853 16.4724ZM70.4291 28.6714L78.2621 27.6675L78.3622 28.6145L70.4929 29.2769C70.4756 29.0751 70.4566 28.875 70.4291 28.6714ZM42.8985 33.579L35.2397 35.3332L35.0396 34.4018L42.7795 32.9822C42.814 33.1822 42.8554 33.3806 42.8985 33.579ZM53.3346 16.7364L51.551 9.31556L52.4946 9.11892L53.9435 16.6087C53.74 16.645 53.5347 16.6898 53.3346 16.7364ZM70.1772 27.2518L77.8585 25.4475L78.0568 26.3807L70.3014 27.8503C70.2651 27.6503 70.2237 27.4519 70.1772 27.2518ZM43.2867 34.9727L35.8745 37.4998L35.5795 36.5925L43.1073 34.3897C43.1625 34.5846 43.2211 34.7795 43.2867 34.9727ZM51.9201 17.1539L49.3637 9.94345L50.2797 9.65021L52.5117 16.9589C52.3117 17.0192 52.1151 17.0848 51.9201 17.1539ZM69.7821 25.8649L77.2237 23.2826L77.5204 24.1899L69.9667 26.448C69.9081 26.2531 69.8477 26.0599 69.7821 25.8649ZM43.818 36.3234L36.7335 39.5853L36.3419 38.7142L43.5747 35.761C43.6541 35.9491 43.7334 36.1371 43.818 36.3234ZM50.5608 17.7145L47.2524 10.7939L48.1338 10.4092L51.1283 17.4608C50.9369 17.5419 50.7472 17.6265 50.5608 17.7145ZM69.244 24.5264L76.3647 21.1972L76.7527 22.0682L69.4855 25.0835C69.4096 24.8955 69.3302 24.711 69.244 24.5264ZM44.4872 37.6137L37.8082 41.5724L37.3286 40.7462L44.1871 37.0738C44.2837 37.2566 44.3837 37.4378 44.4872 37.6137ZM49.2706 18.4182L45.2428 11.8547L46.0794 11.3821L49.8071 18.1042C49.6242 18.2061 49.4466 18.3096 49.2706 18.4182ZM68.5713 23.2429L75.29 19.2083L75.7712 20.0345L68.8731 23.7777C68.7748 23.5966 68.6747 23.4189 68.5713 23.2429ZM64.6711 42.0193L64.6383 41.971C64.8074 41.8502 64.9747 41.7242 65.1368 41.5966L65.4577 42.0193H64.6711ZM45.2876 38.8332L40.9994 42.0193H39.4814L44.934 38.3278C45.0461 38.4986 45.1651 38.6677 45.2876 38.8332ZM48.0649 19.2514L43.3539 13.1208L44.1371 12.5637L48.565 18.8839C48.396 19.003 48.2287 19.1238 48.0649 19.2514ZM67.7692 22.0354L74.0135 17.3418L74.5776 18.1146L68.1244 22.5357C68.0089 22.3667 67.8916 22.1994 67.7692 22.0354ZM66.6204 42.0193L65.7906 41.0515C65.9458 40.9135 66.0977 40.7738 66.246 40.6289L67.5501 42.0193H66.6204ZM46.2122 39.9665L43.9784 42.0193H42.8088L45.8068 39.499C45.9379 39.6595 46.0725 39.8147 46.2122 39.9665ZM46.9556 20.1984L41.61 14.5698L42.3293 13.935L47.4128 19.7827C47.2558 19.919 47.1058 20.0569 46.9556 20.1984ZM66.8446 20.9143L72.5473 15.6169L73.1873 16.3275L67.2481 21.3765C67.1171 21.2196 66.9825 21.0643 66.8446 20.9143ZM68.9524 42.0193L66.836 40.0235C66.974 39.8699 67.1102 39.7146 67.243 39.5577L70.0927 42.021H68.9524V42.0193ZM47.254 41.0032L46.3554 42.0193H45.4101L46.8004 40.5789C46.9487 40.7238 47.0989 40.8652 47.254 41.0032ZM45.9517 21.2541L40.0282 16.1913L40.6751 15.4875L46.3622 20.7969C46.2226 20.9471 46.0846 21.0988 45.9517 21.2541ZM65.8061 19.8896L70.9068 14.0506L71.6193 14.6923L66.2581 20.3088C66.1115 20.1674 65.9597 20.0259 65.8061 19.8896ZM71.8573 42.0193L67.7692 38.8937C67.8899 38.728 68.0107 38.5589 68.1262 38.3899L73.3339 42.0193H71.8573ZM48.4012 41.9296L48.3357 42.0193H47.5387L47.9043 41.5518C48.0649 41.6812 48.2322 41.8053 48.4012 41.9296ZM45.0651 22.4063L38.6241 17.968L39.1933 17.1987L45.4239 21.9078C45.3014 22.0717 45.1807 22.2373 45.0651 22.4063ZM64.666 18.9754L69.1129 12.6637L69.8891 13.2278L65.161 19.348C64.9988 19.2204 64.8333 19.0944 64.666 18.9754ZM75.1969 41.726L68.5764 37.6758C68.6816 37.4998 68.7817 37.3204 68.8783 37.1393L75.6833 40.9032L75.1969 41.726ZM44.3027 23.638L37.4149 19.8793L37.9013 19.0565L44.6097 23.1084C44.5028 23.2826 44.401 23.4585 44.3027 23.638ZM63.4308 18.1836L67.1792 11.4683L68.0107 11.9496L63.9639 18.5028C63.7879 18.3924 63.6102 18.2872 63.4308 18.1836ZM76.287 39.7492L69.2508 36.3872C69.3354 36.2026 69.4165 36.0147 69.4941 35.8266L76.6855 38.8798L76.287 39.7492ZM43.6731 24.9386L36.4144 21.9044L36.8111 21.035L43.9214 24.3815C43.8335 24.5643 43.7507 24.7506 43.6731 24.9386ZM62.1182 17.5246L65.1299 10.4765L66.008 10.8715L62.6822 17.7869C62.4976 17.6937 62.3096 17.6075 62.1182 17.5246ZM77.1633 37.6671L69.7874 35.04C69.8528 34.8468 69.9133 34.6536 69.9702 34.4569L77.4652 36.7616L77.1633 37.6671ZM43.178 26.2945L35.6312 24.0175L35.9366 23.1136L43.3695 25.7149C43.3005 25.9081 43.2366 26.1013 43.178 26.2945ZM60.7399 17.0072L62.991 9.70369L63.9052 10.0056L61.3299 17.2091C61.1349 17.1349 60.9382 17.0675 60.7399 17.0072ZM77.8171 35.5075L70.1841 33.648C70.229 33.4513 70.2704 33.2512 70.3066 33.0494L78.0241 34.5777L77.8171 35.5075ZM42.8261 27.6934L35.0758 26.2065L35.2828 25.2749L42.9589 27.0983C42.9106 27.2949 42.8675 27.495 42.8261 27.6934ZM59.3133 16.6381L60.7831 9.15342L61.7232 9.35869L59.9223 16.7761C59.7205 16.7261 59.5169 16.6795 59.3133 16.6381ZM78.2397 33.2926L70.4324 32.2266C70.4583 32.0248 70.4791 31.823 70.4946 31.6194L78.3484 32.3456L78.2397 33.2926ZM42.6191 29.1199L34.7515 28.4368L34.8585 27.4898L42.6881 28.5128C42.6639 28.7162 42.6381 28.9181 42.6191 29.1199ZM57.8523 16.4241L58.525 8.83257L59.4841 8.93952L58.4715 16.4949C58.2663 16.4655 58.0592 16.4431 57.8523 16.4241Z" fill="#BDC7CE"/>
8
+ <path class="fill-[#846D41]" d="M66.4774 20.398C67.5676 20.5706 68.4974 21.1208 69.327 21.8643L70.2206 22.6611L69.327 23.4581C68.4957 24.1999 67.5658 24.7536 66.4774 24.9244V26.708C66.4774 27.3514 66.9121 28.3777 67.1277 29.0005C67.5952 30.3562 68.004 31.9794 66.612 32.9627L53.3988 42.3224L53.3452 41.5634C53.1573 38.8932 53.8627 38.1911 54.5648 35.8297C54.6717 35.4725 54.3785 34.7135 54.256 34.3703C53.9128 33.4215 53.5833 32.5211 53.5833 31.4948V28.5278L47.7184 32.6867L47.1233 31.7C43.8821 26.3284 43.8821 18.994 47.1233 13.6224L47.7184 12.6391L53.5833 16.7963V13.8294C53.5833 12.8047 53.9128 11.9043 54.256 10.9538C54.3785 10.6123 54.6717 9.85158 54.5648 9.49451C53.8627 7.1313 53.159 6.43096 53.3452 3.75899L53.4005 3L66.6137 12.3597C66.9966 12.6305 67.283 12.9841 67.4382 13.4309C67.7608 14.352 67.4348 15.437 67.1295 16.3219C66.9139 16.9447 66.4792 17.971 66.4792 18.6144V20.398H66.4774Z" fill="#BDC7CE"/>
9
+ <path class="fill-[#fff]" d="M66.0509 20.779C67.1928 20.8567 68.157 21.3913 69.0437 22.1814L69.5801 22.6593L69.0437 23.137C68.1588 23.9288 67.1928 24.4618 66.0509 24.5377V26.7042C66.0509 28.3517 68.2951 31.2755 66.3648 32.6106L53.7709 41.5287C53.5828 38.8274 54.2504 38.3875 54.9749 35.9449C55.1215 35.4533 54.8247 34.6822 54.6574 34.22C54.3348 33.3247 54.0106 32.4588 54.0106 31.4893V27.6961L47.8472 32.0655L47.4902 31.4738C44.3301 26.2385 44.3301 19.0731 47.4902 13.836L47.8472 13.2444L54.0106 17.6154V13.8274C54.0106 12.858 54.3348 11.992 54.6574 11.0968C54.8247 10.6345 55.1215 9.86342 54.9749 9.37008C54.2504 6.93098 53.5828 6.48939 53.7709 3.78809L66.3648 12.7062C68.2951 14.0413 66.0509 16.9651 66.0509 18.6125V20.779Z" fill="white"/>
10
+ <path class="fill-[#123258]" d="M54.6528 13.828C54.6528 12.0513 55.9655 10.4505 55.5911 9.18959C55.1548 7.71646 54.5216 6.72115 54.3095 5.14453L66.003 13.2364C67.4106 14.2092 65.4114 16.9243 65.4114 18.6148V21.4282C66.7086 21.3126 67.7194 21.8577 68.6181 22.6633C67.7194 23.4671 66.7069 24.0122 65.4114 23.8967V26.7101C65.4114 28.4006 67.4106 31.1139 66.003 32.0903L54.3095 40.1803C54.5234 38.602 55.1548 37.6068 55.5911 36.1336C55.9655 34.8727 54.6528 33.2719 54.6528 31.4969V26.46L48.0409 31.1484C45.0033 26.115 45.0033 19.2064 48.0409 14.173L54.6528 18.8632V13.828Z" fill="#BDC7CE"/>
11
+ <path class="fill-[#fff]" d="M63.3791 12.5789C60.8608 11.2058 58.463 9.74302 56.4172 7.80762C56.8864 10.0069 57.9869 11.7267 59.7774 13.1636C60.1345 13.45 59.9775 13.9968 59.291 13.8933C57.8575 13.6794 57.6678 12.465 56.1274 12.189V18.6146C57.6696 18.3368 57.8575 17.1259 59.291 16.9103C59.9758 16.8068 60.1345 17.3536 59.7774 17.6399C58.0335 19.0389 56.9433 20.7086 56.4568 22.8269L56.4189 22.7907L56.4431 22.8925L56.4189 22.9942L56.4568 22.9597C56.9451 25.0798 58.0335 26.746 59.7774 28.1467C60.1345 28.4331 59.9758 28.9799 59.291 28.8763C57.8575 28.6625 57.6678 27.4499 56.1274 27.1738V33.5993C57.6696 33.3233 57.8575 32.1089 59.291 31.8933C59.9758 31.7916 60.1345 32.3384 59.7774 32.623C57.9869 34.06 56.8881 35.7797 56.4172 37.979C58.463 36.0454 60.8608 34.5826 63.3791 33.2094C63.9795 32.88 63.9915 32.3539 63.2947 31.8002C63.1135 31.6553 63.06 31.3776 63.3447 31.3137C64.1623 31.1258 64.5642 30.8152 64.8886 30.3858C64.5642 29.9597 64.1623 29.6474 63.3447 29.4577C63.0618 29.3921 63.1135 29.1145 63.2947 28.9696C63.9915 28.4175 63.9811 27.8897 63.3791 27.562C60.9038 26.2131 58.5492 24.7778 56.5259 22.8925C58.5475 21.0106 60.9038 19.5736 63.3791 18.2247C63.9795 17.8969 63.9915 17.3674 63.2947 16.8171C63.1135 16.6722 63.06 16.3928 63.3447 16.3289C64.1623 16.1409 64.5642 15.8304 64.8886 15.4026C64.5642 14.9748 64.1623 14.6644 63.3447 14.4746C63.0618 14.4091 63.1135 14.1331 63.2947 13.9864C63.9915 13.4362 63.9795 12.9066 63.3791 12.5789ZM63.4482 21.9127C63.8708 21.3952 64.1916 20.7518 64.1847 20.0342L59.2358 22.8597L64.1847 25.6887C64.1916 24.9693 63.8708 24.3276 63.4482 23.8084C64.0209 23.5617 64.5452 23.2392 65.0317 22.8597C64.5452 22.4819 64.0209 22.1594 63.4482 21.9127ZM54.6145 20.0704C52.0962 18.6973 49.6984 17.2345 47.6526 15.3026C48.1201 17.4985 49.2223 19.22 51.0112 20.6552C51.3682 20.9432 51.206 21.5177 50.5247 21.3866C49.0912 21.1089 48.2667 19.8289 46.7246 19.6823V26.1078C48.2667 25.9767 49.0912 24.6709 50.5247 24.4036C51.206 24.2776 51.3682 24.8469 51.0112 25.1332C49.2223 26.5701 48.1218 28.2898 47.6526 30.4875C49.6967 28.5539 52.0944 27.0927 54.6145 25.7162C55.2149 25.3885 55.2253 24.8607 54.5283 24.3087C54.3473 24.1638 54.2937 23.886 54.5784 23.8222C55.396 23.6325 55.7996 23.3219 56.124 22.8941C55.7996 22.4681 55.396 22.1576 54.5784 21.9679C54.2955 21.9024 54.3473 21.6246 54.5283 21.4814C55.2269 20.926 55.2149 20.3982 54.6145 20.0704Z" fill="white"/>
12
+ <path class="fill-[#123258]" d="M65.0786 50.3068C69.41 48.9924 72.3683 46.3066 74.5659 42.9688H69.2719C68.6113 44.6006 67.2296 45.1077 65.2459 44.68C65.7789 46.0979 65.6857 48.5266 63.5899 49.0925C60.7679 49.8549 59.2551 47.3623 60.5557 46.0582C61.4217 47.7245 62.9086 46.8345 63.0673 45.7287C63.2605 44.3832 60.566 43.545 59.3552 44.9577C58.1494 46.3618 57.8388 49.246 61.2181 50.7967C63.3001 51.7541 64.7629 52.4337 65.5771 54.3329C65.96 53.4134 66.0808 51.5591 65.0786 50.3068ZM53.994 52.2923H59.0671C57.7613 51.5505 57.2213 50.8105 56.5296 49.5892C55.8396 50.8087 55.3015 51.5505 53.994 52.2923ZM54.7098 42.9688H58.3512C57.4128 43.4845 57.0264 44.0003 56.5296 44.8456C56.0346 44.0021 55.6482 43.4863 54.7098 42.9688ZM48.1463 50.3068C43.8149 48.9924 40.8548 46.3066 38.6572 42.9688H43.9529C44.6118 44.6006 45.9952 45.1077 47.979 44.68C47.4459 46.0979 47.5374 48.5266 49.635 49.0925C52.457 49.8549 53.9698 47.3623 52.6691 46.0582C51.805 47.7245 50.3163 46.8345 50.1576 45.7287C49.9644 44.3832 52.6588 43.545 53.8697 44.9577C55.0755 46.3618 55.3859 49.246 52.0085 50.7967C49.9265 51.7541 48.4636 52.4337 47.6495 54.3329C47.2631 53.4134 47.1424 51.5591 48.1463 50.3068Z" fill="#BDC7CE"/>
13
+ <path class="fill-[#846D41]" d="M83.1337 19.5098H149.024V20.1238H83.1337V19.5098ZM83.1337 34.2668H149.024V34.8809H83.1337V34.2668ZM83.4252 30.5633C83.4011 30.8013 83.3752 31.0049 83.3475 31.1826C83.3286 31.3326 83.2992 31.4809 83.2613 31.6258C83.2372 31.7483 83.1957 31.8967 83.1406 32.0727C83.0734 32.2796 83.0043 32.485 82.9336 32.6902L83.5719 32.9851C83.7392 33.0662 83.9151 33.13 84.0962 33.1783C84.2825 33.2284 84.4739 33.2749 84.6706 33.3129C84.8827 33.3542 85.095 33.3836 85.3037 33.4009C85.5124 33.4198 85.7177 33.4284 85.9143 33.4284C86.5371 33.4284 87.0942 33.344 87.591 33.1732C88.0878 33.0059 88.5259 32.7575 88.9123 32.4297C89.3367 32.0433 89.6592 31.6138 89.8783 31.1394C90.0956 30.6616 90.2044 30.1373 90.2044 29.5646C90.2044 29.3765 90.1905 29.1954 90.1663 29.0195C90.1388 28.8383 90.0974 28.6589 90.0405 28.4829C89.9818 28.295 89.9146 28.1207 89.8317 27.9569C89.7524 27.7965 89.6644 27.6481 89.5661 27.5171C89.378 27.2789 89.0986 27.0357 88.7277 26.7822C88.3535 26.532 87.8877 26.2613 87.3219 25.9783C87.0804 25.8525 86.8406 25.7265 86.6009 25.5971C86.3887 25.4798 86.1817 25.3573 85.9781 25.2262C85.6832 25.0382 85.4623 24.8243 85.3158 24.5811C85.1674 24.3414 85.0932 24.0705 85.0932 23.7687C85.0846 23.5306 85.1295 23.3185 85.2226 23.127C85.3158 22.9354 85.4537 22.7699 85.6331 22.6232C85.7988 22.4836 85.9781 22.3835 86.18 22.3232C86.3818 22.261 86.6078 22.2282 86.863 22.23C87.0839 22.23 87.2995 22.2559 87.5065 22.3162C87.7134 22.3766 87.9101 22.4663 88.0912 22.5888C88.2223 22.6629 88.35 22.7905 88.4725 22.97C88.595 23.1512 88.7122 23.3701 88.8261 23.6358H89.1365C89.1952 23.4323 89.2418 23.2511 89.2745 23.0994C89.3108 22.9424 89.3419 22.8164 89.366 22.7198L89.6765 21.9178L89.2504 21.6556C88.902 21.4797 88.5329 21.345 88.1534 21.2571C87.7739 21.1726 87.3753 21.1312 86.9579 21.1312C86.4163 21.1398 85.9229 21.2157 85.4727 21.3641C85.026 21.5107 84.6257 21.7297 84.2721 22.0161C84.0514 22.1938 83.8617 22.3852 83.7046 22.5888C83.5477 22.794 83.4183 23.02 83.3217 23.2598C83.2338 23.472 83.1647 23.7031 83.1147 23.9566C83.0664 24.2292 83.0422 24.5052 83.044 24.7812C83.044 25.0106 83.0612 25.2332 83.0923 25.4419C83.1217 25.6454 83.1665 25.8455 83.2251 26.0422C83.4873 26.7787 84.0445 27.3859 84.8949 27.8603L85.9764 28.4485C86.1817 28.5554 86.38 28.6624 86.5767 28.7727C86.7682 28.8762 86.9563 28.9883 87.1391 29.1057C87.4754 29.3196 87.7289 29.5473 87.898 29.7957C88.0705 30.0423 88.1534 30.308 88.1534 30.5961C88.1534 30.8583 88.0998 31.1032 87.9877 31.3291C87.8791 31.5534 87.7204 31.757 87.5168 31.9381C87.3529 32.0692 87.1495 32.1675 86.908 32.2331C86.6647 32.2986 86.3853 32.3314 86.0765 32.3314C85.5279 32.3383 85.0657 32.1968 84.6897 31.9036C84.317 31.6087 84.0306 31.1601 83.8323 30.5633H83.4252ZM90.9081 31.9709L90.2853 33.2146L91.2186 33.1836L92.1018 33.2146L92.4468 32.0192C92.5279 31.7673 92.609 31.5137 92.6917 31.2636C92.771 31.0238 92.8521 30.7823 92.9385 30.5443L93.2161 29.8078L94.0993 29.7095C94.2391 29.6939 94.4012 29.6853 94.5892 29.6801C94.7772 29.6767 94.9911 29.6767 95.2292 29.6767C95.469 29.6767 95.6863 29.6801 95.8829 29.6887C96.0813 29.6939 96.252 29.7026 96.39 29.7095L97.3077 29.8078L97.5527 30.5616L98.0943 32.0519L98.4377 33.2128L99.8797 33.1818L101.534 33.2128L100.911 31.9364C99.9124 29.8078 98.8964 27.3842 97.8649 24.6656L97.0645 22.4922L96.6384 21.3278L95.8864 21.3778L95.2809 21.3278L94.8703 22.4922L94.02 24.7001C93.4714 26.0681 92.9401 27.3531 92.4192 28.5624C91.9328 29.706 91.429 30.8428 90.9081 31.9709ZM93.7423 28.4502L94.02 27.7792L94.8548 25.6679L95.2654 24.6846L95.6569 25.6679L96.509 27.7792L96.7868 28.4502L96.2296 28.5312C96.1002 28.5485 95.9622 28.5571 95.8208 28.5589C95.6777 28.564 95.5259 28.564 95.362 28.564C94.986 28.564 94.641 28.5485 94.3304 28.5157L93.7423 28.4502ZM103.107 33.1836L103.942 33.2146L103.975 32.1675C103.992 31.7725 104.02 31.3326 104.059 30.841C104.099 30.3511 104.147 29.8094 104.204 29.2196L104.466 26.8287L104.63 25.4384L105.319 26.7804L106.202 28.6158L107.281 30.8583C107.438 31.186 107.577 31.4775 107.701 31.7346C107.809 31.9588 107.916 32.1865 108.02 32.4141L108.346 33.2163L108.691 33.1852L109.051 33.2163L109.593 31.9243C109.781 31.4896 109.976 31.0566 110.178 30.6272C110.447 30.0493 110.726 29.4783 111.018 28.9108L112.082 26.8477L112.786 25.3884L112.917 26.7977L113.195 29.173C113.212 29.3541 113.241 29.6887 113.281 30.1821C113.319 30.6788 113.367 31.3344 113.424 32.1537L113.49 33.218L115.011 33.1869L116.388 33.218L116.108 31.6966C115.975 30.9653 115.853 30.2321 115.742 29.4972C115.62 28.7003 115.503 27.8413 115.389 26.9167C115.273 26.0732 115.177 25.2901 115.09 24.5621C115.011 23.8359 114.937 23.1563 114.882 22.5284L114.751 21.333L114.08 21.3831L113.391 21.333L112.884 22.5612C112.715 22.9372 112.508 23.3823 112.265 23.8981C111.987 24.4879 111.703 25.0728 111.409 25.654L110.002 28.3898L109.377 29.5352L108.756 28.3398C108.532 27.9172 108.311 27.4894 108.097 27.0616C107.861 26.5907 107.633 26.1164 107.413 25.6367L106.217 23.0994L105.431 21.3313L104.777 21.3813L104.057 21.3313L103.876 22.9027L103.369 26.865L103.074 28.9608C102.995 29.4386 102.917 29.9164 102.843 30.3943C102.76 30.9238 102.662 31.4982 102.55 32.121L102.338 33.218L103.107 33.1836ZM118.468 21.3778L117.143 21.3278L117.226 22.0489C117.242 22.2696 117.255 22.5335 117.264 22.8423C117.273 23.1477 117.274 23.4961 117.274 23.879V30.2873C117.266 30.6841 117.26 31.0808 117.257 31.4758C117.254 31.8053 117.248 32.0623 117.242 32.2486L117.143 33.2146L118.502 33.1836L119.91 33.2146L119.844 32.2659C119.812 31.7277 119.796 31.0721 119.796 30.3028L119.781 28.326V27.6394L120.222 28.326C120.476 28.7158 120.7 29.0747 120.892 29.3989C121.073 29.6973 121.247 29.9975 121.416 30.3028L122.513 32.2659L123.037 33.2146L124.528 33.1836L126.215 33.2146L125.526 32.2986C125.142 31.7449 124.738 31.1308 124.312 30.4581C123.859 29.7387 123.417 29.0125 122.989 28.2777L122.465 27.3445C122.827 27.2548 123.137 27.1634 123.393 27.0633C123.648 26.965 123.85 26.8615 123.988 26.7545C124.221 26.6062 124.426 26.4182 124.593 26.2008C124.761 25.9887 124.897 25.7437 125.004 25.4643C125.076 25.2797 125.126 25.0883 125.156 24.8933C125.187 24.7001 125.201 24.4983 125.201 24.2878C125.192 23.8135 125.102 23.3892 124.928 23.0183C124.755 22.644 124.497 22.3145 124.152 22.0299C123.865 21.8005 123.52 21.6245 123.117 21.5055C122.71 21.3847 122.244 21.3244 121.711 21.3244L120.17 21.3572L118.468 21.3778ZM119.779 26.9357V22.4404L120.4 22.3904C121.064 22.3904 121.563 22.556 121.895 22.8924C122.232 23.2287 122.397 23.7306 122.397 24.4017C122.39 24.7381 122.349 25.0451 122.268 25.3298C122.189 25.6161 122.063 25.8731 121.89 26.1025C121.685 26.3785 121.456 26.5872 121.202 26.7304C120.948 26.8684 120.671 26.9426 120.367 26.9495L119.779 26.9357ZM129.768 22.0644L129.816 21.3278L128.407 21.3778L127.032 21.3278L127.098 22.0144L127.146 23.2425L127.162 25.3711V28.188C127.162 28.6227 127.176 29.016 127.203 29.3645C127.229 29.7163 127.277 30.0217 127.341 30.2838C127.415 30.6358 127.538 30.96 127.714 31.2551C127.89 31.5534 128.119 31.8225 128.404 32.0674C128.895 32.5176 129.468 32.8541 130.122 33.0783C130.776 33.2974 131.509 33.4112 132.318 33.4112C132.671 33.4112 133.011 33.3905 133.341 33.3457C133.67 33.3026 133.996 33.2319 134.315 33.1335C134.66 33.0265 134.976 32.8955 135.266 32.7367C135.554 32.5781 135.823 32.3866 136.068 32.1675C136.452 31.838 136.761 31.4068 136.991 30.8703C137.22 30.3339 137.37 29.6871 137.443 28.9245C137.475 28.7124 137.501 28.3036 137.52 27.6999C137.537 27.0926 137.551 26.2957 137.56 25.3056L137.591 23.227L137.624 22.0627L137.689 21.3261L136.872 21.3761L135.971 21.3261L136.037 22.0782L136.068 23.2252L136.101 25.2884V27.4998C136.085 28.2104 136.028 28.8314 135.926 29.3541C135.83 29.8819 135.683 30.3166 135.495 30.6599C135.228 31.1585 134.872 31.5258 134.432 31.7707C133.993 32.014 133.465 32.133 132.842 32.133C132.256 32.1243 131.752 32.0261 131.336 31.8329C130.92 31.6397 130.582 31.3464 130.32 30.9531C130.201 30.7651 130.101 30.5685 130.02 30.3615C129.934 30.1303 129.875 29.8889 129.846 29.6439C129.787 29.3179 129.744 28.9746 129.711 28.621C129.68 28.2484 129.665 27.8741 129.665 27.4998L129.68 25.3867L129.73 23.2408L129.768 22.0644ZM141.277 21.3778L139.902 21.3278L139.952 22.261L139.985 23.5859L140.018 25.6161L140.001 29.0056L139.985 30.6926L139.952 32.183L139.902 33.2146L141.345 33.1836L142.669 33.2146L142.586 32.1675C142.562 31.945 142.547 31.7087 142.535 31.4551C142.526 31.1842 142.521 30.9135 142.521 30.6444V29.0056L142.536 27.8603L143.292 29.0056L144.339 30.6444C144.584 31.0118 144.794 31.336 144.967 31.6138C145.11 31.8398 145.252 32.0675 145.388 32.2986L145.912 33.2146L147.615 33.1836L149.269 33.2146L148.565 32.2814L147.354 30.5133L145.519 27.8448L144.52 26.2905L145.143 25.5523L146.78 23.7341L148.074 22.3421L149.072 21.3261L147.911 21.3761L146.814 21.3261L146.159 22.292C145.988 22.5457 145.776 22.832 145.524 23.1545C145.238 23.515 144.948 23.8722 144.653 24.224L143.556 25.5833L142.524 26.7321V25.5523L142.59 23.603L142.605 22.2783L142.671 21.3295L141.277 21.3778Z" fill="#BDC7CE"/>
14
+ <path class="fill-[#846D41]" d="M83.8958 35.7247L83.2266 35.7022L83.2507 36.1542L83.2662 36.7994L83.2834 37.7878L83.2749 39.4351L83.2662 40.2544L83.2507 40.9789L83.2266 41.481L83.9268 41.4654L84.5737 41.481L84.5323 40.9721C84.5203 40.8582 84.5116 40.7427 84.5081 40.6271C84.5048 40.4959 84.5013 40.3632 84.5013 40.232V39.4351L84.5099 38.878L84.8755 39.4351L85.3844 40.232C85.5052 40.4115 85.6069 40.5684 85.6897 40.703C85.7604 40.8134 85.8278 40.9238 85.8933 41.0359L86.1486 41.481L86.9766 41.4654L87.7822 41.481L87.4389 41.029L86.8489 40.1682L85.9589 38.871L85.4741 38.1155L85.776 37.7567L86.5729 36.8736L87.2008 36.1974L87.6856 35.704L87.1197 35.7264L86.5868 35.704L86.2676 36.1715C86.1849 36.2957 86.0796 36.4337 85.9589 36.5906C85.8191 36.7666 85.6794 36.9391 85.5362 37.1116L85.0015 37.7705L84.4995 38.3277V37.7532L84.5305 36.8062L84.5392 36.1611L84.572 35.7006L83.8958 35.7247ZM94.8718 40.8755L94.5699 41.481L95.0235 41.4654L95.4531 41.481L95.6204 40.9014C95.6601 40.7771 95.6997 40.6547 95.7412 40.534C95.7791 40.4115 95.8205 40.2959 95.8602 40.1837L95.9964 39.8267L96.426 39.7784C96.4932 39.7698 96.5726 39.7663 96.6657 39.7646C96.7572 39.7628 96.8607 39.7628 96.9762 39.7628C97.0936 39.7628 97.1988 39.7646 97.2954 39.7698C97.392 39.7714 97.4747 39.7749 97.542 39.7801L97.9887 39.8284L98.1079 40.1959L98.3718 40.9203L98.5391 41.4843L99.2394 41.4688L100.045 41.4843L99.7413 40.8634C99.2567 39.8284 98.7633 38.6503 98.2596 37.3289L97.8697 36.2698L97.6628 35.7057L97.297 35.7281L97.0021 35.7057L96.802 36.2698L96.3881 37.3444C96.1362 37.9741 95.8774 38.6002 95.6118 39.223C95.3703 39.7749 95.1254 40.3269 94.8718 40.8755ZM96.2501 39.1626L96.3846 38.8366L96.79 37.8102L96.9901 37.3324L97.1815 37.8102L97.5955 38.8366L97.7317 39.1626L97.4609 39.2022C97.3971 39.2109 97.3316 39.2144 97.2626 39.216C97.1919 39.2195 97.1195 39.2195 97.04 39.2195C96.871 39.2195 96.7037 39.2126 96.5381 39.1953L96.2501 39.1626ZM109.605 36.249H110.003L109.638 36.9184L108.937 38.1535L108.054 39.6577C107.907 39.9077 107.759 40.1578 107.607 40.4046C107.471 40.6219 107.35 40.8099 107.242 40.9634L106.979 41.3447L107.067 41.5275L107.878 41.4723C108.009 41.4671 108.142 41.4654 108.273 41.4654C108.437 41.4637 108.632 41.4637 108.858 41.4637C109.391 41.4671 109.846 41.4723 110.224 41.4775C110.6 41.481 110.898 41.4861 111.117 41.4947L111.675 41.5275L111.651 41.1462L111.675 40.7237C111.547 40.7513 111.435 40.7771 111.34 40.7979C111.245 40.8203 111.169 40.8358 111.109 40.8427C111.005 40.8634 110.878 40.879 110.721 40.8876C110.567 40.8979 110.388 40.9031 110.184 40.9065C109.984 40.9151 109.801 40.922 109.632 40.9255C109.46 40.9289 109.303 40.9306 109.156 40.9306L108.749 40.922L109.101 40.2683L109.801 39.0418L110.598 37.6721L111.402 36.3578L111.721 35.8402L111.651 35.6592L110.759 35.6902C110.202 35.7057 109.636 35.7144 109.063 35.7144C108.546 35.723 108.13 35.7144 107.821 35.6902L107.328 35.6592L107.343 35.961L107.328 36.3199L107.806 36.2973L108.753 36.2629L109.605 36.249ZM119.625 35.7247L118.766 35.7022L119.037 36.1387C119.123 36.2767 119.208 36.4165 119.29 36.5561C119.366 36.6855 119.435 36.808 119.499 36.9184L120.27 38.407L120.636 39.0832V40.27L120.612 40.9703L120.581 41.4792L121.264 41.4637L121.926 41.4792L121.876 40.9945C121.861 40.7944 121.852 40.5098 121.852 40.1354C121.852 39.9974 121.855 39.8767 121.859 39.7749C121.861 39.6732 121.864 39.5904 121.868 39.5231L121.924 39.0832L122.257 38.3518L123.015 36.8701C123.113 36.6717 123.196 36.5078 123.261 36.3819C123.327 36.256 123.375 36.1697 123.413 36.1214L123.675 35.7006L123.222 35.723L122.775 35.7006L122.623 36.1059C122.571 36.2474 122.521 36.3837 122.473 36.5078C122.43 36.6217 122.382 36.7355 122.33 36.8459C122.273 36.977 122.212 37.1168 122.145 37.2651C122.071 37.4221 121.997 37.5808 121.923 37.7377L121.595 38.3915L121.269 37.7532C121.19 37.6014 121.112 37.4497 121.038 37.2961C120.972 37.1599 120.912 37.0236 120.855 36.8856C120.788 36.7442 120.726 36.6044 120.67 36.475C120.615 36.3456 120.564 36.2215 120.52 36.1076L120.369 35.7022L119.625 35.7247ZM131.238 41.1462L131.222 41.4792L131.595 41.4637L131.936 41.4792L131.912 41.1376C131.895 40.8582 131.888 40.4511 131.888 39.9198L131.872 38.6762L131.879 37.8015L131.895 37.4652L132.326 37.9344L133.304 38.9935C133.742 39.4559 134.099 39.8456 134.379 40.1631C134.515 40.3183 134.65 40.4735 134.784 40.6306C134.901 40.7685 135.015 40.9065 135.126 41.048L135.462 41.4775L135.869 41.4619L136.235 41.4775L136.218 41.0394V40.1804L136.226 38.6054L136.25 36.9391L136.281 36.056V35.6988L135.923 35.7212L135.571 35.6988L135.586 36.1284L135.61 37.0512L135.643 38.0862L135.659 39.0108L135.674 39.7422L135.252 39.3143C135.1 39.1557 134.948 38.997 134.8 38.8366C134.632 38.6572 134.467 38.476 134.303 38.2949L133.34 37.2444C133.125 37.0047 132.944 36.7994 132.79 36.6286C132.669 36.4905 132.55 36.3509 132.433 36.2094L132.043 35.7006L131.629 35.723L131.217 35.7006L131.241 36.2335L131.279 37.0615L131.286 38.407L131.27 39.9285C131.26 40.1562 131.251 40.3838 131.246 40.6116C131.246 40.8134 131.243 40.9911 131.238 41.1462ZM144.092 40.8755L143.79 41.481L144.244 41.4654L144.673 41.481L144.841 40.9014C144.88 40.7771 144.92 40.6547 144.961 40.534C145.001 40.4115 145.041 40.2959 145.08 40.1837L145.215 39.8267L145.645 39.7784C145.713 39.7698 145.793 39.7663 145.884 39.7646C145.976 39.7628 146.079 39.7628 146.195 39.7628C146.312 39.7628 146.417 39.7646 146.514 39.7698C146.611 39.7714 146.693 39.7749 146.761 39.7801L147.207 39.8284L147.326 40.1959L147.59 40.9203L147.756 41.4843L148.456 41.4688L149.26 41.4843L148.958 40.8634C148.473 39.8284 147.978 38.6503 147.476 37.3289L147.088 36.2698L146.88 35.7057L146.514 35.7281L146.219 35.7057L146.021 36.2698L145.607 37.3444C145.355 37.9723 145.096 38.6002 144.83 39.223C144.591 39.7749 144.344 40.3269 144.092 40.8755ZM145.47 39.1626L145.605 38.8366L146.012 37.8102L146.212 37.3324L146.404 37.8102L146.817 38.8366L146.952 39.1626L146.683 39.2022C146.617 39.2109 146.552 39.2144 146.483 39.216C146.412 39.2195 146.34 39.2195 146.259 39.2195C146.077 39.2195 145.908 39.2109 145.757 39.1953L145.47 39.1626Z" fill="#BDC7CE"/>
15
15
 
16
16
  </svg>
17
17
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg class="fill-deepblue-900 dark:fill-gray-200 h-5" xmlns="https://www.w3.org/2000/svg" width="39" height="16" viewBox="0 0 39 16" fill="none">
2
+ <svg class="fill-deepblue-900 dark:fill-gray-200 h-5" xmlns="http://www.w3.org/2000/svg" width="39" height="16" viewBox="0 0 39 16" fill="none">
3
3
  <g clip-path="url(#clip0_2311_13638)">
4
4
  <path fill="currentColor" d="M6.67938 12.2763C5.76179 12.7406 4.61707 12.8859 3.74762 12.8859C1.49277 12.8859 0.333008 11.6187 0.333008 9.58158C0.333008 7.19244 2.0719 4.70593 4.92394 4.70593C6.51842 4.70593 7.66164 5.58819 7.66164 7.04714C7.66164 9.05132 5.71215 9.77331 2.55627 9.69392C2.55627 9.9186 2.6375 10.2706 2.79845 10.4953C3.10381 10.8967 3.63631 11.1049 4.31171 11.1049C5.16461 11.1049 5.88965 10.9132 6.51842 10.6076L6.67938 12.2763ZM4.63362 6.38956C3.55508 6.38956 2.94286 7.27182 2.7819 8.00879C4.58548 8.02526 5.48802 7.76763 5.48802 7.06212C5.48652 6.66218 5.16461 6.38956 4.63362 6.38956ZM10.4249 8.51208C9.05005 8.51208 7.93542 9.62202 7.93542 10.9911C7.93542 12.1355 8.71611 13.0971 9.77509 13.3817C9.89995 12.3332 9.19897 11.427 8.44084 11.5333C8.44084 11.5333 8.5341 10.9791 9.14482 10.7949C9.67582 10.6346 9.90145 10.8982 9.95109 10.9701C9.89243 10.8788 9.62016 10.4099 9.76005 9.91561C9.91499 9.36438 10.4264 9.12322 10.4264 9.12322C10.4264 9.12322 10.9379 9.36438 11.0928 9.91561C11.2312 10.4099 10.9589 10.8788 10.9018 10.9701C10.9514 10.8982 11.177 10.6346 11.708 10.7949C12.3188 10.9791 12.412 11.5333 12.412 11.5333C11.6554 11.427 10.9544 12.3332 11.0778 13.3817C12.1367 13.0971 12.9174 12.1355 12.9174 10.9911C12.9144 9.62202 11.7998 8.51208 10.4249 8.51208Z"/>
5
5
  <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M19.3931 4.88119L19.3134 5.80539H19.2818C18.8802 5.16878 18.2048 4.70593 17.1262 4.70593C15.1948 4.70743 13.5552 6.29969 13.5552 8.79967C13.5552 11.045 14.9376 12.6058 16.884 12.6058C17.7851 12.6058 18.5402 12.2388 19.0065 11.5858H19.0381V12.095C19.0381 13.5285 18.1536 14.1501 16.9954 14.1501C16.0793 14.1501 15.2098 13.8476 14.7119 13.5615L14.2291 15.3934C14.9361 15.7918 16.0296 15.9985 17.06 15.9985C18.2183 15.9985 19.3916 15.7754 20.2611 15.0429C21.1455 14.2625 21.4509 13.0357 21.4509 11.5393V7.19094C21.4509 6.02857 21.4825 5.37549 21.5156 4.88119H19.3931ZM19.0065 9.19811C19.0065 9.40482 18.99 9.65946 18.9268 9.83472C18.7658 10.4084 18.2679 10.8218 17.6407 10.8218C16.6118 10.8218 16.0327 9.91411 16.0327 8.75174C16.0327 7.33473 16.7562 6.53786 17.6407 6.53786C18.3161 6.53786 18.7824 6.96775 18.9599 7.60436C18.9915 7.73168 19.008 7.89045 19.008 8.05073V9.19811H19.0065ZM26.3547 4.70743C23.8291 4.70743 22.1579 6.31617 22.1579 8.83263C22.1579 11.3491 23.9269 12.847 26.2269 12.847C28.3343 12.847 30.3755 11.5408 30.3755 8.69033C30.3755 6.34762 28.7675 4.70743 26.3547 4.70743ZM26.29 6.42701C27.4002 6.42701 27.8499 7.60585 27.8499 8.76822C27.8499 10.1702 27.2392 11.1094 26.29 11.1094C25.2446 11.1094 24.682 10.1058 24.682 8.76822C24.682 7.62233 25.1167 6.42701 26.29 6.42701ZM30.0988 4.88119H32.7522L33.8142 8.4971C34.0068 9.15018 34.1527 9.77181 34.264 10.3919H34.3121C34.4415 9.75533 34.5693 9.16516 34.7468 8.4971L35.7607 4.88119H38.3344L35.4072 12.6702H32.9628L30.0988 4.88119Z"/>
package/icons/company.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 24 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M22.5 18.5H21V8C21 7.60217 20.842 7.22064 20.5607 6.93934C20.2794 6.65803 19.8978 6.5 19.5 6.5H13.5V2C13.5002 1.72837 13.4266 1.46179 13.2871 1.22872C13.1476 0.995642 12.9474 0.804819 12.708 0.676614C12.4685 0.54841 12.1987 0.487637 11.9274 0.500781C11.6561 0.513926 11.3935 0.600495 11.1675 0.751248L3.6675 5.75C3.46176 5.88727 3.29315 6.07328 3.17669 6.29148C3.06023 6.50968 2.99953 6.75329 3 7.00062V18.5H1.5C1.30109 18.5 1.11032 18.579 0.96967 18.7197C0.829018 18.8603 0.75 19.0511 0.75 19.25C0.75 19.4489 0.829018 19.6397 0.96967 19.7803C1.11032 19.921 1.30109 20 1.5 20H22.5C22.6989 20 22.8897 19.921 23.0303 19.7803C23.171 19.6397 23.25 19.4489 23.25 19.25C23.25 19.0511 23.171 18.8603 23.0303 18.7197C22.8897 18.579 22.6989 18.5 22.5 18.5ZM19.5 8V18.5H13.5V8H19.5ZM4.5 7.00062L12 2V18.5H4.5V7.00062ZM10.5 9.5V11C10.5 11.1989 10.421 11.3897 10.2803 11.5303C10.1397 11.671 9.94891 11.75 9.75 11.75C9.55109 11.75 9.36032 11.671 9.21967 11.5303C9.07902 11.3897 9 11.1989 9 11V9.5C9 9.30109 9.07902 9.11032 9.21967 8.96967C9.36032 8.82902 9.55109 8.75 9.75 8.75C9.94891 8.75 10.1397 8.82902 10.2803 8.96967C10.421 9.11032 10.5 9.30109 10.5 9.5ZM7.5 9.5V11C7.5 11.1989 7.42098 11.3897 7.28033 11.5303C7.13968 11.671 6.94891 11.75 6.75 11.75C6.55109 11.75 6.36032 11.671 6.21967 11.5303C6.07902 11.3897 6 11.1989 6 11V9.5C6 9.30109 6.07902 9.11032 6.21967 8.96967C6.36032 8.82902 6.55109 8.75 6.75 8.75C6.94891 8.75 7.13968 8.82902 7.28033 8.96967C7.42098 9.11032 7.5 9.30109 7.5 9.5ZM7.5 14.75V16.25C7.5 16.4489 7.42098 16.6397 7.28033 16.7803C7.13968 16.921 6.94891 17 6.75 17C6.55109 17 6.36032 16.921 6.21967 16.7803C6.07902 16.6397 6 16.4489 6 16.25V14.75C6 14.5511 6.07902 14.3603 6.21967 14.2197C6.36032 14.079 6.55109 14 6.75 14C6.94891 14 7.13968 14.079 7.28033 14.2197C7.42098 14.3603 7.5 14.5511 7.5 14.75ZM10.5 14.75V16.25C10.5 16.4489 10.421 16.6397 10.2803 16.7803C10.1397 16.921 9.94891 17 9.75 17C9.55109 17 9.36032 16.921 9.21967 16.7803C9.07902 16.6397 9 16.4489 9 16.25V14.75C9 14.5511 9.07902 14.3603 9.21967 14.2197C9.36032 14.079 9.55109 14 9.75 14C9.94891 14 10.1397 14.079 10.2803 14.2197C10.421 14.3603 10.5 14.5511 10.5 14.75Z"
5
5
  fill="currentColor"/>
package/icons/copy.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M2.81998 2.04999C2.61577 2.04999 2.41992 2.13111 2.27552 2.27552C2.13111 2.41992 2.04999 2.61577 2.04999 2.81998V8.64743C2.04999 8.85164 2.13111 9.04749 2.27552 9.19189C2.41992 9.3363 2.61577 9.41742 2.81998 9.41742H3.46748C3.75742 9.41742 3.99247 9.65247 3.99247 9.94242C3.99247 10.2324 3.75742 10.4674 3.46748 10.4674H2.81998C2.33729 10.4674 1.87437 10.2757 1.53306 9.93435C1.19175 9.59304 1 9.13012 1 8.64743V2.81998C1 2.33729 1.19175 1.87437 1.53306 1.53306C1.87437 1.19175 2.33729 1 2.81998 1H8.64743C9.13012 1 9.59304 1.19175 9.93435 1.53306C10.2757 1.87437 10.4674 2.33729 10.4674 2.81998V3.46748C10.4674 3.75742 10.2324 3.99247 9.94242 3.99247C9.65247 3.99247 9.41742 3.75742 9.41742 3.46748V2.81998C9.41742 2.61577 9.3363 2.41992 9.19189 2.27552C9.04749 2.13111 8.85164 2.04999 8.64743 2.04999H2.81998ZM7.35247 6.58247C6.92721 6.58247 6.58247 6.92721 6.58247 7.35247V13.1799C6.58247 13.6052 6.92721 13.9499 7.35247 13.9499H13.1799C13.6052 13.9499 13.9499 13.6052 13.9499 13.1799V7.35247C13.9499 6.92721 13.6052 6.58247 13.1799 6.58247H7.35247ZM5.53248 7.35247C5.53248 6.34732 6.34732 5.53248 7.35247 5.53248H13.1799C14.1851 5.53248 14.9999 6.34732 14.9999 7.35247V13.1799C14.9999 14.1851 14.1851 14.9999 13.1799 14.9999H7.35247C6.34732 14.9999 5.53248 14.1851 5.53248 13.1799V7.35247Z"
5
5
  fill="currentColor"/>
@@ -4,7 +4,7 @@
4
4
  height="16"
5
5
  viewBox="0 0 16 16"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
@@ -8,7 +8,7 @@
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="none"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <path
14
14
  d="M8 12L12.3301 4.5H3.66987L8 12Z"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
3
3
  <path d="M20.8334 -0.166626H-4.83325V16.1667H20.8334V-0.166626Z" fill="#333399" />
4
4
  <path
5
5
  d="M1.55726 7.80909H2.2401L2.45113 7.17228L2.66216 7.80909H3.34483L2.79247 8.20262L3.0035 8.83944L2.45113 8.44591L1.89876 8.83944L2.10963 8.20262L1.55726 7.80909ZM3.72867 11.5529L3.17631 11.1594L2.62394 11.5529L2.83481 10.9163L2.28244 10.5228H2.96528L3.17631 9.88594L3.38717 10.5228H4.07001L3.51764 10.9163L3.72867 11.5529ZM3.5239 5.47394L3.73477 6.11075L3.1824 5.71723L2.63004 6.11075L2.84107 5.47394L2.2887 5.08041H2.97154L3.1824 4.44375L3.39343 5.08041H4.07627L3.5239 5.47394ZM5.76286 13.5417L5.21049 13.1482L4.65812 13.5417L4.86899 12.9049L4.31662 12.5114H4.99946L5.21049 11.8746L5.42152 12.5114H6.10419L5.55183 12.9049L5.76286 13.5417ZM5.55759 3.50856L5.76846 4.14538L5.21609 3.75185L4.66373 4.14538L4.87476 3.50856L4.32239 3.11503H5.00523L5.21609 2.47838L5.42712 3.11503H6.10996L5.55759 3.50856ZM8.5466 14.2752L7.99407 13.8816L7.4417 14.2752L7.65273 13.6383L7.10037 13.2448H7.7832L7.99407 12.608L8.20511 13.2448H8.88794L8.33557 13.6383L8.5466 14.2752ZM8.33557 2.75527L8.5466 3.39208L7.99407 2.99856L7.4417 3.39208L7.65273 2.75527L7.10037 2.36174H7.7832L7.99407 1.72492L8.20511 2.36174H8.88794L8.33557 2.75527ZM10.5612 3.11503L10.7722 2.47838L10.9831 3.11503H11.6659L11.1135 3.50856L11.3246 4.14538L10.7722 3.75185L10.2199 4.14538L10.4307 3.50856L9.87851 3.11503H10.5612ZM11.3302 13.5417L10.778 13.1482L10.2254 13.5417L10.4365 12.9049L9.88411 12.5114H10.5669L10.778 11.8746L10.9888 12.5114H11.6717L11.1193 12.9049L11.3302 13.5417ZM12.5949 5.08041L12.8059 4.44375L13.0169 5.08041H13.6996L13.1473 5.47394L13.3583 6.11075L12.8059 5.71723L12.2535 6.11075L12.4644 5.47394L11.912 5.08041H12.5949ZM13.3644 11.5529L12.812 11.1594L12.2598 11.5529L12.4707 10.9163L11.9183 10.5228H12.6011L12.812 9.88594L13.023 10.5228H13.7059L13.1535 10.9163L13.3644 11.5529ZM14.1016 8.83944L13.5492 8.44591L12.9968 8.83944L13.2077 8.20262L12.6553 7.80909H13.3382L13.5492 7.17228L13.7601 7.80909H14.4429L13.8905 8.20262L14.1016 8.83944Z"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
3
3
  <path d="M20.8333 10.7222H-4.83337V16.1667H20.8333V10.7222Z" fill="#ED1C24" />
4
4
  <path d="M20.8333 5.27787H-4.83337V10.7222H20.8333V5.27787Z" fill="#2400D6" />
5
5
  <path d="M20.8333 -0.166626H-4.83337V5.27787H20.8333V-0.166626Z" fill="white" />
@@ -0,0 +1,9 @@
1
+
2
+ <template>
3
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M6.85714 5.50375C6.85714 4.83104 7.40248 4.28571 8.07519 4.28571H16.1955C16.8682 4.28571 17.4135 4.83104 17.4135 5.50375C17.4135 6.17646 16.8682 6.7218 16.1955 6.7218H8.07519C7.40248 6.7218 6.85714 6.17646 6.85714 5.50375Z" fill="currentColor"/>
5
+ <path d="M6.85714 11.072C6.85714 10.3993 7.40248 9.85394 8.07519 9.85394H16.1955C16.8682 9.85394 17.4135 10.3993 17.4135 11.072C17.4135 11.7447 16.8682 12.29 16.1955 12.29H13.3534V18.4962C13.3534 19.1689 12.8081 19.7143 12.1353 19.7143C11.4626 19.7143 10.9173 19.1689 10.9173 18.4962V12.29H8.07519C7.40248 12.29 6.85714 11.7447 6.85714 11.072Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>
8
+ <script setup lang="ts">
9
+ </script>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg xmlns="https://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" fill="none">
3
3
  <path d="M-3 7.53831V8.61521H18.9994V7.53831H6.75007H-3Z" fill="white" />
4
4
  <path d="M18.9994 8.61521H-3V9.69225H19L18.9994 8.61521Z" fill="#B22234" />
5
5
  <path d="M19 10.7692H-3V11.8461H19V10.7692Z" fill="#B22234" />
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg xmlns="https://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
3
3
  <path d="M25.6667 -0.166626H0V16.1667H25.6667V-0.166626Z" fill="#DE2910" />
4
4
  <path
5
5
  d="M4.86468 3.34606L4.31446 1.69132L3.76588 3.34606H1.98837L3.42653 4.36857L2.87795 6.02331L4.31446 5.00079L5.75261 6.02331L5.20404 4.36857L6.64054 3.34606H4.86468Z"
package/icons/delete.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M6.65891 2.62092C7.0169 2.25375 7.49957 2.05 7.99995 2.05C8.50034 2.05 8.98301 2.25375 9.341 2.62092C9.6933 2.98225 9.89607 3.47279 9.9029 3.98845H6.09701C6.10384 3.47279 6.30661 2.98225 6.65891 2.62092ZM5.56896 5.03845L5.57183 5.03845L5.5747 5.03845H10.4252L10.4281 5.03845L10.4309 5.03845H11.8456V13.4788C11.8456 13.608 11.7954 13.7293 11.7102 13.8167C11.6254 13.9036 11.5133 13.95 11.3993 13.95H4.60058C4.48658 13.95 4.37447 13.9036 4.2897 13.8167C4.20449 13.7293 4.15433 13.608 4.15433 13.4788V5.03845H5.56896ZM5.04695 3.98845C5.05382 3.20262 5.36106 2.44797 5.90711 1.88791C6.45985 1.32101 7.21239 1 7.99995 1C8.78752 1 9.54006 1.32101 10.0928 1.88791C10.6389 2.44797 10.9461 3.20262 10.953 3.98845H12.3706H13.8274C14.1174 3.98845 14.3524 4.2235 14.3524 4.51345C14.3524 4.8034 14.1174 5.03845 13.8274 5.03845H12.8956V13.4788C12.8956 13.878 12.7411 14.2635 12.462 14.5497C12.1825 14.8364 11.8005 15 11.3993 15H4.60058C4.1994 15 3.81742 14.8364 3.53791 14.5497C3.25883 14.2635 3.10433 13.878 3.10433 13.4788V5.03845H2.17246C1.88251 5.03845 1.64746 4.8034 1.64746 4.51345C1.64746 4.2235 1.88251 3.98845 2.17246 3.98845H3.62933H5.04695ZM6.54308 6.97839C6.83303 6.97839 7.06808 7.21344 7.06808 7.50339V11.4895C7.06808 11.7794 6.83303 12.0145 6.54308 12.0145C6.25313 12.0145 6.01808 11.7794 6.01808 11.4895V7.50339C6.01808 7.21344 6.25313 6.97839 6.54308 6.97839ZM9.98182 7.50339C9.98182 7.21344 9.74677 6.97839 9.45682 6.97839C9.16687 6.97839 8.93182 7.21344 8.93182 7.50339V11.4895C8.93182 11.7794 9.16687 12.0145 9.45682 12.0145C9.74677 12.0145 9.98182 11.7794 9.98182 11.4895V7.50339Z"
5
5
  fill="currentColor"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" fill="currentColor" clip-rule="evenodd" d="M5.12024 3.69714C5.24646 3.57091 5.41766 3.5 5.59617 3.5H14.5355L19.0769 8.04143V19.8269C19.0769 20.0054 19.006 20.1766 18.8798 20.3029C18.7536 20.4291 18.5824 20.5 18.4039 20.5H5.59617C5.41766 20.5 5.24646 20.4291 5.12024 20.3029C4.99401 20.1766 4.9231 20.0054 4.9231 19.8269V4.17308C4.9231 3.99457 4.99401 3.82337 5.12024 3.69714ZM5.59617 2C5.01984 2 4.46711 2.22895 4.05958 2.63648C3.65204 3.04401 3.4231 3.59674 3.4231 4.17308V19.8269C3.4231 20.4033 3.65204 20.956 4.05958 21.3635C4.46711 21.771 5.01984 22 5.59617 22H18.4039C18.9802 22 19.5329 21.771 19.9405 21.3635C20.348 20.956 20.5769 20.4033 20.5769 19.8269V7.73077C20.5769 7.53186 20.4979 7.34109 20.3573 7.20044L15.3765 2.21967C15.2359 2.07902 15.0451 2 14.8462 2H5.59617ZM9.50672 6.3465C9.01681 6.3465 8.61966 6.74365 8.61966 7.23356C8.61966 7.72347 9.01681 8.12062 9.50672 8.12062C9.63196 8.12062 9.74929 8.09511 9.85532 8.04971C10.1733 7.91355 10.3938 7.59844 10.3938 7.23356C10.3938 6.74365 9.99663 6.3465 9.50672 6.3465ZM7.11966 7.23356C7.11966 5.91522 8.18838 4.8465 9.50672 4.8465C10.8251 4.8465 11.8938 5.91522 11.8938 7.23356C11.8938 7.78858 11.7044 8.29882 11.3873 8.70378C11.9192 9.06086 12.3541 9.55871 12.6611 10.1427C12.8539 10.5093 12.713 10.9628 12.3463 11.1555C11.9797 11.3483 11.5262 11.2074 11.3335 10.8407C11.1284 10.4506 10.8471 10.1415 10.5265 9.93284C10.2072 9.72497 9.85686 9.62149 9.50819 9.62149C9.15952 9.62149 8.8092 9.72497 8.48986 9.93284C8.16931 10.1415 7.88801 10.4506 7.68292 10.8407C7.49016 11.2074 7.03669 11.3483 6.67006 11.1555C6.30343 10.9628 6.16247 10.5093 6.35523 10.1427C6.66187 9.55944 7.09606 9.06211 7.62709 8.70513C7.30919 8.29966 7.11966 7.78874 7.11966 7.23356ZM6.26907 14.1346C6.26907 13.7203 6.60486 13.3846 7.01907 13.3846H16.9806C17.3948 13.3846 17.7306 13.7203 17.7306 14.1346C17.7306 14.5488 17.3948 14.8846 16.9806 14.8846H7.01907C6.60486 14.8846 6.26907 14.5488 6.26907 14.1346ZM7.01907 16.9424C6.60486 16.9424 6.26907 17.2782 6.26907 17.6924C6.26907 18.1066 6.60486 18.4424 7.01907 18.4424H12.7114C13.1256 18.4424 13.4614 18.1066 13.4614 17.6924C13.4614 17.2782 13.1256 16.9424 12.7114 16.9424H7.01907Z" />
4
4
  </svg>
5
5
  </template>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <svg class="fill-deepblue-900 dark:fill-gray-200" fill="none" height="16" viewBox="0 0 17 16" width="17"
3
- xmlns="https://www.w3.org/2000/svg">
3
+ xmlns="http://www.w3.org/2000/svg">
4
4
  <path
5
5
  d="M9.02496 1.525C9.02496 1.23505 8.78991 1 8.49996 1C8.21001 1 7.97496 1.23505 7.97496 1.525V9.97001L6.71285 8.7079C6.50783 8.50288 6.17542 8.50288 5.9704 8.7079C5.76537 8.91293 5.76537 9.24534 5.9704 9.45036L8.12872 11.6087C8.22717 11.7071 8.36071 11.7625 8.49994 11.7625C8.63918 11.7625 8.77272 11.7071 8.87117 11.6087L11.0295 9.45036C11.2345 9.24534 11.2345 8.91293 11.0295 8.7079C10.8245 8.50288 10.4921 8.50288 10.287 8.7079L9.02496 9.96999V1.525Z"
6
6
  fill="currentColor"/>
package/icons/edit.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M12.6278 2.05C12.4541 2.05 12.2822 2.0842 12.1218 2.15065C11.9613 2.2171 11.8156 2.3145 11.6928 2.43728L2.97449 11.1556L2.27325 13.7268L4.84444 13.0255L13.5627 4.30723C13.6855 4.18445 13.7829 4.03868 13.8494 3.87826C13.9158 3.71784 13.95 3.5459 13.95 3.37226C13.95 3.19861 13.9158 3.02667 13.8494 2.86625C13.7829 2.70583 13.6855 2.56006 13.5627 2.43728C13.44 2.3145 13.2942 2.2171 13.1338 2.15065C12.9734 2.0842 12.8014 2.05 12.6278 2.05ZM11.72 1.18058C12.0078 1.06136 12.3162 1 12.6278 1C12.9393 1 13.2478 1.06136 13.5356 1.18058C13.8234 1.29979 14.0849 1.47453 14.3052 1.69482C14.5255 1.9151 14.7002 2.17662 14.8195 2.46443C14.9387 2.75225 15 3.06073 15 3.37226C15 3.68378 14.9387 3.99226 14.8195 4.28008C14.7002 4.5679 14.5255 4.82941 14.3052 5.0497L5.48831 13.8666C5.42371 13.9312 5.34336 13.9778 5.25522 14.0019L1.66315 14.9815C1.48139 15.0311 1.287 14.9795 1.15378 14.8463C1.02056 14.713 0.96894 14.5186 1.01851 14.3369L1.99817 10.7448C2.02221 10.6567 2.06883 10.5763 2.13344 10.5117L10.9503 1.69482C11.1706 1.47453 11.4321 1.29979 11.72 1.18058Z"
5
5
  fill="currentColor"/>
@@ -4,7 +4,7 @@
4
4
  height="16"
5
5
  viewBox="0 0 16 16"
6
6
  fill="currentColor"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M8.05413 11.2325C7.13655 11.6968 5.99183 11.8421 5.12238 11.8421C2.86753 11.8421 1.70776 10.5749 1.70776 8.53775C1.70776 6.14861 3.44666 3.66211 6.29869 3.66211C7.89318 3.66211 9.0364 4.54437 9.0364 6.00332C9.0364 8.0075 7.08691 8.72948 3.93102 8.65009C3.93102 8.87478 4.01225 9.22678 4.17321 9.45147C4.47857 9.8529 5.01107 10.0611 5.68647 10.0611C6.53937 10.0611 7.26441 9.86938 7.89318 9.56381L8.05413 11.2325ZM6.00837 5.34574C4.92984 5.34574 4.31761 6.228 4.15666 6.96496C5.96024 6.98144 6.86278 6.7238 6.86278 6.0183C6.86128 5.61836 6.53937 5.34574 6.00837 5.34574ZM11.7997 7.46826C10.4248 7.46826 9.31017 8.5782 9.31017 9.94727C9.31017 11.0917 10.0909 12.0533 11.1499 12.3379C11.2747 11.2894 10.5737 10.3832 9.81559 10.4895C9.81559 10.4895 9.90886 9.93529 10.5196 9.75105C11.0506 9.59077 11.2762 9.8544 11.3258 9.9263C11.2672 9.83493 10.9949 9.36609 11.1348 8.87178C11.2897 8.32056 11.8012 8.0794 11.8012 8.0794C11.8012 8.0794 12.3126 8.32056 12.4676 8.87178C12.606 9.36609 12.3337 9.83493 12.2765 9.9263C12.3262 9.8544 12.5518 9.59077 13.0828 9.75105C13.6935 9.93529 13.7868 10.4895 13.7868 10.4895C13.0301 10.3832 12.3292 11.2894 12.4525 12.3379C13.5115 12.0533 14.2922 11.0917 14.2922 9.94727C14.2892 8.5782 13.1746 7.46826 11.7997 7.46826Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -0,0 +1,14 @@
1
+
2
+
3
+ <template>
4
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M11.3574 15.2141V20.357H13.9288" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M4.92883 15.2141L8.14312 20.357" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M8.14312 15.2141L4.92883 20.357" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M19.0717 16.0713C18.8951 15.5719 18.3458 15.2141 17.786 15.2141C17.1026 15.2141 16.5002 15.768 16.5002 16.4514C16.5002 16.9836 16.8624 17.4475 17.3788 17.5766L18.1052 17.7582C18.6732 17.9002 19.0717 18.4105 19.0717 18.996V19.0713C19.0717 19.7814 18.4961 20.357 17.786 20.357C17.2262 20.357 16.6768 19.9992 16.5002 19.4998" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M4.92883 12.6427V4.92841C4.92883 4.58742 5.0643 4.2604 5.30541 4.01928C5.54653 3.77816 5.87355 3.6427 6.21455 3.6427H14.5717L19.0717 8.1427V12.6427" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M14.5717 3.80341V8.14269H18.9109" stroke="currentColor" stroke-width="1.28571" stroke-linecap="round" stroke-linejoin="round"/>
11
+ </svg>
12
+ </template>
13
+ <script setup lang="ts">
14
+ </script>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M2.7827 2.33301C2.66369 2.33301 2.54956 2.38028 2.46541 2.46443C2.38126 2.54858 2.33398 2.66272 2.33398 2.78172V13.2176C2.33398 13.3366 2.38126 13.4507 2.46541 13.5349C2.54956 13.619 2.66369 13.6663 2.7827 13.6663H13.2186C13.3376 13.6663 13.4517 13.619 13.5359 13.5349C13.62 13.4507 13.6673 13.3366 13.6673 13.2176V8.94838C13.6673 8.67223 13.8911 8.44838 14.1673 8.44838C14.4434 8.44838 14.6673 8.67223 14.6673 8.94838V13.2176C14.6673 13.6018 14.5147 13.9703 14.243 14.242C13.9713 14.5137 13.6028 14.6663 13.2186 14.6663H2.7827C2.39848 14.6663 2.02999 14.5137 1.7583 14.242C1.48662 13.9703 1.33398 13.6018 1.33398 13.2176V2.78172C1.33398 2.3975 1.48662 2.02901 1.7583 1.75733C2.02999 1.48564 2.39848 1.33301 2.7827 1.33301H7.05192C7.32806 1.33301 7.55192 1.55687 7.55192 1.83301C7.55192 2.10915 7.32806 2.33301 7.05192 2.33301H2.7827ZM10.3468 1.83301C10.3468 1.55687 10.5707 1.33301 10.8468 1.33301H14.1673C14.2998 1.33301 14.4202 1.38453 14.5097 1.46864C14.5174 1.47585 14.5248 1.48331 14.532 1.49099C14.5733 1.53491 14.6051 1.58445 14.6275 1.63706C14.6531 1.69723 14.6673 1.76346 14.6673 1.83301V5.15351C14.6673 5.42966 14.4434 5.65351 14.1673 5.65351C13.8912 5.65351 13.6673 5.42966 13.6673 5.15351V3.04011L8.3542 8.35321C8.15894 8.54848 7.84236 8.54848 7.6471 8.35321C7.45184 8.15795 7.45184 7.84137 7.6471 7.64611L12.9602 2.33301H10.8468C10.5707 2.33301 10.3468 2.10915 10.3468 1.83301Z"
5
5
  fill="currentColor"/>
@@ -8,7 +8,7 @@
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="currentColor"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <g id="eye-closed">
14
14
  <path
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M2.39875 8.4542C2.28159 8.27218 2.18927 8.11694 2.12256 8.00006C2.18927 7.88318 2.28159 7.72795 2.39875 7.54592C2.67167 7.12192 3.0759 6.55793 3.60097 5.99596C4.66082 4.86164 6.15027 3.80001 8.00008 3.80001C9.84989 3.80001 11.3393 4.86164 12.3992 5.99596C12.9243 6.55793 13.3285 7.12192 13.6014 7.54592C13.7186 7.72795 13.8109 7.88318 13.8776 8.00006C13.8109 8.11694 13.7186 8.27218 13.6014 8.4542C13.3285 8.8782 12.9243 9.44219 12.3992 10.0042C11.3393 11.1385 9.84989 12.2001 8.00008 12.2001C6.15027 12.2001 4.66082 11.1385 3.60097 10.0042C3.0759 9.44219 2.67167 8.8782 2.39875 8.4542ZM14.4752 8.00006C14.9451 7.7659 14.9449 7.76553 14.9449 7.76553L14.4752 8.00006ZM14.9449 7.76553C15.0183 7.91299 15.0185 8.08676 14.9451 8.23422L14.4752 8.00006C14.9451 8.23422 14.9446 8.23508 14.9446 8.23508L14.944 8.23637L14.942 8.24024L14.9355 8.25302C14.93 8.26375 14.9222 8.27885 14.9121 8.29803C14.8919 8.33639 14.8624 8.3911 14.8239 8.45982C14.7469 8.5972 14.6333 8.79102 14.4843 9.0225C14.187 9.48445 13.7451 10.1017 13.1664 10.721C12.0189 11.9492 10.2708 13.2501 8.00008 13.2501C5.72939 13.2501 3.98131 11.9492 2.83374 10.721C2.2551 10.1017 1.81316 9.48445 1.51583 9.0225C1.36683 8.79102 1.25329 8.5972 1.17627 8.45982C1.13775 8.3911 1.1083 8.33639 1.08807 8.29803C1.07796 8.27885 1.07014 8.26375 1.06464 8.25302L1.05813 8.24024L1.05619 8.23637L1.05511 8.23422C0.98163 8.08676 0.98163 7.91336 1.05511 7.7659L1.52501 8.00006C1.05511 7.7659 1.05554 7.76505 1.05554 7.76505L1.05619 7.76375L1.05813 7.75989L1.06464 7.7471C1.07014 7.73637 1.07796 7.72127 1.08807 7.70209C1.1083 7.66373 1.13775 7.60903 1.17627 7.5403C1.25329 7.40292 1.36683 7.2091 1.51583 6.97762C1.81316 6.51567 2.2551 5.8984 2.83374 5.27911C3.98131 4.0509 5.72939 2.75 8.00008 2.75C10.2708 2.75 12.0189 4.0509 13.1664 5.27911C13.7451 5.8984 14.187 6.51567 14.4843 6.97762C14.6333 7.2091 14.7469 7.40292 14.8239 7.5403C14.8624 7.60903 14.8919 7.66373 14.9121 7.70209C14.9222 7.72127 14.93 7.73637 14.9355 7.7471L14.942 7.75989L14.944 7.76375L14.9449 7.76553ZM6.75915 8.00006C6.75915 7.30975 7.3164 6.75317 8.00008 6.75317C8.68375 6.75317 9.241 7.30975 9.241 8.00006C9.241 8.69037 8.68375 9.24695 8.00008 9.24695C7.3164 9.24695 6.75915 8.69037 6.75915 8.00006ZM8.00008 5.70316C6.73316 5.70316 5.70914 6.73319 5.70914 8.00006C5.70914 9.26693 6.73316 10.297 8.00008 10.297C9.26699 10.297 10.291 9.26693 10.291 8.00006C10.291 6.73319 9.26699 5.70316 8.00008 5.70316Z"
5
5
  fill="currentColor"/>
@@ -8,7 +8,7 @@
8
8
  height="16"
9
9
  viewBox="0 0 16 16"
10
10
  fill="currentColor"
11
- xmlns="https://www.w3.org/2000/svg"
11
+ xmlns="http://www.w3.org/2000/svg"
12
12
  >
13
13
  <path
14
14
  fill-rule="evenodd"
@@ -4,7 +4,7 @@
4
4
  height="16"
5
5
  viewBox="0 0 16 16"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
package/icons/filter.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0991 3.62619C10.0991 3.14308 10.4908 2.75143 10.9739 2.75143C11.457 2.75143 11.8486 3.14308 11.8486 3.62619C11.8486 4.10931 11.457 4.50095 10.9739 4.50095C10.4908 4.50095 10.0991 4.10931 10.0991 3.62619ZM9.12203 4.15173H1.52681C1.23694 4.15173 1.00195 3.91674 1.00195 3.62687C1.00195 3.33701 1.23694 3.10202 1.52681 3.10202H9.12164C9.34988 2.29392 10.0927 1.70172 10.9739 1.70172C11.855 1.70172 12.5979 2.29392 12.8261 3.10202H14.4752C14.765 3.10202 15 3.33701 15 3.62687C15 3.91674 14.765 4.15173 14.4752 4.15173H12.8257C12.597 4.95914 11.8545 5.55066 10.9739 5.55066C10.0932 5.55066 9.35072 4.95914 9.12203 4.15173ZM5.72668 6.07518C6.60814 6.07518 7.35119 6.66779 7.57914 7.47633H14.4732C14.7631 7.47633 14.9981 7.71131 14.9981 8.00118C14.9981 8.29105 14.7631 8.52604 14.4732 8.52604H7.57827C7.3493 9.33301 6.60702 9.92412 5.72668 9.92412C4.84634 9.92412 4.10405 9.33301 3.87509 8.52604H1.52681C1.23694 8.52604 1.00195 8.29105 1.00195 8.00118C1.00195 7.71131 1.23694 7.47633 1.52681 7.47633H3.87422C4.10217 6.66779 4.84522 6.07518 5.72668 6.07518ZM5.72668 7.12489C5.24356 7.12489 4.85192 7.51653 4.85192 7.99965C4.85192 8.48276 5.24356 8.87441 5.72668 8.87441C6.20979 8.87441 6.60144 8.48276 6.60144 7.99965C6.60144 7.51653 6.20979 7.12489 5.72668 7.12489ZM12.8257 12.8992C12.5971 13.7067 11.8546 14.2983 10.9739 14.2983C10.0932 14.2983 9.35067 13.7067 9.12201 12.8992H1.52681C1.23694 12.8992 1.00195 12.6643 1.00195 12.3744C1.00195 12.0845 1.23694 11.8495 1.52681 11.8495H9.12167C9.34993 11.0415 10.0927 10.4493 10.9739 10.4493C11.855 10.4493 12.5978 11.0415 12.8261 11.8495H14.4752C14.765 11.8495 15 12.0845 15 12.3744C15 12.6643 14.765 12.8992 14.4752 12.8992H12.8257ZM10.0991 12.3738C10.0991 11.8907 10.4908 11.499 10.9739 11.499C11.457 11.499 11.8486 11.8907 11.8486 12.3738C11.8486 12.8569 11.457 13.2485 10.9739 13.2485C10.4908 13.2485 10.0991 12.8569 10.0991 12.3738Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
package/icons/flag.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path d="M17.854 12.33L16.7026 11.11C16.4289 10.86 16.2685 10.49 16.259 10.08C16.2402 9.63 16.41 9.18 16.7215 8.85L17.854 7.65C18.8355 6.61 19.2036 5.61 18.8921 4.82C18.5901 4.04 17.6558 3.61 16.2779 3.61H6.41564V2.75C6.41564 2.34 6.09476 2 5.70782 2C5.32088 2 5 2.34 5 2.75V21.25C5 21.66 5.32088 22 5.70782 22C6.09476 22 6.41564 21.66 6.41564 21.25V16.37H16.2779C17.6369 16.37 18.5524 15.93 18.8638 15.14C19.1753 14.35 18.8166 13.36 17.854 12.33Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
package/icons/gift.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M18.4615 5.60101H15.0885C15.126 5.56801 15.1644 5.53601 15.201 5.50101C15.493 5.23121 15.7283 4.90164 15.8923 4.53293C16.0563 4.16422 16.1453 3.76429 16.1538 3.35816C16.1665 2.91387 16.0917 2.47157 15.934 2.05844C15.7763 1.6453 15.5391 1.27004 15.2369 0.955695C14.9347 0.641347 14.5739 0.394544 14.1767 0.23044C13.7795 0.0663363 13.3542 -0.0116068 12.9269 0.00139604C12.5362 0.0101473 12.1515 0.102674 11.7967 0.273184C11.442 0.443694 11.1249 0.688517 10.8654 0.992327C10.5062 1.42519 10.2143 1.9137 10 2.44023C9.78575 1.9137 9.49377 1.42519 9.13462 0.992327C8.87506 0.688517 8.558 0.443694 8.20327 0.273184C7.84854 0.102674 7.46378 0.0101473 7.07308 0.00139604C6.64584 -0.0116068 6.22055 0.0663363 5.82332 0.23044C5.4261 0.394544 5.06531 0.641347 4.76312 0.955695C4.46094 1.27004 4.22372 1.6453 4.06603 2.05844C3.90835 2.47157 3.83352 2.91387 3.84615 3.35816C3.8547 3.76429 3.94374 4.16422 4.1077 4.53293C4.27166 4.90164 4.50701 5.23121 4.79904 5.50101C4.83558 5.53401 4.87404 5.56601 4.91154 5.60101H1.53846C1.13044 5.60101 0.739122 5.76956 0.450605 6.0696C0.162087 6.36964 0 6.77658 0 7.20089V10.4007C0 10.825 0.162087 11.2319 0.450605 11.532C0.739122 11.832 1.13044 12.0006 1.53846 12.0006V18.4001C1.53846 18.8244 1.70055 19.2314 1.98907 19.5314C2.27758 19.8314 2.6689 20 3.07692 20H16.9231C17.3311 20 17.7224 19.8314 18.0109 19.5314C18.2995 19.2314 18.4615 18.8244 18.4615 18.4001V12.0006C18.8696 12.0006 19.2609 11.832 19.5494 11.532C19.8379 11.2319 20 10.825 20 10.4007V7.20089C20 6.77658 19.8379 6.36964 19.5494 6.0696C19.2609 5.76956 18.8696 5.60101 18.4615 5.60101ZM12.0192 2.05225C12.141 1.91238 12.2893 1.80021 12.4548 1.72278C12.6203 1.64534 12.7993 1.60432 12.9808 1.60228H13.0279C13.2405 1.60367 13.4508 1.64918 13.6463 1.73615C13.8419 1.82312 14.0187 1.9498 14.1666 2.10876C14.3144 2.26773 14.4303 2.45579 14.5074 2.66191C14.5844 2.86804 14.6211 3.08809 14.6154 3.30917C14.6134 3.49785 14.574 3.68408 14.4995 3.85615C14.4251 4.02823 14.3172 4.18244 14.1827 4.3091C13.2702 5.14904 11.7558 5.44502 10.8173 5.54901C10.9327 4.49008 11.25 2.95119 12.0192 2.05225ZM5.85673 2.08825C6.15475 1.77836 6.55837 1.60335 6.97981 1.60128H7.02692C7.20836 1.60332 7.38744 1.64434 7.55291 1.72178C7.71838 1.79921 7.86667 1.91138 7.98846 2.05125C8.79519 2.99919 9.07981 4.57108 9.17981 5.54301C8.24519 5.44302 6.73365 5.14304 5.82212 4.3041C5.68762 4.17744 5.57975 4.02323 5.50529 3.85115C5.43083 3.67908 5.39138 3.49285 5.38942 3.30417C5.38346 3.07942 5.42147 2.85575 5.50113 2.64673C5.5808 2.43772 5.70047 2.24772 5.85288 2.08825H5.85673ZM1.53846 7.20089H9.23077V10.4007H1.53846V7.20089ZM3.07692 12.0006H9.23077V18.4001H3.07692V12.0006ZM16.9231 18.4001H10.7692V12.0006H16.9231V18.4001ZM18.4615 10.4007H10.7692V7.20089H18.4615V10.4007Z"
5
5
  fill="currentColor"
package/icons/globe.vue CHANGED
@@ -4,7 +4,7 @@
4
4
  height="16"
5
5
  viewBox="0 0 16 16"
6
6
  fill="none"
7
- xmlns="https://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
8
  >
9
9
  <path
10
10
  fill-rule="evenodd"
@@ -0,0 +1,41 @@
1
+
2
+
3
+ <script lang="ts" setup>
4
+ </script>
5
+
6
+ <template>
7
+ <svg
8
+ width="32"
9
+ height="32"
10
+ viewBox="0 0 32 32"
11
+ fill="none"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ >
14
+ <rect
15
+ x="0.5"
16
+ y="0.5"
17
+ width="31"
18
+ height="31"
19
+ rx="5.5"
20
+ stroke="#9DA3AC"
21
+ />
22
+ <path
23
+ d="M26.501 16.2332C26.501 15.3699 26.4296 14.7399 26.2748 14.0865H16.2153V17.9832H22.12C22.001 18.9515 21.3582 20.4099 19.9296 21.3898L19.9096 21.5203L23.0902 23.935L23.3106 23.9565C25.3343 22.1249 26.501 19.4298 26.501 16.2332Z"
24
+ fill="#4285F4"
25
+ />
26
+ <path
27
+ d="M16.2147 26.5C19.1075 26.5 21.5361 25.5666 23.3099 23.9566L19.929 21.3898C19.0242 22.0082 17.8099 22.4399 16.2147 22.4399C13.3814 22.4399 10.9767 20.6082 10.1195 18.0765L9.99382 18.087L6.68656 20.5954L6.64331 20.7132C8.40519 24.1432 12.0242 26.5 16.2147 26.5Z"
28
+ fill="#34A853"
29
+ />
30
+ <path
31
+ d="M10.12 18.0766C9.89379 17.4233 9.76289 16.7232 9.76289 15.9999C9.76289 15.2765 9.89379 14.5766 10.1081 13.9232L10.1021 13.7841L6.75337 11.2355L6.64381 11.2865C5.91765 12.7099 5.50098 14.3083 5.50098 15.9999C5.50098 17.6916 5.91765 19.2899 6.64381 20.7132L10.12 18.0766Z"
32
+ fill="#FBBC05"
33
+ />
34
+ <path
35
+ d="M16.2148 9.55997C18.2267 9.55997 19.5838 10.4116 20.3576 11.1233L23.3814 8.23C21.5243 6.53834 19.1076 5.5 16.2148 5.5C12.0243 5.5 8.4052 7.85665 6.64331 11.2866L10.1076 13.9233C10.9767 11.3917 13.3815 9.55997 16.2148 9.55997Z"
36
+ fill="#EB4335"
37
+ />
38
+ </svg>
39
+ </template>
40
+
41
+ <style scoped></style>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M4.19653 6.43441L6.46582 2.77357C6.61067 2.5361 6.81417 2.33981 7.05708 2.20419C7.2972 2.07013 7.56753 2.00001 7.84241 2.00068C8.05679 1.99448 8.27023 2.0309 8.47053 2.10781C8.67461 2.18618 8.86073 2.30491 9.01801 2.45675C9.17528 2.60857 9.30053 2.79041 9.3866 2.99137C9.47266 3.19232 9.51787 3.40847 9.51968 3.62707L9.5197 3.63142V6.03146H13.3669L13.3841 6.03174C13.6204 6.03947 13.8523 6.09761 14.0644 6.20215C14.2765 6.30668 14.464 6.45515 14.6145 6.63751C14.7651 6.81986 14.8755 7.03201 14.9387 7.25992C15.0019 7.48781 15.0166 7.72654 14.9818 7.96047L14.9814 7.96301L14.1857 13.1425C14.1347 13.5421 13.9417 13.9105 13.6411 14.1789C13.6121 14.2048 13.5823 14.2296 13.5518 14.2533C13.2632 14.4768 12.9082 14.5997 12.5409 14.6001L12.5389 14.6001H6.00778C5.61434 14.6015 5.22625 14.51 4.87453 14.3331L4.20923 13.9973H4.19653V6.43441ZM3.19653 6.6047H2.02298C1.7501 6.6047 1.48939 6.71415 1.29792 6.90738C1.10662 7.10046 1 7.3613 1 7.63229V12.9697C1 13.2407 1.10662 13.5016 1.29792 13.6946C1.48939 13.8879 1.75011 13.9973 2.02298 13.9973H3.19653V6.6047Z" fill="#0070EB"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.09401 2.78798C8.0219 2.76029 7.94518 2.74752 7.86833 2.75032C7.8602 2.75062 7.85206 2.75072 7.84393 2.75064C7.74803 2.74967 7.65327 2.77377 7.56882 2.82092C7.48433 2.8681 7.41281 2.93688 7.36166 3.02103L7.35926 3.02497L7.35925 3.02496L4.90827 6.97891V12.8739L5.34624 13.095H5.34626C5.37183 13.1078 5.39773 13.1199 5.42392 13.1312C5.6073 13.2103 5.805 13.2508 6.0046 13.2501H6.00462H6.00467L6.00668 13.25L12.5398 13.2501C12.6686 13.2498 12.7942 13.2081 12.8982 13.131C12.9131 13.1199 12.9276 13.1082 12.9415 13.0957L12.9433 13.0941C13.054 12.9945 13.126 12.8567 13.1445 12.706C13.1451 12.7007 13.1459 12.6954 13.1467 12.6902L13.943 7.5062L13.9431 7.50603C13.9563 7.4173 13.9507 7.32676 13.9267 7.24046C13.9028 7.15417 13.8611 7.07429 13.8047 7.00598C13.7483 6.93769 13.6786 6.88256 13.6002 6.84393C13.524 6.80638 13.4412 6.78516 13.3569 6.7814H8.99456C8.70461 6.7814 8.46955 6.54634 8.46955 6.25639L8.46956 6.25334V3.33386C8.46867 3.25486 8.45221 3.17694 8.42126 3.10468C8.39008 3.03187 8.34489 2.96644 8.28861 2.91211C8.23235 2.85779 8.16613 2.81567 8.09401 2.78798ZM3.85825 12.6472V7.35464H2.04989V12.6472H3.85825ZM6.4657 2.4735L4.09086 6.30462H2.02286C1.74998 6.30462 1.48926 6.41407 1.2978 6.60731C1.10649 6.80038 0.999878 7.06123 0.999878 7.33221V12.6697C0.999878 12.9406 1.10649 13.2015 1.2978 13.3946C1.48927 13.5878 1.74998 13.6973 2.02286 13.6973H4.2091L4.8744 14.033C5.22613 14.2099 5.61422 14.3015 6.00766 14.3001H12.5388L12.5408 14.3001C12.908 14.2996 13.2631 14.1767 13.5516 13.9532C13.5822 13.9295 13.612 13.9048 13.641 13.8789C13.9415 13.6104 14.1345 13.242 14.1856 12.8424L14.9813 7.66293L14.9817 7.6604C15.0164 7.42647 15.0018 7.18774 14.9386 6.95984C14.8753 6.73194 14.765 6.51979 14.6144 6.33744C14.4638 6.15508 14.2764 6.0066 14.0643 5.90208C13.8522 5.79754 13.6203 5.7394 13.384 5.73167C13.3783 5.73148 13.3725 5.73139 13.3668 5.73139H9.51958V3.33135H9.51959L9.51956 3.327C9.51775 3.10839 9.47254 2.89225 9.38648 2.6913C9.30041 2.49034 9.17516 2.3085 9.01789 2.15668C8.8606 2.00484 8.67448 1.8861 8.47041 1.80774C8.27011 1.73083 8.05666 1.69441 7.84229 1.7006C7.56741 1.69993 7.29708 1.77006 7.05696 1.90412C6.81405 2.03974 6.61054 2.23603 6.4657 2.4735Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <circle cx="60.5" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
4
  <g clip-path="url(#clip0_8796_3377)">
5
5
  <path d="M30.5303 54.4273C30.167 54.1432 29.7634 53.9047 29.3303 53.7182C28.5331 53.3533 27.6528 53.1634 26.7603 53.1637C25.5619 53.16 24.3913 53.4915 23.4072 54.1133C22.4232 54.735 21.6735 55.617 21.2597 56.6394C20.8458 57.6618 20.788 58.7752 21.094 59.8285C21.4 60.8818 22.0552 61.824 22.9704 62.5273L32.4802 69.8546C32.6469 69.9807 32.8204 70.099 33.0003 70.2091C32.4046 70.0251 31.7794 69.9329 31.1503 69.9364C29.9519 69.9327 28.7813 70.2642 27.7973 70.886C26.8132 71.5078 26.0635 72.3897 25.6497 73.4121C25.2358 74.4345 25.178 75.5479 25.484 76.6012C25.79 77.6545 26.445 78.5967 27.3602 79.3L28.6203 80.2637C31.7003 82.8637 34.8703 85.3455 38.0203 87.6637C50.9203 97.1637 58.3603 97.4455 62.5603 98.1273C66.6982 98.6176 70.8818 98.706 75.0403 98.391C75.0403 98.391 83.3403 103.064 89.7103 106.009C89.7103 106.009 102.03 101.964 108.53 86.6546L104.53 84.4273C103.96 80.6364 100.93 71.5091 97.9003 64.9728C94.8703 58.4364 86.6503 57.4728 82.9003 54.3728C79.1503 51.2728 79.7903 36.1909 74.5703 34.5728C71.2203 33.5364 70.0303 35.7819 70.0303 35.7819L69.8303 35.9909V35.7909L67.8303 14.5273C67.7233 13.5299 67.211 12.6046 66.3937 11.9322C65.5763 11.2597 64.5126 10.8885 63.4103 10.8909H37.1002C36.0694 10.8861 35.0689 11.2075 34.2703 11.8C33.6637 11.8004 33.064 11.9155 32.509 12.138C31.9541 12.3606 31.4562 12.6857 31.047 13.0928C30.6378 13.4998 30.3263 13.9798 30.1323 14.5022C29.9384 15.0247 29.8662 15.5781 29.9203 16.1273L32.0303 41.8546L30.5303 54.4273ZM32.0303 41.8546L31.3502 41.3364C30.7652 40.8851 30.0882 40.543 29.3577 40.3296C28.6272 40.1163 27.8577 40.0358 27.093 40.0927C26.3283 40.1497 25.5834 40.3431 24.9009 40.6617C24.2184 40.9804 23.6116 41.4182 23.1153 41.95C22.6189 42.4819 22.2426 43.0974 22.0078 43.7615C21.7731 44.4255 21.6847 45.1251 21.7473 45.8203C21.81 46.5155 22.0226 47.1926 22.3732 47.8131C22.7237 48.4335 23.2053 48.9851 23.7903 49.4364L28.5403 53.0728C28.8081 53.2849 29.0997 53.4707 29.4103 53.6273" fill="#26282B"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="121" height="120" viewBox="0 0 121 120" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <circle cx="60.8099" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
4
  <g clip-path="url(#clip0_8755_21057)">
5
5
  <path d="M30.8402 54.4273C30.4769 54.1432 30.0733 53.9047 29.6403 53.7182C28.8431 53.3533 27.9628 53.1634 27.0702 53.1637C25.8718 53.16 24.7012 53.4915 23.7172 54.1133C22.7332 54.735 21.9834 55.617 21.5696 56.6394C21.1558 57.6618 21.0979 58.7752 21.4039 59.8285C21.71 60.8818 22.3651 61.824 23.2803 62.5273L32.7902 69.8546C32.9568 69.9807 33.1304 70.099 33.3102 70.2091C32.7146 70.0251 32.0893 69.9329 31.4602 69.9364C30.2619 69.9327 29.0912 70.2642 28.1072 70.886C27.1232 71.5078 26.3734 72.3897 25.9596 73.4121C25.5458 74.4345 25.4879 75.5479 25.794 76.6012C26.1 77.6545 26.755 78.5967 27.6702 79.3L28.9302 80.2637C32.0102 82.8637 35.1802 85.3455 38.3302 87.6637C51.2302 97.1637 58.6703 97.4455 62.8703 98.1273C67.0082 98.6176 71.1917 98.706 75.3502 98.391C75.3502 98.391 83.6503 103.064 90.0203 106.009C90.0203 106.009 102.34 101.964 108.84 86.6546L104.84 84.4273C104.27 80.6364 101.24 71.5091 98.2102 64.9728C95.1802 58.4364 86.9602 57.4728 83.2102 54.3728C79.4602 51.2728 80.1003 36.1909 74.8803 34.5728C71.5303 33.5364 70.3402 35.7819 70.3402 35.7819L70.1403 35.9909V35.7909L68.1403 14.5273C68.0333 13.5299 67.521 12.6046 66.7036 11.9322C65.8863 11.2597 64.8226 10.8885 63.7202 10.8909H37.4102C36.3794 10.8861 35.3789 11.2075 34.5802 11.8C33.9737 11.8004 33.3739 11.9155 32.819 12.138C32.2641 12.3606 31.7661 12.6857 31.3569 13.0928C30.9478 13.4998 30.6363 13.9798 30.4423 14.5022C30.2483 15.0247 30.1761 15.5781 30.2302 16.1273L32.3402 41.8546L30.8402 54.4273ZM32.3402 41.8546L31.6602 41.3364C31.0751 40.8851 30.3981 40.543 29.6676 40.3296C28.9372 40.1163 28.1677 40.0358 27.403 40.0927C26.6383 40.1497 25.8933 40.3431 25.2108 40.6617C24.5283 40.9804 23.9216 41.4182 23.4252 41.95C22.9288 42.4819 22.5525 43.0974 22.3178 43.7615C22.083 44.4255 21.9946 45.1251 22.0573 45.8203C22.1199 46.5155 22.3326 47.1926 22.6831 47.8131C23.0337 48.4335 23.5152 48.9851 24.1002 49.4364L28.8502 53.0728C29.118 53.2849 29.4096 53.4707 29.7202 53.6273" fill="white"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M14.6089 3.38833C14.7371 3.63269 14.6435 3.93505 14.3998 4.06366L11.804 5.43336C11.7169 5.47935 11.6181 5.49844 11.5201 5.4882L9.17697 5.24346C8.77986 5.20198 8.38269 5.32137 8.07384 5.57505L6.54369 6.83188C6.28783 7.04204 6.24839 7.41954 6.45526 7.6783C6.65503 7.92818 7.01441 7.97869 7.27502 7.79353L8.50577 6.91906C8.68598 6.79102 8.92872 6.79708 9.10235 6.93394L9.26375 7.06117C9.49518 7.20314 9.7564 7.23738 10.0101 7.19507C10.3321 7.14137 10.5916 6.97226 10.7105 6.81228C10.8749 6.59079 11.1874 6.54493 11.4083 6.70985C11.6292 6.87477 11.6749 7.18802 11.5104 7.4095C11.287 7.7103 10.9441 7.94616 10.5589 8.08208L12.086 9.2858L13.8913 8.08151C14.1206 7.92855 14.4302 7.99092 14.5827 8.22082C14.7353 8.45073 14.6731 8.76111 14.4438 8.91407L12.3378 10.3189C12.3164 10.3332 12.2941 10.3457 12.2712 10.3563L9.11868 12.542C8.48761 12.9795 7.6515 12.9905 7.01899 12.5696L1.55101 8.93077C1.32195 8.77834 1.26415 8.47077 1.42191 8.2438C1.57966 8.01682 1.89323 7.95639 2.12229 8.10882L7.59026 11.7477C7.87777 11.939 8.25782 11.934 8.54467 11.7351L11.2234 9.87793L8.77864 7.95083L7.85171 8.60942C7.16037 9.10064 6.20698 8.96663 5.67702 8.30374C5.12822 7.6173 5.23285 6.61584 5.91161 6.05832L6.74015 5.37778C6.49692 5.29053 6.23123 5.26564 5.96856 5.31004L4.02143 5.63915C3.91123 5.65778 3.7983 5.63996 3.70036 5.58851L1.59529 4.48254C1.35121 4.3543 1.26141 4.05459 1.39473 3.81312C1.52805 3.57165 1.834 3.47986 2.07808 3.6081L4.03206 4.63469L5.80921 4.33431C6.43358 4.22878 7.06817 4.35811 7.58979 4.68887C8.08022 4.34385 8.68031 4.18617 9.28032 4.24884L11.4732 4.47789L13.9353 3.17873C14.179 3.05012 14.4806 3.14396 14.6089 3.38833Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
package/icons/hcheck.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 38 38" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M9.37435 11.667C9.37435 10.9076 9.98996 10.292 10.7493 10.292H19.916C20.6754 10.292 21.291 10.9076 21.291 11.667C21.291 12.4264 20.6754 13.042 19.916 13.042H10.7493C9.98996 13.042 9.37435 12.4264 9.37435 11.667Z"
5
5
  fill="currentColor"/>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 36 32" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 36 32" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path
4
4
  d="M30.375 13.25C30.375 13.6147 30.2301 13.9644 29.9723 14.2223C29.7144 14.4801 29.3647 14.625 29 14.625H22.125C21.7603 14.625 21.4106 14.4801 21.1527 14.2223C20.8949 13.9644 20.75 13.6147 20.75 13.25C20.75 12.8853 20.8949 12.5356 21.1527 12.2777C21.4106 12.0199 21.7603 11.875 22.125 11.875H29C29.3647 11.875 29.7144 12.0199 29.9723 12.2777C30.2301 12.5356 30.375 12.8853 30.375 13.25ZM29 17.375H22.125C21.7603 17.375 21.4106 17.5199 21.1527 17.7777C20.8949 18.0356 20.75 18.3853 20.75 18.75C20.75 19.1147 20.8949 19.4644 21.1527 19.7223C21.4106 19.9801 21.7603 20.125 22.125 20.125H29C29.3647 20.125 29.7144 19.9801 29.9723 19.7223C30.2301 19.4644 30.375 19.1147 30.375 18.75C30.375 18.3853 30.2301 18.0356 29.9723 17.7777C29.7144 17.5199 29.3647 17.375 29 17.375ZM35.875 3.625V28.375C35.875 29.1043 35.5853 29.8038 35.0695 30.3195C34.5538 30.8353 33.8543 31.125 33.125 31.125H2.875C2.14565 31.125 1.44618 30.8353 0.930456 30.3195C0.414731 29.8038 0.125 29.1043 0.125 28.375V3.625C0.125 2.89565 0.414731 2.19618 0.930456 1.68046C1.44618 1.16473 2.14565 0.875 2.875 0.875H33.125C33.8543 0.875 34.5538 1.16473 35.0695 1.68046C35.5853 2.19618 35.875 2.89565 35.875 3.625ZM33.125 28.375V3.625H2.875V28.375H33.125ZM19.3303 22.5312C19.4215 22.8845 19.3686 23.2596 19.1832 23.5738C18.9979 23.8881 18.6953 24.1159 18.342 24.207C17.9888 24.2982 17.6137 24.2453 17.2995 24.06C16.9852 23.8746 16.7574 23.572 16.6663 23.2188C16.2142 21.4553 14.4216 20.125 12.4983 20.125C10.575 20.125 8.78406 21.4553 8.33031 23.2188C8.23914 23.572 8.01137 23.8746 7.6971 24.06C7.38283 24.2453 7.00781 24.2982 6.65453 24.207C6.30125 24.1159 5.99866 23.8881 5.81333 23.5738C5.62799 23.2596 5.57508 22.8845 5.66625 22.5312C6.11244 20.8705 7.16716 19.4384 8.62078 18.5197C7.84832 17.7518 7.32124 16.7719 7.10637 15.7041C6.8915 14.6363 6.9985 13.5287 7.41382 12.5218C7.82914 11.5149 8.53407 10.654 9.43925 10.0482C10.3444 9.44244 11.4091 9.11905 12.4983 9.11905C13.5875 9.11905 14.6521 9.44244 15.5573 10.0482C16.4625 10.654 17.1674 11.5149 17.5827 12.5218C17.9981 13.5287 18.1051 14.6363 17.8902 15.7041C17.6753 16.7719 17.1482 17.7518 16.3758 18.5197C17.831 19.4371 18.8867 20.8696 19.332 22.5312H19.3303ZM12.5 17.375C13.0439 17.375 13.5756 17.2137 14.0278 16.9115C14.4801 16.6094 14.8325 16.1799 15.0407 15.6774C15.2488 15.1749 15.3033 14.6219 15.1972 14.0885C15.0911 13.5551 14.8291 13.0651 14.4445 12.6805C14.0599 12.2959 13.5699 12.0339 13.0365 11.9278C12.5031 11.8217 11.9501 11.8762 11.4476 12.0843C10.9451 12.2925 10.5156 12.6449 10.2135 13.0972C9.91128 13.5494 9.75 14.0811 9.75 14.625C9.75 15.3543 10.0397 16.0538 10.5555 16.5695C11.0712 17.0853 11.7707 17.375 12.5 17.375Z"
5
5
  fill="currentColor"/>
package/icons/history.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M9.80011 1.6639C8.54695 1.41463 7.248 1.54256 6.06755 2.03153C4.88709 2.52049 3.87813 3.34851 3.16827 4.4109C2.587 5.28083 2.22766 6.27591 2.11654 7.30941L1.89635 7.08921C1.69132 6.88419 1.35891 6.88419 1.15389 7.08921C0.948866 7.29424 0.948866 7.62665 1.15389 7.83167L2.23303 8.91081C2.43805 9.11583 2.77046 9.11583 2.97549 8.91081L4.05462 7.83167C4.25965 7.62665 4.25965 7.29424 4.05462 7.08921C3.8496 6.88419 3.51719 6.88419 3.31217 7.08921L3.18684 7.21454C3.30292 6.42344 3.59347 5.66449 4.04131 4.99424C4.6358 4.10453 5.48077 3.41108 6.46936 3.00159C7.45796 2.5921 8.54578 2.48496 9.59527 2.69372C10.6448 2.90247 11.6088 3.41775 12.3654 4.17439C13.1221 4.93103 13.6373 5.89505 13.8461 6.94453C14.0548 7.99402 13.9477 9.08185 13.5382 10.0704C13.1287 11.059 12.4353 11.904 11.5456 12.4985C10.6558 13.093 9.60983 13.4103 8.53978 13.4103C8.24983 13.4103 8.01478 13.6453 8.01478 13.9353C8.01478 14.2252 8.24983 14.4603 8.53978 14.4603C9.8175 14.4603 11.0665 14.0814 12.1289 13.3715C13.1913 12.6617 14.0193 11.6527 14.5083 10.4723C14.9972 9.2918 15.1252 7.99286 14.8759 6.73969C14.6266 5.48652 14.0114 4.33542 13.1079 3.43193C12.2044 2.52845 11.0533 1.91317 9.80011 1.6639ZM8.53978 4.76939C8.24984 4.76939 8.01479 5.00444 8.01479 5.29438V7.75953L5.4399 10.3344C5.23487 10.5394 5.23487 10.8719 5.4399 11.0769C5.64492 11.2819 5.97733 11.2819 6.18235 11.0769L8.91101 8.34822L9.06478 8.19445V7.97699V5.29438C9.06478 5.00444 8.82973 4.76939 8.53978 4.76939Z" fill="currentColor"/>
4
4
  </svg>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
3
3
  <path fill-rule="evenodd" clip-rule="evenodd"
4
4
  d="M12.4782 8.00012C12.4782 7.30377 13.0427 6.73926 13.7391 6.73926C14.4354 6.73926 14.9999 7.30377 14.9999 8.00012C14.9999 8.69648 14.4354 9.26099 13.7391 9.26099C13.0427 9.26099 12.4782 8.69648 12.4782 8.00012Z"
5
5
  fill="currentColor"/>
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M13.4885 0.565384H1.64235C1.04758 0.565384 0.56543 1.04754 0.56543 1.64231V10.7962C0.56543 11.3909 1.04758 11.8731 1.64235 11.8731H13.4885C14.0833 11.8731 14.5654 11.3909 14.5654 10.7962V1.64231C14.5654 1.04754 14.0833 0.565384 13.4885 0.565384Z" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M0.56543 1.91183L6.8762 7.29645C7.06971 7.45763 7.31359 7.5459 7.56543 7.5459C7.81727 7.5459 8.06115 7.45763 8.25466 7.29645L14.5654 1.91183" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
6
+ </template>