@verisoft/ui-govcz 18.5.0 → 18.6.1

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 (595) hide show
  1. package/esm2022/index.mjs +2 -0
  2. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
  3. package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
  4. package/esm2022/lib/components/button/button.component.mjs +87 -0
  5. package/esm2022/lib/components/button/index.mjs +2 -0
  6. package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
  7. package/esm2022/lib/components/calendar/index.mjs +2 -0
  8. package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
  9. package/esm2022/lib/components/checkbox/index.mjs +2 -0
  10. package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
  11. package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
  12. package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
  13. package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
  14. package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
  15. package/esm2022/lib/components/dropdown/index.mjs +2 -0
  16. package/esm2022/lib/components/errors/error.component.mjs +34 -0
  17. package/esm2022/lib/components/errors/index.mjs +2 -0
  18. package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
  19. package/esm2022/lib/components/form-field/index.mjs +2 -0
  20. package/esm2022/lib/components/header/header.component.mjs +85 -0
  21. package/esm2022/lib/components/header/index.mjs +2 -0
  22. package/esm2022/lib/components/index.mjs +34 -0
  23. package/esm2022/lib/components/input-group/index.mjs +2 -0
  24. package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
  25. package/esm2022/lib/components/loader/index.mjs +2 -0
  26. package/esm2022/lib/components/loader/loader.component.mjs +34 -0
  27. package/esm2022/lib/components/multiselect/index.mjs +2 -0
  28. package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
  29. package/esm2022/lib/components/number-input/index.mjs +2 -0
  30. package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
  31. package/esm2022/lib/components/page-header/index.mjs +2 -0
  32. package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
  33. package/esm2022/lib/components/password/index.mjs +2 -0
  34. package/esm2022/lib/components/password/password.component.mjs +94 -0
  35. package/esm2022/lib/components/radiobutton/index.mjs +2 -0
  36. package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
  37. package/esm2022/lib/components/search/index.mjs +2 -0
  38. package/esm2022/lib/components/search/search.component.mjs +40 -0
  39. package/esm2022/lib/components/section/index.mjs +2 -0
  40. package/esm2022/lib/components/section/section.component.mjs +70 -0
  41. package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
  42. package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
  43. package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
  44. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
  45. package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
  46. package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
  47. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
  48. package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
  49. package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
  50. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
  51. package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
  52. package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
  53. package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
  54. package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
  55. package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
  56. package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
  57. package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
  58. package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
  59. package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
  60. package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
  61. package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
  62. package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
  63. package/esm2022/lib/components/shared-components/index.mjs +7 -0
  64. package/esm2022/lib/components/side-menu/index.mjs +3 -0
  65. package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
  66. package/esm2022/lib/components/side-menu/side-menu.module.mjs +73 -0
  67. package/esm2022/lib/components/snackbar/index.mjs +3 -0
  68. package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
  69. package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
  70. package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
  71. package/esm2022/lib/components/stepper/index.mjs +2 -0
  72. package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
  73. package/esm2022/lib/components/switch/index.mjs +2 -0
  74. package/esm2022/lib/components/switch/switch.component.mjs +45 -0
  75. package/esm2022/lib/components/tab-view/index.mjs +4 -0
  76. package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
  77. package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
  78. package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
  79. package/esm2022/lib/components/table/index.mjs +2 -0
  80. package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
  81. package/esm2022/lib/components/table/table.component.mjs +359 -0
  82. package/esm2022/lib/components/table/table.model.mjs +14 -0
  83. package/esm2022/lib/components/textarea/index.mjs +2 -0
  84. package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
  85. package/esm2022/lib/components/textfield/index.mjs +2 -0
  86. package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
  87. package/esm2022/lib/components/tooltip/index.mjs +2 -0
  88. package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
  89. package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
  90. package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
  91. package/esm2022/lib/icons.mjs +35 -0
  92. package/esm2022/lib/index.mjs +6 -0
  93. package/esm2022/lib/init.service.mjs +17 -0
  94. package/esm2022/lib/pages/index.mjs +4 -0
  95. package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
  96. package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
  97. package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
  98. package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
  99. package/esm2022/lib/pages/not-found/index.mjs +2 -0
  100. package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
  101. package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
  102. package/esm2022/lib/pipes/index.mjs +4 -0
  103. package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
  104. package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
  105. package/esm2022/verisoft-ui-govcz.mjs +5 -0
  106. package/fesm2022/verisoft-ui-govcz.mjs +3742 -0
  107. package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
  108. package/{src/index.ts → index.d.ts} +1 -1
  109. package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
  110. package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
  111. package/lib/components/button/button.component.d.ts +26 -0
  112. package/lib/components/button/index.d.ts +1 -0
  113. package/lib/components/calendar/calendar.component.d.ts +23 -0
  114. package/lib/components/calendar/index.d.ts +1 -0
  115. package/lib/components/checkbox/checkbox.component.d.ts +15 -0
  116. package/lib/components/checkbox/index.d.ts +1 -0
  117. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
  118. package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
  119. package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
  120. package/lib/components/dropdown/dropdown.component.d.ts +65 -0
  121. package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
  122. package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
  123. package/lib/components/errors/error.component.d.ts +14 -0
  124. package/lib/components/errors/index.d.ts +1 -0
  125. package/lib/components/form-field/form-field.component.d.ts +25 -0
  126. package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
  127. package/lib/components/header/header.component.d.ts +25 -0
  128. package/lib/components/header/index.d.ts +1 -0
  129. package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
  130. package/lib/components/input-group/index.d.ts +1 -0
  131. package/lib/components/input-group/input-group.component.d.ts +24 -0
  132. package/lib/components/loader/index.d.ts +1 -0
  133. package/lib/components/loader/loader.component.d.ts +8 -0
  134. package/lib/components/multiselect/index.d.ts +1 -0
  135. package/lib/components/multiselect/multiselect.component.d.ts +35 -0
  136. package/lib/components/number-input/index.d.ts +1 -0
  137. package/lib/components/number-input/number-input.component.d.ts +29 -0
  138. package/lib/components/page-header/index.d.ts +1 -0
  139. package/lib/components/page-header/page-header.component.d.ts +9 -0
  140. package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
  141. package/lib/components/password/password.component.d.ts +23 -0
  142. package/lib/components/radiobutton/index.d.ts +1 -0
  143. package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
  144. package/lib/components/search/index.d.ts +1 -0
  145. package/lib/components/search/search.component.d.ts +14 -0
  146. package/lib/components/section/index.d.ts +1 -0
  147. package/lib/components/section/section.component.d.ts +18 -0
  148. package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
  149. package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
  150. package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
  151. package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
  152. package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
  153. package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
  154. package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
  155. package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
  156. package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
  157. package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
  158. package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
  159. package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
  160. package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
  161. package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
  162. package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
  163. package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
  164. package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
  165. package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
  166. package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
  167. package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
  168. package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
  169. package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
  170. package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
  171. package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
  172. package/lib/components/side-menu/side-menu.component.d.ts +15 -0
  173. package/lib/components/side-menu/side-menu.module.d.ts +12 -0
  174. package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
  175. package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
  176. package/lib/components/snackbar/snackbar.component.d.ts +18 -0
  177. package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
  178. package/lib/components/stepper/index.d.ts +1 -0
  179. package/lib/components/stepper/stepper.component.d.ts +20 -0
  180. package/lib/components/switch/index.d.ts +1 -0
  181. package/lib/components/switch/switch.component.d.ts +12 -0
  182. package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
  183. package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
  184. package/lib/components/tab-view/tab-view.component.d.ts +19 -0
  185. package/lib/components/tab-view/tab-view.module.d.ts +12 -0
  186. package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
  187. package/lib/components/table/table-pagination-info.component.d.ts +12 -0
  188. package/lib/components/table/table.component.d.ts +91 -0
  189. package/lib/components/table/table.model.d.ts +3 -0
  190. package/lib/components/textarea/index.d.ts +1 -0
  191. package/lib/components/textarea/textarea.component.d.ts +25 -0
  192. package/lib/components/textfield/index.d.ts +1 -0
  193. package/lib/components/textfield/textfield.component.d.ts +28 -0
  194. package/lib/components/tooltip/index.d.ts +1 -0
  195. package/lib/components/tooltip/tooltip.component.d.ts +18 -0
  196. package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
  197. package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
  198. package/lib/icons.d.ts +2 -0
  199. package/{src/lib/index.ts → lib/index.d.ts} +5 -5
  200. package/lib/init.service.d.ts +6 -0
  201. package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
  202. package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
  203. package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
  204. package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
  205. package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
  206. package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
  207. package/lib/pages/not-found/not-found.component.d.ts +6 -0
  208. package/lib/pipes/color/color.pipe.d.ts +8 -0
  209. package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
  210. package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
  211. package/lib/pipes/size/size.pipe.d.ts +8 -0
  212. package/package.json +39 -21
  213. package/.eslintrc.json +0 -48
  214. package/assets/i18n/cs.json +0 -9
  215. package/assets/i18n/en.json +0 -9
  216. package/assets/icons/components/24-7.svg +0 -12
  217. package/assets/icons/components/NO-ICON.svg +0 -2
  218. package/assets/icons/components/add.svg +0 -6
  219. package/assets/icons/components/all.svg +0 -3
  220. package/assets/icons/components/arrival.svg +0 -12
  221. package/assets/icons/components/arrow-left.svg +0 -3
  222. package/assets/icons/components/arrow-right.svg +0 -3
  223. package/assets/icons/components/bars.svg +0 -3
  224. package/assets/icons/components/bell.svg +0 -4
  225. package/assets/icons/components/big-help.svg +0 -12
  226. package/assets/icons/components/book.svg +0 -10
  227. package/assets/icons/components/bookmarks.svg +0 -11
  228. package/assets/icons/components/box-arrow-up-right.svg +0 -11
  229. package/assets/icons/components/business-file.svg +0 -14
  230. package/assets/icons/components/businessman.svg +0 -3
  231. package/assets/icons/components/cactus.svg +0 -14
  232. package/assets/icons/components/calendar.svg +0 -3
  233. package/assets/icons/components/camera.svg +0 -5
  234. package/assets/icons/components/car.svg +0 -5
  235. package/assets/icons/components/card-400.svg +0 -11
  236. package/assets/icons/components/card-401.svg +0 -11
  237. package/assets/icons/components/card-403.svg +0 -11
  238. package/assets/icons/components/card-404.svg +0 -11
  239. package/assets/icons/components/card-500.svg +0 -11
  240. package/assets/icons/components/card-502.svg +0 -11
  241. package/assets/icons/components/card-503.svg +0 -12
  242. package/assets/icons/components/card-504.svg +0 -15
  243. package/assets/icons/components/caret-right-fill.svg +0 -3
  244. package/assets/icons/components/certification.svg +0 -14
  245. package/assets/icons/components/chamber-deputies-cr.svg +0 -11
  246. package/assets/icons/components/chamber-deputies.svg +0 -13
  247. package/assets/icons/components/chat.svg +0 -11
  248. package/assets/icons/components/check-circle.svg +0 -4
  249. package/assets/icons/components/check-lg.svg +0 -3
  250. package/assets/icons/components/chevron-double-left.svg +0 -4
  251. package/assets/icons/components/chevron-double-right.svg +0 -4
  252. package/assets/icons/components/chevron-down.svg +0 -3
  253. package/assets/icons/components/chevron-left.svg +0 -3
  254. package/assets/icons/components/chevron-right.svg +0 -3
  255. package/assets/icons/components/chevron-up.svg +0 -3
  256. package/assets/icons/components/cities.svg +0 -17
  257. package/assets/icons/components/city-office.svg +0 -17
  258. package/assets/icons/components/coins.svg +0 -14
  259. package/assets/icons/components/communication.svg +0 -4
  260. package/assets/icons/components/confusion.svg +0 -8
  261. package/assets/icons/components/contact.svg +0 -6
  262. package/assets/icons/components/copy.svg +0 -10
  263. package/assets/icons/components/court.svg +0 -5
  264. package/assets/icons/components/covid.svg +0 -5
  265. package/assets/icons/components/czech-lion.svg +0 -134
  266. package/assets/icons/components/dash-lg.svg +0 -3
  267. package/assets/icons/components/diagram.svg +0 -3
  268. package/assets/icons/components/digital.svg +0 -10
  269. package/assets/icons/components/disability.svg +0 -5
  270. package/assets/icons/components/doc-agreement.svg +0 -7
  271. package/assets/icons/components/doc-basic-info.svg +0 -18
  272. package/assets/icons/components/doc-business.svg +0 -8
  273. package/assets/icons/components/doc-car-point-list.svg +0 -16
  274. package/assets/icons/components/doc-diploma.svg +0 -17
  275. package/assets/icons/components/doc-driver-info.svg +0 -8
  276. package/assets/icons/components/doc-election.svg +0 -13
  277. package/assets/icons/components/doc-filled.svg +0 -16
  278. package/assets/icons/components/doc-health.svg +0 -3
  279. package/assets/icons/components/doc-judgment.svg +0 -8
  280. package/assets/icons/components/doc-patient.svg +0 -8
  281. package/assets/icons/components/doc-personal-info.svg +0 -11
  282. package/assets/icons/components/doc-petition.svg +0 -8
  283. package/assets/icons/components/doc-registers.svg +0 -7
  284. package/assets/icons/components/doc-review.svg +0 -20
  285. package/assets/icons/components/doc-search.svg +0 -8
  286. package/assets/icons/components/doc-stamp.svg +0 -15
  287. package/assets/icons/components/doc-state.svg +0 -13
  288. package/assets/icons/components/doc-taxes.svg +0 -16
  289. package/assets/icons/components/doc-universal.svg +0 -13
  290. package/assets/icons/components/doc-visa.svg +0 -14
  291. package/assets/icons/components/documents.svg +0 -11
  292. package/assets/icons/components/download.svg +0 -4
  293. package/assets/icons/components/driver-file.svg +0 -14
  294. package/assets/icons/components/driver.svg +0 -7
  295. package/assets/icons/components/driving-licence.svg +0 -7
  296. package/assets/icons/components/email-notification.svg +0 -12
  297. package/assets/icons/components/empty-file.svg +0 -13
  298. package/assets/icons/components/energy.svg +0 -11
  299. package/assets/icons/components/envelope-fill.svg +0 -3
  300. package/assets/icons/components/envelope.svg +0 -3
  301. package/assets/icons/components/error.svg +0 -12
  302. package/assets/icons/components/european-parliament.svg +0 -11
  303. package/assets/icons/components/exclamation-lg.svg +0 -3
  304. package/assets/icons/components/exclamation-triangle-fill.svg +0 -10
  305. package/assets/icons/components/export.svg +0 -13
  306. package/assets/icons/components/eye.svg +0 -4
  307. package/assets/icons/components/family.svg +0 -12
  308. package/assets/icons/components/fast-forward.svg +0 -1
  309. package/assets/icons/components/filter.svg +0 -3
  310. package/assets/icons/components/gear.svg +0 -11
  311. package/assets/icons/components/geo-alt-fill.svg +0 -10
  312. package/assets/icons/components/globe.svg +0 -12
  313. package/assets/icons/components/graduate.svg +0 -4
  314. package/assets/icons/components/group.svg +0 -3
  315. package/assets/icons/components/hand-503.svg +0 -10
  316. package/assets/icons/components/hand-504.svg +0 -7
  317. package/assets/icons/components/hand.svg +0 -14
  318. package/assets/icons/components/health.svg +0 -5
  319. package/assets/icons/components/help.svg +0 -4
  320. package/assets/icons/components/history.svg +0 -4
  321. package/assets/icons/components/holiday.svg +0 -13
  322. package/assets/icons/components/hourglass.svg +0 -4
  323. package/assets/icons/components/house-door-fill.svg +0 -3
  324. package/assets/icons/components/house.svg +0 -13
  325. package/assets/icons/components/id-card.svg +0 -6
  326. package/assets/icons/components/id-info.svg +0 -9
  327. package/assets/icons/components/id.svg +0 -6
  328. package/assets/icons/components/illness.svg +0 -9
  329. package/assets/icons/components/info-circle-fill.svg +0 -10
  330. package/assets/icons/components/info-circle.svg +0 -11
  331. package/assets/icons/components/info-list.svg +0 -14
  332. package/assets/icons/components/info.svg +0 -3
  333. package/assets/icons/components/institute-file.svg +0 -23
  334. package/assets/icons/components/institution.svg +0 -10
  335. package/assets/icons/components/job-loss.svg +0 -4
  336. package/assets/icons/components/job.svg +0 -3
  337. package/assets/icons/components/lightbulb-fill.svg +0 -10
  338. package/assets/icons/components/list.svg +0 -3
  339. package/assets/icons/components/loader.svg +0 -3
  340. package/assets/icons/components/login.svg +0 -11
  341. package/assets/icons/components/logout.svg +0 -13
  342. package/assets/icons/components/map.svg +0 -11
  343. package/assets/icons/components/mobile-phone.svg +0 -13
  344. package/assets/icons/components/moon.svg +0 -10
  345. package/assets/icons/components/mouse.svg +0 -3
  346. package/assets/icons/components/my-filing.svg +0 -15
  347. package/assets/icons/components/my-state-data.svg +0 -19
  348. package/assets/icons/components/new-comments.svg +0 -6
  349. package/assets/icons/components/newborn.svg +0 -16
  350. package/assets/icons/components/news.svg +0 -20
  351. package/assets/icons/components/packet.svg +0 -11
  352. package/assets/icons/components/passport.svg +0 -7
  353. package/assets/icons/components/pencil.svg +0 -3
  354. package/assets/icons/components/personal-file.svg +0 -14
  355. package/assets/icons/components/pet.svg +0 -10
  356. package/assets/icons/components/petrol-station.svg +0 -14
  357. package/assets/icons/components/pills.svg +0 -4
  358. package/assets/icons/components/plus-lg.svg +0 -3
  359. package/assets/icons/components/population-register.svg +0 -12
  360. package/assets/icons/components/port-card.svg +0 -8
  361. package/assets/icons/components/portal.svg +0 -8
  362. package/assets/icons/components/pregnant.svg +0 -11
  363. package/assets/icons/components/president.svg +0 -13
  364. package/assets/icons/components/presidential-election.svg +0 -12
  365. package/assets/icons/components/print-fill.svg +0 -4
  366. package/assets/icons/components/profile-settings.svg +0 -13
  367. package/assets/icons/components/property.svg +0 -4
  368. package/assets/icons/components/question-circle.svg +0 -4
  369. package/assets/icons/components/queue.svg +0 -13
  370. package/assets/icons/components/quotes.svg +0 -6
  371. package/assets/icons/components/region.svg +0 -11
  372. package/assets/icons/components/regional-elections-clear.svg +0 -11
  373. package/assets/icons/components/regional-elections.svg +0 -12
  374. package/assets/icons/components/register-of-persons.svg +0 -7
  375. package/assets/icons/components/retiree.svg +0 -8
  376. package/assets/icons/components/rings.svg +0 -5
  377. package/assets/icons/components/search.svg +0 -10
  378. package/assets/icons/components/senate.svg +0 -11
  379. package/assets/icons/components/senior.svg +0 -4
  380. package/assets/icons/components/settings.svg +0 -13
  381. package/assets/icons/components/simple-envelope.svg +0 -3
  382. package/assets/icons/components/sms-notification.svg +0 -7
  383. package/assets/icons/components/sos.svg +0 -6
  384. package/assets/icons/components/star-fill.svg +0 -10
  385. package/assets/icons/components/state-file.svg +0 -8
  386. package/assets/icons/components/sun.svg +0 -10
  387. package/assets/icons/components/telephone.svg +0 -10
  388. package/assets/icons/components/three-dots-vertical.svg +0 -3
  389. package/assets/icons/components/time.svg +0 -4
  390. package/assets/icons/components/tombstone.svg +0 -7
  391. package/assets/icons/components/trash.svg +0 -6
  392. package/assets/icons/components/twitter-x.svg +0 -10
  393. package/assets/icons/components/upload.svg +0 -4
  394. package/assets/icons/components/user-login.svg +0 -13
  395. package/assets/icons/components/user.svg +0 -3
  396. package/assets/icons/components/vaccine.svg +0 -11
  397. package/assets/icons/components/x-circle.svg +0 -4
  398. package/assets/icons/components/x-lg.svg +0 -3
  399. package/assets/icons/components/x.svg +0 -3
  400. package/assets/logos/v-logo.svg +0 -4
  401. package/jest.config.ts +0 -21
  402. package/ng-package.json +0 -10
  403. package/project.json +0 -56
  404. package/src/config.d.ts +0 -10
  405. package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
  406. package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
  407. package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
  408. package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
  409. package/src/lib/components/button/button.component.html +0 -26
  410. package/src/lib/components/button/button.component.scss +0 -0
  411. package/src/lib/components/button/button.component.ts +0 -72
  412. package/src/lib/components/button/index.ts +0 -1
  413. package/src/lib/components/calendar/calendar.component.html +0 -28
  414. package/src/lib/components/calendar/calendar.component.scss +0 -0
  415. package/src/lib/components/calendar/calendar.component.ts +0 -79
  416. package/src/lib/components/calendar/index.ts +0 -1
  417. package/src/lib/components/checkbox/checkbox.component.html +0 -23
  418. package/src/lib/components/checkbox/checkbox.component.scss +0 -0
  419. package/src/lib/components/checkbox/checkbox.component.ts +0 -62
  420. package/src/lib/components/checkbox/index.ts +0 -1
  421. package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
  422. package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
  423. package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
  424. package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
  425. package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
  426. package/src/lib/components/dropdown/dropdown.component.html +0 -90
  427. package/src/lib/components/dropdown/dropdown.component.scss +0 -108
  428. package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
  429. package/src/lib/components/dropdown/dropdown.component.ts +0 -297
  430. package/src/lib/components/errors/error.component.html +0 -11
  431. package/src/lib/components/errors/error.component.scss +0 -0
  432. package/src/lib/components/errors/error.component.spec.ts +0 -19
  433. package/src/lib/components/errors/error.component.ts +0 -30
  434. package/src/lib/components/errors/index.ts +0 -1
  435. package/src/lib/components/form-field/form-field.component.html +0 -14
  436. package/src/lib/components/form-field/form-field.component.scss +0 -0
  437. package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
  438. package/src/lib/components/form-field/form-field.component.ts +0 -78
  439. package/src/lib/components/header/header.component.html +0 -122
  440. package/src/lib/components/header/header.component.scss +0 -0
  441. package/src/lib/components/header/header.component.ts +0 -91
  442. package/src/lib/components/header/index.ts +0 -1
  443. package/src/lib/components/input-group/index.ts +0 -1
  444. package/src/lib/components/input-group/input-group.component.html +0 -41
  445. package/src/lib/components/input-group/input-group.component.scss +0 -0
  446. package/src/lib/components/input-group/input-group.component.ts +0 -77
  447. package/src/lib/components/loader/index.ts +0 -1
  448. package/src/lib/components/loader/loader.component.html +0 -7
  449. package/src/lib/components/loader/loader.component.scss +0 -0
  450. package/src/lib/components/loader/loader.component.spec.ts +0 -21
  451. package/src/lib/components/loader/loader.component.ts +0 -33
  452. package/src/lib/components/multiselect/index.ts +0 -1
  453. package/src/lib/components/multiselect/multiselect.component.html +0 -21
  454. package/src/lib/components/multiselect/multiselect.component.scss +0 -0
  455. package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
  456. package/src/lib/components/multiselect/multiselect.component.ts +0 -119
  457. package/src/lib/components/number-input/index.ts +0 -1
  458. package/src/lib/components/number-input/number-input.component.html +0 -48
  459. package/src/lib/components/number-input/number-input.component.scss +0 -0
  460. package/src/lib/components/number-input/number-input.component.ts +0 -82
  461. package/src/lib/components/page-header/index.ts +0 -1
  462. package/src/lib/components/page-header/page-header.component.html +0 -3
  463. package/src/lib/components/page-header/page-header.component.scss +0 -11
  464. package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
  465. package/src/lib/components/page-header/page-header.component.ts +0 -29
  466. package/src/lib/components/password/password.component.html +0 -31
  467. package/src/lib/components/password/password.component.scss +0 -0
  468. package/src/lib/components/password/password.component.spec.ts +0 -21
  469. package/src/lib/components/password/password.component.ts +0 -85
  470. package/src/lib/components/radiobutton/index.ts +0 -1
  471. package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
  472. package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
  473. package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
  474. package/src/lib/components/search/index.ts +0 -1
  475. package/src/lib/components/search/search.component.html +0 -23
  476. package/src/lib/components/search/search.component.scss +0 -0
  477. package/src/lib/components/search/search.component.ts +0 -47
  478. package/src/lib/components/section/index.ts +0 -1
  479. package/src/lib/components/section/section.component.html +0 -26
  480. package/src/lib/components/section/section.component.scss +0 -0
  481. package/src/lib/components/section/section.component.ts +0 -57
  482. package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
  483. package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
  484. package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
  485. package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
  486. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
  487. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
  488. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
  489. package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
  490. package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
  491. package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
  492. package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
  493. package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
  494. package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
  495. package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
  496. package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
  497. package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
  498. package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
  499. package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
  500. package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
  501. package/src/lib/components/shared-components/filter/filter.component.html +0 -68
  502. package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
  503. package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
  504. package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
  505. package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
  506. package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
  507. package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
  508. package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
  509. package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
  510. package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
  511. package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
  512. package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
  513. package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
  514. package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
  515. package/src/lib/components/side-menu/side-menu.component.html +0 -25
  516. package/src/lib/components/side-menu/side-menu.component.scss +0 -23
  517. package/src/lib/components/side-menu/side-menu.component.ts +0 -42
  518. package/src/lib/components/side-menu/side-menu.module.ts +0 -56
  519. package/src/lib/components/sidemenu/index.ts +0 -2
  520. package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
  521. package/src/lib/components/snackbar/snackbar.component.html +0 -14
  522. package/src/lib/components/snackbar/snackbar.component.scss +0 -0
  523. package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
  524. package/src/lib/components/snackbar/snackbar.component.ts +0 -45
  525. package/src/lib/components/stepper/index.ts +0 -1
  526. package/src/lib/components/stepper/stepper.component.html +0 -35
  527. package/src/lib/components/stepper/stepper.component.scss +0 -9
  528. package/src/lib/components/stepper/stepper.component.ts +0 -61
  529. package/src/lib/components/switch/index.ts +0 -1
  530. package/src/lib/components/switch/switch.component.html +0 -16
  531. package/src/lib/components/switch/switch.component.scss +0 -0
  532. package/src/lib/components/switch/switch.component.ts +0 -37
  533. package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
  534. package/src/lib/components/tab-view/tab-view.component.html +0 -51
  535. package/src/lib/components/tab-view/tab-view.component.scss +0 -43
  536. package/src/lib/components/tab-view/tab-view.component.ts +0 -61
  537. package/src/lib/components/tab-view/tab-view.module.ts +0 -25
  538. package/src/lib/components/table/table-pagination-info.component.html +0 -9
  539. package/src/lib/components/table/table-pagination-info.component.ts +0 -22
  540. package/src/lib/components/table/table.component.html +0 -198
  541. package/src/lib/components/table/table.component.scss +0 -193
  542. package/src/lib/components/table/table.component.ts +0 -387
  543. package/src/lib/components/table/table.model.ts +0 -17
  544. package/src/lib/components/table/table.models.ts +0 -12
  545. package/src/lib/components/textarea/index.ts +0 -1
  546. package/src/lib/components/textarea/textarea.component.html +0 -50
  547. package/src/lib/components/textarea/textarea.component.scss +0 -0
  548. package/src/lib/components/textarea/textarea.component.ts +0 -78
  549. package/src/lib/components/textfield/index.ts +0 -1
  550. package/src/lib/components/textfield/textfield.component.html +0 -56
  551. package/src/lib/components/textfield/textfield.component.scss +0 -0
  552. package/src/lib/components/textfield/textfield.component.ts +0 -114
  553. package/src/lib/components/tooltip/index.ts +0 -1
  554. package/src/lib/components/tooltip/tooltip.component.html +0 -10
  555. package/src/lib/components/tooltip/tooltip.component.scss +0 -0
  556. package/src/lib/components/tooltip/tooltip.component.ts +0 -57
  557. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
  558. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
  559. package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
  560. package/src/lib/icons.ts +0 -36
  561. package/src/lib/init.service.ts +0 -11
  562. package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
  563. package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
  564. package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
  565. package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
  566. package/src/lib/pages/error-page/error-page.component.html +0 -5
  567. package/src/lib/pages/error-page/error-page.component.scss +0 -0
  568. package/src/lib/pages/error-page/error-page.component.ts +0 -32
  569. package/src/lib/pages/error-page/error-page.constants.ts +0 -19
  570. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
  571. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
  572. package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
  573. package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
  574. package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
  575. package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
  576. package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
  577. package/src/lib/pages/not-found/not-found.component.html +0 -5
  578. package/src/lib/pages/not-found/not-found.component.ts +0 -18
  579. package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
  580. package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
  581. package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
  582. package/src/lib/pipes/color/color.pipe.ts +0 -24
  583. package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
  584. package/src/lib/pipes/size/size.pipe.ts +0 -20
  585. package/src/sass/header.css +0 -526
  586. package/src/sass/header.scss +0 -480
  587. package/src/sass/main.scss +0 -246
  588. package/src/sass/scrollbar.scss +0 -22
  589. package/src/sass/sidemenu.css +0 -205
  590. package/src/sass/vendors/_bootstrap.scss +0 -2
  591. package/src/test-setup.ts +0 -8
  592. package/tsconfig.json +0 -32
  593. package/tsconfig.lib.json +0 -17
  594. package/tsconfig.lib.prod.json +0 -10
  595. package/tsconfig.spec.json +0 -16
