@verisoft/ui-govcz 18.5.0 → 18.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +59 -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 +3728 -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 +37 -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,17 +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_997)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13 21.0009V32.0009H19V21.0009H13ZM17.5 22.5009H14.5V24.7509H17.5V22.5009ZM14.5 30.5009V26.2509H17.5V30.5009H14.5Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21 21.0009V32.0009H27V21.0009H21ZM25.5 24.7509V22.5009H22.5V24.7509H25.5ZM22.5 30.5009V26.2509H25.5V30.5009H22.5Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29 21.0009V32.0009H35V21.0009H29ZM33.5 22.5009H30.5V24.7509H33.5V22.5009ZM30.5 30.5009V26.2509H33.5V30.5009H30.5Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29 36.0009V43.0009H35V36.0009H29ZM33.5 37.5009H30.5V41.5009H33.5V37.5009Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13 36.0009V43.0009H19V36.0009H13ZM17.5 37.5009H14.5V41.5009H17.5V37.5009Z" fill="currentColor"/>
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3 42.0009V31.0009H8V42.0009H3ZM4.5 32.5009H6.5V36.7509H4.5V32.5009ZM4.5 38.2509V40.5009H6.5V38.2509H4.5Z" fill="currentColor"/>
9
- <path fill-rule="evenodd" clip-rule="evenodd" d="M40 42.0009V31.0009H45V42.0009H40ZM41.5 32.5009H43.5V36.7509H41.5V32.5009ZM41.5 38.2509V40.5009H43.5V38.2509H41.5Z" fill="currentColor"/>
10
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33.1701 0.000854492H23.25V8.32663L10 19.6838V26.0009H2C0.895431 26.0009 0 26.8963 0 28.0009V44.0009C0 45.1054 0.895432 46.0009 2 46.0009H10C10 47.1054 10.8954 48.0009 12 48.0009H36C37.1046 48.0009 38 47.1054 38 46.0009H46C47.1046 46.0009 48 45.1054 48 44.0009V28.0009C48 26.8963 47.1046 26.0009 46 26.0009H38V19.6838L24.75 8.32663V6.00085H33.1701L30.5035 3.00085L33.1701 0.000854492ZM29.8299 4.50085H24.75V1.50085H29.8299L28.4965 3.00085L29.8299 4.50085ZM27.5 46.5009H36C36.2761 46.5009 36.5 46.277 36.5 46.0009V20.3737L24 9.65939L11.5 20.3737V46.0009C11.5 46.277 11.7239 46.5009 12 46.5009H20.5V36.0009H27.5V46.5009ZM2 27.5009H10V44.5009H2C1.72386 44.5009 1.5 44.277 1.5 44.0009V28.0009C1.5 27.7247 1.72386 27.5009 2 27.5009ZM46 44.5009H38V27.5009H46C46.2761 27.5009 46.5 27.7247 46.5 28.0009V44.0009C46.5 44.277 46.2761 44.5009 46 44.5009ZM22 46.5009H26V37.5009H22V46.5009Z" fill="currentColor"/>
11
- </g>
12
- <defs>
13
- <clipPath id="clip0_100_997">
14
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
15
- </clipPath>
16
- </defs>
17
- </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_725)">
3
- <path d="M46.5 14.0009C46.5 17.91 44.7057 21.3999 41.8957 23.692C41.6727 23.8739 41.5638 24.161 41.6178 24.4437C41.7207 24.9829 42.3409 25.2595 42.7686 24.9154C45.9586 22.3493 48 18.4135 48 14.0009C48 6.26893 41.732 0.000915527 34 0.000915527C29.2277 0.000915527 25.0131 2.38874 22.4858 6.03482C22.173 6.4861 22.4935 7.08508 23.0388 7.14924C23.3247 7.18286 23.6029 7.0536 23.7685 6.81818C26.0302 3.60231 29.7697 1.50092 34 1.50092C40.9036 1.50092 46.5 7.09736 46.5 14.0009Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20.7645 29.818V27.5994C20.7645 26.748 20.6963 26.0022 20.5598 25.3621C20.4234 24.7158 20.225 24.1658 19.9645 23.7121C19.7103 23.2523 19.4002 22.8794 19.0344 22.5935C18.6747 22.3076 18.2654 22.0994 17.8066 21.9689C17.3539 21.8322 16.8578 21.7639 16.3183 21.7639C15.6486 21.7639 15.0409 21.8695 14.4952 22.0808C13.9557 22.2921 13.4906 22.6308 13.1 23.0969C12.7093 23.5568 12.4086 24.1565 12.1977 24.896C11.9869 25.6293 11.8815 26.5305 11.8815 27.5994V29.818C11.8815 30.6694 11.9497 31.4183 12.0861 32.0646C12.2287 32.7109 12.4272 33.2671 12.6814 33.7332C12.9418 34.1931 13.255 34.5691 13.6209 34.8612C13.9867 35.1532 14.396 35.3677 14.8487 35.5044C15.3075 35.6411 15.8036 35.7095 16.3369 35.7095C17.0066 35.7095 17.6112 35.6007 18.1507 35.3832C18.6964 35.1657 19.1646 34.8239 19.5553 34.3578C19.9459 33.8917 20.2436 33.2858 20.4482 32.54C20.659 31.788 20.7645 30.8807 20.7645 29.818ZM18.5228 27.2638V30.1349C18.5228 30.8123 18.4763 31.3934 18.3833 31.8781C18.2902 32.3629 18.1507 32.7575 17.9647 33.062C17.7787 33.3603 17.5492 33.5778 17.2764 33.7146C17.0035 33.8513 16.6904 33.9196 16.3369 33.9196C16.0579 33.9196 15.8005 33.8761 15.5649 33.7891C15.3355 33.7021 15.1308 33.5654 14.951 33.379C14.7774 33.1863 14.6285 32.944 14.5045 32.6519C14.3805 32.3536 14.2875 31.9962 14.2255 31.5798C14.1635 31.1635 14.1324 30.6818 14.1324 30.1349V27.2638C14.1324 26.5864 14.179 26.0115 14.272 25.5392C14.3712 25.0607 14.5138 24.6754 14.6998 24.3833C14.8859 24.0912 15.1153 23.8799 15.3882 23.7494C15.661 23.6127 15.9711 23.5443 16.3183 23.5443C16.6036 23.5443 16.8609 23.5878 17.0903 23.6749C17.3198 23.7556 17.5244 23.8893 17.7042 24.0757C17.8841 24.2559 18.0329 24.4921 18.1507 24.7842C18.2747 25.07 18.3678 25.4212 18.4298 25.8375C18.4918 26.2477 18.5228 26.7231 18.5228 27.2638Z" fill="currentColor"/>
5
- <path d="M23.9981 34.9637L24.0017 34.3585C24.0049 33.8082 23.5596 33.3603 23.0093 33.3603C22.4612 33.3603 22.0169 33.8046 22.0169 34.3527V35.0476C22.0169 35.4391 21.9735 35.7965 21.8867 36.1196C21.7999 36.4428 21.6852 36.7473 21.5425 37.0332C21.5208 37.0768 21.4986 37.1204 21.4761 37.1639C21.2684 37.5656 21.3908 38.0695 21.7815 38.2971C22.0735 38.4673 22.4463 38.4409 22.6762 38.1932C23.0123 37.8311 23.2949 37.4071 23.5238 36.9213C23.84 36.2501 23.9981 35.5976 23.9981 34.9637Z" fill="currentColor"/>
6
- <path d="M28.7925 30.6197C29.2868 30.6197 29.6875 30.219 29.6875 29.7248C29.6875 29.2305 29.2868 28.8299 28.7925 28.8299H25.6618C25.1676 28.8299 24.7669 29.2305 24.7669 29.7248C24.7669 30.219 25.1676 30.6197 25.6618 30.6197H28.7925Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20.5 48.0009C31.2696 48.0009 40 39.2705 40 28.5009C40 17.7314 31.2696 9.00092 20.5 9.00092C9.73045 9.00092 1 17.7314 1 28.5009C1 39.2705 9.73045 48.0009 20.5 48.0009ZM20.5 46.5009C30.4411 46.5009 38.5 38.442 38.5 28.5009C38.5 18.5598 30.4411 10.5009 20.5 10.5009C10.5589 10.5009 2.5 18.5598 2.5 28.5009C2.5 38.442 10.5589 46.5009 20.5 46.5009Z" fill="currentColor"/>
8
- </g>
9
- <defs>
10
- <clipPath id="clip0_100_725">
11
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
12
- </clipPath>
13
- </defs>
14
- </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="M20.2929 25.3537C20.6835 25.7442 21.3166 25.7442 21.7072 25.3537L35.0001 12.0608C35.2929 11.7679 35.2929 11.293 35.0001 11.0001C34.7072 10.7073 34.2323 10.7073 33.9394 11.0001L21.0001 23.9395L15.5607 18.5001C15.2678 18.2073 14.793 18.2073 14.5001 18.5001C14.2072 18.793 14.2072 19.2679 14.5001 19.5608L20.2929 25.3537Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M45.3728 35.7152C45.3728 36.8198 44.4774 37.7152 43.3728 37.7152H34.5296V45.674C34.5296 46.5523 33.4786 47.004 32.8414 46.3995L23.6864 37.7152H4C2.89543 37.7152 2 36.8198 2 35.7152V2.00095C2 0.896377 2.89543 0.000946045 4 0.000946045H43.3728C44.4774 0.000946045 45.3728 0.896379 45.3728 2.00095V35.7152ZM34.0296 36.2152C33.4773 36.2152 33.0296 36.6629 33.0296 37.2152V44.5106L24.574 36.4897C24.3882 36.3135 24.1419 36.2152 23.8858 36.2152H4C3.72386 36.2152 3.5 35.9914 3.5 35.7152V2.00095C3.5 1.7248 3.72386 1.50095 4 1.50095H43.3728C43.649 1.50095 43.8728 1.72481 43.8728 2.00095V35.7152C43.8728 35.9914 43.649 36.2152 43.3728 36.2152H34.0296Z" fill="currentColor"/>
4
- </svg>
@@ -1,8 +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="M41.3184 11.7978C41.1828 12.1224 41.0828 12.5054 41.0185 12.9467C40.9119 13.6787 41.5313 14.2822 42.271 14.2822C43.0034 14.2822 43.568 13.6831 43.7522 12.9742C43.8838 12.4679 44.096 12.0484 44.3887 11.7158L45.8301 10.2978C47.0176 9.06342 47.6113 7.80951 47.6113 6.53607C47.6113 5.10638 47.1699 3.9931 46.2871 3.19623C45.4121 2.39935 44.1895 2.00092 42.6191 2.00092C41.0957 2.00092 39.8691 2.40326 38.9395 3.20795C38.3578 3.71566 37.9565 4.33846 37.7356 5.07632C37.5096 5.83139 38.1769 6.4892 38.9651 6.4892C39.747 6.4892 40.3098 5.77679 40.7953 5.16388C40.854 5.08973 40.919 5.01978 40.9902 4.95404C41.4043 4.57123 41.9473 4.37982 42.6191 4.37982C43.3223 4.37982 43.8535 4.57513 44.2129 4.96576C44.5801 5.34857 44.7637 5.90717 44.7637 6.64154C44.7637 7.19623 44.6074 7.71185 44.2949 8.18842C44.0918 8.50092 43.6074 9.02826 42.8418 9.77045C42.084 10.5048 41.5762 11.1806 41.3184 11.7978Z" fill="currentColor"/>
3
- <path d="M41.166 16.8134C40.877 17.0947 40.7324 17.4658 40.7324 17.9267C40.7324 18.3564 40.8691 18.7158 41.1426 19.0048C41.4238 19.2939 41.8223 19.4384 42.3379 19.4384C42.8535 19.4384 43.252 19.2939 43.5332 19.0048C43.8145 18.7158 43.9551 18.3564 43.9551 17.9267C43.9551 17.4814 43.8105 17.1142 43.5215 16.8251C43.2324 16.5283 42.8379 16.3798 42.3379 16.3798C41.8457 16.3798 41.4551 16.5244 41.166 16.8134Z" fill="currentColor"/>
4
- <path d="M14.0969 29.327C14.0969 30.1567 13.4243 30.8293 12.5947 30.8293C11.765 30.8293 11.0924 30.1567 11.0924 29.327C11.0924 28.4973 11.765 27.8248 12.5947 27.8248C13.4243 27.8248 14.0969 28.4973 14.0969 29.327Z" fill="currentColor"/>
5
- <path d="M28.7827 29.3271C28.7827 30.1568 28.1101 30.8294 27.2804 30.8294C26.4508 30.8294 25.7782 30.1568 25.7782 29.3271C25.7782 28.4974 26.4508 27.8249 27.2804 27.8249C28.1101 27.8249 28.7827 28.4974 28.7827 29.3271Z" fill="currentColor"/>
6
- <path d="M16.0682 37.6335C16.0682 37.2329 16.393 36.9081 16.7937 36.9081H23.0812C23.4818 36.9081 23.8066 37.2329 23.8066 37.6335C23.8066 38.0342 23.4818 38.359 23.0812 38.359H16.7937C16.393 38.359 16.0682 38.0342 16.0682 37.6335Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M27.067 6.07544C28.4605 6.73455 29.6235 7.69472 30.1387 9.05813C30.2874 9.07047 30.4459 9.09273 30.6077 9.12135C31.0813 9.20516 31.657 9.35719 32.2433 9.55291C32.831 9.74905 33.4474 9.99512 34.0004 10.2733C34.5423 10.5459 35.0707 10.8728 35.4433 11.2454C36.1717 11.9739 36.5627 13.0043 36.7599 14.1063C36.9586 15.2174 36.9742 16.4792 36.8874 17.7565C36.7156 20.2846 36.1823 22.7666 35.5764 25.2217C37.4735 25.7308 38.8745 27.4644 38.8745 29.5199C38.8745 31.7785 37.183 33.6483 35.0005 33.9324C34.4675 37.012 33.0035 39.8479 30.7481 42.1033C27.8609 44.9905 24.022 46.5808 19.9387 46.5812H19.9373C15.8488 46.5812 12.005 44.966 9.11353 42.033C6.89897 39.7864 5.4505 36.9791 4.89943 33.9357C2.70458 33.663 1 31.7874 1 29.52C1 27.3398 2.57611 25.5221 4.64839 25.1429V21.911C3.67544 21.6771 2.84296 21.4128 2.21894 21.1216L1.82547 20.938L1.80138 20.5045C1.61963 17.233 2.20689 14.1344 3.70843 11.5258C5.2148 8.90866 7.61628 6.82952 10.9773 5.57191C11.9992 5.18955 13.6138 4.88457 15.4428 4.71884C17.2851 4.55189 19.3984 4.52147 21.4378 4.71362C23.4685 4.90494 25.4722 5.32108 27.067 6.07544ZM11.4858 6.93084C12.3292 6.61527 13.7945 6.3251 15.5737 6.16387C17.3396 6.00385 19.3627 5.97548 21.3017 6.15817C23.2493 6.34166 25.0658 6.73397 26.4466 7.38706C27.7629 8.00966 28.5866 8.8185 28.8636 9.82451C28.8437 9.9295 28.8309 10.0354 28.8213 10.1326C28.8034 10.3136 28.7916 10.5236 28.7807 10.7451C28.7772 10.8165 28.7738 10.8899 28.7703 10.9653L28.7701 10.9681C28.7513 11.3696 28.7298 11.8273 28.6837 12.335C28.574 13.5413 28.3286 14.9737 27.684 16.3471C27.0445 17.7096 26.0074 19.0251 24.2856 20.0079C22.5559 20.9954 20.0886 21.6733 16.5516 21.6733C13.8688 21.6733 10.9995 21.474 8.50652 21.1358C6.26578 20.8318 4.39233 20.4237 3.2303 19.975C3.13676 17.0957 3.69878 14.4511 4.96594 12.2496C6.29385 9.94253 8.42098 8.07762 11.4858 6.93084ZM32.8148 25.0174C33.1014 25.1185 33.3742 25.2019 33.621 25.2699V31.292C33.621 34.9472 32.1978 38.3836 29.6131 40.968C27.029 43.5522 23.5933 44.9755 19.9387 44.9758H19.9373C16.2822 44.9758 12.8439 43.5303 10.2566 40.9059C7.67521 38.2873 6.25355 34.8191 6.25355 31.1402V22.248C6.90703 22.368 7.59776 22.4768 8.31147 22.5736C10.8691 22.9206 13.8036 23.1243 16.5516 23.1243C20.2694 23.1243 23.0014 22.4117 25.0049 21.268C26.682 20.3107 27.8159 19.0697 28.5818 17.7563C28.5978 18.4274 28.6299 19.0795 28.6837 19.6821C28.7421 20.3356 28.8273 20.9473 28.9506 21.4695C29.0698 21.9742 29.241 22.4703 29.5137 22.8339C30.37 23.9756 31.7462 24.6401 32.8148 25.0174ZM33.2978 23.6492C33.7085 23.7941 34.0894 23.8981 34.3906 23.9696C34.8292 22.1313 35.2934 19.8124 35.4398 17.6581C35.5223 16.4445 35.5016 15.3124 35.3316 14.3619C35.16 13.4023 34.8497 12.7037 34.4173 12.2714C34.206 12.0601 33.8379 11.8158 33.3483 11.5695C32.8698 11.3287 32.3199 11.1081 31.7839 10.9292C31.2467 10.7499 30.7416 10.6186 30.3548 10.5501C30.3288 10.5455 30.3036 10.5412 30.2793 10.5373C30.2581 10.8099 30.2325 11.1585 30.2056 11.5644C30.1381 12.5853 30.0632 13.9642 30.0333 15.4008C30.0034 16.8409 30.019 18.322 30.1289 19.5531C30.184 20.1692 30.2612 20.7061 30.3627 21.1361C30.4684 21.5836 30.5843 21.8432 30.6744 21.9633C31.2691 22.7562 32.311 23.3008 33.2978 23.6492ZM4.64839 26.7901C3.4689 27.1375 2.60516 28.2295 2.60516 29.5199C2.60516 30.8249 3.4885 31.9267 4.6883 32.2611C4.66185 31.8898 4.64839 31.5161 4.64839 31.1403V26.7901ZM35.2262 31.2921C35.2262 31.616 35.215 31.9381 35.1952 32.2585C36.3905 31.9213 37.2694 30.8216 37.2694 29.5199C37.2694 28.2295 36.4057 27.1375 35.2262 26.7901V31.2921Z" fill="currentColor"/>
8
- </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="M7 7.00085V5.75085C7 5.33664 6.66421 5.00085 6.25 5.00085C5.83579 5.00085 5.5 5.33664 5.5 5.75085V7.00085L2 7.00085C0.895433 7.00085 0 7.89629 0 9.00085V41.0009C0 42.1054 0.895431 43.0009 2 43.0009H46C47.1046 43.0009 48 42.1054 48 41.0009V9.00086C48 7.89629 47.1046 7.00086 46 7.00086L43 7.00086V5.75086C43 5.33664 42.6642 5.00085 42.25 5.00085C41.8358 5.00085 41.5 5.33664 41.5 5.75086V7.00086L37 7.00086V5.75086C37 5.33664 36.6642 5.00085 36.25 5.00085C35.8358 5.00085 35.5 5.33664 35.5 5.75086V7.00086L31 7.00086V5.75086C31 5.33664 30.6642 5.00085 30.25 5.00085C29.8358 5.00085 29.5 5.33664 29.5 5.75086V7.00086L25 7.00086V5.75086C25 5.33664 24.6642 5.00085 24.25 5.00085C23.8358 5.00085 23.5 5.33664 23.5 5.75086V7.00086L19 7.00086V5.75085C19 5.33664 18.6642 5.00085 18.25 5.00085C17.8358 5.00085 17.5 5.33664 17.5 5.75086V7.00086L13 7.00085V5.75085C13 5.33664 12.6642 5.00085 12.25 5.00085C11.8358 5.00085 11.5 5.33664 11.5 5.75085V7.00085L7 7.00085ZM5.5 10.2509C5.5 10.6651 5.83579 11.0009 6.25 11.0009C6.66421 11.0009 7 10.6651 7 10.2509V8.50085L11.5 8.50085V10.2509C11.5 10.6651 11.8358 11.0009 12.25 11.0009C12.6642 11.0009 13 10.6651 13 10.2509V8.50085L17.5 8.50086V10.2509C17.5 10.6651 17.8358 11.0009 18.25 11.0009C18.6642 11.0009 19 10.6651 19 10.2509V8.50086L23.5 8.50086V10.2509C23.5 10.6651 23.8358 11.0009 24.25 11.0009C24.6642 11.0009 25 10.6651 25 10.2509V8.50086L29.5 8.50086V10.2509C29.5 10.6651 29.8358 11.0009 30.25 11.0009C30.6642 11.0009 31 10.6651 31 10.2509V8.50086L35.5 8.50086V10.2509C35.5 10.6651 35.8358 11.0009 36.25 11.0009C36.6642 11.0009 37 10.6651 37 10.2509V8.50086L41.5 8.50086V10.2509C41.5 10.6651 41.8358 11.0009 42.25 11.0009C42.6642 11.0009 43 10.6651 43 10.2509V8.50086H45.5C46.0523 8.50086 46.5 8.94857 46.5 9.50086V40.5009C46.5 41.0531 46.0523 41.5009 45.5 41.5009H2.5C1.94772 41.5009 1.5 41.0531 1.5 40.5009L1.5 9.50085C1.5 8.94857 1.94772 8.50085 2.5 8.50085L5.5 8.50085V10.2509Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M26 19.0009H41C42.3807 19.0009 43.5 20.1201 43.5 21.5009V31.5009C43.5 32.8816 42.3807 34.0009 41 34.0009H26C24.6193 34.0009 23.5 32.8816 23.5 31.5009V21.5009C23.5 20.1201 24.6193 19.0009 26 19.0009ZM26 20.5009C25.4477 20.5009 25 20.9486 25 21.5009V31.5009C25 32.0531 25.4477 32.5009 26 32.5009H41C41.5523 32.5009 42 32.0531 42 31.5009V21.5009C42 20.9486 41.5523 20.5009 41 20.5009H26Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M31.6156 27.7567L24.4863 21.0468L25.5144 19.9545L32.6436 26.6644C33.125 27.1174 33.8757 27.1174 34.3571 26.6644L41.4863 19.9545L42.5144 21.0468L35.3851 27.7567C34.3262 28.7533 32.6745 28.7533 31.6156 27.7567Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M6.00198 19.8955L6.0132 19.8833C6.64206 19.1998 7.41876 19.0009 7.96455 19.0009C8.10041 19.0009 8.22827 19.0049 8.32833 19.008C8.43742 19.0115 8.50712 19.0137 8.56804 19.0137H8.61487L8.6467 19.0157C8.65076 19.0157 8.65682 19.0158 8.66537 19.0159L8.66831 19.016C8.6969 19.0163 8.76455 19.0171 8.84156 19.0228C9.01577 19.0357 9.27787 19.0751 9.56489 19.2148C10.1555 19.5023 10.4758 20.0216 10.6685 20.4812C10.7882 20.7608 10.9745 21.213 11.1503 21.6396C11.1808 21.7136 11.2109 21.7869 11.2404 21.8583C11.3424 22.1058 11.4365 22.3332 11.5095 22.5068C11.5786 22.6712 11.6058 22.7309 11.6047 22.7314C11.6044 22.7315 11.6013 22.726 11.5959 22.7161L11.6054 22.7336L11.6174 22.7576C11.7988 23.1204 12.0366 23.8163 11.6587 24.6192L11.6511 24.6354L11.6431 24.6514C11.6372 24.6631 11.6297 24.6792 11.6204 24.6991C11.559 24.8309 11.4199 25.1289 11.1647 25.4315C11.1309 25.479 11.0955 25.5264 11.0595 25.5729C11.324 25.9479 11.6897 26.4063 12.1345 26.803L12.1356 26.804C12.772 27.3727 13.3016 27.6664 13.728 27.8666C13.9326 27.6178 14.0767 27.4298 14.1228 27.3579L14.1634 27.2944L14.2101 27.2354C14.4663 26.9117 14.897 26.5204 15.5561 26.445C16.0353 26.3903 16.4628 26.5463 16.5781 26.5884C16.5864 26.5915 16.593 26.5939 16.598 26.5956L16.6079 26.5991L16.6178 26.6027C16.8528 26.6881 17.4048 26.9526 17.8336 27.1619C18.245 27.3626 18.699 27.5896 18.9357 27.7168C18.9409 27.7191 18.9464 27.7215 18.9519 27.7239C19.0676 27.7741 19.23 27.8445 19.3575 27.9102C19.511 27.9894 19.8584 28.1775 20.1204 28.5518L20.1683 28.6203L20.2084 28.6937C20.3918 29.0299 20.4191 29.3739 20.4279 29.4941C20.4417 29.6826 20.4369 29.8812 20.4192 30.0774C20.3837 30.4726 20.2886 30.9427 20.1093 31.4377C19.8019 32.2869 19.0685 32.869 18.5701 33.1906C18.0396 33.5329 17.3657 33.8398 16.7711 33.9265L16.7619 33.9279L16.7619 33.9278C16.1087 34.019 15.163 34.0839 14.1032 33.7453C13.612 33.595 12.9615 33.3825 12.1348 33.0054C10.2795 32.2111 8.80075 30.9122 7.78928 29.8387C6.82713 28.8176 6.05972 27.7168 6.12612 27.7975L6.07141 27.731L6.02728 27.6628C6.02641 27.6616 6.02199 27.655 6.01168 27.6401L5.95275 27.5548C5.90351 27.4833 5.83877 27.3881 5.76493 27.2741C5.61785 27.0471 5.43291 26.7429 5.25101 26.3839C4.90034 25.6919 4.5 24.6787 4.5 23.5568C4.5 21.5306 5.56244 20.375 5.92186 19.9841C5.94926 19.9543 5.97258 19.9289 5.99103 19.908L6.00198 19.8955ZM12.7411 31.6333C13.4987 31.98 14.0893 32.1726 14.5516 32.3138C15.3091 32.5578 16.0025 32.5193 16.5546 32.4422C17.171 32.3523 18.4293 31.6718 18.6989 30.9271C18.9686 30.1824 18.9686 29.5532 18.8915 29.4119C18.8125 29.2991 18.6442 29.2259 18.3865 29.1138C18.3511 29.0984 18.314 29.0823 18.2752 29.0653C17.9542 28.8855 16.3877 28.1151 16.1052 28.0124C15.8099 27.9096 15.6301 27.8583 15.3862 28.1664C15.1807 28.4875 14.5644 29.2065 14.3846 29.4119C14.192 29.6302 14.0123 29.6559 13.7041 29.5018C13.6484 29.474 13.5734 29.4415 13.4815 29.4017C13.0226 29.2028 12.1417 28.8211 11.1361 27.9225C10.1859 27.075 9.55673 26.035 9.36413 25.714C9.21005 25.4058 9.35129 25.2132 9.50537 25.072C9.64661 24.9307 9.85206 24.6996 9.98046 24.507C10.1184 24.3584 10.1774 24.2362 10.2517 24.0823C10.2674 24.0499 10.2836 24.0162 10.3015 23.9805C10.4042 23.7623 10.3528 23.5825 10.2758 23.4284C10.2316 23.3474 10.0015 22.7889 9.76241 22.2087C9.58471 21.7774 9.40206 21.3341 9.28709 21.0658C9.05993 20.5206 8.83277 20.518 8.64115 20.5158C8.61615 20.5155 8.59175 20.5152 8.56804 20.5137C8.48252 20.5137 8.39118 20.5108 8.29542 20.5077C8.18989 20.5044 8.07898 20.5009 7.96455 20.5009C7.75911 20.5009 7.41242 20.5779 7.1171 20.8989C7.09497 20.924 7.06946 20.952 7.04123 20.983C6.709 21.3473 6 22.1248 6 23.5568C6 24.9872 6.95282 26.3641 7.22593 26.7587C7.25191 26.7963 7.27175 26.8249 7.28402 26.8439C7.30062 26.8641 7.33341 26.9097 7.38179 26.9771C7.8574 27.6392 9.83907 30.3979 12.7411 31.6333Z" fill="currentColor"/>
6
- </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_7009)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4 2C4 1.46957 4.21071 0.960859 4.58579 0.585786C4.96086 0.210714 5.46957 0 6 0L14 0C14.5304 0 15.0391 0.210714 15.4142 0.585786C15.7893 0.960859 16 1.46957 16 2V10C16 10.5304 15.7893 11.0391 15.4142 11.4142C15.0391 11.7893 14.5304 12 14 12H6C5.46957 12 4.96086 11.7893 4.58579 11.4142C4.21071 11.0391 4 10.5304 4 10V2ZM6 1C5.73478 1 5.48043 1.10536 5.29289 1.29289C5.10536 1.48043 5 1.73478 5 2V10C5 10.2652 5.10536 10.5196 5.29289 10.7071C5.48043 10.8946 5.73478 11 6 11H14C14.2652 11 14.5196 10.8946 14.7071 10.7071C14.8946 10.5196 15 10.2652 15 10V2C15 1.73478 14.8946 1.48043 14.7071 1.29289C14.5196 1.10536 14.2652 1 14 1H6ZM2 5C1.73478 5 1.48043 5.10536 1.29289 5.29289C1.10536 5.48043 1 5.73478 1 6V14C1 14.2652 1.10536 14.5196 1.29289 14.7071C1.48043 14.8946 1.73478 15 2 15H10C10.2652 15 10.5196 14.8946 10.7071 14.7071C10.8946 14.5196 11 14.2652 11 14V13H12V14C12 14.5304 11.7893 15.0391 11.4142 15.4142C11.0391 15.7893 10.5304 16 10 16H2C1.46957 16 0.960859 15.7893 0.585786 15.4142C0.210714 15.0391 0 14.5304 0 14V6C0 5.46957 0.210714 4.96086 0.585786 4.58579C0.960859 4.21071 1.46957 4 2 4H3V5H2Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_85_7009">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </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 fill-rule="evenodd" clip-rule="evenodd" d="M24.2395 0.799074C24.1682 0.561523 23.8318 0.561523 23.7605 0.799074L22.7132 4.29012C21.7003 4.77182 21 5.80459 21 7.00092L21.0001 7.02468L10.0901 9.934C10.0598 9.94208 10.0295 9.9497 9.99905 9.95689C9.976 9.42503 9.53753 9.00092 9 9.00092C8.51618 9.00092 8.11261 9.34451 8.01999 9.801L4.27874 8.3045C3.89415 8.15066 3.45768 8.33773 3.30384 8.72231C3.15001 9.1069 3.33707 9.54338 3.72166 9.69721L7.48862 11.204C7.89746 11.3675 8.32432 11.4724 8.75677 11.5178L1 28.0009C1 31.4193 4.58154 33.0009 9 33.0009C13.4185 33.0009 17 31.4193 17 28.0009L9.25545 11.5437C9.66523 11.5435 10.0758 11.4903 10.4766 11.3834L21.3861 8.47417C21.782 9.17512 22.4517 9.70093 23.25 9.9064V41.7509C23.25 42.1651 23.5858 42.5009 24 42.5009C24.4142 42.5009 24.75 42.1651 24.75 41.7509V9.9064C25.5483 9.70093 26.218 9.17512 26.6139 8.47417L37.5234 11.3834C37.9243 11.4903 38.3348 11.5435 38.7446 11.5437L31 28.0009C31 31.4193 34.5815 33.0009 39 33.0009C43.4185 33.0009 47 31.4193 47 28.0009L39.2432 11.5178C39.6757 11.4724 40.1025 11.3675 40.5114 11.204L44.2783 9.69721C44.6629 9.54338 44.85 9.1069 44.6962 8.72231C44.5423 8.33773 44.1058 8.15066 43.7213 8.3045L39.98 9.801C39.8874 9.34451 39.4838 9.00092 39 9.00092C38.4625 9.00092 38.024 9.42503 38.001 9.95689C37.9705 9.9497 37.9402 9.94208 37.9099 9.934L26.9999 7.02468L27 7.00092C27 5.80459 26.2997 4.77182 25.2868 4.29012L24.2395 0.799074ZM32.7754 27.7509L39 14.5237L45.2246 27.7509H32.7754ZM9 14.5237L2.77544 27.7509H15.2246L9 14.5237Z" fill="currentColor"/>
3
- <path d="M14 44.7509C14 44.3367 14.3358 44.0009 14.75 44.0009H33.25C33.6642 44.0009 34 44.3367 34 44.7509C34 45.1651 33.6642 45.5009 33.25 45.5009H14.75C14.3358 45.5009 14 45.1651 14 44.7509Z" fill="currentColor"/>
4
- <path d="M9.75 46.5009C9.33579 46.5009 9 46.8367 9 47.2509C9 47.6651 9.33579 48.0009 9.75 48.0009H38.25C38.6642 48.0009 39 47.6651 39 47.2509C39 46.8367 38.6642 46.5009 38.25 46.5009H9.75Z" fill="currentColor"/>
5
- </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 fill-rule="evenodd" clip-rule="evenodd" d="M18.0005 22C18.0005 23.6569 19.3436 25 21.0005 25C22.6573 25 24.0005 23.6569 24.0005 22C24.0005 20.3431 22.6573 19 21.0005 19C19.3436 19 18.0005 20.3431 18.0005 22ZM19.5005 22C19.5005 22.8284 20.1721 23.5 21.0005 23.5C21.8289 23.5 22.5005 22.8284 22.5005 22C22.5005 21.1716 21.8289 20.5 21.0005 20.5C20.1721 20.5 19.5005 21.1716 19.5005 22Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24.0005 29C24.0005 31.2091 25.7913 33 28.0005 33C30.2096 33 32.0005 31.2091 32.0005 29C32.0005 26.7909 30.2096 25 28.0005 25C25.7913 25 24.0005 26.7909 24.0005 29ZM25.5005 29C25.5005 30.3807 26.6198 31.5 28.0005 31.5C29.3812 31.5 30.5005 30.3807 30.5005 29C30.5005 27.6193 29.3812 26.5 28.0005 26.5C26.6198 26.5 25.5005 27.6193 25.5005 29Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.2505 6.20866V5.01904C20.8002 4.8415 20.3945 4.6139 20.067 4.3361C19.6132 3.9512 19.2505 3.41318 19.2505 2.75C19.2505 1.76059 20.0331 1.06676 20.8367 0.664966C21.6851 0.240743 22.8047 0 24.0005 0C25.1962 0 26.3159 0.240742 27.1643 0.664966C27.9679 1.06676 28.7505 1.76059 28.7505 2.75C28.7505 3.41318 28.3878 3.95119 27.934 4.3361C27.6065 4.6139 27.2007 4.8415 26.7505 5.01904V6.20866C29.6685 6.656 32.3557 7.80408 34.6349 9.47572L35.477 8.63362C35.2842 8.1897 35.1582 7.74186 35.1231 7.31385C35.0744 6.72081 35.1983 6.08389 35.6673 5.61495C36.3669 4.91534 37.4109 4.97809 38.2632 5.2622C39.1631 5.56217 40.125 6.18364 40.9706 7.02917C41.8161 7.87469 42.4376 8.83663 42.7375 9.73654C43.0217 10.5889 43.0844 11.6329 42.3848 12.3325C41.9158 12.8014 41.2789 12.9254 40.6859 12.8767C40.2579 12.8415 39.81 12.7156 39.3661 12.5227L38.5241 13.3647C40.1961 15.6441 41.3444 18.3316 41.7918 21.25H42.981C43.1585 20.7997 43.3861 20.394 43.6639 20.0665C44.0488 19.6127 44.5868 19.25 45.25 19.25C46.2394 19.25 46.9332 20.0326 47.335 20.8362C47.7593 21.6846 48 22.8042 48 24C48 25.1958 47.7593 26.3154 47.335 27.1638C46.9332 27.9674 46.2394 28.75 45.25 28.75C44.5868 28.75 44.0488 28.3873 43.6639 27.9335C43.3861 27.606 43.1585 27.2003 42.981 26.75H41.7917C41.3443 29.6682 40.1961 32.3556 38.5243 34.6349L39.3661 35.4768C39.81 35.284 40.2579 35.158 40.6859 35.1229C41.2789 35.0742 41.9158 35.1981 42.3848 35.667C43.0844 36.3667 43.0217 37.4106 42.7375 38.263C42.4376 39.1629 41.8161 40.1248 40.9706 40.9703C40.125 41.8159 39.1631 42.4373 38.2632 42.7373C37.4109 43.0214 36.3669 43.0842 35.6673 42.3846C35.1983 41.9156 35.0744 41.2787 35.1231 40.6857C35.1582 40.2576 35.2842 39.8098 35.477 39.3659L34.6351 38.524C32.3559 40.1957 29.6686 41.3438 26.7505 41.7912V42.981C27.2007 43.1585 27.6065 43.3861 27.934 43.6639C28.3878 44.0488 28.7505 44.5868 28.7505 45.25C28.7505 46.2394 27.9679 46.9332 27.1643 47.335C26.3159 47.7593 25.1962 48 24.0005 48C22.8047 48 21.6851 47.7593 20.8367 47.335C20.0331 46.9332 19.2505 46.2394 19.2505 45.25C19.2505 44.5868 19.6132 44.0488 20.067 43.6639C20.3945 43.3861 20.8002 43.1585 21.2505 42.981V41.7912C18.3321 41.3438 15.6447 40.1955 13.3653 38.5236L12.523 39.3659C12.7158 39.8098 12.8418 40.2576 12.8769 40.6857C12.9256 41.2787 12.8017 41.9156 12.3327 42.3846C11.6331 43.0842 10.5891 43.0214 9.7368 42.7373C8.83689 42.4373 7.87495 41.8159 7.02943 40.9703C6.1839 40.1248 5.56243 39.1629 5.26246 38.263C4.97835 37.4106 4.9156 36.3667 5.61521 35.667C6.08415 35.1981 6.72107 35.0742 7.31411 35.1229C7.74212 35.158 8.18996 35.284 8.63388 35.4768L9.4763 34.6344C7.80467 32.3552 6.65659 29.668 6.20924 26.75H5.01904C4.8415 27.2003 4.6139 27.606 4.3361 27.9335C3.95119 28.3873 3.41318 28.75 2.75 28.75C1.76059 28.75 1.06676 27.9674 0.664967 27.1638C0.240742 26.3154 0 25.1958 0 24C0 22.8042 0.240742 21.6846 0.664967 20.8362C1.06676 20.0326 1.76059 19.25 2.75 19.25C3.41318 19.25 3.95119 19.6127 4.3361 20.0665C4.6139 20.394 4.8415 20.7997 5.01904 21.25H6.20921C6.65654 18.332 7.8046 15.6448 9.47623 13.3655L8.63388 12.5232C8.18996 12.716 7.74212 12.842 7.31411 12.8771C6.72107 12.9258 6.08415 12.8019 5.61521 12.333C4.9156 11.6333 4.97835 10.5894 5.26246 9.73703C5.56243 8.83711 6.1839 7.87518 7.02943 7.02966C7.87495 6.18413 8.83689 5.56266 9.7368 5.26269C10.5891 4.97858 11.6331 4.91583 12.3327 5.61544C12.8017 6.08438 12.9256 6.7213 12.8769 7.31434C12.8418 7.74235 12.7158 8.19019 12.523 8.63411L13.3652 9.47633C15.6446 7.80436 18.3321 6.65605 21.2505 6.20866ZM20.7505 2.75C20.7505 2.63484 20.8633 2.32867 21.5075 2.00661C22.1067 1.70697 22.9871 1.5 24.0005 1.5C25.0139 1.5 25.8942 1.70697 26.4935 2.00661C27.1376 2.32867 27.2505 2.63484 27.2505 2.75C27.2505 2.8271 27.211 2.9824 26.9637 3.19219C26.717 3.40142 26.3221 3.60868 25.7921 3.76197C25.4713 3.85475 25.2505 4.14848 25.2505 4.48244V9.75C25.2505 10.1642 25.5863 10.5 26.0005 10.5C26.4147 10.5 26.7505 10.1642 26.7505 9.75V7.72805C29.2574 8.14863 31.5726 9.13449 33.5606 10.5501L31.955 12.1557C31.6621 12.4486 31.6621 12.9235 31.955 13.2164C32.2479 13.5092 32.7227 13.5092 33.0156 13.2164L36.9171 9.31484C37.1533 9.0787 37.2048 8.71487 37.0436 8.42242C36.7772 7.93927 36.6445 7.51345 36.6181 7.19109C36.5915 6.86786 36.6734 6.73013 36.7279 6.67561C36.8094 6.59418 37.1057 6.45749 37.7889 6.68522C38.4245 6.8971 39.1933 7.37326 39.9099 8.08983C40.6265 8.8064 41.1026 9.57526 41.3145 10.2109C41.5423 10.8941 41.4056 11.1904 41.3241 11.2718C41.2696 11.3263 41.1319 11.4082 40.8087 11.3817C40.4863 11.3552 40.0605 11.2225 39.5773 10.9561C39.2849 10.7949 38.921 10.8465 38.6849 11.0826L34.7834 14.9841C34.4905 15.277 34.4905 15.7519 34.7834 16.0448C35.0763 16.3377 35.5512 16.3377 35.8441 16.0448L37.4498 14.4391C38.8657 16.4272 39.8517 18.7428 40.2724 21.25H34C33.5858 21.25 33.25 21.5858 33.25 22C33.25 22.4142 33.5858 22.75 34 22.75H43.5176C43.8515 22.75 44.1452 22.5292 44.238 22.2084C44.3913 21.6784 44.5986 21.2835 44.8078 21.0368C45.0176 20.7895 45.1729 20.75 45.25 20.75C45.3652 20.75 45.6713 20.8629 45.9934 21.507C46.293 22.1063 46.5 22.9866 46.5 24C46.5 25.0134 46.293 25.8937 45.9934 26.493C45.6713 27.1371 45.3652 27.25 45.25 27.25C45.1729 27.25 45.0176 27.2105 44.8078 26.9632C44.5986 26.7165 44.3913 26.3216 44.238 25.7916C44.1452 25.4708 43.8515 25.25 43.5176 25.25H38.25C37.8358 25.25 37.5 25.5858 37.5 26C37.5 26.4142 37.8358 26.75 38.25 26.75H40.2723C39.8517 29.2571 38.8657 31.5725 37.4499 33.5606L35.8441 31.9547C35.5512 31.6618 35.0763 31.6618 34.7834 31.9547C34.4905 32.2476 34.4905 32.7225 34.7834 33.0154L38.6849 36.9169C38.921 37.153 39.2849 37.2046 39.5773 37.0434C40.0605 36.777 40.4863 36.6443 40.8087 36.6178C41.1319 36.5913 41.2696 36.6732 41.3241 36.7277C41.4056 36.8091 41.5423 37.1054 41.3145 37.7886C41.1026 38.4243 40.6265 39.1931 39.9099 39.9097C39.1933 40.6263 38.4245 41.1024 37.7889 41.3143C37.1057 41.542 36.8094 41.4053 36.7279 41.3239C36.6734 41.2694 36.5915 41.1317 36.6181 40.8084C36.6445 40.4861 36.7772 40.0602 37.0436 39.5771C37.2048 39.2846 37.1533 38.9208 36.9171 38.6847L33.0156 34.7832C32.7227 34.4903 32.2479 34.4903 31.955 34.7832C31.6621 35.0761 31.6621 35.5509 31.955 35.8438L33.5608 37.4496C31.5727 38.8653 29.2575 39.8512 26.7505 40.2718V38.25C26.7505 37.8358 26.4147 37.5 26.0005 37.5C25.5863 37.5 25.2505 37.8358 25.2505 38.25V43.5176C25.2505 43.8515 25.4713 44.1452 25.7921 44.238C26.3221 44.3913 26.717 44.5986 26.9637 44.8078C27.211 45.0176 27.2505 45.1729 27.2505 45.25C27.2505 45.3652 27.1376 45.6713 26.4935 45.9934C25.8942 46.293 25.0139 46.5 24.0005 46.5C22.9871 46.5 22.1067 46.293 21.5075 45.9934C20.8633 45.6713 20.7505 45.3652 20.7505 45.25C20.7505 45.1729 20.79 45.0176 21.0373 44.8078C21.284 44.5986 21.6789 44.3913 22.2089 44.238C22.5297 44.1452 22.7505 43.8515 22.7505 43.5176V38C22.7505 37.5858 22.4147 37.25 22.0005 37.25C21.5863 37.25 21.2505 37.5858 21.2505 38V40.2718C18.7433 39.8512 16.4278 38.8651 14.4396 37.4492L16.045 35.8438C16.3379 35.5509 16.3379 35.0761 16.045 34.7832C15.7521 34.4903 15.2773 34.4903 14.9844 34.7832L11.0829 38.6847C10.8467 38.9208 10.7952 39.2846 10.9564 39.5771C11.2228 40.0602 11.3555 40.4861 11.3819 40.8084C11.4085 41.1317 11.3266 41.2694 11.2721 41.3239C11.1906 41.4053 10.8943 41.542 10.2111 41.3143C9.57552 41.1024 8.80666 40.6263 8.09009 39.9097C7.37352 39.1931 6.89735 38.4243 6.68548 37.7886C6.45775 37.1054 6.59444 36.8091 6.67587 36.7277C6.73039 36.6732 6.86811 36.5913 7.19135 36.6178C7.51371 36.6443 7.93953 36.777 8.42268 37.0434C8.71513 37.2046 9.07896 37.153 9.3151 36.9169L15.8683 30.3637C16.1612 30.0709 16.1612 29.596 15.8683 29.3031C15.5754 29.0102 15.1005 29.0102 14.8076 29.3031L10.5507 33.56C9.13508 31.5721 8.14922 29.2569 7.72863 26.75H9.75C10.1642 26.75 10.5 26.4142 10.5 26C10.5 25.5858 10.1642 25.25 9.75 25.25H4.48244C4.14848 25.25 3.85476 25.4708 3.76197 25.7916C3.60868 26.3216 3.40142 26.7165 3.19219 26.9632C2.9824 27.2105 2.8271 27.25 2.75 27.25C2.63484 27.25 2.32867 27.1371 2.00661 26.493C1.70697 25.8937 1.5 25.0134 1.5 24C1.5 22.9866 1.70697 22.1063 2.00661 21.507C2.32867 20.8629 2.63484 20.75 2.75 20.75C2.8271 20.75 2.9824 20.7895 3.19219 21.0368C3.40142 21.2835 3.60868 21.6784 3.76197 22.2084C3.85476 22.5292 4.14848 22.75 4.48244 22.75H10C10.4142 22.75 10.75 22.4142 10.75 22C10.75 21.5858 10.4142 21.25 10 21.25H7.7286C8.14917 18.7431 9.13501 16.4279 10.5506 14.4399L14.8076 18.6969C15.1005 18.9898 15.5754 18.9898 15.8683 18.6969C16.1612 18.404 16.1612 17.9291 15.8683 17.6363L9.3151 11.0831C9.07896 10.847 8.71513 10.7954 8.42268 10.9566C7.93953 11.223 7.51371 11.3557 7.19135 11.3822C6.86811 11.4087 6.73039 11.3268 6.67587 11.2723C6.59444 11.1909 6.45775 10.8946 6.68548 10.2114C6.89735 9.57575 7.37352 8.80689 8.09009 8.09032C8.80666 7.37375 9.57552 6.89759 10.2111 6.68571C10.8943 6.45798 11.1906 6.59467 11.2721 6.6761C11.3266 6.73062 11.4085 6.86834 11.3819 7.19158C11.3555 7.51394 11.2228 7.93976 10.9564 8.4229C10.7952 8.71536 10.8467 9.07919 11.0829 9.31533L14.9844 13.2168C15.2773 13.5097 15.7521 13.5097 16.045 13.2168C16.3379 12.9239 16.3379 12.4491 16.045 12.1562L14.4395 10.5507C16.4277 9.13477 18.7432 8.14868 21.2505 7.72805V14C21.2505 14.4142 21.5863 14.75 22.0005 14.75C22.4147 14.75 22.7505 14.4142 22.7505 14V4.48244C22.7505 4.14848 22.5297 3.85475 22.2089 3.76197C21.6789 3.60868 21.284 3.40142 21.0373 3.19219C20.79 2.9824 20.7505 2.8271 20.7505 2.75Z" fill="currentColor"/>
5
- </svg>
@@ -1,134 +0,0 @@
1
- <svg viewBox="0 0 52 52" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
2
- <path fill="currentColor" d="M30,4.9c0.7,0,0.9,0.4,1,0.7l0,0.1c0,0,0,0.1,0,0.1C31,6,31,6.3,30.9,6.4l-0.1,0.2c0,0,0,0.1,0,0.1l0,0l0,0
3
- l0.1,0.1l0,0l0.3,0.5l0,0l0.2,0.3c0.4,0.7,0.9,1.6,0.9,2.5c0,1.5,0.3,3.3,1.7,4.8l-0.1,0l0,0l-0.1,0c0,0-0.1,0-0.1,0l-0.2-0.1
4
- c-0.4-0.1-0.8-0.4-1.3-0.8c-0.1,0-0.1,0.2-0.1,0.5l0,0.3l0,0l0,0.3l0,0l0,0.4c0,0.1,0,0.3,0,0.4l0,0.4c0,0.1,0,0.1,0,0.2l0,0.4
5
- c0.1,0.6,0.2,1.1,0.4,1.4c0.2,0.2-0.2,0.1-0.6-0.3l-0.2-0.2l0,0l-0.3-0.3c-0.1-0.2-0.2-0.3-0.3-0.2L31,17.3l0,0l-0.1,0.1l0,0
6
- l-0.1,0.2l0,0l-0.1,0.2l0,0l-0.1,0.2c-0.2,0.8-0.4,2,0.3,3.2c0.1,0.2,0,0.2-0.2,0.1l-0.1-0.1l0,0l-0.2-0.1c-0.3-0.2-0.8-0.6-1-1
7
- c0-0.1-0.1,0-0.2,0.2l-0.1,0.2l0,0l-0.1,0.2l0,0l0,0.3c-0.2,0.9-0.2,2.4,0.5,3.7c0.1,0.2-0.1,0.1-0.3,0l-0.2-0.1l0,0l-0.2-0.1l0,0
8
- L29,24.4c0,0-0.1,0-0.1-0.1l-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2l0-0.1c-0.2-0.3-0.5,0.4,0,1.5l0.6,1.1l0,0l0.2,0.4l0,0l0.2,0.4
9
- c0.3,0.5,0.5,0.9,0.7,1.1c0.2,0.2,0.6,0.5,1.1,0.7l0.8,0.4c0.1,0.1,0.2,0.1,0.3,0.2l0.1,0l0,0l0.6,0.4l0,0l0.3,0.2
10
- c0.8,0.5,2,1.1,3.1,1.1c1.7,0,2.6-1.2,2.6-1.8c0,0,0,0,0,0l-0.1,0l0,0l-0.6-0.1l0,0l-0.2,0l0,0l-0.2-0.1l0,0l-0.3-0.1l0,0l-0.3-0.1
11
- c0,0-0.1,0-0.1,0l-0.3-0.1c-1.5-0.6-3.4-1.9-3.4-5.1c0-2.5,1.6-4.3,2.9-5.4l0.3-0.2l0,0l0.3-0.2l0,0l0.2-0.2l0,0l0.3-0.2l0,0
12
- l0.3-0.2l0.9,0.9l-0.3,0.2l0,0L38.2,19l0,0l-0.3,0.2c0,0-0.1,0.1-0.1,0.1l-0.3,0.3c-1.1,1-2.5,2.6-2.5,4.4c0,3,2.7,4.4,4.3,4.4
13
- l0-0.1l0,0l0-0.1l0,0l0-0.1l0,0l0-0.1l0,0l0-0.1c0,0,0,0,0-0.1l0-0.1l0,0l0-0.2c0-0.1,0-0.1,0-0.2l-0.1-0.2c-0.3-0.7-1-1.5-2.8-2.3
14
- l0.2,0l0,0l0.2,0l0,0l0.2,0c0.6,0,1.6,0.1,2.3,1.1c0.3,0.4,0.4,0.1,0.5,0c0.1-0.1,0.6-0.7,1.4-0.4l0,0l0,0L41,25.6c0,0,0,0,0,0.1
15
- l-0.1,0.1c-0.3,0.4-0.7,1.3-0.3,2.5l0.2,0l0,0l0.1,0l0,0l0.2-0.1c0,0,0.1,0,0.1,0l0.2-0.1c0.9-0.5,2.3-1.5,2.3-3.7
16
- c0-2-1.4-3.5-2.8-4.8l-0.4-0.4l0,0l-0.8-0.7c-0.1-0.1-0.1-0.1-0.2-0.2l-0.3-0.3c-0.2-0.1-0.3-0.3-0.4-0.4l-0.1-0.1
17
- c-0.2-0.2-0.4-0.5-0.6-0.7l-0.9-0.9c-1-1-1.9-2.1-2.1-3.7L35,12l0,0l-0.1,0c-0.3-0.2-1.1-0.6-1.1-1.9c0-0.8,0.5-1.6,1-2.2L35,7.6
18
- l0,0l0.2-0.2c0,0,0.1-0.1,0.1-0.1l0.2-0.2l0,0L35.7,7l0,0l0.1-0.1l0,0l0.1,0l0,0c0,0,0,0,0,0.1l-0.1,0.5l0,0l-0.1,0.2
19
- c-0.1,0.4-0.1,0.9,0.3,0.9c0.6,0,1.9-1.5,1.9-1.8c0-0.1,0.1,0,0.1,0.1l0,0.1l0,0l0,0.2l0,0l0,0.2l0,0l-0.1,0.2
20
- c-0.1,0.3-0.2,0.6-0.4,0.8l-0.1,0.1c-0.1,0.2-0.3,0.3-0.4,0.5l-0.6,0.7c-0.3,0.4-0.6,0.7-0.3,1c0.3,0.4,1-0.1,1.4-0.5l0.1-0.2
21
- c0,0,0.1-0.1,0.1-0.1l0-0.1c0-0.1,0.1-0.1,0,0l0,0.1l0,0l0,0.2l0,0l-0.1,0.2c0,0,0,0.1,0,0.1l-0.1,0.2c-0.2,0.5-0.6,1.1-1.2,1.4l0,0
22
- l0,0l0,0.1l0,0l0,0.1l0,0l0,0.1l0,0l0,0.1l0,0l0,0.1l0,0l0,0.1l0,0l0,0.1l0,0l0.1,0.1l0,0l0.1,0.2l0,0l0.1,0.2c0,0,0,0.1,0.1,0.1
23
- l0.1,0.2l0,0l0.2,0.2l0,0l0.2,0.2c0,0,0.1,0.1,0.1,0.1l0.2,0.3l0,0l0.3,0.3l0,0l0.3,0.3C37.9,15,38,15,38,15.1l0.3,0.3l0,0l0.4,0.4
24
- l0,0l0.4,0.4l0,0l0.5,0.4l0,0l0.5,0.4l0,0l0.4,0.4l0,0l0.6,0.5l0,0l0.5,0.4l0,0l0.5,0.4l0,0l0.5,0.5l0,0l0.1,0.1l0,0l0,0l0.1,0
25
- c0.1-0.1,0.2-0.2,0.2-0.5l0-0.1c0-0.6,0.2-1.2,0.5-1.4l0,0.4l0,0l0,0.3l0,0l0,0.5l0,0l0,0.4c0,0.8,0.1,1.7,0.4,1.9
26
- c0.3,0.1,0.4-0.2,0.4-0.6c0.1-0.4,0.4-0.8,0.5-0.7l-0.1,0.3l0,0l-0.1,0.4l0,0l0,0.3l0,0l0,0.3c-0.1,0.8-0.1,1.6,0.4,1.9
27
- c0.1,0,0.1,0,0.2-0.1l0.1-0.1c0.1-0.2,0.4-0.3,0.9-0.1L46.1,22l0,0l-0.1,0.1C45.6,22.3,45,23,45.1,24c0.1,1.4-1.2,5-4.5,5.5l0,0.1
28
- l0,0l0,0.1l0,0l-0.1,0.2l0,0L40.4,30l0,0l-0.1,0.2l0,0l-0.1,0.2c-0.5,0.9-1.5,2.2-4,1.9l0.2,0.2l0,0l0.2,0.2l0,0l0.3,0.3l0,0
29
- l0.2,0.3l0,0l0.2,0.3c0,0.1,0.1,0.1,0.1,0.2l0.2,0.3c0.9,1.3,1.8,3.2,1.7,5.3l-0.1-0.2l0,0l-0.1-0.4l0,0l-0.2-0.5l0,0l-0.2-0.5l0,0
30
- l-0.2-0.3c0-0.1-0.1-0.1-0.1-0.2L38.2,37l0,0L38,36.6l0,0l-0.2-0.4l0,0l-0.3-0.4l0,0l-0.3-0.4c-0.2-0.4-0.5-0.7-0.8-1.1l-0.4-0.4
31
- c-1-1.2-2.2-2.3-3.6-3.1l-0.3-0.2l0,0l0,0c-0.1,0-0.2,0.1-0.1,0.5c0.1,0.5-0.3,1.6-0.6,2.1c0,0.1-0.1,0.1-0.1,0.3l0,0.2
32
- c0,0,0,0.1,0,0.1l0,0.2l0,0l0,0.3c0,0,0,0.1,0,0.1l0,0.3l0,0l0,0.3c0.2,1.7,1.1,4,3.9,4.8c0.5,0.1,0.9,0.1,1.3,0.1l0.2,0l0,0l0.2,0
33
- l0,0l0.2-0.1l0,0l0,0.1l0,0l-0.1,0.1l0,0l-0.1,0.1l0,0L37,39.9c-0.4,0.3-1.1,0.7-2.5,0.7c-0.6,0-0.6,0.9,0.3,0.9c0,0,0,0,0,0.1
34
- l0,0.2l0,0l0,0.2c0,0,0,0.1,0,0.1l-0.1,0.3l0,0L34.5,43l0,0l-0.1,0.4l0,0l-0.1,0.4l0,0l-0.1,0.4l0,0l-0.2,0.4l0,0L33.8,45l0,0
35
- l-0.2,0.4c0,0.1-0.1,0.1-0.1,0.2l-0.2,0.4c-0.4,0.9-0.9,1.7-1.4,2.2c-0.3,0.2-0.1,0.3,0,0.4l0.1,0l0,0l0.1,0c0,0,0,0,0,0
36
- c0.1,0,0.2,0.1,0.4,0.2l0.2,0.1c0,0,0.1,0,0.1,0.1l0.2,0.1c0.1,0.1,0.2,0.1,0.3,0.2l-0.1,0c-0.2,0-0.4,0-0.4,0.1l0,0l0,0L32.8,50
37
- c-0.1,0.3-0.2,0.7-0.8,0.7c-0.8,0-1-0.8-1-1.2c0-0.4-0.4-0.4-0.6-0.4c-0.1,0-0.7,0.2-0.9,0.9l-0.1,0.3c-0.1,0.7-0.4,1.3-1,1.3
38
- c-0.7,0-0.9-0.5-0.9-0.9c0-0.1,0-0.1-0.1-0.1l-0.1,0c-0.1,0-0.3,0-0.5-0.1l0.3-0.2l0,0l0.2-0.1l0,0l0.3-0.2l0,0l0.3-0.2
39
- c0.5-0.4,0.9-0.8,0.8-1c-0.2-0.5-0.5-0.4-0.7-0.2L28,48.6l0,0l-0.1,0.1l0,0l-0.2,0.1c-0.3,0.2-0.8,0.5-1.2,0.6
40
- c-0.6,0.1-0.9-0.7-0.6-1.3l0.1-0.1c0.1-0.1,0-0.1-0.1-0.2l-0.2-0.1c-0.1-0.1-0.2-0.1-0.3-0.2l0.4,0l0,0l0.4,0l0,0l0.3,0
41
- c0.8,0,1.7,0,1.7-0.4c-0.1-0.6-0.6-0.6-0.9-0.5c-0.3,0.1-1.2,0-1.2-0.6c0-0.1,0.1-0.2,0.1-0.3l0.1-0.2c0.1-0.1,0.1-0.2,0.1-0.3
42
- c0-0.1-0.1-0.2-0.2-0.3l-0.1-0.1c0,0,0,0,0,0l0.1,0c0,0,0,0,0.1,0l0.2,0c0.2,0,0.5,0,0.8,0.1c0.2,0.1,0.4,0.2,0.6,0.5l0.4,0.4
43
- c0.4,0.4,0.9,0.9,1.3,0.9c0.8,0,1.5-1.2,1.5-3.6l0-0.9l0,0l0-0.4l0,0l0-0.3l0,0l0-0.3l0,0l0-0.2c-0.1-0.4-0.1-0.6-0.3-0.7l-0.1-0.1
44
- l0,0l-0.2-0.1l0,0l-0.1-0.1l0,0c0,0-0.1-0.1-0.1-0.2l0-0.2c0-0.1,0-0.3-0.2-0.4c-0.3-0.1-0.7,0.3-0.8,1.9l0,0.4c0,0.1,0,0.1,0,0.2
45
- l0,0.5l0,0l0,0.5l0,0L29.2,43l0,0l-0.1-0.2l0,0L29,42.6c0,0,0-0.1,0-0.1l-0.1-0.3l0,0l-0.1-0.3c-0.1-0.4-0.2-0.8-0.2-1.3
46
- c0-0.1,0-0.2,0-0.3l0-0.5c0-0.2,0-0.3-0.1-0.4c0,0-0.1,0-0.2,0.1l-0.1,0.1l0,0l-0.3,0.3c-0.3,0.3-0.7,0.7-1.2,0.9l0.1-0.2l0,0
47
- l0.1-0.2l0,0l0.1-0.2c0.2-0.4,0.4-1,0.4-1.5c0-0.1,0-0.2-0.1-0.3l0-0.1c0,0,0,0,0,0L27.4,38l0,0l-0.2-0.2l0,0l-0.1-0.1
48
- c-0.3-0.4-0.7-1.2-0.7-3.3c0-0.7,0.1-1.2,0.2-1.6l0.1-0.3c0.1-0.4,0.2-0.8,0.2-1.4c0-0.7-0.8-1.5-1.7-2.3l-0.4-0.3l0,0l-0.4-0.3l0,0
49
- L24.2,28l0,0l-1.3-0.9l0,0l-0.4-0.3l0,0l-0.4-0.3c-0.1-0.1-0.1-0.1-0.2-0.2l-0.5-0.4l0,0l-0.3-0.3l0,0l-0.3-0.3l0,0L20.5,25l0,0
50
- l-0.2-0.2l0,0l-0.1-0.1c0,0,0,0,0-0.1c-0.1-0.1,0.1-0.3,0.2-0.5l0.6-0.7l0,0l0.2-0.3c0.3-0.4,0.5-0.8,0.2-1
51
- c-0.4-0.3-0.6-0.1-0.9,0.3l-0.1,0.2l0,0l-0.2,0.4c0,0.1-0.1,0.1-0.1,0.2c-0.4,0.6-1.1,1.2-1.4,1.4c-0.1,0-0.1-0.1-0.1-0.3l0-0.8l0,0
52
- l0-0.3c0-0.5-0.1-1-0.4-1c-0.7,0-0.8,0.7-0.7,1l0,0.1c0,0.1,0,0.1-0.2,0.1l-0.2,0c-0.3,0-0.6,0.1-0.9,0.4L16.1,24c0,0,0,0.1-0.1,0.1
53
- l-0.1,0.2c-0.2,0.4-0.5,0.9-0.6,1.7l0-0.1l0,0l0-0.1c-0.1-0.3-0.2-1,0-1.6l0.1-0.2c0-0.1,0-0.1-0.2-0.1l-0.2,0c0,0-0.1,0-0.1,0
54
- l-0.2,0l0,0l-0.3,0l0,0L14,23.9l0,0L13.6,24l0,0l-0.4,0.1l0,0l-0.7,0.1l0,0l-1,0.2c-0.1,0-0.2,0-0.3,0.1c-0.3,0.1-0.4,0.2-0.4,0.7
55
- l0,0.4l0,0l0,0.4l0,0l0,0.4c0,0.4,0,0.6,0,0.9c0,0.1-0.1,0-0.1-0.1l0-0.1l0,0l0-0.1l0,0l0-0.1l0,0c0,0,0,0-0.1,0l-0.1,0l0,0l-0.2,0
56
- c-0.4,0.1-1,0.1-1-0.5c0-0.5,0.1-0.6,0.3-0.7l0.1-0.1c0.1-0.1,0.2-0.1,0.2-0.3c0-0.6-0.4-0.9-0.9-0.9c-0.3,0-0.5,0.2-0.7,0.4
57
- l-0.2,0.2c-0.3,0.3-0.6,0.6-1,0.6c-0.9,0-1-0.6-1-0.9s0.1-0.4,0.1-0.6c0-0.2-0.2-0.4-0.4-0.4c-0.1,0,0.1-0.1,0.4-0.1l0.1,0l0,0
58
- l0.6,0.1c0.7,0.1,1.6,0,1.6-0.6c0-0.2-0.2-0.3-0.4-0.2l-0.3,0c-0.1,0-0.1,0-0.2,0l-0.4-0.1c-0.5-0.1-1.2-0.3-1.2-1.1
59
- c0-0.4,0.4-0.6,0.6-0.7l0.1,0l0,0l0,0c0-0.1,0.1-0.3,0.1-0.5c0-0.1,0-0.1,0.2,0L7,20.3l0,0l0.2,0.1l0,0l0.3,0.2l0,0L7.9,21l0,0
60
- l0.3,0.3l0,0l0.1,0.1c0,0,0.1,0.1,0.1,0.1c0.2,0.3,0.5,0.2,0.6,0.1l0.1,0c0,0,0,0,0,0c0.1-0.1,0.3-0.4-0.2-0.7
61
- c-0.6-0.3-0.6-0.6-0.6-1.1c0-0.4,0.3-0.5,0.5-0.6l0.1,0c0,0,0,0,0,0c0.1,0,0.2-0.4,0.1-0.6l0-0.1c-0.1-0.3,0.7,0.4,1.1,1.2
62
- c0,0.1,0.1,0.2,0.1,0.3l0,0.5c0,0.5,0.1,0.9,0.7,1.2l0.2,0l0,0l0.1,0l0,0l0.1,0c0,0,0,0,0.1,0l0.1,0c0,0,0.1,0,0.1,0l0.2-0.1l0,0
63
- l0.3-0.1c0,0,0.1,0,0.2-0.1l0.2-0.1l0,0l0.6-0.2l0,0l1.8-0.7l0,0l2.8-1c0.2-0.1,0.6-0.3,0.4-0.6c-0.2-0.4-0.9-0.5-1.9,0.2l-0.1,0.1
64
- c-0.2,0.2-0.3,0.1-0.2-0.1l0.1-0.1l0,0l0.1-0.2c0,0,0-0.1,0.1-0.1l0.1-0.2c0,0,0-0.1,0.1-0.1l0.2-0.2c0.1-0.1,0.1-0.2,0.2-0.2
65
- l0.2-0.2c0.7-0.9,1.8-1.8,2.8-1.8c0.4,0,0.5-0.2,0.5-0.4l0-0.1c0-0.2-0.2-0.4-0.9-0.4c-0.9,0-2.1,0.9-2.6,1.8c0,0-0.1,0-0.2,0
66
- l-0.3-0.2c-0.2-0.2-0.6-0.3-1.1-0.3c-0.6,0-1,0.1-1.3,0.1l-0.2,0.1l0,0l-0.2,0c0,0-0.1,0-0.1,0c-0.2,0,0.5-1,1.7-1
67
- c0.2,0,0.2-0.3-0.2-0.6l-0.1-0.1c-0.2-0.1-0.5-0.5-0.8-0.8l-0.3-0.4l0,0l-0.6-0.8c-0.1-0.1-0.1-0.1-0.2-0.2
68
- c-0.2-0.2-0.4,0.1-0.7,0.6l-0.1,0.2l0,0l-0.1,0.3l0,0l-0.1,0.3l0,0l-0.1,0.3c0,0.1-0.1,0-0.1-0.1l0-0.1l0,0l0-0.1c0,0,0-0.1,0-0.1
69
- c0-0.1-0.1-0.1-0.1-0.1l-0.2-0.1c-0.3-0.1-0.6-0.3-0.6-0.9c0-0.7,0.4-0.8,0.8-0.7l0.1,0l0,0l0.2,0.1c0,0,0,0,0.1,0
70
- c0.4,0.1,0.8-0.4,0.7-0.8C12,11,11.6,10.5,11,10.5l-0.1,0c-0.7,0.1-1.7-0.4-1.7-1.2c0-0.4,0.2-0.6,0.4-0.7l0.2-0.1c0,0,0.1,0,0.1,0
71
- C10,8.4,10,8,10,7.9c0,0,0,0,0.1,0L10.2,8l0,0l0.2,0.1l0,0l0.2,0.2l0,0l0.2,0.2c0,0,0.1,0.1,0.1,0.1l0.2,0.2
72
- c0.1,0.1,0.1,0.1,0.2,0.2l0.3,0.3c0.3,0.3,0.4,0.4,0.6,0.3c0.2-0.1,0.3-0.6-0.4-1.2c-0.7-0.6-0.6-1.3-0.3-1.7c0,0,0.1,0,0.2,0
73
- L12,6.7c0.3,0,0.6,0,0.7-0.2c0-0.2,0.1-0.1,0.1,0l0,0.1l0,0l0,0.2l0,0L12.9,7l0,0l0,0.4l0,0l0,0.4l0,0L13,8c0,0,0,0.1,0,0.1l0,0.2
74
- C13,8.9,13.2,9,13.4,9c0.2,0,0.4-0.1,0.3-1c-0.1-0.8,0.1-1,0.3-1.1l0.1-0.1l0,0c0.2-0.1,0.5-0.1,0.7,0.1c0.2,0.2,0.6-0.1,0.6-0.4
75
- l0,0.1l0,0l0,0.1l0,0l0,0.2c0.1,0.3,0.1,0.7-0.2,1.1c-0.1,0.1-0.1,0.2-0.2,0.2l-0.4,0.4c-0.4,0.4-0.7,0.9-0.3,1.7l0.1,0.2l4,4.1l0,0
76
- c0.1,0,0.2-0.1,0-0.3c-0.2-0.3-0.2-0.6,0-0.8l0-0.1l0.1,0.1l0,0l0.2,0.1l0,0l0.2,0.1c0,0,0.1,0,0.1,0.1l0.2,0.1
77
- c0.7,0.3,1.7,0.6,3.2,0.4c2.7-0.3,3.8-2.2,3.4-2.6L26,11.8l0,0L25.8,12c0,0-0.1,0.1-0.1,0.1l-0.2,0.2C25,12.6,24.4,13,23.8,13
78
- c-1.1,0-1.7-1.1-1.5-1.8l0-0.1l0.1,0.1l0,0l0.1,0.1c0.2,0.2,0.7,0.5,1.3,0.5c0.9,0,1.9-1.1,1.7-1.7c0-0.1-0.1-0.1-0.3,0L25,10l0,0
79
- l-1,0.3l0,0l-0.4,0.1c-0.1,0-0.1,0-0.2,0.1l-0.4,0.1c-0.7,0.2-1.7,0.3-2.7,0.3c-3.2,0-3.7-3.2-1.4-4.5l-0.1,0.1l0,0l-0.1,0.2l0,0
80
- l0,0.1l0,0l0,0.2l0,0l0,0.2l0,0l0,0.2l0,0l0,0.2c-0.2,1.1,0.1,2.5,2.7,2.5c0.5,0,1,0,1.4-0.1l0.4-0.1c0.1,0,0.3,0,0.4-0.1l0.4-0.1
81
- l0,0l0.3-0.1l0,0l0.3-0.1l0,0l0.2-0.1l0,0l0.2-0.1l0,0l0.3-0.1l0,0l0-0.1l0,0l0-0.1c-0.1-0.3-0.5-1-1.4-1c-0.9,0-1.3,0.7-1.5,1
82
- l-0.1,0.1l0,0l0,0.1l0,0l-0.1-0.1l0,0L22,9.3c-0.3-0.2-0.8-0.8-0.6-1.5c0-0.1,0.1-0.1,0.2-0.1l0.2,0l0,0l0.2,0
83
- c0.3-0.1,0.6-0.2,0.6-0.6c0-0.2-0.1-0.3-0.2-0.3l-0.1,0l0,0c-0.1,0-0.2,0.1-0.3,0.2l-0.1,0.2c-0.1,0.1-0.1,0.2-0.3,0.2
84
- c-0.4,0-0.4-1.2,0.4-1.2l0.1,0c0.2,0,0.5,0,0.6-0.2l0-0.1c0-0.3,0.7-0.6,2.2-0.7l0.5,0c0.2,0,0.5,0,0.8,0c1.1,0,1.8,0.2,2.2,0.3
85
- l0.2,0.1l0,0l0.1,0.1l0,0l0.1,0.1l0,0l0.1,0.1l0,0l0,0l0,0l0-0.1C29,5.4,29.3,4.9,30,4.9z M19.4,27.9l1.3,0l0,0l0.9,0l0,0l0.6,0l0,0
86
- l0.4,0l0,0l0.3,0l0,0l0.2,0l0,0l0.1,0l0,0l0.1,0l0,0l0,0l0,0c0.1,0,0.1,0.1,0.1,0.2l0,0.1c0,0.1,0,0.3,0.3,0.4
87
- c0.4,0.1,1.6,1.1,1.6,1.6c0,0.1-0.1,0.3-0.2,0.4L24.8,31c-0.1,0.2-0.2,0.4,0,0.8c0.5,0.7,0.9,0.7,1.2,0.7l0,0c0,0,0,0,0,0l-0.1,0
88
- c0,0,0,0-0.1,0l-0.1,0.1c-0.3,0.1-0.9,0.2-1.8,0.2l-0.2,0c-0.4,0-0.8-0.1-1.2-0.2l-1.1-0.2c-0.6-0.1-1.1-0.2-1.7-0.1l-0.1,0l0,0
89
- l-0.2,0c-1.1,0.2-1.8,1.2-1.3,4.4l0,0.3l0,0l0,0c0,0.1,0.2,0.2,0.6,0.2c0.6,0,2.1,0.7,3,2.2l-0.4-0.2l0,0L21.3,39l0,0L21,38.9l0,0
90
- l-0.3-0.1c-0.8-0.4-1.6-0.7-1.9-0.2c-0.2,0.4-0.1,0.7,0.2,0.9c0.1,0-0.1,0.1-0.4,0.2l-0.3,0.1l0,0l-0.5,0.2l0,0L17.3,40l0,0l-1,0.3
91
- l0,0l-1.8,0.5c-0.3,0.1-0.4,0.3,0.2,0.7l0.1,0.1l0,0l0.3,0.2l0,0l0.3,0.2l0,0l0.1,0.1c0.1,0.1,0.2,0.2,0.1,0.2l-0.3,0
92
- c-0.3,0-0.6,0-0.6,0.2c0,0.2-0.1,0.7-0.6,0.7s-0.8-0.3-0.8-0.7l0-0.3l0,0l0-0.2c0-0.4-0.2-0.7-0.6-0.7c-0.6,0-1,0.6-1,1.7
93
- c0,0.8-0.8,1-1.1,1S10,43.9,10,43.4c0-0.1-0.2-0.1-0.4-0.1l-0.2,0l0,0c-0.1,0,0-0.1,0.2-0.3l0.2-0.1l0,0l0.3-0.2l0,0l0.3-0.2l0,0
94
- L11,42l0,0c0.2-0.1,0.2-0.5,0.1-0.6L11,41.3c-0.2-0.1-0.4-0.2-0.8,0.1c-0.4,0.4-0.9,0.7-1.3,0.7c-0.4,0-0.8-0.4-0.8-0.8l0-0.1l0,0
95
- l0-0.4c0-0.2,0-0.5-0.3-0.6l-0.1-0.1c-0.1-0.1-0.1-0.1,0.1-0.1l0.2,0l0,0l0.7,0l0,0l0.8,0l0,0l0.3,0l0,0l0.3,0
96
- c0.4,0,0.8-0.1,0.8-0.2c0-0.5-0.5-0.6-0.7-0.6l-0.3,0c-0.5,0-1.2,0-1.2-0.7c0-0.2,0.1-0.3,0.2-0.4L9,38.1C9,38,9.1,38,9.1,37.9
97
- c0-0.2-0.3-0.2-0.4-0.2l0,0l0,0l0.1-0.1l0,0l0.1-0.1c0.3-0.1,0.9-0.3,1.5,0.2c0.1,0.1,0.3,0.3,0.4,0.4l0.2,0.3l0,0l0.2,0.3
98
- c0.3,0.4,0.6,0.7,1.1,0.7l0.2,0c1-0.1,3.4-1,3.4-3.7c0-0.8-0.2-1.5-0.4-2.1l-0.1-0.3l0,0l-0.1-0.3l0,0l-0.3-0.6c0-0.1,0-0.1,0-0.1
99
- c0-0.1,0-0.1,0.1-0.1l0.2,0c0.2,0,0.5-0.1,0.5-0.5c0-0.8-4.8-0.9-6.3,0.6l0-0.1l0,0l0-0.1l0,0l0-0.1c0,0,0-0.1,0-0.1l0.1-0.2
100
- c0.3-0.5,1-1.2,2.6-1.2c0.4,0,0.7,0.1,0.9,0.1l0.3,0.1c0.3,0.1,0.5,0.1,0.8,0c0.1,0,0.1-0.1,0-0.2L13.8,30c-0.3-0.3-0.6-0.6-0.5-1.2
101
- l0.1,0.1c0.3,0.3,1,0.9,1.8,0.9c0.1,0,0.1,0,0.2-0.1l0.1-0.1l0,0l0.2-0.3l0,0l0.2-0.2l0,0l0.2-0.2C16.7,28.5,17.7,27.9,19.4,27.9z
102
- M24.3,21.9c-0.2,0-0.4,0.1-0.4,0.3l0,0.1l0,0l0,0.1l0,0l0,0.1c0,0,0,0.1-0.1,0.1l-0.1,0.2l0,0l-0.1,0.2c-0.3,0.4-0.7,0.9-1.6,1.3
103
- c-0.1,0.1-0.2,0.3-0.1,0.5c0.1,0.1,0.2,0.2,0.4,0.2l0,0c0,0,0.1,0,0.1,0c1.3-0.6,1.9-1.4,2.1-2l0.1-0.2c0,0,0-0.1,0-0.1l0-0.1l0,0
104
- l0-0.2l0,0l0-0.1l0,0C24.6,22.1,24.5,21.9,24.3,21.9z M27.1,21.7L27.1,21.7c-0.2,0-0.3,0.1-0.4,0.3l0,0.2l0,0l0,0.1l0,0l0,0.1
105
- c-0.1,0.5-0.4,1.4-1.5,2c-0.1,0.1-0.2,0.3-0.1,0.5c0.1,0.1,0.2,0.2,0.4,0.2l0,0c0,0,0.1,0,0.1,0c1.2-0.6,1.7-1.6,1.9-2.3l0-0.2
106
- c0,0,0-0.1,0-0.1l0-0.2l0,0l0-0.1l0,0l0-0.1c0,0,0,0,0,0C27.4,21.8,27.3,21.7,27.1,21.7z M22.6,17.1c-0.1,0.2,0,0.4,0.1,0.6l0.1,0.1
107
- c0.1,0.1,0.4,0.4,0.5,0.8c0.2,0.7,0,1.7-0.6,2.7c-0.1,0.1-0.1,0.4,0.1,0.5c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0,0.3-0.1,0.4-0.2
108
- c0.7-1.2,1-2.3,0.8-3.2l0-0.2c-0.1-0.6-0.5-0.9-0.7-1.1l-0.1-0.1l0,0L23.1,17l0,0C22.9,16.9,22.6,16.9,22.6,17.1z M20.7,17.4
109
- l-0.2,0.1l0,0l-0.1,0.1l0,0l-0.1,0.1l0,0l-0.2,0.2c-0.5,0.5-1,1.4-1.2,2.9c0,0.2,0.1,0.4,0.3,0.4l0.1,0h0.1c0.1,0,0.3-0.1,0.4-0.3
110
- l0-0.1c0.1-1.4,0.7-2.2,1.1-2.6l0.1-0.1c0,0,0,0,0,0l0.1-0.1l0,0l0,0c0,0,0,0,0,0c0.2-0.1,0.2-0.4,0.1-0.5
111
- C21.1,17.4,20.9,17.4,20.7,17.4z M25.4,14.8c-0.1,0.2-0.1,0.4,0.1,0.5l0.1,0.1l0,0l0.1,0.1l0,0l0.1,0.1c0,0,0,0,0,0.1l0.1,0.1
112
- c0.3,0.5,0.6,1.3,0.3,2.8l-0.1,0.3c-0.1,0.2,0,0.3,0.2,0.4l0.1,0h0.1c0.1,0,0.3-0.1,0.4-0.3c0.5-2.2-0.2-3.4-0.6-3.9l-0.1-0.1l0,0
113
- l-0.1-0.1l0,0L26,14.7l0,0l-0.1-0.1l0,0C25.7,14.6,25.5,14.6,25.4,14.8z M41.3,6.6L41.3,6.6L41.3,6.6L41.3,6.6l0.2,0.4l0,0l0.1,0.2
114
- c0.3,0.6,0.9,1.3,1.5,1.2c0.2,0,0.2-0.3,0.1-0.6l-0.1-0.4l0,0l-0.1-0.2l0,0l0-0.2c0-0.1,0-0.1,0-0.2l0.2,0.2l0,0l0.2,0.2l0,0
115
- l0.2,0.2c0.3,0.3,0.6,0.6,0.9,0.8c0.6,0.4,0.7,1.6,0.4,2.3C44.6,11,44.1,11.5,44,12l0,0.1c-0.1,0.3-0.3,0.7-0.6,1.3l-0.2,0.4
116
- c-0.2,0.3-0.3,0.5-0.6,0.8L42.2,15c-0.3,0.4-0.7,0.8-1.1,1.2l-0.2,0.2l-1-0.9l0.3-0.3l0,0l0.3-0.3l0,0l0.3-0.3c0,0,0.1-0.1,0.1-0.1
117
- l0.3-0.3l0,0l0.3-0.3c0.7-0.8,1.3-1.6,1.2-2.2l-0.1,0l0,0l-0.1-0.1c0,0,0,0-0.1,0l-0.2-0.1c-0.4-0.3-1-0.9-0.9-1.8l0.1,0.2
118
- c0,0,0,0,0.1,0.1l0.1,0.2c0.3,0.4,0.8,0.8,1.1,0.5c0.5-0.3,0.1-1.1-0.5-1.7l-0.2-0.2l0,0L42,8.5c0,0-0.1-0.1-0.1-0.1
119
- c-0.4-0.4-0.6-1-0.6-1.4l0-0.2l0,0L41.3,6.6L41.3,6.6z M27.1,9.9c-0.1,0.2,0,0.4,0.2,0.5c1.1,0.4,2.1,1,2.2,1.3l-0.1,0
120
- c0,0,0,0-0.1,0l-0.1,0c0,0-0.1,0-0.1,0l-0.2,0c0,0-0.1,0-0.1,0l-0.3,0l0,0l-0.5,0c-0.1,0-0.3,0.1-0.4,0.2c-0.1,0.1,0,0.2,0,0.4
121
- l0.1,0.2l0,0l0.1,0.1l0,0l0,0.1c0,0,0,0,0,0.1l0,0.2c0,0,0,0.1,0,0.1l0,0.2c0,0,0,0.1,0,0.1l0,0.3c0,0.4,0,0.9-0.1,1.4
122
- c0,0.2,0.1,0.3,0.4,0.4l0.1,0l0.1,0c0.1,0,0.3-0.2,0.3-0.4c0-0.2,0-0.4,0-0.5l0-0.5c0-0.1,0-0.1,0-0.2l0-0.4c0-0.5-0.1-0.8-0.2-1.1
123
- c0.6,0,1.1-0.1,1.4-0.4c0.1-0.1,0.2-0.3,0.2-0.5c0-0.7-1-1.3-1.8-1.7l-0.3-0.1l0,0l-0.3-0.1l0,0l-0.2-0.1c0,0-0.1,0-0.1,0
124
- C27.4,9.6,27.2,9.7,27.1,9.9z M26.2,6l-1.8,0c-0.3,0-0.3,0.1-0.4,0.2l0,0l0,0c0,0.2,0.1,0.3,0.1,0.4l0.1,0.1h1l0.1,0
125
- c0.1,0,0.3,0,0.3,0.1c0,0.1-0.3,0.2-0.6,0.3l-0.2,0l0,0l-0.3,0l0,0l0.1,0.1c0.1,0.2,0.3,0.3,0.7,0.3c0.6,0,0.8-0.5,0.8-0.9l0-0.1
126
- l0,0l0-0.1l0,0l0,0c0.1,0,0.4,0,0.4-0.2C26.6,6.1,26.4,6,26.2,6L26.2,6z M25.8,0.5L25.8,0.5l0.3,0.1l0,0l0.2,0.2
127
- c0,0,0.1,0.1,0.1,0.1L26.7,1c0.4,0.3,0.8,0.7,0.8,1.1c0,0.5-0.5,0.7-0.8,0.8l-0.1,0l0,0l0,0l0,0c0.2,0.5,0.6,0.7,0.8,0.8l0.1,0h0.8
128
- c0.6,0,0.6-0.5,0.6-0.7l0-0.2c0,0,0,0,0,0l-0.1,0c-0.2,0-0.6-0.2-0.6-0.6c0-0.5,0.7-0.9,1.4-1.1L29.8,1l0,0L30,0.9l0,0l0.3-0.1
129
- l-0.2,0.8l-0.1,0c-0.2,0-0.4,0.2-0.4,0.5c0,0.1,0.1,0.2,0.2,0.3l0.1,0l-0.6,2h-6.6l-0.5-1.9c0.1-0.1,0.3-0.2,0.3-0.4
130
- c0-0.3-0.2-0.5-0.4-0.5l-0.1,0l-0.3-0.9c0.6,0.1,2.1,0.7,2.1,1.4c0,0.5-0.4,0.7-0.6,0.7l-0.1,0l0,0c0,0.6,0.4,0.8,0.6,0.8l0.1,0l0,0
131
- l0.1,0h0.9c0.5,0,0.6-0.6,0.6-0.8l0-0.1l0,0l-0.1,0l0,0l-0.2,0c-0.3-0.1-0.6-0.2-0.6-0.5c0-0.5,0.4-0.9,0.8-1.3l0.2-0.2l0,0l0.2-0.2
132
- l0,0L25.8,0.5L25.8,0.5z M26,1.7c-0.3,0-0.5,0.2-0.5,0.5s0.2,0.5,0.5,0.5s0.5-0.2,0.5-0.5S26.3,1.7,26,1.7z">
133
- </path>
134
- </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 8C2 7.86739 2.05268 7.74021 2.14645 7.64645C2.24021 7.55268 2.36739 7.5 2.5 7.5H13.5C13.6326 7.5 13.7598 7.55268 13.8536 7.64645C13.9473 7.74021 14 7.86739 14 8C14 8.13261 13.9473 8.25979 13.8536 8.35355C13.7598 8.44732 13.6326 8.5 13.5 8.5H2.5C2.36739 8.5 2.24021 8.44732 2.14645 8.35355C2.05268 8.25979 2 8.13261 2 8Z" fill="currentColor"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-diagram-3" viewBox="0 0 16 16">
2
- <path fill-rule="evenodd" d="M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H14a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 2 7h5.5V6A1.5 1.5 0 0 1 6 4.5zM8.5 5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5zM0 11.5A1.5 1.5 0 0 1 1.5 10h1A1.5 1.5 0 0 1 4 11.5v1A1.5 1.5 0 0 1 2.5 14h-1A1.5 1.5 0 0 1 0 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5A1.5 1.5 0 0 1 7.5 10h1a1.5 1.5 0 0 1 1.5 1.5v1A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z"/>
3
- </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_1014)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24 0.250854C21.6528 0.250854 19.75 2.15364 19.75 4.50085C19.75 6.59215 21.2605 8.33065 23.25 8.68489V32.8749L14.25 26.551V21.9452C16.2395 21.591 17.75 19.8525 17.75 17.7612C17.75 15.4139 15.8472 13.5112 13.5 13.5112C11.1528 13.5112 9.25 15.4139 9.25 17.7612C9.25 19.8525 10.7605 21.591 12.75 21.9452V27.3303L23.25 34.7081V39.3168C21.2605 39.6711 19.75 41.4096 19.75 43.5009C19.75 45.8481 21.6528 47.7509 24 47.7509C26.3472 47.7509 28.25 45.8481 28.25 43.5009C28.25 41.4096 26.7395 39.6711 24.75 39.3168V29.4829C24.8462 29.4608 24.9395 29.4192 25.0242 29.3572L34.25 22.6031V17.2272C36.2395 16.873 37.75 15.1345 37.75 13.0432C37.75 10.696 35.8472 8.79321 33.5 8.79321C31.1528 8.79321 29.25 10.696 29.25 13.0432C29.25 15.1345 30.7605 16.873 32.75 17.2272V21.8423L24.75 27.6989V8.68489C26.7395 8.33066 28.25 6.59215 28.25 4.50085C28.25 2.15364 26.3472 0.250854 24 0.250854ZM21.25 4.50085C21.25 2.98207 22.4812 1.75085 24 1.75085C25.5188 1.75085 26.75 2.98207 26.75 4.50085C26.75 6.01964 25.5188 7.25085 24 7.25085C22.4812 7.25085 21.25 6.01964 21.25 4.50085ZM24 40.7509C22.4812 40.7509 21.25 41.9821 21.25 43.5009C21.25 45.0196 22.4812 46.2509 24 46.2509C25.5188 46.2509 26.75 45.0196 26.75 43.5009C26.75 41.9821 25.5188 40.7509 24 40.7509ZM33.5 10.2932C31.9812 10.2932 30.75 11.5244 30.75 13.0432C30.75 14.562 31.9812 15.7932 33.5 15.7932C35.0188 15.7932 36.25 14.562 36.25 13.0432C36.25 11.5244 35.0188 10.2932 33.5 10.2932ZM10.75 17.7612C10.75 16.2424 11.9812 15.0112 13.5 15.0112C15.0188 15.0112 16.25 16.2424 16.25 17.7612C16.25 19.2799 15.0188 20.5112 13.5 20.5112C11.9812 20.5112 10.75 19.2799 10.75 17.7612Z" fill="currentColor"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_100_1014">
7
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
8
- </clipPath>
9
- </defs>
10
- </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 fill-rule="evenodd" clip-rule="evenodd" d="M36.6981 5.70843C36.6981 8.86062 34.1427 11.416 30.9905 11.416C27.8383 11.416 25.283 8.86062 25.283 5.70843C25.283 2.55624 27.8383 0.00088501 30.9905 0.00088501C34.1427 0.00088501 36.6981 2.55624 36.6981 5.70843ZM35.1414 5.70843C35.1414 8.00093 33.283 9.85938 30.9905 9.85938C28.698 9.85938 26.8396 8.00093 26.8396 5.70843C26.8396 3.41593 28.698 1.55749 30.9905 1.55749C33.283 1.55749 35.1414 3.41593 35.1414 5.70843Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M5.25 9.75089C5.25 9.33667 5.58579 9.00089 6 9.00089H9.98156C11.7135 9.00089 13.2201 10.187 13.6267 11.8705L15.5918 20.0067C15.7274 20.0028 15.8635 20.0009 16 20.0009C16.7698 20.0009 17.5251 20.063 18.2611 20.1825C18.4201 19.5261 18.5834 18.8916 18.7501 18.2924C19.3027 16.3053 20.3063 13.9039 21.2488 11.8487C22.5046 9.1106 26.2145 9.06844 27.6976 11.5965L33.5952 21.6497L42.5272 23.3087C44.1024 23.6013 45.0839 25.1863 44.6437 26.7269C44.2783 28.0059 43.0408 28.8323 41.7194 28.6799L39.4516 28.4182L44.8955 41.3997C45.5159 42.8792 44.827 44.5822 43.3524 45.2142C42.0342 45.7792 40.5009 45.3036 39.7338 44.0919L32.6803 32.9511C32.6346 32.8788 32.5513 32.8393 32.4663 32.8496L29.9747 33.1516C29.9915 33.4325 30 33.7157 30 34.0009C30 41.7329 23.732 48.0009 16 48.0009C8.26801 48.0009 2 41.7329 2 34.0009C2 26.9206 7.25587 21.068 14.0789 20.1316L12.1687 12.2226C11.9247 11.2125 11.0207 10.5009 9.98156 10.5009H6C5.58579 10.5009 5.25 10.1651 5.25 9.75089ZM29.7958 31.6053L32.279 31.3043C32.9604 31.2217 33.6284 31.5385 33.9955 32.1184L41.0489 43.2592C41.4073 43.8252 42.1235 44.0474 42.7392 43.7835C43.428 43.4883 43.7498 42.6928 43.46 42.0017L37.6779 28.2135L31.2153 27.4679C30.1334 27.343 29.158 26.7574 28.5392 25.8613L25.7557 21.83C25.5115 21.4763 25.6002 20.9915 25.9539 20.7473C26.3077 20.5031 26.7924 20.5918 27.0366 20.9456L29.8201 24.9768C30.184 25.5038 30.7575 25.8481 31.3937 25.9215L41.8979 27.1335C42.4623 27.1987 42.9909 26.8456 43.147 26.2993C43.3351 25.6412 42.9158 24.9641 42.2429 24.8391L32.6122 23.0504L26.355 12.3842C25.4676 10.8716 23.3609 10.9774 22.6637 12.4976C21.7288 14.5362 20.768 16.846 20.2498 18.7094C20.0908 19.2811 19.9344 19.8878 19.7816 20.5176C24.9267 21.9576 28.8748 26.2635 29.7958 31.6053ZM16 46.5009C22.9036 46.5009 28.5 40.9044 28.5 34.0009C28.5 27.0973 22.9036 21.5009 16 21.5009C9.09644 21.5009 3.5 27.0973 3.5 34.0009C3.5 40.9044 9.09644 46.5009 16 46.5009Z" fill="currentColor"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33 48.0009C35.2091 48.0009 37 46.21 37 44.0009C37 41.7917 35.2091 40.0009 33 40.0009C30.7909 40.0009 29 41.7917 29 44.0009C29 46.21 30.7909 48.0009 33 48.0009ZM33 46.5009C34.3807 46.5009 35.5 45.3816 35.5 44.0009C35.5 42.6202 34.3807 41.5009 33 41.5009C31.6193 41.5009 30.5 42.6202 30.5 44.0009C30.5 45.3816 31.6193 46.5009 33 46.5009Z" fill="currentColor"/>
5
- </svg>
@@ -1,7 +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="M30 26.0615C30.2929 25.7687 30.2929 25.2938 30 25.0009C29.7071 24.708 29.2322 24.708 28.9393 25.0009L22.5 31.4402L21.0607 30.0009C20.7678 29.708 20.2929 29.708 20 30.0009C19.7071 30.2938 19.7071 30.7687 20 31.0615L21.7929 32.8544C22.1834 33.245 22.8166 33.245 23.2071 32.8544L30 26.0615Z" fill="currentColor"/>
3
- <path d="M30 8.00088C30.2929 8.29378 30.2929 8.76865 30 9.06155L23.2071 15.8544C22.8166 16.245 22.1834 16.245 21.7929 15.8544L20 14.0615C19.7071 13.7687 19.7071 13.2938 20 13.0009C20.2929 12.708 20.7678 12.708 21.0607 13.0009L22.5 14.4402L28.9393 8.00088C29.2322 7.70799 29.7071 7.70799 30 8.00088Z" fill="currentColor"/>
4
- <path d="M23 24.0009C23.9228 24.0009 24.8039 24.1794 25.6106 24.5039C26.0846 24.6945 26.1643 25.3014 25.8031 25.6627C25.5679 25.8978 25.2112 25.9524 24.8991 25.8376C24.3072 25.6198 23.6675 25.5009 23 25.5009C19.9624 25.5009 17.5 27.9633 17.5 31.0009C17.5 34.0385 19.9624 36.5009 23 36.5009C26.0376 36.5009 28.5 34.0385 28.5 31.0009C28.5 30.8399 28.4931 30.6806 28.4795 30.5232C28.4571 30.2619 28.5379 29.9989 28.7234 29.8134C29.155 29.3818 29.8801 29.5667 29.9515 30.1729C29.9835 30.4444 30 30.7207 30 31.0009C30 34.8669 26.866 38.0009 23 38.0009C19.134 38.0009 16 34.8669 16 31.0009C16 27.1349 19.134 24.0009 23 24.0009Z" fill="currentColor"/>
5
- <path d="M25.8031 8.66266C26.1643 8.30142 26.0846 7.69452 25.6106 7.5039C24.8039 7.17944 23.9228 7.00089 23 7.00089C19.134 7.00089 16 10.1349 16 14.0009C16 17.8669 19.134 21.0009 23 21.0009C26.866 21.0009 30 17.8669 30 14.0009C30 13.7207 29.9835 13.4444 29.9515 13.1729C29.8801 12.5667 29.155 12.3818 28.7234 12.8134C28.5379 12.9989 28.4571 13.2619 28.4795 13.5232C28.4931 13.6806 28.5 13.8399 28.5 14.0009C28.5 17.0385 26.0376 19.5009 23 19.5009C19.9624 19.5009 17.5 17.0385 17.5 14.0009C17.5 10.9633 19.9624 8.50089 23 8.50089C23.6675 8.50089 24.3072 8.61979 24.8991 8.83758C25.2112 8.9524 25.5679 8.89779 25.8031 8.66266Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 45.0009C6.89543 45.0009 6 44.1055 6 43.0009V2.00089C6 0.896316 6.89543 0.00088501 8 0.00088501H38C39.1046 0.00088501 40 0.896316 40 2.00089V3.00089H41C42.1046 3.00089 43 3.89632 43 5.00089V46.0009C43 47.1055 42.1046 48.0009 41 48.0009H11C9.89543 48.0009 9 47.1055 9 46.0009V45.0009H8ZM7.5 2.00089C7.5 1.72474 7.72386 1.50089 8 1.50089H38C38.2761 1.50089 38.5 1.72474 38.5 2.00089V43.0009C38.5 43.277 38.2761 43.5009 38 43.5009H8C7.72386 43.5009 7.5 43.277 7.5 43.0009V2.00089ZM10.5 45.0009V46.0009C10.5 46.277 10.7239 46.5009 11 46.5009H41C41.2761 46.5009 41.5 46.277 41.5 46.0009V5.00089C41.5 4.72474 41.2761 4.50089 41 4.50089H40V43.0009C40 44.1055 39.1046 45.0009 38 45.0009H10.5Z" fill="currentColor"/>
7
- </svg>
@@ -1,18 +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_956)">
3
- <path d="M35.5112 3.50085C35.8464 3.50085 36.1816 3.61259 36.405 3.83605C36.6285 4.05951 36.7961 4.33884 36.7961 4.67404C36.7961 5.00923 36.6844 5.28856 36.405 5.51203C36.1257 5.73549 35.8464 5.84722 35.5112 5.84722C35.176 5.84722 34.8408 5.73549 34.6173 5.51203C34.338 5.28856 34.2263 5.00923 34.2263 4.67404C34.2263 4.33884 34.338 4.05951 34.6173 3.83605C34.8408 3.61259 35.176 3.50085 35.5112 3.50085Z" fill="currentColor"/>
4
- <path d="M36.6285 7.02041L36.7402 7.13214V12.2718C36.7402 12.4394 36.7961 12.5511 36.852 12.6629C36.9078 12.7746 37.0196 12.8305 37.1313 12.8863C37.1871 12.9143 37.229 12.9282 37.271 12.9422C37.3129 12.9562 37.3547 12.9701 37.4106 12.9981C37.5223 13.0539 37.6341 13.0539 37.7458 13.0539V13.5009H33.6676V13.0539C33.7793 13.0539 33.8911 13.0539 34.0028 12.9981C34.0682 12.9981 34.1337 12.9789 34.1879 12.963C34.2263 12.9518 34.259 12.9422 34.2821 12.9422C34.3939 12.8863 34.5056 12.8305 34.5615 12.7187C34.6173 12.607 34.6732 12.4953 34.6732 12.3277V8.58465C34.6732 8.41706 34.6173 8.30532 34.5615 8.19359C34.5056 8.08186 34.3939 7.97013 34.2821 7.91426C34.2263 7.8584 34.1145 7.80253 33.9469 7.74666C33.8631 7.71873 33.7933 7.70477 33.7235 7.6908C33.6536 7.67683 33.5838 7.66287 33.5 7.63493V7.18801L36.6285 7.02041Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M35.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.0009ZM35.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.5009Z" fill="currentColor"/>
6
- <path d="M24.25 5.00085C24.6642 5.00085 25 5.33664 25 5.75085C25 6.16507 24.6642 6.50085 24.25 6.50085H6C5.72386 6.50085 5.5 6.72471 5.5 7.00085V46.0009C5.5 46.277 5.72386 46.5009 6 46.5009H36C36.2761 46.5009 36.5 46.277 36.5 46.0009V19.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.00085C4 5.89629 4.89543 5.00085 6 5.00085H24.25Z" fill="currentColor"/>
7
- <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"/>
8
- <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"/>
9
- <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"/>
10
- <path d="M21.9431 34.2257C21.9266 33.995 21.6325 33.9085 21.4937 34.0935L19.0504 37.3513C18.8019 37.6827 18.3318 37.7498 18.0004 37.5013C17.669 37.2528 17.6019 36.7827 17.8504 36.4513L20.2937 33.1935C21.2653 31.898 23.3239 32.5036 23.4393 34.1188L23.583 36.1316C23.5987 36.3504 23.8684 36.4444 24.0167 36.2827L26.3807 33.7037C27.3286 32.6696 29.0339 33.5581 28.7295 34.9274C28.6448 35.3086 29.0167 35.6317 29.3823 35.4946L30.5348 35.0624C30.9226 34.917 31.355 35.1135 31.5004 35.5013C31.6458 35.8891 31.4493 36.3214 31.0615 36.4669L29.909 36.8991C28.5617 37.4043 27.1933 36.3663 27.2162 35.0121L25.1224 37.2963C24.0847 38.4283 22.1963 37.7702 22.0868 36.2384L21.9431 34.2257Z" fill="currentColor"/>
11
- <path d="M31.1787 41.8778C31.5945 41.8778 31.9316 42.2149 31.9316 42.6308C31.9316 43.0466 31.5945 43.3837 31.1787 43.3837H17.6846C17.2688 43.3837 16.9316 43.0466 16.9316 42.6308C16.9316 42.2149 17.2688 41.8778 17.6846 41.8778H31.1787Z" fill="currentColor"/>
12
- </g>
13
- <defs>
14
- <clipPath id="clip0_100_956">
15
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
16
- </clipPath>
17
- </defs>
18
- </svg>
@@ -1,8 +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="M32.5 0.250854C30.9812 0.250854 29.75 1.48207 29.75 3.00085H27C25.8954 3.00085 25 3.89629 25 5.00085V16.0009C25 17.1054 25.8954 18.0009 27 18.0009H43C44.1046 18.0009 45 17.1054 45 16.0009V5.00085C45 3.89629 44.1046 3.00085 43 3.00085H40.25C40.25 1.48207 39.0188 0.250854 37.5 0.250854H32.5ZM32.5 1.75085C31.8096 1.75085 31.25 2.3105 31.25 3.00085H38.75C38.75 2.3105 38.1904 1.75085 37.5 1.75085H32.5ZM27 4.50085H43C43.2761 4.50085 43.5 4.72471 43.5 5.00085V8.3012L40.75 8.60676V8.50085C40.75 8.08664 40.4142 7.75085 40 7.75085C39.5858 7.75085 39.25 8.08664 39.25 8.50085V8.77342L35.0008 9.24556L30.75 8.77325V8.50085C30.75 8.08664 30.4142 7.75085 30 7.75085C29.5858 7.75085 29.25 8.08664 29.25 8.50085V8.60658L26.5 8.30103V5.00085C26.5 4.72471 26.7239 4.50085 27 4.50085ZM29.25 10.1158L26.5 9.81026V16.0009C26.5 16.277 26.7239 16.5009 27 16.5009H43C43.2761 16.5009 43.5 16.277 43.5 16.0009V9.81043L40.75 10.116V11.5009C40.75 11.9151 40.4142 12.2509 40 12.2509C39.5858 12.2509 39.25 11.9151 39.25 11.5009V10.2827L35.0008 10.7548L30.75 10.2825V11.5009C30.75 11.9151 30.4142 12.2509 30 12.2509C29.5858 12.2509 29.25 11.9151 29.25 11.5009V10.1158Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3 5.00085C3 3.89629 3.89543 3.00085 5 3.00085H22.25C22.6642 3.00085 23 3.33664 23 3.75085C23 4.16507 22.6642 4.50085 22.25 4.50085H5C4.72386 4.50085 4.5 4.72471 4.5 5.00085V46.0009C4.5 46.277 4.72386 46.5009 5 46.5009H11.5V44.5009C11.5 39.8064 15.3056 36.0009 20 36.0009C24.6944 36.0009 28.5 39.8064 28.5 44.5009V46.5009H35C35.2761 46.5009 35.5 46.277 35.5 46.0009V20.7509C35.5 20.3366 35.8358 20.0009 36.25 20.0009C36.6642 20.0009 37 20.3366 37 20.7509V46.0009C37 47.1054 36.1046 48.0009 35 48.0009H5C3.89543 48.0009 3 47.1054 3 46.0009V5.00085ZM27 46.5009V44.5009C27 41.0931 24.5649 38.2541 21.3399 37.629L20.5 38.3009L22 43.1009L20 45.5009L18 43.1009L19.5 38.3009L18.6601 37.629C15.4351 38.2541 13 41.0931 13 44.5009V46.5009H27Z" fill="currentColor"/>
4
- <path d="M14.7477 10.0009C15.1619 10.0009 15.4977 9.66507 15.4977 9.25085C15.4977 8.83664 15.1619 8.50085 14.7477 8.50085H9.20312C8.78891 8.50085 8.45312 8.83664 8.45312 9.25085C8.45312 9.66507 8.78891 10.0009 9.20312 10.0009H14.7477Z" fill="currentColor"/>
5
- <path d="M8.45312 13.2509C8.45312 13.6651 8.78891 14.0009 9.20312 14.0009H20.3331C20.7473 14.0009 21.0831 13.6651 21.0831 13.2509C21.0831 12.8366 20.7473 12.5009 20.3331 12.5009H9.20312C8.78891 12.5009 8.45312 12.8366 8.45312 13.2509Z" fill="currentColor"/>
6
- <path d="M9.20312 18.0009C8.78891 18.0009 8.45312 17.6651 8.45312 17.2509C8.45312 16.8366 8.78891 16.5009 9.20312 16.5009H20.3331C20.7473 16.5009 21.0831 16.8366 21.0831 17.2509C21.0831 17.6651 20.7473 18.0009 20.3331 18.0009H9.20312Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M20 35.0009C23.0376 35.0009 25.5 32.5384 25.5 29.5009C25.5 26.4633 23.0376 24.0009 20 24.0009C16.9624 24.0009 14.5 26.4633 14.5 29.5009C14.5 32.5384 16.9624 35.0009 20 35.0009ZM20 33.5009C22.2091 33.5009 24 31.71 24 29.5009C24 27.2917 22.2091 25.5009 20 25.5009C17.7909 25.5009 16 27.2917 16 29.5009C16 31.71 17.7909 33.5009 20 33.5009Z" fill="currentColor"/>
8
- </svg>
@@ -1,16 +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_723)">
3
- <path d="M32.25 32.5009C32.6642 32.5009 33 32.1651 33 31.7509C33 31.3367 32.6642 31.0009 32.25 31.0009H15.75C15.3358 31.0009 15 31.3367 15 31.7509C15 32.1651 15.3358 32.5009 15.75 32.5009H32.25Z" fill="currentColor"/>
4
- <path d="M32.25 37.5009C32.6642 37.5009 33 37.1651 33 36.7509C33 36.3367 32.6642 36.0009 32.25 36.0009H15.75C15.3358 36.0009 15 36.3367 15 36.7509C15 37.1651 15.3358 37.5009 15.75 37.5009H32.25Z" fill="currentColor"/>
5
- <path d="M29.25 41.0009C29.6642 41.0009 30 41.3367 30 41.7509C30 42.1651 29.6642 42.5009 29.25 42.5009H18.75C18.3358 42.5009 18 42.1651 18 41.7509C18 41.3367 18.3358 41.0009 18.75 41.0009H29.25Z" fill="currentColor"/>
6
- <path d="M18.5 19.0009C19.3284 19.0009 20 18.3293 20 17.5009C20 16.6725 19.3284 16.0009 18.5 16.0009C17.6716 16.0009 17 16.6725 17 17.5009C17 18.3293 17.6716 19.0009 18.5 19.0009Z" fill="currentColor"/>
7
- <path d="M31 17.5009C31 18.3293 30.3284 19.0009 29.5 19.0009C28.6716 19.0009 28 18.3293 28 17.5009C28 16.6725 28.6716 16.0009 29.5 16.0009C30.3284 16.0009 31 16.6725 31 17.5009Z" fill="currentColor"/>
8
- <path fill-rule="evenodd" clip-rule="evenodd" d="M13 12.3759C13 13.1012 13.5615 13.6953 14.2736 13.7472C14.0493 14.0514 13.9167 14.4273 13.9167 14.8342V19.2339C13.9167 20.0783 14.4912 20.8031 15.2917 21.0091V22.1258C15.2917 22.6321 15.7021 23.0425 16.2084 23.0425H18.0417C18.5479 23.0425 18.9584 22.6321 18.9584 22.1258V21.5069C22.3092 21.8777 25.6908 21.8777 29.0416 21.5069V22.1258C29.0416 22.6321 29.4521 23.0425 29.9583 23.0425H31.7916C32.2979 23.0425 32.7083 22.6321 32.7083 22.1258V21.0091C33.5088 20.8031 34.0834 20.0783 34.0834 19.2339V14.8342C34.0834 14.4273 33.9508 14.0514 33.7265 13.7472C34.4385 13.6953 35 13.1012 35 12.3759C35 11.6165 34.3844 11.0009 33.625 11.0009H31.425L30.3992 8.20312C30.1344 7.481 29.447 7.00092 28.6779 7.00092H19.3222C18.553 7.00092 17.8657 7.481 17.6009 8.20312L16.575 11.0009H14.375C13.6156 11.0009 13 11.6165 13 12.3759ZM33.625 12.7509H32.0667L31.7917 12.0009H33.625C33.8321 12.0009 34 12.1688 34 12.3759C34 12.583 33.8321 12.7509 33.625 12.7509ZM14.375 12.0009H16.2084L15.9334 12.7509H14.375C14.1679 12.7509 14 12.583 14 12.3759C14 12.1688 14.1679 12.0009 14.375 12.0009ZM19.3222 8.50092H28.6779C28.8177 8.50092 28.9427 8.5882 28.9908 8.7195L30.5607 13.0009H17.4393L19.0092 8.7195C19.0573 8.5882 19.1823 8.50092 19.3222 8.50092ZM15.75 14.5009C15.5659 14.5009 15.4167 14.6502 15.4167 14.8342V19.2339C15.4167 19.4006 15.5398 19.5416 15.705 19.5641L18.01 19.8785C21.985 20.4205 26.0151 20.4205 29.99 19.8785L32.2951 19.5641C32.4602 19.5416 32.5834 19.4006 32.5834 19.2339V14.8342C32.5834 14.6502 32.4341 14.5009 32.25 14.5009H15.75Z" fill="currentColor"/>
9
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 48.0009C6.89543 48.0009 6 47.1055 6 46.0009V2.00092C6 0.896346 6.89543 0.000915527 8 0.000915527H40C41.1046 0.000915527 42 0.896347 42 2.00092V46.0009C42 47.1055 41.1046 48.0009 40 48.0009H8ZM7.5 2.00092C7.5 1.72477 7.72386 1.50092 8 1.50092H40C40.2761 1.50092 40.5 1.72477 40.5 2.00092V46.0009C40.5 46.2771 40.2761 46.5009 40 46.5009H8C7.72386 46.5009 7.5 46.2771 7.5 46.0009V2.00092Z" fill="currentColor"/>
10
- </g>
11
- <defs>
12
- <clipPath id="clip0_100_723">
13
- <rect width="48" height="48" fill="white" transform="translate(0 0.00088501)"/>
14
- </clipPath>
15
- </defs>
16
- </svg>
@@ -1,17 +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_763)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.636 17.6993L8.68198 24.6534C6.92462 26.4108 4.07539 26.4108 2.31802 24.6534C0.560658 22.896 0.560661 20.0468 2.31802 18.2894L19.2886 1.31887C21.0459 -0.43848 23.8952 -0.438491 25.6525 1.31887C27.4099 3.07624 27.4099 5.92548 25.6525 7.68284L19.886 13.4493V23.3074L17.761 20.4779L15.636 26.1369V17.6993ZM7.55061 23.522C8.68313 22.3895 8.68313 20.5533 7.55061 19.4208C6.41809 18.2883 4.58191 18.2883 3.44939 19.4208C2.31687 20.5533 2.31687 22.3895 3.44939 23.522C4.58192 24.6546 6.41809 24.6545 7.55061 23.522ZM24.5212 6.55146L19.8833 11.1893C19.7967 10.1683 19.3628 9.17123 18.5815 8.38994C17.8002 7.60866 16.8031 7.17472 15.7821 7.08812L20.42 2.45025C21.5525 1.31773 23.3886 1.31772 24.5212 2.45025C25.6537 3.58277 25.6537 5.41895 24.5212 6.55146ZM14.6217 12.3497C15.7542 13.4823 15.7542 15.3184 14.6217 16.451L9.98381 21.0888C9.89721 20.0678 9.46327 19.0707 8.68198 18.2894C7.9007 17.5082 6.90361 17.0742 5.88259 16.9876L10.5205 12.3497C11.653 11.2172 13.4892 11.2172 14.6217 12.3497Z" fill="currentColor"/>
4
- <path d="M39.6725 21.5491C39.9067 21.3149 39.9544 20.9485 39.7595 20.6807C38.7162 19.2468 37.1007 18.2559 35.2486 18.0435C34.8371 17.9963 34.5 18.3366 34.5 18.7509C34.5 19.1651 34.8377 19.4949 35.2474 19.5563C36.5362 19.7495 37.664 20.4345 38.4338 21.4143C38.7371 21.8003 39.3253 21.8962 39.6725 21.5491Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M30.5 40.0009V36.9477C30.5 34.6133 29.0058 32.5941 27.4425 30.8604C25.9243 29.1766 25 26.9466 25 24.5009C25 19.2541 29.2533 15.0009 34.5 15.0009C39.7467 15.0009 44 19.2541 44 24.5009C44 26.9466 43.0757 29.1766 41.5575 30.8604C39.9942 32.5941 38.5 34.6133 38.5 36.9477V40.0009H45C46.1046 40.0009 47 40.8963 47 42.0009V43.0009C47 44.1054 46.1046 45.0009 45 45.0009V46.0009C45 47.1054 44.1046 48.0009 43 48.0009H26C24.8954 48.0009 24 47.1054 24 46.0009V45.0009C22.8954 45.0009 22 44.1054 22 43.0009V42.0009C22 40.8963 22.8954 40.0009 24 40.0009H30.5ZM42.5 24.5009C42.5 26.5614 41.7229 28.4369 40.4435 29.8559C38.8778 31.5923 37 33.9915 37 36.9477V40.0009H32V36.9477C32 33.9915 30.1222 31.5923 28.5565 29.8559C27.2771 28.4369 26.5 26.5614 26.5 24.5009C26.5 20.0826 30.0817 16.5009 34.5 16.5009C38.9183 16.5009 42.5 20.0826 42.5 24.5009ZM45 43.5009C45.2761 43.5009 45.5 43.277 45.5 43.0009V42.0009C45.5 41.7247 45.2761 41.5009 45 41.5009H24C23.7239 41.5009 23.5 41.7247 23.5 42.0009V43.0009C23.5 43.277 23.7239 43.5009 24 43.5009H45ZM26 46.5009C25.7239 46.5009 25.5 46.277 25.5 46.0009V45.0009H43.5V46.0009C43.5 46.277 43.2761 46.5009 43 46.5009H26Z" fill="currentColor"/>
6
- <path d="M4 4.00085C4 2.89629 4.89543 2.00085 6 2.00085H14.1827C14.6341 2.00085 15 2.36675 15 2.81811C15 3.26947 14.6341 3.63537 14.1827 3.63537H6.12871C5.85257 3.63537 5.62871 3.85923 5.62871 4.13537V12.1865C5.62871 12.6363 5.26411 13.0009 4.81436 13.0009C4.3646 13.0009 4 12.6363 4 12.1865V4.00085Z" fill="currentColor"/>
7
- <path d="M4.81436 28.0009C4.3646 28.0009 4 28.3655 4 28.8152V46.0009C4 47.1054 4.89543 48.0009 6 48.0009H20.2396C20.691 48.0009 21.0569 47.635 21.0569 47.1836C21.0569 46.7322 20.691 46.3663 20.2396 46.3663H5.62871V28.8152C5.62871 28.3655 5.26411 28.0009 4.81436 28.0009Z" fill="currentColor"/>
8
- <path d="M34.9703 4.13537C34.9703 3.85923 34.7464 3.63537 34.4703 3.63537H29.8173C29.3659 3.63537 29 3.26947 29 2.81811C29 2.36675 29.3659 2.00085 29.8173 2.00085H34.599C35.7035 2.00085 36.599 2.89629 36.599 4.00085V10.4606C36.599 10.9104 36.2344 11.275 35.7846 11.275C35.3349 11.275 34.9703 10.9104 34.9703 10.4606V4.13537Z" fill="currentColor"/>
9
- <path d="M20.25 29.0009C20.6642 29.0009 21 29.3366 21 29.7509C21 30.1651 20.6642 30.5009 20.25 30.5009H10.75C10.3358 30.5009 10 30.1651 10 29.7509C10 29.3366 10.3358 29.0009 10.75 29.0009H20.25Z" fill="currentColor"/>
10
- <path d="M20.25 34.0009C20.6642 34.0009 21 34.3366 21 34.7509C21 35.1651 20.6642 35.5009 20.25 35.5009H10.75C10.3358 35.5009 10 35.1651 10 34.7509C10 34.3366 10.3358 34.0009 10.75 34.0009H20.25Z" fill="currentColor"/>
11
- </g>
12
- <defs>
13
- <clipPath id="clip0_100_763">
14
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
15
- </clipPath>
16
- </defs>
17
- </svg>
@@ -1,8 +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="M35.9068 0.000854492C36.6826 0.000854492 37.4036 0.400498 37.8148 1.05836L39.2692 3.38547H41.3846C42.7866 3.38547 43.9231 4.52198 43.9231 5.92393V7.61624C43.9231 8.55088 43.1654 9.30855 42.2308 9.30855H42.087C41.7388 10.2949 40.7983 11.0016 39.6928 11.0016C38.5872 11.0016 37.6467 10.2949 37.2985 9.30855H33.6242C33.2759 10.2949 32.3354 11.0016 31.2299 11.0016C30.1243 11.0016 29.1838 10.2949 28.8356 9.30855H28.6923C27.7577 9.30855 27 8.55087 27 7.61624V5.20572C27 4.57862 27.2321 3.97371 27.6516 3.50758L29.7993 1.12128C30.4412 0.408095 31.3556 0.000854492 32.3151 0.000854492H35.9068ZM42.2308 8.03932H42.196C41.9943 6.83911 40.9503 5.92468 39.6928 5.92468C38.4352 5.92468 37.3912 6.83911 37.1895 8.03932H33.7331C33.5314 6.83911 32.4874 5.92468 31.2299 5.92468C29.9723 5.92468 28.9284 6.83911 28.7266 8.03932H28.6923C28.4586 8.03932 28.2692 7.8499 28.2692 7.61624V5.20572C28.2692 5.01344 28.3129 4.82534 28.395 4.65485L41.3846 4.6547C42.0856 4.6547 42.6538 5.22296 42.6538 5.92393V7.61624C42.6538 7.8499 42.4644 8.03932 42.2308 8.03932ZM32.3151 1.27009H35.8961C36.2409 1.27009 36.5614 1.44771 36.7441 1.74009L37.7726 3.38562H29.469L30.7427 1.97035C31.1439 1.52461 31.7154 1.27009 32.3151 1.27009ZM32.4991 8.46314C32.4991 9.16412 31.9308 9.73238 31.2299 9.73238C30.5289 9.73238 29.9606 9.16412 29.9606 8.46314C29.9606 7.76217 30.5289 7.19391 31.2299 7.19391C31.9308 7.19391 32.4991 7.76217 32.4991 8.46314ZM40.962 8.46314C40.962 9.16412 40.3937 9.73238 39.6928 9.73238C38.9918 9.73238 38.4235 9.16412 38.4235 8.46314C38.4235 7.76217 38.9918 7.19391 39.6928 7.19391C40.3937 7.19391 40.962 7.76217 40.962 8.46314Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M25 3.75085C25 3.33664 24.6642 3.00085 24.25 3.00085H7C5.89543 3.00085 5 3.89629 5 5.00085V46.0009C5 47.1054 5.89543 48.0009 7 48.0009H37C38.1046 48.0009 39 47.1054 39 46.0009V13.7509C39 13.3366 38.6642 13.0009 38.25 13.0009C37.8358 13.0009 37.5 13.3366 37.5 13.7509V46.0009C37.5 46.277 37.2761 46.5009 37 46.5009H30.5V44.5009C30.5 39.8064 26.6944 36.0009 22 36.0009C17.3056 36.0009 13.5 39.8064 13.5 44.5009V46.5009H7C6.72386 46.5009 6.5 46.277 6.5 46.0009V5.00085C6.5 4.72471 6.72386 4.50085 7 4.50085H24.25C24.6642 4.50085 25 4.16507 25 3.75085ZM29 44.5009V46.5009H15V44.5009C15 40.6349 18.134 37.5009 22 37.5009C25.866 37.5009 29 40.6349 29 44.5009Z" fill="currentColor"/>
4
- <path d="M16.2946 10.038C16.7088 10.038 17.0446 9.70218 17.0446 9.28796C17.0446 8.87375 16.7088 8.53796 16.2946 8.53796H10.75C10.3358 8.53796 10 8.87375 10 9.28796C10 9.70218 10.3358 10.038 10.75 10.038H16.2946Z" fill="currentColor"/>
5
- <path d="M19.25 14.1356C19.6642 14.1356 20 13.7998 20 13.3856C20 12.9714 19.6642 12.6356 19.25 12.6356H10.75C10.3358 12.6356 10 12.9714 10 13.3856C10 13.7998 10.3358 14.1356 10.75 14.1356H19.25Z" fill="currentColor"/>
6
- <path d="M10.75 18.2333C10.3358 18.2333 10 17.8975 10 17.4833C10 17.0691 10.3358 16.7333 10.75 16.7333H19.25C19.6642 16.7333 20 17.0691 20 17.4833C20 17.8975 19.6642 18.2333 19.25 18.2333H10.75Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M22 35.0009C25.0376 35.0009 27.5 32.5384 27.5 29.5009C27.5 26.4633 25.0376 24.0009 22 24.0009C18.9624 24.0009 16.5 26.4633 16.5 29.5009C16.5 32.5384 18.9624 35.0009 22 35.0009ZM22 33.5009C24.2091 33.5009 26 31.71 26 29.5009C26 27.2917 24.2091 25.5009 22 25.5009C19.7909 25.5009 18 27.2917 18 29.5009C18 31.71 19.7909 33.5009 22 33.5009Z" fill="currentColor"/>
8
- </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_962)">
3
- <path d="M25.4937 34.0935C25.6325 33.9085 25.9266 33.995 25.9431 34.2257L26.0868 36.2384C26.1963 37.7702 28.0847 38.4283 29.1224 37.2963L31.2162 35.0121C31.1933 36.3663 32.5617 37.4043 33.909 36.8991L35.0615 36.4669C35.4493 36.3214 35.6458 35.8891 35.5004 35.5013C35.355 35.1135 34.9226 34.917 34.5348 35.0624L33.3823 35.4946C33.0167 35.6317 32.6448 35.3086 32.7295 34.9274C33.0339 33.5581 31.3286 32.6696 30.3807 33.7037L28.0167 36.2827C27.8684 36.4444 27.5987 36.3504 27.583 36.1316L27.4393 34.1188C27.3239 32.5036 25.2653 31.898 24.2937 33.1935L21.8504 36.4513C21.6019 36.7827 21.669 37.2528 22.0004 37.5013C22.3318 37.7498 22.8019 37.6827 23.0504 37.3513L25.4937 34.0935Z" fill="currentColor"/>
4
- <path d="M35.1787 43.3837C35.5945 43.3837 35.9316 43.0466 35.9316 42.6308C35.9316 42.2149 35.5945 41.8778 35.1787 41.8778H21.6846C21.2688 41.8778 20.9316 42.2149 20.9316 42.6308C20.9316 43.0466 21.2688 43.3837 21.6846 43.3837H35.1787Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M33.486 8.17236L31.1575 10.5009H31.7203C32.5004 10.5009 33.2093 10.9544 33.5363 11.6627L36 17.0009V25.0009C36 26.1054 35.1046 27.0009 34 27.0009H14C12.8954 27.0009 12 26.1054 12 25.0009V17.0009L14.4637 11.6627C14.7907 10.9544 15.4996 10.5009 16.2797 10.5009H19.8438L27.8292 2.5155L33.486 8.17236ZM20.051 12.415L27.8292 4.63682L31.3647 8.17236L25.7862 13.7509H21.3869L20.051 12.415ZM30.5 14.5009C30.5 14.0866 30.1642 13.7509 29.75 13.7509H27.9075L29.6575 12.0009H31.7203C31.9154 12.0009 32.0926 12.1143 32.1743 12.2913L34.2326 16.7509H13.7674L15.8257 12.2913C15.9074 12.1143 16.0846 12.0009 16.2797 12.0009H18.3438L17.9297 12.415L19.2655 13.7509H18.25C17.8358 13.7509 17.5 14.0866 17.5 14.5009C17.5 14.9151 17.8358 15.2509 18.25 15.2509H29.75C30.1642 15.2509 30.5 14.9151 30.5 14.5009ZM34.5 18.2509H13.5V25.0009C13.5 25.277 13.7239 25.5009 14 25.5009H34C34.2761 25.5009 34.5 25.277 34.5 25.0009V18.2509Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 0.000854492C6.89543 0.000854492 6 0.896286 6 2.00086V46.0009C6 47.1054 6.89543 48.0009 8 48.0009H40C41.1046 48.0009 42 47.1054 42 46.0009V2.00085C42 0.896285 41.1046 0.000854492 40 0.000854492H8ZM40.5 1.50085H8C7.72386 1.50085 7.5 1.72471 7.5 2.00086V46.0009C7.5 46.277 7.72386 46.5009 8 46.5009H40C40.2761 46.5009 40.5 46.277 40.5 46.0009V1.50085Z" fill="currentColor"/>
7
- </g>
8
- <defs>
9
- <clipPath id="clip0_100_962">
10
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
11
- </clipPath>
12
- </defs>
13
- </svg>
@@ -1,16 +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_958)">
3
- <path d="M3 46.0009C3 47.1054 3.89543 48.0009 5 48.0009H38.1478C39.2524 48.0009 40.1478 47.1054 40.1478 46.0009V34.2426C40.1478 33.7729 39.7671 33.3922 39.2974 33.3922C38.8277 33.3922 38.447 33.7729 38.447 34.2426V45.7953C38.447 46.0714 38.2231 46.2953 37.947 46.2953H5.19952C4.92338 46.2953 4.69952 46.0714 4.69952 45.7953V2.20644C4.69952 1.9303 4.92338 1.70644 5.19952 1.70644H37.9472C38.2234 1.70644 38.4472 1.9303 38.4472 2.20644V9.87191C38.4472 10.3412 38.8277 10.7217 39.297 10.7217C39.7663 10.7217 40.1468 10.3412 40.1468 9.87191V2.00085C40.1468 0.896285 39.2513 0.000854492 38.1468 0.000854492H5C3.89543 0.000854492 3 0.896286 3 2.00086V46.0009Z" fill="currentColor"/>
4
- <path d="M13.95 38.7057C14.0948 38.5126 14.4017 38.6029 14.4189 38.8437L14.5689 40.9439C14.6831 42.5423 16.6536 43.229 17.7364 42.0477L19.9213 39.6643C19.8973 41.0773 21.3252 42.1605 22.7311 41.6333L23.9337 41.1823C24.3384 41.0305 24.5435 40.5794 24.3917 40.1747C24.24 39.77 23.7888 39.565 23.3841 39.7167L22.1815 40.1677C21.8 40.3108 21.412 39.9736 21.5004 39.5759C21.8179 38.147 20.0386 37.22 19.0495 38.299L16.5826 40.9901C16.4279 41.1588 16.1464 41.0607 16.1301 40.8324L15.9801 38.7322C15.8597 37.0467 13.7117 36.4148 12.6978 37.7666L10.1482 41.166C9.8889 41.5118 9.95898 42.0023 10.3048 42.2617C10.6505 42.521 11.1411 42.4509 11.4004 42.1052L13.95 38.7057Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M44.4639 17.8664L32.4639 38.651L27.1441 41.6042L27.0418 35.5206L39.0418 14.736C39.6181 13.7378 40.8944 13.3958 41.8926 13.9721L43.7 15.0156C44.6982 15.5919 45.0402 16.8683 44.4639 17.8664ZM28.6141 35.9278L37.4625 20.6018L40.1736 22.167L31.3251 37.493L28.6652 38.9696L28.6141 35.9278ZM38.2451 19.2463L40.9562 20.8115L43.1083 17.0838C43.2524 16.8343 43.1669 16.5152 42.9174 16.3711L41.11 15.3276C40.8605 15.1836 40.5414 15.2691 40.3973 15.5186L38.2451 19.2463Z" fill="currentColor"/>
6
- <path d="M26.3086 15.1895C26.3086 14.7521 25.954 14.3976 25.5167 14.3976H10.5908C10.1535 14.3976 9.79891 14.7521 9.79891 15.1895C9.79891 15.6268 10.1535 15.9814 10.5908 15.9814H25.5167C25.954 15.9814 26.3086 15.6268 26.3086 15.1895Z" fill="currentColor"/>
7
- <path d="M9.79891 30.3301C9.79891 29.8928 10.1535 29.5382 10.5908 29.5382H25.5167C25.954 29.5382 26.3086 29.8928 26.3086 30.3301C26.3086 30.7674 25.954 31.122 25.5167 31.122H10.5908C10.1535 31.122 9.79891 30.7674 9.79891 30.3301Z" fill="currentColor"/>
8
- <path d="M14.4189 7.53984C14.4017 7.29906 14.0948 7.20879 13.95 7.4019L11.4004 10.8013C11.1411 11.1471 10.6505 11.2172 10.3048 10.9578C9.95898 10.6985 9.8889 10.208 10.1482 9.86218L12.6978 6.46277C13.7117 5.11096 15.8597 5.74285 15.9801 7.42832L16.1301 9.52856C16.1464 9.75689 16.4279 9.855 16.5826 9.68625L19.0495 6.99514C20.0386 5.91612 21.8179 6.84315 21.5004 8.27208C21.412 8.66978 21.8 9.00693 22.1815 8.86388L23.3841 8.41289C23.7888 8.26113 24.24 8.46618 24.3917 8.87088C24.5435 9.27558 24.3384 9.72669 23.9337 9.87845L22.7311 10.3294C21.3252 10.8566 19.8973 9.77345 19.9213 8.36046L17.7364 10.7439C16.6536 11.9252 14.6831 11.2385 14.5689 9.64007L14.4189 7.53984Z" fill="currentColor"/>
9
- <path d="M13.95 22.5425C14.0948 22.3494 14.4017 22.4397 14.4189 22.6805L14.5689 24.7807C14.6831 26.3791 16.6536 27.0658 17.7364 25.8845L19.9213 23.5011C19.8973 24.9141 21.3252 25.9973 22.7311 25.4701L23.9337 25.0191C24.3384 24.8673 24.5435 24.4162 24.3917 24.0115C24.24 23.6068 23.7888 23.4018 23.3841 23.5535L22.1815 24.0045C21.8 24.1476 21.412 23.8104 21.5004 23.4127C21.8179 21.9838 20.0386 21.0567 19.0495 22.1358L16.5826 24.8269C16.4279 24.9956 16.1464 24.8975 16.1301 24.6692L15.9801 22.5689C15.8597 20.8835 13.7117 20.2516 12.6978 21.6034L10.1482 25.0028C9.8889 25.3486 9.95898 25.8391 10.3048 26.0985C10.6505 26.3578 11.1411 26.2877 11.4004 25.9419L13.95 22.5425Z" fill="currentColor"/>
10
- </g>
11
- <defs>
12
- <clipPath id="clip0_100_958">
13
- <rect width="48" height="48" fill="white" transform="translate(0 0.000854492)"/>
14
- </clipPath>
15
- </defs>
16
- </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="M6 32V46C6 47.1046 6.89543 48 8 48H42C43.1046 48 44 47.1046 44 46V17.7932C44 17.2837 43.8056 16.7934 43.4564 16.4224L28.5923 0.629271C28.2143 0.227697 27.6873 0 27.1359 0H8C6.89543 0 6 0.895432 6 2V23H5C4.44772 23 4 23.4477 4 24V31C4 31.5523 4.44772 32 5 32H6ZM42.5 18.25H28.75C27.6454 18.25 26.75 17.3546 26.75 16.25V1.5H8C7.72386 1.5 7.5 1.72386 7.5 2V23H11.5V16.5C11.5 15.9477 11.9477 15.5 12.5 15.5H19.5C20.0523 15.5 20.5 15.9477 20.5 16.5V23H27C27.5523 23 28 23.4477 28 24V31C28 31.5523 27.5523 32 27 32H20.5V38.5C20.5 39.0523 20.0523 39.5 19.5 39.5H12.5C11.9477 39.5 11.5 39.0523 11.5 38.5V32H7.5V46C7.5 46.2761 7.72386 46.5 8 46.5H42C42.2761 46.5 42.5 46.2761 42.5 46V18.25ZM41.7048 16.75L28.25 2.45424V16.25C28.25 16.5261 28.4739 16.75 28.75 16.75H41.7048ZM19 30.5V38H13V30.5H5.5V24.5H13V17H19V24.5H26.5V30.5H19Z" fill="currentColor"/>
3
- </svg>
@@ -1,8 +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="M39.25 13.7509H36.25V2.98124L39.9479 3.98976L37.1001 10.1599L37.4722 10.532L37.4749 10.5346L37.4814 10.5409L37.499 10.5578C37.5129 10.5708 37.531 10.5873 37.5533 10.6068C37.5978 10.6458 37.6593 10.6968 37.7378 10.7556C37.8946 10.8733 38.1202 11.0229 38.4149 11.1702C39.0066 11.4661 39.8707 11.7494 41.0003 11.7494C42.1298 11.7494 42.994 11.4661 43.5857 11.1702C43.8803 11.0229 44.1059 10.8733 44.2628 10.7556C44.3412 10.6968 44.4027 10.6458 44.4473 10.6068C44.4696 10.5873 44.4876 10.5708 44.5015 10.5578L44.5192 10.5409L44.5257 10.5346L44.5283 10.532L44.5295 10.5308L44.5336 10.5267L44.9004 10.1599L42.0123 3.90235L43.0825 3.47428C43.467 3.32044 43.6541 2.88397 43.5003 2.49938C43.3464 2.11479 42.91 1.92773 42.5254 2.08156L40.9551 2.70967L36.25 1.42646V0.750855C36.25 0.336641 35.9142 0.000854492 35.5 0.000854492C35.0858 0.000854492 34.75 0.336641 34.75 0.750854V1.42646L30.0449 2.70967L28.4746 2.08156C28.09 1.92773 27.6536 2.11479 27.4997 2.49938C27.3459 2.88397 27.533 3.32044 27.9175 3.47428L28.9877 3.90235L26.0996 10.1599L26.4658 10.5261L26.4705 10.5308L26.4717 10.532L26.4743 10.5346L26.4808 10.5409L26.4985 10.5578C26.5124 10.5708 26.5304 10.5873 26.5527 10.6068C26.5973 10.6458 26.6588 10.6968 26.7372 10.7556C26.8941 10.8733 27.1197 11.0229 27.4143 11.1702C28.006 11.4661 28.8702 11.7494 29.9997 11.7494C31.1293 11.7494 31.9934 11.4661 32.5851 11.1702C32.8798 11.0229 33.1054 10.8733 33.2622 10.7556C33.3407 10.6968 33.4022 10.6458 33.4467 10.6068C33.469 10.5873 33.4871 10.5708 33.501 10.5578L33.5186 10.5409L33.5251 10.5346L33.5278 10.532L33.8999 10.1599L31.0521 3.98976L34.75 2.98124V13.7509H31.75C31.3358 13.7509 31 14.0866 31 14.5009C31 14.9151 31.3358 15.2509 31.75 15.2509H39.25C39.6642 15.2509 40 14.9151 40 14.5009C40 14.0866 39.6642 13.7509 39.25 13.7509ZM29.9997 5.28911L27.9401 9.75158C27.9849 9.77679 28.0332 9.8026 28.0851 9.82856C28.4934 10.0327 29.1293 10.2494 29.9997 10.2494C30.8702 10.2494 31.506 10.0327 31.9143 9.82856C31.9662 9.8026 32.0146 9.77679 32.0593 9.75158L29.9997 5.28911ZM41.0003 5.28911L43.0599 9.75158C43.0151 9.77679 42.9668 9.8026 42.9149 9.82856C42.5066 10.0327 41.8707 10.2494 41.0003 10.2494C40.1298 10.2494 39.494 10.0327 39.0857 9.82856C39.0338 9.8026 38.9854 9.77679 38.9407 9.75158L41.0003 5.28911Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M24 3.75085C24 3.33664 23.6642 3.00085 23.25 3.00085H6C4.89543 3.00085 4 3.89629 4 5.00085V46.0009C4 47.1054 4.89543 48.0009 6 48.0009H36C37.1046 48.0009 38 47.1054 38 46.0009V17.7509C38 17.3366 37.6642 17.0009 37.25 17.0009C36.8358 17.0009 36.5 17.3366 36.5 17.7509V46.0009C36.5 46.277 36.2761 46.5009 36 46.5009H29.5V44.5009C29.5 39.8064 25.6944 36.0009 21 36.0009C16.3056 36.0009 12.5 39.8064 12.5 44.5009V46.5009H6C5.72386 46.5009 5.5 46.277 5.5 46.0009V5.00085C5.5 4.72471 5.72386 4.50085 6 4.50085H23.25C23.6642 4.50085 24 4.16507 24 3.75085ZM28 44.5009V46.5009H14V44.5009C14 40.6349 17.134 37.5009 21 37.5009C24.866 37.5009 28 40.6349 28 44.5009Z" fill="currentColor"/>
4
- <path d="M15.2946 10.038C15.7088 10.038 16.0446 9.70218 16.0446 9.28796C16.0446 8.87375 15.7088 8.53796 15.2946 8.53796H9.75C9.33579 8.53796 9 8.87375 9 9.28796C9 9.70218 9.33579 10.038 9.75 10.038H15.2946Z" fill="currentColor"/>
5
- <path d="M18.25 14.1356C18.6642 14.1356 19 13.7998 19 13.3856C19 12.9714 18.6642 12.6356 18.25 12.6356H9.75C9.33579 12.6356 9 12.9714 9 13.3856C9 13.7998 9.33579 14.1356 9.75 14.1356H18.25Z" fill="currentColor"/>
6
- <path d="M9.75 18.2333C9.33579 18.2333 9 17.8975 9 17.4833C9 17.0691 9.33579 16.7333 9.75 16.7333H18.25C18.6642 16.7333 19 17.0691 19 17.4833C19 17.8975 18.6642 18.2333 18.25 18.2333H9.75Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21 35.0009C24.0376 35.0009 26.5 32.5384 26.5 29.5009C26.5 26.4633 24.0376 24.0009 21 24.0009C17.9624 24.0009 15.5 26.4633 15.5 29.5009C15.5 32.5384 17.9624 35.0009 21 35.0009ZM21 33.5009C23.2091 33.5009 25 31.71 25 29.5009C25 27.2917 23.2091 25.5009 21 25.5009C18.7909 25.5009 17 27.2917 17 29.5009C17 31.71 18.7909 33.5009 21 33.5009Z" fill="currentColor"/>
8
- </svg>
@@ -1,8 +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.0002 17.057L13.0626 12.1195C11.6463 10.7038 11.6457 8.48018 13.0614 7.05852C13.3933 6.72383 13.7881 6.45808 14.2231 6.27656C14.6581 6.09505 15.1247 6.00135 15.596 6.00085C16.4866 6.00088 17.3446 6.33542 18.0002 6.9382C18.6558 6.33553 19.5138 6.001 20.4043 6.00085C20.8751 6.00122 21.3412 6.09463 21.7757 6.27573C22.2103 6.45683 22.6048 6.72204 22.9365 7.05612L21.8722 8.11304C21.6797 7.91923 21.4509 7.76538 21.1987 7.66032C20.9469 7.55535 20.6767 7.50116 20.4039 7.50085C19.8895 7.5011 19.394 7.69439 19.0153 8.0425L18 8.97581L16.9849 8.04236C16.6063 7.69432 16.111 7.50107 15.5968 7.50085C15.3235 7.50125 15.0529 7.55563 14.8007 7.66088C14.5482 7.76623 14.3191 7.92048 14.1264 8.11473L14.1243 8.11693C13.2905 8.95419 13.2937 10.2296 14.123 11.0586L18.0002 14.9357L21.8771 11.0588C22.7057 10.2305 22.7104 8.95486 21.8736 8.11453L22.9365 7.05612C24.3546 8.48018 24.354 10.7038 22.9377 12.1195L18.0002 17.057Z" fill="currentColor"/>
3
- <path d="M32.2946 8.03796C32.7088 8.03796 33.0446 7.70218 33.0446 7.28796C33.0446 6.87375 32.7088 6.53796 32.2946 6.53796H26.75C26.3358 6.53796 26 6.87375 26 7.28796C26 7.70218 26.3358 8.03796 26.75 8.03796H32.2946Z" fill="currentColor"/>
4
- <path d="M36 11.3856C36 11.7998 35.6642 12.1356 35.25 12.1356H26.75C26.3358 12.1356 26 11.7998 26 11.3856C26 10.9714 26.3358 10.6356 26.75 10.6356H35.25C35.6642 10.6356 36 10.9714 36 11.3856Z" fill="currentColor"/>
5
- <path d="M26 15.4833C26 15.8975 26.3358 16.2333 26.75 16.2333H35.25C35.6642 16.2333 36 15.8975 36 15.4833C36 15.0691 35.6642 14.7333 35.25 14.7333H26.75C26.3358 14.7333 26 15.0691 26 15.4833Z" fill="currentColor"/>
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M29.5 29.5009C29.5 32.5384 27.0376 35.0009 24 35.0009C20.9624 35.0009 18.5 32.5384 18.5 29.5009C18.5 26.4633 20.9624 24.0009 24 24.0009C27.0376 24.0009 29.5 26.4633 29.5 29.5009ZM28 29.5009C28 31.71 26.2091 33.5009 24 33.5009C21.7909 33.5009 20 31.71 20 29.5009C20 27.2917 21.7909 25.5009 24 25.5009C26.2091 25.5009 28 27.2917 28 29.5009Z" fill="currentColor"/>
7
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 48.0009C6.89543 48.0009 6 47.1054 6 46.0009V2.00085C6 0.896285 6.89543 0.000854492 8 0.000854492H40C41.1046 0.000854492 42 0.896286 42 2.00086V46.0009C42 47.1054 41.1046 48.0009 40 48.0009H8ZM7.5 2.00085C7.5 1.72471 7.72386 1.50085 8 1.50085H40C40.2761 1.50085 40.5 1.72471 40.5 2.00086V46.0009C40.5 46.277 40.2761 46.5009 40 46.5009H32.5V44.5009C32.5 39.8064 28.6944 36.0009 24 36.0009C19.3056 36.0009 15.5 39.8064 15.5 44.5009V46.5009H8C7.72386 46.5009 7.5 46.277 7.5 46.0009V2.00085ZM17 46.5009H31V44.5009C31 40.6349 27.866 37.5009 24 37.5009C20.134 37.5009 17 40.6349 17 44.5009V46.5009Z" fill="currentColor"/>
8
- </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
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38 0.000854492C35.7907 0.000854492 34 1.79155 34 4.00085C34 6.21016 35.7907 8.00085 38 8.00085C40.2093 8.00085 42 6.21016 42 4.00085C42 1.79155 40.2093 0.000854492 38 0.000854492ZM38 1.50085C36.6191 1.50085 35.5 2.61998 35.5 4.00085C35.5 5.38173 36.6191 6.50085 38 6.50085C39.3809 6.50085 40.5 5.38173 40.5 4.00085C40.5 2.61998 39.3809 1.50085 38 1.50085Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M38 9.00085C41.5275 9.00085 44.4456 11.6101 44.9295 15.0038C45.0075 15.5506 44.5523 16.0009 44 16.0009H32C31.4477 16.0009 30.9925 15.5506 31.0705 15.0038C31.5544 11.6101 34.4725 9.00085 38 9.00085ZM43.293 14.5009C42.64 12.1923 40.5176 10.5009 38 10.5009C35.4824 10.5009 33.36 12.1923 32.707 14.5009H43.293Z" fill="currentColor"/>
4
- <path d="M31 3.75085C31 3.33664 30.6642 3.00085 30.25 3.00085H7C5.89543 3.00085 5 3.89629 5 5.00085V46.0009C5 47.1054 5.89543 48.0009 7 48.0009H37C38.1046 48.0009 39 47.1054 39 46.0009V18.7509C39 18.3366 38.6642 18.0009 38.25 18.0009C37.8358 18.0009 37.5 18.3366 37.5 18.7509V46.0009C37.5 46.277 37.2761 46.5009 37 46.5009H7C6.72386 46.5009 6.5 46.277 6.5 46.0009V5.00085C6.5 4.72471 6.72386 4.50085 7 4.50085H30.25C30.6642 4.50085 31 4.16507 31 3.75085Z" fill="currentColor"/>
5
- <path d="M11.4531 9.25085C11.4531 9.66507 11.7889 10.0009 12.2031 10.0009H17.7477C18.1619 10.0009 18.4977 9.66507 18.4977 9.25085C18.4977 8.83664 18.1619 8.50085 17.7477 8.50085H12.2031C11.7889 8.50085 11.4531 8.83664 11.4531 9.25085Z" fill="currentColor"/>
6
- <path d="M11.4531 24.2509C11.4531 24.6651 11.7889 25.0009 12.2031 25.0009H17.7477C18.1619 25.0009 18.4977 24.6651 18.4977 24.2509C18.4977 23.8366 18.1619 23.5009 17.7477 23.5009H12.2031C11.7889 23.5009 11.4531 23.8366 11.4531 24.2509Z" fill="currentColor"/>
7
- <path d="M26.0831 13.2509C26.0831 13.6651 25.7473 14.0009 25.3331 14.0009H12.2031C11.7889 14.0009 11.4531 13.6651 11.4531 13.2509C11.4531 12.8366 11.7889 12.5009 12.2031 12.5009H25.3331C25.7473 12.5009 26.0831 12.8366 26.0831 13.2509Z" fill="currentColor"/>
8
- <path d="M11.4531 28.2509C11.4531 28.6651 11.7889 29.0009 12.2031 29.0009H31.3331C31.7473 29.0009 32.0831 28.6651 32.0831 28.2509C32.0831 27.8366 31.7473 27.5009 31.3331 27.5009H12.2031C11.7889 27.5009 11.4531 27.8366 11.4531 28.2509Z" fill="currentColor"/>
9
- <path d="M32.0831 32.2509C32.0831 32.6651 31.7473 33.0009 31.3331 33.0009H12.2031C11.7889 33.0009 11.4531 32.6651 11.4531 32.2509C11.4531 31.8366 11.7889 31.5009 12.2031 31.5009H31.3331C31.7473 31.5009 32.0831 31.8366 32.0831 32.2509Z" fill="currentColor"/>
10
- <path d="M11.4531 40.2509C11.4531 40.6651 11.7889 41.0009 12.2031 41.0009H31.3331C31.7473 41.0009 32.0831 40.6651 32.0831 40.2509C32.0831 39.8366 31.7473 39.5009 31.3331 39.5009H12.2031C11.7889 39.5009 11.4531 39.8366 11.4531 40.2509Z" fill="currentColor"/>
11
- </svg>
@@ -1,8 +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="M20.6001 9.75085C20.6001 10.1651 20.2643 10.5009 19.8501 10.5009H10.3501C9.93588 10.5009 9.6001 10.1651 9.6001 9.75085C9.6001 9.33664 9.93588 9.00085 10.3501 9.00085H19.8501C20.2643 9.00085 20.6001 9.33664 20.6001 9.75085Z" fill="currentColor"/>
3
- <path d="M25.8501 17.0009C26.2643 17.0009 26.6001 17.3366 26.6001 17.7509C26.6001 18.1651 26.2643 18.5009 25.8501 18.5009H10.3501C9.93588 18.5009 9.6001 18.1651 9.6001 17.7509C9.6001 17.3366 9.93588 17.0009 10.3501 17.0009H25.8501Z" fill="currentColor"/>
4
- <path d="M25.8501 25.0009C26.2643 25.0009 26.6001 25.3366 26.6001 25.7509C26.6001 26.1651 26.2643 26.5009 25.8501 26.5009H10.3501C9.93588 26.5009 9.6001 26.1651 9.6001 25.7509C9.6001 25.3366 9.93588 25.0009 10.3501 25.0009H25.8501Z" fill="currentColor"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M32.236 38.0406L43.736 18.122C44.2883 17.1655 43.9606 15.9423 43.004 15.39L41.2719 14.39C40.3154 13.8377 39.0922 14.1655 38.5399 15.122L27.0399 35.0406L27.138 40.8708L32.236 38.0406ZM37.0264 20.7434L28.5467 35.4308L28.5957 38.3459L31.1447 36.9308L39.6245 22.2434L37.0264 20.7434ZM40.3745 20.9444L37.7764 19.4444L39.8389 15.872C39.977 15.6329 40.2828 15.551 40.5219 15.689L42.254 16.689C42.4931 16.8271 42.5751 17.1329 42.437 17.372L40.3745 20.9444Z" fill="currentColor"/>
6
- <path d="M14.4936 38.093C14.6324 37.908 14.9264 37.9945 14.9429 38.2252L15.0867 40.2379C15.1961 41.7697 17.0846 42.4278 18.1223 41.2958L20.2161 39.0117C20.1931 40.3658 21.5615 41.4038 22.9088 40.8986L24.0613 40.4664C24.4492 40.321 24.6457 39.8886 24.5002 39.5008C24.3548 39.113 23.9225 38.9165 23.5347 39.0619L22.3821 39.4941C22.0166 39.6312 21.6447 39.3081 21.7294 38.927C22.0337 37.5576 20.3285 36.6692 19.3806 37.7032L17.0165 40.2822C16.8683 40.4439 16.5985 40.3499 16.5829 40.1311L16.4391 38.1184C16.3237 36.5031 14.2652 35.8975 13.2936 37.193L10.8502 40.4508C10.6017 40.7822 10.6689 41.2523 11.0002 41.5008C11.3316 41.7493 11.8017 41.6822 12.0502 41.3508L14.4936 38.093Z" fill="currentColor"/>
7
- <path d="M5.5 2.00085C5.5 1.72471 5.72386 1.50085 6 1.50085H38C38.2761 1.50085 38.5 1.72471 38.5 2.00085V9.25085C38.5 9.66507 38.8358 10.0009 39.25 10.0009C39.6642 10.0009 40 9.66507 40 9.25085V2.00085C40 0.896285 39.1046 0.000854492 38 0.000854492H6C4.89543 0.000854492 4 0.896285 4 2.00085V46.0009C4 47.1054 4.89543 48.0009 6 48.0009H38C39.1046 48.0009 40 47.1054 40 46.0009V33.7509C40 33.3366 39.6642 33.0009 39.25 33.0009C38.8358 33.0009 38.5 33.3366 38.5 33.7509V46.0009C38.5 46.277 38.2761 46.5009 38 46.5009H6C5.72386 46.5009 5.5 46.277 5.5 46.0009V2.00085Z" fill="currentColor"/>
8
- </svg>