adata-ui 0.3.98 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (535) hide show
  1. package/-error.vue +170 -0
  2. package/.editorconfig +12 -0
  3. package/.eslintrc.cjs +4 -0
  4. package/.gitlab-ci.yml +16 -0
  5. package/.nuxtrc +1 -0
  6. package/.nvmrc +1 -0
  7. package/.playground/app.config.ts +5 -0
  8. package/.playground/nuxt.config.ts +4 -0
  9. package/.prettierignore +24 -0
  10. package/.prettierrc +10 -0
  11. package/README.md +75 -7
  12. package/app.config.ts +27 -0
  13. package/app.vue +7 -0
  14. package/assets/img/adata-mobile.png +0 -0
  15. package/assets/img/analytics-mobile.png +0 -0
  16. package/assets/img/compliance-mobile.png +0 -0
  17. package/assets/img/empty-box.png +0 -0
  18. package/assets/img/fea-mobile.png +0 -0
  19. package/assets/img/fines-mobile.png +0 -0
  20. package/assets/img/pk-mobile.png +0 -0
  21. package/assets/img/tenders-mobile.png +0 -0
  22. package/assets/img/work-mobile.png +0 -0
  23. package/assets/styles/index.scss +101 -0
  24. package/assets/styles/modules/_base.scss +5 -0
  25. package/assets/styles/modules/_typography.scss +152 -0
  26. package/components/elements/README.md +1 -0
  27. package/components/elements/a-select-row/index.vue +140 -0
  28. package/components/elements/accordion/AAccordion.vue +196 -0
  29. package/components/elements/accordion/AAccordionGroup/AAccordionGroup.vue +145 -0
  30. package/components/elements/accordion/AAccordionGroup/types.ts +20 -0
  31. package/components/elements/accordion/AAccordionGroup/ui.config.ts +22 -0
  32. package/components/elements/accordion/types.ts +14 -0
  33. package/components/elements/accordion/ui.config.ts +22 -0
  34. package/components/elements/alert/AAlert.vue +65 -0
  35. package/components/elements/banner/ABanner.vue +49 -0
  36. package/components/elements/bg-block/ABgBlock.vue +11 -0
  37. package/components/elements/button/AButton.vue +188 -0
  38. package/components/elements/button/types.ts +24 -0
  39. package/components/elements/calendar/ACalendar.vue +83 -0
  40. package/components/elements/carousel/ACarousel.vue +159 -0
  41. package/components/elements/carousel/config.ui.ts +15 -0
  42. package/components/elements/carousel/types.ts +18 -0
  43. package/components/elements/chip-wrapper/AChipWrapper.vue +80 -0
  44. package/components/elements/chip-wrapper/types.ts +12 -0
  45. package/components/elements/chips/AChips.vue +32 -0
  46. package/components/elements/companies/AOurClients.vue +42 -0
  47. package/components/elements/curve-block/ACurveBlock.vue +196 -0
  48. package/components/elements/digit-badge/ADigitBadge.vue +83 -0
  49. package/components/elements/error-template/index.vue +48 -0
  50. package/components/elements/error-template/types.ts +23 -0
  51. package/components/elements/feature-description/AFeatureDescription.vue +112 -0
  52. package/components/elements/illustrations/noAccess.vue +62 -0
  53. package/components/elements/infinite-carousel/AInfiniteCarousel.vue +55 -0
  54. package/components/elements/infinite-scroll/AInfiniteScroll.vue +33 -0
  55. package/components/elements/leave-note/ALeaveNote.vue +77 -0
  56. package/components/elements/pagination/APagination.vue +110 -0
  57. package/components/elements/photos-animation/APhotosAnimation.vue +83 -0
  58. package/components/elements/select/ASelect.vue +389 -0
  59. package/components/elements/select/ASelectMobile.vue +186 -0
  60. package/components/elements/select/ui/select-button.vue +112 -0
  61. package/components/elements/select/ui/select-list.vue +99 -0
  62. package/components/elements/show-more/AShowMore.vue +35 -0
  63. package/components/elements/skeleton/ASkeleton.vue +44 -0
  64. package/components/elements/star-rating/AStarRating.vue +181 -0
  65. package/components/elements/star-rating/types.ts +8 -0
  66. package/components/elements/star-rating/ui/Star.vue +74 -0
  67. package/components/elements/status-badge/AStatusBadge.vue +74 -0
  68. package/components/elements/table/ATable.vue +93 -0
  69. package/components/elements/table/table.config.ts +32 -0
  70. package/components/elements/tree-select/ATreeSelect.vue +169 -0
  71. package/components/elements/tree-select/TreeService.ts +249 -0
  72. package/components/elements/tree-select/components/tree-select-nodes.vue +90 -0
  73. package/components/elements/tree-select/types.ts +34 -0
  74. package/components/elements/tree-select-mobile/ATreeSelectMobile.vue +79 -0
  75. package/components/elements/tree-select-mobile/components/ATreeSelectNodesMobile.vue +175 -0
  76. package/components/features/color-mode/AColorMode.client.vue +53 -0
  77. package/components/features/dropdown/ADropdown.vue +124 -0
  78. package/components/features/go-top/GoTop.vue +58 -0
  79. package/components/features/lang-switcher/lang-switcher.vue +56 -0
  80. package/components/features/pk-mobile-services/APkMobileServices.vue +130 -0
  81. package/components/features//321/201hange-version/AChangeVersion.vue +20 -0
  82. package/components/forms/README.md +1 -0
  83. package/components/forms/checkbox/ACheckbox.vue +151 -0
  84. package/components/forms/feedback-form/FeedbackForm.vue +171 -0
  85. package/components/forms/input/button/AInputButton.vue +53 -0
  86. package/components/forms/input/date/AInputDate.vue +213 -0
  87. package/components/forms/input/password/AInputPassword.vue +53 -0
  88. package/components/forms/input/standard/AInputStandard.vue +412 -0
  89. package/components/forms/input/textarea/ATextarea.vue +200 -0
  90. package/components/forms/radio-button/ARadioButton.vue +87 -0
  91. package/components/forms/request-demo/ARequestDemo.vue +90 -0
  92. package/components/forms/toggle/AToggle.vue +157 -0
  93. package/components/forms/toggle/types.ts +16 -0
  94. package/components/modals/AboutTariffModal.vue +113 -0
  95. package/components/modals/AnotherDeviceModal.vue +59 -0
  96. package/components/modals/ApplicationAcceptedModal.vue +47 -0
  97. package/components/modals/AuthModal.vue +50 -0
  98. package/components/modals/ConnectingTariffModal.vue +68 -0
  99. package/components/modals/ContactsMobileModel.vue +182 -0
  100. package/components/modals/ContentNavigationModal.vue +282 -0
  101. package/components/modals/Insufficient-funds-modal.vue +74 -0
  102. package/components/modals/LimitReachedModal.vue +29 -0
  103. package/components/modals/NoAccessModal.vue +37 -0
  104. package/components/modals/PaymentMethodModal.vue +101 -0
  105. package/components/modals/RedirectsBanksModal.vue +69 -0
  106. package/components/modals/ReplenishModal.vue +132 -0
  107. package/components/modals/ReportBugConfirmModal.vue +30 -0
  108. package/components/modals/ReportBugModal.vue +156 -0
  109. package/components/modals/SubmitApplicationModal.vue +111 -0
  110. package/components/navigation/README.md +1 -0
  111. package/components/navigation/bottom-navigation/ABottomNavigation.vue +101 -0
  112. package/components/navigation/breadcrumbs/ABreadcrumbs.vue +66 -0
  113. package/components/navigation/breadcrumbs/types.ts +4 -0
  114. package/components/navigation/footer/AFooter.vue +126 -0
  115. package/components/navigation/footer/NewFooter.vue +276 -0
  116. package/components/navigation/footer/ui/footer-acccordion.vue +119 -0
  117. package/components/navigation/footer/ui/new-footer-accordion.vue +120 -0
  118. package/components/navigation/header/AHeader.vue +187 -0
  119. package/components/navigation/header/AlmatyContacts.vue +143 -0
  120. package/components/navigation/header/AstanaContacts.vue +65 -0
  121. package/components/navigation/header/CardGallery.vue +248 -0
  122. package/components/navigation/header/ContactMenu.vue +114 -0
  123. package/components/navigation/header/HeaderLink.vue +247 -0
  124. package/components/navigation/header/ListItem.vue +31 -0
  125. package/components/navigation/header/NavCard.vue +41 -0
  126. package/components/navigation/header/NavList.vue +115 -0
  127. package/components/navigation/header/NotificationsMenu.vue +51 -0
  128. package/components/navigation/header/ProductMenu.vue +212 -0
  129. package/components/navigation/header/ProfileMenu.vue +189 -0
  130. package/components/navigation/header/TopHeader.vue +181 -0
  131. package/components/navigation/header/types.ts +28 -0
  132. package/components/navigation/line-tabs/ALineTabs.vue +111 -0
  133. package/components/navigation/line-tabs/types.ts +21 -0
  134. package/components/navigation/mobile-navigation/AMobileNavigation.vue +104 -0
  135. package/components/navigation/pill-tabs/APillTabs.vue +157 -0
  136. package/components/navigation/pill-tabs/types.ts +22 -0
  137. package/components/navigation/side-navigation/ASideNavigation.vue +404 -0
  138. package/components/overlays/README.md +1 -0
  139. package/components/overlays/modal/AModal.vue +332 -0
  140. package/components/overlays/sideover/ASlideover.vue +351 -0
  141. package/components/overlays/tooltip/ATooltip.vue +242 -0
  142. package/components/transitions/ATransitionHeight.vue +67 -0
  143. package/components/utils/index.ts +19 -0
  144. package/composables/highlight.ts +18 -0
  145. package/composables/modalsState.ts +8 -0
  146. package/composables/projectState.ts +2 -0
  147. package/composables/useAdaptive.ts +46 -0
  148. package/composables/useCarouselScroll.ts +49 -0
  149. package/composables/useHeaderNavigationLinks.ts +576 -0
  150. package/composables/useUIValidation.ts +16 -0
  151. package/histoire.config.ts +10 -0
  152. package/i18n/i18n.config.ts +21 -0
  153. package/i18n.config.ts +21 -0
  154. package/icons/adata-logo.vue +17 -0
  155. package/icons/arrow/arrow-bottom-left-on-square.vue +5 -0
  156. package/icons/arrow/arrow-circle-down.vue +20 -0
  157. package/icons/arrow/arrow-circle-reset.vue +16 -0
  158. package/icons/arrow/arrow-corner.vue +9 -0
  159. package/icons/arrow/arrow-graph-down.vue +13 -0
  160. package/icons/arrow/arrow-graph-up.vue +14 -0
  161. package/icons/arrow/arrow-square-down.vue +15 -0
  162. package/icons/arrow/arrow-top-right-on-square.vue +6 -0
  163. package/icons/arrow-currency-gray.vue +5 -0
  164. package/icons/arrow-currency-green.vue +5 -0
  165. package/icons/arrow-currency-red.vue +5 -0
  166. package/icons/arrow-side-up.vue +6 -0
  167. package/icons/avatar.vue +12 -0
  168. package/icons/block.vue +16 -0
  169. package/icons/bookmark/bookmark-filled.vue +18 -0
  170. package/icons/bookmark/bookmark.vue +5 -0
  171. package/icons/browsers/browser-duck.vue +65 -0
  172. package/icons/browsers/browser-google.vue +24 -0
  173. package/icons/browsers/browser-yandex.vue +13 -0
  174. package/icons/building-vector.vue +7 -0
  175. package/icons/calculator.vue +7 -0
  176. package/icons/calendar.vue +24 -0
  177. package/icons/car.vue +7 -0
  178. package/icons/check/check-circle.vue +6 -0
  179. package/icons/check/check-shield.vue +14 -0
  180. package/icons/check/check.vue +17 -0
  181. package/icons/check/checkmark-circle.vue +6 -0
  182. package/icons/checkbox/checkbox-active.vue +17 -0
  183. package/icons/checkbox/checkbox-empty.vue +10 -0
  184. package/icons/checkbox/checkbox-intermediate.vue +7 -0
  185. package/icons/chevron/chevron-down.vue +5 -0
  186. package/icons/chevron/chevron-left.vue +5 -0
  187. package/icons/chevron/chevron-right.vue +5 -0
  188. package/icons/chevron/chevron-up.vue +5 -0
  189. package/icons/chevron/double-chevron-right.vue +12 -0
  190. package/icons/clipboard-text.vue +7 -0
  191. package/icons/clock.vue +9 -0
  192. package/icons/company/company-bazis.vue +21 -0
  193. package/icons/company/company-bereke.vue +25 -0
  194. package/icons/company/company-bigroup.vue +16 -0
  195. package/icons/company/company-erg.vue +17 -0
  196. package/icons/company/company-forte.vue +23 -0
  197. package/icons/company/company-halyk.vue +15 -0
  198. package/icons/company/company-jusan.vue +14 -0
  199. package/icons/company/company-kaspi.vue +14 -0
  200. package/icons/company/company-mycar.vue +13 -0
  201. package/icons/company/company-samruk.vue +21 -0
  202. package/icons/company-egov-small.vue +15 -0
  203. package/icons/company.vue +8 -0
  204. package/icons/copy.vue +7 -0
  205. package/icons/currency/currency-dollar.vue +16 -0
  206. package/icons/currency/currency-down.vue +22 -0
  207. package/icons/currency/currency-eur.vue +57 -0
  208. package/icons/currency/currency-rub.vue +7 -0
  209. package/icons/currency/currency-usd.vue +221 -0
  210. package/icons/currency/currency-yuan.vue +25 -0
  211. package/icons/delete.vue +7 -0
  212. package/icons/document.vue +5 -0
  213. package/icons/download.vue +11 -0
  214. package/icons/edit.vue +7 -0
  215. package/icons/education.vue +16 -0
  216. package/icons/egov-small.vue +7 -0
  217. package/icons/expand-window.vue +7 -0
  218. package/icons/eye-closed.vue +26 -0
  219. package/icons/eye-open.vue +7 -0
  220. package/icons/eye-opened.vue +23 -0
  221. package/icons/file/file.vue +16 -0
  222. package/icons/file/files.vue +16 -0
  223. package/icons/filter.vue +5 -0
  224. package/icons/flag.vue +7 -0
  225. package/icons/gift.vue +8 -0
  226. package/icons/globe.vue +16 -0
  227. package/icons/graph-pie.vue +14 -0
  228. package/icons/hand/hand-thumb-up-filled.vue +5 -0
  229. package/icons/hand/hand-thumb-up.vue +5 -0
  230. package/icons/hand-with-phone/hand-with-phone-dark.vue +52 -0
  231. package/icons/hand-with-phone/hand-with-phone-light.vue +52 -0
  232. package/icons/handshake.vue +5 -0
  233. package/icons/hcheck.vue +14 -0
  234. package/icons/hdocument.vue +7 -0
  235. package/icons/history.vue +5 -0
  236. package/icons/horizontal-more.vue +13 -0
  237. package/icons/hummer.vue +16 -0
  238. package/icons/id.vue +7 -0
  239. package/icons/info/info-circle.vue +29 -0
  240. package/icons/invoice.vue +7 -0
  241. package/icons/judge.vue +14 -0
  242. package/icons/link-chain.vue +28 -0
  243. package/icons/link.vue +7 -0
  244. package/icons/linkedin.vue +24 -0
  245. package/icons/loader-circle.vue +27 -0
  246. package/icons/location.vue +8 -0
  247. package/icons/lock.vue +5 -0
  248. package/icons/logo.vue +15 -0
  249. package/icons/logout.vue +16 -0
  250. package/icons/magnify/magnifying-glass-minus.vue +8 -0
  251. package/icons/magnify/magnifying-glass-plus.vue +9 -0
  252. package/icons/magnify/magnifying-glass.vue +9 -0
  253. package/icons/mail.vue +7 -0
  254. package/icons/main-filter.vue +5 -0
  255. package/{dist/img/location.807c7100.svg → icons/map/map-pin-filled.vue} +7 -4
  256. package/icons/map/map-pin-rect.vue +15 -0
  257. package/{src/assets/location.svg → icons/map/map-pin.vue} +7 -4
  258. package/icons/map-marker-start.vue +7 -0
  259. package/icons/map-paper.vue +5 -0
  260. package/icons/medal.vue +7 -0
  261. package/icons/menu-filled.vue +20 -0
  262. package/icons/menu.vue +8 -0
  263. package/icons/message/message.vue +12 -0
  264. package/icons/minus/minus-circle.vue +10 -0
  265. package/icons/money.vue +5 -0
  266. package/icons/monitoring.vue +10 -0
  267. package/icons/moon.vue +8 -0
  268. package/icons/more.vue +29 -0
  269. package/icons/note-pencil.vue +14 -0
  270. package/icons/note.vue +14 -0
  271. package/icons/notification.vue +16 -0
  272. package/icons/paperclip.vue +7 -0
  273. package/icons/payment/payment-card.vue +6 -0
  274. package/icons/payment/payment-kaspi.vue +11 -0
  275. package/icons/person-vector.vue +7 -0
  276. package/icons/person-with-briefcase.vue +10 -0
  277. package/icons/phone-filled.vue +5 -0
  278. package/icons/phone.vue +7 -0
  279. package/icons/plus/plus-circle.vue +8 -0
  280. package/icons/plus/plus.vue +13 -0
  281. package/icons/profile.vue +5 -0
  282. package/icons/radio/radio-check.vue +8 -0
  283. package/icons/radio/radio-empty.vue +10 -0
  284. package/icons/receipt.vue +8 -0
  285. package/icons/robot.vue +14 -0
  286. package/icons/scales/scale.vue +16 -0
  287. package/icons/scales/scales.vue +5 -0
  288. package/icons/scales/standing-scales.vue +15 -0
  289. package/icons/search.vue +15 -0
  290. package/icons/share/share-alt.vue +5 -0
  291. package/icons/share/share.vue +14 -0
  292. package/icons/ship.vue +8 -0
  293. package/icons/socials/face-book.vue +15 -0
  294. package/icons/socials/instagram.vue +19 -0
  295. package/icons/socials/telegram.vue +15 -0
  296. package/icons/socials/tik-tok.vue +15 -0
  297. package/icons/socials/youtube.vue +16 -0
  298. package/icons/sort/sort-asc.vue +15 -0
  299. package/icons/sort/sort-desc.vue +15 -0
  300. package/icons/splitting-arrows.vue +8 -0
  301. package/icons/star/star-filled.vue +40 -0
  302. package/icons/star/star-half-filled.vue +20 -0
  303. package/icons/star/star.vue +25 -0
  304. package/icons/sun.vue +14 -0
  305. package/icons/sviazi.vue +5 -0
  306. package/icons/tag.vue +30 -0
  307. package/icons/tender-search.vue +11 -0
  308. package/icons/toasts/check-circle-toast.vue +6 -0
  309. package/icons/toasts/warning-triangle-toast.vue +7 -0
  310. package/icons/trash.vue +13 -0
  311. package/icons/triangle.vue +10 -0
  312. package/icons/truck.vue +7 -0
  313. package/icons/user-square.vue +14 -0
  314. package/icons/user.vue +22 -0
  315. package/icons/users-focus.vue +8 -0
  316. package/icons/users-three.vue +7 -0
  317. package/icons/users.vue +8 -0
  318. package/icons/warning/warning-circle.vue +29 -0
  319. package/icons/warning/warning-triangle-filled.vue +12 -0
  320. package/icons/warning/warning-triangle.vue +28 -0
  321. package/icons/whatsapp.vue +8 -0
  322. package/icons/work-bag.vue +11 -0
  323. package/icons/work-search.vue +10 -0
  324. package/icons/work.vue +5 -0
  325. package/icons/x-mark.vue +15 -0
  326. package/illustrations/address-location.vue +38 -0
  327. package/illustrations/ball-with-chain.vue +120 -0
  328. package/illustrations/bill.vue +133 -0
  329. package/illustrations/buildings.vue +82 -0
  330. package/illustrations/calendar.vue +156 -0
  331. package/illustrations/chains.vue +152 -0
  332. package/illustrations/coin-percent.vue +126 -0
  333. package/illustrations/coins-stack.vue +202 -0
  334. package/illustrations/delete-dark.vue +31 -0
  335. package/illustrations/delete.vue +32 -0
  336. package/illustrations/doc-with-stamp.vue +126 -0
  337. package/illustrations/document.vue +64 -0
  338. package/illustrations/door.vue +74 -0
  339. package/illustrations/empty-box.vue +77 -0
  340. package/illustrations/empty-wallet.vue +161 -0
  341. package/illustrations/graph-in-coin.vue +119 -0
  342. package/illustrations/hammer.vue +156 -0
  343. package/illustrations/hand-cash.vue +108 -0
  344. package/illustrations/info.vue +39 -0
  345. package/illustrations/mail.vue +68 -0
  346. package/illustrations/ok.vue +62 -0
  347. package/illustrations/people-group.vue +237 -0
  348. package/illustrations/person-with-phone.vue +187 -0
  349. package/illustrations/person.vue +159 -0
  350. package/illustrations/phone-check.vue +90 -0
  351. package/illustrations/phone-payment-method.vue +223 -0
  352. package/illustrations/stop-hand.vue +77 -0
  353. package/illustrations/stop-sign.vue +34 -0
  354. package/illustrations/suit.vue +111 -0
  355. package/illustrations/suitcase.vue +105 -0
  356. package/illustrations/terminal-dark.vue +48 -0
  357. package/illustrations/terminal.vue +234 -0
  358. package/illustrations/trash-can.vue +108 -0
  359. package/illustrations/turn-on-tariff.vue +38 -0
  360. package/illustrations/two-persons.vue +169 -0
  361. package/lang/en.ts +593 -0
  362. package/lang/kk.ts +594 -0
  363. package/lang/ru.ts +595 -0
  364. package/layouts/default.vue +13 -0
  365. package/nuxt.config.ts +64 -0
  366. package/package.json +65 -76
  367. package/plugins/maska.ts +5 -0
  368. package/plugins/toast.client.ts +58 -0
  369. package/public/error-illustrations/401.webp +0 -0
  370. package/public/error-illustrations/403.webp +0 -0
  371. package/public/error-illustrations/404.webp +0 -0
  372. package/public/error-illustrations/500.webp +0 -0
  373. package/public/error-illustrations/502.webp +0 -0
  374. package/public/error-illustrations/503.webp +0 -0
  375. package/public/error-illustrations/504.webp +0 -0
  376. package/public/header/compliance.webp +0 -0
  377. package/public/header/unload.webp +0 -0
  378. package/public/header/ved.webp +0 -0
  379. package/public/mode/dark-analytics-en.webp +0 -0
  380. package/public/mode/dark-analytics-kk.webp +0 -0
  381. package/public/mode/dark-analytics-ru.webp +0 -0
  382. package/public/mode/dark-complience-en.webp +0 -0
  383. package/public/mode/dark-complience-kk.webp +0 -0
  384. package/public/mode/dark-complience-ru.webp +0 -0
  385. package/public/mode/dark-fea-en.webp +0 -0
  386. package/public/mode/dark-fea-kk.webp +0 -0
  387. package/public/mode/dark-fea-ru.webp +0 -0
  388. package/public/mode/dark-fines-en.webp +0 -0
  389. package/public/mode/dark-fines-kk.webp +0 -0
  390. package/public/mode/dark-fines-ru.webp +0 -0
  391. package/public/mode/dark-pk-en.webp +0 -0
  392. package/public/mode/dark-pk-kk.webp +0 -0
  393. package/public/mode/dark-pk-ru.webp +0 -0
  394. package/public/mode/dark-tenders-en.webp +0 -0
  395. package/public/mode/dark-tenders-kk.webp +0 -0
  396. package/public/mode/dark-tenders-ru.webp +0 -0
  397. package/public/mode/dark-work-en.webp +0 -0
  398. package/public/mode/dark-work-kk.webp +0 -0
  399. package/public/mode/dark-work-ru.webp +0 -0
  400. package/public/mode/light-analytics-en.webp +0 -0
  401. package/public/mode/light-analytics-kk.webp +0 -0
  402. package/public/mode/light-analytics-ru.webp +0 -0
  403. package/public/mode/light-complience-en.webp +0 -0
  404. package/public/mode/light-complience-kk.webp +0 -0
  405. package/public/mode/light-complience-ru.webp +0 -0
  406. package/public/mode/light-fea-en.webp +0 -0
  407. package/public/mode/light-fea-kk.webp +0 -0
  408. package/public/mode/light-fea-ru.webp +0 -0
  409. package/public/mode/light-fines-en.webp +0 -0
  410. package/public/mode/light-fines-kk.webp +0 -0
  411. package/public/mode/light-fines-ru.webp +0 -0
  412. package/public/mode/light-pk-en.webp +0 -0
  413. package/public/mode/light-pk-kk.webp +0 -0
  414. package/public/mode/light-pk-ru.webp +0 -0
  415. package/public/mode/light-tenders-en.webp +0 -0
  416. package/public/mode/light-tenders-kk.webp +0 -0
  417. package/public/mode/light-tenders-ru.webp +0 -0
  418. package/public/mode/light-work-en.webp +0 -0
  419. package/public/mode/light-work-kk.webp +0 -0
  420. package/public/mode/light-work-ru.webp +0 -0
  421. package/public/tariff/subtract.png +0 -0
  422. package/shared/constans/pages.ts +73 -0
  423. package/tailwind.config.ts +163 -0
  424. package/tests/AButton.test.ts +81 -0
  425. package/tsconfig.json +6 -0
  426. package/utils/getMaxZindex.ts +25 -0
  427. package/utils/localizedNavigation.ts +36 -0
  428. package/vitest.config.ts +14 -0
  429. package/babel.config.js +0 -5
  430. package/dist/adata-ui.common.js +0 -10910
  431. package/dist/adata-ui.common.js.map +0 -1
  432. package/dist/adata-ui.css +0 -1
  433. package/dist/adata-ui.umd.js +0 -10920
  434. package/dist/adata-ui.umd.js.map +0 -1
  435. package/dist/adata-ui.umd.min.js +0 -7
  436. package/dist/adata-ui.umd.min.js.map +0 -1
  437. package/dist/demo.html +0 -10
  438. package/dist/img/expand-window.39c851da.svg +0 -3
  439. package/dist/img/facebook.797d820f.svg +0 -4
  440. package/dist/img/instagram.8a77381c.svg +0 -6
  441. package/dist/img/linkedIn.607d9542.svg +0 -13
  442. package/dist/img/logo-desktop-main.4d169395.svg +0 -8
  443. package/dist/img/logo-mobile-main.397bce24.svg +0 -4
  444. package/dist/img/logo-white-desktop.7d0e3481.svg +0 -8
  445. package/dist/img/mail.e4826575.svg +0 -3
  446. package/dist/img/phone.ae6c1746.svg +0 -3
  447. package/dist/img/telegram.be0d1008.svg +0 -4
  448. package/dist/img/tiktok.eaeb39cb.svg +0 -4
  449. package/dist/img/up-down.e2b28f72.svg +0 -3
  450. package/dist/img/youtube.125aace6.svg +0 -5
  451. package/package-lock.json +0 -27138
  452. package/public/favicon.ico +0 -0
  453. package/public/index.html +0 -17
  454. package/public/logo.svg +0 -4
  455. package/src/App.vue +0 -31
  456. package/src/assets/_text_field.scss +0 -225
  457. package/src/assets/expand-window.svg +0 -3
  458. package/src/assets/facebook.svg +0 -4
  459. package/src/assets/instagram.svg +0 -6
  460. package/src/assets/linkedIn.svg +0 -13
  461. package/src/assets/logo-desktop-main.svg +0 -8
  462. package/src/assets/logo-desktop.svg +0 -9
  463. package/src/assets/logo-desktop.webp +0 -0
  464. package/src/assets/logo-mobile-main.svg +0 -4
  465. package/src/assets/logo-mobile.svg +0 -9
  466. package/src/assets/logo-mobile.webp +0 -0
  467. package/src/assets/logo-white-desktop.svg +0 -8
  468. package/src/assets/mail.svg +0 -3
  469. package/src/assets/phone.svg +0 -3
  470. package/src/assets/style.scss +0 -1
  471. package/src/assets/telegram.svg +0 -4
  472. package/src/assets/tiktok.svg +0 -4
  473. package/src/assets/up-down.svg +0 -3
  474. package/src/assets/youtube.svg +0 -5
  475. package/src/components/Alert/Alert.stories.js +0 -17
  476. package/src/components/Alert/Alert.vue +0 -63
  477. package/src/components/BottomNavigationBar/ABottomNavigationBar.vue +0 -160
  478. package/src/components/BottomNavigationBar/BottomNavigationBar.stories.js +0 -25
  479. package/src/components/Button/AButton.vue +0 -231
  480. package/src/components/Button/Button.stories.js +0 -23
  481. package/src/components/Checkbox/ACheckbox.vue +0 -114
  482. package/src/components/Checkbox/Checkbox.stories.js +0 -15
  483. package/src/components/CheckboxMenu/CheckboxMenu.stories.js +0 -24
  484. package/src/components/CheckboxMenu/CheckboxMenu.vue +0 -108
  485. package/src/components/ErrorPages/BadGateway.vue +0 -224
  486. package/src/components/ErrorPages/Forbidden.vue +0 -468
  487. package/src/components/ErrorPages/InternalServerError.vue +0 -275
  488. package/src/components/ErrorPages/NotFound.vue +0 -995
  489. package/src/components/ErrorPages/Unavailable.vue +0 -3705
  490. package/src/components/Footer/Footer.stories.js +0 -20
  491. package/src/components/Footer/Footer.vue +0 -292
  492. package/src/components/Header/ChildLinks.vue +0 -144
  493. package/src/components/Header/Header.stories.js +0 -56
  494. package/src/components/Header/Header.vue +0 -1306
  495. package/src/components/Header/InfoHeader.vue +0 -319
  496. package/src/components/Header/Profile.vue +0 -670
  497. package/src/components/Header/ProfileMenu.vue +0 -293
  498. package/src/components/Header/ProfileMobile.vue +0 -308
  499. package/src/components/Header/ProfileOld.vue +0 -781
  500. package/src/components/InternalServerError/InternalServerError.stories.js +0 -17
  501. package/src/components/InternalServerError/InternalServerError.vue +0 -262
  502. package/src/components/Introduction.stories.mdx +0 -7
  503. package/src/components/Loader/Loader.stories.js +0 -25
  504. package/src/components/Loader/Loader.vue +0 -325
  505. package/src/components/MailTo/MailTo.stories.js +0 -15
  506. package/src/components/MailTo/MailTo.vue +0 -258
  507. package/src/components/NavIcon/ANavIcon.vue +0 -50
  508. package/src/components/NavIcon/NavIcon.stories.js +0 -15
  509. package/src/components/PasswordField/PasswordField.stories.js +0 -16
  510. package/src/components/PasswordField/PasswordField.vue +0 -77
  511. package/src/components/SearchTextField/SearchTextField.stories.js +0 -78
  512. package/src/components/SearchTextField/SearchTextField.vue +0 -230
  513. package/src/components/ServiceSlider/AServiceSlider.vue +0 -793
  514. package/src/components/ServiceSlider/ServiceSlider.stories.js +0 -20
  515. package/src/components/Table/ATable.vue +0 -117
  516. package/src/components/Table/Table.stories.js +0 -15
  517. package/src/components/TextArea/TextArea.stories.js +0 -17
  518. package/src/components/TextArea/TextArea.vue +0 -116
  519. package/src/components/TextError/TextError.stories.js +0 -15
  520. package/src/components/TextError/TextError.vue +0 -57
  521. package/src/components/TextField/TextField.stories.js +0 -17
  522. package/src/components/TextField/TextField.vue +0 -107
  523. package/src/components/index.js +0 -56
  524. package/src/components/newComponents/FooterNew/FooterBottom.vue +0 -153
  525. package/src/components/newComponents/FooterNew/FooterItem.vue +0 -114
  526. package/src/components/newComponents/FooterNew/FooterNew.stories.js +0 -20
  527. package/src/components/newComponents/FooterNew/FooterNew.vue +0 -39
  528. package/src/components/newComponents/FooterNew/FooterTop.vue +0 -321
  529. package/src/components/newComponents/FooterRedesign/FooterAccordion.vue +0 -221
  530. package/src/components/newComponents/FooterRedesign/FooterRedesign.vue +0 -430
  531. package/src/components/transitions/SlideToggle.vue +0 -55
  532. package/src/components/transitions/VerticalMobileToggle.vue +0 -75
  533. package/src/configs/icons.js +0 -112
  534. package/src/configs/profileDropDown.js +0 -134
  535. package/src/main.js +0 -12