@@ -1,12 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_944)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4131 16.6959C19.275 16.3089 20.8178 16.1758 22.45 17.4C23.1415 17.9186 23.6749 18.3341 24.0733 18.6541C24.4621 18.9663 24.9887 19.0875 25.4699 18.976C26.0718 18.8365 26.7487 18.7035 27.3256 18.6446C27.6114 18.6155 27.9011 18.6013 28.157 18.6225C28.2852 18.6332 28.4266 18.6543 28.5648 18.6975C28.6974 18.7389 28.8765 18.8158 29.0303 18.9696C29.1587 19.0979 29.2493 19.2688 29.2989 19.3658C29.3629 19.4908 29.4304 19.6409 29.4984 19.8028C29.6352 20.1283 29.7915 20.5421 29.9509 20.9849C30.2706 21.8729 30.6157 22.9135 30.8637 23.6766C31.0003 24.0971 31.3605 24.4446 31.8391 24.603C32.3701 24.7788 33.0318 25.0331 33.5746 25.3615C33.8454 25.5253 34.1209 25.7278 34.3363 25.9762C34.5529 26.2258 34.75 26.5717 34.75 26.9999C34.75 27.6354 34.4314 28.1491 34.1007 28.5349C33.7781 28.9113 33.3622 29.2578 33.0052 29.5552L32.9801 29.5761C32.5926 29.8991 32.2705 30.1701 32.0382 30.4412C31.8064 30.7116 31.75 30.8854 31.75 30.9999C31.75 31.5371 31.9001 32.3122 32.0636 33.1567C32.1004 33.3471 32.138 33.5411 32.1747 33.7367C32.2683 34.2361 32.3547 34.7458 32.3814 35.1719C32.3946 35.3842 32.3955 35.6088 32.3633 35.8175C32.3339 36.0081 32.2605 36.3001 32.0303 36.5303C32.0311 36.5295 32.0309 36.5297 32.0297 36.5311C32.0253 36.5362 32.0069 36.5571 31.9715 36.6029C31.9307 36.6556 31.8792 36.7258 31.8169 36.8136C31.6925 36.9891 31.5372 37.2182 31.3584 37.4863C31.1889 37.7405 31.0016 38.0249 30.8036 38.3257L30.7729 38.3724C30.564 38.6896 30.3441 39.0233 30.124 39.3535C29.686 40.0105 29.2381 40.667 28.8644 41.1624C28.6794 41.4079 28.499 41.632 28.3386 41.8008C28.2598 41.8837 28.1678 41.9725 28.0685 42.0461C28.0056 42.0927 27.793 42.2499 27.5 42.2499C27.2259 42.2499 26.9822 42.133 26.8449 42.0598C26.6792 41.9716 26.5088 41.8572 26.349 41.7395C26.0273 41.5027 25.6849 41.2054 25.4023 40.9448C25.0081 40.5813 24.7556 40.111 24.6396 39.6179L22.7779 31.7055C22.5391 30.9975 22.0939 29.9537 21.5346 29.0976C21.2504 28.6627 20.9566 28.3069 20.6702 28.0673C20.381 27.8252 20.159 27.7499 20 27.7499C19.3597 27.7499 18.8159 27.807 18.3839 27.8827C17.4705 28.0425 16.3523 27.9365 15.515 27.2387L14.2395 26.1758C13.6125 25.6533 13.25 24.8793 13.25 24.0632V23.2675C13.25 22.5881 13.5015 21.9328 13.9559 21.4278L17.7744 17.185C17.9116 17.0327 18.1197 16.8277 18.4131 16.6959ZM21.55 18.6C20.3702 17.7151 19.4099 17.8926 19.0275 18.0643C19.0243 18.0658 19.0111 18.0723 18.9866 18.0924C18.9614 18.1131 18.9301 18.1433 18.8894 18.1885L15.0709 22.4313C14.8643 22.6608 14.75 22.9587 14.75 23.2675V24.0632C14.75 24.4342 14.9148 24.786 15.1998 25.0235L16.4753 26.0864C16.8588 26.406 17.4732 26.5192 18.1253 26.4051C18.6406 26.3149 19.2709 26.2499 20 26.2499C20.641 26.2499 21.194 26.5496 21.6329 26.917C22.0747 27.2867 22.4621 27.7747 22.7904 28.2772C23.4477 29.2833 23.9476 30.4711 24.2115 31.2628L24.2223 31.295L26.0998 39.2743C26.1541 39.5053 26.2665 39.7013 26.4192 39.8421C26.6826 40.0851 26.9796 40.3411 27.2383 40.5316C27.2875 40.5678 27.3332 40.6 27.375 40.6283C27.4574 40.5308 27.555 40.4075 27.6668 40.2593C28.0119 39.8016 28.439 39.1769 28.876 38.5214C29.0934 38.1953 29.311 37.8649 29.5201 37.5474L29.5513 37.5L29.552 37.499C29.7491 37.1997 29.9384 36.9121 30.1103 36.6542C30.291 36.3833 30.456 36.1397 30.5933 35.946C30.6878 35.8126 30.79 35.6727 30.8842 35.5628C30.8907 35.5025 30.8931 35.406 30.8843 35.2655C30.864 34.9416 30.7942 34.5137 30.7003 34.0131C30.6702 33.8525 30.6372 33.6832 30.6032 33.5086C30.4386 32.6644 30.25 31.6974 30.25 30.9999C30.25 30.3645 30.5686 29.8508 30.8993 29.465C31.2219 29.0886 31.6378 28.7421 31.9948 28.4447L32.0199 28.4238C32.4074 28.1008 32.7295 27.8297 32.9618 27.5587C33.1794 27.3048 33.2424 27.1361 33.2493 27.0216C33.243 27.0102 33.2296 26.9895 33.2032 26.959C33.1295 26.8741 32.9983 26.766 32.7981 26.6449C32.3991 26.4035 31.8625 26.1908 31.3677 26.027C30.4965 25.7386 29.7398 25.0718 29.4371 24.1401C29.1906 23.3815 28.8512 22.3585 28.5396 21.493C28.3834 21.0591 28.2374 20.6737 28.1156 20.384C28.0699 20.2752 28.0299 20.1855 27.9961 20.1149C27.8734 20.1082 27.6999 20.1142 27.4779 20.1369C26.9926 20.1864 26.3859 20.3035 25.8085 20.4373C24.8746 20.6537 23.8778 20.421 23.134 19.8236C22.7505 19.5155 22.2304 19.1103 21.55 18.6Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M37.1737 32.52C38.0861 31.4251 39.8556 31.8299 40.2012 33.2125C40.2055 33.2296 40.2116 33.2462 40.2195 33.262L40.8093 34.4416C41.1783 35.1796 40.9816 36.0752 40.3373 36.5907L38.501 38.0597L37.7374 38.8233C36.635 39.9257 34.75 39.1449 34.75 37.5858V37.1926C34.75 36.97 34.7925 36.7494 34.8752 36.5427L35.7448 34.3686C35.813 34.198 35.9077 34.0393 36.0253 33.8982L37.1737 32.52ZM38.3261 33.4803C38.4526 33.3284 38.6981 33.3846 38.746 33.5763C38.7768 33.6996 38.821 33.8191 38.8779 33.9328L39.4676 35.1124C39.5204 35.2178 39.4923 35.3457 39.4002 35.4194L37.499 36.9403L36.6768 37.7626C36.5193 37.9201 36.25 37.8085 36.25 37.5858V37.1926C36.25 37.1608 36.2561 37.1293 36.2679 37.0998L37.1375 34.9257C37.1473 34.9013 37.1608 34.8786 37.1776 34.8585L38.3261 33.4803Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M47.7101 20.2586C45.9134 8.78076 35.9821 0 24 0C10.7452 0 0 10.7452 0 24C0 37.2548 10.7452 48 24 48C37.2548 48 48 37.2548 48 24C48 22.8189 47.9147 21.6577 47.7499 20.5223C47.7526 20.4319 47.7387 20.3426 47.7101 20.2586ZM46.5 24C46.5 36.4264 36.4264 46.5 24 46.5C18.1159 46.5 12.7593 44.2413 8.75004 40.5437L8.76002 40.4614C8.77 40.3809 8.78511 40.2638 8.80532 40.1198C8.84583 39.8312 8.90642 39.4376 8.98685 39.0153C9.06764 38.5912 9.16641 38.149 9.28169 37.76C9.4016 37.3553 9.52205 37.0692 9.62413 36.916C9.985 36.3748 10.4888 35.4727 10.8536 34.4849C11.2082 33.525 11.4845 32.3455 11.2277 31.3181C11.0942 30.784 10.8401 30.3696 10.4509 30.0892C10.0839 29.8248 9.67392 29.7379 9.35441 29.6929C9.2166 29.6734 9.07412 29.6595 8.94852 29.6471L8.88655 29.641C8.73907 29.6263 8.61067 29.6122 8.48872 29.5913C8.24762 29.5501 8.07501 29.489 7.93603 29.3897C7.43301 29.0304 7.09256 28.6913 6.75227 28.3133C6.65797 28.2086 6.55953 28.0958 6.45534 27.9765C6.19238 27.6753 5.89248 27.3317 5.53043 26.9696C4.66914 26.1083 3.80937 25.7359 2.96812 25.6308C2.46751 25.5682 1.98261 25.6051 1.56029 25.6598C1.52033 25.1118 1.5 24.5583 1.5 24C1.5 23.5529 1.51304 23.1088 1.53877 22.6681L1.62318 22.6549C1.68103 22.6459 1.74169 22.6364 1.80572 22.6263C2.05757 22.5862 2.34281 22.5373 2.63771 22.465C3.22869 22.3201 3.89255 22.0735 4.4846 21.5725C5.1733 20.9898 5.30799 20.1463 5.39018 19.6315C5.39767 19.5847 5.40473 19.5404 5.41172 19.4995C5.51498 18.8945 5.59966 18.7718 5.79119 18.6912C5.91587 18.6387 6.02039 18.6418 6.33476 18.7087L6.38969 18.7206C6.68619 18.7851 7.17353 18.8912 7.72781 18.7146C10.0893 17.9622 10.7531 15.3888 10.2271 13.3155C9.92496 12.1246 9.09701 11.2769 8.22301 10.7201C7.64712 10.3533 7.02137 10.0925 6.44096 9.92994C10.5646 4.79042 16.898 1.5 24 1.5C24.1454 1.5 24.2905 1.50138 24.4352 1.50412L21.4877 4.45163C21.2787 4.66069 21.0023 4.78888 20.7076 4.81343L17.2716 5.09976C15.8463 5.21854 14.75 6.41002 14.75 7.84027V8.68121C14.75 9.78129 15.4056 10.7755 16.4167 11.2089L18.1512 11.9522C18.6475 12.1649 19.1953 12.2268 19.7265 12.1302L23.0756 11.5213C23.8891 11.3734 24.7284 11.5411 25.4225 11.9903L31.897 16.1796C32.2698 16.4208 32.5892 16.7359 32.8355 17.1054L33.3663 17.9015C34.1533 19.082 35.7091 19.47 36.9582 18.7974L40.3401 16.9764C40.8846 16.6832 41.5617 16.8322 41.9327 17.327L43.5635 19.5013C43.8661 19.9048 44.2739 20.2173 44.7422 20.4046L46.3057 21.0301C46.4339 22.0019 46.5 22.9932 46.5 24ZM1.71916 27.1529C2.36698 31.7727 4.4177 35.9425 7.4268 39.2179C7.45268 39.0641 7.48152 38.9017 7.51334 38.7346C7.59922 38.2838 7.70878 37.7885 7.8435 37.3338C7.9736 36.8947 8.14481 36.4309 8.37606 36.084C8.68186 35.6253 9.12809 34.8273 9.44656 33.9652C9.77535 33.075 9.91565 32.2546 9.77249 31.6819C9.70601 31.416 9.6183 31.3381 9.57407 31.3062C9.50757 31.2583 9.39244 31.213 9.14519 31.1782C9.04127 31.1636 8.93446 31.153 8.80751 31.1405L8.73795 31.1336C8.58749 31.1187 8.41381 31.1003 8.2358 31.0698C7.87698 31.0085 7.45812 30.8917 7.06416 30.6103C6.44364 30.1671 6.02225 29.7443 5.6375 29.317C5.51562 29.1816 5.40225 29.0517 5.28976 28.9227C5.03984 28.6363 4.79434 28.3549 4.46976 28.0303C3.83105 27.3916 3.27416 27.1807 2.78207 27.1192C2.42643 27.0747 2.0898 27.1026 1.71916 27.1529ZM2.28052 21.0082C2.08349 21.0565 1.88444 21.0934 1.68173 21.1268C2.14491 17.4928 3.47497 14.1295 5.45802 11.2509C6.0161 11.3291 6.76314 11.5687 7.41714 11.9853C8.08976 12.4137 8.59515 12.9827 8.77318 13.6844C9.19302 15.3392 8.57575 16.8701 7.27248 17.2853C7.1183 17.3345 6.99239 17.3152 6.64726 17.2417L6.63741 17.2396C6.31695 17.1713 5.79818 17.0607 5.2091 17.3087C4.19341 17.7364 4.02806 18.6907 3.9331 19.2471C3.81868 19.9175 3.76418 20.2172 3.51569 20.4274C3.165 20.7242 2.74553 20.8942 2.28052 21.0082ZM46.0073 19.2952L45.2993 19.0119C45.0864 18.9268 44.9011 18.7847 44.7635 18.6013L43.1327 16.427C42.3164 15.3385 40.8269 15.0106 39.629 15.6557L36.2471 17.4767C35.6793 17.7824 34.9721 17.606 34.6144 17.0695L34.0836 16.2734C33.7236 15.7333 33.2567 15.2728 32.7118 14.9202L26.2374 10.7309C25.2229 10.0744 23.9962 9.8293 22.8073 10.0455L19.4581 10.6544C19.2167 10.6983 18.9677 10.6702 18.7421 10.5735L17.0076 9.83014C16.548 9.63317 16.25 9.18124 16.25 8.68121V7.84027C16.25 7.19016 16.7483 6.64857 17.3962 6.59458L20.8322 6.30825C21.4804 6.25423 22.0884 5.97222 22.5484 5.51229L26.4309 1.62979C36.1452 2.67336 44.0085 9.89963 46.0073 19.2952Z" fill="currentColor"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_100_944">
9
- <rect width="48" height="48" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M1.98339 11.7061L0.751476 11.2947C-0.250492 10.96 -0.250492 9.53997 0.751476 9.20531L23.6525 1.55651C23.8781 1.48116 24.1219 1.48116 24.3475 1.55651L47.2485 9.20531C48.2505 9.53997 48.2505 10.96 47.2485 11.2947L40.75 13.4652V16.9602C40.75 17.2929 40.5025 17.5689 40.1776 17.6403C39.7239 17.7399 39.25 17.42 39.25 16.9555V13.9661L24.3475 18.9435C24.1219 19.0188 23.8781 19.0188 23.6525 18.9435L8.75 13.9661V21.9588C8.75 22.3129 8.95003 22.6366 9.26671 22.7949C15.313 25.818 22.0571 26.8704 28.5892 25.9519C29.288 25.8537 29.7544 26.731 29.2554 27.2299C29.1482 27.3371 29.0095 27.4073 28.8594 27.4286C22.0108 28.4041 14.9364 27.3068 8.59589 24.1365C7.77104 23.7241 7.25 22.881 7.25 21.9588V13.4652L3.99988 12.3796V23C3.99988 23.5523 3.55216 24 2.99988 24H2.08307C1.49935 24 1.03971 23.5021 1.08626 22.9203L1.98339 11.7061ZM2.35859 10.25L3.78688 10.727L23.9453 9.25203C24.3584 9.22181 24.7178 9.53219 24.748 9.9453C24.7783 10.3584 24.4679 10.7178 24.0548 10.748L7.48073 11.9608L24 17.4781L45.6414 10.25L24 3.02189L2.35859 10.25Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.636 36.6985L27.682 43.6525C25.9246 45.4099 23.0754 45.4099 21.318 43.6525C19.5607 41.8952 19.5607 39.0459 21.318 37.2886L38.2886 20.318C40.0459 18.5607 42.8952 18.5607 44.6525 20.318C46.4099 22.0754 46.4099 24.9246 44.6525 26.682L38.886 32.4485V42.3065L36.761 39.477L34.636 45.136V36.6985ZM33.6217 31.3489C34.7542 32.4814 34.8249 34.3883 33.6924 35.5208L28.9901 40.2231C28.9035 39.2021 28.5692 38.1758 27.682 37.2886C26.7948 36.4014 25.7685 36.067 24.7475 35.9804L29.4497 31.2782C30.5823 30.1457 32.4892 30.2164 33.6217 31.3489ZM43.6626 25.5506C44.7951 24.4181 44.7244 22.5112 43.5919 21.3787C42.4594 20.2462 40.5525 20.1754 39.42 21.308L34.5763 26.1517C35.5973 26.2383 36.6236 26.5726 37.5108 27.4598C38.398 28.347 38.7323 29.3733 38.8189 30.3943L43.6626 25.5506ZM26.6213 42.5919C25.4497 43.7635 23.5503 43.7635 22.3787 42.5919C21.2071 41.4203 21.2071 39.5208 22.3787 38.3492C23.5503 37.1777 25.4497 37.1777 26.6213 38.3492C27.7929 39.5208 27.7929 41.4203 26.6213 42.5919Z" fill="currentColor"/>
4
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 -960 960 960" fill="none">
2
- <path d="M110.5-205v-86q0-24.78 11.75-45.14t33.27-32.87Q208.5-400 267.5-416.75q59-16.75 122.5-16.75t122.25 16.75Q571-400 623.98-369.01q21.52 12.51 33.27 32.87Q669-315.78 669-291v86H110.5Zm629 0v-85q0-41.5-19.25-75.75T669-421.5q36.5 8 70.75 20.75t65.75 32.25q20.5 11.5 32.25 32.67Q849.5-314.65 849.5-290v85h-110ZM390-479q-58 0-98-40t-40-98q0-58 40-98t98-40q58 0 98 40t40 98q0 58-40 98t-98 40Zm318-138.5q0 57.53-40 97.76-40 40.24-98 40.24-6.5 0-12.18-.34-5.68-.35-12.82-2.16 24.52-27.69 38.76-61.6Q598-577.5 598-617.25q0-39.75-14.25-74T545-753q6.5-1.5 12.5-1.75T570-755q58 0 98 40.09t40 97.41ZM177.5-272H602v-19q0-6.66-3.03-12.11-3.02-5.45-8.47-8.39-46.5-26.5-97.17-40.75Q442.65-366.5 390-366.5q-52.82 0-103.66 13.75Q235.5-339 189-311.5q-5.45 2.83-8.48 8.07-3.02 5.24-3.02 12.34V-272Zm212.65-274q29.35 0 50.1-20.9T461-617.15q0-29.35-20.9-50.1T389.85-688q-29.35 0-50.1 20.9T319-616.85q0 29.35 20.9 50.1T390.15-546ZM390-272Zm0-345Z" fill="currentColor"/>
3
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.07447 0.000854492H44.9255C46.8997 0.000854492 48.5 1.6012 48.5 3.57532V19.9157C48.5 21.8899 46.8997 23.4902 44.9255 23.4902H26.5426V28.717H29.3088C30.0549 28.717 30.7704 29.0134 31.298 29.541C31.8255 30.0685 32.1219 30.7841 32.1219 31.5301C32.1219 32.2674 31.8648 32.9732 31.402 33.4934C31.4714 33.5496 31.5378 33.6089 31.601 33.6711C32.1456 34.2071 32.4146 34.9194 32.4146 35.6245C32.4146 36.3296 32.1456 37.0418 31.601 37.5778C31.4453 37.731 31.2708 37.8663 31.079 37.9816C31.4914 38.4853 31.6954 39.1048 31.6954 39.7188C31.6954 40.4239 31.4263 41.1361 30.8818 41.6721C30.6309 41.919 30.3312 42.1194 29.9889 42.2643C30.3068 42.73 30.4643 43.2737 30.4643 43.8131C30.4643 44.5182 30.1953 45.2304 29.6507 45.7664C29.0997 46.3087 28.3132 46.6262 27.3585 46.6262H10.3993C9.96797 47.4256 9.12283 47.9688 8.15082 47.9688H5.60638C4.19629 47.9688 3.05319 46.8257 3.05319 45.4156V31.6604C3.05319 30.2503 4.19629 29.1072 5.60638 29.1072H8.15082C9.23855 29.1072 10.1674 29.7874 10.5353 30.7457L16.2273 26.3329C16.8247 25.7954 17.5894 25.4799 18.3927 25.4403C19.2073 25.4001 20.0102 25.6459 20.6626 26.1353L22.4574 27.4814V23.4902H4.07447C2.10035 23.4902 0.5 21.8899 0.5 19.9157V3.57532C0.5 1.6012 2.10034 0.000854492 4.07447 0.000854492ZM4.07447 1.53277C2.9464 1.53277 2.03192 2.44725 2.03192 3.57532V19.9157C2.03192 21.0438 2.9464 21.9583 4.07447 21.9583H44.9255C46.0536 21.9583 46.9681 21.0438 46.9681 19.9157V3.57532C46.9681 2.44725 46.0536 1.53277 44.9255 1.53277H4.07447ZM28.5761 42.9516C28.3471 42.7262 27.9637 42.5319 27.3585 42.5319H26.5792C26.1562 42.5319 25.8132 42.189 25.8132 41.766C25.8132 41.5545 25.899 41.363 26.0376 41.2244C26.0722 41.1897 26.1102 41.1583 26.1509 41.1308C26.2732 41.0482 26.4206 41 26.5792 41H28.5896C29.1948 41 29.5782 40.8057 29.8072 40.5803C30.0426 40.3486 30.1635 40.0373 30.1635 39.7188C30.1635 39.4003 30.0426 39.0889 29.8072 38.8572C29.5782 38.6319 29.1948 38.4376 28.5896 38.4376H26.5792C26.1562 38.4376 25.8133 38.0946 25.8133 37.6716C25.8133 37.2486 26.1562 36.9057 26.5792 36.9057H29.3088C29.914 36.9057 30.2974 36.7114 30.5264 36.486C30.7618 36.2543 30.8827 35.9429 30.8827 35.6245C30.8827 35.306 30.7618 34.9946 30.5264 34.7629C30.2974 34.5375 29.914 34.3433 29.3088 34.3433H26.5792C26.1562 34.3433 25.8133 34.0003 25.8133 33.5773C25.8133 33.1543 26.1562 32.8113 26.5792 32.8113H29.4671C30.0961 32.8113 30.59 32.3212 30.59 31.5301C30.59 31.1903 30.455 30.8645 30.2147 30.6242C29.9745 30.3839 29.6486 30.2489 29.3088 30.2489H23.8601C23.8528 30.249 23.8454 30.249 23.838 30.2489H19.7554C19.3324 30.2489 18.9894 29.906 18.9894 29.483C18.9894 29.06 19.3324 28.717 19.7554 28.717H21.5517L19.7434 27.3608C19.3769 27.0859 18.9258 26.9477 18.4683 26.9703C18.0107 26.9929 17.5754 27.1748 17.2378 27.4845C17.2223 27.4987 17.2061 27.5124 17.1894 27.5253L10.7128 32.5464V45.0943H27.3585C27.9637 45.0943 28.3471 44.9 28.5761 44.6746C28.8115 44.443 28.9324 44.1316 28.9324 43.8131C28.9324 43.4946 28.8115 43.1833 28.5761 42.9516ZM4.58511 31.6604C4.58511 31.0964 5.04235 30.6392 5.60638 30.6392H8.15082C8.71486 30.6392 9.1721 31.0964 9.1721 31.6604V45.4156C9.1721 45.9796 8.71486 46.4368 8.15082 46.4368H5.60638C5.04235 46.4368 4.58511 45.9796 4.58511 45.4156V31.6604Z" fill="var(--icon-on-subtle)"/>
3
- <path d="M27.8467 11.4099V13.213C27.8467 14.0766 27.7619 14.814 27.5923 15.4251C27.4278 16.0312 27.1884 16.5236 26.8742 16.9024C26.56 17.2812 26.1835 17.5589 25.7447 17.7357C25.3108 17.9125 24.8246 18.0009 24.286 18.0009C23.8571 18.0009 23.4582 17.9453 23.0891 17.8342C22.7251 17.7231 22.3959 17.5488 22.1017 17.3115C21.8075 17.0741 21.5556 16.7685 21.3462 16.3948C21.1417 16.016 20.9821 15.564 20.8674 15.0387C20.7577 14.5135 20.7029 13.9049 20.7029 13.213V11.4099C20.7029 10.5413 20.7876 9.80894 20.9572 9.21298C21.1268 8.61197 21.3686 8.12459 21.6828 7.75085C21.997 7.37207 22.371 7.09681 22.8049 6.9251C23.2437 6.75338 23.7324 6.66752 24.271 6.66752C24.7049 6.66752 25.1038 6.72308 25.4679 6.83419C25.8369 6.94025 26.1661 7.10944 26.4553 7.34176C26.7495 7.57409 26.9989 7.87712 27.2033 8.25085C27.4128 8.61954 27.5724 9.06651 27.6821 9.59176C27.7918 10.112 27.8467 10.718 27.8467 11.4099ZM26.0439 13.4706V11.1372C26.0439 10.6978 26.0189 10.3115 25.9691 9.97813C25.9192 9.63974 25.8444 9.35439 25.7447 9.12207C25.6499 8.88469 25.5302 8.69277 25.3856 8.54631C25.241 8.39479 25.0764 8.28621 24.8919 8.22055C24.7074 8.14984 24.5004 8.11449 24.271 8.11449C23.9918 8.11449 23.7424 8.17005 23.523 8.28116C23.3036 8.38722 23.119 8.55894 22.9694 8.79631C22.8198 9.03368 22.7051 9.34681 22.6253 9.7357C22.5505 10.1195 22.5131 10.5867 22.5131 11.1372V13.4706C22.5131 13.915 22.5381 14.3064 22.5879 14.6448C22.6378 14.9832 22.7126 15.2736 22.8123 15.516C22.9121 15.7534 23.0318 15.9504 23.1714 16.1069C23.316 16.2584 23.4806 16.3695 23.6651 16.4403C23.8546 16.511 24.0616 16.5463 24.286 16.5463C24.5702 16.5463 24.8221 16.4908 25.0415 16.3796C25.2609 16.2685 25.4455 16.0918 25.5951 15.8493C25.7447 15.6019 25.8569 15.2812 25.9317 14.8872C26.0065 14.4933 26.0439 14.0211 26.0439 13.4706Z" fill="var(--icon-on-subtle)"/>
4
- <path d="M37.1667 11.4099V13.213C37.1667 14.0766 37.0819 14.814 36.9123 15.4251C36.7478 16.0312 36.5084 16.5236 36.1942 16.9024C35.88 17.2812 35.5035 17.5589 35.0647 17.7357C34.6308 17.9125 34.1446 18.0009 33.606 18.0009C33.1771 18.0009 32.7782 17.9453 32.4091 17.8342C32.0451 17.7231 31.7159 17.5488 31.4217 17.3115C31.1275 17.0741 30.8756 16.7685 30.6662 16.3948C30.4617 16.016 30.3021 15.564 30.1874 15.0387C30.0777 14.5135 30.0229 13.9049 30.0229 13.213V11.4099C30.0229 10.5413 30.1076 9.80894 30.2772 9.21298C30.4468 8.61197 30.6886 8.12459 31.0028 7.75085C31.317 7.37207 31.691 7.09681 32.1249 6.9251C32.5637 6.75338 33.0524 6.66752 33.591 6.66752C34.0249 6.66752 34.4238 6.72308 34.7879 6.83419C35.1569 6.94025 35.4861 7.10944 35.7753 7.34176C36.0695 7.57409 36.3189 7.87712 36.5234 8.25085C36.7328 8.61954 36.8924 9.06651 37.0021 9.59176C37.1118 10.112 37.1667 10.718 37.1667 11.4099ZM35.3639 13.4706V11.1372C35.3639 10.6978 35.339 10.3115 35.2891 9.97813C35.2392 9.63974 35.1644 9.35439 35.0647 9.12207C34.9699 8.88469 34.8502 8.69277 34.7056 8.54631C34.561 8.39479 34.3964 8.28621 34.2119 8.22055C34.0274 8.14984 33.8204 8.11449 33.591 8.11449C33.3118 8.11449 33.0624 8.17005 32.843 8.28116C32.6236 8.38722 32.439 8.55894 32.2894 8.79631C32.1398 9.03368 32.0251 9.34681 31.9453 9.7357C31.8705 10.1195 31.8331 10.5867 31.8331 11.1372V13.4706C31.8331 13.915 31.8581 14.3064 31.9079 14.6448C31.9578 14.9832 32.0326 15.2736 32.1323 15.516C32.2321 15.7534 32.3518 15.9504 32.4914 16.1069C32.636 16.2584 32.8006 16.3695 32.9851 16.4403C33.1746 16.511 33.3816 16.5463 33.606 16.5463C33.8902 16.5463 34.1421 16.4908 34.3615 16.3796C34.5809 16.2685 34.7655 16.0918 34.9151 15.8493C35.0647 15.6019 35.1769 15.2812 35.2517 14.8872C35.3265 14.4933 35.3639 14.0211 35.3639 13.4706Z" fill="var(--icon-on-subtle)"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M19.081 13.984V15.4386H17.7195V17.9158H15.9167V15.4386H11.2265L11.1667 14.3401L15.8644 6.88552H17.7195V13.984H19.081ZM13.0443 13.984L15.9001 9.34776V13.984H13.0443Z" fill="var(--icon-on-subtle)"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.03192 3.57532C2.03192 2.44725 2.9464 1.53277 4.07447 1.53277H44.9255C46.0536 1.53277 46.9681 2.44725 46.9681 3.57532V19.9157C46.9681 21.0438 46.0536 21.9583 44.9255 21.9583H4.07447C2.9464 21.9583 2.03192 21.0438 2.03192 19.9157V3.57532ZM27.8467 13.213V11.4099C27.8467 10.718 27.7918 10.112 27.6821 9.59176C27.5724 9.06651 27.4128 8.61954 27.2033 8.25085C26.9989 7.87712 26.7495 7.57409 26.4553 7.34176C26.1661 7.10944 25.8369 6.94025 25.4679 6.83419C25.1038 6.72308 24.7049 6.66752 24.271 6.66752C23.7324 6.66752 23.2437 6.75338 22.8049 6.9251C22.371 7.09681 21.997 7.37207 21.6828 7.75085C21.3686 8.12459 21.1268 8.61197 20.9572 9.21298C20.7876 9.80894 20.7029 10.5413 20.7029 11.4099V13.213C20.7029 13.9049 20.7577 14.5135 20.8674 15.0387C20.9821 15.564 21.1417 16.016 21.3462 16.3948C21.5556 16.7685 21.8075 17.0741 22.1017 17.3115C22.3959 17.5488 22.7251 17.7231 23.0891 17.8342C23.4582 17.9453 23.8571 18.0009 24.286 18.0009C24.8246 18.0009 25.3108 17.9125 25.7447 17.7357C26.1835 17.5589 26.56 17.2812 26.8742 16.9024C27.1884 16.5236 27.4278 16.0312 27.5923 15.4251C27.7619 14.814 27.8467 14.0766 27.8467 13.213ZM37.1667 13.213V11.4099C37.1667 10.718 37.1118 10.112 37.0021 9.59176C36.8924 9.06651 36.7328 8.61954 36.5234 8.25085C36.3189 7.87712 36.0695 7.57409 35.7753 7.34176C35.4861 7.10944 35.1569 6.94025 34.7879 6.83419C34.4238 6.72308 34.0249 6.66752 33.591 6.66752C33.0524 6.66752 32.5637 6.75338 32.1249 6.9251C31.691 7.09681 31.317 7.37207 31.0028 7.75085C30.6886 8.12459 30.4468 8.61197 30.2772 9.21298C30.1076 9.80894 30.0229 10.5413 30.0229 11.4099V13.213C30.0229 13.9049 30.0777 14.5135 30.1874 15.0387C30.3021 15.564 30.4617 16.016 30.6662 16.3948C30.8756 16.7685 31.1275 17.0741 31.4217 17.3115C31.7159 17.5488 32.0451 17.7231 32.4091 17.8342C32.7782 17.9453 33.1771 18.0009 33.606 18.0009C34.1446 18.0009 34.6308 17.9125 35.0647 17.7357C35.5035 17.5589 35.88 17.2812 36.1942 16.9024C36.5084 16.5236 36.7478 16.0312 36.9123 15.4251C37.0819 14.814 37.1667 14.0766 37.1667 13.213ZM19.081 15.4386V13.984H17.7195V6.88552H15.8644L11.1667 14.3401L11.2265 15.4386H15.9167V17.9158H17.7195V15.4386H19.081Z" fill="var(--background-primary-subtlest)"/>
7
- <path d="M35.3639 13.4706V11.1372C35.3639 10.6978 35.339 10.3115 35.2891 9.97813C35.2392 9.63974 35.1644 9.35439 35.0647 9.12207C34.9699 8.88469 34.8502 8.69277 34.7056 8.54631C34.561 8.39479 34.3964 8.28621 34.2119 8.22055C34.0274 8.14984 33.8204 8.11449 33.591 8.11449C33.3118 8.11449 33.0624 8.17005 32.843 8.28116C32.6236 8.38722 32.439 8.55894 32.2894 8.79631C32.1398 9.03368 32.0251 9.34681 31.9453 9.7357C31.8705 10.1195 31.8331 10.5867 31.8331 11.1372V13.4706C31.8331 13.915 31.8581 14.3064 31.9079 14.6448C31.9578 14.9832 32.0326 15.2736 32.1323 15.516C32.2321 15.7534 32.3518 15.9504 32.4914 16.1069C32.636 16.2584 32.8006 16.3695 32.9851 16.4403C33.1746 16.511 33.3816 16.5463 33.606 16.5463C33.8902 16.5463 34.1421 16.4908 34.3615 16.3796C34.5809 16.2685 34.7655 16.0918 34.9151 15.8493C35.0647 15.6019 35.1769 15.2812 35.2517 14.8872C35.3265 14.4933 35.3639 14.0211 35.3639 13.4706Z" fill="var(--background-primary-subtlest)"/>
8
- <path d="M26.0439 13.4706V11.1372C26.0439 10.6978 26.0189 10.3115 25.9691 9.97813C25.9192 9.63974 25.8444 9.35439 25.7447 9.12207C25.6499 8.88469 25.5302 8.69277 25.3856 8.54631C25.241 8.39479 25.0764 8.28621 24.8919 8.22055C24.7074 8.14984 24.5004 8.11449 24.271 8.11449C23.9918 8.11449 23.7424 8.17005 23.523 8.28116C23.3036 8.38722 23.119 8.55894 22.9694 8.79631C22.8198 9.03368 22.7051 9.34681 22.6253 9.7357C22.5505 10.1195 22.5131 10.5867 22.5131 11.1372V13.4706C22.5131 13.915 22.5381 14.3064 22.5879 14.6448C22.6378 14.9832 22.7126 15.2736 22.8123 15.516C22.9121 15.7534 23.0318 15.9504 23.1714 16.1069C23.316 16.2584 23.4806 16.3695 23.6651 16.4403C23.8546 16.511 24.0616 16.5463 24.286 16.5463C24.5702 16.5463 24.8221 16.4908 25.0415 16.3796C25.2609 16.2685 25.4455 16.0918 25.5951 15.8493C25.7447 15.6019 25.8569 15.2812 25.9317 14.8872C26.0065 14.4933 26.0439 14.0211 26.0439 13.4706Z" fill="var(--background-primary-subtlest)"/>
9
- <path d="M15.9001 9.34776L13.0443 13.984H15.9001V9.34776Z" fill="var(--background-primary-subtlest)"/>
10
- </svg>
@@ -1,7 +0,0 @@
1
- <svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect x="1.5" y="1.00085" width="46" height="21" rx="3" fill="var(--background-primary-subtlest)"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.07447 0.000854492H44.9255C46.8997 0.000854492 48.5 1.6012 48.5 3.57532V19.9157C48.5 21.8899 46.8997 23.4902 44.9255 23.4902H26.5426V28.717H29.3088C30.0549 28.717 30.7704 29.0134 31.298 29.541C31.8255 30.0685 32.1219 30.7841 32.1219 31.5301C32.1219 32.2674 31.8648 32.9732 31.402 33.4934C31.4714 33.5496 31.5378 33.6089 31.601 33.6711C32.1456 34.2071 32.4146 34.9194 32.4146 35.6245C32.4146 36.3296 32.1456 37.0418 31.601 37.5778C31.4453 37.731 31.2708 37.8663 31.079 37.9816C31.4914 38.4853 31.6954 39.1048 31.6954 39.7188C31.6954 40.4239 31.4263 41.1361 30.8818 41.6721C30.6309 41.919 30.3312 42.1194 29.9889 42.2643C30.3068 42.73 30.4643 43.2737 30.4643 43.8131C30.4643 44.5182 30.1953 45.2304 29.6507 45.7664C29.0997 46.3087 28.3132 46.6262 27.3585 46.6262H10.3993C9.96797 47.4256 9.12283 47.9688 8.15082 47.9688H5.60638C4.19629 47.9688 3.05319 46.8257 3.05319 45.4156V31.6604C3.05319 30.2503 4.19629 29.1072 5.60638 29.1072H8.15082C9.23855 29.1072 10.1674 29.7874 10.5353 30.7457L16.2273 26.3329C16.8247 25.7954 17.5894 25.4799 18.3927 25.4403C19.2073 25.4001 20.0102 25.6459 20.6626 26.1353L22.4574 27.4814V23.4902H4.07447C2.10035 23.4902 0.5 21.8899 0.5 19.9157V3.57532C0.5 1.6012 2.10034 0.000854492 4.07447 0.000854492ZM4.07447 1.53277C2.9464 1.53277 2.03192 2.44725 2.03192 3.57532V19.9157C2.03192 21.0438 2.9464 21.9583 4.07447 21.9583H44.9255C46.0536 21.9583 46.9681 21.0438 46.9681 19.9157V3.57532C46.9681 2.44725 46.0536 1.53277 44.9255 1.53277H4.07447ZM28.5761 42.9516C28.3471 42.7262 27.9637 42.5319 27.3585 42.5319H26.5792C26.1562 42.5319 25.8132 42.189 25.8132 41.766C25.8132 41.5545 25.899 41.363 26.0376 41.2244C26.0722 41.1897 26.1102 41.1583 26.1509 41.1308C26.2732 41.0482 26.4206 41 26.5792 41H28.5896C29.1948 41 29.5782 40.8057 29.8072 40.5803C30.0426 40.3486 30.1635 40.0373 30.1635 39.7188C30.1635 39.4003 30.0426 39.0889 29.8072 38.8572C29.5782 38.6319 29.1948 38.4376 28.5896 38.4376H26.5792C26.1562 38.4376 25.8133 38.0946 25.8133 37.6716C25.8133 37.2486 26.1562 36.9057 26.5792 36.9057H29.3088C29.914 36.9057 30.2974 36.7114 30.5264 36.486C30.7618 36.2543 30.8827 35.9429 30.8827 35.6245C30.8827 35.306 30.7618 34.9946 30.5264 34.7629C30.2974 34.5375 29.914 34.3433 29.3088 34.3433H26.5792C26.1562 34.3433 25.8133 34.0003 25.8133 33.5773C25.8133 33.1543 26.1562 32.8113 26.5792 32.8113H29.4671C30.0961 32.8113 30.59 32.3212 30.59 31.5301C30.59 31.1903 30.455 30.8645 30.2147 30.6242C29.9745 30.3839 29.6486 30.2489 29.3088 30.2489H23.8601C23.8528 30.249 23.8454 30.249 23.838 30.2489H19.7554C19.3324 30.2489 18.9894 29.906 18.9894 29.483C18.9894 29.06 19.3324 28.717 19.7554 28.717H21.5517L19.7434 27.3608C19.3769 27.0859 18.9258 26.9477 18.4683 26.9703C18.0107 26.9929 17.5754 27.1748 17.2378 27.4845C17.2223 27.4987 17.2061 27.5124 17.1894 27.5253L10.7128 32.5464V45.0943H27.3585C27.9637 45.0943 28.3471 44.9 28.5761 44.6746C28.8115 44.443 28.9324 44.1316 28.9324 43.8131C28.9324 43.4946 28.8115 43.1833 28.5761 42.9516ZM4.58511 31.6604C4.58511 31.0964 5.04235 30.6392 5.60638 30.6392H8.15082C8.71486 30.6392 9.1721 31.0964 9.1721 31.6604V45.4156C9.1721 45.9796 8.71486 46.4368 8.15082 46.4368H5.60638C5.04235 46.4368 4.58511 45.9796 4.58511 45.4156V31.6604Z" fill="var(--icon-on-subtle)"/>
4
- <path d="M12.9448 12.7206L11.4982 12.3645L12.0934 6.81904H18.0079V8.36449H13.6003L13.2989 11.069C13.4697 10.968 13.7058 10.8695 14.0071 10.7736C14.3085 10.6726 14.6526 10.6221 15.0393 10.6221C15.5567 10.6221 16.0188 10.7079 16.4257 10.8796C16.8376 11.0463 17.1867 11.2913 17.473 11.6145C17.7593 11.9327 17.9778 12.3216 18.1285 12.7812C18.2791 13.2357 18.3545 13.7483 18.3545 14.319C18.3545 14.8291 18.2791 15.3064 18.1285 15.7509C17.9828 16.1953 17.7618 16.5867 17.4654 16.9251C17.1691 17.2635 16.7949 17.5286 16.3428 17.7206C15.8958 17.9074 15.3658 18.0009 14.753 18.0009C14.296 18.0009 13.8564 17.9352 13.4345 17.8039C13.0176 17.6675 12.6434 17.468 12.3119 17.2054C11.9804 16.9377 11.7142 16.6094 11.5132 16.2206C11.3123 15.8266 11.1968 15.3746 11.1667 14.8645H12.9448C12.99 15.2231 13.0879 15.5286 13.2386 15.7812C13.3943 16.0286 13.6003 16.218 13.8564 16.3493C14.1126 16.4807 14.409 16.5463 14.7455 16.5463C15.0519 16.5463 15.3156 16.4933 15.5366 16.3872C15.7576 16.2761 15.941 16.1195 16.0866 15.9175C16.2373 15.7105 16.3478 15.468 16.4181 15.1902C16.4935 14.9125 16.5312 14.6044 16.5312 14.266C16.5312 13.9428 16.4885 13.6473 16.4031 13.3796C16.3227 13.112 16.1996 12.8796 16.0339 12.6827C15.8732 12.4857 15.6697 12.3342 15.4236 12.2281C15.1775 12.117 14.8937 12.0615 14.5722 12.0615C14.1402 12.0615 13.8087 12.1246 13.5777 12.2509C13.3516 12.3771 13.1407 12.5337 12.9448 12.7206Z" fill="var(--icon-on-subtle)"/>
5
- <path d="M27.576 11.4099V13.213C27.576 14.0766 27.4906 14.814 27.3198 15.4251C27.1541 16.0312 26.913 16.5236 26.5965 16.9024C26.2801 17.2812 25.9008 17.5589 25.4588 17.7357C25.0218 17.9125 24.5321 18.0009 23.9896 18.0009C23.5576 18.0009 23.1558 17.9453 22.7841 17.8342C22.4174 17.7231 22.0859 17.5488 21.7896 17.3115C21.4932 17.0741 21.2396 16.7685 21.0286 16.3948C20.8227 16.016 20.6619 15.564 20.5464 15.0387C20.4359 14.5135 20.3806 13.9049 20.3806 13.213V11.4099C20.3806 10.5413 20.466 9.80894 20.6368 9.21298C20.8076 8.61197 21.0512 8.12459 21.3676 7.75085C21.6841 7.37207 22.0608 7.09681 22.4978 6.9251C22.9398 6.75338 23.4321 6.66752 23.9745 6.66752C24.4115 6.66752 24.8134 6.72308 25.18 6.83419C25.5517 6.94025 25.8833 7.10944 26.1746 7.34176C26.4709 7.57409 26.7221 7.87712 26.928 8.25085C27.139 8.61954 27.2997 9.06651 27.4102 9.59176C27.5207 10.112 27.576 10.718 27.576 11.4099ZM25.7602 13.4706V11.1372C25.7602 10.6978 25.7351 10.3115 25.6848 9.97813C25.6346 9.63974 25.5593 9.35439 25.4588 9.12207C25.3634 8.88469 25.2428 8.69277 25.0972 8.54631C24.9515 8.39479 24.7857 8.28621 24.5999 8.22055C24.414 8.14984 24.2056 8.11449 23.9745 8.11449C23.6933 8.11449 23.4421 8.17005 23.2211 8.28116C23.0001 8.38722 22.8142 8.55894 22.6636 8.79631C22.5129 9.03368 22.3973 9.34681 22.317 9.7357C22.2416 10.1195 22.204 10.5867 22.204 11.1372V13.4706C22.204 13.915 22.2291 14.3064 22.2793 14.6448C22.3295 14.9832 22.4049 15.2736 22.5053 15.516C22.6058 15.7534 22.7263 15.9504 22.867 16.1069C23.0127 16.2584 23.1784 16.3695 23.3643 16.4403C23.5551 16.511 23.7636 16.5463 23.9896 16.5463C24.2759 16.5463 24.5296 16.4908 24.7506 16.3796C24.9716 16.2685 25.1574 16.0918 25.3081 15.8493C25.4588 15.6019 25.5718 15.2812 25.6472 14.8872C25.7225 14.4933 25.7602 14.0211 25.7602 13.4706Z" fill="var(--icon-on-subtle)"/>
6
- <path d="M37.1667 16.3948V17.8493H29.8131V16.5993L33.3844 12.6827C33.7762 12.2382 34.0851 11.8544 34.3111 11.5312C34.5372 11.2079 34.6954 10.9175 34.7858 10.6599C34.8812 10.3973 34.929 10.1423 34.929 9.89479C34.929 9.54631 34.8637 9.24075 34.7331 8.97813C34.6075 8.71045 34.4216 8.50085 34.1755 8.34934C33.9294 8.19277 33.6305 8.11449 33.2789 8.11449C32.8721 8.11449 32.5305 8.20287 32.2542 8.37964C31.978 8.55641 31.7695 8.80136 31.6289 9.11449C31.4882 9.42257 31.4179 9.77611 31.4179 10.1751H29.6021C29.6021 9.53368 29.7478 8.94782 30.0391 8.41752C30.3305 7.88217 30.7524 7.45793 31.3049 7.14479C31.8574 6.82661 32.523 6.66752 33.3015 6.66752C34.0349 6.66752 34.6577 6.79126 35.1701 7.03873C35.6824 7.28621 36.0717 7.63722 36.3379 8.09176C36.6091 8.54631 36.7447 9.08419 36.7447 9.7054C36.7447 10.0488 36.6895 10.3897 36.579 10.7281C36.4685 11.0665 36.3103 11.4049 36.1043 11.7433C35.9034 12.0766 35.6648 12.4125 35.3885 12.7509C35.1123 13.0842 34.8084 13.4226 34.4769 13.766L32.1036 16.3948H37.1667Z" fill="var(--icon-on-subtle)"/>
7
- </svg>
@@ -1,14 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_863)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M31.9152 8.2359C33.518 6.63312 36.1166 6.63312 37.7194 8.2359C39.2534 9.76996 39.3192 12.2163 37.9167 13.8286C38.8339 13.9154 39.7276 14.3099 40.43 15.0123C42.0327 16.6151 42.0327 19.2137 40.43 20.8165L38.6072 22.6392C39.52 22.7284 40.4085 23.1226 41.1076 23.8217C42.7104 25.4245 42.7104 28.0231 41.1076 29.6259L28.2025 42.5308C21.7509 48.9825 11.2908 48.9825 4.83918 42.5308C-0.0791974 37.6125 -1.39007 30.1403 1.56043 23.8414L7.38006 11.4174C8.33816 9.3635 10.7801 8.47444 12.8342 9.4323C14.8885 10.3902 15.7773 12.8321 14.8193 14.8864L13.982 16.6821L24.4611 6.20297C26.0639 4.60019 28.6625 4.60019 30.2653 6.20297C30.9644 6.90205 31.3586 7.79059 31.4478 8.70332L31.9152 8.2359ZM29.2046 10.9465C30.2216 9.92948 30.2216 8.28062 29.2046 7.26363C28.1877 6.24664 26.5388 6.24664 25.5218 7.26363L12.5658 20.2196L13.4502 21.104C16.8673 24.521 16.8673 30.0612 13.4502 33.4783C13.1573 33.7712 12.6824 33.7712 12.3895 33.4783C12.0966 33.1854 12.0966 32.7106 12.3895 32.4177C15.2208 29.5864 15.2208 24.9959 12.3895 22.1646L10.9985 20.7736C10.7595 20.5553 10.685 20.2032 10.8249 19.9031L13.4599 14.2525C14.0677 12.949 13.5037 11.3996 12.2003 10.7918C10.8968 10.1839 9.34735 10.7479 8.73952 12.0514L8.73897 12.0525L2.91879 24.4777C0.236183 30.2046 1.42804 36.9984 5.89984 41.4702C11.7657 47.336 21.2761 47.336 27.1419 41.4702L40.0469 28.5652C41.0639 27.5482 41.0639 25.8993 40.0469 24.8824C39.0299 23.8654 37.3811 23.8654 36.3641 24.8824C36.3448 24.9017 36.3246 24.9197 36.3038 24.9365L27.1539 34.0864C26.861 34.3793 26.3861 34.3793 26.0933 34.0864C25.8004 33.7935 25.8004 33.3187 26.0933 33.0258L35.816 23.3031L35.819 23.3061L39.3693 19.7558C40.3863 18.7388 40.3863 17.09 39.3693 16.073C38.3871 15.0908 36.8156 15.0572 35.7931 15.9721L24.5377 27.2275C24.2448 27.5204 23.7699 27.5204 23.477 27.2275C23.1841 26.9346 23.1841 26.4598 23.477 26.1669L34.5731 15.0707C34.5895 15.0506 34.607 15.0311 34.6258 15.0123L36.6587 12.9794C37.6757 11.9624 37.6757 10.3135 36.6587 9.29656C35.6417 8.27957 33.9929 8.27957 32.9759 9.29656L31.6353 10.6371L31.6369 10.6387L20.5 21.7757C20.2071 22.0686 19.7322 22.0686 19.4394 21.7757C19.1465 21.4828 19.1465 21.0079 19.4394 20.715L29.1644 10.99C29.1771 10.9751 29.1905 10.9606 29.2046 10.9465Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M23.2502 4.10256C23.2673 4.51642 22.944 4.86103 22.5353 4.92845C20.5838 5.25041 18.8889 6.50252 18.0173 8.31236C17.8376 8.68555 17.3894 8.84239 17.0162 8.66266C16.643 8.48294 16.4862 8.03471 16.6659 7.66152C17.778 5.35223 19.9667 3.77227 22.4726 3.42074C22.8828 3.3632 23.2332 3.6887 23.2502 4.10256Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22.8782 0.962357C22.8621 1.37626 22.5128 1.695 22.0992 1.71882C19.0835 1.89252 16.4115 3.81114 15.3056 6.67099C15.1562 7.05732 14.722 7.2494 14.3356 7.10001C13.9493 6.95062 13.7572 6.51633 13.9066 6.12999C15.2438 2.67202 18.5 0.367386 22.1573 0.214084C22.5711 0.196737 22.8942 0.548453 22.8782 0.962357Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M39.0001 35.9975C38.9146 35.5921 39.1762 35.1987 39.5681 35.0644C41.4392 34.4232 42.9028 32.9073 43.4621 30.9779C43.5775 30.5801 43.9935 30.3511 44.3913 30.4664C44.7891 30.5817 45.0182 30.9977 44.9028 31.3956C44.1892 33.8573 42.293 35.7785 39.88 36.5408C39.4851 36.6656 39.0856 36.4028 39.0001 35.9975Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M39.8877 39.0326C39.8348 38.6218 40.1265 38.2495 40.5303 38.1575C43.4754 37.4859 45.7922 35.1506 46.4083 32.147C46.4915 31.7412 46.8879 31.4797 47.2937 31.563C47.6995 31.6462 47.9609 32.0426 47.8777 32.4484C47.1327 36.0803 44.3039 38.8931 40.7227 39.651C40.3174 39.7367 39.9405 39.4435 39.8877 39.0326Z" fill="currentColor"/>
8
- </g>
9
- <defs>
10
- <clipPath id="clip0_100_863">
11
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
12
- </clipPath>
13
- </defs>
14
- </svg>
@@ -1,5 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22 30.0008V25.0008H17C16.4477 25.0008 16 24.5531 16 24.0008V22.0008C16 21.4485 16.4477 21.0008 17 21.0008H22V16.0008C22 15.4485 22.4477 15.0008 23 15.0008H25C25.5523 15.0008 26 15.4485 26 16.0008V21.0008H31C31.5523 21.0008 32 21.4485 32 22.0008V24.0008C32 24.5531 31.5523 25.0008 31 25.0008H26V30.0008C26 30.5531 25.5523 31.0008 25 31.0008H23C22.4477 31.0008 22 30.5531 22 30.0008Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24.7473 42.6782C24.2681 42.8948 23.7319 42.8948 23.2528 42.678C19.4536 40.9587 8 34.6668 8 21.0713V13.514C8 12.6225 8.59113 11.8417 9.4418 11.5749C11.7547 10.8493 14.0245 9.99139 16.24 9.00525C18.5439 8.0083 20.7872 6.87732 22.9584 5.61821C23.6023 5.24485 24.3977 5.24485 25.0416 5.61821C27.2128 6.87732 29.4561 8.0083 31.76 9.00525C33.9755 9.99139 36.2453 10.8493 38.5582 11.5749C39.4089 11.8417 40 12.6225 40 13.514V21.0713C40 34.6791 28.5465 40.9604 24.7473 42.6782ZM31.9627 36.048C35.4146 32.7433 38.5 27.9034 38.5 21.0713V13.4969C38.5 13.2773 38.3566 13.0835 38.147 13.0179C35.7687 12.2734 33.4349 11.3923 31.1571 10.3788C28.7893 9.35386 26.4841 8.19058 24.2534 6.89508C24.0967 6.80412 23.9033 6.80412 23.7466 6.89508C21.5159 8.19059 19.2106 9.35387 16.8428 10.3788C14.5651 11.3923 12.2313 12.2734 9.85304 13.0179C9.64342 13.0835 9.5 13.2773 9.5 13.4969V21.0713C9.5 27.8965 12.5852 32.7365 16.0376 36.0433C18.9645 38.8468 22.1269 40.5152 23.7982 41.2782C23.9271 41.3371 24.0732 41.3371 24.2021 41.2783C25.8739 40.5158 29.036 38.8499 31.9627 36.048Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24.7602 47.6719C24.2758 47.8897 23.7242 47.8897 23.2399 47.6718C18.678 45.6188 4 37.6886 4 20.3002V10.3536C4 9.46409 4.58823 8.68403 5.43742 8.41937C8.45474 7.47899 11.4142 6.35687 14.3 5.05887C17.2696 3.76032 20.1587 2.28175 22.9515 0.631351C23.598 0.249307 24.402 0.249307 25.0485 0.631351C27.8413 2.28175 30.7304 3.76032 33.7 5.05887C36.5858 6.35687 39.5453 7.47899 42.5626 8.41937C43.4118 8.68403 44 9.46409 44 10.3536V20.3002C44 37.7043 29.3222 45.6206 24.7602 47.6719ZM34.207 39.5087C38.576 35.282 42.5 29.0699 42.5 20.3002V10.3398C42.5 10.12 42.3565 9.9262 42.1466 9.86089C39.0637 8.90139 36.04 7.75578 33.0918 6.43007C30.0587 5.10341 27.1082 3.59244 24.2564 1.9056C24.0983 1.81207 23.9017 1.81207 23.7436 1.9056C20.8918 3.59245 17.9413 5.10342 14.9081 6.43008C11.96 7.75579 8.93632 8.9014 5.85337 9.86089C5.64354 9.9262 5.5 10.12 5.5 10.3398V20.3002C5.5 29.0612 9.42376 35.2734 13.7932 39.5027C17.6123 43.1992 21.7449 45.3487 23.7982 46.278C23.9268 46.3362 24.0735 46.3363 24.2021 46.2781C26.256 45.3493 30.3883 43.2032 34.207 39.5087Z" fill="currentColor"/>
5
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M28.5374 25.6931C28.7079 25.6235 28.8631 25.5208 28.9939 25.3911L39.8704 14.5006C41.2347 13.122 42 11.2608 42 9.32125C42 7.38171 41.2347 5.52051 39.8704 4.14194C38.4954 2.77084 36.6329 2.00089 34.6911 2.00089C32.7493 2.00089 30.8868 2.77084 29.5118 4.14194L28 5.65374L26.4882 4.14194C25.1132 2.77084 23.2507 2.00089 21.3089 2.00089C19.3671 2.00089 17.5046 2.77084 16.1296 4.14194C14.7653 5.52051 14 7.38171 14 9.32125C14 11.2608 14.7653 13.122 16.1296 14.5006L27.0061 25.3911C27.1369 25.5208 27.2921 25.6235 27.4626 25.6931C27.6332 25.7628 27.8158 25.7981 28 25.797C28.1842 25.7981 28.3668 25.7628 28.5374 25.6931ZM28 24.2636L38.8043 13.4454L38.8064 13.4433C39.8914 12.3458 40.5 10.8647 40.5 9.32125C40.5 7.77849 39.8919 6.29798 38.8077 5.20061C37.7143 4.11208 36.2341 3.50089 34.6911 3.50089C33.147 3.50089 31.6658 4.11295 30.5721 5.20295L30.571 5.2041L28 7.77506L25.429 5.2041L25.4282 5.20323C24.3345 4.11306 22.8532 3.50089 21.3089 3.50089C19.7659 3.50089 18.2857 4.11207 17.1923 5.20059C16.1081 6.29797 15.5 7.77848 15.5 9.32125C15.5 10.8646 16.1085 12.3457 17.1935 13.4432L17.1957 13.4454L28 24.2636Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.50495 27.5011H5.00132C6.21353 27.5011 7.22464 28.3605 7.45636 29.5021C9.7729 28.4122 11.8382 27.8665 13.7633 27.7198C16.0369 27.5465 18.0186 27.9373 19.8672 28.5194C20.9316 28.8545 22.0613 29.2955 23.1573 29.7233C23.8484 29.993 24.5263 30.2576 25.1658 30.4871C26.923 31.1176 28.7515 31.6351 30.8708 31.7962C31.5712 31.8495 32.2017 32.233 32.5575 32.822C32.9353 33.4472 32.9824 34.2958 32.4851 35.0084C31.5098 36.4173 30.1142 37.0786 28.6817 37.3581C29.2266 37.4072 29.7715 37.4489 30.3169 37.4819L30.3182 37.482C30.4966 37.4929 30.8595 37.4604 31.4531 37.3312C32.02 37.2077 32.6993 37.0187 33.4682 36.782C34.4254 36.4874 35.4509 36.142 36.5171 35.7828C37.1905 35.5559 37.8802 35.3236 38.5794 35.0951C40.3281 34.5235 42.1181 33.9825 43.5713 33.7427C44.2887 33.6242 45.0369 33.5587 45.7039 33.6519C46.3515 33.7423 47.2652 34.0401 47.7398 34.9669C48.2902 36.0419 47.8603 37.0802 47.4321 37.7211C46.9892 38.3838 46.3144 39.0062 45.5854 39.5688C44.1047 40.7113 42.0124 41.8979 39.8432 42.9603C37.6589 44.03 35.3247 45.0087 33.3183 45.7234C32.3155 46.0805 31.3787 46.3775 30.5729 46.5871C29.8013 46.7879 29.0375 46.9393 28.4288 46.9393H28.3845L28.3404 46.9367C25.0006 46.7403 21.6964 45.9677 18.5475 45.2313L18.5429 45.2302C18.1279 45.1332 17.7156 45.0368 17.3062 44.9424C13.9183 44.1613 10.6989 43.5089 7.50405 43.5762C7.44815 44.9075 6.34903 45.9697 5.00132 45.9697H2.50495C1.12151 45.9697 0 44.8504 0 43.4697V30.0011C0 28.6204 1.12151 27.5011 2.50495 27.5011ZM7.50628 31.1466V42.0759C7.80307 42.0701 8.09969 42.0701 8.39614 42.0755C11.9074 42.1393 15.3958 42.9543 18.8933 43.7713C22.0565 44.5103 25.2272 45.2511 28.4288 45.4393C31.678 45.4393 47.8615 38.5009 46.4014 35.6495C45.6973 34.2743 41.209 35.7858 37.0303 37.1931C34.1915 38.1492 31.4955 39.0571 30.2259 38.9791C26.9846 38.783 23.7738 38.2906 20.5774 37.7375C19.9114 37.6222 19.4654 36.9906 19.5776 36.3254C19.6813 35.711 20.2285 35.272 20.8477 35.3517C21.3408 35.4152 21.8695 35.4989 22.4193 35.586C25.6006 36.0898 29.4868 36.7053 31.2505 34.153C31.5106 33.7829 31.2082 33.3262 30.7566 33.2919C27.5282 33.0464 24.9573 32.04 22.5157 31.0842C18.1209 29.3638 14.1446 27.8073 7.50628 31.1466ZM2.50495 29.0011C1.95158 29.0011 1.50297 29.4488 1.50297 30.0011V43.4697C1.50297 44.022 1.95158 44.4697 2.50495 44.4697H5.00132C5.5547 44.4697 6.0033 44.022 6.0033 43.4697V30.0011C6.0033 29.4488 5.5547 29.0011 5.00132 29.0011H2.50495Z" fill="currentColor"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3.75 24.0009C3.75 12.2638 13.2506 2.75089 24.9679 2.75089C30.9495 2.75089 36.3521 5.22882 40.2101 9.21794C40.5287 9.54729 40.8366 9.88692 41.1335 10.2363L38.8893 11.4896C38.5532 11.6773 38.5463 12.1584 38.8769 12.3556L44.8268 15.905C45.1573 16.1022 45.5774 15.8676 45.5829 15.4828L45.6819 8.55528C45.6874 8.17042 45.2742 7.92393 44.9381 8.11159L42.4668 9.49175C42.0909 9.03766 41.6978 8.59846 41.2884 8.17514C37.1596 3.90616 31.3729 1.25089 24.9679 1.25089C12.4201 1.25089 2.25 11.4374 2.25 24.0009C2.25 36.5643 12.4201 46.7509 24.9679 46.7509C34.3618 46.7509 42.4217 41.0415 45.8806 32.9029C46.0426 32.5217 45.8649 32.0813 45.4837 31.9193C45.1025 31.7573 44.6621 31.935 44.5001 32.3162C41.2678 39.9217 33.7381 45.2509 24.9679 45.2509C13.2506 45.2509 3.75 35.738 3.75 24.0009Z" fill="currentColor"/>
3
- <path d="M25.75 8.00089C25.75 7.58667 25.4142 7.25089 25 7.25089C24.5858 7.25089 24.25 7.58667 24.25 8.00089V25.3268L31.9883 32.5492C32.2911 32.8318 32.7657 32.8154 33.0483 32.5126C33.3309 32.2098 33.3146 31.7352 33.0117 31.4526L25.75 24.675V8.00089Z" fill="currentColor"/>
4
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M39.75 0.75C39.75 0.335786 39.4142 0 39 0C38.5858 0 38.25 0.335786 38.25 0.75V2.25C38.25 2.66421 38.5858 3 39 3C39.4142 3 39.75 2.66421 39.75 2.25V0.75Z" fill="currentColor"/>
3
- <path d="M45.3641 3.69669C45.657 3.40379 45.657 2.92892 45.3641 2.63603C45.0712 2.34313 44.5963 2.34313 44.3034 2.63603L43.2428 3.69669C42.9499 3.98958 42.9499 4.46445 43.2428 4.75735C43.5357 5.05024 44.0105 5.05024 44.3034 4.75735L45.3641 3.69669Z" fill="currentColor"/>
4
- <path d="M32.636 2.63604C32.9289 2.34315 33.4038 2.34315 33.6967 2.63604L34.7574 3.6967C35.0503 3.98959 35.0503 4.46447 34.7574 4.75736C34.4645 5.05025 33.9896 5.05025 33.6967 4.75736L32.636 3.6967C32.3431 3.40381 32.3431 2.92893 32.636 2.63604Z" fill="currentColor"/>
5
- <path d="M45.75 8.25C45.3358 8.25 45 8.58578 45 9C45 9.41421 45.3358 9.75 45.75 9.75H47.25C47.6642 9.75 48 9.41421 48 9C48 8.58578 47.6642 8.25 47.25 8.25H45.75Z" fill="currentColor"/>
6
- <path d="M30 9C30 8.58579 30.3358 8.25 30.75 8.25H32.25C32.6642 8.25 33 8.58579 33 9C33 9.41421 32.6642 9.75 32.25 9.75H30.75C30.3358 9.75 30 9.41421 30 9Z" fill="currentColor"/>
7
- <path d="M34.7575 14.3033C35.0504 14.0104 35.0504 13.5355 34.7575 13.2426C34.4646 12.9497 33.9897 12.9497 33.6968 13.2426L32.6362 14.3033C32.3433 14.5962 32.3433 15.0711 32.6362 15.3639C32.9291 15.6568 33.4039 15.6568 33.6968 15.3639L34.7575 14.3033Z" fill="currentColor"/>
8
- <path d="M43.2426 13.2426C43.5355 12.9497 44.0104 12.9497 44.3033 13.2426L45.364 14.3033C45.6569 14.5962 45.6569 15.0711 45.364 15.364C45.0711 15.6569 44.5962 15.6569 44.3033 15.364L43.2426 14.3033C42.9497 14.0104 42.9497 13.5355 43.2426 13.2426Z" fill="currentColor"/>
9
- <path d="M39.75 15.75C39.75 15.3358 39.4142 15 39 15C38.5858 15 38.25 15.3358 38.25 15.75V17.25C38.25 17.6642 38.5858 18 39 18C39.4142 18 39.75 17.6642 39.75 17.25V15.75Z" fill="currentColor"/>
10
- <path fill-rule="evenodd" clip-rule="evenodd" d="M39 14C41.7614 14 44 11.7614 44 9C44 6.23858 41.7614 4 39 4C36.2386 4 34 6.23858 34 9C34 11.7614 36.2386 14 39 14ZM39 12.5C40.933 12.5 42.5 10.933 42.5 9C42.5 7.067 40.933 5.5 39 5.5C37.067 5.5 35.5 7.067 35.5 9C35.5 10.933 37.067 12.5 39 12.5Z" fill="currentColor"/>
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.8378 17.8332C15.5995 12.6967 10.9791 8.83729 5.90363 9.48487L8.06965 12.0119C8.33921 12.3264 8.30279 12.7999 7.9883 13.0694C7.67381 13.339 7.20033 13.3026 6.93076 12.9881L3.94081 9.4998C3.86505 9.41518 3.80743 9.31201 3.77589 9.19485C3.6682 8.79488 3.90515 8.38334 4.30512 8.27565C10.6804 6.5592 16.8634 11.1489 17.3206 17.4931C21.8908 11.8587 31.1594 13.5785 33.221 20.794C33.3347 21.1923 33.1041 21.6074 32.7058 21.7212C32.5701 21.76 32.4324 21.7588 32.3053 21.7245L30.3179 21.2277C29.9161 21.1272 29.6717 20.72 29.7722 20.3182C29.8727 19.9163 30.2799 19.672 30.6817 19.7725L31.2926 19.9252C28.8176 14.7931 21.4581 14.0211 18.0736 18.9922C18.8662 18.7067 19.8588 18.4182 20.9538 18.258C23.6704 17.8604 27.1242 18.2491 29.5998 21.5501C30.6017 22.886 31.0636 24.1688 31.1561 25.3565C31.2484 26.5406 30.9696 27.5793 30.5686 28.4258C30.1694 29.2687 29.645 29.9308 29.2257 30.3795C29.0149 30.6051 28.8274 30.7803 28.6901 30.901C28.6214 30.9614 28.565 31.0084 28.5242 31.0415L28.5034 31.0582L28.4751 31.0807L28.4717 31.0833C28.3922 31.1476 28.2982 31.1967 28.1931 31.2248C27.7928 31.3315 27.3819 31.0935 27.2751 30.6933C26.1081 26.3168 22.6828 22.9027 18.3024 21.75L16.5575 21.2908C13.0066 22.8403 10.1876 25.7026 8.69394 29.2842C8.62888 29.4433 8.50907 29.581 8.34441 29.6662C7.9765 29.8565 7.52398 29.7125 7.33368 29.3446C4.54902 23.9609 9.38882 18.0114 14.9953 19.2195L14.206 18.1461C10.7853 13.4939 3.69268 14.8527 1.99985 20.0559L6.36595 19.2621C6.77349 19.188 7.16392 19.4583 7.23802 19.8658C7.31212 20.2734 7.04181 20.6638 6.63428 20.7379L1.15145 21.7348C1.06347 21.7529 0.97073 21.7555 0.876818 21.7398C0.46824 21.6717 0.192225 21.2853 0.260322 20.8767C1.48966 13.5007 10.9847 11.233 15.4145 17.2575L15.8378 17.8332ZM21.171 19.7422C23.5794 19.3897 26.3756 19.751 28.3998 22.45C29.2525 23.5871 29.5929 24.6033 29.6607 25.473C29.7287 26.3463 29.5256 27.1236 29.213 27.7838C28.962 28.3136 28.6432 28.7617 28.3478 29.1103C26.7877 24.828 23.2375 21.5364 18.7942 20.3288C19.475 20.0952 20.2899 19.8711 21.171 19.7422ZM14.4828 20.649C11.808 22.1489 9.60164 24.3648 8.11309 27.0469C7.45572 23.3988 10.7155 19.9862 14.4828 20.649Z" fill="currentColor"/>
12
- <path d="M17.2473 23.435C17.2125 23.035 16.8688 22.7333 16.4676 22.7507C16.0664 22.7681 15.7501 23.0984 15.7501 23.5C15.7501 26.5559 14.6266 30.532 13.1748 34.319C12.8969 35.044 12.6083 35.7587 12.3151 36.455C8.71695 35.4966 4.98188 35 1.19784 35H0.75C0.335786 35 0 35.3358 0 35.75C0 36.1642 0.335786 36.5 0.75 36.5H1.19784C4.77468 36.5 8.30619 36.9597 11.7127 37.8475C10.6704 40.194 9.62459 42.2428 8.84575 43.6336C8.64337 43.995 8.77228 44.452 9.13368 44.6544C9.49509 44.8568 9.95213 44.7279 10.1545 44.3665C11.3369 42.2551 13.1028 38.6974 14.5754 34.856C14.9772 33.8079 15.3598 32.732 15.7036 31.6534C15.1709 37.6486 13.7106 42.8407 12.7993 45.233C12.6518 45.6201 12.8461 46.0534 13.2331 46.2009C13.6202 46.3483 14.0535 46.1541 14.201 45.767C14.7337 44.3686 15.4411 42.0734 16.0558 39.237C21.0859 41.1553 25.7417 44.0464 29.7367 47.7968C30.0387 48.0803 30.5133 48.0653 30.7968 47.7633C31.0803 47.4613 31.0653 46.9867 30.7633 46.7032C26.5636 42.7606 21.6589 39.7346 16.3594 37.7482C17.1557 33.5839 17.6877 28.499 17.2473 23.435Z" fill="currentColor"/>
13
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M18.7161 15.8032C17.4549 15.0401 17.9663 13.0009 19.4188 13.0009H28.5812C30.0337 13.0009 30.5451 15.0401 29.2839 15.8032L24.7027 18.5756C24.2673 18.8391 23.7327 18.8391 23.2973 18.5756L18.7161 15.8032Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6 0.750885C6 0.336671 6.33579 0.00088501 6.75 0.00088501H41.25C41.6642 0.00088501 42 0.336671 42 0.750885C42 1.1651 41.6642 1.50089 41.25 1.50089H40V11.7343C40 13.7709 38.9669 15.6686 37.2562 16.7738L28.0212 22.7411C27.1067 23.3321 27.1067 24.6699 28.0212 25.2609L37.2562 31.2282C38.9669 32.3334 40 34.231 40 36.2677V46.5009H41.25C41.6642 46.5009 42 46.8367 42 47.2509C42 47.6651 41.6642 48.0009 41.25 48.0009H6.75C6.33579 48.0009 6 47.6651 6 47.2509C6 46.8367 6.33579 46.5009 6.75 46.5009H8V36.2677C8 34.231 9.03308 32.3334 10.7437 31.2282L19.9788 25.2609C20.8933 24.6699 20.8933 23.3321 19.9788 22.7411L10.7437 16.7738C9.03308 15.6686 8 13.7709 8 11.7343V1.50089H6.75C6.33579 1.50089 6 1.1651 6 0.750885ZM13 46.5009H9.5V36.2677C9.5 34.7402 10.2749 33.3169 11.5578 32.488L20.7929 26.5207C22.6219 25.3388 22.6218 22.6632 20.7929 21.4812L11.5578 15.5139C10.2748 14.685 9.5 13.2618 9.5 11.7343V1.50089H38.5V11.7343C38.5 13.2618 37.7251 14.6851 36.4421 15.5139L27.2071 21.4813C25.3781 22.6632 25.3782 25.3388 27.2071 26.5208L36.4422 32.4881C37.7252 33.317 38.5 34.7402 38.5 36.2677V46.5009H35L25.5889 34.874C24.6044 33.7099 23.3955 33.7099 22.4111 34.874L13 46.5009Z" fill="currentColor"/>
4
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M6.5 14.5V10.995C6.5 10.75 6.75 10.5 7 10.5H9C9.25 10.5 9.5 10.75 9.5 11V14.5C9.5 14.6326 9.55268 14.7598 9.64645 14.8535C9.74022 14.9473 9.86739 15 10 15H14C14.1326 15 14.2598 14.9473 14.3536 14.8535C14.4473 14.7598 14.5 14.6326 14.5 14.5V7.49998C14.5001 7.43427 14.4873 7.36919 14.4622 7.30845C14.4372 7.24771 14.4004 7.1925 14.354 7.14598L13 5.79298V2.49998C13 2.36737 12.9473 2.24019 12.8536 2.14643C12.7598 2.05266 12.6326 1.99998 12.5 1.99998H11.5C11.3674 1.99998 11.2402 2.05266 11.1464 2.14643C11.0527 2.24019 11 2.36737 11 2.49998V3.79298L8.354 1.14598C8.30756 1.09942 8.25238 1.06247 8.19163 1.03727C8.13089 1.01206 8.06577 0.999084 8 0.999084C7.93423 0.999084 7.86911 1.01206 7.80837 1.03727C7.74762 1.06247 7.69245 1.09942 7.646 1.14598L1.646 7.14598C1.5996 7.1925 1.56282 7.24771 1.53777 7.30845C1.51272 7.36919 1.49988 7.43427 1.5 7.49998V14.5C1.5 14.6326 1.55268 14.7598 1.64645 14.8535C1.74022 14.9473 1.86739 15 2 15H6C6.13261 15 6.25979 14.9473 6.35355 14.8535C6.44732 14.7598 6.5 14.6326 6.5 14.5Z" fill="currentColor"/>
3
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_793)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24 24.5344C26.7614 24.5344 29 22.2958 29 19.5344C29 16.773 26.7614 14.5344 24 14.5344C21.2386 14.5344 19 16.773 19 19.5344C19 22.2958 21.2386 24.5344 24 24.5344ZM24 23.0344C25.933 23.0344 27.5 21.4674 27.5 19.5344C27.5 17.6014 25.933 16.0344 24 16.0344C22.067 16.0344 20.5 17.6014 20.5 19.5344C20.5 21.4674 22.067 23.0344 24 23.0344Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6 26.5344V41.5344H15V26.5344H6ZM13.5 28.0344H7.5V33.2844H13.5V28.0344ZM7.5 40.0344V34.7844H13.5V40.0344H7.5Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33 26.5344V41.5344H42V26.5344H33ZM40.5 28.0344H34.5V33.2844H40.5V28.0344ZM34.5 40.0344V34.7844H40.5V40.0344H34.5Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.80409 4.01908C3.03755 3.14358 3.83045 2.53441 4.73656 2.53441H21.2L23.2689 0.317682C23.6643 -0.105894 24.3357 -0.105894 24.7311 0.317682L26.8 2.53441H43.2634C44.1695 2.53441 44.9624 3.14358 45.1959 4.01908L48 14.5344V46C48 47.1046 47.1046 48 46 48H2C0.895431 48 0 47.1046 0 46V14.5344L2.80409 4.01908ZM10 14.5344H1.55242L4.25344 4.40558C4.31181 4.1867 4.51003 4.03441 4.73656 4.03441H19.8L10 14.5344ZM46.4476 14.5344L43.7466 4.40558C43.6882 4.1867 43.49 4.03441 43.2634 4.03441H28.2L38 14.5344H46.4476ZM28 46.5H46C46.2761 46.5 46.5 46.2761 46.5 46V16.0344H37.3482L24 1.7328L10.6518 16.0344H1.5V46C1.5 46.2761 1.72386 46.5 2 46.5H20V33.5344H28V46.5ZM26.5 46.5V35.0344H21.5V46.5H26.5Z" fill="currentColor"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_100_793">
10
- <rect width="48" height="48" fill="white"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
@@ -1,6 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20 16.5C20 19.5376 17.5376 22 14.5 22C11.4624 22 9 19.5376 9 16.5C9 13.4624 11.4624 11 14.5 11C17.5376 11 20 13.4624 20 16.5ZM18.5 16.5C18.5 18.7091 16.7091 20.5 14.5 20.5C12.2909 20.5 10.5 18.7091 10.5 16.5C10.5 14.2909 12.2909 12.5 14.5 12.5C16.7091 12.5 18.5 14.2909 18.5 16.5Z" fill="currentColor"/>
3
- <path d="M36.25 16.001C36.6642 16.001 37 16.3368 37 16.751C37 17.1652 36.6642 17.501 36.25 17.501H27.75C27.3358 17.501 27 17.1652 27 16.751C27 16.3368 27.3358 16.001 27.75 16.001H36.25Z" fill="currentColor"/>
4
- <path d="M33.25 22.001C33.6642 22.001 34 22.3368 34 22.751C34 23.1652 33.6642 23.501 33.25 23.501H27.75C27.3358 23.501 27 23.1652 27 22.751C27 22.3368 27.3358 22.001 27.75 22.001H33.25Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2 6C0.895431 6 0 6.89543 0 8V33C0 34.1046 0.89543 35 2 35H6V39C6 40.1046 6.89543 41 8 41H46C47.1046 41 48 40.1046 48 39V14C48 12.8954 47.1046 12 46 12H42V8C42 6.89543 41.1046 6 40 6H2ZM21.5 31.5V33.5H7.5V31.5C7.5 27.634 10.634 24.5 14.5 24.5C18.366 24.5 21.5 27.634 21.5 31.5ZM23 31.5V33.5H40C40.2761 33.5 40.5 33.2761 40.5 33V8C40.5 7.72386 40.2761 7.5 40 7.5H2C1.72386 7.5 1.5 7.72386 1.5 8V33C1.5 33.2761 1.72386 33.5 2 33.5H6V31.5C6 26.8056 9.80558 23 14.5 23C19.1944 23 23 26.8056 23 31.5ZM7.5 39V35H40C41.1046 35 42 34.1046 42 33V13.5H46C46.2761 13.5 46.5 13.7239 46.5 14V39C46.5 39.2761 46.2761 39.5 46 39.5H8C7.72386 39.5 7.5 39.2761 7.5 39Z" fill="currentColor"/>
6
- </svg>
@@ -1,9 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20 22.5009C20 25.5384 17.5376 28.0009 14.5 28.0009C11.4624 28.0009 9 25.5384 9 22.5009C9 19.4633 11.4624 17.0009 14.5 17.0009C17.5376 17.0009 20 19.4633 20 22.5009ZM18.5 22.5009C18.5 24.71 16.7091 26.5009 14.5 26.5009C12.2909 26.5009 10.5 24.71 10.5 22.5009C10.5 20.2917 12.2909 18.5009 14.5 18.5009C16.7091 18.5009 18.5 20.2917 18.5 22.5009Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 39.0009C0 40.1054 0.895431 41.0009 2 41.0009H46C47.1046 41.0009 48 40.1054 48 39.0009V9.00085C48 7.89628 47.1046 7.00085 46 7.00085H2C0.895432 7.00085 0 7.89629 0 9.00085V39.0009ZM2 8.50085C1.72386 8.50085 1.5 8.72471 1.5 9.00085V39.0009C1.5 39.277 1.72386 39.5009 2 39.5009H6V37.5009C6 32.8064 9.80558 29.0009 14.5 29.0009C19.1944 29.0009 23 32.8064 23 37.5009V39.5009H46C46.2761 39.5009 46.5 39.277 46.5 39.0009V9.00085C46.5 8.72471 46.2761 8.50085 46 8.50085H2ZM21.5 39.5009V37.5009C21.5 33.6349 18.366 30.5009 14.5 30.5009C10.634 30.5009 7.5 33.6349 7.5 37.5009V39.5009H21.5Z" fill="currentColor"/>
4
- <path d="M34.25 30.5009C34.6642 30.5009 35 30.8366 35 31.2509C35 31.6651 34.6642 32.0009 34.25 32.0009H27.75C27.3358 32.0009 27 31.6651 27 31.2509C27 30.8366 27.3358 30.5009 27.75 30.5009H34.25Z" fill="currentColor"/>
5
- <path d="M43 35.2509C43 35.6651 42.6642 36.0009 42.25 36.0009H27.75C27.3358 36.0009 27 35.6651 27 35.2509C27 34.8366 27.3358 34.5009 27.75 34.5009H42.25C42.6642 34.5009 43 34.8366 43 35.2509Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33 25.5009C36.5899 25.5009 39.5 22.5907 39.5 19.0009C39.5 15.411 36.5899 12.5009 33 12.5009C29.4101 12.5009 26.5 15.411 26.5 19.0009C26.5 22.5907 29.4101 25.5009 33 25.5009ZM41 19.0009C41 23.4191 37.4183 27.0009 33 27.0009C28.5817 27.0009 25 23.4191 25 19.0009C25 14.5826 28.5817 11.0009 33 11.0009C37.4183 11.0009 41 14.5826 41 19.0009Z" fill="currentColor"/>
7
- <path d="M34.2402 18.1321L34.1285 18.0204L31 18.188V18.6349C31.1676 18.6908 31.2793 18.6908 31.4469 18.7467C31.6145 18.8025 31.7263 18.8584 31.7821 18.9143C31.8939 18.9701 32.0056 19.0819 32.0615 19.1936L32.0615 19.1936C32.1173 19.3053 32.1732 19.4171 32.1732 19.5847V22.3277C32.1732 22.4953 32.1173 22.607 32.0615 22.7187C32.0056 22.8305 31.8939 22.8863 31.7821 22.9422C31.7263 22.9422 31.6145 22.9981 31.5028 22.9981C31.3911 23.0539 31.2793 23.0539 31.1676 23.0539V23.5009H35.2458V23.0539C35.1341 23.0539 35.0223 23.0539 34.9106 22.9981C34.7989 22.9422 34.743 22.9422 34.6313 22.8863C34.5196 22.8305 34.4078 22.7746 34.352 22.6629C34.2961 22.5511 34.2402 22.4394 34.2402 22.2718V18.1321Z" fill="currentColor"/>
8
- <path d="M33.905 14.836C33.6816 14.6126 33.3464 14.5009 33.0112 14.5009C32.676 14.5009 32.3408 14.6126 32.1173 14.836C31.838 15.0595 31.7263 15.3388 31.7263 15.674C31.7263 16.0092 31.838 16.2886 32.1173 16.512C32.3408 16.7355 32.676 16.8472 33.0112 16.8472C33.3464 16.8472 33.6257 16.7355 33.905 16.512C34.1844 16.2886 34.2961 16.0092 34.2961 15.674C34.2961 15.3388 34.1285 15.0595 33.905 14.836Z" fill="currentColor"/>
9
- </svg>
@@ -1,6 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M34.25 17.5009C34.6642 17.5009 35 17.8366 35 18.2509C35 18.6651 34.6642 19.0009 34.25 19.0009H26.75C26.3358 19.0009 26 18.6651 26 18.2509C26 17.8366 26.3358 17.5009 26.75 17.5009H34.25Z" fill="currentColor"/>
3
- <path d="M43 22.2509C43 22.6651 42.6642 23.0009 42.25 23.0009H26.75C26.3358 23.0009 26 22.6651 26 22.2509C26 21.8366 26.3358 21.5009 26.75 21.5009H42.25C42.6642 21.5009 43 21.8366 43 22.2509Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20 22.5009C20 25.5384 17.5376 28.0009 14.5 28.0009C11.4624 28.0009 9 25.5384 9 22.5009C9 19.4633 11.4624 17.0009 14.5 17.0009C17.5376 17.0009 20 19.4633 20 22.5009ZM18.5 22.5009C18.5 24.71 16.7091 26.5009 14.5 26.5009C12.2909 26.5009 10.5 24.71 10.5 22.5009C10.5 20.2917 12.2909 18.5009 14.5 18.5009C16.7091 18.5009 18.5 20.2917 18.5 22.5009Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 39.0009C0 40.1054 0.895431 41.0009 2 41.0009H46C47.1046 41.0009 48 40.1054 48 39.0009V9.00085C48 7.89628 47.1046 7.00085 46 7.00085H2C0.895432 7.00085 0 7.89629 0 9.00085V39.0009ZM2 8.50085C1.72386 8.50085 1.5 8.72471 1.5 9.00085V39.0009C1.5 39.277 1.72386 39.5009 2 39.5009H6V37.5009C6 32.8064 9.80558 29.0009 14.5 29.0009C19.1944 29.0009 23 32.8064 23 37.5009V39.5009H46C46.2761 39.5009 46.5 39.277 46.5 39.0009V9.00085C46.5 8.72471 46.2761 8.50085 46 8.50085H2ZM21.5 39.5009V37.5009C21.5 33.6349 18.366 30.5009 14.5 30.5009C10.634 30.5009 7.5 33.6349 7.5 37.5009V39.5009H21.5Z" fill="currentColor"/>
6
- </svg>
@@ -1,9 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.7302 22.5308C22.3182 22.3931 21.6038 22.7665 21.6038 23.1966C21.6038 23.3011 21.6401 23.402 21.7215 23.4686C22.0396 23.7287 23.0638 24.3581 25.5283 24.3581C27.9928 24.3581 29.017 23.7287 29.3351 23.4686C29.4165 23.402 29.4528 23.3011 29.4528 23.1966C29.4528 22.7665 28.7384 22.3931 28.3264 22.5308C27.7203 22.7335 26.823 22.9072 25.5283 22.9072C24.2336 22.9072 23.3363 22.7335 22.7302 22.5308Z" fill="currentColor"/>
3
- <path d="M10.9566 22.5309C10.5447 22.3932 9.83019 22.7665 9.83019 23.1966C9.83019 23.3012 9.86651 23.402 9.94795 23.4686C10.266 23.7287 11.2902 24.3582 13.7547 24.3582C16.2192 24.3582 17.2435 23.7287 17.5615 23.4686C17.6429 23.402 17.6792 23.3012 17.6792 23.1966C17.6792 22.7665 16.9648 22.3932 16.5528 22.5309C15.9467 22.7335 15.0495 22.9072 13.7547 22.9072C12.46 22.9072 11.5628 22.7335 10.9566 22.5309Z" fill="currentColor"/>
4
- <path d="M15.6038 33.6633C15.6038 34.0935 16.3182 34.4668 16.7302 34.3291C17.3363 34.1265 18.2336 33.9527 19.5283 33.9527C20.823 33.9527 21.7203 34.1265 22.3264 34.3291C22.7384 34.4668 23.4528 34.0935 23.4528 33.6633C23.4528 33.5588 23.4165 33.458 23.3351 33.3914C23.017 33.1312 21.9928 32.5018 19.5283 32.5018C17.0638 32.5018 16.0396 33.1312 15.7215 33.3914C15.6401 33.458 15.6038 33.5588 15.6038 33.6633Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M31.6538 4.97167C32.0097 5.09272 32.1619 5.5039 31.9937 5.84C31.9551 5.91718 31.9166 5.99474 31.8783 6.0726C31.756 6.3212 31.4654 6.4372 31.2031 6.34797C30.676 6.16866 30.1805 6.03731 29.801 5.96886C29.7754 5.96425 29.7507 5.95999 29.7269 5.95605C29.7061 6.22861 29.6809 6.5773 29.6546 6.98312C29.5883 8.00407 29.5149 9.38298 29.4855 10.8195C29.4561 12.2596 29.4715 13.7408 29.5793 14.9718C29.6333 15.5879 29.7091 16.1249 29.8087 16.5549C29.9124 17.0024 30.0262 17.2619 30.1146 17.3821C30.698 18.1749 31.7203 18.7196 32.6884 19.0679C33.0913 19.2129 33.4651 19.3169 33.7606 19.3883C33.9653 18.5138 34.1757 17.5306 34.3555 16.508C34.4198 16.1424 34.7823 15.9092 35.1506 15.9559C35.534 16.0044 35.8316 16.3464 35.7642 16.727C35.5318 18.0409 35.2378 19.3444 34.924 20.6404C36.7853 21.1496 38.1599 22.8831 38.1599 24.9387C38.1599 27.1973 36.5003 29.0671 34.359 29.3512C33.836 32.4307 32.3997 35.2667 30.1868 37.522C27.354 40.4092 23.5876 41.9996 19.5814 42H19.58C15.5687 42 11.7974 40.3848 8.96044 37.4517C6.78767 35.2052 5.36653 32.3979 4.82585 29.3544C2.67242 29.0817 1 27.2062 1 24.9388C1 22.7586 2.54637 20.9408 4.57955 20.5617V17.3298C3.62497 17.0958 2.8082 16.8316 2.19595 16.5404L1.8099 16.3568L1.78627 15.9232C1.60795 12.6518 2.18413 9.5532 3.65733 6.94452C5.13529 4.32743 7.49145 2.24828 10.7891 0.990667C11.7917 0.608314 13.3758 0.303335 15.1703 0.1376C16.9779 -0.0293487 19.0513 -0.0597633 21.0522 0.132378C23.0446 0.323706 25.0104 0.739838 26.5752 1.4942C27.9424 2.15331 29.0834 3.11348 29.5889 4.4769C29.7348 4.48923 29.8904 4.51149 30.0491 4.54011C30.5137 4.62393 31.0785 4.77595 31.6538 4.97167ZM6.15443 17.6667V26.559C6.15443 30.2378 7.54927 33.706 10.082 36.3247C12.6204 38.9491 15.9939 40.3946 19.58 40.3946H19.5814C23.167 40.3942 26.5379 38.9709 29.0733 36.3868C31.6091 33.8023 33.0055 30.366 33.0055 26.7108V20.6887C32.7634 20.6206 32.4957 20.5373 32.2146 20.4361C31.1661 20.0589 29.8158 19.3944 28.9757 18.2526C28.7082 17.8891 28.5402 17.393 28.4233 16.8883C28.3023 16.3661 28.2187 15.7544 28.1614 15.1009C28.1086 14.4983 28.0771 13.8461 28.0614 13.175C27.3099 14.4885 26.1974 15.7294 24.552 16.6868C22.5863 17.8305 19.9059 18.5431 16.2582 18.5431C13.5621 18.5431 10.6829 18.3393 8.17353 17.9924C7.47328 17.8955 6.79558 17.7868 6.15443 17.6667ZM15.2987 1.58263C13.5531 1.74386 12.1154 2.03404 11.288 2.3496C8.28097 3.49638 6.19398 5.3613 4.89112 7.66834C3.64787 9.86984 3.09646 12.5145 3.18823 15.3937C4.32833 15.8424 6.16643 16.2506 8.3649 16.5546C10.8109 16.8928 13.626 17.0921 16.2582 17.0921C19.7285 17.0921 22.1492 16.4141 23.8463 15.4267C25.5356 14.4438 26.5531 13.1283 27.1805 11.7659C27.8129 10.3925 28.0538 8.96003 28.1614 7.75377C28.2066 7.24607 28.2277 6.78836 28.2462 6.38684L28.251 6.28307L28.2566 6.16385C28.2672 5.94234 28.2788 5.73235 28.2964 5.55139C28.3058 5.45413 28.3184 5.34826 28.3379 5.24327C28.0661 4.23726 27.2579 3.42842 25.9665 2.80583C24.6118 2.15273 22.8295 1.76043 20.9186 1.57693C19.0163 1.39424 17.0313 1.42261 15.2987 1.58263ZM2.57487 24.9387C2.57487 23.6482 3.42232 22.5563 4.57955 22.2089V26.5591C4.57955 26.9349 4.59276 27.3086 4.61871 27.6799C3.44155 27.3455 2.57487 26.2437 2.57487 24.9387ZM34.55 27.6773C34.5695 27.3569 34.5805 27.0347 34.5805 26.7109V22.2089C35.7377 22.5563 36.585 23.6482 36.585 24.9387C36.585 26.2403 35.7228 27.34 34.55 27.6773Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M37.0977 3.68627L36.2629 2.24405C36.0703 1.91136 35.59 1.91136 35.3975 2.24405L34.5626 3.68627C33.9148 4.80551 32.8817 6.67553 32.2528 8.22609C32.0769 8.65962 31.9357 9.06071 31.8363 9.41659C31.7437 9.7478 31.6604 10.1322 31.6604 10.5C31.6604 12.8472 33.5273 14.75 35.8302 14.75C38.1331 14.75 40 12.8472 40 10.5C40 10.1322 39.9167 9.7478 39.8241 9.41659C39.7247 9.06071 39.5835 8.65962 39.4076 8.22609C38.7787 6.67553 37.7456 4.80551 37.0977 3.68627ZM38.0476 8.79915C37.6843 7.90347 37.1672 6.8747 36.6733 5.95708C36.3698 5.39338 36.0751 4.87163 35.8302 4.44846C35.5852 4.87163 35.2905 5.39338 34.9871 5.95708C34.4932 6.87469 33.9761 7.90347 33.6128 8.79915C33.2908 9.5932 33.1321 10.1804 33.1321 10.5C33.1321 12.0188 34.3401 13.25 35.8302 13.25C37.3203 13.25 38.5283 12.0188 38.5283 10.5C38.5283 10.1804 38.3696 9.5932 38.0476 8.79915Z" fill="currentColor"/>
7
- <path d="M42 32C42.1989 32 42.3897 32.079 42.5303 32.2197C42.671 32.3603 42.75 32.5511 42.75 32.75V40.615C43.3201 40.7942 43.8071 41.1716 44.123 41.6788C44.4389 42.1861 44.5627 42.7896 44.4721 43.3803C44.3814 43.9709 44.0823 44.5096 43.6288 44.8988C43.1754 45.2879 42.5976 45.5019 42 45.5019C41.4024 45.5019 40.8246 45.2879 40.3712 44.8988C39.9177 44.5096 39.6186 43.9709 39.5279 43.3803C39.4373 42.7896 39.5611 42.1861 39.877 41.6788C40.1929 41.1716 40.6799 40.7942 41.25 40.615V32.75C41.25 32.5511 41.329 32.3603 41.4697 32.2197C41.6103 32.079 41.8011 32 42 32Z" fill="currentColor"/>
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M42 26C42.83 25.9999 43.6285 26.3174 44.2319 26.8873C44.8353 27.4572 45.1978 28.2364 45.245 29.065L45.25 29.25L45.251 39.202L45.331 39.271C46.2629 40.1018 46.8495 41.2518 46.975 42.494L46.994 42.746L47 43C47.0001 43.8238 46.7967 44.6349 46.4079 45.3612C46.019 46.0874 45.4567 46.7063 44.7709 47.1629C44.0852 47.6194 43.2973 47.8994 42.4772 47.9781C41.6572 48.0567 40.8304 47.9315 40.0704 47.6135C39.3104 47.2956 38.6407 46.7948 38.1209 46.1557C37.6011 45.5166 37.2473 44.7589 37.0909 43.9501C36.9345 43.1412 36.9804 42.3063 37.2245 41.5195C37.4686 40.7326 37.9033 40.0183 38.49 39.44L38.67 39.27L38.749 39.202L38.75 29.25C38.7498 28.4513 39.0438 27.6805 39.5757 27.0847C40.1077 26.489 40.8404 26.1099 41.634 26.02L41.816 26.005L42 26ZM42 27.5C41.5606 27.5 41.1374 27.6653 40.8143 27.963C40.4912 28.2608 40.2919 28.6691 40.256 29.107L40.25 29.25V39.944L39.941 40.169C39.3506 40.5984 38.9093 41.2017 38.6788 41.8944C38.4484 42.5871 38.4402 43.3345 38.6556 44.0321C38.871 44.7296 39.2991 45.3423 39.88 45.7845C40.4609 46.2266 41.1656 46.476 41.8953 46.4979C42.625 46.5197 43.3432 46.3127 43.9495 45.9061C44.5558 45.4994 45.0197 44.9133 45.2764 44.2299C45.533 43.5465 45.5696 42.7999 45.3809 42.0947C45.1922 41.3895 44.7877 40.7609 44.224 40.297L44.059 40.17L43.752 39.945L43.75 29.25C43.75 28.7859 43.5656 28.3408 43.2374 28.0126C42.9092 27.6844 42.4641 27.5 42 27.5Z" fill="currentColor"/>
9
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_85_5588)">
3
- <path d="M8 16C10.1217 16 12.1566 15.1571 13.6569 13.6569C15.1571 12.1566 16 10.1217 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.1566 0.842855 10.1217 0 8 0C5.87827 0 3.84344 0.842855 2.34315 2.34315C0.842855 3.84344 0 5.87827 0 8C0 10.1217 0.842855 12.1566 2.34315 13.6569C3.84344 15.1571 5.87827 16 8 16ZM8.93 6.588L7.93 11.293C7.86 11.633 7.959 11.826 8.234 11.826C8.428 11.826 8.721 11.756 8.92 11.58L8.832 11.996C8.545 12.342 7.912 12.594 7.367 12.594C6.664 12.594 6.365 12.172 6.559 11.275L7.297 7.807C7.361 7.514 7.303 7.408 7.01 7.337L6.559 7.256L6.641 6.875L8.93 6.588ZM8 5.5C7.73478 5.5 7.48043 5.39464 7.29289 5.20711C7.10536 5.01957 7 4.76522 7 4.5C7 4.23478 7.10536 3.98043 7.29289 3.79289C7.48043 3.60536 7.73478 3.5 8 3.5C8.26522 3.5 8.51957 3.60536 8.70711 3.79289C8.89464 3.98043 9 4.23478 9 4.5C9 4.76522 8.89464 5.01957 8.70711 5.20711C8.51957 5.39464 8.26522 5.5 8 5.5Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_85_5588">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_85_5585)">
3
- <path d="M8 15C6.14348 15 4.36301 14.2625 3.05025 12.9497C1.7375 11.637 1 9.85652 1 8C1 6.14348 1.7375 4.36301 3.05025 3.05025C4.36301 1.7375 6.14348 1 8 1C9.85652 1 11.637 1.7375 12.9497 3.05025C14.2625 4.36301 15 6.14348 15 8C15 9.85652 14.2625 11.637 12.9497 12.9497C11.637 14.2625 9.85652 15 8 15ZM8 16C10.1217 16 12.1566 15.1571 13.6569 13.6569C15.1571 12.1566 16 10.1217 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.1566 0.842855 10.1217 0 8 0C5.87827 0 3.84344 0.842855 2.34315 2.34315C0.842855 3.84344 0 5.87827 0 8C0 10.1217 0.842855 12.1566 2.34315 13.6569C3.84344 15.1571 5.87827 16 8 16Z" fill="currentColor"/>
4
- <path d="M8.92995 6.588L6.63995 6.875L6.55795 7.255L7.00795 7.338C7.30195 7.408 7.35995 7.514 7.29595 7.807L6.55795 11.275C6.36395 12.172 6.66295 12.594 7.36595 12.594C7.91095 12.594 8.54395 12.342 8.83095 11.996L8.91895 11.58C8.71895 11.756 8.42695 11.826 8.23295 11.826C7.95795 11.826 7.85795 11.633 7.92895 11.293L8.92995 6.588ZM8.99995 4.5C8.99995 4.76522 8.8946 5.01957 8.70706 5.20711C8.51952 5.39464 8.26517 5.5 7.99995 5.5C7.73474 5.5 7.48038 5.39464 7.29285 5.20711C7.10531 5.01957 6.99995 4.76522 6.99995 4.5C6.99995 4.23478 7.10531 3.98043 7.29285 3.79289C7.48038 3.60536 7.73474 3.5 7.99995 3.5C8.26517 3.5 8.51952 3.60536 8.70706 3.79289C8.8946 3.98043 8.99995 4.23478 8.99995 4.5Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_85_5585">
8
- <rect width="16" height="16" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,14 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_1012)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24.25 5.00085C24.6642 5.00085 25 5.33664 25 5.75085C25 6.16507 24.6642 6.50085 24.25 6.50085H6.5C5.94772 6.50085 5.5 6.94857 5.5 7.50085V45.5009C5.5 46.0531 5.94772 46.5009 6.5 46.5009H35.5C36.0523 46.5009 36.5 46.0531 36.5 45.5009V19.7509C36.5 19.3366 36.8358 19.0009 37.25 19.0009C37.6642 19.0009 38 19.3366 38 19.7509V46.0005C38 47.1051 37.1046 48.0005 36 48.0005H6C4.89543 48.0005 4 47.1051 4 46.0005V7.00086C4 5.89629 4.89543 5.00085 6 5.00085H24.25ZM31.389 25.9492C31.8049 25.9492 32.142 26.2864 32.142 26.7022C32.142 27.1181 31.8049 27.4552 31.389 27.4552H10.6851C10.2692 27.4552 9.9321 27.1181 9.9321 26.7022C9.9321 26.2864 10.2692 25.9492 10.6851 25.9492H31.389ZM31.389 19.9137C31.8049 19.9137 32.142 20.2509 32.142 20.6667C32.142 21.0826 31.8049 21.4197 31.389 21.4197H10.6851C10.2692 21.4197 9.9321 21.0826 9.9321 20.6667C9.9321 20.2509 10.2692 19.9137 10.6851 19.9137H31.389ZM15.9446 13.8782C16.3604 13.8782 16.6975 14.2154 16.6975 14.6312C16.6975 15.0471 16.3604 15.3842 15.9446 15.3842H10.6851C10.2692 15.3842 9.9321 15.0471 9.9321 14.6312C9.9321 14.2154 10.2692 13.8782 10.6851 13.8782H15.9446Z" fill="currentColor"/>
4
- <path d="M17.6846 43.3837H31.1787C31.5945 43.3837 31.9316 43.0466 31.9316 42.6308C31.9316 42.2149 31.5945 41.8778 31.1787 41.8778H17.6846C17.2688 41.8778 16.9316 42.2149 16.9316 42.6308C16.9316 43.0466 17.2688 43.3837 17.6846 43.3837Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M35.5 15.5009C39.366 15.5009 42.5 12.3668 42.5 8.50085C42.5 4.63486 39.366 1.50085 35.5 1.50085C31.634 1.50085 28.5 4.63486 28.5 8.50085C28.5 12.3668 31.634 15.5009 35.5 15.5009ZM35.5 17.0009C40.1944 17.0009 44 13.1953 44 8.50085C44 3.80643 40.1944 0.000854492 35.5 0.000854492C30.8056 0.000854492 27 3.80643 27 8.50085C27 13.1953 30.8056 17.0009 35.5 17.0009Z" fill="currentColor"/>
6
- <path d="M36.7402 7.13214L36.6285 7.02041L33.5 7.18801V7.63493C33.6676 7.6908 33.7793 7.6908 33.9469 7.74666C34.1145 7.80253 34.2263 7.8584 34.2821 7.91426C34.3939 7.97013 34.5056 8.08186 34.5615 8.19359C34.6173 8.30532 34.6732 8.41706 34.6732 8.58465V12.3277C34.6732 12.4953 34.6173 12.607 34.5615 12.7187C34.5056 12.8305 34.3939 12.8863 34.2821 12.9422C34.2263 12.9422 34.1145 12.9981 34.0028 12.9981C33.8911 13.0539 33.7793 13.0539 33.6676 13.0539V13.5009H37.7458V13.0539C37.6341 13.0539 37.5223 13.0539 37.4106 12.9981C37.2989 12.9422 37.243 12.9422 37.1313 12.8863C37.0196 12.8305 36.9078 12.7746 36.852 12.6629C36.7961 12.5511 36.7402 12.4394 36.7402 12.2718V7.13214Z" fill="currentColor"/>
7
- <path d="M36.405 3.83605C36.1816 3.61259 35.8464 3.50085 35.5112 3.50085C35.176 3.50085 34.8408 3.61259 34.6173 3.83605C34.338 4.05951 34.2263 4.33884 34.2263 4.67404C34.2263 5.00923 34.338 5.28856 34.6173 5.51203C34.8408 5.73549 35.176 5.84722 35.5112 5.84722C35.8464 5.84722 36.1257 5.73549 36.405 5.51203C36.6844 5.28856 36.7961 5.00923 36.7961 4.67404C36.7961 4.33884 36.6285 4.05951 36.405 3.83605Z" fill="currentColor"/>
8
- </g>
9
- <defs>
10
- <clipPath id="clip0_100_1012">
11
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
12
- </clipPath>
13
- </defs>
14
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M30.341 43.21C30.7401 43.21 31.0395 43.5094 31.1393 43.9085V44.0083V47.2017C31.1393 47.6008 30.8399 47.9002 30.4407 48H30.341H16.7692C16.3701 48 16.0707 47.7006 15.9709 47.3015V47.2017V44.0083C15.9709 43.6091 16.2703 43.21 16.7692 43.21C17.1684 43.21 17.4678 43.5094 17.5676 43.9085V44.0083V46.4033H29.6424V44.0083C29.6424 43.6091 29.9418 43.3098 30.341 43.21ZM23.5551 0C35.4304 0 45.1102 9.67984 45.1102 21.5551C45.1102 33.4304 35.4304 43.1102 23.5551 43.1102C11.6798 43.1102 2 33.4304 2 21.5551C2 9.67984 11.6798 0 23.5551 0ZM23.5551 1.49688C12.4782 1.49688 3.49688 10.4782 3.49688 21.5551C3.49688 32.632 12.4782 41.6133 23.5551 41.6133C34.632 41.6133 43.6133 32.632 43.6133 21.5551C43.6133 10.4782 34.632 1.49688 23.5551 1.49688ZM23.5551 4.98961C32.736 4.98961 40.1206 12.3742 40.1206 21.5551C40.1206 30.736 32.736 38.1206 23.5551 38.1206C14.3742 38.1206 6.9896 30.736 6.9896 21.5551C6.9896 12.3742 14.3742 4.98961 23.5551 4.98961ZM23.5551 6.48649C15.2723 6.48649 8.48649 13.2724 8.48649 21.5551C8.48649 29.8378 15.2723 36.6237 23.5551 36.6237C31.8378 36.6237 38.6237 29.8378 38.6237 21.5551C38.6237 13.2724 31.9376 6.48649 23.5551 6.48649ZM25.4511 18.5613L25.6507 18.7609V27.9418C25.6507 28.2412 25.7505 28.4408 25.8503 28.6403C25.9501 28.8399 26.1497 28.9397 26.3493 29.0395C26.5489 29.1393 26.6486 29.1393 26.8482 29.2391C27.0478 29.3389 27.2474 29.3389 27.447 29.3389V30.1372H20.1622V29.3389C20.3617 29.3389 20.5613 29.3389 20.7609 29.2391C20.9605 29.2391 21.1601 29.1393 21.2599 29.1393C21.4595 29.0395 21.659 28.9397 21.7588 28.7401C21.8586 28.5405 21.9584 28.341 21.9584 28.0416V21.3555C21.9584 21.0561 21.8586 20.8566 21.7588 20.657C21.659 20.4574 21.4595 20.2578 21.2599 20.158C21.1601 20.0582 20.9605 19.9584 20.6611 19.8586C20.3617 19.7588 20.1622 19.7588 19.8628 19.659V18.8607L25.4511 18.5613ZM23.4553 12.2744C24.0541 12.2744 24.6528 12.474 25.052 12.8732C25.4511 13.2723 25.7505 13.7713 25.7505 14.3701C25.7505 14.9688 25.5509 15.4678 25.052 15.8669C24.553 16.2661 24.0541 16.4657 23.4553 16.4657C22.8565 16.4657 22.2578 16.2661 21.8586 15.8669C21.3597 15.4678 21.1601 14.9688 21.1601 14.3701C21.1601 13.7713 21.3597 13.2723 21.8586 12.8732C22.2578 12.474 22.8565 12.2744 23.4553 12.2744Z" fill="currentColor"/>
3
- </svg>
@@ -1,23 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_983)">
3
- <path d="M9 6.75085C9 7.16507 9.33579 7.50085 9.75 7.50085H18.25C18.6642 7.50085 19 7.16507 19 6.75085C19 6.33664 18.6642 6.00085 18.25 6.00085H9.75C9.33579 6.00085 9 6.33664 9 6.75085Z" fill="currentColor"/>
4
- <path d="M9 10.7509C9 11.1651 9.33579 11.5009 9.75 11.5009H18.25C18.6642 11.5009 19 11.1651 19 10.7509C19 10.3366 18.6642 10.0009 18.25 10.0009H9.75C9.33579 10.0009 9 10.3366 9 10.7509Z" fill="currentColor"/>
5
- <path d="M16 14.7509C16 15.1651 15.6642 15.5009 15.25 15.5009H9.75C9.33579 15.5009 9 15.1651 9 14.7509C9 14.3366 9.33579 14.0009 9.75 14.0009H15.25C15.6642 14.0009 16 14.3366 16 14.7509Z" fill="currentColor"/>
6
- <path d="M18.5 20.0009H21.5V23.0009H18.5V20.0009Z" fill="currentColor"/>
7
- <path d="M18.5 25.0009H21.5V28.0009H18.5V25.0009Z" fill="currentColor"/>
8
- <path d="M29.5 10.0009H26.5V13.0009H29.5V10.0009Z" fill="currentColor"/>
9
- <path d="M34.5 10.0009H31.5V13.0009H34.5V10.0009Z" fill="currentColor"/>
10
- <path d="M29.5 15.0009H26.5V18.0009H29.5V15.0009Z" fill="currentColor"/>
11
- <path d="M29.5 20.0009H26.5V23.0009H29.5V20.0009Z" fill="currentColor"/>
12
- <path d="M29.5 25.0009H26.5V28.0009H29.5V25.0009Z" fill="currentColor"/>
13
- <path d="M34.5 15.0009H31.5V18.0009H34.5V15.0009Z" fill="currentColor"/>
14
- <path d="M34.5 20.0009H31.5V23.0009H34.5V20.0009Z" fill="currentColor"/>
15
- <path d="M34.5 25.0009H31.5V28.0009H34.5V25.0009Z" fill="currentColor"/>
16
- <path fill-rule="evenodd" clip-rule="evenodd" d="M41 16.0009V2.00085C41 0.896285 40.1046 0.000854492 39 0.000854492H7C5.89543 0.000854492 5 0.896285 5 2.00085V16.0009H2C0.895431 16.0009 0 16.8963 0 18.0009V46.0009C0 47.1054 0.89543 48.0009 2 48.0009H43.3057C44.2834 48.0009 45.1178 47.294 45.2785 46.3297L47.6119 32.3297C47.815 31.1106 46.875 30.0009 45.6391 30.0009H45V18.0009C45 16.8963 44.1046 16.0009 43 16.0009H41ZM6.5 27.0009H15V17.0009H23V6.00085H26V5.00085H35V6.00085H38V30.0009H39.5V2.00085C39.5 1.72471 39.2761 1.50085 39 1.50085H7C6.72386 1.50085 6.5 1.72471 6.5 2.00085V27.0009ZM23 30.0009H18.25L16.5 27.0009V18.5009H23V30.0009ZM36.5 30.0009H24.5V7.50085H36.5V30.0009ZM41 30.0009H43.5V18.0009C43.5 17.7247 43.2761 17.5009 43 17.5009H41V30.0009ZM5 17.5009H2C1.72386 17.5009 1.5 17.7247 1.5 18.0009V37.5009L2.75469 28.718C2.89545 27.7327 3.73929 27.0009 4.73459 27.0009H5V17.5009ZM46.1323 32.0831C46.1831 31.7783 45.9481 31.5009 45.6391 31.5009H17.3884L15.7831 28.7489C15.6935 28.5953 15.5291 28.5009 15.3513 28.5009H4.73459C4.48577 28.5009 4.27481 28.6838 4.23962 28.9301L1.81104 45.9301C1.76801 46.2314 2.00174 46.5009 2.30602 46.5009H43.7293L46.1323 32.0831Z" fill="currentColor"/>
17
- </g>
18
- <defs>
19
- <clipPath id="clip0_100_983">
20
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
21
- </clipPath>
22
- </defs>
23
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_832)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M23.25 2.00092C23.25 0.896346 24.1454 0.000915527 25.25 0.000915527H33.5765C35.0239 0.000915527 35.992 1.49062 35.4042 2.81319L34.5153 4.81319C34.1943 5.53545 33.478 6.00092 32.6877 6.00092H24.75V9.06144L40.6409 18.0001H43.694C44.9111 18.0001 45.846 19.078 45.6739 20.2829L45.2453 23.2829C45.1046 24.2682 44.2453 25.0001 43.25 25.0001V40.0001C44.2498 40.0001 45.0931 40.7445 45.2171 41.7365L45.719 45.752C45.8682 46.9457 44.9374 48.0001 43.7344 48.0001H4.26556C3.06257 48.0001 2.1318 46.9457 2.28101 45.752L2.78294 41.7365C2.90694 40.7445 3.75025 40.0001 4.75 40.0001V25.0001C3.7547 25.0001 2.89545 24.2682 2.75469 23.2829L2.32612 20.2829C2.154 19.078 3.08892 18.0001 4.30602 18.0001H6.85041L23.25 9.05483V2.00092ZM9.9829 18.0001H37.5813L23.9944 10.3574L9.9829 18.0001ZM24.75 4.50092H32.6877C32.8853 4.50092 33.0643 4.38455 33.1446 4.20398L34.0335 2.20398C34.1804 1.87334 33.9384 1.50092 33.5765 1.50092H25.25C24.9739 1.50092 24.75 1.72477 24.75 2.00092V4.50092ZM41.75 40.0001V25.0001H40.25V40.0001H41.75ZM23.25 25.0001H24.75V40.0001H23.25V25.0001ZM26.25 40.0001V25.0001H30.25V40.0001H26.25ZM31.75 40.0001H33.25V25.0001H31.75V40.0001ZM38.75 40.0001H34.75V25.0001H38.75V40.0001ZM21.75 40.0001V25.0001H17.75V40.0001H21.75ZM16.25 40.0001H14.75V25.0001H16.25V40.0001ZM9.25 25.0001H13.25V40.0001H9.25V25.0001ZM7.75 40.0001H6.25V25.0001H7.75V40.0001ZM4.73459 23.5001C4.48577 23.5001 4.27481 23.3171 4.23962 23.0708L3.81104 20.0708C3.76801 19.7696 4.00174 19.5001 4.30602 19.5001H43.694C43.9983 19.5001 44.232 19.7696 44.189 20.0708L43.7604 23.0708C43.7252 23.3171 43.5142 23.5001 43.2654 23.5001H4.73459ZM4.26556 46.5001C3.96482 46.5001 3.73212 46.2365 3.76943 45.938L4.26943 41.938C4.3007 41.6878 4.5134 41.5001 4.76556 41.5001H43.2344C43.4866 41.5001 43.6993 41.6878 43.7306 41.938L44.2306 45.938C44.2679 46.2365 44.0352 46.5001 43.7344 46.5001H4.26556Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_100_832">
7
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1,4 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M33.6412 30.5806C33.3483 30.2877 32.8734 30.2877 32.5806 30.5806C32.2877 30.8735 32.2877 31.3484 32.5806 31.6412L35.9393 35L32.5806 38.3588C32.2877 38.6516 32.2877 39.1265 32.5806 39.4194C32.8734 39.7123 33.3483 39.7123 33.6412 39.4194L37 36.0607L40.3587 39.4194C40.6516 39.7123 41.1265 39.7123 41.4194 39.4194C41.7123 39.1265 41.7123 38.6516 41.4194 38.3588L38.0606 35L41.4194 31.6412C41.7123 31.3484 41.7123 30.8735 41.4194 30.5806C41.1265 30.2877 40.6516 30.2877 40.3587 30.5806L37 33.9393L33.6412 30.5806Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.25 6.5V8H3C1.34315 8 0 9.34315 0 11V33C0 34.6569 1.34315 36 3 36H26.0448C26.5501 41.6065 31.262 46 37 46C43.0751 46 48 41.0751 48 35C48 29.262 43.6065 24.5501 38 24.0448V11C38 9.34315 36.6569 8 35 8H29.75V6.5C29.75 4.42893 28.0711 2.75 26 2.75H12C9.92893 2.75 8.25 4.42893 8.25 6.5ZM36.5 24.0112V19.8101L31.75 20.3379V23C31.75 23.4142 31.4142 23.75 31 23.75C30.5858 23.75 30.25 23.4142 30.25 23V20.5046L19.0001 21.7546L7.75 20.5046V23C7.75 23.4142 7.41421 23.75 7 23.75C6.58579 23.75 6.25 23.4142 6.25 23V20.3379L1.5 19.8101V33C1.5 33.8284 2.17157 34.5 3 34.5H26.0112C26.2651 28.8227 30.8227 24.2651 36.5 24.0112ZM12 4.25C10.7574 4.25 9.75 5.25736 9.75 6.5V8H28.25V6.5C28.25 5.25736 27.2426 4.25 26 4.25H12ZM35 9.5H3C2.17157 9.5 1.5 10.1716 1.5 11V18.3009L6.25 18.8287V17C6.25 16.5858 6.58579 16.25 7 16.25C7.41421 16.25 7.75 16.5858 7.75 17V18.9953L19.0001 20.2453L30.25 18.9953V17C30.25 16.5858 30.5858 16.25 31 16.25C31.4142 16.25 31.75 16.5858 31.75 17V18.8287L36.5 18.3009V11C36.5 10.1716 35.8284 9.5 35 9.5ZM37 44.5C42.2467 44.5 46.5 40.2467 46.5 35C46.5 29.7533 42.2467 25.5 37 25.5C31.7533 25.5 27.5 29.7533 27.5 35C27.5 40.2467 31.7533 44.5 37 44.5Z" fill="currentColor"/>
4
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10.25 7.75092V10.0001H4C1.79086 10.0001 0 11.7909 0 14.0001V41.0001C0 43.2092 1.79086 45.0001 4 45.0001H44C46.2091 45.0001 48 43.2092 48 41.0001V14.0001C48 11.7909 46.2091 10.0001 44 10.0001H37.75V7.75092C37.75 5.12756 35.6234 3.00092 33 3.00092H15C12.3766 3.00092 10.25 5.12756 10.25 7.75092ZM15 4.50092C13.2051 4.50092 11.75 5.95599 11.75 7.75092V10.0001H36.25V7.75092C36.25 5.95599 34.7949 4.50092 33 4.50092H15ZM4 11.5001H44C45.3807 11.5001 46.5 12.6193 46.5 14.0001V22.8L40 23.5065V20.7501C40 20.3358 39.6642 20.0001 39.25 20.0001C38.8358 20.0001 38.5 20.3358 38.5 20.7501V23.6696L24 25.2456L9.5 23.6696V20.7501C9.5 20.3358 9.16421 20.0001 8.75 20.0001C8.33579 20.0001 8 20.3358 8 20.7501V23.5065L1.5 22.8V14.0001C1.5 12.6193 2.61929 11.5001 4 11.5001ZM8 25.0154L1.5 24.3088V41.0001C1.5 42.3808 2.61929 43.5001 4 43.5001H44C45.3807 43.5001 46.5 42.3808 46.5 41.0001V24.3088L40 25.0154V28.2501C40 28.6643 39.6642 29.0001 39.25 29.0001C38.8358 29.0001 38.5 28.6643 38.5 28.2501V25.1784L24 26.7545L9.5 25.1784V28.2501C9.5 28.6643 9.16421 29.0001 8.75 29.0001C8.33579 29.0001 8 28.6643 8 28.2501V25.0154Z" fill="currentColor"/>
3
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_85_5427)">
3
- <path d="M2.00001 6.00001C1.99997 5.00922 2.2453 4.03384 2.71409 3.16097C3.18287 2.2881 3.86051 1.5449 4.68651 0.997743C5.51251 0.450581 6.46115 0.116486 7.44774 0.0252893C8.43432 -0.0659077 9.42813 0.0886321 10.3404 0.47511C11.2527 0.861587 12.0551 1.46797 12.676 2.24012C13.2968 3.01227 13.7168 3.92615 13.8984 4.90015C14.08 5.87416 14.0175 6.87797 13.7166 7.82197C13.4157 8.76596 12.8858 9.62075 12.174 10.31C11.971 10.506 11.815 10.71 11.721 10.929L10.959 12.698C10.9203 12.7877 10.8563 12.864 10.7747 12.9177C10.6931 12.9714 10.5976 13 10.5 13H5.50001C5.4022 13.0002 5.30649 12.9717 5.22472 12.918C5.14296 12.8643 5.07874 12.7878 5.04001 12.698L4.27901 10.928C4.16925 10.6947 4.01542 10.4849 3.82601 10.31C3.24745 9.75131 2.78753 9.08165 2.47378 8.34109C2.16003 7.60053 1.99889 6.80429 2.00001 6.00001ZM5.00001 14.5C5.00001 14.3674 5.05268 14.2402 5.14645 14.1465C5.24022 14.0527 5.3674 14 5.50001 14H10.5C10.6326 14 10.7598 14.0527 10.8536 14.1465C10.9473 14.2402 11 14.3674 11 14.5C11 14.6326 10.9473 14.7598 10.8536 14.8536C10.7598 14.9473 10.6326 15 10.5 15L10.276 15.447C10.193 15.6131 10.0654 15.7528 9.90753 15.8505C9.74964 15.9481 9.56767 15.9999 9.38201 16H6.61801C6.43234 15.9999 6.25038 15.9481 6.09248 15.8505C5.93458 15.7528 5.807 15.6131 5.72401 15.447L5.50001 15C5.3674 15 5.24022 14.9473 5.14645 14.8536C5.05268 14.7598 5.00001 14.6326 5.00001 14.5Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_85_5427">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 12C2.5 11.8674 2.55268 11.7402 2.64645 11.6464C2.74021 11.5527 2.86739 11.5 3 11.5H13C13.1326 11.5 13.2598 11.5527 13.3536 11.6464C13.4473 11.7402 13.5 11.8674 13.5 12C13.5 12.1326 13.4473 12.2598 13.3536 12.3536C13.2598 12.4473 13.1326 12.5 13 12.5H3C2.86739 12.5 2.74021 12.4473 2.64645 12.3536C2.55268 12.2598 2.5 12.1326 2.5 12ZM2.5 8C2.5 7.86739 2.55268 7.74021 2.64645 7.64645C2.74021 7.55268 2.86739 7.5 3 7.5H13C13.1326 7.5 13.2598 7.55268 13.3536 7.64645C13.4473 7.74021 13.5 7.86739 13.5 8C13.5 8.13261 13.4473 8.25979 13.3536 8.35355C13.2598 8.44732 13.1326 8.5 13 8.5H3C2.86739 8.5 2.74021 8.44732 2.64645 8.35355C2.55268 8.25979 2.5 8.13261 2.5 8ZM2.5 4C2.5 3.86739 2.55268 3.74021 2.64645 3.64645C2.74021 3.55268 2.86739 3.5 3 3.5H13C13.1326 3.5 13.2598 3.55268 13.3536 3.64645C13.4473 3.74021 13.5 3.86739 13.5 4C13.5 4.13261 13.4473 4.25979 13.3536 4.35355C13.2598 4.44732 13.1326 4.5 13 4.5H3C2.86739 4.5 2.74021 4.44732 2.64645 4.35355C2.55268 4.25979 2.5 4.13261 2.5 4Z" fill="currentColor"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.592 2.8387C20.3273 2.8387 21.7341 4.2391 21.7341 5.96606C21.7341 7.69342 20.3273 9.09402 18.592 9.09402C16.8569 9.09402 15.45 7.69362 15.45 5.96606C15.45 4.2391 16.8569 2.8387 18.592 2.8387ZM21.4392 10.18C20.0255 10.18 18.8788 11.3214 18.8788 12.7284C18.8788 14.1361 20.0255 15.2771 21.4392 15.2775C22.8533 15.2775 24 14.1361 24 12.7284C23.9998 11.3214 22.8533 10.18 21.4392 10.18ZM18.4705 17.5593C17.4832 17.5593 16.6822 18.3566 16.6822 19.3392C16.6822 20.322 17.4832 21.1193 18.4705 21.1193C19.4577 21.1193 20.2586 20.322 20.2586 19.3392C20.2586 18.3566 19.4577 17.5593 18.4705 17.5593ZM11.6305 20.4396C10.6432 20.4396 9.84224 21.2367 9.84224 22.2195C9.84224 23.2027 10.6432 24 11.6305 24C12.6179 24 13.4186 23.2027 13.4186 22.2195C13.4188 21.2367 12.6181 20.4396 11.6305 20.4396ZM4.64083 17.7462C3.71529 17.7462 2.96517 18.4929 2.96517 19.4142C2.96517 20.3351 3.71529 21.0822 4.64083 21.0822C5.56578 21.0822 6.3161 20.3351 6.3161 19.4142C6.3161 18.4931 5.56578 17.7462 4.64083 17.7462ZM1.78475 10.7173C0.79898 10.7173 0 11.5126 0 12.4939C0 13.4745 0.79898 14.2698 1.78475 14.2698C2.76994 14.2698 3.56892 13.4745 3.56892 12.4939C3.56892 11.5126 2.76974 10.7173 1.78475 10.7173ZM4.64083 3.32542C3.39409 3.32542 2.38281 4.33226 2.38281 5.57329C2.38281 6.81431 3.39409 7.82057 4.64083 7.82057C5.88757 7.82057 6.89846 6.81431 6.89846 5.57329C6.89846 4.33226 5.88757 3.32542 4.64083 3.32542ZM11.6435 0C10.1423 0 8.92436 1.21192 8.92436 2.70608C8.92436 4.20042 10.1423 5.41235 11.6435 5.41235C13.1447 5.41235 14.3622 4.20042 14.3622 2.70608C14.3622 1.21192 13.1447 0 11.6435 0Z" fill="currentColor"/>
3
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g transform="matrix(1, 0, 0, 1, -25.604078, 1.718395)">
3
- <path d="M35.75 1.50003C35.3358 1.50003 35 1.83582 35 2.25003V4.25003C35 4.66424 34.6642 5.00003 34.25 5.00003C33.8358 5.00003 33.5 4.66424 33.5 4.25003V2.25003C33.5 1.00739 34.5074 3.05176e-05 35.75 3.05176e-05H45.75C46.9926 3.05176e-05 48 1.00739 48 2.25003V13.75C48 14.9927 46.9926 16 45.75 16H35.75C34.5074 16 33.5 14.9927 33.5 13.75V11.75C33.5 11.3358 33.8358 11 34.25 11C34.6642 11 35 11.3358 35 11.75V13.75C35 14.1642 35.3358 14.5 35.75 14.5H45.75C46.1642 14.5 46.5 14.1642 46.5 13.75V2.25003C46.5 1.83582 46.1642 1.50003 45.75 1.50003H35.75Z" fill="currentColor" clip-path="url(#clip0_100_855)"></path>
4
- <path d="M39.2803 2.9697L43.7803 7.4697C44.0732 7.76259 44.0732 8.23747 43.7803 8.53036L39.2803 13.0304C38.9874 13.3233 38.5126 13.3233 38.2197 13.0304C37.9268 12.7375 37.9268 12.2626 38.2197 11.9697L41.4393 8.75003H28.25C27.8358 8.75003 27.5 8.41424 27.5 8.00003C27.5 7.58582 27.8358 7.25003 28.25 7.25003H41.4393L38.2197 4.03036C37.9268 3.73747 37.9268 3.26259 38.2197 2.9697C38.5126 2.67681 38.9874 2.67681 39.2803 2.9697Z" fill="currentColor" clip-path="url(#clip0_100_855)"></path>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_855">
8
- <rect width="48" height="40" fill="white" transform="translate(0 0.00088501)"></rect>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" fill="none">
2
- <defs>
3
- <clipPath id="clip0_100_855">
4
- <rect width="48" height="48" fill="white" y="0.00089" x="0" id="svg_1"/>
5
- </clipPath>
6
- </defs>
7
- <g>
8
- <g id="svg_7">
9
- <path d="m6.59428,3.76841c-0.29112,0 -0.52715,0.2186 -0.52715,0.48826l0,1.30203c0,0.26966 -0.23602,0.48826 -0.52715,0.48826c-0.29112,0 -0.52715,-0.2186 -0.52715,-0.48826l0,-1.30203c0,-0.80898 0.70806,-1.46478 1.58144,-1.46478l7.02861,0c0.87337,0 1.58144,0.65581 1.58144,1.46478l0,7.48666c0,0.80902 -0.70806,1.46478 -1.58144,1.46478l-7.02861,0c-0.87337,0 -1.58144,-0.65577 -1.58144,-1.46478l0,-1.30203c0,-0.26965 0.23602,-0.48826 0.52715,-0.48826c0.29112,0 0.52715,0.21861 0.52715,0.48826l0,1.30203c0,0.26965 0.23602,0.48826 0.52715,0.48826l7.02861,0c0.29112,0 0.52715,-0.21861 0.52715,-0.48826l0,-7.48666c0,-0.26966 -0.23602,-0.48826 -0.52715,-0.48826l-7.02861,0z" fill="currentColor" id="svg_3"/>
10
- <path d="m9.07559,4.72519l3.16287,2.92957c0.20587,0.19068 0.20587,0.49983 0,0.69051l-3.16287,2.9296c-0.20587,0.19068 -0.53959,0.19068 -0.74545,0c-0.20587,-0.19068 -0.20587,-0.49985 0,-0.69053l2.26293,-2.09605l-9.27024,0c-0.29112,0 -0.52715,-0.2186 -0.52715,-0.48826c0,-0.26966 0.23602,-0.48826 0.52715,-0.48826l9.27024,0l-2.26293,-2.09605c-0.20587,-0.19068 -0.20587,-0.49983 0,-0.69051c0.20587,-0.19068 0.53959,-0.19068 0.74545,0z" fill="currentColor" id="svg_4"/>
11
- </g>
12
- </g>
13
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_801)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M32 13C34.2091 13 36 11.2091 36 9C36 6.79086 34.2091 5 32 5C29.7909 5 28 6.79086 28 9C28 11.2091 29.7909 13 32 13ZM32 11.5C33.3807 11.5 34.5 10.3807 34.5 9C34.5 7.61929 33.3807 6.5 32 6.5C30.6193 6.5 29.5 7.61929 29.5 9C29.5 10.3807 30.6193 11.5 32 11.5Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M40.8999 9.99381C40.9652 9.64184 41 9.3092 41 9C41 4.02944 36.9706 0 32 0C27.0294 0 23 4.02944 23 9C23 9.3092 23.0348 9.64184 23.1001 9.99381L16.9805 6.55153C16.3717 6.20906 15.6283 6.20906 15.0195 6.55153L1.01948 14.4265C0.389725 14.7808 0 15.4471 0 16.1697V46.2901C0 47.055 0.823657 47.5367 1.49026 47.1617L15.7549 39.1379C15.9071 39.0522 16.0929 39.0522 16.2451 39.1379L31.0195 47.4484C31.6283 47.7909 32.3717 47.7909 32.9805 47.4484L46.9805 39.5734C47.6103 39.2192 48 38.5528 48 37.8303V7.70983C48 6.945 47.1763 6.46329 46.5097 6.83825L40.8999 9.99381ZM38.2451 12.9403C39.0736 11.2386 39.5 9.87948 39.5 9C39.5 4.85786 36.1421 1.5 32 1.5C27.8579 1.5 24.5 4.85786 24.5 9C24.5 9.87948 24.9264 11.2386 25.7549 12.9403C26.5574 14.5887 27.6421 16.3711 28.7485 18.0325C29.8514 19.6887 30.9571 21.1967 31.7886 22.2921C31.8612 22.3879 31.9318 22.4804 32 22.5696C32.0682 22.4804 32.1388 22.3879 32.2114 22.2921C33.0429 21.1967 34.1486 19.6887 35.2515 18.0325C36.3579 16.3711 37.4426 14.5887 38.2451 12.9403ZM40.2723 12.0679C38.6547 16.1609 34.7613 21.4487 32.9529 23.7913C32.882 23.8832 32.8142 23.9705 32.75 24.0531V45.8571L46.2451 38.2661C46.4026 38.1775 46.5 38.0109 46.5 37.8303V8.56475L40.2723 12.0679ZM31.25 24.0531V45.8571L16.9805 37.8305C16.9056 37.7883 16.8285 37.7514 16.75 37.7196V8.14288L23.7277 12.0679C25.3453 16.1609 29.2387 21.4487 31.0471 23.7913C31.118 23.8832 31.1858 23.9705 31.25 24.0531ZM1.75487 15.7339L15.25 8.14288V37.7196C15.1715 37.7514 15.0944 37.7883 15.0195 37.8305L1.5 45.4352V16.1697C1.5 15.989 1.59743 15.8224 1.75487 15.7339Z" fill="currentColor"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_100_801">
8
- <rect width="48" height="48" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,13 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_732)">
3
- <path d="M15 40.0009C15 39.4486 15.4477 39.0009 16 39.0009H19C19.5523 39.0009 20 39.4486 20 40.0009V43.0009C20 43.5532 19.5523 44.0009 19 44.0009H16C15.4477 44.0009 15 43.5532 15 43.0009V40.0009Z" fill="currentColor"/>
4
- <path d="M21.5 40.0009C21.5 39.4486 21.9477 39.0009 22.5 39.0009H25.5C26.0523 39.0009 26.5 39.4486 26.5 40.0009V43.0009C26.5 43.5532 26.0523 44.0009 25.5 44.0009H22.5C21.9477 44.0009 21.5 43.5532 21.5 43.0009V40.0009Z" fill="currentColor"/>
5
- <path d="M29 39.0009C28.4477 39.0009 28 39.4486 28 40.0009V43.0009C28 43.5532 28.4477 44.0009 29 44.0009H32C32.5523 44.0009 33 43.5532 33 43.0009V40.0009C33 39.4486 32.5523 39.0009 32 39.0009H29Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15 0.00088501C12.7909 0.00088501 11 1.79175 11 4.00088V44.0009C11 46.21 12.7909 48.0009 15 48.0009H33C35.2091 48.0009 37 46.21 37 44.0009V4.00089C37 1.79175 35.2091 0.00088501 33 0.00088501H15ZM30 1.50089C29.4477 1.50089 29 1.9486 29 2.50089V3.00089C29 3.55317 28.5523 4.00089 28 4.00089H20C19.4477 4.00089 19 3.55317 19 3.00089V2.50089C19 1.9486 18.5523 1.50089 18 1.50089H15C13.6193 1.50089 12.5 2.62017 12.5 4.00088V44.0009C12.5 45.3816 13.6193 46.5009 15 46.5009H33C34.3807 46.5009 35.5 45.3816 35.5 44.0009V4.00089C35.5 2.62017 34.3807 1.50089 33 1.50089H30Z" fill="currentColor"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_100_732">
10
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_85_5263)">
3
- <path d="M6 0.277994C6.09737 0.396731 6.15701 0.541866 6.17126 0.694755C6.18552 0.847645 6.15374 1.0013 6.08 1.13599C5.50154 2.19734 5.19959 3.38725 5.202 4.59599C5.202 8.61699 8.48 11.873 12.52 11.873C13.048 11.8723 13.559 11.819 14.053 11.713C14.2041 11.6807 14.3614 11.6934 14.5054 11.7495C14.6494 11.8057 14.7737 11.9029 14.863 12.029C14.9575 12.1603 15.0057 12.3192 15.0001 12.4808C14.9945 12.6424 14.9354 12.7976 14.832 12.922C14.0476 13.8854 13.0582 14.6616 11.9358 15.1941C10.8134 15.7266 9.58631 16.0019 8.344 16C3.734 16 0 12.286 0 7.70999C0 4.26599 2.114 1.31199 5.124 0.0599944C5.27389 -0.00370555 5.44043 -0.0168868 5.59847 0.0224426C5.75651 0.0617719 5.89745 0.151475 6 0.277994ZM4.858 1.31099C3.70067 1.93191 2.73317 2.85474 2.05827 3.98144C1.38338 5.10814 1.02631 6.39663 1.025 7.70999C1.025 11.73 4.304 14.986 8.344 14.986C9.31141 14.9874 10.2695 14.7971 11.1629 14.426C12.0563 14.0549 12.8673 13.5104 13.549 12.824C13.2117 12.866 12.8687 12.887 12.52 12.887C7.91 12.887 4.177 9.17299 4.177 4.59699C4.177 3.42999 4.419 2.31899 4.858 1.31099Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_85_5263">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29.0511 2.00085C29.0511 1.58664 28.7153 1.25085 28.3011 1.25085C27.8869 1.25085 27.5511 1.58664 27.5511 2.00085V4.72901C27.5511 5.62228 26.9064 6.38514 26.0256 6.53408C24.4232 6.80506 23.2502 8.19296 23.2502 9.81816V12.2744C17.1102 12.661 12.25 17.7634 12.25 24.0009V35.0009C12.25 41.4902 17.5107 46.7509 24 46.7509C30.4893 46.7509 35.75 41.4902 35.75 35.0009V24.0009C35.75 17.7635 30.89 12.6613 24.7502 12.2744V9.81816C24.7502 8.92488 25.3949 8.16202 26.2757 8.01308C27.8782 7.74211 29.0511 6.3542 29.0511 4.72901V2.00085ZM24.7502 13.7779V25.1093H34.25V24.0009C34.25 18.5923 30.0609 14.1621 24.7502 13.7779ZM23.2502 13.7779C17.9394 14.1618 13.75 18.5921 13.75 24.0009V25.1093H23.2502V13.7779ZM34.25 26.6093V35.0009C34.25 40.6618 29.6609 45.2509 24 45.2509C18.3391 45.2509 13.75 40.6618 13.75 35.0009V26.6093H34.25Z" fill="currentColor"/>
3
- </svg>
@@ -1,15 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_1009)">
3
- <path d="M39.6 46.0009C39.6 47.1054 38.7046 48.0009 37.6 48.0009H6C4.89543 48.0009 4 47.1054 4 46.0009V2.00085C4 0.896285 4.89543 0.000854492 6 0.000854492H37.599C38.7035 0.000854492 39.599 0.896285 39.599 2.00085V9.46061C39.599 9.91037 39.2344 10.275 38.7846 10.275C38.3349 10.275 37.9703 9.91037 37.9703 9.46061V2.63537C37.9703 2.08309 37.5225 1.63537 36.9703 1.63537H6.62871C6.07643 1.63537 5.62871 2.08309 5.62871 2.63537V45.3663C5.62871 45.9186 6.07643 46.3663 6.62871 46.3663H36.97C37.5223 46.3663 37.97 45.9186 37.97 45.3663V32.8159C37.97 32.3657 38.3349 32.0009 38.785 32.0009C39.2351 32.0009 39.6 32.3657 39.6 32.8159V46.0009Z" fill="currentColor"/>
4
- <path d="M14.9431 37.2252C14.9266 36.9945 14.6325 36.908 14.4937 37.093L11.6004 40.9508L10.4004 40.0508L13.2937 36.193C14.2653 34.8975 16.3239 35.5031 16.4393 37.1184L16.583 39.1311C16.5987 39.3499 16.8684 39.4439 17.0167 39.2822L19.3807 36.7032C20.3286 35.6692 22.0339 36.5576 21.7295 37.927C21.6448 38.3081 22.0167 38.6312 22.3823 38.4941L24.237 37.7986L24.7637 39.2031L22.909 39.8986C21.5617 40.4038 20.1933 39.3658 20.2162 38.0117L18.1224 40.2958C17.0847 41.4278 15.1963 40.7697 15.0868 39.2379L14.9431 37.2252Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M43.7362 17.122L32.2362 37.0406L27.1381 39.8708L27.04 34.0406L38.54 14.122C39.0923 13.1655 40.3155 12.8377 41.2721 13.39L43.0041 14.39C43.9607 14.9423 44.2885 16.1655 43.7362 17.122ZM28.5468 34.4308L37.0266 19.7434L39.6247 21.2434L31.1449 35.9308L28.5959 37.3459L28.5468 34.4308ZM37.7766 18.4444L40.3747 19.9444L42.4372 16.372C42.5752 16.1329 42.4933 15.8271 42.2541 15.689L40.5221 14.689C40.2829 14.551 39.9771 14.6329 39.8391 14.872L37.7766 18.4444Z" fill="currentColor"/>
6
- <path d="M10.6846 22.4552H27.3886C27.8044 22.4552 28.1415 22.1181 28.1415 21.7023C28.1415 21.2864 27.8044 20.9493 27.3886 20.9493H10.6846C10.2688 20.9493 9.93164 21.2864 9.93164 21.7023C9.93164 22.1181 10.2688 22.4552 10.6846 22.4552Z" fill="currentColor"/>
7
- <path d="M10.6846 16.4197H29.3886C29.8044 16.4197 30.1415 16.0826 30.1415 15.6668C30.1415 15.2509 29.8044 14.9138 29.3886 14.9138H10.6846C10.2688 14.9138 9.93164 15.2509 9.93164 15.6668C9.93164 16.0826 10.2688 16.4197 10.6846 16.4197Z" fill="currentColor"/>
8
- <path d="M10.6846 10.3842H15.9441C16.36 10.3842 16.6971 10.0471 16.6971 9.63125C16.6971 9.21541 16.36 8.8783 15.9441 8.8783H10.6846C10.2688 8.8783 9.93164 9.21541 9.93164 9.63125C9.93164 10.0471 10.2688 10.3842 10.6846 10.3842Z" fill="currentColor"/>
9
- </g>
10
- <defs>
11
- <clipPath id="clip0_100_1009">
12
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
13
- </clipPath>
14
- </defs>
15
- </svg>
@@ -1,19 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_100_1006)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24.25 5.00085C24.6642 5.00085 25 5.33664 25 5.75085C25 6.16507 24.6642 6.50085 24.25 6.50085H6.5C5.94772 6.50085 5.5 6.94857 5.5 7.50085V45.5009C5.5 46.0531 5.94772 46.5009 6.5 46.5009H8.16109C8.84776 43.3557 11.6489 41.0009 15 41.0009C18.3511 41.0009 21.1522 43.3557 21.8389 46.5009H35.5C36.0523 46.5009 36.5 46.0531 36.5 45.5009V19.7509C36.5 19.3366 36.8358 19.0009 37.25 19.0009C37.6642 19.0009 38 19.3366 38 19.7509V46.0005C38 47.1051 37.1046 48.0005 36 48.0005H22L8 48.0009L6 48.0005C4.89543 48.0005 4 47.1051 4 46.0005V7.00086C4 5.89629 4.89543 5.00085 6 5.00085H24.25ZM20.293 46.5009C19.64 44.1923 17.5176 42.5009 15 42.5009C12.4824 42.5009 10.36 44.1923 9.70703 46.5009H20.293Z" fill="currentColor"/>
4
- <path d="M31.389 25.9492C31.8049 25.9492 32.142 26.2864 32.142 26.7022C32.142 27.1181 31.8049 27.4552 31.389 27.4552H10.6851C10.2692 27.4552 9.9321 27.1181 9.9321 26.7022C9.9321 26.2864 10.2692 25.9492 10.6851 25.9492H31.389Z" fill="currentColor"/>
5
- <path d="M31.389 19.9137C31.8049 19.9137 32.142 20.2509 32.142 20.6667C32.142 21.0826 31.8049 21.4197 31.389 21.4197H10.6851C10.2692 21.4197 9.9321 21.0826 9.9321 20.6667C9.9321 20.2509 10.2692 19.9137 10.6851 19.9137H31.389Z" fill="currentColor"/>
6
- <path d="M15.9446 13.8782C16.3604 13.8782 16.6975 14.2154 16.6975 14.6312C16.6975 15.0471 16.3604 15.3842 15.9446 15.3842H10.6851C10.2692 15.3842 9.9321 15.0471 9.9321 14.6312C9.9321 14.2154 10.2692 13.8782 10.6851 13.8782H15.9446Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15 32.0009C12.7907 32.0009 11 33.7915 11 36.0009C11 38.2102 12.7907 40.0009 15 40.0009C17.2093 40.0009 19 38.2102 19 36.0009C19 33.7915 17.2093 32.0009 15 32.0009ZM15 33.5009C13.6191 33.5009 12.5 34.62 12.5 36.0009C12.5 37.3817 13.6191 38.5009 15 38.5009C16.3809 38.5009 17.5 37.3817 17.5 36.0009C17.5 34.62 16.3809 33.5009 15 33.5009Z" fill="currentColor"/>
8
- <path d="M23.6846 34.3837H27.1787C27.5945 34.3837 27.9316 34.0466 27.9316 33.6308C27.9316 33.2149 27.5945 32.8778 27.1787 32.8778H23.6846C23.2688 32.8778 22.9316 33.2149 22.9316 33.6308C22.9316 34.0466 23.2688 34.3837 23.6846 34.3837Z" fill="currentColor"/>
9
- <path d="M23.6846 38.3837H31.1787C31.5945 38.3837 31.9316 38.0466 31.9316 37.6308C31.9316 37.2149 31.5945 36.8778 31.1787 36.8778H23.6846C23.2688 36.8778 22.9316 37.2149 22.9316 37.6308C22.9316 38.0466 23.2688 38.3837 23.6846 38.3837Z" fill="currentColor"/>
10
- <path fill-rule="evenodd" clip-rule="evenodd" d="M35.5 15.5009C39.366 15.5009 42.5 12.3668 42.5 8.50085C42.5 4.63486 39.366 1.50085 35.5 1.50085C31.634 1.50085 28.5 4.63486 28.5 8.50085C28.5 12.3668 31.634 15.5009 35.5 15.5009ZM35.5 17.0009C40.1944 17.0009 44 13.1953 44 8.50085C44 3.80643 40.1944 0.000854492 35.5 0.000854492C30.8056 0.000854492 27 3.80643 27 8.50085C27 13.1953 30.8056 17.0009 35.5 17.0009Z" fill="currentColor"/>
11
- <path d="M36.7402 7.13214L36.6285 7.02041L33.5 7.18801V7.63493C33.6676 7.6908 33.7793 7.6908 33.9469 7.74666C34.1145 7.80253 34.2263 7.8584 34.2821 7.91426C34.3939 7.97013 34.5056 8.08186 34.5615 8.19359C34.6173 8.30532 34.6732 8.41706 34.6732 8.58465V12.3277C34.6732 12.4953 34.6173 12.607 34.5615 12.7187C34.5056 12.8305 34.3939 12.8863 34.2821 12.9422C34.2263 12.9422 34.1145 12.9981 34.0028 12.9981C33.8911 13.0539 33.7793 13.0539 33.6676 13.0539V13.5009H37.7458V13.0539C37.6341 13.0539 37.5223 13.0539 37.4106 12.9981C37.2989 12.9422 37.243 12.9422 37.1313 12.8863C37.0196 12.8305 36.9078 12.7746 36.852 12.6629C36.7961 12.5511 36.7402 12.4394 36.7402 12.2718V7.13214Z" fill="currentColor"/>
12
- <path d="M36.405 3.83605C36.1816 3.61259 35.8464 3.50085 35.5112 3.50085C35.176 3.50085 34.8408 3.61259 34.6173 3.83605C34.338 4.05951 34.2263 4.33884 34.2263 4.67404C34.2263 5.00923 34.338 5.28856 34.6173 5.51203C34.8408 5.73549 35.176 5.84722 35.5112 5.84722C35.8464 5.84722 36.1257 5.73549 36.405 5.51203C36.6844 5.28856 36.7961 5.00923 36.7961 4.67404C36.7961 4.33884 36.6285 4.05951 36.405 3.83605Z" fill="currentColor"/>
13
- </g>
14
- <defs>
15
- <clipPath id="clip0_100_1006">
16
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
17
- </clipPath>
18
- </defs>
19
- </svg>