@@ -0,0 +1,105 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 120 120"
6
+ width="120"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_409_69309)">
11
+ <path
12
+ d="M21.7138 35.5142H99.2852C100.198 35.5197 101.072 35.8921 101.716 36.5501C102.359 37.2081 102.721 38.0981 102.721 39.0258V87.0555C102.721 89.3581 101.82 91.5665 100.218 93.1947C98.6156 94.8229 96.4423 95.7376 94.1761 95.7376H26.7816C24.5181 95.732 22.3494 94.8141 20.7513 93.1854C19.1532 91.5567 18.2564 89.3502 18.2578 87.0503V39.0258C18.2578 38.0945 18.6219 37.2013 19.2701 36.5427C19.9182 35.8841 20.7972 35.5142 21.7138 35.5142Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ stroke="#9DA3AC"
15
+ stroke-miterlimit="10"
16
+ />
17
+ <path
18
+ d="M100.96 91.1918H26.7309C25.3718 91.1918 24.0683 90.6432 23.1073 89.6667C22.1462 88.6902 21.6063 87.3657 21.6063 85.9847V35.068C20.71 35.0979 19.86 35.4802 19.2356 36.1343C18.6112 36.7883 18.261 37.6632 18.2588 38.5744V86.6041C18.2602 88.9072 19.1615 91.1155 20.7648 92.7436C22.368 94.3716 24.5418 95.2862 26.8084 95.2862H94.1978C95.6478 95.2827 97.073 94.9035 98.3385 94.1843C99.6041 93.4651 100.668 92.4297 101.43 91.1761C101.296 91.1918 101.125 91.1918 100.96 91.1918Z"
19
+ fill="#BDC7CE"
20
+ opacity="0.2"
21
+ />
22
+ <path
23
+ d="M90.7567 84.9558H30.2483C29.6744 84.9558 29.1061 84.8409 28.5758 84.6178C28.0456 84.3946 27.5638 84.0675 27.158 83.6551C26.7522 83.2428 26.4302 82.7532 26.2106 82.2145C25.9909 81.6757 25.8779 81.0982 25.8779 80.515V84.5936C25.8779 85.7714 26.3384 86.9009 27.158 87.7337C27.9776 88.5665 29.0892 89.0344 30.2483 89.0344H90.7567C91.9158 89.0344 93.0274 88.5665 93.847 87.7337C94.6666 86.9009 95.1271 85.7714 95.1271 84.5936V80.515C95.1271 81.0982 95.014 81.6757 94.7944 82.2145C94.5747 82.7532 94.2528 83.2428 93.847 83.6551C93.4412 84.0675 92.9594 84.3946 92.4292 84.6178C91.8989 84.8409 91.3306 84.9558 90.7567 84.9558Z"
24
+ fill="#BDC7CE"
25
+ opacity="0.2"
26
+ />
27
+ <path
28
+ d="M99.3782 35.5142H21.6208C19.7635 35.5142 18.2578 37.0441 18.2578 38.9314V58.6944C18.2578 60.5816 19.7635 62.1116 21.6208 62.1116H99.3782C101.236 62.1116 102.741 60.5816 102.741 58.6944V38.9314C102.741 37.0441 101.236 35.5142 99.3782 35.5142Z"
29
+ class="fill-white dark:fill-gray-900"
30
+ stroke="#9DA3AC"
31
+ stroke-miterlimit="10"
32
+ />
33
+ <path
34
+ d="M102.474 59.0408H23.1716C22.6907 59.0408 22.2295 58.8467 21.8894 58.5012C21.5494 58.1556 21.3583 57.687 21.3583 57.1984V35.8658C21.3583 35.7434 21.3583 35.6279 21.3583 35.5194C20.5155 35.5867 19.7285 35.9741 19.1541 36.6044C18.5797 37.2348 18.2601 38.0618 18.2588 38.9208V58.6839C18.2602 59.5898 18.6149 60.4581 19.2453 61.0987C19.8757 61.7392 20.7303 62.0997 21.6218 62.1011H99.3792C100.212 62.1002 101.014 61.7858 101.631 61.2186C102.249 60.6514 102.637 59.8717 102.722 59.0303L102.474 59.0408Z"
35
+ fill="#BDC7CE"
36
+ opacity="0.2"
37
+ />
38
+ <path
39
+ d="M25.873 62.1063H95.0963V81.4179C95.0963 82.0011 94.9833 82.5786 94.7637 83.1173C94.544 83.6561 94.2221 84.1457 93.8163 84.558C93.4105 84.9704 92.9287 85.2975 92.3984 85.5207C91.8682 85.7438 91.2999 85.8587 90.726 85.8587H30.2434C29.6695 85.8587 29.1012 85.7438 28.5709 85.5207C28.0407 85.2975 27.5589 84.9704 27.1531 84.558C26.7473 84.1457 26.4254 83.6561 26.2057 83.1173C25.9861 82.5786 25.873 82.0011 25.873 81.4179V62.1063Z"
40
+ class="fill-white dark:fill-gray-900"
41
+ stroke="#9DA3AC"
42
+ stroke-miterlimit="10"
43
+ />
44
+ <path
45
+ d="M52.8076 35.5089V30.475C52.807 30.3599 52.8286 30.2457 52.8713 30.1391C52.9141 30.0325 52.977 29.9355 53.0567 29.8536C53.1363 29.7717 53.231 29.7066 53.3354 29.6619C53.4398 29.6172 53.5519 29.5938 53.6652 29.5931H68.7496C68.8629 29.5938 68.975 29.6172 69.0794 29.6619C69.1838 29.7066 69.2785 29.7717 69.3582 29.8536C69.4378 29.9355 69.5008 30.0325 69.5435 30.1391C69.5862 30.2457 69.6079 30.3599 69.6072 30.475V35.5089"
46
+ stroke="#9DA3AC"
47
+ stroke-miterlimit="10"
48
+ />
49
+ <path
50
+ d="M50.1787 35.6453V29.7191C50.1821 29.393 50.2486 29.0708 50.3745 28.7709C50.5004 28.471 50.6833 28.1992 50.9126 27.9711C51.1419 27.7429 51.4132 27.563 51.711 27.4414C52.0087 27.3198 52.3271 27.259 52.648 27.2625H69.7833C70.1042 27.259 70.4227 27.3198 70.7204 27.4414C71.0182 27.563 71.2895 27.7429 71.5188 27.9711C71.7481 28.1992 71.9309 28.471 72.0568 28.7709C72.1827 29.0708 72.2493 29.393 72.2527 29.7191V35.6453"
51
+ stroke="#9DA3AC"
52
+ stroke-miterlimit="10"
53
+ />
54
+ <path
55
+ d="M99.3792 62.3215H21.627C21.1849 62.3222 20.747 62.2343 20.3384 62.0629C19.9298 61.8915 19.5585 61.6399 19.2456 61.3225C18.9328 61.0051 18.6846 60.6282 18.5153 60.2132C18.3459 59.7983 18.2588 59.3535 18.2588 58.9043V64.206C18.2588 65.1136 18.6137 65.9841 19.2453 66.626C19.877 67.2678 20.7337 67.6284 21.627 67.6284H99.3792C99.8213 67.6284 100.259 67.5398 100.667 67.3678C101.076 67.1957 101.447 66.9435 101.759 66.6256C102.071 66.3078 102.319 65.9305 102.488 65.5153C102.656 65.1001 102.743 64.6551 102.742 64.206V58.9043C102.743 59.3532 102.656 59.7979 102.488 60.2128C102.319 60.6277 102.071 61.0047 101.759 61.3222C101.446 61.6396 101.075 61.8913 100.667 62.0628C100.259 62.2343 99.821 62.3222 99.3792 62.3215Z"
56
+ fill="#BDC7CE"
57
+ opacity="0.2"
58
+ />
59
+ <path
60
+ d="M63.6723 54.0646H58.651C58.4634 54.0649 58.2778 54.1043 58.1057 54.1803C57.9336 54.2563 57.7786 54.3673 57.6504 54.5065C57.5221 54.6457 57.4233 54.81 57.3599 54.9895C57.2966 55.169 57.2701 55.3598 57.2821 55.5501L58.651 77.5965C58.668 77.8792 58.7689 78.1501 58.9403 78.3734L61.1203 81.1921H61.203L63.383 78.3734C63.5545 78.1501 63.6554 77.8792 63.6723 77.5965L65.0413 55.5501C65.0533 55.3598 65.0268 55.169 64.9634 54.9895C64.9001 54.81 64.8013 54.6457 64.673 54.5065C64.5447 54.3673 64.3898 54.2563 64.2177 54.1803C64.0456 54.1043 63.86 54.0649 63.6723 54.0646Z"
61
+ class="fill-white dark:fill-gray-900"
62
+ stroke="#9DA3AC"
63
+ stroke-miterlimit="10"
64
+ />
65
+ <path
66
+ d="M60.4841 77.2973C60.3127 77.0759 60.2118 76.8068 60.1948 76.5257L58.8258 54.4793C58.8195 54.3452 58.8316 54.2109 58.862 54.0803C58.6741 54.0807 58.4883 54.1201 58.3159 54.196C58.1436 54.272 57.9883 54.3829 57.8596 54.522C57.731 54.6611 57.6317 54.8254 57.5677 55.0049C57.5038 55.1844 57.4766 55.3753 57.4878 55.5658L58.862 77.6122C58.8789 77.895 58.9798 78.1658 59.1513 78.3891L61.3313 81.2079H61.4088L62.442 79.8431L60.4841 77.2973Z"
67
+ fill="#BDC7CE"
68
+ opacity="0.2"
69
+ />
70
+ <path
71
+ d="M65.5832 67.7649H56.8114C56.3892 67.7649 56.0469 68.1127 56.0469 68.5418V73.6124C56.0469 74.0415 56.3892 74.3893 56.8114 74.3893H65.5832C66.0054 74.3893 66.3477 74.0415 66.3477 73.6124V68.5418C66.3477 68.1127 66.0054 67.7649 65.5832 67.7649Z"
72
+ class="fill-white dark:fill-gray-900"
73
+ stroke="#9DA3AC"
74
+ stroke-miterlimit="10"
75
+ />
76
+ <path
77
+ d="M58.3506 73.077C58.1478 73.077 57.9533 72.9952 57.8099 72.8495C57.6666 72.7038 57.586 72.5062 57.586 72.3002V67.7649H56.8163C56.7159 67.7649 56.6165 67.785 56.5237 67.824C56.4309 67.8631 56.3467 67.9203 56.2757 67.9924C56.2047 68.0646 56.1484 68.1502 56.11 68.2445C56.0715 68.3387 56.0518 68.4397 56.0518 68.5418V73.6072C56.0518 73.8137 56.1321 74.0119 56.2754 74.1584C56.4186 74.3049 56.6131 74.3879 56.8163 74.3893H65.5984C65.8016 74.3879 65.9961 74.3049 66.1393 74.1584C66.2825 74.0119 66.3629 73.8137 66.3629 73.6072V73.0823L58.3506 73.077Z"
78
+ fill="#BDC7CE"
79
+ opacity="0.2"
80
+ />
81
+ <path
82
+ d="M59.9678 69.3606V72.7253"
83
+ stroke="#9DA3AC"
84
+ stroke-linecap="round"
85
+ stroke-miterlimit="10"
86
+ />
87
+ <path
88
+ d="M62.4316 69.3606V72.7253"
89
+ stroke="#9DA3AC"
90
+ stroke-miterlimit="10"
91
+ stroke-linecap="round"
92
+ />
93
+ </g>
94
+ <defs>
95
+ <clipPath id="clip0_409_69309">
96
+ <rect
97
+ width="85"
98
+ height="69"
99
+ class="fill-white dark:fill-gray-900"
100
+ transform="translate(18 27)"
101
+ />
102
+ </clipPath>
103
+ </defs>
104
+ </svg>
105
+ </template>
@@ -0,0 +1,48 @@
1
+ <template>
2
+ <svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <circle cx="60" cy="60" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
+ <g clip-path="url(#clip0_10876_5062)">
5
+ <path d="M84.3376 32.0486H81.321C81.3235 31.1152 81.1401 30.1904 80.7814 29.3271C80.4226 28.4638 79.8955 27.6788 79.2301 27.0171C78.5647 26.3553 77.774 25.8296 76.9033 25.4702C76.0325 25.1107 75.0987 24.9244 74.1552 24.9219H66.0664V18.0211L67.018 19.0379L67.9697 18.0305L69.1116 19.0473L70.2345 18.0305L71.4526 19.0473L72.4708 18.0305L73.3083 18.7837V14.1989C73.3084 13.2098 72.9152 12.2605 72.2136 11.5558C71.5121 10.8512 70.5585 10.4479 69.5589 10.4331H48.5565C47.5569 10.4479 46.6033 10.8512 45.9017 11.5558C45.2002 12.2605 44.807 13.2098 44.8071 14.1989V24.9219H37.6414C36.6978 24.9244 35.764 25.1107 34.8933 25.4702C34.0226 25.8296 33.2319 26.3553 32.5665 27.0171C31.9011 27.6788 31.374 28.4638 31.0152 29.3271C30.6565 30.1904 30.4731 31.1152 30.4756 32.0486V72.5306L34.1679 103.269C34.3708 104.996 35.2077 106.59 36.5198 107.748C37.832 108.905 39.528 109.546 41.2861 109.548H71.0149C72.7937 109.545 74.5079 108.888 75.825 107.705C77.142 106.522 77.968 104.898 78.1425 103.146L78.8372 96.415H84.3376C85.0233 96.4138 85.7019 96.2788 86.3348 96.0178C86.9676 95.7568 87.5422 95.3749 88.0257 94.894C88.5092 94.413 88.8921 93.8425 89.1524 93.215C89.4128 92.5875 89.5455 91.9154 89.543 91.2371V37.2265C89.5455 35.8574 88.9988 34.5432 88.0229 33.5724C87.047 32.6016 85.7216 32.0536 84.3376 32.0486Z" fill="#26282B"/>
6
+ <path d="M71.0149 109.53H41.2861C39.528 109.527 37.832 108.887 36.5198 107.729C35.2077 106.572 34.3708 104.978 34.1679 103.25L30.4756 72.512V32.03C30.4731 31.0966 30.6565 30.1718 31.0152 29.3085C31.374 28.4452 31.9011 27.6602 32.5665 26.9985C33.2319 26.3367 34.0226 25.811 34.8933 25.4516C35.764 25.0921 36.6978 24.9058 37.6414 24.9033H74.1362C75.0797 24.9058 76.0135 25.0921 76.8842 25.4516C77.755 25.811 78.5456 26.3367 79.211 26.9985C79.8764 27.6602 80.4036 28.4452 80.7623 29.3085C81.1211 30.1718 81.3044 31.0966 81.3019 32.03V72.512L78.1711 103.137C77.9938 104.892 77.1628 106.518 75.84 107.7C74.5172 108.881 72.7971 109.534 71.0149 109.53V109.53Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path opacity="0.2" d="M37.1087 103.25L33.4259 72.5118V32.0298C33.4258 30.1528 34.1763 28.3519 35.5134 27.0203C36.8505 25.6887 38.6658 24.9343 40.5631 24.9219H37.613C36.6695 24.9243 35.7357 25.1107 34.865 25.4701C33.9942 25.8296 33.2036 26.3553 32.5382 27.017C31.8728 27.6788 31.3457 28.4638 30.9869 29.3271C30.6282 30.1904 30.4448 31.1152 30.4473 32.0486V72.5306L34.1396 103.269C34.3425 104.996 35.1794 106.59 36.4915 107.748C37.8037 108.905 39.4997 109.546 41.2578 109.548H44.1983C42.4428 109.536 40.7524 108.889 39.4463 107.729C38.1401 106.569 37.3086 104.975 37.1087 103.25Z" fill="#BDC7CE"/>
8
+ <path opacity="0.2" d="M67.2746 83.5454C67.1482 83.5661 67.0189 83.559 66.8956 83.5249C66.7723 83.4907 66.6581 83.4302 66.561 83.3476C66.4639 83.265 66.3863 83.1623 66.3336 83.0469C66.281 82.9314 66.2546 82.8059 66.2563 82.6792V80.2598L65.1905 80.4292C64.9829 80.4628 64.7942 80.5684 64.6582 80.7271C64.5222 80.8858 64.4478 81.0872 64.4482 81.2953V84.5433C64.4482 84.6695 64.4756 84.7941 64.5288 84.9088C64.582 85.0235 64.6596 85.1255 64.7563 85.2077C64.853 85.29 64.9665 85.3506 65.0891 85.3854C65.2117 85.4202 65.3404 85.4284 65.4665 85.4094L72.5942 84.2797C72.801 84.2482 72.9895 84.1445 73.1257 83.9873C73.2618 83.8302 73.3366 83.63 73.3364 83.423V82.5945L67.2746 83.5454Z" fill="#BDC7CE"/>
9
+ <path opacity="0.2" d="M67.2746 92.9883C67.149 93.0088 67.0205 93.002 66.8979 92.9684C66.7753 92.9347 66.6616 92.8751 66.5646 92.7935C66.4677 92.712 66.3899 92.6105 66.3367 92.4962C66.2834 92.3818 66.256 92.2574 66.2563 92.1316V89.7026L65.1905 89.8721C64.9829 89.9057 64.7942 90.0113 64.6582 90.17C64.5222 90.3287 64.4478 90.5301 64.4482 90.7382V93.9862C64.4482 94.1124 64.4756 94.2371 64.5288 94.3518C64.582 94.4664 64.6596 94.5684 64.7563 94.6507C64.853 94.7329 64.9665 94.7935 65.0891 94.8283C65.2117 94.8631 65.3404 94.8714 65.4665 94.8524L72.5942 93.7226C72.801 93.6911 72.9895 93.5874 73.1257 93.4303C73.2618 93.2731 73.3366 93.0729 73.3364 92.8659V92.0374L67.2746 92.9883Z" fill="#BDC7CE"/>
10
+ <path opacity="0.2" d="M67.2746 101.988C67.1485 102.007 67.0198 101.999 66.8972 101.964C66.7746 101.93 66.6611 101.869 66.5644 101.787C66.4677 101.704 66.3901 101.603 66.3369 101.488C66.2837 101.373 66.2563 101.248 66.2563 101.122V98.6934L65.1905 98.8628C64.9829 98.8964 64.7942 99.002 64.6582 99.1607C64.5222 99.3194 64.4478 99.5209 64.4482 99.729V103.005C64.4482 103.131 64.4756 103.256 64.5288 103.371C64.582 103.485 64.6596 103.587 64.7563 103.67C64.853 103.752 64.9665 103.813 65.0891 103.847C65.2117 103.882 65.3404 103.89 65.4665 103.871L72.5942 102.751C72.8017 102.717 72.9904 102.612 73.1265 102.453C73.2625 102.294 73.3369 102.093 73.3364 101.885V101.056L67.2746 101.988Z" fill="#BDC7CE"/>
11
+ <path opacity="0.2" d="M54.5803 83.7994C54.3456 83.7994 54.1205 83.7072 53.9545 83.543C53.7885 83.3788 53.6953 83.1561 53.6953 82.9239V80.7397H52.7437C52.5106 80.7422 52.2879 80.8356 52.124 80.9995C51.9601 81.1635 51.8682 81.3848 51.8682 81.6153V84.8821C51.8682 85.1127 51.9601 85.334 52.124 85.4979C52.2879 85.6619 52.5106 85.7552 52.7437 85.7577H59.8809C60.1139 85.7552 60.3366 85.6619 60.5005 85.4979C60.6644 85.334 60.7564 85.1127 60.7564 84.8821V83.7994H54.5803Z" fill="#BDC7CE"/>
12
+ <path opacity="0.2" d="M41.7533 82.6698C41.5457 82.6362 41.357 82.5306 41.221 82.3719C41.085 82.2132 41.0105 82.0117 41.011 81.8036V79.4124L40.3259 79.3088C40.1998 79.2898 40.071 79.298 39.9485 79.3328C39.8259 79.3676 39.7123 79.4283 39.6156 79.5105C39.5189 79.5928 39.4413 79.6947 39.3882 79.8094C39.335 79.924 39.3075 80.0488 39.3076 80.1749V83.4229C39.3075 83.6299 39.3822 83.8301 39.5184 83.9872C39.6546 84.1444 39.8431 84.2481 40.0499 84.2796L47.1776 85.4093C47.3036 85.4283 47.4324 85.4201 47.555 85.3853C47.6775 85.3505 47.7911 85.2899 47.8878 85.2077C47.9845 85.1254 48.0621 85.0234 48.1152 84.9087C48.1684 84.7941 48.1959 84.6694 48.1958 84.5432V83.6771L41.7533 82.6698Z" fill="#BDC7CE"/>
13
+ <path opacity="0.2" d="M54.5804 93.1198C54.3473 93.1198 54.1236 93.0288 53.9579 92.8666C53.7922 92.7045 53.6978 92.4842 53.6953 92.2536V90.0601H52.7437C52.5107 90.0625 52.288 90.1559 52.1241 90.3198C51.9601 90.4837 51.8682 90.705 51.8682 90.9356V94.2024C51.867 94.317 51.8887 94.4306 51.9321 94.5367C51.9755 94.6429 52.0398 94.7395 52.1213 94.8209C52.2027 94.9024 52.2996 94.967 52.4065 95.0111C52.5133 95.0553 52.6279 95.078 52.7437 95.078H59.8809C59.9967 95.078 60.1113 95.0553 60.2182 95.0111C60.325 94.967 60.4219 94.9024 60.5034 94.8209C60.5848 94.7395 60.6491 94.6429 60.6925 94.5367C60.7359 94.4306 60.7577 94.317 60.7564 94.2024V93.1198H54.5804Z" fill="#BDC7CE"/>
14
+ <path opacity="0.2" d="M41.7533 91.9901C41.5457 91.9565 41.357 91.8509 41.221 91.6922C41.085 91.5335 41.0105 91.332 41.011 91.124V88.7421L40.3259 88.6291C40.1998 88.6101 40.071 88.6183 39.9485 88.6531C39.8259 88.6879 39.7123 88.7485 39.6156 88.8308C39.5189 88.9131 39.4413 89.015 39.3882 89.1297C39.335 89.2444 39.3075 89.3691 39.3076 89.4953V92.7432C39.3071 92.9513 39.3816 93.1528 39.5176 93.3115C39.6536 93.4702 39.8423 93.5758 40.0499 93.6094L47.2251 94.7297C47.3512 94.7487 47.48 94.7405 47.6025 94.7057C47.7251 94.6709 47.8387 94.6103 47.9354 94.528C48.0321 94.4458 48.1097 94.3438 48.1628 94.2291C48.216 94.1144 48.2435 93.9897 48.2434 93.8635V93.0068L41.7533 91.9901Z" fill="#BDC7CE"/>
15
+ <path opacity="0.2" d="M54.5803 102.365C54.3456 102.365 54.1205 102.273 53.9545 102.108C53.7885 101.944 53.6953 101.722 53.6953 101.489V99.3052H52.7437C52.5115 99.3052 52.2888 99.3964 52.1246 99.5589C51.9604 99.7213 51.8682 99.9416 51.8682 100.171V103.447C51.8682 103.678 51.9601 103.899 52.124 104.063C52.2879 104.227 52.5106 104.321 52.7437 104.323H59.8809C60.1139 104.321 60.3366 104.227 60.5005 104.063C60.6644 103.899 60.7564 103.678 60.7564 103.447V102.365H54.5803Z" fill="#BDC7CE"/>
16
+ <path opacity="0.2" d="M41.7533 101.225C41.5457 101.192 41.357 101.086 41.221 100.928C41.085 100.769 41.0105 100.567 41.011 100.359V97.9774L40.3259 97.8645C40.1998 97.8455 40.071 97.8537 39.9485 97.8885C39.8259 97.9233 39.7123 97.9839 39.6156 98.0662C39.5189 98.1484 39.4413 98.2504 39.3882 98.3651C39.335 98.4797 39.3075 98.6045 39.3076 98.7306V101.979C39.3071 102.187 39.3816 102.388 39.5176 102.547C39.6536 102.706 39.8423 102.811 40.0499 102.845L47.2251 103.946C47.3448 103.957 47.4653 103.942 47.5791 103.905C47.693 103.867 47.7978 103.807 47.8871 103.727C47.9763 103.648 48.0481 103.551 48.098 103.443C48.1478 103.335 48.1746 103.218 48.1768 103.099V102.242L41.7533 101.225Z" fill="#BDC7CE"/>
17
+ <path opacity="0.2" d="M51.9827 10.4707C50.9831 10.4856 50.0295 10.8889 49.3279 11.5935C48.6264 12.2981 48.2332 13.2475 48.2333 14.2365V24.9596H44.9121V14.1989C44.912 13.2098 45.3052 12.2605 46.0067 11.5558C46.7083 10.8512 47.6619 10.4479 48.6615 10.4331L51.9827 10.4707Z" fill="#BDC7CE"/>
18
+ <path opacity="0.2" d="M73.3373 18.275V18.8117L73.0423 18.548L72.4999 18.0585L71.9194 18.6328L71.4816 19.0753L70.806 18.5104L70.2635 18.0585L69.7782 18.501L69.1406 19.0753L67.913 18.0585L66.9614 19.0658L66.0098 18.0491V14.2268C66.0098 13.2705 66.3938 12.3534 67.0773 11.6772C67.7608 11.001 68.6879 10.6211 69.6545 10.6211C70.6211 10.6211 71.5482 11.001 72.2317 11.6772C72.9152 12.3534 73.2992 13.2705 73.2992 14.2268L73.3373 18.275Z" fill="#BDC7CE"/>
19
+ <path opacity="0.2" d="M68.2173 14.3875C68.2048 13.5582 68.4735 12.7487 68.9807 12.0882C69.4878 11.4278 70.2041 10.9546 71.0151 10.7441C70.5811 10.5605 70.1164 10.4584 69.6447 10.4429C68.6635 10.4842 67.7363 10.8991 67.0571 11.6009C66.3779 12.3027 65.9991 13.237 66 14.2086V18.0309L66.9516 19.0477L67.9033 18.0403L68.2268 18.3039L68.2173 14.3875Z" fill="#BDC7CE"/>
20
+ <path opacity="0.2" d="M81.4163 32.0488V73.83L78.8564 96.4058H81.797L84.3188 73.83V32.0488H81.4163Z" fill="#BDC7CE"/>
21
+ <path d="M74.1086 66.4399H38.3465C38.0779 66.4399 37.812 66.3871 37.5642 66.2846C37.3164 66.1821 37.0916 66.0318 36.903 65.8426C36.7144 65.6534 36.5657 65.429 36.4656 65.1824C36.3654 64.9359 36.3158 64.6721 36.3195 64.4064V32.8116C36.3183 32.5474 36.3698 32.2857 36.4711 32.0413C36.5724 31.7969 36.7215 31.5748 36.9098 31.3875C37.0982 31.2003 37.3221 31.0518 37.5686 30.9504C37.8152 30.849 38.0795 30.7969 38.3465 30.7969H74.1086C74.3748 30.7981 74.6381 30.8512 74.8836 30.9531C75.129 31.055 75.3517 31.2038 75.5391 31.3909C75.7264 31.578 75.8747 31.7997 75.9754 32.0435C76.0761 32.2872 76.1273 32.5482 76.126 32.8116V64.4064C76.1298 64.6713 76.0805 64.9343 75.9809 65.1803C75.8813 65.4262 75.7335 65.6502 75.5459 65.8393C75.3583 66.0284 75.1347 66.1788 74.888 66.2818C74.6413 66.3849 74.3764 66.4386 74.1086 66.4399V66.4399Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
22
+ <path d="M44.8076 24.9219V14.1989C44.8075 13.2098 45.2007 12.2605 45.9023 11.5558C46.6038 10.8512 47.5574 10.4479 48.557 10.4331H69.588C70.5876 10.4479 71.5412 10.8512 72.2427 11.5558C72.9443 12.2605 73.3375 13.2098 73.3374 14.1989V18.7837L72.4999 18.0305L71.4817 19.0473L70.2636 18.0305L69.1121 19.0473L67.8845 18.0305L66.9329 19.0379L65.9813 18.0211" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
23
+ <path d="M66.0473 24.9219V14.1989C66.0397 13.7078 66.1308 13.2202 66.3153 12.7642C66.4997 12.3083 66.7738 11.8931 67.1218 11.5428C67.4697 11.1924 67.8844 10.914 68.342 10.7235C68.7995 10.533 69.2908 10.4343 69.7872 10.4331" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
24
+ <path d="M48.7949 15.8838H59.0725" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
25
+ <path d="M48.7949 19.7061H63.193" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
26
+ <path d="M81.3016 32.0488H84.3373C85.7213 32.0538 87.0467 32.6018 88.0226 33.5726C88.9986 34.5434 89.5453 35.8576 89.5427 37.2268V91.2185C89.5477 91.8983 89.4169 92.5725 89.1576 93.2022C88.8984 93.8318 88.5159 94.4046 88.0322 94.8875C87.5485 95.3705 86.973 95.754 86.3389 96.0162C85.7048 96.2784 85.0246 96.414 84.3373 96.4152H78.875" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path opacity="0.2" d="M55.8847 59.5484C58.0617 59.5615 60.1937 58.9346 62.0101 57.7473C63.8266 56.56 65.2457 54.8659 66.0876 52.8796C66.9294 50.8933 67.156 48.7045 66.7387 46.5906C66.3214 44.4767 65.2789 42.5331 63.7435 41.0062C62.2081 39.4793 60.2489 38.4378 58.1143 38.0139C55.9798 37.59 53.7661 37.8029 51.754 38.6254C49.7419 39.4478 48.022 40.8429 46.8125 42.6337C45.6029 44.4245 44.9582 46.5303 44.96 48.6841C44.9562 50.1072 45.2358 51.517 45.7828 52.8331C46.3298 54.1492 47.1335 55.3458 48.1479 56.3546C49.1624 57.3635 50.3677 58.1648 51.6952 58.7128C53.0227 59.2608 54.4463 59.5447 55.8847 59.5484Z" fill="#BDC7CE"/>
28
+ <path d="M50.5078 48.5425L54.7616 52.506L61.2612 44.8521" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
29
+ <path d="M30.4756 72.5117C30.4756 72.5117 36.3186 77.7838 56.2171 77.7838C73.3463 77.7838 81.3019 72.5117 81.3019 72.5117" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
30
+ <path d="M59.8906 85.8426H52.7534C52.5204 85.8401 52.2977 85.7468 52.1338 85.5828C51.9698 85.4189 51.8779 85.1977 51.8779 84.9671V81.7002C51.8779 81.4697 51.9698 81.2484 52.1338 81.0844C52.2977 80.9205 52.5204 80.8272 52.7534 80.8247H59.8906C60.1237 80.8272 60.3463 80.9205 60.5103 81.0844C60.6742 81.2484 60.7661 81.4697 60.7661 81.7002V84.9671C60.7661 85.1977 60.6742 85.4189 60.5103 85.5828C60.3463 85.7468 60.1237 85.8401 59.8906 85.8426V85.8426Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
31
+ <path d="M59.8906 104.314H52.7534C52.5212 104.314 52.2985 104.222 52.1344 104.06C51.9702 103.897 51.8779 103.677 51.8779 103.447V100.181C51.8779 99.9509 51.9702 99.7306 52.1344 99.5681C52.2985 99.4057 52.5212 99.3145 52.7534 99.3145H59.8906C60.1228 99.3145 60.3455 99.4057 60.5097 99.5681C60.6739 99.7306 60.7661 99.9509 60.7661 100.181V103.457C60.7636 103.685 60.6703 103.903 60.5063 104.063C60.3424 104.224 60.1212 104.314 59.8906 104.314V104.314Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
32
+ <path d="M59.8906 95.078H52.7534C52.5204 95.0755 52.2977 94.9821 52.1338 94.8182C51.9698 94.6543 51.8779 94.433 51.8779 94.2024V90.9356C51.8779 90.705 51.9698 90.4837 52.1338 90.3198C52.2977 90.1559 52.5204 90.0625 52.7534 90.0601H59.8906C60.1237 90.0625 60.3463 90.1559 60.5103 90.3198C60.6742 90.4837 60.7661 90.705 60.7661 90.9356V94.2024C60.7661 94.433 60.6742 94.6543 60.5103 94.8182C60.3463 94.9821 60.1237 95.0755 59.8906 95.078V95.078Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
33
+ <path d="M47.2244 85.4849L40.0968 84.3646C39.8892 84.331 39.7005 84.2254 39.5645 84.0667C39.4284 83.908 39.354 83.7066 39.3545 83.4985V80.2505C39.3558 80.1251 39.3843 80.0015 39.438 79.8879C39.4918 79.7744 39.5696 79.6736 39.6661 79.5924C39.7626 79.5112 39.8757 79.4514 39.9976 79.4171C40.1195 79.3829 40.2474 79.3749 40.3727 79.3938L47.5004 80.5141C47.691 80.56 47.8607 80.6671 47.983 80.8188C48.1053 80.9705 48.1732 81.158 48.1761 81.352V84.6C48.1792 84.7219 48.1563 84.8431 48.1088 84.9557C48.0613 85.0683 47.9903 85.1696 47.9005 85.2532C47.8107 85.3367 47.704 85.4006 47.5875 85.4405C47.471 85.4804 47.3473 85.4956 47.2244 85.4849Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
34
+ <path d="M47.2244 103.946L40.0968 102.826C39.8892 102.793 39.7005 102.687 39.5645 102.528C39.4284 102.37 39.354 102.168 39.3545 101.96V98.712C39.3544 98.5859 39.3819 98.4612 39.4351 98.3465C39.4882 98.2318 39.5658 98.1299 39.6625 98.0476C39.7592 97.9654 39.8727 97.9047 39.9953 97.8699C40.1179 97.8351 40.2467 97.8269 40.3727 97.8459L47.5004 98.9756C47.7072 99.0071 47.8957 99.1109 48.0319 99.268C48.1681 99.4252 48.2428 99.6254 48.2427 99.8324V103.08C48.2444 103.207 48.218 103.333 48.1654 103.448C48.1127 103.563 48.0351 103.666 47.938 103.749C47.841 103.831 47.7267 103.892 47.6034 103.926C47.4801 103.96 47.3508 103.967 47.2244 103.946V103.946Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
35
+ <path d="M47.2251 94.7299L40.0499 93.5908C39.8423 93.5572 39.6536 93.4516 39.5176 93.2929C39.3816 93.1342 39.3071 92.9328 39.3076 92.7247V89.4767C39.3075 89.3505 39.335 89.2258 39.3882 89.1111C39.4413 88.9964 39.5189 88.8945 39.6156 88.8122C39.7123 88.73 39.8259 88.6693 39.9485 88.6345C40.071 88.5997 40.1998 88.5916 40.3259 88.6106L47.4535 89.7309C47.6611 89.7645 47.8498 89.8701 47.9858 90.0288C48.1219 90.1875 48.1963 90.3889 48.1958 90.597V93.845C48.1977 93.9682 48.1733 94.0905 48.1242 94.2038C48.075 94.3171 48.0023 94.4188 47.9106 94.5023C47.819 94.5859 47.7106 94.6494 47.5925 94.6886C47.4743 94.7278 47.3492 94.7419 47.2251 94.7299Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
36
+ <path d="M65.4665 85.4849L72.5942 84.3646C72.8017 84.331 72.9904 84.2254 73.1265 84.0667C73.2625 83.908 73.3369 83.7066 73.3364 83.4985V80.2505C73.3351 80.1251 73.3067 80.0015 73.2529 79.8879C73.1991 79.7744 73.1214 79.6736 73.0248 79.5924C72.9283 79.5112 72.8152 79.4514 72.6933 79.4171C72.5714 79.3829 72.4435 79.3749 72.3182 79.3938L65.1905 80.5141C64.9829 80.5476 64.7942 80.6532 64.6582 80.812C64.5222 80.9707 64.4478 81.1722 64.4482 81.3802V84.6282C64.4479 84.754 64.4753 84.8785 64.5286 84.9928C64.5818 85.1071 64.6596 85.2086 64.7565 85.2901C64.8535 85.3717 64.9672 85.4313 65.0898 85.465C65.2124 85.4986 65.341 85.5054 65.4665 85.4849Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
37
+ <path d="M65.4666 103.946L72.5942 102.826C72.8018 102.793 72.9905 102.687 73.1265 102.528C73.2626 102.37 73.337 102.168 73.3365 101.96V98.712C73.3366 98.5859 73.3091 98.4612 73.2559 98.3465C73.2028 98.2318 73.1252 98.1299 73.0285 98.0476C72.9318 97.9654 72.8182 97.9047 72.6957 97.8699C72.5731 97.8351 72.4443 97.8269 72.3183 97.8459L65.1906 98.9756C64.9838 99.0071 64.7953 99.1109 64.6591 99.268C64.5229 99.4252 64.4482 99.6254 64.4483 99.8324V103.08C64.4466 103.207 64.473 103.333 64.5256 103.448C64.5783 103.563 64.6559 103.666 64.7529 103.749C64.85 103.831 64.9643 103.892 65.0876 103.926C65.2109 103.96 65.3402 103.967 65.4666 103.946V103.946Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
38
+ <path d="M65.4667 94.7299L72.5944 93.5908C72.802 93.5572 72.9907 93.4516 73.1267 93.2929C73.2627 93.1342 73.3371 92.9328 73.3366 92.7247V89.4767C73.3367 89.3505 73.3092 89.2258 73.2561 89.1111C73.2029 88.9964 73.1253 88.8945 73.0286 88.8122C72.9319 88.73 72.8184 88.6693 72.6958 88.6345C72.5732 88.5997 72.4445 88.5916 72.3184 88.6106L65.1907 89.7309C64.9831 89.7645 64.7944 89.8701 64.6584 90.0288C64.5224 90.1875 64.448 90.3889 64.4485 90.597V93.845C64.4456 93.9727 64.471 94.0995 64.523 94.2165C64.5749 94.3335 64.6521 94.4378 64.7492 94.5222C64.8462 94.6065 64.9607 94.6688 65.0847 94.7047C65.2086 94.7406 65.339 94.7492 65.4667 94.7299Z" stroke="#9DA3AC" stroke-width="0.9375" stroke-linecap="round" stroke-linejoin="round"/>
39
+ </g>
40
+ <defs>
41
+ <clipPath id="clip0_10876_5062">
42
+ <rect width="60" height="100" fill="white" transform="translate(30 10)"/>
43
+ </clipPath>
44
+ </defs>
45
+ </svg>
46
+ </template>
47
+ <script setup lang="ts">
48
+ </script>
@@ -0,0 +1,234 @@
1
+ <template>
2
+ <svg
3
+ width="121"
4
+ height="120"
5
+ viewBox="0 0 121 120"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle
10
+ cx="60.8099"
11
+ cy="60"
12
+ r="50"
13
+ fill="#BDC7CE"
14
+ fill-opacity="0.15"
15
+ />
16
+ <g clip-path="url(#clip0_8755_21164)">
17
+ <path
18
+ d="M85.1476 32.0485H82.1309C82.1334 31.1151 81.95 30.1903 81.5913 29.327C81.2325 28.4637 80.7054 27.6787 80.04 27.0169C79.3746 26.3552 78.584 25.8295 77.7132 25.47C76.8425 25.1105 75.9087 24.9242 74.9652 24.9218H66.8763V18.021L67.828 19.0378L68.7796 18.0304L69.9215 19.0472L71.0445 18.0304L72.2625 19.0472L73.2808 18.0304L74.1182 18.7836V14.1988C74.1183 13.2097 73.7251 12.2603 73.0236 11.5557C72.322 10.8511 71.3684 10.4478 70.3688 10.433H49.3664C48.3668 10.4478 47.4132 10.8511 46.7117 11.5557C46.0101 12.2603 45.6169 13.2097 45.617 14.1988V24.9218H38.4513C37.5078 24.9242 36.574 25.1105 35.7032 25.47C34.8325 25.8295 34.0419 26.3552 33.3765 27.0169C32.7111 27.6787 32.1839 28.4637 31.8252 29.327C31.4664 30.1903 31.283 31.1151 31.2855 32.0485V72.5305L34.9779 103.269C35.1807 104.996 36.0176 106.59 37.3298 107.748C38.6419 108.905 40.338 109.546 42.096 109.548H71.8248C73.6036 109.545 75.3179 108.888 76.6349 107.705C77.952 106.522 78.7779 104.898 78.9525 103.146L79.6472 96.4149H85.1476C85.8332 96.4137 86.5119 96.2787 87.1447 96.0177C87.7775 95.7567 88.3522 95.3748 88.8356 94.8938C89.3191 94.4129 89.702 93.8424 89.9624 93.2149C90.2227 92.5874 90.3555 91.9153 90.353 91.237V37.2264C90.3555 35.8573 89.8088 34.5431 88.8328 33.5723C87.8569 32.6015 86.5315 32.0535 85.1476 32.0485Z"
19
+ class="fill-white dark:fill-gray-900"
20
+ />
21
+ <path
22
+ d="M71.8248 109.529H42.096C40.338 109.527 38.6419 108.887 37.3298 107.729C36.0176 106.571 35.1807 104.978 34.9779 103.25L31.2855 72.5119V32.0299C31.283 31.0965 31.4664 30.1717 31.8252 29.3084C32.1839 28.4451 32.7111 27.6601 33.3765 26.9983C34.0419 26.3366 34.8325 25.8109 35.7032 25.4514C36.574 25.0919 37.5078 24.9057 38.4513 24.9032H74.9461C75.8896 24.9057 76.8234 25.0919 77.6942 25.4514C78.5649 25.8109 79.3556 26.3366 80.021 26.9983C80.6864 27.6601 81.2135 28.4451 81.5723 29.3084C81.931 30.1717 82.1144 31.0965 82.1119 32.0299V72.5119L78.981 103.137C78.8037 104.892 77.9728 106.518 76.6499 107.7C75.3271 108.881 73.6071 109.533 71.8248 109.529V109.529Z"
23
+ stroke="#9DA3AC"
24
+ stroke-width="0.9375"
25
+ stroke-linecap="round"
26
+ stroke-linejoin="round"
27
+ />
28
+ <path
29
+ opacity="0.2"
30
+ d="M37.9186 103.25L34.2358 72.5119V32.0299C34.2358 30.1529 34.9862 28.3521 36.3233 27.0204C37.6605 25.6888 39.4757 24.9344 41.373 24.922H38.423C37.4795 24.9245 36.5457 25.1108 35.6749 25.4703C34.8042 25.8298 34.0135 26.3554 33.3481 27.0172C32.6827 27.6789 32.1556 28.4639 31.7968 29.3272C31.4381 30.1905 31.2547 31.1153 31.2572 32.0487V72.5307L34.9495 103.269C35.1524 104.996 35.9893 106.59 37.3015 107.748C38.6136 108.905 40.3096 109.546 42.0677 109.548H45.0082C43.2528 109.537 41.5624 108.889 40.2562 107.729C38.9501 106.569 38.1185 104.975 37.9186 103.25Z"
31
+ fill="#BDC7CE"
32
+ />
33
+ <path
34
+ opacity="0.2"
35
+ d="M68.0845 83.5456C67.9582 83.5663 67.8288 83.5593 67.7055 83.5251C67.5822 83.4909 67.468 83.4304 67.3709 83.3479C67.2738 83.2653 67.1962 83.1626 67.1436 83.0471C67.0909 82.9316 67.0646 82.8061 67.0663 82.6795V80.26L66.0004 80.4295C65.7929 80.463 65.6042 80.5686 65.4681 80.7273C65.3321 80.8861 65.2577 81.0875 65.2582 81.2956V84.5436C65.2581 84.6697 65.2856 84.7944 65.3387 84.9091C65.3919 85.0238 65.4695 85.1257 65.5662 85.208C65.6629 85.2902 65.7764 85.3508 65.899 85.3857C66.0216 85.4205 66.1503 85.4287 66.2764 85.4097L73.4041 84.2799C73.6109 84.2484 73.7994 84.1447 73.9356 83.9876C74.0718 83.8304 74.1465 83.6302 74.1464 83.4232V82.5948L68.0845 83.5456Z"
36
+ fill="#BDC7CE"
37
+ />
38
+ <path
39
+ opacity="0.2"
40
+ d="M68.0845 92.9883C67.959 93.0088 67.8304 93.002 67.7078 92.9684C67.5852 92.9347 67.4715 92.8751 67.3746 92.7935C67.2776 92.712 67.1999 92.6105 67.1466 92.4962C67.0934 92.3818 67.066 92.2574 67.0663 92.1316V89.7026L66.0004 89.8721C65.7929 89.9057 65.6042 90.0113 65.4681 90.17C65.3321 90.3287 65.2577 90.5301 65.2582 90.7382V93.9862C65.2581 94.1124 65.2856 94.2371 65.3387 94.3518C65.3919 94.4664 65.4695 94.5684 65.5662 94.6507C65.6629 94.7329 65.7764 94.7935 65.899 94.8283C66.0216 94.8631 66.1503 94.8714 66.2764 94.8524L73.4041 93.7226C73.6109 93.6911 73.7994 93.5874 73.9356 93.4303C74.0718 93.2731 74.1465 93.0729 74.1464 92.8659V92.0374L68.0845 92.9883Z"
41
+ fill="#BDC7CE"
42
+ />
43
+ <path
44
+ opacity="0.2"
45
+ d="M68.0845 101.988C67.9584 102.007 67.8297 101.999 67.7071 101.964C67.5845 101.929 67.471 101.869 67.3743 101.786C67.2776 101.704 67.2 101.602 67.1468 101.488C67.0937 101.373 67.0662 101.248 67.0663 101.122V98.6931L66.0004 98.8626C65.7929 98.8961 65.6042 99.0017 65.4681 99.1604C65.3321 99.3192 65.2577 99.5207 65.2582 99.7287V103.005C65.2581 103.131 65.2856 103.256 65.3387 103.371C65.3919 103.485 65.4695 103.587 65.5662 103.669C65.6629 103.752 65.7764 103.812 65.899 103.847C66.0216 103.882 66.1503 103.89 66.2764 103.871L73.4041 102.751C73.6117 102.717 73.8004 102.612 73.9364 102.453C74.0724 102.294 74.1469 102.093 74.1464 101.885V101.056L68.0845 101.988Z"
46
+ fill="#BDC7CE"
47
+ />
48
+ <path
49
+ opacity="0.2"
50
+ d="M55.3904 83.7997C55.1556 83.7997 54.9305 83.7075 54.7646 83.5433C54.5986 83.3791 54.5054 83.1563 54.5054 82.9241V80.74H53.5537C53.3207 80.7425 53.098 80.8358 52.9341 80.9998C52.7702 81.1637 52.6782 81.385 52.6782 81.6156V84.8823C52.6782 85.1129 52.7702 85.3342 52.9341 85.4982C53.098 85.6621 53.3207 85.7554 53.5537 85.7579H60.6909C60.924 85.7554 61.1467 85.6621 61.3106 85.4982C61.4745 85.3342 61.5664 85.1129 61.5664 84.8823V83.7997H55.3904Z"
51
+ fill="#BDC7CE"
52
+ />
53
+ <path
54
+ opacity="0.2"
55
+ d="M42.5632 82.67C42.3557 82.6365 42.1669 82.5309 42.0309 82.3721C41.8949 82.2134 41.8205 82.0119 41.821 81.8038V79.4126L41.1358 79.3091C41.0097 79.2901 40.881 79.2982 40.7584 79.333C40.6358 79.3678 40.5223 79.4285 40.4256 79.5108C40.3289 79.593 40.2513 79.6949 40.1981 79.8096C40.145 79.9243 40.1175 80.049 40.1176 80.1752V83.4232C40.1174 83.6301 40.1922 83.8303 40.3283 83.9875C40.4645 84.1446 40.653 84.2483 40.8598 84.2798L47.9875 85.4096C48.1136 85.4286 48.2423 85.4204 48.3649 85.3856C48.4875 85.3508 48.601 85.2902 48.6977 85.2079C48.7944 85.1256 48.872 85.0237 48.9252 84.909C48.9783 84.7943 49.0058 84.6696 49.0057 84.5435V83.6773L42.5632 82.67Z"
56
+ fill="#BDC7CE"
57
+ />
58
+ <path
59
+ opacity="0.2"
60
+ d="M55.3904 93.12C55.1573 93.12 54.9337 93.029 54.768 92.8669C54.6023 92.7047 54.5079 92.4844 54.5054 92.2539V90.0603H53.5538C53.3207 90.0628 53.098 90.1561 52.9341 90.32C52.7702 90.4839 52.6783 90.7052 52.6783 90.9358V94.2027C52.677 94.3172 52.6987 94.4308 52.7422 94.537C52.7856 94.6431 52.8499 94.7397 52.9313 94.8212C53.0127 94.9026 53.1097 94.9672 53.2165 95.0114C53.3234 95.0555 53.438 95.0782 53.5538 95.0782H60.691C60.8067 95.0782 60.9214 95.0555 61.0282 95.0114C61.1351 94.9672 61.232 94.9026 61.3134 94.8212C61.3948 94.7397 61.4591 94.6431 61.5026 94.537C61.546 94.4308 61.5677 94.3172 61.5665 94.2027V93.12H55.3904Z"
61
+ fill="#BDC7CE"
62
+ />
63
+ <path
64
+ opacity="0.2"
65
+ d="M42.5632 91.9902C42.3557 91.9566 42.1669 91.851 42.0309 91.6923C41.8949 91.5336 41.8205 91.3322 41.821 91.1241V88.7422L41.1358 88.6292C41.0097 88.6102 40.881 88.6184 40.7584 88.6533C40.6358 88.6881 40.5223 88.7487 40.4256 88.8309C40.3289 88.9132 40.2513 89.0152 40.1981 89.1298C40.145 89.2445 40.1175 89.3692 40.1176 89.4954V92.7433C40.1171 92.9514 40.1915 93.1529 40.3275 93.3116C40.4635 93.4703 40.6522 93.5759 40.8598 93.6095L48.0351 94.7298C48.1612 94.7488 48.2899 94.7406 48.4125 94.7058C48.5351 94.671 48.6486 94.6104 48.7453 94.5281C48.842 94.4459 48.9196 94.3439 48.9728 94.2292C49.0259 94.1145 49.0534 93.9898 49.0533 93.8637V93.007L42.5632 91.9902Z"
66
+ fill="#BDC7CE"
67
+ />
68
+ <path
69
+ opacity="0.2"
70
+ d="M55.3904 102.365C55.1556 102.365 54.9305 102.273 54.7646 102.108C54.5986 101.944 54.5054 101.722 54.5054 101.489V99.3052H53.5537C53.3215 99.3052 53.0988 99.3965 52.9347 99.5589C52.7705 99.7213 52.6782 99.9416 52.6782 100.171V103.448C52.6782 103.678 52.7702 103.899 52.9341 104.063C53.098 104.227 53.3207 104.321 53.5537 104.323H60.6909C60.924 104.321 61.1467 104.227 61.3106 104.063C61.4745 103.899 61.5664 103.678 61.5664 103.448V102.365H55.3904Z"
71
+ fill="#BDC7CE"
72
+ />
73
+ <path
74
+ opacity="0.2"
75
+ d="M42.5632 101.226C42.3557 101.192 42.1669 101.087 42.0309 100.928C41.8949 100.769 41.8205 100.568 41.821 100.36V97.9777L41.1358 97.8647C41.0097 97.8457 40.881 97.8539 40.7584 97.8887C40.6358 97.9235 40.5223 97.9841 40.4256 98.0664C40.3289 98.1487 40.2513 98.2506 40.1981 98.3653C40.145 98.48 40.1175 98.6047 40.1176 98.7309V101.979C40.1171 102.187 40.1915 102.388 40.3275 102.547C40.4635 102.706 40.6522 102.811 40.8598 102.845L48.0351 103.946C48.1547 103.957 48.2752 103.943 48.3891 103.905C48.503 103.867 48.6078 103.807 48.697 103.727C48.7863 103.648 48.8581 103.551 48.9079 103.443C48.9577 103.335 48.9846 103.218 48.9867 103.099V102.242L42.5632 101.226Z"
76
+ fill="#BDC7CE"
77
+ />
78
+ <path
79
+ opacity="0.2"
80
+ d="M52.7926 10.4706C51.793 10.4855 50.8394 10.8888 50.1379 11.5934C49.4363 12.298 49.0431 13.2474 49.0432 14.2364V24.9594H45.722V14.1988C45.7219 13.2097 46.1151 12.2604 46.8167 11.5557C47.5182 10.8511 48.4718 10.4478 49.4715 10.433L52.7926 10.4706Z"
81
+ fill="#BDC7CE"
82
+ />
83
+ <path
84
+ opacity="0.2"
85
+ d="M74.1472 18.2753V18.8119L73.8522 18.5483L73.3098 18.0587L72.7293 18.633L72.2915 19.0755L71.6159 18.5106L71.0735 18.0587L70.5881 18.5012L69.9506 19.0755L68.723 18.0587L67.7713 19.0661L66.8197 18.0493V14.2271C66.8197 13.2708 67.2037 12.3536 67.8872 11.6774C68.5707 11.0012 69.4978 10.6213 70.4644 10.6213C71.4311 10.6213 72.3581 11.0012 73.0416 11.6774C73.7252 12.3536 74.1092 13.2708 74.1092 14.2271L74.1472 18.2753Z"
86
+ fill="#BDC7CE"
87
+ />
88
+ <path
89
+ opacity="0.2"
90
+ d="M69.0275 14.3873C69.0149 13.558 69.2837 12.7484 69.7909 12.088C70.298 11.4276 71.0143 10.9544 71.8252 10.7439C71.3913 10.5603 70.9266 10.4582 70.4549 10.4427C69.4737 10.484 68.5465 10.8989 67.8673 11.6007C67.1881 12.3025 66.8093 13.2368 66.8102 14.2084V18.0307L67.7618 19.0475L68.7134 18.0401L69.037 18.3037L69.0275 14.3873Z"
91
+ fill="#BDC7CE"
92
+ />
93
+ <path
94
+ opacity="0.2"
95
+ d="M82.2263 32.0487V73.8299L79.6664 96.4056H82.6069L85.1287 73.8299V32.0487H82.2263Z"
96
+ fill="#BDC7CE"
97
+ />
98
+ <path
99
+ d="M74.9185 66.4396H39.1564C38.8878 66.4396 38.6219 66.3869 38.3741 66.2844C38.1263 66.1818 37.9016 66.0316 37.713 65.8424C37.5244 65.6532 37.3757 65.4288 37.2755 65.1822C37.1753 64.9356 37.1257 64.6718 37.1295 64.4061V32.8113C37.1282 32.5472 37.1797 32.2854 37.281 32.0411C37.3823 31.7967 37.5314 31.5745 37.7198 31.3873C37.9081 31.2001 38.132 31.0515 38.3785 30.9502C38.6251 30.8488 38.8894 30.7966 39.1564 30.7966H74.9185C75.1847 30.7979 75.448 30.851 75.6935 30.9529C75.9389 31.0548 76.1617 31.2036 76.349 31.3906C76.5364 31.5777 76.6846 31.7995 76.7853 32.0432C76.886 32.287 76.9372 32.548 76.936 32.8113V64.4061C76.9398 64.671 76.8904 64.9341 76.7908 65.18C76.6913 65.426 76.5434 65.65 76.3558 65.839C76.1682 66.0281 75.9446 66.1785 75.6979 66.2816C75.4512 66.3847 75.1863 66.4384 74.9185 66.4396V66.4396Z"
100
+ stroke="#9DA3AC"
101
+ stroke-width="0.9375"
102
+ stroke-linecap="round"
103
+ stroke-linejoin="round"
104
+ />
105
+ <path
106
+ d="M45.6177 24.9218V14.1988C45.6176 13.2097 46.0108 12.2604 46.7123 11.5557C47.4139 10.8511 48.3675 10.4478 49.3671 10.433H70.398C71.3976 10.4478 72.3512 10.8511 73.0528 11.5557C73.7543 12.2604 74.1475 13.2097 74.1474 14.1988V18.7836L73.31 18.0304L72.2917 19.0472L71.0737 18.0304L69.9222 19.0472L68.6946 18.0304L67.743 19.0378L66.7913 18.021"
107
+ stroke="#9DA3AC"
108
+ stroke-width="0.9375"
109
+ stroke-linecap="round"
110
+ stroke-linejoin="round"
111
+ />
112
+ <path
113
+ d="M66.8574 24.9218V14.1988C66.8498 13.7078 66.9409 13.2201 67.1253 12.7642C67.3098 12.3082 67.5839 11.893 67.9318 11.5427C68.2797 11.1924 68.6945 10.9139 69.152 10.7234C69.6096 10.533 70.1008 10.4343 70.5973 10.4331"
114
+ stroke="#9DA3AC"
115
+ stroke-width="0.9375"
116
+ stroke-linecap="round"
117
+ stroke-linejoin="round"
118
+ />
119
+ <path
120
+ d="M49.6046 15.8838H59.8822"
121
+ stroke="#9DA3AC"
122
+ stroke-width="0.9375"
123
+ stroke-linecap="round"
124
+ stroke-linejoin="round"
125
+ />
126
+ <path
127
+ d="M49.6046 19.7062H64.0027"
128
+ stroke="#9DA3AC"
129
+ stroke-width="0.9375"
130
+ stroke-linecap="round"
131
+ stroke-linejoin="round"
132
+ />
133
+ <path
134
+ d="M82.1116 32.0486H85.1473C86.5312 32.0536 87.8566 32.6016 88.8326 33.5724C89.8085 34.5431 90.3552 35.8574 90.3527 37.2265V91.2182C90.3577 91.8981 90.2268 92.5723 89.9676 93.2019C89.7084 93.8316 89.3259 94.4043 88.8421 94.8873C88.3584 95.3702 87.7829 95.7538 87.1488 96.016C86.5147 96.2782 85.8345 96.4138 85.1473 96.415H79.6849"
135
+ stroke="#9DA3AC"
136
+ stroke-width="0.9375"
137
+ stroke-linecap="round"
138
+ stroke-linejoin="round"
139
+ />
140
+ <path
141
+ opacity="0.2"
142
+ d="M56.6946 59.5483C58.8717 59.5614 61.0036 58.9345 62.8201 57.7472C64.6365 56.5599 66.0556 54.8658 66.8975 52.8795C67.7393 50.8932 67.966 48.7044 67.5487 46.5905C67.1313 44.4766 66.0889 42.533 64.5534 41.0061C63.018 39.4792 61.0588 38.4377 58.9243 38.0138C56.7898 37.5899 54.5761 37.8028 52.564 38.6252C50.5518 39.4477 48.832 40.8428 47.6224 42.6336C46.4128 44.4244 45.7681 46.5302 45.7699 48.684C45.7662 50.107 46.0458 51.5169 46.5928 52.833C47.1397 54.1491 47.9434 55.3457 48.9579 56.3545C49.9723 57.3634 51.1777 58.1647 52.5052 58.7127C53.8326 59.2606 55.2562 59.5446 56.6946 59.5483Z"
143
+ fill="#BDC7CE"
144
+ />
145
+ <path
146
+ d="M51.3177 48.5427L55.5715 52.5062L62.0711 44.8522"
147
+ stroke="#9DA3AC"
148
+ stroke-width="0.9375"
149
+ stroke-linecap="round"
150
+ stroke-linejoin="round"
151
+ />
152
+ <path
153
+ d="M31.2855 72.512C31.2855 72.512 37.1285 77.7841 57.027 77.7841C74.1563 77.7841 82.1119 72.512 82.1119 72.512"
154
+ stroke="#9DA3AC"
155
+ stroke-width="0.9375"
156
+ stroke-linecap="round"
157
+ stroke-linejoin="round"
158
+ />
159
+ <path
160
+ d="M60.7006 85.8426H53.5634C53.3303 85.8401 53.1076 85.7468 52.9437 85.5828C52.7798 85.4189 52.6879 85.1977 52.6879 84.9671V81.7002C52.6879 81.4697 52.7798 81.2484 52.9437 81.0844C53.1076 80.9205 53.3303 80.8272 53.5634 80.8247H60.7006C60.9336 80.8272 61.1563 80.9205 61.3202 81.0844C61.4841 81.2484 61.5761 81.4697 61.5761 81.7002V84.9671C61.5761 85.1977 61.4841 85.4189 61.3202 85.5828C61.1563 85.7468 60.9336 85.8401 60.7006 85.8426V85.8426Z"
161
+ stroke="#9DA3AC"
162
+ stroke-width="0.9375"
163
+ stroke-linecap="round"
164
+ stroke-linejoin="round"
165
+ />
166
+ <path
167
+ d="M60.7006 104.314H53.5634C53.3312 104.314 53.1085 104.222 52.9443 104.06C52.7801 103.897 52.6879 103.677 52.6879 103.447V100.181C52.6879 99.9509 52.7801 99.7306 52.9443 99.5681C53.1085 99.4057 53.3312 99.3145 53.5634 99.3145H60.7006C60.9327 99.3145 61.1554 99.4057 61.3196 99.5681C61.4838 99.7306 61.5761 99.9509 61.5761 100.181V103.457C61.5735 103.685 61.4802 103.903 61.3163 104.063C61.1524 104.224 60.9311 104.314 60.7006 104.314V104.314Z"
168
+ stroke="#9DA3AC"
169
+ stroke-width="0.9375"
170
+ stroke-linecap="round"
171
+ stroke-linejoin="round"
172
+ />
173
+ <path
174
+ d="M60.7006 95.0781H53.5634C53.3303 95.0756 53.1076 94.9822 52.9437 94.8183C52.7798 94.6544 52.6879 94.4331 52.6879 94.2026V90.9357C52.6879 90.7051 52.7798 90.4838 52.9437 90.3199C53.1076 90.156 53.3303 90.0627 53.5634 90.0602H60.7006C60.9336 90.0627 61.1563 90.156 61.3202 90.3199C61.4841 90.4838 61.5761 90.7051 61.5761 90.9357V94.2026C61.5761 94.4331 61.4841 94.6544 61.3202 94.8183C61.1563 94.9822 60.9336 95.0756 60.7006 95.0781V95.0781Z"
175
+ stroke="#9DA3AC"
176
+ stroke-width="0.9375"
177
+ stroke-linecap="round"
178
+ stroke-linejoin="round"
179
+ />
180
+ <path
181
+ d="M48.0344 85.4849L40.9067 84.3646C40.6991 84.331 40.5104 84.2254 40.3744 84.0667C40.2384 83.908 40.1639 83.7066 40.1644 83.4985V80.2505C40.1657 80.1251 40.1942 80.0015 40.248 79.8879C40.3017 79.7744 40.3795 79.6736 40.476 79.5924C40.5726 79.5112 40.6856 79.4514 40.8075 79.4171C40.9295 79.3829 41.0574 79.3749 41.1827 79.3938L48.3103 80.5141C48.5009 80.56 48.6706 80.6671 48.7929 80.8188C48.9152 80.9705 48.9831 81.158 48.986 81.352V84.6C48.9892 84.7219 48.9662 84.8431 48.9187 84.9557C48.8713 85.0683 48.8003 85.1696 48.7104 85.2532C48.6206 85.3367 48.5139 85.4006 48.3974 85.4405C48.2809 85.4804 48.1572 85.4956 48.0344 85.4849Z"
182
+ stroke="#9DA3AC"
183
+ stroke-width="0.9375"
184
+ stroke-linecap="round"
185
+ stroke-linejoin="round"
186
+ />
187
+ <path
188
+ d="M48.0344 103.946L40.9067 102.826C40.6991 102.792 40.5104 102.687 40.3744 102.528C40.2384 102.369 40.1639 102.168 40.1644 101.96V98.7119C40.1643 98.5857 40.1918 98.461 40.245 98.3463C40.2982 98.2317 40.3758 98.1298 40.4725 98.0475C40.5692 97.9652 40.6827 97.9046 40.8053 97.8698C40.9279 97.835 41.0566 97.8268 41.1827 97.8458L48.3103 98.9755C48.5171 99.007 48.7057 99.1108 48.8418 99.2679C48.978 99.4251 49.0528 99.6253 49.0526 99.8322V103.08C49.0543 103.207 49.0279 103.332 48.9753 103.448C48.9227 103.563 48.8451 103.666 48.748 103.749C48.6509 103.831 48.5367 103.892 48.4134 103.926C48.2901 103.96 48.1607 103.967 48.0344 103.946V103.946Z"
189
+ stroke="#9DA3AC"
190
+ stroke-width="0.9375"
191
+ stroke-linecap="round"
192
+ stroke-linejoin="round"
193
+ />
194
+ <path
195
+ d="M48.0351 94.7297L40.8598 93.5905C40.6522 93.557 40.4635 93.4514 40.3275 93.2927C40.1915 93.1339 40.1171 92.9325 40.1176 92.7244V89.4764C40.1175 89.3503 40.145 89.2256 40.1981 89.1109C40.2513 88.9962 40.3289 88.8942 40.4256 88.812C40.5223 88.7297 40.6358 88.6691 40.7584 88.6343C40.881 88.5995 41.0097 88.5913 41.1358 88.6103L48.2635 89.7306C48.471 89.7642 48.6598 89.8698 48.7958 90.0285C48.9318 90.1872 49.0062 90.3887 49.0057 90.5968V93.8447C49.0077 93.968 48.9833 94.0902 48.9341 94.2035C48.885 94.3168 48.8122 94.4186 48.7206 94.5021C48.629 94.5856 48.5205 94.6491 48.4024 94.6883C48.2843 94.7275 48.1591 94.7416 48.0351 94.7297Z"
196
+ stroke="#9DA3AC"
197
+ stroke-width="0.9375"
198
+ stroke-linecap="round"
199
+ stroke-linejoin="round"
200
+ />
201
+ <path
202
+ d="M66.2764 85.4849L73.4041 84.3646C73.6117 84.331 73.8004 84.2254 73.9364 84.0667C74.0724 83.908 74.1469 83.7066 74.1464 83.4985V80.2505C74.1451 80.1251 74.1166 80.0015 74.0628 79.8879C74.0091 79.7744 73.9313 79.6736 73.8348 79.5924C73.7382 79.5112 73.6252 79.4514 73.5033 79.4171C73.3813 79.3829 73.2534 79.3749 73.1281 79.3938L66.0004 80.5141C65.7929 80.5476 65.6042 80.6532 65.4681 80.812C65.3321 80.9707 65.2577 81.1722 65.2582 81.3802V84.6282C65.2579 84.754 65.2853 84.8785 65.3385 84.9928C65.3918 85.1071 65.4696 85.2086 65.5665 85.2901C65.6634 85.3717 65.7771 85.4313 65.8997 85.465C66.0223 85.4986 66.1509 85.5054 66.2764 85.4849Z"
203
+ stroke="#9DA3AC"
204
+ stroke-width="0.9375"
205
+ stroke-linecap="round"
206
+ stroke-linejoin="round"
207
+ />
208
+ <path
209
+ d="M66.2765 103.946L73.4042 102.826C73.6118 102.792 73.8005 102.687 73.9365 102.528C74.0725 102.369 74.1469 102.168 74.1464 101.96V98.7119C74.1465 98.5857 74.119 98.461 74.0659 98.3463C74.0127 98.2317 73.9351 98.1298 73.8384 98.0475C73.7417 97.9652 73.6282 97.9046 73.5056 97.8698C73.383 97.835 73.2543 97.8268 73.1282 97.8458L66.0005 98.9755C65.7937 99.007 65.6052 99.1108 65.469 99.2679C65.3329 99.4251 65.2581 99.6253 65.2583 99.8322V103.08C65.2565 103.207 65.2829 103.332 65.3356 103.448C65.3882 103.563 65.4658 103.666 65.5629 103.749C65.66 103.831 65.7742 103.892 65.8975 103.926C66.0208 103.96 66.1502 103.967 66.2765 103.946V103.946Z"
210
+ stroke="#9DA3AC"
211
+ stroke-width="0.9375"
212
+ stroke-linecap="round"
213
+ stroke-linejoin="round"
214
+ />
215
+ <path
216
+ d="M66.2766 94.7298L73.4043 93.5907C73.6119 93.5571 73.8006 93.4515 73.9366 93.2928C74.0726 93.1341 74.1471 92.9326 74.1466 92.7245V89.4766C74.1467 89.3504 74.1192 89.2257 74.066 89.111C74.0129 88.9963 73.9353 88.8943 73.8386 88.8121C73.7419 88.7298 73.6283 88.6692 73.5057 88.6344C73.3832 88.5996 73.2544 88.5915 73.1283 88.6105L66.0007 89.7308C65.7931 89.7643 65.6044 89.8699 65.4684 90.0286C65.3323 90.1874 65.2579 90.3888 65.2584 90.5969V93.8449C65.2555 93.9726 65.281 94.0994 65.3329 94.2164C65.3849 94.3334 65.4621 94.4377 65.5591 94.522C65.6561 94.6064 65.7706 94.6687 65.8946 94.7045C66.0186 94.7404 66.149 94.7491 66.2766 94.7298Z"
217
+ stroke="#9DA3AC"
218
+ stroke-width="0.9375"
219
+ stroke-linecap="round"
220
+ stroke-linejoin="round"
221
+ />
222
+ </g>
223
+ <defs>
224
+ <clipPath id="clip0_8755_21164">
225
+ <rect
226
+ width="60"
227
+ height="100"
228
+ fill="white"
229
+ transform="translate(30.8099 10)"
230
+ />
231
+ </clipPath>
232
+ </defs>
233
+ </svg>
234
+ </template>
@@ -0,0 +1,108 @@
1
+ <template>
2
+ <svg
3
+ fill="none"
4
+ height="120"
5
+ viewBox="0 0 120 120"
6
+ width="120"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <circle cx="60" cy="60" fill="#BDC7CE" fill-opacity="0.15" r="50" />
10
+ <g clip-path="url(#clip0_701_235264)">
11
+ <path
12
+ d="M60.7734 43.3979C44.3608 43.3979 31.0469 45.9054 31.0469 48.9999V49.3283L37.1441 101.229C37.3192 102.773 38.0022 104.216 39.0869 105.334C40.1716 106.451 41.5971 107.181 43.1414 107.408C48.9499 108.173 54.8044 108.538 60.6634 108.502C66.3933 108.547 72.1198 108.215 77.8056 107.507C79.3499 107.29 80.7795 106.574 81.8742 105.468C82.9688 104.362 83.6676 102.928 83.8629 101.388L90.4699 49.3681V49.0398C90.4999 45.9054 77.1859 43.3979 60.7734 43.3979Z"
13
+ class="fill-white dark:fill-gray-900"
14
+ />
15
+ <path
16
+ d="M54.5568 18.4728C37.8144 22.1942 24.8203 27.7863 25.5699 30.9604L27.2492 38.4629H27.4391C29.738 40.9803 43.102 40.3733 58.7249 36.9007C74.3478 33.4281 86.7122 28.3335 87.7117 25.0798H87.9016L86.2224 17.5773C85.4527 14.3136 71.3291 14.7514 54.5568 18.4728Z"
17
+ class="fill-white dark:fill-gray-900"
18
+ />
19
+ <path
20
+ d="M86.1721 17.4976L86.2421 17.8359H86.0622C85.0626 21.0797 72.6983 26.1841 57.0754 29.6567C41.4525 33.1294 28.0885 33.7363 25.7896 31.2189H25.6097L25.5297 30.8806C24.82 27.6966 37.8141 22.1045 54.5165 18.3831C71.2189 14.6617 85.4525 14.3135 86.1721 17.4976Z"
21
+ class="fill-white dark:fill-gray-900"
22
+ />
23
+ <path
24
+ d="M74.9769 24.5225L58.6743 36.8608C43.0514 40.3334 29.6875 40.9404 27.3986 38.4329H27.2087L25.6094 31.2687H25.7893C28.0883 33.7762 49.2686 34.2538 74.9769 24.5225Z"
25
+ fill="#BDC7CE"
26
+ opacity="0.2"
27
+ />
28
+ <path
29
+ d="M60.7734 43.3979C44.3608 43.3979 31.0469 45.9054 31.0469 48.9999V49.3283L37.1441 101.229C37.3192 102.773 38.0022 104.216 39.0869 105.334C40.1716 106.451 41.5971 107.181 43.1414 107.408C48.9499 108.173 54.8044 108.538 60.6634 108.502C66.3933 108.547 72.1198 108.215 77.8056 107.507C79.3499 107.29 80.7795 106.574 81.8742 105.468C82.9688 104.362 83.6676 102.928 83.8629 101.388L90.4699 49.3681V49.0398C90.4999 45.9054 77.1859 43.3979 60.7734 43.3979Z"
30
+ stroke="#9DA3AC"
31
+ stroke-linecap="round"
32
+ stroke-linejoin="round"
33
+ />
34
+ <path
35
+ d="M54.5568 18.4728C37.8144 22.1942 24.8203 27.7863 25.5699 30.9604L27.2492 38.4629H27.4391C29.738 40.9803 43.102 40.3733 58.7249 36.9007C74.3478 33.4281 86.7122 28.3335 87.7117 25.0798H87.9016L86.2224 17.5773C85.4527 14.3136 71.3291 14.7514 54.5568 18.4728Z"
36
+ stroke="#9DA3AC"
37
+ stroke-linecap="round"
38
+ stroke-linejoin="round"
39
+ />
40
+ <path
41
+ d="M25.6094 31.3084H25.7893C28.0883 33.8258 41.4522 33.2188 57.0751 29.7462C72.698 26.2736 85.0623 21.179 86.0619 17.9253H86.2418"
42
+ stroke="#9DA3AC"
43
+ stroke-linecap="round"
44
+ stroke-linejoin="round"
45
+ />
46
+ <path
47
+ d="M60.7738 98.0249C60.4702 98.0262 60.1694 97.9676 59.8887 97.8526C59.6079 97.7375 59.3529 97.5683 59.1382 97.3546C58.9235 97.1409 58.7535 96.887 58.6379 96.6075C58.5224 96.3281 58.4635 96.0286 58.4649 95.7264V66.0448C58.5035 65.46 58.7641 64.9118 59.1938 64.5112C59.6235 64.1107 60.1901 63.8878 60.7788 63.8878C61.3675 63.8878 61.9341 64.1107 62.3638 64.5112C62.7935 64.9118 63.0541 65.46 63.0928 66.0448V95.7264C63.0928 96.0291 63.0327 96.3287 62.916 96.6082C62.7994 96.8878 62.6284 97.1416 62.4129 97.3552C62.1975 97.5688 61.9418 97.7378 61.6605 97.8528C61.3792 97.9677 61.0779 98.0262 60.7738 98.0249V98.0249Z"
48
+ stroke="#9DA3AC"
49
+ stroke-miterlimit="10"
50
+ />
51
+ <path
52
+ d="M60.7738 96.7411V67.0595C60.7742 66.5149 60.9697 65.9883 61.3251 65.5743C61.6805 65.1603 62.1726 64.886 62.7129 64.8008C62.4426 64.3844 62.0443 64.0662 61.5774 63.8937C61.1105 63.7212 60.6001 63.7035 60.1223 63.8434C59.6445 63.9833 59.225 64.2732 58.9263 64.6699C58.6276 65.0666 58.4657 65.5488 58.4649 66.0446V95.7262C58.4635 96.0284 58.5224 96.3279 58.6379 96.6073C58.7535 96.8868 58.9235 97.1407 59.1382 97.3544C59.3529 97.5681 59.6079 97.7373 59.8887 97.8524C60.1694 97.9674 60.4702 98.026 60.7738 98.0247C60.9002 98.0345 61.0272 98.0345 61.1536 98.0247C60.902 97.6438 60.7697 97.197 60.7738 96.7411Z"
53
+ fill="#BDC7CE"
54
+ opacity="0.2"
55
+ />
56
+ <path
57
+ d="M46.9504 98.0846C46.3738 98.0868 45.8174 97.8732 45.3916 97.4861C44.9658 97.0991 44.7016 96.567 44.6515 95.9951L41.9627 66.4329C41.907 65.8246 42.0964 65.2192 42.4891 64.7499C42.8818 64.2806 43.4457 63.9858 44.0567 63.9304C44.6678 63.875 45.2759 64.0635 45.7473 64.4544C46.2188 64.8453 46.5149 65.4067 46.5706 66.015L49.2594 95.5772C49.3121 96.1851 49.1209 96.7891 48.7276 97.2571C48.3342 97.7251 47.7708 98.0191 47.1603 98.0747L46.9504 98.0846Z"
58
+ stroke="#9DA3AC"
59
+ stroke-miterlimit="10"
60
+ />
61
+ <path
62
+ d="M74.1375 96.8209L76.8263 67.2686C76.8514 66.9677 76.9361 66.6747 77.0756 66.4065C77.215 66.1383 77.4064 65.9002 77.6387 65.706C77.871 65.5117 78.1396 65.3651 78.429 65.2747C78.7185 65.1843 79.023 65.1518 79.3252 65.1791C79.1171 64.7147 78.7602 64.3322 78.3104 64.0913C77.8606 63.8504 77.3433 63.7647 76.8394 63.8478C76.3355 63.9308 75.8734 64.1778 75.5256 64.5502C75.1778 64.9225 74.9638 65.3991 74.9172 65.9055L72.2284 95.4677C72.1755 96.0767 72.3664 96.6818 72.7595 97.1514C73.1526 97.621 73.7161 97.9171 74.3274 97.9751C74.1616 97.6142 74.096 97.2156 74.1375 96.8209Z"
63
+ fill="#BDC7CE"
64
+ opacity="0.2"
65
+ />
66
+ <path
67
+ d="M46.8998 96.9902L44.0511 67.4479C43.9925 66.8398 44.1785 66.2334 44.5681 65.7615C44.9578 65.2897 45.5195 64.9908 46.1301 64.9304C45.8397 64.5122 45.4181 64.2016 44.9314 64.0473C44.4448 63.893 43.9204 63.9038 43.4405 64.0778C42.9606 64.2518 42.5522 64.5794 42.2793 65.0091C42.0063 65.4389 41.8842 65.9466 41.932 66.4528L44.7707 95.9951C44.7995 96.2966 44.8879 96.5895 45.0307 96.8569C45.1735 97.1242 45.368 97.3609 45.603 97.5532C45.838 97.7455 46.1089 97.8897 46.4 97.9775C46.6912 98.0653 46.9969 98.0949 47.2996 98.0647C47.0753 97.7469 46.9376 97.3767 46.8998 96.9902Z"
68
+ fill="#BDC7CE"
69
+ opacity="0.2"
70
+ />
71
+ <path
72
+ d="M74.4374 98.0846H74.2275C73.9243 98.0596 73.6291 97.9749 73.3589 97.8355C73.0888 97.6961 72.8491 97.5047 72.6539 97.2723C72.4586 97.04 72.3117 96.7714 72.2215 96.4821C72.1313 96.1928 72.0997 95.8886 72.1285 95.587L74.8173 66.0248C74.8423 65.7233 74.9274 65.4298 75.0676 65.1614C75.2078 64.893 75.4003 64.6551 75.6338 64.4615C75.8673 64.268 76.1373 64.1226 76.4278 64.0339C76.7184 63.9453 77.0238 63.9152 77.3261 63.9453C77.9366 64.0009 78.5001 64.2948 78.8934 64.7628C79.2867 65.2308 79.478 65.8348 79.4252 66.4428L76.7364 96.0049C76.6817 96.5741 76.4159 97.1026 75.9908 97.4872C75.5657 97.8717 75.0118 98.0847 74.4374 98.0846Z"
73
+ stroke="#9DA3AC"
74
+ stroke-miterlimit="10"
75
+ />
76
+ <g opacity="0.2">
77
+ <path
78
+ d="M36.7943 52.0348C33.8856 51.2687 31.9665 50.3532 31.3967 49.3682H31.0469L37.1441 101.279C37.3192 102.823 38.0022 104.266 39.0869 105.384C40.1716 106.501 41.5971 107.23 43.1414 107.458H43.2713L36.7943 52.0348Z"
79
+ fill="#BDC7CE"
80
+ opacity="0.2"
81
+ />
82
+ </g>
83
+ <path
84
+ d="M90.5001 49.3186L83.8932 101.348C83.6979 102.889 82.9991 104.322 81.9044 105.428C80.8098 106.534 79.3802 107.251 77.8359 107.468C72.1501 108.175 66.4235 108.508 60.6937 108.463C54.8347 108.499 48.9802 108.133 43.1717 107.368C41.6274 107.141 40.2019 106.412 39.1172 105.294C38.0325 104.177 37.3494 102.733 37.1744 101.189L31.0771 49.2788H31.427C33.0363 52.0848 45.5306 54.2539 60.7237 54.2539C75.9168 54.2539 88.4111 52.0748 90.0204 49.2788H90.5301L90.5001 49.3186Z"
85
+ stroke="#9DA3AC"
86
+ stroke-linecap="round"
87
+ stroke-linejoin="round"
88
+ />
89
+ <path
90
+ d="M90.5001 48.8009V49.1093H89.9903C88.381 51.9153 75.8867 54.0844 60.6936 54.0844C55.1673 54.0985 49.6455 53.7662 44.1611 53.0894C44.1611 50.2138 53.7868 44.4825 68.63 43.3481C81.2343 44.0447 90.5001 46.2138 90.5001 48.8009Z"
91
+ fill="#BDC7CE"
92
+ opacity="0.2"
93
+ />
94
+ <path
95
+ d="M65.2316 18.9901L63.5523 11.4976L53.4969 13.7364L43.4315 15.9652L45.1107 23.4677L38.5537 24.9204L39.1934 27.7762L48.4492 25.7165L46.77 18.2239L54.1366 16.5921L61.4933 14.9503L63.1725 22.4528L72.4383 20.3931L71.7986 17.5374L65.2316 18.9901Z"
96
+ class="fill-white dark:fill-gray-900"
97
+ stroke="#9DA3AC"
98
+ stroke-linecap="round"
99
+ stroke-linejoin="round"
100
+ />
101
+ </g>
102
+ <defs>
103
+ <clipPath id="clip0_701_235264">
104
+ <rect fill="white" height="98" transform="translate(25 11)" width="66" />
105
+ </clipPath>
106
+ </defs>
107
+ </svg>
108
+ </template>
@@ -0,0 +1,38 @@
1
+ <template>
2
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <circle cx="50" cy="50" r="50" fill="#BDC7CE" fill-opacity="0.15"/>
4
+ <g clip-path="url(#clip0_78_55)">
5
+ <path d="M43.7944 40.2118H43.9657L41.767 28.6625L38.2262 29.3104C37.4457 28.9254 36.7603 28.5686 36.1797 28.2587C34.7656 27.5067 33.1331 27.2549 31.5538 27.5451C15.4677 30.5686 13.7068 28.8784 10.8989 30.9817C6.60613 34.193 5.04512 40.8127 0.428711 44.2305L8.99525 63.1789C8.99525 63.1789 17.8378 67.3291 26.252 56.3338C33.4003 47.0005 41.8431 42.7094 44.6511 42.1085C44.6296 41.3896 44.3218 40.7082 43.7944 40.2118V40.2118Z" fill="white"/>
6
+ <path d="M55.3683 42.9714C58.1762 43.5723 66.619 47.8728 73.7673 57.2061C82.1911 68.2014 91.0241 64.0418 91.0241 64.0418L99.5906 45.1028C95.0123 41.685 93.4608 35.0559 89.168 31.854C86.3125 29.7507 84.5897 31.4315 68.5131 28.4174C66.9319 28.1198 65.2949 28.3685 63.8777 29.1216C63.2971 29.4315 62.6118 29.7883 61.8313 30.1732L58.2904 29.5254L56.1012 41.084H56.263C55.7238 41.5719 55.4021 42.2504 55.3683 42.9714V42.9714Z" fill="white"/>
7
+ <g opacity="0.2">
8
+ <path opacity="0.2" d="M58.2236 29.7891L57.7286 32.4651L65.1054 33.8172C67.0116 34.1559 68.7353 35.1483 69.9718 36.619C71.2084 38.0896 71.8784 39.9441 71.8634 41.8548C72.0184 41.4394 72.1393 41.0123 72.2251 40.5778C72.421 39.5261 72.4037 38.4465 72.1742 37.4015C71.9447 36.3564 71.5075 35.3666 70.888 34.4892C70.2685 33.6118 69.4789 32.8641 68.5648 32.2895C67.6506 31.7148 66.6302 31.3245 65.5623 31.1412L58.2236 29.7891Z" fill="#BDC7CE"/>
9
+ </g>
10
+ <path opacity="0.2" d="M59.3943 32.1732C60.1748 31.7882 60.8696 31.4314 61.4503 31.1216C62.8613 30.3607 64.497 30.1083 66.0762 30.4079C82.1622 33.422 83.9231 31.7413 86.731 33.8446C91.0238 37.0464 92.5849 43.6755 97.1537 47.0934L99.5523 45.084C94.9835 41.6662 93.4225 35.0464 89.1392 31.8352C86.2837 29.7319 84.5608 31.422 68.4843 28.3986C66.9019 28.1084 65.2665 28.3602 63.8489 29.1122C63.2683 29.422 62.5734 29.7788 61.8024 30.1638L59.3943 32.1732Z" fill="#BDC7CE"/>
11
+ <path opacity="0.2" d="M55.2919 43.1502C58.0998 43.7511 66.5426 48.0422 73.6909 57.3755C82.1051 68.3708 90.9477 64.2206 90.9477 64.2206L91.9947 61.7323C91.9947 61.7323 83.1616 65.8825 74.7379 54.8872C67.9227 45.9952 59.9463 41.676 56.7862 40.8027C56.366 41.0487 56.0112 41.3899 55.7513 41.7982C55.4914 42.2064 55.3339 42.6699 55.2919 43.1502Z" fill="#BDC7CE"/>
12
+ <g opacity="0.2">
13
+ <path opacity="0.2" d="M41.7758 28.793L42.2612 31.4596L34.8845 32.8117C32.9782 33.1504 31.2546 34.1428 30.018 35.6135C28.7814 37.0842 28.1115 38.9386 28.1264 40.8493C27.9702 40.435 27.8524 40.0076 27.7743 39.5723C27.5779 38.524 27.5934 37.4477 27.8199 36.4053C28.0464 35.3628 28.4795 34.3748 29.0942 33.498C29.7088 32.6211 30.4931 31.8727 31.4018 31.2957C32.3106 30.7187 33.3259 30.3245 34.3895 30.1357L41.7758 28.793Z" fill="#BDC7CE"/>
14
+ </g>
15
+ <path opacity="0.2" d="M40.6346 31.169C39.8541 30.7841 39.1592 30.4273 38.5786 30.1174C37.1645 29.3654 35.532 29.1136 33.9527 29.4038C17.8666 32.4272 16.1152 30.7371 13.2978 32.8404C9.00502 36.0517 7.444 42.6714 2.87518 46.0892L0.476562 44.0798C5.04538 40.662 6.60639 34.0423 10.9468 30.831C13.7547 28.7277 15.5156 30.4179 31.6016 27.4038C33.1798 27.106 34.8138 27.3548 36.2276 28.108C36.8082 28.4179 37.503 28.7747 38.2835 29.1597L40.6346 31.169Z" fill="#BDC7CE"/>
16
+ <path opacity="0.2" d="M44.6989 42.1462C41.9005 42.7472 33.4482 47.0383 26.2999 56.3716C17.8857 67.3669 9.04312 63.2167 9.04312 63.2167L7.99609 60.7284C7.99609 60.7284 16.8291 64.8786 25.2529 53.8833C32.0681 44.9913 40.0445 40.6721 43.2046 39.7988C43.6248 40.0448 43.9796 40.386 44.2395 40.7943C44.4994 41.2025 44.6569 41.666 44.6989 42.1462V42.1462Z" fill="#BDC7CE"/>
17
+ <path d="M90.9481 64.0332C90.9481 64.0332 82.1055 68.1834 73.6913 57.1881C66.543 47.8548 58.1002 43.5637 55.2923 42.9628C55.2923 42.9628 55.2162 41.5637 57.0818 40.3806C62.9451 36.6247 72.6252 46.775 76.5183 44.3055" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
18
+ <path d="M99.5146 45.084C94.9458 41.6662 93.3848 35.0464 89.1015 31.8352C86.246 29.7319 84.5232 31.422 68.4467 28.3986C66.8642 28.1084 65.2288 28.3602 63.8112 29.1122C63.2306 29.422 62.5358 29.7788 61.7648 30.1638" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
19
+ <path d="M81.8196 34.1641C79.0945 38.2457 75.2207 41.4536 70.6736 43.3941" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path d="M72.2246 39.5078C91.8705 42.4843 83.6466 58.3998 80.3438 72.5313" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
21
+ <path d="M71.1401 43.0278C71.8448 41.906 72.26 40.631 72.3495 39.3142C72.4389 37.9974 72.1999 36.6791 71.6533 35.4746C71.1066 34.2701 70.269 33.2161 69.2138 32.4049C68.1586 31.5936 66.9179 31.0499 65.6004 30.8212L58.2237 29.4785L56.0344 41.0278" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
22
+ <path d="M56.2249 40.0227L49.7429 38.7363" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
23
+ <path d="M51.2285 30.8223L57.444 32.0617" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
24
+ <path d="M9.04199 63.2168C9.04199 63.2168 17.8845 67.367 26.2988 56.3717C33.4471 47.0384 41.8899 42.7473 44.6978 42.1464C44.6978 42.1464 44.7739 40.7473 42.9083 39.5642C37.0545 35.8083 27.3648 45.9586 23.4718 43.4891" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
25
+ <path d="M0.476562 44.2673C5.04538 40.8495 6.60639 34.2298 10.9468 31.0185C13.7547 28.9152 15.5156 30.6054 31.6016 27.5913C33.1798 27.2935 34.8138 27.5423 36.2276 28.2955C36.8082 28.6054 37.503 28.9622 38.2835 29.3471" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
26
+ <path d="M18.1709 33.3477C20.896 37.4293 24.7698 40.6372 29.3169 42.5777" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path d="M19.6456 71.7129C16.3046 57.5815 8.11884 41.666 27.7648 38.6895" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
28
+ <path d="M43.9649 40.2579L41.7662 28.6992L34.3894 30.042C33.0743 30.2748 31.8367 30.8209 30.7842 31.6329C29.7317 32.445 28.8961 33.4983 28.3501 34.7013C27.8042 35.9043 27.5643 37.2207 27.6514 38.536C27.7384 39.8513 28.1498 41.1258 28.8498 42.2485" stroke="#9DA3AC" stroke-width="0.943396" stroke-linecap="round" stroke-linejoin="round"/>
29
+ </g>
30
+ <defs>
31
+ <clipPath id="clip0_78_55">
32
+ <rect width="100" height="46" fill="white" transform="translate(0 27)"/>
33
+ </clipPath>
34
+ </defs>
35
+ </svg>
36
+ </template>
37
+ <script setup lang="ts">
38
+ </script>