pixel-react-excel-sheet 1.2.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 (832) hide show
  1. package/.prettierrc.js +13 -0
  2. package/.storybook/main.ts +26 -0
  3. package/.storybook/preview.ts +26 -0
  4. package/.yarn/install-state.gz +0 -0
  5. package/.yarnrc.yml +1 -0
  6. package/README.md +75 -0
  7. package/dist/tsconfig.tsbuildinfo +1 -0
  8. package/index.scss +0 -0
  9. package/lib/StyleGuide/ColorPalette/ColorPalette.d.ts +3 -0
  10. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  11. package/lib/StyleGuide/ColorPalette/colorPaletteList.d.ts +3 -0
  12. package/lib/StyleGuide/ColorPalette/index.d.ts +1 -0
  13. package/lib/StyleGuide/ColorPalette/types.d.ts +17 -0
  14. package/lib/StyleGuide/Typography/Typography.d.ts +3 -0
  15. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  16. package/lib/StyleGuide/Typography/TypographyList.d.ts +5 -0
  17. package/lib/StyleGuide/Typography/types.d.ts +8 -0
  18. package/lib/assets/utils/functionUtils.d.ts +4 -0
  19. package/lib/components/Accordion/Accordion.d.ts +8 -0
  20. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  21. package/lib/components/Accordion/index.d.ts +1 -0
  22. package/lib/components/Accordion/types.d.ts +27 -0
  23. package/lib/components/AddResourceButton/AddButton.d.ts +4 -0
  24. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  25. package/lib/components/AddResourceButton/ArrowsButton/ArrowsButton.d.ts +6 -0
  26. package/lib/components/AddResourceButton/index.d.ts +1 -0
  27. package/lib/components/AddResourceButton/type.d.ts +68 -0
  28. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.d.ts +4 -0
  29. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  30. package/lib/components/AllProjectsDropdown/index.d.ts +1 -0
  31. package/lib/components/AllProjectsDropdown/types.d.ts +10 -0
  32. package/lib/components/AppHeader/AppHeader.d.ts +4 -0
  33. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  34. package/lib/components/AppHeader/index.d.ts +1 -0
  35. package/lib/components/AppHeader/types.d.ts +30 -0
  36. package/lib/components/AttachmentButton/AttachmentButton.d.ts +5 -0
  37. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  38. package/lib/components/AttachmentButton/index.d.ts +1 -0
  39. package/lib/components/AttachmentButton/types.d.ts +8 -0
  40. package/lib/components/Button/Button.d.ts +5 -0
  41. package/lib/components/Button/Button.stories.d.ts +13 -0
  42. package/lib/components/Button/index.d.ts +1 -0
  43. package/lib/components/Button/types.d.ts +61 -0
  44. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.d.ts +5 -0
  45. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  46. package/lib/components/Charts/DashboardDonutChart/index.d.ts +1 -0
  47. package/lib/components/Charts/DashboardDonutChart/types.d.ts +21 -0
  48. package/lib/components/Charts/DonutChart/DonutChart.d.ts +5 -0
  49. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  50. package/lib/components/Charts/DonutChart/index.d.ts +1 -0
  51. package/lib/components/Charts/DonutChart/type.d.ts +13 -0
  52. package/lib/components/Charts/PieChart/PieChart.d.ts +5 -0
  53. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  54. package/lib/components/Charts/PieChart/index.d.ts +1 -0
  55. package/lib/components/Charts/PieChart/types.d.ts +27 -0
  56. package/lib/components/Charts/RadialChart/RadialChart.d.ts +5 -0
  57. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  58. package/lib/components/Charts/RadialChart/index.d.ts +1 -0
  59. package/lib/components/Charts/RadialChart/types.d.ts +25 -0
  60. package/lib/components/Checkbox/Checkbox.d.ts +6 -0
  61. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  62. package/lib/components/Checkbox/index.d.ts +1 -0
  63. package/lib/components/Checkbox/types.d.ts +30 -0
  64. package/lib/components/Chip/Chip.d.ts +4 -0
  65. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  66. package/lib/components/Chip/index.d.ts +1 -0
  67. package/lib/components/Chip/types.d.ts +18 -0
  68. package/lib/components/DatePicker/DatePicker.d.ts +5 -0
  69. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  70. package/lib/components/DatePicker/Timepicker.d.ts +4 -0
  71. package/lib/components/DatePicker/index.d.ts +1 -0
  72. package/lib/components/DatePicker/types.d.ts +81 -0
  73. package/lib/components/DragAndDrop/DragAndDrop.d.ts +9 -0
  74. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  75. package/lib/components/DragAndDrop/DragAndDropList.d.ts +20 -0
  76. package/lib/components/DragAndDrop/index.d.ts +1 -0
  77. package/lib/components/Drawer/Drawer.d.ts +5 -0
  78. package/lib/components/Drawer/Drawer.stories.d.ts +10 -0
  79. package/lib/components/Drawer/Types.d.ts +109 -0
  80. package/lib/components/Drawer/index.d.ts +1 -0
  81. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  82. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  83. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  84. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  85. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  86. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  87. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  88. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  89. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  90. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  91. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  92. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  93. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  94. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  95. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  96. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  97. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  98. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +130 -0
  99. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  100. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  101. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  102. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  103. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  104. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  105. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  106. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  107. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  108. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  109. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  110. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  111. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  112. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  113. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  114. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  115. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  116. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +45 -0
  117. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +3 -0
  118. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  119. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +15 -0
  120. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +3 -0
  121. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  122. package/lib/components/ExcelFile/Types.d.ts +137 -0
  123. package/lib/components/ExcelFile/index.d.ts +1 -0
  124. package/lib/components/ExpandableMenu/ExpandableMenu.d.ts +5 -0
  125. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  126. package/lib/components/ExpandableMenu/index.d.ts +1 -0
  127. package/lib/components/ExpandableMenu/types.d.ts +34 -0
  128. package/lib/components/FF_Captcha/Recaptcha.d.ts +5 -0
  129. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  130. package/lib/components/FF_Captcha/types.d.ts +20 -0
  131. package/lib/components/FileDropzone/Dropzone.d.ts +5 -0
  132. package/lib/components/FileDropzone/FileDropzone.d.ts +4 -0
  133. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  134. package/lib/components/FileDropzone/FilePreview.d.ts +4 -0
  135. package/lib/components/FileDropzone/index.d.ts +1 -0
  136. package/lib/components/FileDropzone/types.d.ts +103 -0
  137. package/lib/components/Form/Form.d.ts +16 -0
  138. package/lib/components/Form/Form.stories.d.ts +6 -0
  139. package/lib/components/Form/index.d.ts +1 -0
  140. package/lib/components/Form/types.d.ts +1 -0
  141. package/lib/components/GridLayout/GridLayout.d.ts +6 -0
  142. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  143. package/lib/components/GridLayout/index.d.ts +2 -0
  144. package/lib/components/GridLayout/types.d.ts +74 -0
  145. package/lib/components/HighlightText/HighlightText.d.ts +4 -0
  146. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  147. package/lib/components/HighlightText/index.d.ts +1 -0
  148. package/lib/components/HighlightText/types.d.ts +4 -0
  149. package/lib/components/Icon/Icon.d.ts +4 -0
  150. package/lib/components/Icon/Icon.stories.d.ts +7 -0
  151. package/lib/components/Icon/iconList.d.ts +2 -0
  152. package/lib/components/Icon/index.d.ts +1 -0
  153. package/lib/components/Icon/types.d.ts +10 -0
  154. package/lib/components/IconButton/IconButton.d.ts +5 -0
  155. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  156. package/lib/components/IconButton/index.d.ts +1 -0
  157. package/lib/components/IconButton/types.d.ts +5 -0
  158. package/lib/components/IconRadioGroup/IconRadioGroup.d.ts +5 -0
  159. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  160. package/lib/components/IconRadioGroup/index.d.ts +1 -0
  161. package/lib/components/IconRadioGroup/type.d.ts +41 -0
  162. package/lib/components/Input/Input.d.ts +4 -0
  163. package/lib/components/Input/Input.stories.d.ts +9 -0
  164. package/lib/components/Input/index.d.ts +1 -0
  165. package/lib/components/Input/types.d.ts +78 -0
  166. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +4 -0
  167. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  168. package/lib/components/InputWithDropdown/index.d.ts +1 -0
  169. package/lib/components/InputWithDropdown/types.d.ts +88 -0
  170. package/lib/components/LazyLoad/LazyLoad.d.ts +2 -0
  171. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  172. package/lib/components/LazyLoad/LazyLoading.d.ts +2 -0
  173. package/lib/components/LazyLoad/index.d.ts +1 -0
  174. package/lib/components/MachineInputField/MachineInputField.d.ts +4 -0
  175. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  176. package/lib/components/MachineInputField/index.d.ts +1 -0
  177. package/lib/components/MachineInputField/types.d.ts +11 -0
  178. package/lib/components/MenuOption/MenuOption.d.ts +4 -0
  179. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  180. package/lib/components/MenuOption/index.d.ts +1 -0
  181. package/lib/components/MenuOption/types.d.ts +141 -0
  182. package/lib/components/MiniModal/MiniModal.d.ts +4 -0
  183. package/lib/components/MiniModal/MiniModal.stories.d.ts +9 -0
  184. package/lib/components/MiniModal/index.d.ts +1 -0
  185. package/lib/components/MiniModal/types.d.ts +101 -0
  186. package/lib/components/Modal/Modal.d.ts +5 -0
  187. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  188. package/lib/components/Modal/index.d.ts +1 -0
  189. package/lib/components/Modal/types.d.ts +29 -0
  190. package/lib/components/MultiSelect/Dropdown.d.ts +4 -0
  191. package/lib/components/MultiSelect/MultiSelect.d.ts +4 -0
  192. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +10 -0
  193. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +23 -0
  194. package/lib/components/MultiSelect/dropdownTypes.d.ts +17 -0
  195. package/lib/components/MultiSelect/index.d.ts +1 -0
  196. package/lib/components/NLPInput/NlpInput.d.ts +4 -0
  197. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  198. package/lib/components/NLPInput/components/NlpDropDown/NlpDropDownType.d.ts +19 -0
  199. package/lib/components/NLPInput/components/NlpDropDown/NlpDropdown.d.ts +4 -0
  200. package/lib/components/NLPInput/index.d.ts +1 -0
  201. package/lib/components/NLPInput/type.d.ts +70 -0
  202. package/lib/components/Paper/Paper.d.ts +4 -0
  203. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  204. package/lib/components/Paper/index.d.ts +1 -0
  205. package/lib/components/Paper/types.d.ts +15 -0
  206. package/lib/components/RadioButton/RadioButton.d.ts +4 -0
  207. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  208. package/lib/components/RadioButton/index.d.ts +1 -0
  209. package/lib/components/RadioButton/radioButtonTypes.d.ts +50 -0
  210. package/lib/components/RadioGroup/RadioGroup.d.ts +4 -0
  211. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  212. package/lib/components/RadioGroup/index.d.ts +1 -0
  213. package/lib/components/RadioGroup/radioGroupTypes.d.ts +62 -0
  214. package/lib/components/Search/Search.d.ts +4 -0
  215. package/lib/components/Search/Search.stories.d.ts +6 -0
  216. package/lib/components/Search/index.d.ts +1 -0
  217. package/lib/components/Search/types.d.ts +15 -0
  218. package/lib/components/Select/Select.d.ts +4 -0
  219. package/lib/components/Select/Select.stories.d.ts +13 -0
  220. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  221. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +15 -0
  222. package/lib/components/Select/index.d.ts +1 -0
  223. package/lib/components/Select/types.d.ts +76 -0
  224. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.d.ts +4 -0
  225. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  226. package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.d.ts +4 -0
  227. package/lib/components/SequentialConnectingBranch/components/AddBrowserModal/types.d.ts +3 -0
  228. package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +4 -0
  229. package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +16 -0
  230. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +4 -0
  231. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/types.d.ts +9 -0
  232. package/lib/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.d.ts +4 -0
  233. package/lib/components/SequentialConnectingBranch/components/DatasetListModal/types.d.ts +3 -0
  234. package/lib/components/SequentialConnectingBranch/index.d.ts +1 -0
  235. package/lib/components/SequentialConnectingBranch/types.d.ts +32 -0
  236. package/lib/components/StateDropdown/StateDropdown.d.ts +3 -0
  237. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  238. package/lib/components/StateDropdown/StateDropdownTypes.d.ts +11 -0
  239. package/lib/components/StateDropdown/index.d.ts +1 -0
  240. package/lib/components/StatusButton/StatusButton.d.ts +4 -0
  241. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  242. package/lib/components/StatusButton/index.d.ts +1 -0
  243. package/lib/components/StatusButton/types.d.ts +35 -0
  244. package/lib/components/Table/Table.d.ts +4 -0
  245. package/lib/components/Table/Table.stories.d.ts +11 -0
  246. package/lib/components/Table/Types.d.ts +106 -0
  247. package/lib/components/Table/index.d.ts +1 -0
  248. package/lib/components/TableTree/TableTree.d.ts +24 -0
  249. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  250. package/lib/components/TableTree/data.d.ts +313 -0
  251. package/lib/components/TableTree/index.d.ts +1 -0
  252. package/lib/components/Tabs/Tabs.d.ts +5 -0
  253. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  254. package/lib/components/Tabs/index.d.ts +1 -0
  255. package/lib/components/Tabs/types.d.ts +45 -0
  256. package/lib/components/TextArea/Textarea.d.ts +4 -0
  257. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  258. package/lib/components/TextArea/Types.d.ts +78 -0
  259. package/lib/components/TextArea/index.d.ts +1 -0
  260. package/lib/components/ThemeProvider/ThemeProvider.d.ts +7 -0
  261. package/lib/components/ThemeProvider/index.d.ts +1 -0
  262. package/lib/components/ThemeProvider/types.d.ts +11 -0
  263. package/lib/components/Toast/Toast.d.ts +5 -0
  264. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  265. package/lib/components/Toast/index.d.ts +1 -0
  266. package/lib/components/Toast/types.d.ts +20 -0
  267. package/lib/components/Toggle/Toggle.d.ts +5 -0
  268. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  269. package/lib/components/Toggle/index.d.ts +1 -0
  270. package/lib/components/Toggle/types.d.ts +50 -0
  271. package/lib/components/Tooltip/Tooltip.d.ts +5 -0
  272. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  273. package/lib/components/Tooltip/index.d.ts +1 -0
  274. package/lib/components/Tooltip/types.d.ts +37 -0
  275. package/lib/components/Typography/Typography.d.ts +5 -0
  276. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  277. package/lib/components/Typography/index.d.ts +1 -0
  278. package/lib/components/Typography/types.d.ts +47 -0
  279. package/lib/components/VariableInput/VariableInput.d.ts +4 -0
  280. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  281. package/lib/components/VariableInput/index.d.ts +1 -0
  282. package/lib/components/VariableInput/types.d.ts +53 -0
  283. package/lib/hooks/keyboardevents/useEscKeyEvent.d.ts +2 -0
  284. package/lib/hooks/useClickOutside.d.ts +2 -0
  285. package/lib/hooks/useFileDropzone.d.ts +3 -0
  286. package/lib/hooks/usePortalPosition.d.ts +9 -0
  287. package/lib/hooks/useTheme.d.ts +3 -0
  288. package/lib/index.d.ts +1864 -0
  289. package/lib/index.esm.js +55755 -0
  290. package/lib/index.esm.js.map +1 -0
  291. package/lib/index.js +55840 -0
  292. package/lib/index.js.map +1 -0
  293. package/lib/tsconfig.tsbuildinfo +1 -0
  294. package/lib/utils/TableCell/TableCell.d.ts +1 -0
  295. package/lib/utils/checkEmpty/checkEmpty.d.ts +3 -0
  296. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  297. package/lib/utils/compareArrays/compareArrays.d.ts +11 -0
  298. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  299. package/lib/utils/compareObjects/compareObjects.d.ts +2 -0
  300. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  301. package/lib/utils/debounce/debounce.d.ts +6 -0
  302. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  303. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  304. package/lib/utils/ffID/ffid.d.ts +1 -0
  305. package/lib/utils/findAndInsert/findAndInsert.d.ts +7 -0
  306. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  307. package/lib/utils/getEncryptedData/getEncryptedData.d.ts +1 -0
  308. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  309. package/lib/utils/getExtension/getExtension.d.ts +4 -0
  310. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  311. package/lib/utils/throttle/throttle.d.ts +6 -0
  312. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  313. package/lib/utils/truncateText/truncateText.d.ts +1 -0
  314. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  315. package/package.json +75 -0
  316. package/rollup.config.mjs +63 -0
  317. package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -0
  318. package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -0
  319. package/src/StyleGuide/ColorPalette/ColorPalette.tsx +68 -0
  320. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +172 -0
  321. package/src/StyleGuide/ColorPalette/index.ts +1 -0
  322. package/src/StyleGuide/ColorPalette/types.ts +19 -0
  323. package/src/StyleGuide/Typography/Typography.scss +99 -0
  324. package/src/StyleGuide/Typography/Typography.stories.tsx +16 -0
  325. package/src/StyleGuide/Typography/Typography.tsx +60 -0
  326. package/src/StyleGuide/Typography/TypographyList.ts +3 -0
  327. package/src/StyleGuide/Typography/types.ts +9 -0
  328. package/src/assets/Themes/BaseTheme.scss +207 -0
  329. package/src/assets/Themes/DarkTheme.scss +207 -0
  330. package/src/assets/Themes/Theme.scss +16 -0
  331. package/src/assets/icons/Arrow.svg +5 -0
  332. package/src/assets/icons/accordion_header_icon.svg +10 -0
  333. package/src/assets/icons/active_license_icon.svg +3 -0
  334. package/src/assets/icons/add_file.svg +14 -0
  335. package/src/assets/icons/add_locator.svg +5 -0
  336. package/src/assets/icons/add_variable_icon.svg +5 -0
  337. package/src/assets/icons/all_borders.svg +3 -0
  338. package/src/assets/icons/all_projects.svg +3 -0
  339. package/src/assets/icons/android.svg +9 -0
  340. package/src/assets/icons/android_icon.svg +6 -0
  341. package/src/assets/icons/app_switch.svg +11 -0
  342. package/src/assets/icons/arrow_down.svg +3 -0
  343. package/src/assets/icons/arrow_right.svg +5 -0
  344. package/src/assets/icons/arrow_up.svg +3 -0
  345. package/src/assets/icons/arrows_down_icon.svg +3 -0
  346. package/src/assets/icons/arrows_right_icon.svg +10 -0
  347. package/src/assets/icons/arrows_top_icon.svg +3 -0
  348. package/src/assets/icons/backward_icon.svg +3 -0
  349. package/src/assets/icons/bold.svg +3 -0
  350. package/src/assets/icons/border_bottom.svg +3 -0
  351. package/src/assets/icons/border_left.svg +3 -0
  352. package/src/assets/icons/border_right.svg +3 -0
  353. package/src/assets/icons/border_top.svg +3 -0
  354. package/src/assets/icons/browser_stack.svg +9 -0
  355. package/src/assets/icons/calendar_icon.svg +9 -0
  356. package/src/assets/icons/check_mark.svg +3 -0
  357. package/src/assets/icons/chrome.svg +12 -0
  358. package/src/assets/icons/clock_icon.svg +11 -0
  359. package/src/assets/icons/clone_icon.svg +3 -0
  360. package/src/assets/icons/close_pill.svg +3 -0
  361. package/src/assets/icons/cloud_server_host_icon.svg +3 -0
  362. package/src/assets/icons/collapse-icon.svg +6 -0
  363. package/src/assets/icons/continue_without_sign.svg +3 -0
  364. package/src/assets/icons/copy-icon.svg +3 -0
  365. package/src/assets/icons/dataset_list.svg +3 -0
  366. package/src/assets/icons/delete.svg +3 -0
  367. package/src/assets/icons/delete_info.svg +17 -0
  368. package/src/assets/icons/details.svg +3 -0
  369. package/src/assets/icons/double_underline.svg +5 -0
  370. package/src/assets/icons/download-icon.svg +3 -0
  371. package/src/assets/icons/download_icon.svg +4 -0
  372. package/src/assets/icons/drag_icon.svg +5 -0
  373. package/src/assets/icons/dropzone_icon.svg +18 -0
  374. package/src/assets/icons/edit_icon.svg +5 -0
  375. package/src/assets/icons/error.svg +17 -0
  376. package/src/assets/icons/expand-icon.svg +6 -0
  377. package/src/assets/icons/export_collection_icon.svg +13 -0
  378. package/src/assets/icons/file.svg +12 -0
  379. package/src/assets/icons/fill_color.svg +7 -0
  380. package/src/assets/icons/filter.svg +5 -0
  381. package/src/assets/icons/fireflink_icon.svg +4 -0
  382. package/src/assets/icons/fireflink_logo.svg +13 -0
  383. package/src/assets/icons/formate_painter.svg +5 -0
  384. package/src/assets/icons/forward_icon.svg +3 -0
  385. package/src/assets/icons/full_access_icon.svg +4 -0
  386. package/src/assets/icons/hamburger_menu.svg +3 -0
  387. package/src/assets/icons/hide_icon.svg +9 -0
  388. package/src/assets/icons/history_icon.svg +19 -0
  389. package/src/assets/icons/impactList.svg +6 -0
  390. package/src/assets/icons/info.svg +17 -0
  391. package/src/assets/icons/info_icon.svg +4 -0
  392. package/src/assets/icons/italic.svg +3 -0
  393. package/src/assets/icons/jira.svg +3 -0
  394. package/src/assets/icons/label_plus.svg +3 -0
  395. package/src/assets/icons/left_arrow_icon.svg +3 -0
  396. package/src/assets/icons/license_info.svg +28 -0
  397. package/src/assets/icons/license_warning.svg +10 -0
  398. package/src/assets/icons/linked_defects.svg +11 -0
  399. package/src/assets/icons/logo.svg +18 -0
  400. package/src/assets/icons/mac.svg +9 -0
  401. package/src/assets/icons/manage_apps.svg +3 -0
  402. package/src/assets/icons/manual_locator.svg +8 -0
  403. package/src/assets/icons/mobile_icon.svg +3 -0
  404. package/src/assets/icons/moon_stars.svg +10 -0
  405. package/src/assets/icons/more.svg +11 -0
  406. package/src/assets/icons/move_icon.svg +5 -0
  407. package/src/assets/icons/ms_dynamic.svg +4 -0
  408. package/src/assets/icons/nlp_help_icon.svg +3 -0
  409. package/src/assets/icons/no_access_icon.svg +4 -0
  410. package/src/assets/icons/no_border.svg +3 -0
  411. package/src/assets/icons/notification_icon.svg +3 -0
  412. package/src/assets/icons/plus_icon.svg +11 -0
  413. package/src/assets/icons/plus_user_icon.svg +3 -0
  414. package/src/assets/icons/refresh-icon.svg +4 -0
  415. package/src/assets/icons/reload.svg +3 -0
  416. package/src/assets/icons/remove.svg +12 -0
  417. package/src/assets/icons/replace.svg +12 -0
  418. package/src/assets/icons/right_arrow_icon.svg +4 -0
  419. package/src/assets/icons/run_icon.svg +26 -0
  420. package/src/assets/icons/sales_force.svg +7 -0
  421. package/src/assets/icons/search.svg +3 -0
  422. package/src/assets/icons/strike_through.svg +3 -0
  423. package/src/assets/icons/success.svg +13 -0
  424. package/src/assets/icons/sun_icon.svg +10 -0
  425. package/src/assets/icons/switch_license_icon.svg +123 -0
  426. package/src/assets/icons/text_align_center.svg +3 -0
  427. package/src/assets/icons/text_align_left.svg +3 -0
  428. package/src/assets/icons/text_align_right.svg +3 -0
  429. package/src/assets/icons/text_color.svg +3 -0
  430. package/src/assets/icons/tick_icon.svg +5 -0
  431. package/src/assets/icons/toast_close.svg +3 -0
  432. package/src/assets/icons/underline.svg +4 -0
  433. package/src/assets/icons/update_icon.svg +3 -0
  434. package/src/assets/icons/user_profile.svg +3 -0
  435. package/src/assets/icons/vertical_separator.svg +3 -0
  436. package/src/assets/icons/view_access_icon.svg +4 -0
  437. package/src/assets/icons/view_icon.svg +3 -0
  438. package/src/assets/icons/warning.svg +17 -0
  439. package/src/assets/icons/web&mobile_icon.svg +3 -0
  440. package/src/assets/icons/web_icon.svg +3 -0
  441. package/src/assets/icons/window_maximize.svg +4 -0
  442. package/src/assets/icons/window_minimize.svg +3 -0
  443. package/src/assets/icons/windows.svg +6 -0
  444. package/src/assets/icons/wrong_mark.svg +3 -0
  445. package/src/assets/icons/wswb_delete_icon.svg +4 -0
  446. package/src/assets/icons/wswb_plus_icon.svg +5 -0
  447. package/src/assets/styles/_colors.scss +148 -0
  448. package/src/assets/styles/_fonts.scss +68 -0
  449. package/src/assets/styles/_mixins.scss +21 -0
  450. package/src/assets/utils/functionUtils.ts +42 -0
  451. package/src/components/Accordion/Accordion.scss +44 -0
  452. package/src/components/Accordion/Accordion.stories.tsx +31 -0
  453. package/src/components/Accordion/Accordion.tsx +62 -0
  454. package/src/components/Accordion/index.ts +1 -0
  455. package/src/components/Accordion/types.ts +28 -0
  456. package/src/components/AddResourceButton/AddButton.scss +36 -0
  457. package/src/components/AddResourceButton/AddButton.stories.tsx +126 -0
  458. package/src/components/AddResourceButton/AddButton.tsx +121 -0
  459. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +160 -0
  460. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -0
  461. package/src/components/AddResourceButton/index.ts +1 -0
  462. package/src/components/AddResourceButton/type.ts +92 -0
  463. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +70 -0
  464. package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +119 -0
  465. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +122 -0
  466. package/src/components/AllProjectsDropdown/index.ts +1 -0
  467. package/src/components/AllProjectsDropdown/types.ts +10 -0
  468. package/src/components/AppHeader/AppHeader.scss +129 -0
  469. package/src/components/AppHeader/AppHeader.stories.tsx +167 -0
  470. package/src/components/AppHeader/AppHeader.tsx +133 -0
  471. package/src/components/AppHeader/index.ts +1 -0
  472. package/src/components/AppHeader/types.ts +31 -0
  473. package/src/components/AttachmentButton/AttachmentButton.scss +9 -0
  474. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +76 -0
  475. package/src/components/AttachmentButton/AttachmentButton.tsx +113 -0
  476. package/src/components/AttachmentButton/index.ts +1 -0
  477. package/src/components/AttachmentButton/types.ts +8 -0
  478. package/src/components/Button/Button.scss +152 -0
  479. package/src/components/Button/Button.stories.tsx +81 -0
  480. package/src/components/Button/Button.tsx +66 -0
  481. package/src/components/Button/index.ts +1 -0
  482. package/src/components/Button/types.ts +65 -0
  483. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +145 -0
  484. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +52 -0
  485. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +335 -0
  486. package/src/components/Charts/DashboardDonutChart/index.ts +1 -0
  487. package/src/components/Charts/DashboardDonutChart/types.ts +33 -0
  488. package/src/components/Charts/DonutChart/DonutChart.scss +76 -0
  489. package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -0
  490. package/src/components/Charts/DonutChart/DonutChart.tsx +241 -0
  491. package/src/components/Charts/DonutChart/index.ts +1 -0
  492. package/src/components/Charts/DonutChart/type.ts +23 -0
  493. package/src/components/Charts/PieChart/PieChart.scss +39 -0
  494. package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -0
  495. package/src/components/Charts/PieChart/PieChart.tsx +193 -0
  496. package/src/components/Charts/PieChart/index.ts +1 -0
  497. package/src/components/Charts/PieChart/types.ts +28 -0
  498. package/src/components/Charts/RadialChart/RadialChart.scss +12 -0
  499. package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -0
  500. package/src/components/Charts/RadialChart/RadialChart.tsx +174 -0
  501. package/src/components/Charts/RadialChart/index.ts +1 -0
  502. package/src/components/Charts/RadialChart/types.ts +32 -0
  503. package/src/components/Checkbox/Checkbox.scss +89 -0
  504. package/src/components/Checkbox/Checkbox.stories.tsx +47 -0
  505. package/src/components/Checkbox/Checkbox.tsx +61 -0
  506. package/src/components/Checkbox/index.ts +1 -0
  507. package/src/components/Checkbox/types.ts +30 -0
  508. package/src/components/Chip/Chip.scss +71 -0
  509. package/src/components/Chip/Chip.stories.tsx +88 -0
  510. package/src/components/Chip/Chip.tsx +35 -0
  511. package/src/components/Chip/index.ts +1 -0
  512. package/src/components/Chip/types.ts +19 -0
  513. package/src/components/DatePicker/DatePicker.scss +387 -0
  514. package/src/components/DatePicker/DatePicker.stories.tsx +161 -0
  515. package/src/components/DatePicker/DatePicker.tsx +438 -0
  516. package/src/components/DatePicker/Timepicker.tsx +372 -0
  517. package/src/components/DatePicker/index.ts +1 -0
  518. package/src/components/DatePicker/types.ts +100 -0
  519. package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -0
  520. package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -0
  521. package/src/components/DragAndDrop/DragAndDrop.ts +7 -0
  522. package/src/components/DragAndDrop/DragAndDropList.scss +69 -0
  523. package/src/components/DragAndDrop/DragAndDropList.tsx +150 -0
  524. package/src/components/DragAndDrop/index.ts +1 -0
  525. package/src/components/Drawer/Drawer.scss +129 -0
  526. package/src/components/Drawer/Drawer.stories.tsx +129 -0
  527. package/src/components/Drawer/Drawer.tsx +198 -0
  528. package/src/components/Drawer/Types.ts +112 -0
  529. package/src/components/Drawer/index.ts +1 -0
  530. package/src/components/ExcelFile/ChangeExcelStyles.tsx +66 -0
  531. package/src/components/ExcelFile/ColorBarSelector/ColorBarSelector.scss +13 -0
  532. package/src/components/ExcelFile/ColorBarSelector/ColorBarSelector.tsx +43 -0
  533. package/src/components/ExcelFile/ContextMenu/ContextMenu.scss +102 -0
  534. package/src/components/ExcelFile/ContextMenu/ContextMenu.tsx +104 -0
  535. package/src/components/ExcelFile/ExcelFile/Excel/ActiveCell.tsx +131 -0
  536. package/src/components/ExcelFile/ExcelFile/Excel/Cell.tsx +201 -0
  537. package/src/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.tsx +123 -0
  538. package/src/components/ExcelFile/ExcelFile/Excel/Copied.tsx +25 -0
  539. package/src/components/ExcelFile/ExcelFile/Excel/CornerIndicator.tsx +49 -0
  540. package/src/components/ExcelFile/ExcelFile/Excel/DataEditor.tsx +37 -0
  541. package/src/components/ExcelFile/ExcelFile/Excel/DataViewer.tsx +46 -0
  542. package/src/components/ExcelFile/ExcelFile/Excel/FloatingRect.tsx +31 -0
  543. package/src/components/ExcelFile/ExcelFile/Excel/HeaderRow.tsx +5 -0
  544. package/src/components/ExcelFile/ExcelFile/Excel/Row.tsx +5 -0
  545. package/src/components/ExcelFile/ExcelFile/Excel/RowIndicator.tsx +102 -0
  546. package/src/components/ExcelFile/ExcelFile/Excel/Selected.tsx +32 -0
  547. package/src/components/ExcelFile/ExcelFile/Excel/Spreadsheet.css +144 -0
  548. package/src/components/ExcelFile/ExcelFile/Excel/Spreadsheet.tsx +494 -0
  549. package/src/components/ExcelFile/ExcelFile/Excel/Table.tsx +19 -0
  550. package/src/components/ExcelFile/ExcelFile/Excel/actions.ts +302 -0
  551. package/src/components/ExcelFile/ExcelFile/Excel/areModelsEqual.ts +18 -0
  552. package/src/components/ExcelFile/ExcelFile/Excel/context.ts +12 -0
  553. package/src/components/ExcelFile/ExcelFile/Excel/engine/engine.ts +200 -0
  554. package/src/components/ExcelFile/ExcelFile/Excel/engine/formula.ts +137 -0
  555. package/src/components/ExcelFile/ExcelFile/Excel/engine/index.ts +2 -0
  556. package/src/components/ExcelFile/ExcelFile/Excel/engine/point-graph.ts +154 -0
  557. package/src/components/ExcelFile/ExcelFile/Excel/engine/point-hash.ts +10 -0
  558. package/src/components/ExcelFile/ExcelFile/Excel/engine/point-set.ts +69 -0
  559. package/src/components/ExcelFile/ExcelFile/Excel/index.ts +48 -0
  560. package/src/components/ExcelFile/ExcelFile/Excel/matrix.ts +388 -0
  561. package/src/components/ExcelFile/ExcelFile/Excel/point-range.ts +82 -0
  562. package/src/components/ExcelFile/ExcelFile/Excel/point.ts +15 -0
  563. package/src/components/ExcelFile/ExcelFile/Excel/reducer.ts +682 -0
  564. package/src/components/ExcelFile/ExcelFile/Excel/selection.ts +257 -0
  565. package/src/components/ExcelFile/ExcelFile/Excel/types.ts +217 -0
  566. package/src/components/ExcelFile/ExcelFile/Excel/typings/fast-formula-parser.d.ts +58 -0
  567. package/src/components/ExcelFile/ExcelFile/Excel/use-dispatch.ts +8 -0
  568. package/src/components/ExcelFile/ExcelFile/Excel/use-selector.ts +9 -0
  569. package/src/components/ExcelFile/ExcelFile/Excel/util.ts +173 -0
  570. package/src/components/ExcelFile/ExcelFile/ExcelFile.scss +27 -0
  571. package/src/components/ExcelFile/ExcelFile/ExcelFile.tsx +501 -0
  572. package/src/components/ExcelFile/ExcelFile.stories.tsx +112 -0
  573. package/src/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.scss +16 -0
  574. package/src/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.tsx +79 -0
  575. package/src/components/ExcelFile/ExcelToolBar/ExcelToolBar.scss +22 -0
  576. package/src/components/ExcelFile/ExcelToolBar/ExcelToolBar.tsx +271 -0
  577. package/src/components/ExcelFile/Types.ts +185 -0
  578. package/src/components/ExcelFile/index.ts +1 -0
  579. package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -0
  580. package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -0
  581. package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -0
  582. package/src/components/ExpandableMenu/index.ts +1 -0
  583. package/src/components/ExpandableMenu/types.ts +34 -0
  584. package/src/components/FF_Captcha/Recaptcha.scss +11 -0
  585. package/src/components/FF_Captcha/Recaptcha.tsx +41 -0
  586. package/src/components/FF_Captcha/captcha.stories.tsx +40 -0
  587. package/src/components/FF_Captcha/index.ts +0 -0
  588. package/src/components/FF_Captcha/types.ts +22 -0
  589. package/src/components/FileDropzone/Dropzone.tsx +55 -0
  590. package/src/components/FileDropzone/FileDropzone.scss +134 -0
  591. package/src/components/FileDropzone/FileDropzone.stories.tsx +83 -0
  592. package/src/components/FileDropzone/FileDropzone.tsx +98 -0
  593. package/src/components/FileDropzone/FilePreview.tsx +75 -0
  594. package/src/components/FileDropzone/index.ts +1 -0
  595. package/src/components/FileDropzone/types.ts +113 -0
  596. package/src/components/Form/Form.scss +98 -0
  597. package/src/components/Form/Form.stories.tsx +177 -0
  598. package/src/components/Form/Form.tsx +57 -0
  599. package/src/components/Form/index.ts +1 -0
  600. package/src/components/Form/types.ts +1 -0
  601. package/src/components/Form/validation.json +29 -0
  602. package/src/components/GridLayout/GridLayout.scss +69 -0
  603. package/src/components/GridLayout/GridLayout.stories.tsx +90 -0
  604. package/src/components/GridLayout/GridLayout.tsx +39 -0
  605. package/src/components/GridLayout/GridLayoutStory.scss +25 -0
  606. package/src/components/GridLayout/index.ts +1 -0
  607. package/src/components/GridLayout/types.ts +84 -0
  608. package/src/components/HighlightText/HighlightText.scss +3 -0
  609. package/src/components/HighlightText/HighlightText.stories.tsx +22 -0
  610. package/src/components/HighlightText/HighlightText.tsx +33 -0
  611. package/src/components/HighlightText/index.ts +1 -0
  612. package/src/components/HighlightText/types.ts +4 -0
  613. package/src/components/Icon/Icon.stories.tsx +37 -0
  614. package/src/components/Icon/Icon.tsx +49 -0
  615. package/src/components/Icon/Icons.scss +32 -0
  616. package/src/components/Icon/iconList.ts +240 -0
  617. package/src/components/Icon/index.ts +1 -0
  618. package/src/components/Icon/types.ts +10 -0
  619. package/src/components/IconButton/IconButton.scss +54 -0
  620. package/src/components/IconButton/IconButton.stories.tsx +33 -0
  621. package/src/components/IconButton/IconButton.tsx +30 -0
  622. package/src/components/IconButton/index.ts +1 -0
  623. package/src/components/IconButton/types.ts +5 -0
  624. package/src/components/IconRadioGroup/IconRadioGroup.scss +60 -0
  625. package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -0
  626. package/src/components/IconRadioGroup/IconRadioGroup.tsx +72 -0
  627. package/src/components/IconRadioGroup/index.ts +1 -0
  628. package/src/components/IconRadioGroup/type.ts +50 -0
  629. package/src/components/Input/Input.scss +155 -0
  630. package/src/components/Input/Input.stories.tsx +96 -0
  631. package/src/components/Input/Input.tsx +97 -0
  632. package/src/components/Input/index.ts +1 -0
  633. package/src/components/Input/types.ts +81 -0
  634. package/src/components/InputWithDropdown/InputWithDropdown.scss +185 -0
  635. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +168 -0
  636. package/src/components/InputWithDropdown/InputWithDropdown.tsx +90 -0
  637. package/src/components/InputWithDropdown/index.ts +1 -0
  638. package/src/components/InputWithDropdown/types.ts +109 -0
  639. package/src/components/LazyLoad/LazyLoad.d.ts +3 -0
  640. package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -0
  641. package/src/components/LazyLoad/LazyLoad.ts +2 -0
  642. package/src/components/LazyLoad/LazyLoading.tsx +19 -0
  643. package/src/components/LazyLoad/index.ts +1 -0
  644. package/src/components/MachineInputField/MachineInputField.scss +44 -0
  645. package/src/components/MachineInputField/MachineInputField.stories.tsx +32 -0
  646. package/src/components/MachineInputField/MachineInputField.tsx +71 -0
  647. package/src/components/MachineInputField/index.ts +1 -0
  648. package/src/components/MachineInputField/types.ts +12 -0
  649. package/src/components/MenuOption/MenuOption.scss +83 -0
  650. package/src/components/MenuOption/MenuOption.stories.tsx +280 -0
  651. package/src/components/MenuOption/MenuOption.tsx +128 -0
  652. package/src/components/MenuOption/index.ts +1 -0
  653. package/src/components/MenuOption/types.ts +170 -0
  654. package/src/components/MiniModal/MiniModal.scss +170 -0
  655. package/src/components/MiniModal/MiniModal.stories.tsx +599 -0
  656. package/src/components/MiniModal/MiniModal.tsx +262 -0
  657. package/src/components/MiniModal/index.ts +1 -0
  658. package/src/components/MiniModal/types.ts +101 -0
  659. package/src/components/Modal/Modal.stories.tsx +67 -0
  660. package/src/components/Modal/Modal.tsx +77 -0
  661. package/src/components/Modal/index.tsx +1 -0
  662. package/src/components/Modal/modal.scss +39 -0
  663. package/src/components/Modal/types.ts +40 -0
  664. package/src/components/MultiSelect/Dropdown.scss +77 -0
  665. package/src/components/MultiSelect/Dropdown.tsx +100 -0
  666. package/src/components/MultiSelect/MultiSelect.scss +197 -0
  667. package/src/components/MultiSelect/MultiSelect.stories.tsx +114 -0
  668. package/src/components/MultiSelect/MultiSelect.tsx +332 -0
  669. package/src/components/MultiSelect/MultiSelectTypes.ts +24 -0
  670. package/src/components/MultiSelect/dropdownTypes.ts +17 -0
  671. package/src/components/MultiSelect/index.ts +1 -0
  672. package/src/components/NLPInput/NLPInput.scss +246 -0
  673. package/src/components/NLPInput/NlpInput.stories.tsx +136 -0
  674. package/src/components/NLPInput/NlpInput.tsx +374 -0
  675. package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +60 -0
  676. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +83 -0
  677. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +180 -0
  678. package/src/components/NLPInput/index.ts +1 -0
  679. package/src/components/NLPInput/type.tsx +124 -0
  680. package/src/components/Paper/Paper.scss +13 -0
  681. package/src/components/Paper/Paper.stories.tsx +77 -0
  682. package/src/components/Paper/Paper.tsx +14 -0
  683. package/src/components/Paper/index.ts +1 -0
  684. package/src/components/Paper/types.ts +19 -0
  685. package/src/components/RadioButton/RadioButton.scss +104 -0
  686. package/src/components/RadioButton/RadioButton.stories.tsx +43 -0
  687. package/src/components/RadioButton/RadioButton.tsx +39 -0
  688. package/src/components/RadioButton/index.ts +1 -0
  689. package/src/components/RadioButton/radioButtonTypes.tsx +58 -0
  690. package/src/components/RadioGroup/RadioGroup.scss +5 -0
  691. package/src/components/RadioGroup/RadioGroup.stories.tsx +122 -0
  692. package/src/components/RadioGroup/RadioGroup.tsx +33 -0
  693. package/src/components/RadioGroup/index.ts +1 -0
  694. package/src/components/RadioGroup/radioGroupTypes.tsx +72 -0
  695. package/src/components/Search/Search.scss +85 -0
  696. package/src/components/Search/Search.stories.tsx +26 -0
  697. package/src/components/Search/Search.tsx +103 -0
  698. package/src/components/Search/index.ts +1 -0
  699. package/src/components/Search/types.ts +15 -0
  700. package/src/components/Select/Select.scss +246 -0
  701. package/src/components/Select/Select.stories.tsx +156 -0
  702. package/src/components/Select/Select.tsx +373 -0
  703. package/src/components/Select/components/Dropdown/Dropdown.scss +70 -0
  704. package/src/components/Select/components/Dropdown/Dropdown.tsx +93 -0
  705. package/src/components/Select/components/Dropdown/dropdownTypes.ts +19 -0
  706. package/src/components/Select/index.ts +1 -0
  707. package/src/components/Select/types.ts +131 -0
  708. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +117 -0
  709. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +62 -0
  710. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +210 -0
  711. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -0
  712. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -0
  713. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -0
  714. package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +184 -0
  715. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +203 -0
  716. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +18 -0
  717. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -0
  718. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +66 -0
  719. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +10 -0
  720. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -0
  721. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -0
  722. package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -0
  723. package/src/components/SequentialConnectingBranch/index.ts +1 -0
  724. package/src/components/SequentialConnectingBranch/types.ts +42 -0
  725. package/src/components/StateDropdown/StateDropdown.stories.tsx +99 -0
  726. package/src/components/StateDropdown/StateDropdown.tsx +218 -0
  727. package/src/components/StateDropdown/StateDropdownTypes.tsx +21 -0
  728. package/src/components/StateDropdown/index.ts +1 -0
  729. package/src/components/StatusButton/StatusButton.scss +90 -0
  730. package/src/components/StatusButton/StatusButton.stories.tsx +91 -0
  731. package/src/components/StatusButton/StatusButton.tsx +40 -0
  732. package/src/components/StatusButton/index.ts +1 -0
  733. package/src/components/StatusButton/types.ts +45 -0
  734. package/src/components/Table/Table.scss +107 -0
  735. package/src/components/Table/Table.stories.tsx +357 -0
  736. package/src/components/Table/Table.tsx +154 -0
  737. package/src/components/Table/Types.ts +108 -0
  738. package/src/components/Table/index.ts +1 -0
  739. package/src/components/TableTree/TableTree.scss +158 -0
  740. package/src/components/TableTree/TableTree.stories.tsx +86 -0
  741. package/src/components/TableTree/TableTree.tsx +255 -0
  742. package/src/components/TableTree/TableTreeStories.scss +22 -0
  743. package/src/components/TableTree/data.ts +573 -0
  744. package/src/components/TableTree/index.ts +1 -0
  745. package/src/components/Tabs/Tabs.scss +79 -0
  746. package/src/components/Tabs/Tabs.stories.tsx +134 -0
  747. package/src/components/Tabs/Tabs.tsx +62 -0
  748. package/src/components/Tabs/index.ts +1 -0
  749. package/src/components/Tabs/types.ts +48 -0
  750. package/src/components/TextArea/Textarea.scss +144 -0
  751. package/src/components/TextArea/Textarea.stories.tsx +92 -0
  752. package/src/components/TextArea/Textarea.tsx +84 -0
  753. package/src/components/TextArea/Types.ts +82 -0
  754. package/src/components/TextArea/index.tsx +1 -0
  755. package/src/components/ThemeProvider/ThemeProvider.tsx +27 -0
  756. package/src/components/ThemeProvider/index.ts +1 -0
  757. package/src/components/ThemeProvider/types.ts +14 -0
  758. package/src/components/Toast/Toast.scss +121 -0
  759. package/src/components/Toast/Toast.stories.tsx +180 -0
  760. package/src/components/Toast/Toast.tsx +116 -0
  761. package/src/components/Toast/index.ts +1 -0
  762. package/src/components/Toast/types.ts +27 -0
  763. package/src/components/Toggle/Toggle.scss +133 -0
  764. package/src/components/Toggle/Toggle.stories.tsx +132 -0
  765. package/src/components/Toggle/Toggle.tsx +96 -0
  766. package/src/components/Toggle/index.ts +1 -0
  767. package/src/components/Toggle/types.ts +43 -0
  768. package/src/components/Tooltip/Tooltip.scss +26 -0
  769. package/src/components/Tooltip/Tooltip.stories.tsx +97 -0
  770. package/src/components/Tooltip/Tooltip.tsx +194 -0
  771. package/src/components/Tooltip/index.ts +1 -0
  772. package/src/components/Tooltip/types.ts +60 -0
  773. package/src/components/Typography/Typography.scss +49 -0
  774. package/src/components/Typography/Typography.stories.tsx +57 -0
  775. package/src/components/Typography/Typography.tsx +39 -0
  776. package/src/components/Typography/index.ts +1 -0
  777. package/src/components/Typography/types.ts +56 -0
  778. package/src/components/VariableInput/VariableInput.scss +128 -0
  779. package/src/components/VariableInput/VariableInput.stories.tsx +32 -0
  780. package/src/components/VariableInput/VariableInput.tsx +352 -0
  781. package/src/components/VariableInput/index.ts +1 -0
  782. package/src/components/VariableInput/types.ts +56 -0
  783. package/src/fonts/Montserrat/Montserrat-Medium.ttf +0 -0
  784. package/src/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
  785. package/src/fonts/Montserrat/Montserrat-SemiBold.ttf +0 -0
  786. package/src/fonts/Poppins/Poppins-Black.ttf +0 -0
  787. package/src/fonts/Poppins/Poppins-BlackItalic.ttf +0 -0
  788. package/src/fonts/Poppins/Poppins-Bold.ttf +0 -0
  789. package/src/fonts/Poppins/Poppins-BoldItalic.ttf +0 -0
  790. package/src/fonts/Poppins/Poppins-ExtraBold.ttf +0 -0
  791. package/src/fonts/Poppins/Poppins-ExtraBoldItalic.ttf +0 -0
  792. package/src/fonts/Poppins/Poppins-ExtraLight.ttf +0 -0
  793. package/src/fonts/Poppins/Poppins-ExtraLightItalic.ttf +0 -0
  794. package/src/fonts/Poppins/Poppins-Italic.ttf +0 -0
  795. package/src/fonts/Poppins/Poppins-Light.ttf +0 -0
  796. package/src/fonts/Poppins/Poppins-LightItalic.ttf +0 -0
  797. package/src/fonts/Poppins/Poppins-Medium.ttf +0 -0
  798. package/src/fonts/Poppins/Poppins-MediumItalic.ttf +0 -0
  799. package/src/fonts/Poppins/Poppins-Regular.ttf +0 -0
  800. package/src/fonts/Poppins/Poppins-SemiBold.ttf +0 -0
  801. package/src/fonts/Poppins/Poppins-SemiBoldItalic.ttf +0 -0
  802. package/src/fonts/Poppins/Poppins-Thin.ttf +0 -0
  803. package/src/fonts/Poppins/Poppins-ThinItalic.ttf +0 -0
  804. package/src/hooks/keyboardevents/useEscKeyEvent.tsx +31 -0
  805. package/src/hooks/useClickOutside.tsx +30 -0
  806. package/src/hooks/useFileDropzone.tsx +273 -0
  807. package/src/hooks/usePortalPosition.tsx +53 -0
  808. package/src/hooks/useTheme.tsx +13 -0
  809. package/src/index.ts +139 -0
  810. package/src/utils/TableCell/TableCell.ts +16 -0
  811. package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -0
  812. package/src/utils/checkEmpty/checkEmpty.ts +24 -0
  813. package/src/utils/compareArrays/compareArrays.stories.tsx +62 -0
  814. package/src/utils/compareArrays/compareArrays.ts +31 -0
  815. package/src/utils/compareObjects/compareObjects.stories.tsx +51 -0
  816. package/src/utils/compareObjects/compareObjects.ts +53 -0
  817. package/src/utils/debounce/debounce.stories.tsx +81 -0
  818. package/src/utils/debounce/debounce.ts +28 -0
  819. package/src/utils/ffID/ffID.stories.tsx +35 -0
  820. package/src/utils/ffID/ffid.ts +7 -0
  821. package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -0
  822. package/src/utils/findAndInsert/findAndInsert.ts +49 -0
  823. package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -0
  824. package/src/utils/getEncryptedData/getEncryptedData.ts +8 -0
  825. package/src/utils/getExtension/getExtension.stories.tsx +23 -0
  826. package/src/utils/getExtension/getExtension.ts +28 -0
  827. package/src/utils/throttle/throttle.stories.tsx +100 -0
  828. package/src/utils/throttle/throttle.ts +33 -0
  829. package/src/utils/truncateText/truncateText.stories.tsx +37 -0
  830. package/src/utils/truncateText/truncateText.ts +4 -0
  831. package/tsconfig.json +55 -0
  832. package/vite.config.js +14 -0
@@ -0,0 +1,28 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_794_7659" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4674 0.217769C19.4684 -0.0725897 20.5315 -0.0725897 21.5326 0.217769C22.179 0.4053 22.7305 0.730828 23.2743 1.1273C23.7924 1.50514 24.382 2.00759 25.0836 2.60544L25.4439 2.9126C26.0716 3.44749 26.2431 3.58556 26.4193 3.68605C26.601 3.78954 26.7948 3.86986 26.9965 3.92509C27.1923 3.97875 27.411 4.00232 28.2332 4.06791L28.7051 4.10558C29.624 4.17888 30.3962 4.2405 31.0298 4.33971C31.6945 4.44384 32.3147 4.60362 32.9045 4.92817C33.8175 5.4307 34.5693 6.18235 35.0719 7.09554C35.3964 7.68528 35.5562 8.30544 35.6602 8.97024C35.7595 9.60384 35.8211 10.376 35.8943 11.2949L35.9321 11.7668C35.9977 12.5889 36.0211 12.8077 36.0749 13.0035C36.1301 13.2051 36.2104 13.399 36.3138 13.5806C36.4144 13.757 36.5525 13.9284 37.0874 14.556L37.3945 14.9165C37.9925 15.618 38.4948 16.2076 38.8727 16.7258C39.2692 17.2693 39.5947 17.8209 39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325C39.5947 22.179 39.2692 22.7306 38.8727 23.2743C38.4948 23.7925 37.9925 24.3818 37.3947 25.0834L37.0874 25.4439C36.5525 26.0715 36.4144 26.243 36.3138 26.4194C36.2104 26.601 36.1301 26.7949 36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L35.8943 28.705C35.8211 29.6239 35.7595 30.3961 35.6602 31.0296C35.5562 31.6944 35.3964 32.3146 35.0719 32.9044C34.5693 33.8176 33.8175 34.5692 32.9045 35.0717C32.3147 35.3964 31.6945 35.5561 31.0298 35.6603C30.3962 35.7595 29.624 35.8211 28.7051 35.8944L28.2332 35.932C27.411 35.9976 27.1923 36.0212 26.9965 36.0748C26.7948 36.13 26.601 36.2105 26.4193 36.3139C26.2431 36.4143 26.0716 36.5525 25.4439 37.0873L25.0834 37.3946C24.382 37.9923 23.7924 38.4949 23.2743 38.8726C22.7305 39.2691 22.179 39.5946 21.5326 39.7822C20.5315 40.0725 19.4684 40.0725 18.4674 39.7822C17.821 39.5946 17.2694 39.2691 16.7257 38.8726C16.2076 38.4949 15.618 37.9923 14.9165 37.3946L14.556 37.0873C13.9283 36.5525 13.757 36.4143 13.5806 36.3139C13.399 36.2105 13.2051 36.13 13.0035 36.0748C12.8077 36.0212 12.5889 35.9976 11.7668 35.932L11.2949 35.8944C10.376 35.8211 9.60384 35.7595 8.97024 35.6603C8.30544 35.5561 7.68528 35.3964 7.09554 35.0717C6.18235 34.5692 5.4307 33.8176 4.92817 32.9044C4.6036 32.3146 4.44382 31.6944 4.33971 31.0296C4.24048 30.3961 4.17888 29.6241 4.10558 28.7052L4.06791 28.2331C4.00232 27.4111 3.97875 27.1922 3.9251 26.9966C3.86986 26.7949 3.78954 26.601 3.68605 26.4194C3.58554 26.243 3.44749 26.0715 2.91258 25.4439L2.6054 25.0834C2.00757 24.382 1.50512 23.7925 1.1273 23.2743C0.730829 22.7306 0.4053 22.179 0.217769 21.5325C-0.0725897 20.5314 -0.0725897 19.4685 0.217769 18.4674C0.4053 17.8209 0.730829 17.2693 1.1273 16.7258C1.50514 16.2076 2.00757 15.618 2.60542 14.9165L2.91258 14.556C3.44749 13.9284 3.58554 13.757 3.68605 13.5806C3.78954 13.399 3.86986 13.2051 3.9251 13.0035C3.97875 12.8077 4.00232 12.5889 4.06791 11.7668L4.10558 11.2947C4.17888 10.376 4.24048 9.6038 4.33971 8.97024C4.44382 8.30544 4.6036 7.68528 4.92817 7.09554C5.4307 6.18235 6.18235 5.43072 7.09554 4.92817C7.68528 4.60362 8.30544 4.44384 8.97024 4.33971C9.6038 4.2405 10.3759 4.17888 11.2947 4.10558L11.7668 4.06791C12.5889 4.00232 12.8077 3.97875 13.0035 3.92509C13.2051 3.86986 13.399 3.78954 13.5806 3.68605C13.757 3.58556 13.9283 3.44749 14.556 2.9126L14.9165 2.60544C15.618 2.00759 16.2076 1.50514 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769Z"/>
4
+ </mask>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4674 0.217769C19.4684 -0.0725897 20.5315 -0.0725897 21.5326 0.217769C22.179 0.4053 22.7305 0.730828 23.2743 1.1273C23.7924 1.50514 24.382 2.00759 25.0836 2.60544L25.4439 2.9126C26.0716 3.44749 26.2431 3.58556 26.4193 3.68605C26.601 3.78954 26.7948 3.86986 26.9965 3.92509C27.1923 3.97875 27.411 4.00232 28.2332 4.06791L28.7051 4.10558C29.624 4.17888 30.3962 4.2405 31.0298 4.33971C31.6945 4.44384 32.3147 4.60362 32.9045 4.92817C33.8175 5.4307 34.5693 6.18235 35.0719 7.09554C35.3964 7.68528 35.5562 8.30544 35.6602 8.97024C35.7595 9.60384 35.8211 10.376 35.8943 11.2949L35.9321 11.7668C35.9977 12.5889 36.0211 12.8077 36.0749 13.0035C36.1301 13.2051 36.2104 13.399 36.3138 13.5806C36.4144 13.757 36.5525 13.9284 37.0874 14.556L37.3945 14.9165C37.9925 15.618 38.4948 16.2076 38.8727 16.7258C39.2692 17.2693 39.5947 17.8209 39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325C39.5947 22.179 39.2692 22.7306 38.8727 23.2743C38.4948 23.7925 37.9925 24.3818 37.3947 25.0834L37.0874 25.4439C36.5525 26.0715 36.4144 26.243 36.3138 26.4194C36.2104 26.601 36.1301 26.7949 36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L35.8943 28.705C35.8211 29.6239 35.7595 30.3961 35.6602 31.0296C35.5562 31.6944 35.3964 32.3146 35.0719 32.9044C34.5693 33.8176 33.8175 34.5692 32.9045 35.0717C32.3147 35.3964 31.6945 35.5561 31.0298 35.6603C30.3962 35.7595 29.624 35.8211 28.7051 35.8944L28.2332 35.932C27.411 35.9976 27.1923 36.0212 26.9965 36.0748C26.7948 36.13 26.601 36.2105 26.4193 36.3139C26.2431 36.4143 26.0716 36.5525 25.4439 37.0873L25.0834 37.3946C24.382 37.9923 23.7924 38.4949 23.2743 38.8726C22.7305 39.2691 22.179 39.5946 21.5326 39.7822C20.5315 40.0725 19.4684 40.0725 18.4674 39.7822C17.821 39.5946 17.2694 39.2691 16.7257 38.8726C16.2076 38.4949 15.618 37.9923 14.9165 37.3946L14.556 37.0873C13.9283 36.5525 13.757 36.4143 13.5806 36.3139C13.399 36.2105 13.2051 36.13 13.0035 36.0748C12.8077 36.0212 12.5889 35.9976 11.7668 35.932L11.2949 35.8944C10.376 35.8211 9.60384 35.7595 8.97024 35.6603C8.30544 35.5561 7.68528 35.3964 7.09554 35.0717C6.18235 34.5692 5.4307 33.8176 4.92817 32.9044C4.6036 32.3146 4.44382 31.6944 4.33971 31.0296C4.24048 30.3961 4.17888 29.6241 4.10558 28.7052L4.06791 28.2331C4.00232 27.4111 3.97875 27.1922 3.9251 26.9966C3.86986 26.7949 3.78954 26.601 3.68605 26.4194C3.58554 26.243 3.44749 26.0715 2.91258 25.4439L2.6054 25.0834C2.00757 24.382 1.50512 23.7925 1.1273 23.2743C0.730829 22.7306 0.4053 22.179 0.217769 21.5325C-0.0725897 20.5314 -0.0725897 19.4685 0.217769 18.4674C0.4053 17.8209 0.730829 17.2693 1.1273 16.7258C1.50514 16.2076 2.00757 15.618 2.60542 14.9165L2.91258 14.556C3.44749 13.9284 3.58554 13.757 3.68605 13.5806C3.78954 13.399 3.86986 13.2051 3.9251 13.0035C3.97875 12.8077 4.00232 12.5889 4.06791 11.7668L4.10558 11.2947C4.17888 10.376 4.24048 9.6038 4.33971 8.97024C4.44382 8.30544 4.6036 7.68528 4.92817 7.09554C5.4307 6.18235 6.18235 5.43072 7.09554 4.92817C7.68528 4.60362 8.30544 4.44384 8.97024 4.33971C9.6038 4.2405 10.3759 4.17888 11.2947 4.10558L11.7668 4.06791C12.5889 4.00232 12.8077 3.97875 13.0035 3.92509C13.2051 3.86986 13.399 3.78954 13.5806 3.68605C13.757 3.58556 13.9283 3.44749 14.556 2.9126L14.9165 2.60544C15.618 2.00759 16.2076 1.50514 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769Z" fill="url(#paint0_linear_794_7659)"/>
6
+ <path d="M18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM25.0836 2.60544L25.7323 1.84445L25.7321 1.8443L25.0836 2.60544ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55493L26.4193 3.68605ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM26.4193 36.3139L25.9245 35.4449L25.9242 35.445L26.4193 36.3139ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM25.0834 37.3946L25.732 38.1557L25.7321 38.1556L25.0834 37.3946ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM16.7257 38.8726L17.3149 38.0646L17.3148 38.0645L16.7257 38.8726ZM14.9165 37.3946L14.2678 38.1556L14.2679 38.1557L14.9165 37.3946ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM13.0035 36.0748L13.2676 35.1103H13.2676L13.0035 36.0748ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM3.68605 26.4194L2.81713 26.9143L2.81717 26.9144L3.68605 26.4194ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM4.10558 11.2947L5.10242 11.3743L5.10242 11.3743L4.10558 11.2947ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM14.9165 2.60544L15.5651 3.36655L15.5651 3.36654L14.9165 2.60544ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319312L16.7257 1.1273ZM18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819ZM21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817ZM22.6851 1.93528C23.1659 2.2859 23.7233 2.76013 24.435 3.36658L25.7321 1.8443C25.0406 1.25505 24.4189 0.724374 23.8635 0.319312L22.6851 1.93528ZM24.4348 3.36643L24.7951 3.67359L26.0926 2.15161L25.7323 1.84445L24.4348 3.36643ZM24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377ZM25.9243 4.55493C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81717L25.9243 4.55493ZM26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956ZM28.1536 5.06474L28.6256 5.10241L28.7847 3.10875L28.3128 3.07108L28.1536 5.06474ZM28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242ZM30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766ZM32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424ZM34.1957 7.5776C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81564C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.5776ZM34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497ZM34.8975 11.3747L34.9353 11.8467L36.9289 11.687L36.8911 11.215L34.8975 11.3747ZM34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384C37.0166 12.6563 36.998 12.5526 36.9289 11.6873L34.9353 11.8464ZM35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676ZM35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762ZM36.3262 15.2045L36.6333 15.565L38.1557 14.268L37.8486 13.9075L36.3262 15.2045ZM36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652ZM38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151ZM38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461ZM38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254ZM38.0648 22.6851C37.714 23.1659 37.2399 23.7231 36.6335 24.4349L38.1559 25.732C38.745 25.0405 39.2755 24.419 39.6806 23.8636L38.0648 22.6851ZM36.6337 24.4347L36.3264 24.7952L37.8485 26.0926L38.1557 25.7321L36.6337 24.4347ZM36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952ZM35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606C37.0726 27.1395 37.1208 27.0232 37.1828 26.9142L35.4448 25.9246ZM35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314ZM34.9353 28.1532L34.8975 28.6252L36.8911 28.7849L36.9289 28.313L34.9353 28.1532ZM34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844C36.7546 30.5051 36.8189 29.6902 36.8911 28.7845L34.8974 28.6256ZM34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875ZM34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478C34.4656 35.354 35.3541 34.4658 35.948 33.3865L34.1958 32.4223ZM32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957ZM30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723ZM28.6257 34.8975L28.1538 34.9351L28.3127 36.9288L28.7846 36.8912L28.6257 34.8975ZM28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352ZM26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103ZM25.9242 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485C26.7528 37.2859 26.84 37.2251 26.9144 37.1827L25.9242 35.445ZM24.7951 36.3263L24.4347 36.6335L25.7321 38.1556L26.0926 37.8483L24.7951 36.3263ZM24.4347 36.6335C23.7232 37.2399 23.1659 37.7141 22.6852 38.0645L23.8633 39.6807C24.4189 39.2757 25.0407 38.7448 25.732 38.1557L24.4347 36.6335ZM22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646ZM21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218ZM18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219ZM17.3148 38.0645C16.834 37.7141 16.2768 37.2399 15.5651 36.6334L14.2679 38.1557C14.9592 38.7448 15.5811 39.2757 16.1366 39.6807L17.3148 38.0645ZM15.5652 36.6336L15.2047 36.3263L13.9073 37.8483L14.2678 38.1556L15.5652 36.6336ZM15.2045 36.3261C14.6097 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829C13.1601 37.2252 13.247 37.2857 13.9075 37.8485L15.2045 36.3261ZM14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449ZM13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103ZM11.8463 34.9351L11.3743 34.8975L11.2154 36.8912L11.6874 36.9288L11.8463 34.9351ZM11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975ZM9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724ZM7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956ZM5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222ZM5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749ZM5.10242 28.6257L5.06475 28.1536L3.07108 28.3126L3.10875 28.7848L5.10242 28.6257ZM5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535ZM4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55493 25.9244L2.81717 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324ZM4.55497 25.9244C4.39638 25.646 4.18096 25.3905 3.67364 24.7952L2.15152 26.0926C2.71401 26.7525 2.77471 26.8399 2.81713 26.9143L4.55497 25.9244ZM3.67373 24.7954L3.36654 24.4349L1.84425 25.732L2.15144 26.0925L3.67373 24.7954ZM3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348ZM1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852ZM1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539ZM1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319381 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746ZM1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315ZM3.36655 15.5651L3.67371 15.2046L2.15145 13.9074L1.84428 14.2679L3.36655 15.5651ZM3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047ZM4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757ZM4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678ZM5.06475 11.8464L5.10242 11.3743L3.10875 11.2152L3.07108 11.6873L5.06475 11.8464ZM5.10242 11.3743C5.17677 10.4423 5.23559 9.71285 5.32766 9.12498L3.35175 8.81551C3.24537 9.49474 3.181 10.3096 3.10875 11.2152L5.10242 11.3743ZM5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496ZM5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766ZM7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426ZM9.12495 5.32767C9.71285 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767ZM11.3743 5.10242L11.8464 5.06475L11.6873 3.07108L11.2152 3.10875L11.3743 5.10242ZM11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474ZM13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956ZM14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492ZM15.2046 3.67371L15.5651 3.36655L14.2678 1.84432L13.9074 2.15149L15.2046 3.67371ZM15.5651 3.36654C16.2766 2.76014 16.8341 2.28589 17.3149 1.93528L16.1365 0.319312C15.581 0.724382 14.9593 1.25505 14.2678 1.84433L15.5651 3.36654ZM17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531Z" fill="url(#paint1_linear_794_7659)" mask="url(#path-1-inside-1_794_7659)"/>
7
+ <circle cx="20" cy="20" r="8" fill="white"/>
8
+ <path d="M20.8 16.6222C20.8 16.2786 20.4418 16 20 16C19.5581 16 19.2 16.2786 19.2 16.6222V20.9778C19.2 21.3214 19.5581 21.6 20 21.6C20.4418 21.6 20.8 21.3214 20.8 20.9778V16.6222Z" fill="url(#paint2_linear_794_7659)"/>
9
+ <path d="M20 24C20.4418 24 20.8 23.6419 20.8 23.2C20.8 22.7582 20.4418 22.4 20 22.4C19.5581 22.4 19.2 22.7582 19.2 23.2C19.2 23.6419 19.5581 24 20 24Z" fill="url(#paint3_linear_794_7659)"/>
10
+ <defs>
11
+ <linearGradient id="paint0_linear_794_7659" x1="20" y1="0" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
12
+ <stop stop-color="#71347B"/>
13
+ <stop offset="1" stop-color="#46164D"/>
14
+ </linearGradient>
15
+ <linearGradient id="paint1_linear_794_7659" x1="20" y1="0" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
16
+ <stop stop-color="#A42FB8"/>
17
+ <stop offset="1" stop-color="#6B1677"/>
18
+ </linearGradient>
19
+ <linearGradient id="paint2_linear_794_7659" x1="20" y1="16" x2="20" y2="21.6" gradientUnits="userSpaceOnUse">
20
+ <stop stop-color="#71347B"/>
21
+ <stop offset="1" stop-color="#46164D"/>
22
+ </linearGradient>
23
+ <linearGradient id="paint3_linear_794_7659" x1="20" y1="22.4" x2="20" y2="24" gradientUnits="userSpaceOnUse">
24
+ <stop stop-color="#71347B"/>
25
+ <stop offset="1" stop-color="#46164D"/>
26
+ </linearGradient>
27
+ </defs>
28
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_794_7546" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4674 0.217769C19.4684 -0.0725897 20.5315 -0.0725897 21.5326 0.217769C22.179 0.4053 22.7305 0.730828 23.2743 1.1273C23.7924 1.50514 24.382 2.00759 25.0836 2.60544L25.4439 2.9126C26.0716 3.44749 26.2431 3.58556 26.4193 3.68605C26.601 3.78954 26.7948 3.86986 26.9965 3.92509C27.1923 3.97875 27.411 4.00232 28.2332 4.06791L28.7051 4.10558C29.624 4.17888 30.3962 4.2405 31.0298 4.33971C31.6945 4.44384 32.3147 4.60362 32.9045 4.92817C33.8175 5.4307 34.5693 6.18235 35.0719 7.09554C35.3964 7.68528 35.5562 8.30544 35.6602 8.97024C35.7595 9.60384 35.8211 10.376 35.8943 11.2949L35.9321 11.7668C35.9977 12.5889 36.0211 12.8077 36.0749 13.0035C36.1301 13.2051 36.2104 13.399 36.3138 13.5806C36.4144 13.757 36.5525 13.9284 37.0874 14.556L37.3945 14.9165C37.9925 15.618 38.4948 16.2076 38.8727 16.7258C39.2692 17.2693 39.5947 17.8209 39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325C39.5947 22.179 39.2692 22.7306 38.8727 23.2743C38.4948 23.7925 37.9925 24.3818 37.3947 25.0834L37.0874 25.4439C36.5525 26.0715 36.4144 26.243 36.3138 26.4194C36.2104 26.601 36.1301 26.7949 36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L35.8943 28.705C35.8211 29.6239 35.7595 30.3961 35.6602 31.0296C35.5562 31.6944 35.3964 32.3146 35.0719 32.9044C34.5693 33.8176 33.8175 34.5692 32.9045 35.0717C32.3147 35.3964 31.6945 35.5561 31.0298 35.6603C30.3962 35.7595 29.624 35.8211 28.7051 35.8944L28.2332 35.932C27.411 35.9976 27.1923 36.0212 26.9965 36.0748C26.7948 36.13 26.601 36.2105 26.4193 36.3139C26.2431 36.4143 26.0716 36.5525 25.4439 37.0873L25.0834 37.3946C24.382 37.9923 23.7924 38.4949 23.2743 38.8726C22.7305 39.2691 22.179 39.5946 21.5326 39.7822C20.5315 40.0725 19.4684 40.0725 18.4674 39.7822C17.821 39.5946 17.2694 39.2691 16.7257 38.8726C16.2076 38.4949 15.618 37.9923 14.9165 37.3946L14.556 37.0873C13.9283 36.5525 13.757 36.4143 13.5806 36.3139C13.399 36.2105 13.2051 36.13 13.0035 36.0748C12.8077 36.0212 12.5889 35.9976 11.7668 35.932L11.2949 35.8944C10.376 35.8211 9.60384 35.7595 8.97024 35.6603C8.30544 35.5561 7.68528 35.3964 7.09554 35.0717C6.18235 34.5692 5.4307 33.8176 4.92817 32.9044C4.6036 32.3146 4.44382 31.6944 4.33971 31.0296C4.24048 30.3961 4.17888 29.6241 4.10558 28.7052L4.06791 28.2331C4.00232 27.4111 3.97875 27.1922 3.9251 26.9966C3.86986 26.7949 3.78954 26.601 3.68605 26.4194C3.58554 26.243 3.44749 26.0715 2.91258 25.4439L2.6054 25.0834C2.00757 24.382 1.50512 23.7925 1.1273 23.2743C0.730829 22.7306 0.4053 22.179 0.217769 21.5325C-0.0725897 20.5314 -0.0725897 19.4685 0.217769 18.4674C0.4053 17.8209 0.730829 17.2693 1.1273 16.7258C1.50514 16.2076 2.00757 15.618 2.60542 14.9165L2.91258 14.556C3.44749 13.9284 3.58554 13.757 3.68605 13.5806C3.78954 13.399 3.86986 13.2051 3.9251 13.0035C3.97875 12.8077 4.00232 12.5889 4.06791 11.7668L4.10558 11.2947C4.17888 10.376 4.24048 9.6038 4.33971 8.97024C4.44382 8.30544 4.6036 7.68528 4.92817 7.09554C5.4307 6.18235 6.18235 5.43072 7.09554 4.92817C7.68528 4.60362 8.30544 4.44384 8.97024 4.33971C9.6038 4.2405 10.3759 4.17888 11.2947 4.10558L11.7668 4.06791C12.5889 4.00232 12.8077 3.97875 13.0035 3.92509C13.2051 3.86986 13.399 3.78954 13.5806 3.68605C13.757 3.58556 13.9283 3.44749 14.556 2.9126L14.9165 2.60544C15.618 2.00759 16.2076 1.50514 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769Z"/>
4
+ </mask>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.4674 0.217769C19.4684 -0.0725897 20.5315 -0.0725897 21.5326 0.217769C22.179 0.4053 22.7305 0.730828 23.2743 1.1273C23.7924 1.50514 24.382 2.00759 25.0836 2.60544L25.4439 2.9126C26.0716 3.44749 26.2431 3.58556 26.4193 3.68605C26.601 3.78954 26.7948 3.86986 26.9965 3.92509C27.1923 3.97875 27.411 4.00232 28.2332 4.06791L28.7051 4.10558C29.624 4.17888 30.3962 4.2405 31.0298 4.33971C31.6945 4.44384 32.3147 4.60362 32.9045 4.92817C33.8175 5.4307 34.5693 6.18235 35.0719 7.09554C35.3964 7.68528 35.5562 8.30544 35.6602 8.97024C35.7595 9.60384 35.8211 10.376 35.8943 11.2949L35.9321 11.7668C35.9977 12.5889 36.0211 12.8077 36.0749 13.0035C36.1301 13.2051 36.2104 13.399 36.3138 13.5806C36.4144 13.757 36.5525 13.9284 37.0874 14.556L37.3945 14.9165C37.9925 15.618 38.4948 16.2076 38.8727 16.7258C39.2692 17.2693 39.5947 17.8209 39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325C39.5947 22.179 39.2692 22.7306 38.8727 23.2743C38.4948 23.7925 37.9925 24.3818 37.3947 25.0834L37.0874 25.4439C36.5525 26.0715 36.4144 26.243 36.3138 26.4194C36.2104 26.601 36.1301 26.7949 36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L35.8943 28.705C35.8211 29.6239 35.7595 30.3961 35.6602 31.0296C35.5562 31.6944 35.3964 32.3146 35.0719 32.9044C34.5693 33.8176 33.8175 34.5692 32.9045 35.0717C32.3147 35.3964 31.6945 35.5561 31.0298 35.6603C30.3962 35.7595 29.624 35.8211 28.7051 35.8944L28.2332 35.932C27.411 35.9976 27.1923 36.0212 26.9965 36.0748C26.7948 36.13 26.601 36.2105 26.4193 36.3139C26.2431 36.4143 26.0716 36.5525 25.4439 37.0873L25.0834 37.3946C24.382 37.9923 23.7924 38.4949 23.2743 38.8726C22.7305 39.2691 22.179 39.5946 21.5326 39.7822C20.5315 40.0725 19.4684 40.0725 18.4674 39.7822C17.821 39.5946 17.2694 39.2691 16.7257 38.8726C16.2076 38.4949 15.618 37.9923 14.9165 37.3946L14.556 37.0873C13.9283 36.5525 13.757 36.4143 13.5806 36.3139C13.399 36.2105 13.2051 36.13 13.0035 36.0748C12.8077 36.0212 12.5889 35.9976 11.7668 35.932L11.2949 35.8944C10.376 35.8211 9.60384 35.7595 8.97024 35.6603C8.30544 35.5561 7.68528 35.3964 7.09554 35.0717C6.18235 34.5692 5.4307 33.8176 4.92817 32.9044C4.6036 32.3146 4.44382 31.6944 4.33971 31.0296C4.24048 30.3961 4.17888 29.6241 4.10558 28.7052L4.06791 28.2331C4.00232 27.4111 3.97875 27.1922 3.9251 26.9966C3.86986 26.7949 3.78954 26.601 3.68605 26.4194C3.58554 26.243 3.44749 26.0715 2.91258 25.4439L2.6054 25.0834C2.00757 24.382 1.50512 23.7925 1.1273 23.2743C0.730829 22.7306 0.4053 22.179 0.217769 21.5325C-0.0725897 20.5314 -0.0725897 19.4685 0.217769 18.4674C0.4053 17.8209 0.730829 17.2693 1.1273 16.7258C1.50514 16.2076 2.00757 15.618 2.60542 14.9165L2.91258 14.556C3.44749 13.9284 3.58554 13.757 3.68605 13.5806C3.78954 13.399 3.86986 13.2051 3.9251 13.0035C3.97875 12.8077 4.00232 12.5889 4.06791 11.7668L4.10558 11.2947C4.17888 10.376 4.24048 9.6038 4.33971 8.97024C4.44382 8.30544 4.6036 7.68528 4.92817 7.09554C5.4307 6.18235 6.18235 5.43072 7.09554 4.92817C7.68528 4.60362 8.30544 4.44384 8.97024 4.33971C9.6038 4.2405 10.3759 4.17888 11.2947 4.10558L11.7668 4.06791C12.5889 4.00232 12.8077 3.97875 13.0035 3.92509C13.2051 3.86986 13.399 3.78954 13.5806 3.68605C13.757 3.58556 13.9283 3.44749 14.556 2.9126L14.9165 2.60544C15.618 2.00759 16.2076 1.50514 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769Z" fill="#FFC600"/>
6
+ <path d="M18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM25.0836 2.60544L25.7323 1.84445L25.7321 1.8443L25.0836 2.60544ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55493L26.4193 3.68605ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM26.4193 36.3139L25.9245 35.4449L25.9242 35.445L26.4193 36.3139ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM25.0834 37.3946L25.732 38.1557L25.7321 38.1556L25.0834 37.3946ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM16.7257 38.8726L17.3149 38.0646L17.3148 38.0645L16.7257 38.8726ZM14.9165 37.3946L14.2678 38.1556L14.2679 38.1557L14.9165 37.3946ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM13.0035 36.0748L13.2676 35.1103H13.2676L13.0035 36.0748ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM3.68605 26.4194L2.81713 26.9143L2.81717 26.9144L3.68605 26.4194ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM4.10558 11.2947L5.10242 11.3743L5.10242 11.3743L4.10558 11.2947ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM14.9165 2.60544L15.5651 3.36655L15.5651 3.36654L14.9165 2.60544ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319312L16.7257 1.1273ZM18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819ZM21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817ZM22.6851 1.93528C23.1659 2.2859 23.7233 2.76013 24.435 3.36658L25.7321 1.8443C25.0406 1.25505 24.4189 0.724374 23.8635 0.319312L22.6851 1.93528ZM24.4348 3.36643L24.7951 3.67359L26.0926 2.15161L25.7323 1.84445L24.4348 3.36643ZM24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377ZM25.9243 4.55493C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81717L25.9243 4.55493ZM26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956ZM28.1536 5.06474L28.6256 5.10241L28.7847 3.10875L28.3128 3.07108L28.1536 5.06474ZM28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242ZM30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766ZM32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424ZM34.1957 7.5776C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81564C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.5776ZM34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497ZM34.8975 11.3747L34.9353 11.8467L36.9289 11.687L36.8911 11.215L34.8975 11.3747ZM34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384C37.0166 12.6563 36.998 12.5526 36.9289 11.6873L34.9353 11.8464ZM35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676ZM35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762ZM36.3262 15.2045L36.6333 15.565L38.1557 14.268L37.8486 13.9075L36.3262 15.2045ZM36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652ZM38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151ZM38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461ZM38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254ZM38.0648 22.6851C37.714 23.1659 37.2399 23.7231 36.6335 24.4349L38.1559 25.732C38.745 25.0405 39.2755 24.419 39.6806 23.8636L38.0648 22.6851ZM36.6337 24.4347L36.3264 24.7952L37.8485 26.0926L38.1557 25.7321L36.6337 24.4347ZM36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952ZM35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606C37.0726 27.1395 37.1208 27.0232 37.1828 26.9142L35.4448 25.9246ZM35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314ZM34.9353 28.1532L34.8975 28.6252L36.8911 28.7849L36.9289 28.313L34.9353 28.1532ZM34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844C36.7546 30.5051 36.8189 29.6902 36.8911 28.7845L34.8974 28.6256ZM34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875ZM34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478C34.4656 35.354 35.3541 34.4658 35.948 33.3865L34.1958 32.4223ZM32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957ZM30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723ZM28.6257 34.8975L28.1538 34.9351L28.3127 36.9288L28.7846 36.8912L28.6257 34.8975ZM28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352ZM26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103ZM25.9242 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485C26.7528 37.2859 26.84 37.2251 26.9144 37.1827L25.9242 35.445ZM24.7951 36.3263L24.4347 36.6335L25.7321 38.1556L26.0926 37.8483L24.7951 36.3263ZM24.4347 36.6335C23.7232 37.2399 23.1659 37.7141 22.6852 38.0645L23.8633 39.6807C24.4189 39.2757 25.0407 38.7448 25.732 38.1557L24.4347 36.6335ZM22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646ZM21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218ZM18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219ZM17.3148 38.0645C16.834 37.7141 16.2768 37.2399 15.5651 36.6334L14.2679 38.1557C14.9592 38.7448 15.5811 39.2757 16.1366 39.6807L17.3148 38.0645ZM15.5652 36.6336L15.2047 36.3263L13.9073 37.8483L14.2678 38.1556L15.5652 36.6336ZM15.2045 36.3261C14.6097 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829C13.1601 37.2252 13.247 37.2857 13.9075 37.8485L15.2045 36.3261ZM14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449ZM13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103ZM11.8463 34.9351L11.3743 34.8975L11.2154 36.8912L11.6874 36.9288L11.8463 34.9351ZM11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975ZM9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724ZM7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956ZM5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222ZM5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749ZM5.10242 28.6257L5.06475 28.1536L3.07108 28.3126L3.10875 28.7848L5.10242 28.6257ZM5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535ZM4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55493 25.9244L2.81717 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324ZM4.55497 25.9244C4.39638 25.646 4.18096 25.3905 3.67364 24.7952L2.15152 26.0926C2.71401 26.7525 2.77471 26.8399 2.81713 26.9143L4.55497 25.9244ZM3.67373 24.7954L3.36654 24.4349L1.84425 25.732L2.15144 26.0925L3.67373 24.7954ZM3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348ZM1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852ZM1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539ZM1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319381 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746ZM1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315ZM3.36655 15.5651L3.67371 15.2046L2.15145 13.9074L1.84428 14.2679L3.36655 15.5651ZM3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047ZM4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757ZM4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678ZM5.06475 11.8464L5.10242 11.3743L3.10875 11.2152L3.07108 11.6873L5.06475 11.8464ZM5.10242 11.3743C5.17677 10.4423 5.23559 9.71285 5.32766 9.12498L3.35175 8.81551C3.24537 9.49474 3.181 10.3096 3.10875 11.2152L5.10242 11.3743ZM5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496ZM5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766ZM7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426ZM9.12495 5.32767C9.71285 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767ZM11.3743 5.10242L11.8464 5.06475L11.6873 3.07108L11.2152 3.10875L11.3743 5.10242ZM11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474ZM13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956ZM14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492ZM15.2046 3.67371L15.5651 3.36655L14.2678 1.84432L13.9074 2.15149L15.2046 3.67371ZM15.5651 3.36654C16.2766 2.76014 16.8341 2.28589 17.3149 1.93528L16.1365 0.319312C15.581 0.724382 14.9593 1.25505 14.2678 1.84433L15.5651 3.36654ZM17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531Z" fill="#E79B08" mask="url(#path-1-inside-1_794_7546)"/>
7
+ <path d="M20 29H11.5954C11.3154 29 11.0402 28.9252 10.7977 28.7832C10.5552 28.6412 10.3538 28.4369 10.2138 28.191C10.0737 27.945 10 27.666 10 27.3819C10 27.0979 10.0737 26.8189 10.2137 26.5729L14.416 19.191L18.6183 11.8091C18.7583 11.5631 18.9597 11.3588 19.2023 11.2168C19.4448 11.0748 19.7199 11 20 11C20.2801 11 20.5552 11.0748 20.7977 11.2168C21.0403 11.3588 21.2417 11.5631 21.3817 11.8091L25.584 19.191L29.7863 26.5729C29.9263 26.8189 30 27.0979 30 27.3819C30 27.666 29.9263 27.945 29.7862 28.191C29.6462 28.4369 29.4448 28.6412 29.2023 28.7832C28.9598 28.9252 28.6846 29 28.4046 29H20Z" fill="white"/>
8
+ <path d="M21 16.7778C21 16.3482 20.5523 16 20 16C19.4477 16 19 16.3482 19 16.7778V22.2222C19 22.6518 19.4477 23 20 23C20.5523 23 21 22.6518 21 22.2222V16.7778Z" fill="#E79B08"/>
9
+ <path d="M20 26C20.5523 26 21 25.5523 21 25C21 24.4477 20.5523 24 20 24C19.4477 24 19 24.4477 19 25C19 25.5523 19.4477 26 20 26Z" fill="#E79B08"/>
10
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.22499 13.7397C5.09343 13.8514 5.07734 14.0486 5.18902 14.1802C5.30071 14.3117 5.49793 14.3278 5.62949 14.2161C5.76106 14.1044 5.77715 13.9072 5.66546 13.7757C5.55377 13.6441 5.35656 13.628 5.22499 13.7397Z" fill="currentColor"/>
3
+ <path d="M9.31659 9.14405L8.77474 8.87024L8.63074 8.33286C8.60305 8.22952 8.52449 8.14749 8.42246 8.11533C8.32033 8.08314 8.20899 8.10533 8.12708 8.17411L6.74248 9.33593C6.30095 8.91739 5.73557 8.66111 5.12042 8.60727C4.40016 8.54405 3.6986 8.76539 3.14488 9.23002L0.967091 11.0574C0.413558 11.5219 0.073869 12.1744 0.0105251 12.895C-0.0524751 13.615 0.168869 14.3166 0.633715 14.8705C1.16831 15.5076 1.93612 15.8361 2.70913 15.8361C3.32316 15.836 3.94051 15.6287 4.44654 15.2041L4.53657 15.1285C4.66901 15.0173 4.68632 14.8199 4.57516 14.6874C4.46401 14.5549 4.26657 14.5377 4.13407 14.6488L4.04404 14.7244C3.16532 15.4616 1.85069 15.3467 1.11337 14.468C0.756027 14.0422 0.585902 13.5028 0.634308 12.9496C0.682996 12.3957 0.94409 11.8941 1.36956 11.5371L3.54735 9.70965C3.97294 9.35255 4.51232 9.18271 5.06579 9.23102C5.51401 9.27027 5.92807 9.44896 6.25908 9.74146L5.94923 10.0015C5.84354 10.0901 5.74339 10.1414 5.67564 10.1624C5.16554 9.8068 4.47801 9.83196 3.99216 10.2397L1.81434 12.0671C1.22797 12.5592 1.15128 13.4366 1.64347 14.0231C1.91766 14.3499 2.31153 14.5184 2.70803 14.5184C3.023 14.5184 3.33966 14.4121 3.59926 14.1943L5.77707 12.3668C5.88404 12.277 5.97529 12.1739 6.04967 12.059C6.36198 11.9893 6.65955 11.8642 6.92833 11.6902C6.84664 12.1241 6.62955 12.521 6.30417 12.8241C6.17764 12.942 6.17064 13.1401 6.28851 13.2666C6.35017 13.3328 6.43379 13.3663 6.51764 13.3663C6.59408 13.3663 6.67067 13.3385 6.73098 13.2823C7.22067 12.8261 7.52242 12.207 7.58058 11.5397C7.59164 11.4153 7.5933 11.2898 7.58695 11.1649L9.37662 9.66324C9.45724 9.59561 9.49849 9.49199 9.4864 9.38746C9.47431 9.28299 9.41049 9.19152 9.31659 9.14405ZM3.19672 13.7147C2.87482 13.9848 2.39322 13.9426 2.12309 13.6207C1.9925 13.4651 1.93034 13.2675 1.94809 13.0643C1.96581 12.8612 2.06125 12.6774 2.21681 12.5469L3.60085 11.3855C4.01729 11.7803 4.54413 12.0302 5.11829 12.1023L3.19672 13.7147ZM6.79633 11.011C6.50998 11.2512 6.16492 11.41 5.79839 11.4702C5.79548 11.4707 5.4486 11.5047 5.27782 11.4896C4.82979 11.4506 4.41576 11.2721 4.08476 10.9795L4.39466 10.7195C4.39466 10.7195 4.39473 10.7194 4.39479 10.7194C4.68113 10.4792 5.09492 10.4809 5.37867 10.7234C5.42826 10.7658 5.48985 10.7916 5.55482 10.7973C5.89795 10.8274 6.22654 10.5862 6.35173 10.4812L8.15308 8.96967L8.20614 9.16758C8.22921 9.25364 8.28783 9.32577 8.36736 9.36596L8.61043 9.4888L6.79633 11.011Z" fill="currentColor"/>
4
+ <path d="M15.6361 1.51653C14.8899 0.224213 13.2315 -0.220257 11.939 0.525964L9.47701 1.94741C8.85075 2.30897 8.40297 2.89263 8.21625 3.59038C8.18378 3.71097 8.16038 3.83422 8.14494 3.95829L6.12168 5.12642C6.02993 5.17942 5.97115 5.2752 5.96556 5.38101C5.95996 5.48682 6.00828 5.58832 6.09393 5.65067L6.58003 6.00457L6.62503 6.56395C6.63365 6.67098 6.69653 6.76614 6.79156 6.81605C6.83718 6.84001 6.88715 6.85195 6.93709 6.85195C6.99122 6.85195 7.04528 6.83792 7.09362 6.81001L8.65894 5.90629C9.0211 6.39514 9.53338 6.74567 10.1299 6.90555C10.3631 6.96805 10.5997 6.99895 10.8349 6.99895C11.3038 6.99895 11.7666 6.87598 12.1835 6.6353L14.6456 5.21385C15.2713 4.85254 15.7192 4.26888 15.9067 3.57029C16.0937 2.87219 15.9976 2.14281 15.6361 1.51653ZM7.19269 5.81104C7.18537 5.72004 7.13869 5.63676 7.06487 5.58304L6.85184 5.42792L8.597 4.42035C8.59885 4.41929 8.60072 4.41826 8.60253 4.41716L8.89678 4.24729C9.2205 4.06038 9.58872 3.96379 9.95929 3.96844C9.96238 3.96851 9.96544 3.96844 9.96854 3.96841C10.1397 3.97122 10.31 3.99513 10.4754 4.03966C10.9098 4.15591 11.2865 4.40363 11.5617 4.7492L11.2114 4.95148C11.2112 4.95157 11.211 4.95166 11.2108 4.95179C10.8873 5.13823 10.4803 5.06476 10.2429 4.7767C10.2014 4.72638 10.1453 4.69026 10.0823 4.67338C9.74926 4.58423 9.38413 4.7646 9.2426 4.84632L8.601 5.21673C8.601 5.21673 8.60097 5.21673 8.60094 5.21676C8.60091 5.21679 8.60091 5.21679 8.60088 5.21679L7.20943 6.02014L7.19269 5.81104ZM10.7389 3.464L12.9112 2.20978C13.0871 2.10822 13.2924 2.08128 13.4894 2.13409C13.6863 2.18684 13.8506 2.31278 13.9522 2.48872C14.0538 2.66469 14.0807 2.87006 14.028 3.06707C13.9752 3.26407 13.8493 3.42844 13.6735 3.52997L12.1088 4.43335C11.7672 3.97222 11.2918 3.63472 10.7389 3.464ZM15.3019 3.4081C15.1578 3.94513 14.8135 4.39382 14.3325 4.67154L11.8704 6.09298C11.3893 6.37076 10.8287 6.44448 10.2919 6.30067C9.85735 6.1842 9.48063 5.93629 9.20544 5.59076L9.55572 5.38854C9.67522 5.31957 9.78276 5.28648 9.85307 5.27751C10.2937 5.71632 10.9752 5.81082 11.5244 5.4937L13.9865 4.07222C14.3073 3.88707 14.5368 3.58757 14.6328 3.22897C14.7288 2.87044 14.6797 2.49635 14.4945 2.17559C14.3093 1.85481 14.0099 1.62528 13.6514 1.52922C13.2929 1.43309 12.9188 1.48222 12.5981 1.66744L10.136 3.08891C10.0151 3.15875 9.90729 3.24444 9.81413 3.34472C9.49432 3.35913 9.17935 3.43079 8.88425 3.5555C9.05291 3.10647 9.369 2.73272 9.7901 2.48963L12.2521 1.06818C13.2455 0.494683 14.5202 0.836246 15.0938 1.82956C15.3717 2.31106 15.4456 2.87169 15.3019 3.4081Z" fill="currentColor"/>
5
+ <path d="M3.05852 5.17202C3.11918 5.22993 3.19699 5.25868 3.27471 5.25868C3.35724 5.25868 3.43968 5.22624 3.50118 5.1618C3.62062 5.03674 3.61602 4.83855 3.49096 4.71915L2.8803 4.13605C2.75521 4.01664 2.55708 4.02114 2.43765 4.14627C2.31821 4.27133 2.3228 4.46952 2.44786 4.58893L3.05852 5.17202Z" fill="currentColor"/>
6
+ <path d="M1.65559 7.13491L2.38232 7.42919C2.42085 7.44478 2.46063 7.45219 2.49975 7.45219C2.6235 7.45219 2.74075 7.37828 2.79004 7.25653C2.85494 7.09625 2.77763 6.91369 2.61738 6.84881L1.89066 6.55453C1.73028 6.48963 1.54781 6.56694 1.48294 6.72719C1.41803 6.88747 1.49534 7.07003 1.65559 7.13491Z" fill="currentColor"/>
7
+ <path d="M5.05995 3.89848C5.11983 3.99135 5.22055 4.04198 5.32342 4.04198C5.38149 4.04198 5.4403 4.02582 5.49274 3.99201C5.63805 3.89832 5.67995 3.70457 5.58627 3.55923L5.16152 2.90023C5.06786 2.75491 4.87417 2.71297 4.72873 2.80669C4.58342 2.90038 4.54151 3.09413 4.6352 3.23948L5.05995 3.89848Z" fill="currentColor"/>
8
+ <path d="M12.6246 10.0189C12.4995 9.89945 12.3014 9.90398 12.182 10.0291C12.0625 10.1541 12.0671 10.3523 12.1922 10.4717L12.8028 11.0548C12.8635 11.1127 12.9413 11.1415 13.019 11.1415C13.1016 11.1415 13.184 11.109 13.2455 11.0446C13.3649 10.9195 13.3603 10.7214 13.2353 10.6019L12.6246 10.0189Z" fill="currentColor"/>
9
+ <path d="M14.0276 8.05591L13.3009 7.76162C13.1405 7.69672 12.9581 7.77403 12.8932 7.93428C12.8283 8.09456 12.9055 8.27709 13.0658 8.342L13.7925 8.63628C13.831 8.65188 13.8708 8.65928 13.9099 8.65928C14.0337 8.65928 14.1509 8.58538 14.2002 8.46363C14.2651 8.30334 14.1879 8.12081 14.0276 8.05591Z" fill="currentColor"/>
10
+ <path d="M10.6232 11.2924C10.5296 11.147 10.3358 11.105 10.1905 11.1988C10.0451 11.2925 10.0032 11.4862 10.0969 11.6315L10.5217 12.2906C10.5815 12.3835 10.6822 12.4341 10.7851 12.4341C10.8432 12.4341 10.902 12.418 10.9544 12.3841C11.0997 12.2905 11.1417 12.0967 11.048 11.9514L10.6232 11.2924Z" fill="currentColor"/>
11
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1"
4
+ xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M512 301.2m-10 0a10 10 0 1 0 20 0 10 10 0 1 0-20 0Z" fill="#E73B37" />
6
+ <path
7
+ d="M400.3 744.5c2.1-0.7 4.1-1.4 6.2-2-2 0.6-4.1 1.3-6.2 2z m0 0c2.1-0.7 4.1-1.4 6.2-2-2 0.6-4.1 1.3-6.2 2z"
8
+ fill="#39393A" />
9
+ <path
10
+ d="M511.8 256.6c24.4 0 44.2 19.8 44.2 44.2S536.2 345 511.8 345s-44.2-19.8-44.2-44.2 19.9-44.2 44.2-44.2m0-20c-35.5 0-64.2 28.7-64.2 64.2s28.7 64.2 64.2 64.2 64.2-28.7 64.2-64.2-28.7-64.2-64.2-64.2z"
11
+ fill="#E73B37" />
12
+ <path
13
+ d="M730.7 529.5c0.4-8.7 0.6-17.4 0.6-26.2 0-179.6-86.1-339.1-219.3-439.5-133.1 100.4-219.2 259.9-219.2 439.5 0 8.8 0.2 17.5 0.6 26.1-56 56-90.6 133.3-90.6 218.7 0 61.7 18 119.1 49.1 167.3 30.3-49.8 74.7-90.1 127.7-115.3 39-18.6 82.7-29 128.8-29 48.3 0 93.9 11.4 134.3 31.7 52.5 26.3 96.3 67.7 125.6 118.4 33.4-49.4 52.9-108.9 52.9-173.1 0-85.4-34.6-162.6-90.5-218.6zM351.1 383.4c9.2-37.9 22.9-74.7 40.6-109.5a502.1 502.1 0 0 1 63.6-95.9c17.4-20.6 36.4-39.9 56.8-57.5 20.4 17.6 39.4 36.9 56.8 57.5 24.8 29.5 46.2 61.8 63.6 95.9 17.7 34.8 31.4 71.6 40.6 109.5 8.7 35.8 13.5 72.7 14.2 109.9C637.4 459 577 438.9 512 438.9c-65 0-125.3 20.1-175.1 54.4 0.7-37.2 5.5-74.1 14.2-109.9z m-90.6 449.2c-9.1-27-13.7-55.5-13.7-84.4 0-35.8 7-70.6 20.8-103.2 8.4-19.8 19-38.4 31.9-55.5 9.7 61.5 29.5 119.7 57.8 172.6-36.4 17.8-69 41.6-96.8 70.5z m364.2-85.3c-0.7-0.3-1.5-0.5-2.2-0.8-0.4-0.2-0.9-0.3-1.3-0.5-0.6-0.2-1.3-0.5-1.9-0.7-0.8-0.3-1.5-0.5-2.3-0.8-0.8-0.3-1.5-0.5-2.3-0.7l-0.9-0.3c-1-0.3-2.1-0.7-3.1-1-1.2-0.4-2.4-0.7-3.5-1.1l-3-0.9c-0.2-0.1-0.4-0.1-0.7-0.2-1.1-0.3-2.3-0.7-3.4-1-1.2-0.3-2.4-0.6-3.5-0.9l-3.6-0.9-3.6-0.9c-1-0.3-2.1-0.5-3.1-0.7-1.2-0.3-2.4-0.5-3.6-0.8-1.3-0.3-2.5-0.6-3.8-0.8h-0.3c-0.9-0.2-1.9-0.4-2.8-0.6-0.4-0.1-0.7-0.1-1.1-0.2-1.1-0.2-2.2-0.4-3.4-0.6-1.2-0.2-2.4-0.4-3.6-0.7l-5.4-0.9c-0.9-0.1-1.9-0.3-2.8-0.4-0.8-0.1-1.6-0.3-2.5-0.4-2.6-0.4-5.1-0.7-7.7-1-1.2-0.1-2.3-0.3-3.5-0.4h-0.4c-0.9-0.1-1.8-0.2-2.8-0.3-1.1-0.1-2.1-0.2-3.2-0.3-1.7-0.2-3.4-0.3-5.1-0.4-0.8-0.1-1.5-0.1-2.3-0.2-0.9-0.1-1.9-0.1-2.8-0.2-0.4 0-0.8 0-1.2-0.1-1.1-0.1-2.1-0.1-3.2-0.2-0.5 0-1-0.1-1.5-0.1-1.3-0.1-2.6-0.1-3.9-0.1-0.8 0-1.5-0.1-2.3-0.1-1.2 0-2.4 0-3.5-0.1h-13.9c-2.3 0-4.6 0.1-6.9 0.2-0.9 0-1.9 0.1-2.8 0.1-0.8 0-1.5 0.1-2.3 0.1-1.4 0.1-2.8 0.2-4.1 0.3-1.4 0.1-2.7 0.2-4.1 0.3-1.4 0.1-2.7 0.2-4.1 0.4-0.6 0-1.2 0.1-1.8 0.2l-7.8 0.9c-1.1 0.1-2.1 0.3-3.2 0.4-1 0.1-2.1 0.3-3.1 0.4-3.2 0.5-6.4 0.9-9.5 1.5-0.7 0.1-1.4 0.2-2.1 0.4-0.9 0.1-1.7 0.3-2.6 0.5-1.1 0.2-2.3 0.4-3.4 0.6-0.9 0.2-1.7 0.3-2.6 0.5-0.4 0.1-0.8 0.1-1.1 0.2-0.7 0.1-1.4 0.3-2.1 0.4-1.2 0.3-2.4 0.5-3.6 0.8-1.2 0.3-2.4 0.5-3.6 0.8-0.2 0-0.4 0.1-0.6 0.1-0.5 0.1-1 0.2-1.5 0.4-1.1 0.3-2.3 0.6-3.5 0.9-1.3 0.3-2.5 0.6-3.8 1-0.4 0.1-0.9 0.2-1.4 0.4-1.3 0.4-2.7 0.7-4 1.1-1.5 0.4-3 0.9-4.6 1.3-1 0.3-2.1 0.6-3.1 1-2.1 0.6-4.1 1.3-6.2 2-0.7 0.2-1.4 0.5-2.1 0.7-15-27.5-27.4-56.4-37-86.2-11.7-36.1-19.2-73.6-22.5-111.6-0.6-6.7-1-13.3-1.3-20-0.1-1.2-0.1-2.4-0.1-3.6-0.1-1.2-0.1-2.4-0.1-3.6 0-1.2-0.1-2.4-0.1-3.6 0-1.2-0.1-2.4-0.1-3.7 18.8-14 39.2-25.8 61-35 36.1-15.3 74.5-23 114.1-23 39.6 0 78 7.8 114.1 23 21.8 9.2 42.2 20.9 61 35v0.1c0 1 0 1.9-0.1 2.9 0 1.4-0.1 2.8-0.1 4.3 0 0.7 0 1.3-0.1 2-0.1 1.8-0.1 3.5-0.2 5.3-0.3 6.7-0.8 13.3-1.3 20-3.3 38.5-11 76.5-23 113-9.7 30.3-22.3 59.4-37.6 87.1z m136.8 90.9a342.27 342.27 0 0 0-96.3-73.2c29.1-53.7 49.5-112.8 59.4-175.5 12.8 17.1 23.4 35.6 31.8 55.5 13.8 32.7 20.8 67.4 20.8 103.2 0 31-5.3 61.3-15.7 90z"
14
+ fill="#39393A" />
15
+ <path
16
+ d="M512 819.3c8.7 0 24.7 22.9 24.7 60.4s-16 60.4-24.7 60.4-24.7-22.9-24.7-60.4 16-60.4 24.7-60.4m0-20c-24.7 0-44.7 36-44.7 80.4 0 44.4 20 80.4 44.7 80.4s44.7-36 44.7-80.4c0-44.4-20-80.4-44.7-80.4z"
17
+ fill="#E73B37" />
18
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <rect x="0.569824" width="16" height="16" fill="url(#pattern0_2960_829)"/>
3
+ <defs>
4
+ <pattern id="pattern0_2960_829" patternContentUnits="objectBoundingBox" width="1" height="1">
5
+ <use xlink:href="#image0_2960_829" transform="scale(0.00195312)"/>
6
+ </pattern>
7
+ <image id="image0_2960_829" width="512" height="512" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAAAXNSR0IArs4c6QAAIABJREFUeAHt3QecdVdZ7/F/ekIPocXQEhKKAZEizXsVQi9eQhEFUULovangDQhKCwTBC5cAgoC5lAQpXpEmAUSKgID0EDohdAiQBEi/9zx4BifvO++8M2f2mTlrr+/+fPKZybxz9uz1W7+1nufZZe3EhgACCCAwLwK7JblqksOSPCDJM5O8LsnHkpyWpP7dhgACCCCAAAINE7hUksOT/HWStyf5YpJzkvy/Vf67XMPtdegIIIAAAgh0SWCfJLeaVvUfSXL+KoF+R0nAoV2S02gEEEAAAQQaIrD7pLK/SZKjkrw7yVkzBPxtE4GbN9R+h4oAAggggEA3BHZNcpskr0nykwEC/rYJwN27IamhCCCAAAIINEDgWkmOTnLqHIL+8iTgIQ2wcIgIIIAAAgiMmsC+SR6a5MNzDvrLE4A/HzVRjUMAAQQQQGBBCdR1/Tsl+fuBrukvD+5r+f75C8rFYSGAAAIIIDBKAhdP8vgk397Ean+lhOC1o6SrUQgggAACCCwYgTrN/+TpIjwrBeTN/tmJC8bH4SCAAAIIIDAqArXgTt3Ud/oWV/zbJhifGBVljUEAAQQQQGBBCBwwXZnvZwsW+JcSgW8sCCeHgQACCCCAwCgIHJjkxUnOXtDAv5QAfHkUtDUCAQQQQACBLSZQ1/hfNFmt79wFD/xLCcAnt5iXP48AAggggEDTBHZJcmSS7zcS+JcSgA80Td3BI4AAAgggsIUEfn2yXO8HGwv8SwnAP28hN38aAQQQQACBJglcMkktpHNeo8G/koA3NkneQSOAAAIIILBFBO6d5DsNB/6lMwDHbRE/fxYBBBBAAIGmCBya5L0jCPxLCcCxTdF3sAgggAACCGwygd2S/GVDd/cvBfidfX32JnP05xBAAAEEEGiGwJWTvH9EVf/ypMDbAJvR0IEigAACCGwmgbss0Lr9ywP3UN8/djNh+lsIIIAAAggsOoG9k7xwpFX/8uThQYveEY4PAQQQQACBzSJwrSSf6iD4VyJw582C6u8ggAACCCCwyATul+SnnQT/SgAOWeTOcGwIIIAAAgjMm8AlkhzfUeCv4H9Wknq6wYYAAggggECXBA5O8sXOgn8lAHWZw4YAAggggECXBG6U5HsdBv9KAE7ossc1GgEEEECgewJ37Ox6fwX95f89uXsDAEAAAQQQ6I5A3ezX8kt8lgfyWb+/R3e9rsEIIIAAAl0TqMp31qA5ps9du2sLNB4BBBBAoBsCdcf73wj+v0h+6uzHnt30vIYigAACCHRL4CJJ3iz4//LMx8ndmqDhCCCAAALdENgvyYcE/18G/7qM8Q/d9L6GIoAAAgh0SeDiST4q+F8o+FcC4AmALoeDRiOAAAJ9EKhr3CcK/tsF/0oAbtqHAlqJAAIIINAbgV2TvE7wXzH4/8gSwL0NB+1FAAEE+iFwrOC/YvCv6v/1/WigpQgggAACPRF4iuC/w+BfCcADepJBWxFAAAEE+iDwUMF/1eBfCcCV+1BBKxFAAAEEeiFQS9ueLwFYNQE4qRcZtBMBBBBAoA8Ct0pytuC/avCv6v+v+9BBKxFAAAEEeiBw9SSnC/47Df6VANy+ByG0EQEEEEBg/AT2TvJJwX9Nwf+sJLUksg0BBBBAAIHmCbxU8F9T8K/qvxZFsiGAAAIIINA8gXsL/msO/pUAPKz5HtcABBBAAIHuCVwryZkSgDUnAHX6f9/urQEAAQQQQKBpAnUd+7OC/5qDf1X/xzfd4w4eAQQQQACBJH8n+K8r+FcCcBvmIIAAAggg0DKBIwX/dQf/U5LUy5FsCCCAAAIINEmgnvf/mQRg3QnAU5vsbQeNAAIIIIBAkl2S/Ivgv+7gf0GSgxiEAAIIIIBAqwTuJ/ivO/jXtf/3tNrhjhsBBBBAAIHLJzlNAjBTAvBH9EEAAQQQQKBVAicI/jMF/3o/gqV/W7XecSOAAAKdE7ij4D9T8K/T/y/u3B3NRwABBBBolMDFknxdAjBTAnBekqs12u8OGwEEEECgcwL/S/CfKfhX9X9c5+5oPgIIIIBAowRulOR8CcBMCUBxu2aj/e6wEUAAAQQ6JlDP/H9c8J8p+Ff1b93/jgePpiOAAAItE7iH4D9z8K+Ff67Tcuc7dgQQQACBPgnsluTzEoCZE4A39amNViOAAAIItE7gvoL/zMG/Tv/foHUBHD8CCCCAQH8E9kzyNQnAzAnAW/pTRosRQAABBMZA4GGC/8zBv6r/m45BAm1AAAEEEOiLQC1Z+20JwMwJwNv60kVrEUAAAQTGQuBPBf+Zg//ZSa4+FhG0AwEEEECgHwKXSPJDCcDMCcAz+lFFSxFAAAEExkTgLwT/mYP/Kd74N6ahoC0IIIBAPwT2SXKaBGDmBOBu/aiipQgggAACYyJwhOA/c/B/x5hE0BYEEEAAgb4IfEgCMFMC4Ma/vsaJ1iKAAAKjInA9wX+m4F/P/Lvxb1RDQWMQQACBvgi8RAIwUwLgxr++xonWIoAAAqMiUI/+nSkBmCkBuMuoTNAYBBBAAIGuCFj2NzMF/1d2ZYnGIoAAAgiMjsCnVf/rTgC+lOTiozNBgxBAAAEEuiHw3wT/dQf/c5PcpBtDNBQBBBBAYJQEXiUBWHcC8KRRmqBRCCCAAALdELhYkrMkAOtKAN6XZLduDNFQBBBAAIFREjhc8F9X8P9xkquO0gSNQgABBBDoisDLJADrSgDu1ZUdGosAAgggMEoCuyT5lgRgzQlA3SthQwABBBBAoHkCNxD81xz8P+GRv+Z91wAEEEAAgSmBJ0sA1pQAnJrkANYggAACCCAwFgIfkQDsNAE4Pcl1x9Lh2oEAAggggMAVklwgAVg1AajFfm5HFQQQQAABBMZE4EjBf9XgX6/4fdCYOlxbEEAAAQQQKAJvkACsmgA8iyYIIIAAAgiMjcCeSeradlW5/tuewQlJ6hFJGwIIIIAAAqMicD2Bf4eJzweS7D2q3tYYBBBAAAEEpgT+UAKwYgLwmSSXYQkCCCCAAAJjJVDXt536vzCDDye59Fg7XLsQQAABBBAoAm+RAFwoAToxSb0V0YYAAggggMCoCXxdAvDLBKCehthr1L2tcQgggAACCEzXs3f6/z9P/788yW6sQAABBBBAoAcCN1H9/6L6f45H/XrQXRsRQAABBJYI3F8CkP+5BMNXBBBAAAEEeiHw1x0nAOcneXAvHa2dCCCAAAIILCfwzk4TgB8nOXw5CN8jgAACCCDQE4Fvd5gAfCzJQT11srYigAACCCCwLYE6Dd7TUwDHesxvWwX8PwIIIIBAbwT26Sj418uOfq+3DtZeBBBAAAEEViJQ69z3UP1/MsnVVwLgZwgggAACCPRI4CodJAAv9Ta/HtXWZgQQQACB1Qhca8QJwJlJ7r1a4/0bAggggAACvRK44UgTgHq00Sn/Xq3WbgQQQACBnRL47ZElAN9I8rs7bbVfQAABBBBAoHMCdxhJAnBOkmd5hW/nNms+AggggMCaCVS13PpTAO9KUvcy2BBAAAEEEEBgjQTu03AC8M0kv7/Gdvo1BBBAAAEEEFhG4KENJgDnTk7116t7L7asHb5FAAEEEEAAgXUQOLKhBODsJC9Pco11tM+vIoAAAggggMAKBG7XQALwkyTPTvIrKxy/HyGAAAIIIIDADASus8AJwLeSPD7JJWdol48ggAACCCCAwCoE9lvABOCkJPdLsucqx+2fEEAAAQQQQGCDBM5akCTgA0nunGSXDbbHxxFAAAEEEEBgDQS+soUJwGcmx/eUJNdew3H6FQQQQAABBBAYkMD7NzkB+ESSJya55oBtsCsEEEAAgU4I7JVk3ySXTrJbJ22eVzNP2IQE4N+nN/QdPK9GdLbfPabrIFwmyRWTXC1Jvdr5Ei6hdGaC5iLQOIEK4FdKctPpi1wek+SvkrwuyQeTfC7J15J8L8kZSc7fJmBdkKQeFavf+Y8k707yhsnE+LLpgjFHTT5bC97cM0k99nbjJAeaKH9pzfO24TnE0sD1Up43T/rrcUmu+su/5JuVCNQ9DwcluVWSe01cLv+Pnq558JYkH01ySpLTkvx0Bf+37a/zkvwgyReTfGQyrt4xOdtyfJIXTW6sfMZkH3+S5P5J7pbkRpO/tfdKB+VnCCCAwNAE6q7zw5I8djLpHZfkk0nqRS7bTmKb8f+nJ3nf5CzC85PcN8n1Or3z/I83wL9W5fv0pAL9P9Ngf8sk1ce2lQnUWavfmgTohyd5SZJ/mya1m+H7jv5G9WFdlvnbaaJcCbKkYOX+81MEEFgjgarsq8J4wrQarKpwR5PQovy8kpE6i1Arzj0yyX+fnlZdY5Ob/LWqOrflX6vu/XBaedYZmDqF/y9J/mkS4F8wfUzvBknqUoxtewJ1ir5ubCy2Vc1XJd+C/0seSAq271M/QQCBVQjUqcxaWObRSf5x8vXHKwSWpQmmpa91iaFOp9Zp1Ho+/YBVGLT4TxefLq9b7bpUkt1bbMQWH3MxPDzJi6dntSqBasnxtRxrJQV1xu7Y6eUKnmyxdP48AltNYJ/JpHCXJK+aXqNfy0Qyht+pibAqu99OUtWerS8Clez++vTsVp0Z2arLWFs5luo+g7pscIdOL531ZbzWIjAlcJEkd59WxHVT3lZOQovwt+sGxLrpsG6sqjuybeMkUE+c1OuHX5nk27y/0Livs311H0gt5OT+gXH6r1UdE6hrvfeYXNd8/fRO5EUIvIt6DJ+avrzm5h5RbH7E/MakBbVQ0YfWcPf9ovq42cdVRUFdLvvdJBdt3gANQKBjAlefPkr3fRXPhSqetU6q9ejiC6c3E1rito2BdMjkMCvo130fa+1nv7cyq58leeP0kUPrdbThv6PsnEC9hKVOdb7HBDhoAKi7wJ8zuZP+hp37tYjNv9zkqYdHJPkw5wd1fnli9OXpY4Z135ANAQQWjEC9b73eu67aX7maWT6ZbfT7qi6fmuTQBXOgp8Ope1nqMb23Jqk73Dfapz6/NoY1v9QZllrF0IYAAltM4LLTyrRO15nENp9BLaRTqxXWcq62+RKo09C3nd6w5gbWzXd9+fxS801dHuP9fJ23dwRWJFDPfD9tAVYiWz4p9P593WxWCxBdYcUe88NZCVxj+tjmNyW5C5fk19LFtex33XBpQwCBORO42PRtbD8yGS7cZLiUANWk+M+T9xsc0cFKhPPS/ZJJHjh9n8QSV1+3turfGf+676jWFXDD7LxGhf12S6BuvqmXs7jGv9iT4LaT5M+nj1/e1dK7Ox27u05XqXt1Epe02vJ8ufd1Wax8tyGAwAYJ1F39D5tUQ99S8S9sxb988lvt+1pwpd5TUG+O81jVfw2Mes1w3VT5dY437/hy/+tNhvUosg0BBNZJoALEkdPX5C4fVL5vtzJa3ne1FGutSldLMdcd7b1tdfNYvWjqY4L+qIL+csfr+3qvQr3GuEfHexvT2jsAgbp+Vo83fcHEOOqJcflEWae7/+804aunOsa6CfrjSF6Xu7vW70+ZLig0Vre1C4ENE7iqBXy6Cfo7mjjPT/Kv0/s9xvCIlaDfb9BfyfG6Obae6rAhgMAyAvUymtNV/d0nANtOmnVD1THT6qmFlxXV3fu3mz6i6vS+4L+tz/X/dVngmd41sGz29223BGoFv7cI/AL/Gh2oZ+HfNL1+fosk9S77rdyulOSe00VhPuGlOzxeo8eVCNRlgXozqQ2BLgnUxHnaOgbMStm0n/VdZdUlgzpLUO92r+fm6z33+87pWexafKr2/9DJ3d2vmU7g/OvbvyH632WBLsNfv42udbT/XuBXLc3RgVqM6LuT17p+Nsl7k7whyUuSPD3JY5L84eTlObefrKV/o8l9J789vcTw4EkF/6Qkz59cp31tkhMnTyl8cvoI6jlzPNYhgoh9tJ2I1I2wdRnUhsCoCdw5yXdMpoI/BzjAge0ceNXk3Sa12qkNgVERqJuj/s6A327Aq9zartz0n/4b2oHPT85YXWdUs7/GdE3g1knqffJDDxT7w5QDHBijAy4JdB0yx9H4iyY5VuCX+HCAAxyYyQGXBMYRC7trRS2AUqeyxpida5N+5QAHNsuBmkd/rbsIosHNEriZt/ZJfCR/HODAYA7UWzUf0GxEcODdEPjdJCXrZmXH/g7WHOBALw7Uq6I9JdBNOG2roX+a5ALBX/LDAQ5wYG4OnOwpgbYC49iPdvckLzbg5zbge6lutFMlz4G1OfDjJL819sCifYtPoNZif5vgL/hzgAMc2FQH6lLrnRY/RDjCsRI4IEm9AEXWjgEHOMCBzXfg3Omy1mONMdq1oASuO1m7+lTBX/LDAQ5wYEsdqPuuHrWgccJhjZBAve/8dIN+Swe9amvzqy3MMV9kB/5yhLFGkxaMwIOS1JvWFnkgODb9wwEO9OjAC5PsumAxw+GMgMAuSZ4l8Et8OMABDiy0A/Uq6z1GEHM0YUEIVPB/hUG/0IO+x2pHm1X5HFjZgXoy6yILEj8cRuME/krwF/w5wAEONOXAB5Ls23jscfhbTOAJBn1Tg15FtHJFhAsuPTrwqST7b3EM8ecbJVAvn+hx0GizfucAB8biQL1N8NKNxiCHvUUE7upuf8mPBJADHBiFA+9PsvcWxRJ/tjEChyU5y8AfxcAfSxWjHSpyDmzMgb/3iGBjkXgLDvcGFvkR+CV/HODAKB143hbEFH+yEQLXSPI9A3+UA1/1tLHqCT/8xuLAoxuJRw5zEwlcMcnXBX/BnwMc4MCoHTg/yd02Mbb4UwtOoO4Q/axBP+pBP5bqRTtU4hzYuAP1KuHfXPC45PA2gcBFk3xI8Bf8OcABDnTlwA+SXH0TYow/saAE9kzyDoO+q0Gvetp49YQhhmNx4CtJLreg8clhzZFAvTHqeMFf8OcABzjQtQP/nqTOBNs6IvA0g77rQT+WCkY7VOMc2LgDb06yW0fxr+um3inJBRIACQAHOMABDkwdqNe920ZO4MAkpxn0Bj0HOMABDiSpxwKP9ebAkUf+6VrQHzfoDXoOcIADHJg+AVarv9o6IPAyg96g5wAHONC9A99Pcv8ku3QQ9zQxyZEGffeD3s1SG79ZCkMMW3agTve/yOuB+8oJrpekVn5qWVzHrv84wAEOzO7Ap5PcsK/Qp7UXSfIFwV/ywwEOcKBLB+qJr3oL4F7CYX8E/rdB3+WgVynNXilhh91YHPhmklv3F/a0uAjcyvP+gr8EkAMc6NKB17vW328icMnJjX+nGPhdDvyxVC/aoRLnwPodOD3JEf2GPi0vAscJ/oI/BzjAga4c+Ohk7j9ICOybwF0M+q4GvSpp/VUSZpiNzYETkuzTd+jT+nq14/ckABIADnCAA104UHf5/7lFfQT/IlA3fowts9UefcoBDnBgewd+muTuQh8CReAWgr/khwMc4EAXDnwjSS3yZkMguyb5hIHfxcBXCW1fCWGCSU8OfCjJFcQ9BJYI3E/wF/w5wAEOjN6Bt7vZbyns+VoELp7k2wb+6Ad+TxWOtqroObC9A/+QZE9hD4HlBJ4h+Av+HOAAB0btwGuT7L584vc9Alfxpr9RD3pV0PZVECaY9ObAy5Nf3Ocl4iFwIQLHy/olABzgAAdG60C90G2XC836/geBJDcz6Ec76HurcLRXVc+B7R04RqRDYCUClRF+RAIgAeAABzgwSgdettLE72cIFIF7G/SjHPSqoO2rIEww6c2Bt7jhT6DfEYF64UOtAtXboNBefc4BDozdgTqze9EdTf5+jsBDBH/JDwc4wIHROfClJJcV4hDYEYG69n+SgT+6gT/2qkb7VO4cWN2BeovrwTua+P0cgSJwW8Ff8OcABzgwKgfqrX43EuIQ2BmBtxr4oxr4qqLVqyJ88OnBgXvubOL37whcI8kFEgAJAAc4wIHROPBCoQ2BtRAoUXrIhrVRP3OAAz04UHf8e7nPWqJf579zqSRnSgAkQBzgAAdG4cAPk9S7XGwI7JTA4wz6UQz6HqoabVS9c2B1B+pS7h13Ouv7BQSS7JbkqxIACQAHOMCBUTjwdJENgbUSuKtBP4pBrypavSrCB58eHHj/tKhb6/zv9zon8F4JgASAAxzgQPMOnJXkmp3HM81fB4HrGfTND/oeqhptVL1zYOcOHLWOud+vIpCXSAAkABzgAAead+AT3vAnoq+HQN38V+tDy6wx4AAHONCuA+clucF6Jn+/i8DNBX/JDwc4wIHmHXi2cIbAegk838BvfuCr2tqt2vSdvhvCgS8m2We9k7/f75tAvfb3VAmABIADHOBA0w7coe9QpvWzELiJQd/0oB+icrAPFSgH2nbgxFkmf59B4BgJgASAAxzgQLMO1HK/9Ri3DYF1E/iKgd/swFe1tV216T/9N4QDx6171vcBBKZZ4xAC2oeJjAMc4MDmO/DzJFcSzRCYhcDTVP+qfw5wgAPNOvDMWSZ+n0GgCJxk4Dc78FVbm19tYY75Ijnw/SSXEMoQmIXArwr+gj8HOMCBZh34s1kmfp9BoAg8ycBvduAvUhXiWFTFHNh8B85IcimhDIFZCfyHBEACwAEOcKBJB54768Tvcwjsm6SeHZW5Y8ABDnCgLQfOTXJlYQyBWQncUfCX/HCAAxxo0oFXzTrx+xwCReAZBn6TA1+l1lalpr/01zwcuK4whsBGCLxXAiAB4AAHONCcA+/YyMTvswjsmaRWj5pHZmqfuHKAAxyYnwN3EsIQ2AgBb/+b3+A08WHLAQ7My4HvJNl9I5O/zyLwONW/sx8c4AAHmnPgOcIXAhsl8EYDv7mBP6+Kwn5Vqxxox4HrbHTy93kEvisBkABwgAMcaMqBjwldCGyUwCEGfVODXnXWTnWmr/TVPB145EYnf59H4AgJgASAAxzgQFMOnJPkMsIXAhsl8FIDv6mBP8+Kwr5VrBxow4F/3OjE7/MIFIGTJAASAA5wgANNOfAA4QuBjRLYzwuAmhr0qrM2qjP9pJ/m7cABG538fR6Bw2T9EgAOcIADTTlQr223IbBhAg828Jsa+POuKuxf5cqBxXfgqRue+e0AgSTPlQBIADjAAQ405UAt3W5DYMME3mzgNzXwVWeLX53pI300Twe+l2TXDc/8doBAkpMlABIADnCAA804cJzIhcAQBOoNUrWYxDyzVfvGlwMc4MBwDtxviMnfPhA4WPCX/HCAAxxoyoFrC10IDEHgDgZ+UwNfFTVcFYUlli06cIbr/0OEPvsoAo+SAEgAOMABDjTjwLuFLgSGIvBCA7+Zgd9iteKYVdkcGNaBZw41+dsPAu+UAEgAOMABDjTjwOHCFgJDEfiagd/MwFdJDVtJ4Ylniw7sP9Tkbz99E9g7yfkSAAkABzjAgSYc+GbfIUvrhyRQj5K0mAE7Zv3GAQ706MC7hgwA9tU3gbtIACRAHOAAB5px4Ni+Q5bWD0nAI4CqqB6rKG3mfasO1JxtQ2AQAn8h828m8291wnLcgi0HhnPg9oPM/HaCQJIXSAAkABzgAAeaceAgkQuBoQi8xsBvZuCrooarorDEskUHzrIE8FChz36KwNslABIADnCAA0048BlhC4EhCXzEwG9i4LdYrThmVTYHhnXgrUNO/vaFwJckABIADnCAA004cJyQhcCQBE4z8JsY+CqpYSspPPFs0YHnDTn521ffBHZNcoEEQALAAQ5woAkHjuo7ZGn9kAT2M+ibGPQtViqOWYXNgeEdeNCQAcC++iZwiARAAsABDnCgGQfu1nfI0vohCdzYwG9m4Kumhq+mMMW0NQduPmQAsK++CdSSkq0NAMerzzjAgV4dqLe32hAYhMC9JQASIA5wgAPNOFCXbW0IDELgkQZ+MwO/14pHu1X7HPgvB7wHYJDQZydF4CkSAAkABzjAgWYcuIrQhcBQBI428JsZ+Kqg/6qCsMCiVweuONTkbz8ISABMpL1OpNrN/RYd2F/YQmAoAhIAk2CLk6Bj5m2vDlx2qMnffhCQAJhIe51ItZv7LTpwaWELgaEISABMgi1Ogo6Zt706IAEYKvrZTyQAJtJeJ1Lt5n6LDlxZ3EJgKAISAJNgi5OgY+Ztrw5YCXCo6Gc/zgB4DNJjkBzgQEMO3FTcQmAoAs4AqKR6raS0m/stOnDboSZ/+0FAAmASbHESdMy87dWBuwtbCAxFQAJgIu11ItVu7rfowJFDTf72g4AEwCTY4iTomHnbqwOPErYQGIqABMBE2utEqt3cb9GBpw01+dsPAhIAk2CLk6Bj5m2vDrxK2EJgKAISABNprxOpdnO/RQfeN9Tkbz8ISABMgi1Ogo6Zt706cIqwhcBQBOp6Uq8DSbv1PQc40JoD5yfZY6gAYD99E/hjCYAEiAMc4EBTDhzYd9jS+qEI3M/Ab2rgt1atOF4VNgeGd+DmQwUA++mbwN0kABIADnCAA005cETfYUvrhyJwmIHf1MBXTQ1fTWGKaWsOPGeoAGA/fRO4vgRAAsABDnCgKQfe1XfY0vqhCNTNJK1lv45Xn3GAAz078MOhAoD99E3gUhIACRAHOMCB5hy4ct+hS+uHILBrkgsM/uYGf8/Vj7ar/jmQ3HmIAGAfCPxIAiAB4AAHONCUA08WuhAYgsBXDfymBr7qRwXMAQ78wxCTv30g8HEJgASAAxzgQFMOnCp0ITAEgXcb+E0NfNWf6o8DHCgHDhkiANhH3wTeIAGQAHCAAxxozoEH9h26tH4IAn9r4Dc38FWAKkAOcOD4IQKAffRNoJaVNJlgwAEOcKAtB77Td+jS+iEIHCUBkABxgAMcaNKBXx0iCNhHvwTqOpLMHwMOcIAD7Tnw8H5Dl5YPQeDWEgAJEAc4wIEmHXjjEEHAPvolcDUDv8mBr1prr1rTZ/psaAfOSLJPv+FLyzdKYI8k50sCJAEc4AAHmnTgrhsNAj7fN4GvG/hNDvyhqwn7U6FyoD0HXtt3+NL6jRJ4jwRAAsABDnCgSQfqMsDeGw0CPt8vgZcb+E0OfNVae9WaPtNn83Dg8H4MPwUaAAAWSUlEQVTDl5ZvlMCTJAASAA5wgAPNOvDqjQYBn++XwB8Y+M0O/HlUE/apSuVAWw6c7jJAvwF8oy2/mQRAAsABDnCgaQfusdFA4PN9EtjfwG964KvW2qrW9Jf+mocDJ/YZvrR6owR2SfIzSYAkgAMc4ECzDlyQ5OCNBgOf75PA5wz8Zgf+PKoJ+1SlcqA9B57VZ/jS6o0SeIsEQALAAQ5woGkHvptkz40GA5/vj8ALDPymB75qrb1qTZ/ps3k44GbA/uL3hlv8WAmABIADHOBA8w64GXDD4bC/HdzFwG9+4M+jmrBPVSoH2nKgbga8Vn8hTIs3QuA6EgAJAAc4wIFROPCqjQQDn+2PQL0W+GyDfxSDX8XWVsWmv/TX0A6cl+SQ/sKYFm+EwMckABIADnCAA6NwoF7yZkNgzQReauCPYuAPXU3YnwqVA+05cG6Sq6559veL3RN4qARAAsABDnBgNA68pPuoBsCaCdzEwB/NwFextVex6TN9NrQDdV/XFdccAfxi1wQukqRuHhlaQvvDlAMc4MDWOPDirqOaxq+LwGclABIgDnCAA6NxoIq6eszbhsBOCdTzozJ1DDjAAQ6Mx4F37nTm9wsIJLEk8HgGvQlcX3KAA0sO/I4Ih8DOCNzCGQBnQDjAAQ6MzoGTk9SCbzYEdkjgUgb+6Ab+UgXgq2qQA3078Ogdzvz+AYEpga9IAiQBHOAAB0bnwI+S7CfSIbAagdcb+KMb+Cq/vis//a//lxx45WqTv39D4CgJgASAAxzgwGgduKMwh8COCNzewB/twF+qAnxVEXKgXwe+maTu97IhsB2BK0gAJAAc4AAHRu3A32038/sBAlMC3zL4Rz34VX/9Vn/6Xt8vOXAnEQ+BlQi8SQIgAeAABzgwageq0Nt3pQDgZ30TeISBP+qBv1QB+Koa5EDfDry671Cn9SsRuLYEQALAAQ5woAsHHrhSEPCzfgnskuS7Bn8Xg18F2HcFqP/1/1lJbtBvuNPylQicIAGQAHCAAxzowoFaAdb9ACtFwk5/9iADv4uBrwJUAXKAA+XAm5PU2V8bAjlEAiAB4AAHONCVA38m9iGwROBUg7+rwa8SVAlyoG8Hzkty2FIA8LVvAsdJACQAHOAAB7pyoN4aeGjfoU/ri8B9DfyuBr7qr+/qT//r/yUHTklygDDYN4GrSAAkABzgAAe6dOBTSS7ZdwjU+no8ZCkr9BULDnCAA/048O4kewqD/RJ4mQRAAsQBDnCgWwde6/HAfhOAexn43Q58lV4/lZ6+1terOfDcfkNg3y3fXwIgAeAABzjQvQOSgE5zgZMM/u4H/2rVgX9TPXKgDweOdTmgvyygOt0Ax4ADHOAAB16eZNf+wmC/Lb67BEACxAEOcIADUwdenWS3fkNiXy2vZ0HPMfgNfg5wgAMcmDrw+iR79BUK+23t2w18A58DHOAAB5Y58A6LBfWRFDxwWae7Dug6IAc4wAEOlAOfS3JQH2Gw31ZePsn5kgDZPwc4wAEObOPA95P8Vr/hsY+Wv2+bTlcBqAA4wAEOcKAcOHv6Ark+omGHrXysBEDmzwEOcIADqzjwbI8JjjM7uOoqna4KUAVwgAMc4EA58E9J9htnGOy7VR+XBMj+OcABDnBgJw58M8lhfYfL8bX+STvpdBWACoADHOAAB8qBunH8aOsFjCcROFQCIPPnAAc4wIF1OPCRJAePJwz23ZKT19HxKgGVAAc4wAEOnJHkj/oOneNofZ3SMaAx4AAHOMCB9TrwpiRXGkco7LMVN5IASIA4wAEOcGBGB85M8rgku/cZQttu9S5JvjFjx683W/T7KgwOcIAD43TgU0lu1nY47PPoXyABkP1zgAMc4MAGHbggyUuTXLrPUNpmq2+xwU6X0Y8zo9ev+pUDHJjFgXqfwIM9MthGQrBbkh9IAmT/HOAABzgwoANfSXJEkooxtgUm8PIBO32WjNFnVBoc4AAHxulAPW5+L+8VWNwMwGWAcQ48E6p+5QAHFsWBzyS5e5K6+dy2QASqQ77sLIDTfxzgAAc4MGcHPjFdSGivBYqB3R/KUXPu9EXJQh2HiogDHODA1jvw3cn9AU+dPDlwQPfRdwEAVCecJwmQ/XOAAxzgwCY6cG6S45P85gLEwa4Pod79LDPGgAMc4AAHtsKBek39bbqOwlvY+LtIACRAHOAABziwhQ7cfgtjYNd/eo8kdV1mKzI/fxN3DnCAA3078OmuI/ACNP7ZEgAJEAc4wAEObIED91mAGNj1IVxzCzpd1t931q//9T8HOHCq5YMXI/d4vyRA9s8BDnCAA5vowJ8sRvhzFPfdxE6X+cv8OcABDvTtwE+SXELoXQwCF01yuiRA9s8BDnCAA5vgwDGLEfocxRKBv9mETpf1953163/9zwEOnJPkikuBx9fFIHBjCYDMnwMc4AAH5uzAcYsR8hzFtgTqmUwZOgYc4AAHODAvB35t28Dj/xeDwKMlABIgDnCAAxyYkwNvX4xQ5yhWInCZJGfPqePnlU3ar0qFAxzgQBsO3HKlwONni0PgBAmA7J8DHOAABwZ2oF78Y1twAvWKRtk0BhzgAAc4MKQD91zw2OfwpgQ+KAmQBHGAAxzgwEAOfC3J7iJsGwTuOlCnD5k92pdqhAMc4ECbDtQN5rZGCOya5IuSANk/BzjAAQ5s0IHTklyskdjnMKcEHrLBTpept5mp6zf9xgEODOnA00TV9gjsk+T7kgDZPwc4wAEOzOjAGUn2ay/8OeIi8JQZO33I7NG+VCMc4AAH2nTgaKG0XQK1MNDPJAGyfw5wgAMcWKcDZya5bLvhz5EXgWPX2eky9TYzdf2m3zjAgSEdeI4Q2j6Bg5OcLwmQ/XOAAxzgwBodqDPHl28//GlBEXjDGjt9yOzRvlQjHOAAB9p04HlC53gI3FQCIPPnAAc4wIE1OPDzJPuPJ/xpSRF4/xo6XrbeZrau3/QbBzgwlAMvEDLHR+BwCYDsnwMc4AAHVnGgXid/xfGFPy2q5YFPXqXjh8oe7UclwgEOcKBNB14kVI6XwAMlALJ/DnCAAxxYwYFzklxlvOFPy/ZO8t0VOl623ma2rt/0Gwc4MJQDLxUix0/giRIA2T8HOMABDixz4NwkB44//Gnhxb0kyMBfNvCHqh7sRyXKgXYdeIXQ2A+BxwgAkgAOcIADHEhSz/1fuZ/wp6V7Jfm6wW/wc4ADHOjegWcIif0ROMLA737gO2Xb7ilbfafvhnCgbgqvy8K2zgjsluSzkgBJAAc4wIFuHahHw22dErA6oCpiiCrCPnjEgfYc+HSSKgRtHRP4N9l/t9m/Sbu9SVuf6bOhHLhtx3FP06cEbi4BkABwgAMc6MqBt4mACCwReLvB39XgH6qCsB/VKAfac+C8JIcuTf6+InC9JBdIAiQBHOAAB0bvwIuFPAS2JfBaA3/0A1+11l61ps/02ZAO/CTJ5bad/P0/AgcnqfWgh5TNvvDkAAc4sDgOPEGoQ2BHBOpd0AYrBhzgAAfG58DXktQbYW0IrEhg/yQ/lQRIgjjAAQ6MzoF7rjjr+yECywg808Af3cBXzY2vmtOn+nQ9DnwoyS7L5nnfIrAigUslOU0SIAngAAc4MAoH6rG/66842/shAisQeLyBP4qBv54Kwe+qKDkwTgeeu8Ic70cI7JDAPl4XLAGQBHKAA807UK99v+gOZ3r/gMAOCHhR0DirAVWefuVAPw78zg7mdz9GYKcE3qwCaL4CMNn3M9nra3293IHX73SG9wsIrELgwCQ/kwRIAjjAAQ405UCt+Pcrq8zt/gmBNRE4ysBvauAvrwB8ryLkQJ8OPHxNs7tfQmAnBPZM8nlJgCSAAxzgQBMOfDjJrjuZ1/0zAmsmcEsDv4mBr9rrs9rT7/p9yYF6n8t11zyz+0UE1kjgNZIASQAHOMCBhXbg2Wucz/0aAusiUO8JqBtLljJNX7HgAAc4sDgOfDXJRdY1q/tlBNZB4JESAAkQBzjAgYV04PbrmMv9KgLrJrBbko8b/As5+FVii1OJ6Qt9sdkOnLDu2dwHEJiBwI2TXCAJkARwgAMcWAgHfpzkCjPM5T6CwEwEXmLgL8TA3+wqw99T2XJg8Rx48EyzuA8hMCOBSyf5niRAEsABDnBgSx34QJJdZpzHfQyBmQkcYeBv6cBXiS1eJaZP9MlmOvDzJNeYeQb3QQQ2QKCyzvdJAiQBHOAAB7bEgcdtYP72UQQ2TODaSWrlqc3Mev0tvDnAgd4dqFP/lvvdcAizg40SOEYCIAHiAAc4sGkO1BtaD9noxO3zCAxBYJ8kXzD4N23w9175aL/qv3cHHj3ExG0fCAxF4GZJzpcESAI4wAEOzNWBf3Xqf6iwZT9DEniOgT/Xgd971aP9Kv/eHfhpkqsNOWnbFwJDEdg7yUmSAEkABzjAgbk48IihJmv7QWAeBGqZ4PMM/rkM/t6rH+13BqBnB95jwZ95hCz7HJrA0RIACQAHOMCBwRw4M8mBQ0/U9ofAPAjsleSzBv9gg7/nqkfbVf0cSB4yj4naPhGYF4EbWiBIAiAJ5AAHNuzAu5z6n1eYst95Eniawb/hwa/6UQFzoF8H6jW/V5nnJG3fCMyLwJ5JPiUJkARwgAMcmMmB35vX5Gy/CGwGgeu5FDDTwFf19Vv16Xt9Xw787WZM0P4GAvMm8BTZvySAAxzgwJodODnJRec9Mds/AptBYI8kHzH41zz4VYAqQA7068DZSerMqQ2B0RA4KMlPJAGSAA5wgAOrOvCY0cz6GoLAMgJ1Q4vKBgMOcIADKzvwVo/8LYsYvh0dgZdKAiRBHOAAB7Zz4DtJLje6GV+DEFhGYJ8knzH4txv8KqKVKyJccOnBgQuS3GbZPOlbBEZL4NAkP5MESAI4wAEO/MKBY0Y722sYAisQeICBb/LnAAc4kI8mqSelbAh0ReB4g18A4AAHOnbgjCSHdDXraywCUwKXSPLljgd/D9c2tdE1fA7s2IH7iAYI9EzgN5KcIwlQBXKAA5058IqeJ35tR2CJwGM7G/gqoh1XRNhg04MDH06y19IE6CsCPRPYJclbJAEqQA5woAMHvp3kgJ4nfG1HYFsCl0nyjQ4Gfw/VjTaq4jmwsgO1zv/Ntp38/D8CCPznCzB+KglQBXKAAyN1oB5/tiGAwA4I3C1JrYqlgsCAAxwYkwMv2sGc58cIILCMwBMlABIgDnBgRA68z2I/y2Z43yKwEwKvGdHgH1MVoy2qcg6sz4G6t8lLfnYy4ftnBJYT2DtJPSpjssGAAxxo1YGfJ7nh8onN9wggsDYC+3syQAIkCeRAww784dqmOr+FAAIrEbh+Ek8GqABbrQAdd7/uPnelCc3PEEBgfQQ8GdDvJCqA6vsWHTgxyW7rm+b8NgII7IjAkxo+DdjiBOaYBV4OzObAl5Lst6OJzM8RQGA2Ap4MmG1CMpHjxoHNcaDu+L/qbNObTyGAwGoEPBmwOZOYYIEzB9bvwHeTXGO1Ccy/IYDAxgjUkwF1is0EhQEHOLAoDpyW5Lobm9p8GgEE1kLgykm+KgmQBHGAAwvgwBlJbryWicvvIIDAMATqOtspCzD4F6UCcRyqYQ5svgO10M8thpnS7AUBBNZD4GpJTpUEqAI5wIEtcOCcJHdcz4TldxFAYFgCV0/y7S0Y/Kqtza+2MMd8URw4P8k9hp3K7A0BBGYhcK0kdQfuokwOjkNfcGC8DtTryu87y0TlMwggMB8C107yfUmAJIgDHJizA4+czxRmrwggsBEC9RjOD+c8+FV2463s9K2+3ZkDR21kgvJZBBCYL4F6edCPJAGqQA5wYGAHjp7v1GXvCCAwBIEbJfnJwIN/Z5WBf1c9cmC8Dvz5EBOTfSCAwOYQuGmSWqDDpIwBBzgwqwNnJbnX5kxZ/goCCAxJ4IbWCZAASQI5MKMDP0jy34eckOwLAQQ2l8AVknxwxglg1qrB57a24qzHtOqJkE8leUeSVyd52eQVrS9I8uwkf5HkCZN7RR6V5IHTR7oeNLmB9BGTs0aPS/JnE1+enOTpSY5J8sIkr0/y/ul7KM7k0+iTii9MvDlkc6cqfw0BBOZBYK8kLzdpj2rSroVYTpoG9wrah0/XY7/SJHDvMQ+JttnnxZIcnOS3JsnGw6YJxscnycPZPGves3+dJIv7bdPf/hcBBBonUM/vnmeCbm6CPndazb9iWqX/5qQyv+iCuljJx69P3lNx5PSMwweSOGOwtWeE1nNGrs4WVcFgQwCBERK4pbUCFjoBqMr+Y0n+JsmDk9QTHXs37uGuSa6Z5J7TSxB1SaouU6wnMPnd+fP6y8Y9c/gIILAGAgcl+bQJeGECUFX4J04D/uXX0H9j+JVfmZ7NeG+SSnoE+K1jUJdt/mgMUmkDAgisjUBdw32TiXfLAk+9Se1tSe7nemsq6XnI5I7zd7lEtek+npbk5mubMvwWAgiMicAu0zvCnY7dnOqrnql+c5L7JNl3TCIN2JbLJnnA9OmFOjPizMD8GHw5yTUG7Du7QgCBBgnczY1acw00dZr73kku0aAbW3nIl07y6OmjhxKBYROB10pCt1JtfxuBxSJQbxOsx7hMtMMwqFUYXzR5fr642jZGoM5U3THJ2908uOHxWe8JqZsxbQgggMCFCOyepN72VaeqJQKzMfhckoer9i/k1ZD/U6esn5/kdI6ue4zWjaZXHLIz7AsBBMZH4FeTfMgEu+YJtq5V10p5txifCgvbootPnyI4mac79fTn01Uf60yKDQEEENgpgXp2u1aY+5kJdocTbC23+9QkB+yUpl+YF4EKarefPkHgrNX2Z61qKehag8GGAAIIrJtArRnwOknAhZKAOs1fd6rvs26aPjBPAtdP8prJZSxPDyRfmtzT8z/mCdu+EUCgHwK1Il3dzd5zlVXV1O0mj046lbrY3l95cg/Gczu9T6DujXh8kj0Xu4scHQIItEjgd5J8tqNEoK6f1pv0Dm2xszo/5ktOLmH96eRszTc78LVWU3xlknr7pw0BBBCYG4Hdktw/yedHPLHWzWX1ytxamMbWNoF6QdHvT5dbHtuiV5Wg1uOm9WZGGwIIILBpBOpU+K2T/ONI1nP/yfQlPDfbNIL+0GYTODDJ0yYJ7KmNJ6+1hG/dgHq5zQbo7yGAAALbEqiJ9ZgG3zRYp07fmeQP3NS3bZeO+v/rLNadpu/DaOmmwVq+t1ZHXNTXQY9aGo1DAIHVCdSd8XW69fgkVVEv4k2DdRq43ob4xCR1w5itbwJ13bxunPv3BX0Z0Vcmyemzktyw727SegQQaIlA3Ylcd82/OMm3tjAZqArvI0mek+TO3r7XkkKbfqy1wFA5+8zJ5a0PJKm3Nm5FEluV/tGTl0fdYNMJ+IMIIIDAwATqfoHfmC6TW3fVf2yOSw7X4kXvnr7p8FZOlw7ck33t7iJJDpu69J7JmYK66W7ohKDOlJWvVeXfPclV+kKstQgg0COBujv716avx61qpxKDN0wnw08k+fr0We66Tl9BvW58qjMJdUq0FuP5t+kiRXXvwSOmC59cN0nt14bAPAjUWa1aKrvOEjxo4trTJ3fgv2rqbC2fXd7W0zFfS/KdJLVaZD1R8sHpzbKvmN4rU5cc6g2RtUqfdSXm0VP2mf8P++Hq4javc6AAAAAASUVORK5CYII="/>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.68101 0.17616H1.84874C1.35861 0.176782 0.888742 0.37176 0.542171 0.718331C0.1956 1.0649 0.000622608 1.53477 0 2.0249V4.85751C0.000622608 5.34763 0.1956 5.8175 0.542171 6.16407C0.888742 6.51064 1.35861 6.70562 1.84874 6.70624H4.68101C5.17113 6.70562 5.64101 6.51064 5.98758 6.16407C6.33415 5.8175 6.52913 5.34763 6.52975 4.85751V2.0249C6.52913 1.53477 6.33415 1.0649 5.98758 0.718331C5.64101 0.37176 5.17113 0.176782 4.68101 0.17616ZM5.52135 4.85683C5.52135 5.0797 5.43281 5.29345 5.27522 5.45104C5.11762 5.60863 4.90388 5.69717 4.68101 5.69717H1.84874C1.62587 5.69717 1.41213 5.60863 1.25453 5.45104C1.09694 5.29345 1.0084 5.0797 1.0084 4.85683V2.0249C1.0084 1.80203 1.09694 1.58829 1.25453 1.43069C1.41213 1.2731 1.62587 1.18456 1.84874 1.18456H4.68101C4.90388 1.18456 5.11762 1.2731 5.27522 1.43069C5.43281 1.58829 5.52135 1.80203 5.52135 2.0249V4.85683ZM4.68101 7.6054H1.84874C1.35861 7.60603 0.888742 7.801 0.542171 8.14758C0.1956 8.49415 0.000622608 8.96402 0 9.45414V12.2861C0.000622608 12.7762 0.1956 13.2461 0.542171 13.5926C0.888742 13.9392 1.35861 14.1342 1.84874 14.1348H4.68101C5.17113 14.1342 5.64101 13.9392 5.98758 13.5926C6.33415 13.2461 6.52913 12.7762 6.52975 12.2861V9.45414C6.52913 8.96402 6.33415 8.49415 5.98758 8.14758C5.64101 7.801 5.17113 7.60603 4.68101 7.6054ZM5.52135 12.2861C5.52135 12.3964 5.49961 12.5057 5.45738 12.6077C5.41515 12.7096 5.35325 12.8023 5.27522 12.8803C5.19718 12.9583 5.10455 13.0202 5.00259 13.0624C4.90064 13.1047 4.79136 13.1264 4.68101 13.1264H1.84874C1.73839 13.1264 1.62911 13.1047 1.52716 13.0624C1.4252 13.0202 1.33256 12.9583 1.25453 12.8803C1.1765 12.8023 1.1146 12.7096 1.07237 12.6077C1.03014 12.5057 1.0084 12.3964 1.0084 12.2861V9.45414C1.0084 9.23127 1.09694 9.01753 1.25453 8.85994C1.41213 8.70234 1.62587 8.61381 1.84874 8.61381H4.68101C4.90388 8.61381 5.11762 8.70234 5.27522 8.85994C5.43281 9.01753 5.52135 9.23127 5.52135 9.45414V12.2861ZM12.1096 7.6054H9.27798C8.78786 7.60603 8.31799 7.801 7.97142 8.14758C7.62485 8.49415 7.42987 8.96402 7.42924 9.45414V12.2861C7.42987 12.7762 7.62485 13.2461 7.97142 13.5926C8.31799 13.9392 8.78786 14.1342 9.27798 14.1348H12.1099C12.6 14.1342 13.0699 13.9392 13.4165 13.5926C13.7631 13.2461 13.958 12.7762 13.9587 12.2861V9.45414C13.958 8.96402 13.7631 8.49415 13.4165 8.14758C13.0699 7.801 12.5997 7.60603 12.1096 7.6054ZM12.9499 12.2861C12.9499 12.3964 12.9282 12.5057 12.886 12.6077C12.8437 12.7096 12.7818 12.8023 12.7038 12.8803C12.6258 12.9583 12.5331 13.0202 12.4312 13.0624C12.3292 13.1047 12.2199 13.1264 12.1096 13.1264H9.27798C9.16763 13.1264 9.05836 13.1047 8.9564 13.0624C8.85445 13.0202 8.76181 12.9583 8.68378 12.8803C8.60574 12.8023 8.54385 12.7096 8.50162 12.6077C8.45938 12.5057 8.43765 12.3964 8.43765 12.2861V9.45414C8.43765 9.23127 8.52618 9.01753 8.68378 8.85994C8.84137 8.70234 9.05511 8.61381 9.27798 8.61381H12.1099C12.3328 8.61381 12.5465 8.70234 12.7041 8.85994C12.8617 9.01753 12.9503 9.23127 12.9503 9.45414L12.9499 12.2861ZM10.0333 4.64843C10.2352 4.75904 10.4618 4.81685 10.6921 4.8165C10.8236 4.81641 10.9545 4.79762 11.0807 4.7607C11.3415 4.68363 11.5737 4.5311 11.7481 4.32232C11.9224 4.11354 12.031 3.85785 12.0603 3.58744C12.0896 3.31703 12.0382 3.044 11.9127 2.80273C11.7871 2.56147 11.5929 2.36276 11.3546 2.23162C11.1156 2.10126 10.8434 2.0446 10.5722 2.06879C10.3011 2.09299 10.0431 2.19695 9.83099 2.36756C9.61885 2.53817 9.46199 2.7678 9.3802 3.02746C9.29841 3.28712 9.29536 3.56519 9.37143 3.82658C9.42167 4.00064 9.50608 4.16296 9.61971 4.30406C9.73334 4.44516 9.87393 4.56223 10.0333 4.64843ZM10.3694 3.26423C10.4043 3.19977 10.4575 3.14712 10.5223 3.11295C10.5871 3.07878 10.6606 3.06465 10.7335 3.07233C10.8063 3.08001 10.8753 3.10917 10.9315 3.15611C10.9878 3.20304 11.0289 3.26563 11.0495 3.33594C11.0701 3.40625 11.0694 3.4811 11.0474 3.55099C11.0254 3.62088 10.9832 3.68267 10.926 3.72851C10.8688 3.77434 10.7993 3.80216 10.7263 3.80843C10.6533 3.8147 10.5801 3.79914 10.516 3.76372C10.4306 3.7166 10.3673 3.63768 10.3399 3.54414C10.3125 3.45059 10.3231 3.34999 10.3694 3.26423ZM7.8484 3.6649C7.66681 3.87999 7.53258 4.13093 7.45445 4.40137C7.4348 4.46861 7.42937 4.5392 7.43852 4.60865C7.44766 4.67809 7.47118 4.74488 7.50756 4.80473L8.01714 5.64171C8.05372 5.70158 8.10233 5.7532 8.15991 5.7933C8.21748 5.8334 8.28276 5.8611 8.3516 5.87465C8.62766 5.92932 8.91214 5.92531 9.18656 5.86288L9.46454 6.01482C9.55983 6.27991 9.71013 6.52184 9.90555 6.72473C9.95263 6.77404 10.0092 6.81328 10.0719 6.84009C10.1346 6.86689 10.2021 6.88071 10.2703 6.8807H10.283L11.2625 6.85784C11.3328 6.8564 11.402 6.84029 11.4657 6.81054C11.5293 6.78078 11.5861 6.73805 11.6323 6.68507C11.8184 6.47337 11.9576 6.22467 12.0407 5.95532L12.3096 5.79095C12.587 5.8413 12.872 5.8319 13.1455 5.76339C13.2136 5.74685 13.2774 5.71626 13.3329 5.6736C13.3884 5.63094 13.4344 5.57714 13.4679 5.51566L13.9385 4.65616C13.9721 4.59445 13.9925 4.52639 13.9983 4.45635C14.0041 4.38631 13.9952 4.31583 13.9721 4.24944C13.8813 3.98328 13.7356 3.73914 13.5445 3.5328L13.5375 3.21582C13.719 3.0008 13.8532 2.74999 13.9314 2.47969C13.951 2.41243 13.9564 2.34183 13.9472 2.27238C13.938 2.20293 13.9144 2.13616 13.878 2.07633L13.3687 1.23902C13.3321 1.1788 13.2833 1.12693 13.2254 1.08675C13.1675 1.04657 13.1018 1.01897 13.0326 1.00574C12.7567 0.951465 12.4726 0.955472 12.1983 1.0175L11.92 0.865236C11.8249 0.600338 11.6747 0.358612 11.4793 0.155992C11.4303 0.105986 11.3717 0.0663956 11.307 0.0395949C11.2423 0.0127941 11.1729 -0.000664814 11.1029 2.52534e-05L10.123 0.0225464C10.053 0.024258 9.98413 0.0405346 9.92076 0.0703391C9.85739 0.100144 9.80093 0.142822 9.75496 0.195656C9.56895 0.407298 9.42977 0.655868 9.34656 0.925068L9.07765 1.08944C8.80064 1.03965 8.51625 1.04881 8.24303 1.11633C8.1748 1.13293 8.1108 1.16361 8.05511 1.20638C7.99943 1.24916 7.9533 1.30309 7.91966 1.36473L7.44908 2.22423C7.41537 2.28585 7.39496 2.35386 7.38916 2.42386C7.38338 2.49386 7.39233 2.56429 7.41546 2.63061C7.50607 2.897 7.65162 3.14138 7.84269 3.34792L7.8484 3.6649ZM8.68471 2.06759C8.7334 2.0645 8.78224 2.0645 8.83093 2.06759C8.91103 2.12395 9.00588 2.15563 9.10377 2.15874C9.20167 2.16184 9.29833 2.13623 9.38185 2.08507L10.0928 1.65246C10.1764 1.60164 10.2435 1.52757 10.2857 1.43929C10.328 1.35101 10.3436 1.25234 10.3308 1.15532C10.3496 1.1102 10.3721 1.06669 10.398 1.02524L10.8787 1.01414C10.9064 1.05432 10.9308 1.0967 10.9516 1.14087C10.9432 1.23837 10.9633 1.33622 11.0096 1.42247C11.0559 1.50872 11.1262 1.57964 11.2121 1.62658L11.9425 2.02591C12.0284 2.07291 12.1261 2.0939 12.2237 2.08632C12.3213 2.07874 12.4145 2.04291 12.4921 1.98322C12.5404 1.97678 12.5893 1.97453 12.638 1.9765L12.8877 2.38725C12.8667 2.43137 12.8422 2.47374 12.8145 2.51398C12.7259 2.55541 12.6513 2.6217 12.5997 2.70477C12.5482 2.78785 12.5219 2.88412 12.524 2.98187L12.5432 3.81414C12.5455 3.912 12.5762 4.00707 12.6316 4.08777C12.687 4.16847 12.7646 4.2313 12.8551 4.2686C12.8846 4.30753 12.911 4.34866 12.9341 4.39162L12.7032 4.81381C12.6547 4.81807 12.6058 4.81807 12.5573 4.81381C12.4771 4.75779 12.3822 4.72633 12.2844 4.72329C12.1866 4.72025 12.09 4.74574 12.0064 4.79666L11.2955 5.22927C11.2116 5.27992 11.1443 5.35391 11.1018 5.4422C11.0593 5.53049 11.0434 5.62925 11.0561 5.72641C11.0372 5.7715 11.0148 5.815 10.9889 5.8565L10.5082 5.86759C10.4805 5.82736 10.456 5.78499 10.435 5.74087C10.4435 5.64334 10.4234 5.54544 10.3772 5.45913C10.331 5.37282 10.2607 5.30183 10.1748 5.25482L9.44437 4.85515C9.35848 4.8082 9.26077 4.78727 9.16318 4.79491C9.06559 4.80255 8.97233 4.83843 8.89479 4.89818C8.8464 4.9041 8.79764 4.90646 8.74891 4.90524L8.50151 4.49448C8.52271 4.45027 8.54732 4.40779 8.57513 4.36742C8.66369 4.32599 8.7383 4.2597 8.78986 4.17662C8.84142 4.09355 8.86772 3.99727 8.86555 3.89952L8.84639 3.06759C8.84418 2.96968 8.81351 2.87453 8.75811 2.79377C8.70272 2.713 8.625 2.65012 8.53446 2.6128C8.50488 2.57385 8.47847 2.5326 8.45546 2.48944L8.68471 2.06759Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M6.99999 7.83672C9.17511 7.83672 10.9385 6.08242 10.9385 3.91837C10.9385 1.75431 9.17511 0 6.99999 0C4.82484 0 3.06152 1.75431 3.06152 3.91837C3.06152 6.08242 4.82484 7.83672 6.99999 7.83672Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M9.05126 9.46942H4.9487C2.56921 9.46942 0.599976 11.4287 0.599976 13.796C0.599976 14.3674 0.846128 14.8573 1.33844 15.1021C2.0769 15.5103 3.71793 16 6.99998 16C10.2821 16 11.923 15.5103 12.6615 15.1021C13.0717 14.8573 13.4 14.3674 13.4 13.796C13.4 11.347 11.4308 9.46942 9.05126 9.46942Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.90138 0H8.09976C8.9541 0 9.90347 0.962408 9.90347 1.81674V14.2135C9.90347 15.0678 8.9541 16 8.09976 16H1.90138C1.04705 16 0.0965576 15.0678 0.0965576 14.2135V1.81674C0.0965576 0.962408 1.04705 0 1.90138 0ZM8.09976 14.9883C8.52772 14.9883 8.87456 14.6415 8.87456 14.2135V1.81674C8.87456 1.38879 8.52772 1.04195 8.09976 1.04195H1.90138C1.47343 1.04195 1.12659 1.38879 1.12659 1.81674V14.2135C1.12659 14.6415 1.47343 14.9883 1.90138 14.9883H8.09976ZM4.87139 1.55849H6.42099C6.63509 1.55849 6.80839 1.73179 6.80839 1.94589C6.80839 2.15999 6.63509 2.33329 6.42099 2.33329H4.87139C4.6573 2.33329 4.48399 2.15999 4.48399 1.94589C4.48399 1.73179 4.6573 1.55849 4.87139 1.55849ZM5.00059 14.4717C5.4285 14.4717 5.77539 14.1248 5.77539 13.6969C5.77539 13.269 5.4285 12.9221 5.00059 12.9221C4.57268 12.9221 4.22579 13.269 4.22579 13.6969C4.22579 14.1248 4.57268 14.4717 5.00059 14.4717ZM3.96754 1.94589C3.96754 2.15985 3.7941 2.33329 3.58014 2.33329C3.36619 2.33329 3.19274 2.15985 3.19274 1.94589C3.19274 1.73194 3.36619 1.55849 3.58014 1.55849C3.7941 1.55849 3.96754 1.73194 3.96754 1.94589Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_783_9892)">
3
+ <path d="M6.30036 3.95478L6.95053 3.37785L7.125 2.526L7.70202 3.17649L8.55386 3.35096L7.90379 3.92821L7.72932 4.78006L7.15197 4.12966L6.30036 3.95478ZM8.97307 6.16087C8.88768 6.18375 8.81487 6.23962 8.77067 6.31618C8.72647 6.39274 8.71449 6.48373 8.73737 6.56912C8.76025 6.65451 8.81612 6.72732 8.89268 6.77152C8.96924 6.81572 9.06023 6.8277 9.14562 6.80482C9.23101 6.78194 9.30382 6.72607 9.34802 6.64951C9.39223 6.57295 9.4042 6.48197 9.38132 6.39657C9.35844 6.31118 9.30258 6.23837 9.22601 6.19417C9.14945 6.14997 9.05847 6.13799 8.97307 6.16087ZM6.69613 5.39061C6.61074 5.41349 6.53793 5.46935 6.49373 5.54592C6.44953 5.62248 6.43755 5.71346 6.46043 5.79886C6.48331 5.88425 6.53918 5.95705 6.61574 6.00126C6.6923 6.04546 6.78328 6.05744 6.86868 6.03456C6.95407 6.01168 7.02688 5.95581 7.07108 5.87925C7.11528 5.80269 7.12726 5.7117 7.10438 5.62631C7.0815 5.54092 7.02563 5.46811 6.94907 5.42391C6.87251 5.3797 6.78152 5.36773 6.69613 5.39061ZM8.03012 8.10241L8.41534 7.65203L7.83036 7.55652C5.31042 7.18403 4.27519 3.94769 6.11425 2.18222L6.53481 1.76585L5.96074 1.6222C3.07353 0.844982 0.314998 3.66469 1.13628 6.53527C1.32316 7.23899 1.69897 7.8782 2.22301 8.38369C2.74706 8.88918 3.39939 9.24171 4.10939 9.40311C4.81939 9.56451 5.56002 9.52864 6.25109 9.29937C6.94217 9.07011 7.55738 8.65619 8.03012 8.10241Z" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_783_9892">
7
+ <rect width="8" height="8" fill="white" transform="translate(0.101013 2.67157) rotate(-15)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="4" height="14" viewBox="0 0 4 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M2 3.5C2.825 3.5 3.5 2.825 3.5 2C3.5 1.175 2.825 0.5 2 0.5C1.175 0.5 0.5 1.175 0.5 2C0.5 2.825 1.175 3.5 2 3.5Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M2 8.5C2.825 8.5 3.5 7.825 3.5 7C3.5 6.175 2.825 5.5 2 5.5C1.175 5.5 0.5 6.175 0.5 7C0.5 7.825 1.175 8.5 2 8.5Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M2 13.5C2.825 13.5 3.5 12.825 3.5 12C3.5 11.175 2.825 10.5 2 10.5C1.175 10.5 0.5 11.175 0.5 12C0.5 12.825 1.175 13.5 2 13.5Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.3333 15.3334H11C10.0667 15.3334 9.33333 14.6 9.33333 13.6667V10.3334C9.33333 9.40002 10.0667 8.66669 11 8.66669H14.3333C15.2667 8.66669 16 9.40002 16 10.3334V13.6667C16 14.6 15.2667 15.3334 14.3333 15.3334ZM11 10C10.8 10 10.6667 10.1334 10.6667 10.3334V13.6667C10.6667 13.8667 10.8 14 11 14H14.3333C14.5333 14 14.6667 13.8667 14.6667 13.6667V10.3334C14.6667 10.1334 14.5333 10 14.3333 10H11Z" fill="currentColor"/>
3
+ <path d="M5 15.3334H1.66667C0.733333 15.3334 0 14.6 0 13.6667V10.3334C0 9.40002 0.733333 8.66669 1.66667 8.66669H5C5.93333 8.66669 6.66667 9.40002 6.66667 10.3334V13.6667C6.66667 14.6 5.93333 15.3334 5 15.3334Z" fill="currentColor"/>
4
+ <path d="M12.6667 7.33335C12.4667 7.33335 12.3333 7.26669 12.2 7.13335L10.8667 5.80002C10.6 5.53335 10.6 5.13335 10.8667 4.86669C11.1333 4.60002 11.5333 4.60002 11.8 4.86669L11.8667 4.93335C11.4 3.20002 9.80001 2.00002 8.00001 2.00002C5.80001 2.00002 4.00001 3.80002 4.00001 6.00002C4.00001 6.40002 3.73334 6.66669 3.33334 6.66669C2.93334 6.66669 2.66667 6.40002 2.66667 6.00002C2.66667 3.06669 5.06667 0.666687 8.00001 0.666687C10.6667 0.666687 12.8667 2.60002 13.2667 5.13335L13.5333 4.86669C13.8 4.60002 14.2 4.60002 14.4667 4.86669C14.7333 5.13335 14.7333 5.53335 14.4667 5.80002L13.1333 7.13335C13 7.26669 12.8667 7.33335 12.6667 7.33335Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.0318604 16V5.16323L3.06376 7.08443L0.272016 15.5797L9.96808 5.58349V10.5066L0.0318604 16Z" fill="currentColor"/>
3
+ <path d="M6.36583 7.32458L0.0318604 4.23265V0L9.45776 5.01313L6.36583 7.32458Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
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="M16 10.8281C16 8.49597 14.4286 6.45837 12.2126 5.84436C12.0734 2.59814 9.38928 0 6.10938 0C2.7406 0 0 2.7406 0 6.10938C0 7.20728 0.292236 8.27625 0.847168 9.21472L0.0224609 12.1962L3.00403 11.3716C3.8667 11.8817 4.83984 12.1691 5.84424 12.2124C6.45813 14.4285 8.49585 16 10.8281 16C11.759 16 12.6643 15.7521 13.4597 15.281L15.9774 15.9774L15.281 13.4597C15.7521 12.6643 16 11.759 16 10.8281ZM3.15198 10.3579L1.36707 10.8517L1.86084 9.06677L1.74829 8.89075C1.2179 8.06091 0.9375 7.09912 0.9375 6.10938C0.9375 3.25757 3.25757 0.9375 6.10938 0.9375C8.96118 0.9375 11.2812 3.25757 11.2812 6.10938C11.2812 8.96118 8.96118 11.2812 6.10938 11.2812C5.11963 11.2812 4.15796 11.0009 3.328 10.4705L3.15198 10.3579ZM14.6329 14.6329L13.3085 14.2665L13.1316 14.3816C12.4459 14.827 11.6493 15.0625 10.8281 15.0625C8.99512 15.0625 7.3844 13.8773 6.81372 12.1779C9.62061 11.8542 11.8542 9.62061 12.178 6.8136C13.8773 7.3844 15.0625 8.99512 15.0625 10.8281C15.0625 11.6493 14.827 12.4459 14.3816 13.1316L14.2665 13.3085L14.6329 14.6329ZM6.57812 8.46875V9.40625H5.64062V8.46875H6.57812ZM6.7417 5.37952C6.93848 5.19946 7.04687 4.95374 7.04687 4.6875C7.04687 4.17053 6.62634 3.75 6.10937 3.75C5.59241 3.75 5.17187 4.17053 5.17187 4.6875H4.23437C4.23437 3.65356 5.07544 2.8125 6.10937 2.8125C7.14331 2.8125 7.98437 3.65356 7.98437 4.6875C7.98437 5.21228 7.76208 5.71655 7.37463 6.07117L6.57812 6.80017V7.53125H5.64062V6.38733L6.7417 5.37952Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM1.75 7C1.75 9.8995 4.1005 12.25 7 12.25C9.8995 12.25 12.25 9.8995 12.25 7C12.25 4.1005 9.8995 1.75 7 1.75C4.1005 1.75 1.75 4.1005 1.75 7Z" fill="currentColor"/>
3
+ <path d="M1 7C1 6.44772 1.44772 6 2 6H12C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8H2C1.44772 8 1 7.55228 1 7Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
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="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM15.5294 15.0588V15.5294H15.0588V16H16V15.0588H15.5294ZM0 4.70588V4.23529H0.470588V4.70588H0ZM15.5294 4.23534V4.70593H16V4.23534H15.5294ZM0 2.35294V1.88235H0.470588V2.35294H0ZM15.5294 1.88232V2.35291H16V1.88232H15.5294ZM0 3.52941V3.05882H0.470588V3.52941H0ZM15.5294 3.05883V3.52942H16V3.05883H15.5294ZM0 5.88235V5.41176H0.470588V5.88235H0ZM15.5294 5.41174V5.88232H16V5.41174H15.5294ZM0 7.05882V6.58823H0.470588V7.05882H0ZM15.5294 6.58825V7.05884H16V6.58825H15.5294ZM0 11.7647V11.2941H0.470588V11.7647H0ZM15.5294 11.2941V11.7646H16V11.2941H15.5294ZM0 9.41176V8.94118H0.470588V9.41176H0ZM15.5294 8.94115V9.41174H16V8.94115H15.5294ZM0 10.5882V10.1176H0.470588V10.5882H0ZM15.5294 10.1177V10.5883H16V10.1177H15.5294ZM0 12.9412V12.4706H0.470588V12.9412H0ZM15.5294 12.4706V12.9412H16V12.4706H15.5294ZM0 14.1176V13.6471H0.470588V14.1176H0ZM15.5294 13.6471V14.1177H16V13.6471H15.5294ZM0 8.23529V7.76471H0.470588V8.23529H0ZM15.5294 7.76476V8.23535H16V7.76476H15.5294ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 0.941162H16V-1.52588e-05H15.0588V0.470573H15.5294V0.941162Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.9691 10.1187V7.07871C12.9691 4.82065 11.5284 2.85163 9.54476 2.11615C9.56791 2.00001 9.58076 1.88132 9.58076 1.76259C9.5808 0.789693 8.79352 0 7.82359 0C6.85365 0 6.06637 0.789693 6.06637 1.76259C6.06637 1.87873 6.07921 1.99483 6.09979 2.10581C5.41803 2.34839 4.78769 2.7329 4.24999 3.25419C3.23632 4.23484 2.67803 5.55354 2.67803 6.96774V10.1187C2.67803 10.2297 2.58798 10.3226 2.47477 10.3226C1.52542 10.3226 0.714972 11.04 0.627496 11.9536C0.578602 12.462 0.745864 12.9678 1.08804 13.3445C1.42763 13.7187 1.91391 13.9355 2.42072 13.9355H5.52351C5.65214 15.0942 6.63496 16 7.82359 16C9.01221 16 9.99503 15.0942 10.1237 13.9355H13.2265C13.7333 13.9355 14.2195 13.7187 14.5591 13.3445C14.8987 12.9678 15.066 12.462 15.0197 11.9536C14.9322 11.04 14.1192 10.3226 13.1724 10.3226C13.0592 10.3226 12.9691 10.2322 12.9691 10.1187ZM7.82359 1.03224C8.22492 1.03224 8.55167 1.35998 8.55167 1.76255C8.55167 1.79607 8.54651 1.82706 8.54136 1.86059C8.3664 1.83477 8.18887 1.81672 8.01134 1.81155C7.70517 1.8012 7.40416 1.82189 7.10573 1.86318C7.10057 1.82965 7.09542 1.79866 7.09542 1.76513C7.0955 1.35998 7.42225 1.03224 7.82359 1.03224ZM7.82359 14.9677C7.20356 14.9677 6.68386 14.5238 6.56291 13.9355H9.08422C8.96336 14.5239 8.44365 14.9677 7.82359 14.9677ZM13.9957 12.0516C14.0163 12.2736 13.9468 12.4877 13.8002 12.6503C13.6484 12.8129 13.4477 12.9032 13.2265 12.9032H2.42076C2.19949 12.9032 1.99885 12.8129 1.84959 12.6503C1.70037 12.4877 1.6309 12.2735 1.65148 12.0516C1.68748 11.6619 2.05028 11.3548 2.47477 11.3548C3.154 11.3548 3.70713 10.8 3.70713 10.1187V6.96774C3.70713 5.83741 4.15478 4.78195 4.96522 3.99742C5.73962 3.24647 6.74818 2.8387 7.82359 2.8387C7.87506 2.8387 7.92391 2.8387 7.97538 2.84128C10.1597 2.91869 11.94 4.82065 11.94 7.07871V10.1187C11.94 10.8 12.4932 11.3548 13.1724 11.3548C13.5969 11.3548 13.9571 11.6619 13.9957 12.0516Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,11 @@
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_116_6473)">
3
+ <path d="M8 0C3.58853 0 0 3.58853 0 8C0 12.4115 3.58853 16 8 16C12.4115 16 16 12.4108 16 8C16 3.58916 12.4115 0 8 0ZM8 14.7607C4.27266 14.7607 1.23934 11.728 1.23934 8C1.23934 4.27203 4.27266 1.23934 8 1.23934C11.7273 1.23934 14.7607 4.27203 14.7607 8C14.7607 11.728 11.728 14.7607 8 14.7607Z" fill="currentColor"/>
4
+ <path d="M11.0987 7.32457H8.61998V4.84588C8.61998 4.50382 8.34298 4.2262 8.00029 4.2262C7.6576 4.2262 7.3806 4.50382 7.3806 4.84588V7.32457H4.90191C4.55923 7.32457 4.28223 7.6022 4.28223 7.94426C4.28223 8.28632 4.55923 8.56395 4.90191 8.56395H7.3806V11.0426C7.3806 11.3847 7.6576 11.6623 8.00029 11.6623C8.34298 11.6623 8.61998 11.3847 8.61998 11.0426V8.56395H11.0987C11.4414 8.56395 11.7184 8.28632 11.7184 7.94426C11.7184 7.6022 11.4414 7.32457 11.0987 7.32457Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_116_6473">
8
+ <rect width="16" height="16" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7 1C7 0.447715 6.55228 0 6 0C5.44772 0 5 0.447715 5 1V2.49994C5 3.88062 3.88074 4.99988 2.50006 4.99988H1C0.447715 4.99988 0 5.44759 0 5.99988C0 6.55216 0.447715 6.99988 1 6.99988H2.5C3.88071 6.99988 5 8.11917 5 9.49988V11C5 11.5523 5.44772 12 6 12C6.55228 12 7 11.5523 7 11V9.49988C7 8.11917 8.11929 6.99988 9.5 6.99988H11C11.5523 6.99988 12 6.55216 12 5.99988C12 5.44759 11.5523 4.99988 11 4.99988H9.49994C8.11926 4.99988 7 3.88062 7 2.49994V1Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.0002 14C13.8234 14 13.6538 13.9298 13.5288 13.8047C13.4037 13.6797 13.3335 13.5101 13.3335 13.3333V10.6667H10.6668C10.49 10.6667 10.3204 10.5964 10.1954 10.4714C10.0704 10.3464 10.0002 10.1768 10.0002 10C10.0002 9.82319 10.0704 9.65362 10.1954 9.5286C10.3204 9.40357 10.49 9.33333 10.6668 9.33333H14.0002C14.177 9.33333 14.3465 9.40357 14.4716 9.5286C14.5966 9.65362 14.6668 9.82319 14.6668 10V13.3333C14.6668 13.5101 14.5966 13.6797 14.4716 13.8047C14.3465 13.9298 14.177 14 14.0002 14ZM5.3335 6.66667H2.00016C1.82335 6.66667 1.65378 6.59643 1.52876 6.4714C1.40373 6.34638 1.3335 6.17681 1.3335 6V2.66667C1.3335 2.48986 1.40373 2.32029 1.52876 2.19526C1.65378 2.07024 1.82335 2 2.00016 2C2.17697 2 2.34654 2.07024 2.47157 2.19526C2.59659 2.32029 2.66683 2.48986 2.66683 2.66667V5.33333H5.3335C5.51031 5.33333 5.67988 5.40357 5.8049 5.5286C5.92992 5.65362 6.00016 5.82319 6.00016 6C6.00016 6.17681 5.92992 6.34638 5.8049 6.4714C5.67988 6.59643 5.51031 6.66667 5.3335 6.66667Z" fill="currentColor"/>
3
+ <path d="M7.99983 14.6669C6.35964 14.6672 4.77691 14.0628 3.55435 12.9694C2.3318 11.876 1.55522 10.3703 1.37316 8.74022C1.36353 8.65267 1.37124 8.56408 1.39585 8.47951C1.42045 8.39494 1.46147 8.31605 1.51657 8.24733C1.62784 8.10856 1.78968 8.01966 1.9665 8.00022C2.14331 7.98077 2.3206 8.03235 2.45938 8.14362C2.59816 8.2549 2.68705 8.41674 2.7065 8.59355C2.83827 9.79535 3.37446 10.9167 4.22716 11.7738C5.07986 12.6309 6.19847 13.1728 7.39958 13.3108C8.60069 13.4487 9.81303 13.1744 10.8378 12.533C11.8626 11.8915 12.6391 10.9209 13.0398 9.78022C13.0648 9.69253 13.1075 9.61091 13.1653 9.54039C13.2231 9.46987 13.2948 9.41195 13.3758 9.37023C13.4569 9.3285 13.5457 9.30384 13.6366 9.29778C13.7276 9.29172 13.8189 9.30439 13.9048 9.33499C13.9906 9.3656 14.0693 9.4135 14.136 9.47573C14.2026 9.53796 14.2558 9.6132 14.2922 9.69679C14.3286 9.78039 14.3475 9.87056 14.3476 9.96174C14.3478 10.0529 14.3293 10.1432 14.2932 10.2269C13.8324 11.5271 12.9797 12.6524 11.8525 13.4476C10.7254 14.2429 9.37928 14.6689 7.99983 14.6669ZM13.9598 8.00022C13.795 8.00122 13.6357 7.94113 13.5126 7.83156C13.3895 7.72199 13.3113 7.57069 13.2932 7.40688C13.1555 6.21083 12.6172 5.09655 11.7658 4.24529C10.9145 3.39402 9.80012 2.85585 8.60406 2.71832C7.408 2.58078 6.20059 2.85198 5.17823 3.4878C4.15587 4.12361 3.37871 5.08663 2.97316 6.22022C2.94817 6.3079 2.90545 6.38952 2.84766 6.46004C2.78986 6.53056 2.71822 6.58848 2.63715 6.63021C2.55608 6.67193 2.46732 6.69659 2.37634 6.70265C2.28537 6.70871 2.19412 6.69605 2.10823 6.66544C2.02235 6.63483 1.94365 6.58693 1.87702 6.5247C1.81038 6.46247 1.75722 6.38723 1.72081 6.30364C1.68441 6.22004 1.66554 6.12987 1.66537 6.0387C1.6652 5.94752 1.68373 5.85728 1.71983 5.77355C2.22178 4.3496 3.19222 3.1382 4.47232 2.33762C5.75243 1.53704 7.26637 1.19469 8.76639 1.36661C10.2664 1.53853 11.6636 2.21453 12.7294 3.28397C13.7952 4.35341 14.4664 5.75296 14.6332 7.25355C14.6519 7.42846 14.6008 7.60369 14.4909 7.74105C14.381 7.87841 14.2213 7.96677 14.0465 7.98688L13.9598 8.00022Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.6483 2.35282C12.4042 1.10288 10.7824 0.299891 9.03527 0.0688652C7.28812 -0.16216 5.51372 0.191745 3.98832 1.07548C2.46292 1.95921 1.27213 3.32318 0.601357 4.95502C-0.0694201 6.58686 -0.182542 8.395 0.279602 10.0979C0.741747 11.8008 1.75322 13.3029 3.15655 14.3704C4.55988 15.4378 6.2763 16.0107 8.03858 15.9998C9.80085 15.989 11.5101 15.3949 12.9002 14.3102C14.2902 13.2255 15.2831 11.7111 15.7243 10.0026H13.6483C13.2813 11.0382 12.6372 11.953 11.7862 12.6469C10.9352 13.3408 9.91013 13.7871 8.82296 13.9372C7.73579 14.0872 6.62836 13.9351 5.62165 13.4976C4.61494 13.0601 3.74769 12.3539 3.11465 11.4562C2.48161 10.5586 2.10714 9.50398 2.03214 8.40764C1.95715 7.3113 2.18451 6.21541 2.6894 5.2397C3.19429 4.264 3.95728 3.44601 4.89501 2.87511C5.83273 2.30422 6.90912 2.00238 8.00656 2.00257C8.79185 2.00381 9.569 2.16189 10.2925 2.46754C11.0161 2.77319 11.6715 3.22027 12.2203 3.78264L9.00446 7.00695H16V0.00205947L13.6483 2.35282Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1017_453)">
3
+ <path
4
+ d="M11.419 6.47133L9.8903 8L11.419 9.52867C11.6796 9.78933 11.6796 10.2107 11.419 10.4713C11.289 10.6013 11.1183 10.6667 10.9476 10.6667C10.777 10.6667 10.6063 10.6013 10.4763 10.4713L8.94763 8.94267L7.41897 10.4713C7.28897 10.6013 7.1183 10.6667 6.94763 10.6667C6.77697 10.6667 6.6063 10.6013 6.4763 10.4713C6.21563 10.2107 6.21563 9.78933 6.4763 9.52867L8.00497 8L6.4763 6.47133C6.21563 6.21067 6.21563 5.78933 6.4763 5.52867C6.73697 5.268 7.1583 5.268 7.41897 5.52867L8.94763 7.05733L10.4763 5.52867C10.737 5.268 11.1583 5.268 11.419 5.52867C11.6796 5.78933 11.6796 6.21067 11.419 6.47133ZM16.9476 8C16.9476 12.4113 13.359 16 8.94763 16C4.5363 16 0.947632 12.4113 0.947632 8C0.947632 3.58867 4.5363 0 8.94763 0C13.359 0 16.9476 3.58867 16.9476 8ZM15.6143 8C15.6143 4.324 12.6236 1.33333 8.94763 1.33333C5.27163 1.33333 2.28097 4.324 2.28097 8C2.28097 11.676 5.27163 14.6667 8.94763 14.6667C12.6236 14.6667 15.6143 11.676 15.6143 8Z"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1017_453">
9
+ <rect width="16" height="16" fill="currentColor" transform="translate(0.947632)" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1017_456)">
3
+ <path
4
+ d="M5.6143 1.90409e-06H3.6143C2.14097 1.90409e-06 0.947632 1.19334 0.947632 2.66667V4.66667C0.947632 6.14 2.14097 7.33334 3.6143 7.33334H5.6143C7.08763 7.33334 8.28097 6.14 8.28097 4.66667V2.66667C8.28097 1.19334 7.08763 1.90409e-06 5.6143 1.90409e-06ZM14.281 8.66667H12.281C10.8076 8.66667 9.6143 9.86 9.6143 11.3333V13.3333C9.6143 14.8067 10.8076 16 12.281 16H14.281C15.7543 16 16.9476 14.8067 16.9476 13.3333V11.3333C16.9476 9.86 15.7543 8.66667 14.281 8.66667ZM9.6143 3.33334C9.6143 2.62667 9.90763 1.96667 10.4476 1.48L11.8276 0.180002C12.0943 -0.0733314 12.5143 -0.0599981 12.7676 0.206669C13.021 0.473335 13.0076 0.900002 12.741 1.14667L11.3543 2.44667C11.281 2.51334 11.221 2.58667 11.1676 2.66H13.6143C15.0876 2.66 16.281 3.85334 16.281 5.32667V6.66C16.281 7.02667 15.981 7.32667 15.6143 7.32667C15.2476 7.32667 14.9476 7.02667 14.9476 6.66V5.32667C14.9476 4.59334 14.3476 3.99334 13.6143 3.99334H11.1676C11.221 4.06667 11.281 4.13334 11.3476 4.2L12.741 5.50667C13.0076 5.76 13.021 6.18 12.7676 6.44667C12.6343 6.58667 12.461 6.65334 12.281 6.65334C12.1143 6.65334 11.9543 6.59334 11.821 6.47334L10.4343 5.17334C9.90763 4.68667 9.60763 4.02667 9.60763 3.32667L9.6143 3.33334ZM8.28097 12.6667C8.28097 13.3733 7.98763 14.0267 7.44763 14.52L6.06763 15.82C5.94097 15.94 5.7743 16 5.60763 16C5.42763 16 5.2543 15.9267 5.12097 15.7933C4.86763 15.5267 4.88097 15.1 5.14763 14.8533L6.5343 13.5533C6.60763 13.4867 6.66763 13.4133 6.72097 13.34H4.2743C2.80097 13.34 1.60763 12.1467 1.60763 10.6733V9.34C1.60763 8.97334 1.90763 8.67334 2.2743 8.67334C2.64097 8.67334 2.94097 8.97334 2.94097 9.34V10.6733C2.94097 11.4067 3.54097 12.0067 4.2743 12.0067H6.72097C6.66763 11.9333 6.60763 11.8667 6.54097 11.8L5.14763 10.4933C4.88097 10.24 4.86763 9.82 5.12097 9.55334C5.3743 9.28667 5.7943 9.27334 6.06097 9.52667L7.44763 10.8267C7.9743 11.3133 8.2743 11.9733 8.2743 12.6733L8.28097 12.6667Z"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1017_456">
9
+ <rect width="16" height="16" fill="currentColor" transform="translate(0.947632)" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="15" height="11" viewBox="0 0 15 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.4999 5.49976L1.5 5.49976" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M9.00003 9.99995C9.00003 9.99995 13.5 6.48814 13.5 5.49995C13.5 4.51176 9 1 9 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,26 @@
1
+ <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5151_106068)">
3
+ <g filter="url(#filter0_d_5151_106068)">
4
+ <path d="M24.8701 12C24.8701 18.6274 19.4975 24 12.8701 24C6.2427 24 0.870117 18.6274 0.870117 12C0.870117 5.37258 6.2427 0 12.8701 0C19.4975 0 24.8701 5.37258 24.8701 12Z" fill="url(#paint0_linear_5151_106068)"/>
5
+ </g>
6
+ <path d="M11.2033 15.7503L16.2033 12.0003L11.2033 8.25032V15.7503ZM12.87 3.66699C11.2218 3.66699 9.61061 4.15573 8.24021 5.07141C6.8698 5.98709 5.80169 7.28858 5.17096 8.8113C4.54023 10.334 4.3752 12.0096 4.69675 13.6261C5.01829 15.2426 5.81196 16.7274 6.9774 17.8929C8.14284 19.0583 9.6277 19.852 11.2442 20.1735C12.8607 20.4951 14.5363 20.33 16.059 19.6993C17.5817 19.0686 18.8832 18.0005 19.7989 16.6301C20.7145 15.2597 21.2033 13.6485 21.2033 12.0003C21.2033 9.79019 20.3253 7.67057 18.7625 6.10777C17.1997 4.54497 15.0801 3.66699 12.87 3.66699ZM12.87 18.667C11.5514 18.667 10.2625 18.276 9.16616 17.5435C8.06983 16.8109 7.21535 15.7697 6.71076 14.5515C6.20618 13.3334 6.07415 11.9929 6.33139 10.6997C6.58862 9.40652 7.22356 8.21863 8.15591 7.28628C9.08826 6.35393 10.2761 5.71899 11.5694 5.46176C12.8626 5.20452 14.203 5.33654 15.4212 5.84113C16.6394 6.34571 17.6805 7.2002 18.4131 8.29652C19.1456 9.39285 19.5366 10.6818 19.5366 12.0003C19.5344 13.7678 18.8313 15.4622 17.5816 16.7119C16.3318 17.9617 14.6374 18.6648 12.87 18.667Z" fill="currentColor"/>
7
+ </g>
8
+ <defs>
9
+ <filter id="filter0_d_5151_106068" x="-0.129883" y="-3" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
10
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
11
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
12
+ <feOffset dx="1" dy="-1"/>
13
+ <feGaussianBlur stdDeviation="1"/>
14
+ <feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
15
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5151_106068"/>
16
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5151_106068" result="shape"/>
17
+ </filter>
18
+ <linearGradient id="paint0_linear_5151_106068" x1="2.59783" y1="2.34599" x2="24.8701" y2="24" gradientUnits="userSpaceOnUse">
19
+ <stop offset="1" stop-color="#2A6F09"/>
20
+ <stop stop-color="#44B002"/>
21
+ </linearGradient>
22
+ <clipPath id="clip0_5151_106068">
23
+ <rect width="24" height="24" fill="currentColor" transform="translate(0.870117)"/>
24
+ </clipPath>
25
+ </defs>
26
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.51031 6.07875C4.42699 6.06597 4.34293 6.05878 4.25868 6.05725C4.06937 6.0549 3.98884 6.1244 3.9894 6.12431C3.93356 6.16372 3.90649 6.2225 3.90649 6.30362C3.90649 6.35534 3.9159 6.39575 3.93431 6.42412C3.94637 6.443 3.95143 6.45012 3.98781 6.47915L3.98834 6.47947C3.98774 6.47928 4.07124 6.54497 4.25996 6.53359C4.39284 6.52559 4.51043 6.50028 4.51043 6.50028H4.51031V6.07875Z" fill="currentColor"/>
3
+ <path d="M10.0592 5.52728C9.93694 5.52728 9.85038 5.569 9.79347 5.65603C9.73619 5.74363 9.70703 5.86828 9.70703 6.027C9.70703 6.18575 9.73603 6.31156 9.79347 6.39975C9.8505 6.48713 9.9375 6.52969 10.0592 6.52969C10.1809 6.52969 10.2683 6.48678 10.3261 6.39916C10.3841 6.31044 10.4137 6.18531 10.4137 6.02672C10.4137 5.86813 10.3844 5.74353 10.3261 5.65603C10.2685 5.56944 10.1815 5.52728 10.0592 5.52728Z" fill="currentColor"/>
4
+ <path d="M6.33305 5.52026C6.21136 5.52026 6.1248 5.56786 6.06789 5.65489C6.02999 5.71189 6.00577 5.78536 5.99268 5.87348L6.65408 5.87361C6.6478 5.78833 6.63108 5.71223 6.59293 5.65489C6.5353 5.56811 6.45474 5.52026 6.33305 5.52026Z" fill="currentColor"/>
5
+ <path d="M12.5488 2.28872C12.0687 2.28847 11.5938 2.38966 11.1554 2.58563C10.6616 1.70963 9.74441 1.12169 8.68612 1.12169C7.89241 1.12169 7.17397 1.45444 6.65775 1.99182L6.65834 1.99488C6.09394 1.25116 5.19441 0.771973 4.18903 0.771973C2.47228 0.771973 1.07887 2.1595 1.07887 3.87629C1.07844 4.30104 1.1655 4.72132 1.33463 5.11094C0.537375 5.58125 0 6.45141 0 7.45088C0 8.93838 1.1935 10.1495 2.66922 10.1495C2.85375 10.1496 3.03778 10.1304 3.21834 10.0923C3.624 11.1918 4.67641 11.9737 5.91694 11.9737C7.10456 11.9737 8.12463 11.2505 8.56262 10.2217C8.90687 10.3896 9.28494 10.4764 9.66794 10.4757C10.6086 10.4757 11.4347 9.95244 11.8668 9.18222C12.0891 9.22644 12.316 9.24982 12.5488 9.24982C14.4538 9.24982 16 7.69182 16 5.76929C16 3.84675 14.4537 2.28872 12.5488 2.28872ZM3.43916 6.32532C3.43916 6.60632 3.23516 6.78094 2.90709 6.78094C2.746 6.78094 2.59197 6.75566 2.42853 6.66925C2.39797 6.65157 2.36744 6.63582 2.33741 6.61403C2.33416 6.60941 2.32053 6.60391 2.33059 6.57769L2.33034 6.57722L2.39503 6.39732C2.40525 6.3665 2.42878 6.37679 2.43819 6.38247C2.456 6.39335 2.46919 6.40304 2.49228 6.41654C2.68337 6.53729 2.85969 6.53825 2.915 6.53825C3.05728 6.53825 3.14606 6.46238 3.14606 6.36066V6.35513C3.14606 6.2446 3.00966 6.2025 2.85209 6.15407L2.81728 6.14322C2.60094 6.08147 2.36928 5.99213 2.36928 5.71813V5.71253C2.36928 5.45269 2.57919 5.271 2.87959 5.271L2.91234 5.27088C3.08872 5.27088 3.25922 5.32203 3.38269 5.39728C3.39391 5.404 3.40484 5.41697 3.39862 5.43422C3.39275 5.45066 3.33791 5.5975 3.33159 5.61413C3.32 5.64488 3.28816 5.62429 3.28816 5.62429C3.18056 5.56488 3.01241 5.51788 2.87131 5.51788C2.74431 5.51788 2.662 5.5855 2.662 5.67722V5.68269C2.662 5.78972 2.8025 5.83569 2.96537 5.88847L2.99353 5.8976C3.20872 5.96522 3.43919 6.05985 3.43919 6.31972L3.43916 6.32532ZM4.785 6.68688C4.785 6.68688 4.75066 6.69622 4.71975 6.70332C4.64228 6.7201 4.56447 6.73522 4.48634 6.74869C4.39463 6.76416 4.29997 6.77216 4.20472 6.77216C4.11419 6.77216 4.03187 6.76375 3.95897 6.7471C3.88547 6.73066 3.82181 6.70291 3.77025 6.66541C3.71841 6.62785 3.67678 6.57791 3.64913 6.52019C3.62091 6.462 3.60663 6.39085 3.60663 6.30854C3.60663 6.22741 3.62337 6.15569 3.65625 6.09453C3.68881 6.03394 3.73487 5.98163 3.79087 5.94166C3.84672 5.90144 3.912 5.87122 3.98431 5.85169C4.05603 5.83232 4.13306 5.82241 4.21244 5.82241C4.27066 5.82241 4.31944 5.82375 4.35706 5.82654L4.35794 5.82869C4.35794 5.82869 4.43144 5.83535 4.51081 5.84685V5.80763C4.51081 5.68419 4.485 5.62544 4.43437 5.58657C4.38262 5.54688 4.30503 5.5266 4.20509 5.5266C4.20509 5.5266 3.97934 5.52366 3.80119 5.62069C3.79297 5.62557 3.78597 5.62832 3.78597 5.62832C3.78597 5.62832 3.76369 5.63616 3.7555 5.61329L3.68966 5.43691C3.67966 5.41135 3.698 5.40003 3.698 5.40003C3.78147 5.33463 3.98372 5.29535 3.98372 5.29535C4.05075 5.28188 4.16303 5.2725 4.23241 5.2725C4.41759 5.2725 4.56047 5.31541 4.65806 5.40069C4.756 5.48594 4.80562 5.6241 4.80562 5.80991L4.80616 6.65654C4.80619 6.65654 4.80794 6.68104 4.785 6.68688ZM5.40703 6.71672C5.40703 6.73225 5.39597 6.74488 5.38047 6.74488H5.13453C5.11894 6.74488 5.10791 6.73225 5.10791 6.71672V4.73729C5.10791 4.72182 5.11897 4.70929 5.13453 4.70929H5.38047C5.396 4.70929 5.40703 4.72179 5.40703 4.73729V6.71672ZM6.94413 6.07894C6.94159 6.10285 6.91713 6.10303 6.91713 6.10303L5.98819 6.10235C5.99347 6.24347 6.02756 6.34282 6.09578 6.411C6.16281 6.47763 6.26981 6.52013 6.41328 6.52038C6.63375 6.52097 6.72781 6.47641 6.79425 6.4516C6.79425 6.4516 6.81987 6.44241 6.82925 6.46778L6.88981 6.63769C6.90197 6.66635 6.89222 6.67625 6.882 6.68204C6.82438 6.71435 6.68328 6.77403 6.41519 6.77494C6.28466 6.77535 6.17178 6.7566 6.07831 6.72044C5.98425 6.68397 5.90606 6.63225 5.84491 6.56582C5.78434 6.49997 5.73897 6.42063 5.71084 6.33007C5.68281 6.2401 5.66875 6.14072 5.66875 6.03375C5.66875 5.9291 5.68234 5.82916 5.70931 5.738C5.73634 5.64572 5.77887 5.56516 5.83512 5.49697C5.89156 5.42875 5.96331 5.37419 6.04856 5.3341C6.13381 5.29432 6.23906 5.27472 6.35488 5.27472C6.44619 5.27457 6.53659 5.29291 6.62063 5.32866C6.67884 5.35335 6.73703 5.39863 6.797 5.46269C6.83462 5.50328 6.89247 5.59207 6.91575 5.67963L6.91641 5.67982C6.97594 5.88844 6.94513 6.06907 6.94413 6.07894ZM7.71037 6.78047C7.54928 6.78047 7.39525 6.75516 7.23178 6.66875C7.20122 6.65107 7.17059 6.63532 7.14066 6.61353C7.13731 6.60891 7.12366 6.60344 7.13372 6.57722L7.133 6.57672L7.19769 6.39682C7.20716 6.36744 7.23484 6.37822 7.24078 6.382C7.25831 6.39328 7.27181 6.40257 7.29494 6.41603C7.48544 6.53678 7.66222 6.53775 7.71766 6.53775C7.85994 6.53775 7.94872 6.46191 7.94872 6.36019V6.35466C7.94872 6.24413 7.81291 6.20203 7.65475 6.15357L7.62 6.14275C7.40366 6.081 7.172 5.99163 7.172 5.71766V5.71207C7.172 5.45219 7.38188 5.2705 7.68231 5.2705L7.71513 5.27041C7.8915 5.27041 8.062 5.32157 8.18547 5.39682C8.19662 5.4035 8.20762 5.4165 8.20134 5.43375C8.19606 5.45019 8.14112 5.59703 8.13491 5.61366C8.12325 5.64438 8.09141 5.62382 8.09141 5.62382C7.98322 5.56438 7.81566 5.51741 7.67456 5.51741C7.54756 5.51741 7.46525 5.585 7.46525 5.67675V5.68222C7.46525 5.78922 7.60575 5.83522 7.76862 5.888L7.79678 5.89713C8.01256 5.96472 8.24244 6.05938 8.24244 6.31925V6.32479C8.24247 6.60585 8.03844 6.78047 7.71037 6.78047ZM9.33372 5.52654C9.32837 5.55447 9.30262 5.5535 9.30262 5.5535H8.99712L8.78819 6.73579C8.76625 6.858 8.73888 6.96291 8.70669 7.04738C8.67416 7.13266 8.64019 7.19516 8.58616 7.25482C8.53619 7.31016 8.47969 7.351 8.41478 7.37447C8.35028 7.39775 8.2725 7.40975 8.18713 7.40975C8.14638 7.40975 8.10288 7.409 8.05125 7.39682C8.01409 7.38807 7.99381 7.38182 7.96653 7.37207C7.95491 7.36788 7.94566 7.35341 7.95225 7.33507C7.95872 7.31647 8.01334 7.16629 8.02103 7.14657C8.0305 7.12247 8.05453 7.13163 8.05453 7.13163C8.07106 7.13857 8.08253 7.1435 8.10456 7.14788C8.12663 7.15229 8.15647 7.15607 8.17894 7.15607C8.21928 7.15607 8.25606 7.15113 8.28806 7.14035C8.32681 7.12735 8.34925 7.10507 8.37297 7.07479C8.39744 7.0435 8.41731 7.00041 8.43766 6.94291C8.45828 6.88466 8.47694 6.80775 8.49322 6.71428L8.70119 5.5535H8.49622C8.47153 5.55363 8.46359 5.5421 8.466 5.52363L8.50056 5.33079C8.50597 5.30275 8.53166 5.30382 8.53166 5.30382H8.74219L8.75353 5.24094C8.785 5.05475 8.84772 4.91325 8.93991 4.82035C9.03275 4.72675 9.16497 4.67935 9.33272 4.67935C9.37494 4.67888 9.41712 4.68216 9.45878 4.6891C9.48975 4.6945 9.52034 4.70175 9.55044 4.71085C9.55703 4.71344 9.57478 4.72222 9.5675 4.74316L9.49659 4.93788C9.49066 4.95253 9.48659 4.96147 9.45638 4.95222C9.44884 4.95 9.43769 4.94675 9.40894 4.94066C9.38806 4.93629 9.36066 4.93294 9.33275 4.93294C9.29903 4.93247 9.26544 4.93735 9.23322 4.94729C9.20381 4.95694 9.17719 4.9735 9.15556 4.99563C9.13241 5.01885 9.10506 5.05266 9.09053 5.09457C9.0565 5.19279 9.04303 5.29704 9.04156 5.30375H9.33806C9.36287 5.30363 9.37075 5.31516 9.36834 5.33363L9.33372 5.52654ZM10.6871 6.32157C10.6601 6.41269 10.6182 6.49266 10.5624 6.55969C10.5066 6.62672 10.4354 6.68032 10.352 6.71841C10.2685 6.75654 10.1697 6.77591 10.0586 6.77591C9.94747 6.77591 9.84869 6.75654 9.76462 6.71841C9.68112 6.68019 9.61006 6.62669 9.55416 6.55969C9.49831 6.49263 9.45637 6.41269 9.4295 6.32157C9.40275 6.23103 9.38916 6.13225 9.38916 6.027C9.38916 5.92178 9.40275 5.823 9.4295 5.73244C9.45653 5.64132 9.49841 5.56135 9.55416 5.49435C9.61 5.42732 9.68116 5.37347 9.76462 5.33444C9.84869 5.29544 9.94687 5.27563 10.0586 5.27563C10.1703 5.27563 10.2691 5.29532 10.3526 5.33444C10.4366 5.37322 10.5071 5.42735 10.563 5.49435C10.6189 5.56138 10.6607 5.64132 10.6877 5.73244H10.6871C10.7138 5.82297 10.7274 5.92235 10.7274 6.027C10.7274 6.13229 10.7138 6.23103 10.6871 6.32157ZM11.8238 5.34857L11.8244 5.34475C11.8156 5.37004 11.7704 5.49697 11.7544 5.53938C11.7484 5.5555 11.7384 5.56641 11.7206 5.56441C11.7206 5.56441 11.6673 5.55197 11.6188 5.55197C11.5767 5.55197 11.5347 5.55785 11.4942 5.5695C11.451 5.58291 11.4117 5.6065 11.3795 5.63829C11.3458 5.67122 11.3185 5.71713 11.2984 5.77469C11.278 5.83288 11.2678 5.92519 11.2678 6.0181V6.71185C11.2678 6.72738 11.2552 6.73994 11.2397 6.73997H10.9963C10.9808 6.73994 10.9682 6.72738 10.9681 6.71185V5.33019C10.9681 5.31466 10.9793 5.30216 10.9947 5.30216H11.2322C11.2478 5.30216 11.2588 5.31466 11.2588 5.33019L11.259 5.44307C11.2942 5.39485 11.3578 5.35316 11.4153 5.32725C11.4736 5.30113 11.5382 5.2815 11.6546 5.28882C11.7152 5.29257 11.794 5.30919 11.8098 5.31522C11.8101 5.31532 11.8104 5.31544 11.8106 5.31554C11.8234 5.321 11.8293 5.33579 11.8238 5.34857ZM12.9955 6.70338C12.8921 6.74438 12.748 6.77275 12.6075 6.77275C12.37 6.77275 12.1877 6.70457 12.0666 6.56935C11.9455 6.43469 11.8843 6.25069 11.8843 6.02372C11.8843 5.9185 11.8993 5.81913 11.929 5.7286C11.959 5.63747 12.0037 5.5575 12.0625 5.4905C12.1213 5.42344 12.1954 5.36957 12.283 5.33057C12.3706 5.29154 12.4729 5.27185 12.5881 5.27185C12.6657 5.27185 12.7345 5.27654 12.7939 5.2856C12.8574 5.29519 12.9412 5.31791 12.9767 5.33182C12.9833 5.33435 13.0011 5.34316 12.9938 5.36404C12.968 5.43694 12.9503 5.48453 12.9262 5.55097C12.9159 5.57925 12.8945 5.56988 12.8945 5.56988C12.8039 5.54157 12.7175 5.52844 12.6046 5.52844C12.4694 5.52844 12.3671 5.57432 12.3007 5.6625C12.2333 5.75185 12.1958 5.86829 12.1954 6.0235C12.1948 6.194 12.2372 6.31978 12.313 6.398C12.3882 6.47613 12.4941 6.5156 12.6264 6.5156C12.6799 6.5156 12.7307 6.512 12.7763 6.50482C12.8216 6.49775 12.8641 6.48366 12.9039 6.46844C12.9039 6.46844 12.9299 6.45838 12.9388 6.485H12.9391L13.0067 6.67078C13.0153 6.69385 12.9955 6.70338 12.9955 6.70338ZM14.3702 6.07894C14.3677 6.10285 14.3433 6.10303 14.3433 6.10303L13.4143 6.10235C13.4196 6.24347 13.4537 6.34282 13.5219 6.411C13.5889 6.47763 13.6953 6.52013 13.8394 6.52038C14.0598 6.52097 14.1539 6.47641 14.2203 6.4516C14.2203 6.4516 14.246 6.44241 14.2553 6.46778L14.3158 6.63769C14.328 6.66635 14.3183 6.67625 14.308 6.68204C14.2503 6.71435 14.1093 6.77403 13.8412 6.77494C13.7112 6.77535 13.5977 6.7566 13.5043 6.72044C13.4102 6.68397 13.332 6.63225 13.2709 6.56582C13.2097 6.49997 13.1644 6.42063 13.1362 6.33007C13.1084 6.2401 13.0942 6.14072 13.0942 6.03375C13.0942 5.9291 13.1079 5.82916 13.1349 5.738C13.1619 5.64572 13.2043 5.56516 13.2607 5.49697C13.3172 5.42875 13.3889 5.37419 13.4741 5.3341C13.5594 5.29432 13.6646 5.27472 13.7804 5.27472C13.8717 5.27457 13.9622 5.29291 14.0462 5.32866C14.1044 5.35335 14.1626 5.39863 14.2226 5.46269C14.2602 5.50328 14.318 5.59207 14.3413 5.67963L14.3426 5.67982C14.4021 5.88844 14.3713 6.06907 14.3702 6.07894Z" fill="currentColor"/>
6
+ <path d="M13.7587 5.52026C13.637 5.52026 13.5504 5.56786 13.4936 5.65489C13.4556 5.71189 13.4314 5.78536 13.4183 5.87348L14.0797 5.87361C14.0735 5.78833 14.0568 5.71223 14.0186 5.65489C13.961 5.56811 13.8804 5.52026 13.7587 5.52026Z" fill="currentColor"/>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.85401 7.14867L6.30549 5.59951C7.46416 4.05112 7.14823 1.8566 5.59984 0.697929C4.05145 -0.460742 1.85694 -0.14481 0.698265 1.40358C-0.460407 2.95197 -0.144475 5.14648 1.40391 6.30516C2.64771 7.2359 4.35603 7.2359 5.59984 6.30516L7.14901 7.85432C7.34369 8.049 7.65933 8.049 7.85399 7.85432C8.04867 7.65964 8.04867 7.34401 7.85399 7.14934L7.85401 7.14867ZM3.51479 6.00615C2.13865 6.00615 1.02309 4.89059 1.02309 3.51445C1.02309 2.13832 2.13865 1.02275 3.51479 1.02275C4.89092 1.02275 6.00649 2.13832 6.00649 3.51445C6.00502 4.88996 4.89032 6.00469 3.51479 6.00615Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.58881 6.00047H13.9846V7.99607H10.0733C10.3988 8.20068 10.6794 8.38777 10.8762 8.54174C11.3946 8.94907 11.8 9.43237 12.0904 9.99167C12.3788 10.5529 12.525 11.1376 12.525 11.7476C12.525 12.8896 12.0748 13.8855 11.1744 14.7313C10.276 15.5771 9.11839 16 7.70354 16C7.267 16 6.84798 15.9668 6.44849 15.8986C6.22436 15.8694 5.73911 15.733 4.99856 15.4933C4.25604 15.2516 3.79222 15.1308 3.6032 15.1308C3.42973 15.1308 3.27969 15.1873 3.153 15.3004C3.0458 15.4134 2.96784 15.6472 2.91524 16H1.99929V10.7498H2.91524C3.01268 11.2915 3.12572 11.769 3.25434 12.1841C3.38103 12.5972 3.53304 12.9441 3.70453 13.2228C4.03584 13.7724 4.5406 14.2265 5.21879 14.5831C5.89699 14.9417 6.64534 15.1191 7.46581 15.1191C8.39152 15.1191 9.13208 14.8696 9.68555 14.3687C10.2371 13.8698 10.5138 13.2852 10.5138 12.6148C10.5138 12.2465 10.4125 11.8703 10.2098 11.4864C10.0071 11.1025 9.68361 10.742 9.23925 10.4029C8.96055 10.1924 8.15763 9.71491 6.83242 8.97046C6.2088 8.6177 5.65923 8.29226 5.18175 7.99604H0.0153809V6.00044H2.94253C2.89186 5.92052 2.82363 5.84646 2.77882 5.76461C2.49429 5.23843 2.35008 4.65961 2.35008 4.02819C2.35008 2.93684 2.77103 1.99361 3.61489 1.19652C4.45872 0.397562 5.53057 0 6.83239 0C7.66066 0 8.52398 0.196848 9.41851 0.590512C9.60756 0.672362 9.78296 0.738623 9.94469 0.791257C10.1065 0.843891 10.2292 0.86921 10.3111 0.86921C10.5001 0.86921 10.658 0.812678 10.7866 0.701611C10.9133 0.590512 11.0146 0.356652 11.0906 3.11809e-05H12.0066V5.28333H11.0906C11.0224 4.78053 10.9288 4.3284 10.808 3.92694C10.6872 3.52548 10.5371 3.1708 10.3559 2.86288C10.0168 2.27044 9.52178 1.79492 8.87087 1.43827C8.21996 1.08162 7.54956 0.902325 6.85578 0.902325C6.07235 0.902325 5.42534 1.14205 4.91474 1.61949C4.40218 2.09697 4.14494 2.64068 4.14494 3.25068C4.14494 3.70867 4.30671 4.13352 4.63215 4.52522C4.94982 4.91692 5.61439 5.41385 6.58881 6.00047Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M25.1196 3.29319L25.1195 3.2931L24.7593 2.98601C24.7592 2.98598 24.7592 2.98596 24.7592 2.98593C24.0526 2.38383 23.4791 1.89552 22.9797 1.5313L25.1196 3.29319ZM25.1196 3.29319C25.7312 3.81428 25.9446 3.99094 26.1717 4.12041L26.1718 4.12049M25.1196 3.29319L26.1718 4.12049M26.1718 4.12049C26.3897 4.24464 26.6223 4.34103 26.8644 4.40733C27.1167 4.47646 27.3924 4.50242 28.1934 4.56633L28.6654 4.604L28.6654 4.604M26.1718 4.12049L28.6654 4.604M28.6654 4.604C29.5908 4.67782 30.3417 4.73805 30.9524 4.83368L28.6654 4.604ZM35.1662 9.04761L35.1662 9.04754C35.0668 8.41221 34.9193 7.85544 34.6338 7.3366C34.177 6.50644 33.4935 5.82309 32.6634 5.3662C32.1446 5.0807 31.5878 4.93321 30.9524 4.83369L35.1662 9.04761ZM35.1662 9.04761C35.2619 9.65835 35.3221 10.4092 35.3959 11.3346L35.3959 11.3348M35.1662 9.04761L35.3959 11.3348M35.3959 11.3348L35.4337 11.8066L35.3959 11.3348ZM39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258L39.7821 18.4674ZM39.7821 18.4674C40.0726 19.4685 40.0726 20.5314 39.7821 21.5325V18.4674ZM35.8795 13.8284L35.8793 13.828C35.7552 13.61 35.6589 13.3774 35.5927 13.1356M35.8795 13.8284L35.9321 11.7668L35.4337 11.8068C35.4975 12.6066 35.5234 12.8831 35.5927 13.1356M35.8795 13.8284C36.0091 14.0555 36.1857 14.2688 36.7069 14.8804L37.0139 15.2407L37.014 15.2409M35.8795 13.8284L37.014 15.2409M35.5927 13.1356L36.0749 13.0035L35.5928 13.136C35.5928 13.1359 35.5927 13.1357 35.5927 13.1356ZM37.014 15.2409C37.6161 15.9473 38.1044 16.5209 38.4687 17.0204L38.4688 17.0204M37.014 15.2409L38.4688 17.0204M38.4688 17.0204C38.8477 17.5399 39.137 18.0379 39.3019 18.6067L39.3019 18.6068M38.4688 17.0204L39.3019 18.6068M39.3019 18.6068C39.566 19.5168 39.566 20.4831 39.3019 21.3931L39.3019 21.3932M39.3019 18.6068L39.3019 21.3932M39.3019 21.3932C39.137 21.9621 38.8477 22.4601 38.4687 22.9797C38.1044 23.4792 37.6162 24.0525 37.0141 24.7592L36.7069 25.1196C36.1857 25.7311 36.0091 25.9444 35.8795 26.1717L35.8793 26.172M39.3019 21.3932L35.8793 26.172M35.8793 26.172C35.7553 26.3898 35.6591 26.6222 35.5928 26.864M35.8793 26.172L35.3959 28.6653M35.3959 28.6653L35.3959 28.6651L35.4337 28.1933C35.4337 28.1933 35.4337 28.1932 35.4337 28.1932C35.4976 27.3929 35.5234 27.1165 35.5928 26.864M35.3959 28.6653C35.3221 29.5907 35.2619 30.3416 35.1662 30.9523L35.1662 30.9523M35.3959 28.6653L35.1662 30.9523M35.5928 26.864L36.0749 26.9966M35.5928 26.864C35.5928 26.8641 35.5927 26.8643 35.5927 26.8645L36.0749 26.9966M36.0749 26.9966C36.0211 27.1922 35.9977 27.4111 35.9321 28.2331L36.0749 26.9966ZM35.1662 30.9523C35.0668 31.5877 34.9193 32.1445 34.6338 32.6633C34.177 33.4935 33.4935 34.1768 32.6634 34.6337L32.6633 34.6337M35.1662 30.9523L32.6633 34.6337M32.6633 34.6337C32.1446 34.9193 31.5879 35.0667 30.9523 35.1663C30.3416 35.262 29.5908 35.3222 28.6654 35.3959L28.1935 35.4336C27.3923 35.4975 27.1168 35.5235 26.8645 35.5926L26.8644 35.5926M32.6633 34.6337L26.8644 35.5926M26.8644 35.5926C26.6222 35.6589 26.3896 35.7554 26.1719 35.8794L26.1718 35.8795M26.8644 35.5926L26.1718 35.8795M26.1718 35.8795C25.9446 36.0089 25.731 36.1859 25.1196 36.7067L25.1195 36.7068M26.1718 35.8795L25.1195 36.7068M25.1195 36.7068L24.759 37.014C24.0526 37.6161 23.4791 38.1045 22.9797 38.4685L22.9797 38.4686M25.1195 36.7068L22.9797 38.4686M22.9797 38.4686C22.46 38.8475 21.9619 39.1369 21.3932 39.302C20.4832 39.5659 19.5168 39.5659 18.6068 39.302C18.038 39.1369 17.54 38.8475 17.0203 38.4686L17.0202 38.4685M22.9797 38.4686L17.0202 38.4685M17.0202 38.4685C16.5208 38.1045 15.9474 37.6161 15.2409 37.0141L17.0202 38.4685ZM7.3366 34.6337L7.33668 34.6337C7.85539 34.9193 8.41206 35.0667 9.04761 35.1663C9.04763 35.1663 9.04766 35.1663 9.04769 35.1663L8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L7.3366 34.6337ZM7.3366 34.6337C6.5064 34.1768 5.82308 33.4935 5.36622 32.6633L4.92817 32.9044M7.3366 34.6337L4.92817 32.9044M4.92817 32.9044L5.36621 32.6633C5.08068 32.1445 4.93319 31.5877 4.83369 30.9523C4.73804 30.3416 4.67782 29.5909 4.604 28.6655L4.10558 28.7052L4.92817 32.9044ZM2.98593 24.7591L2.98597 24.7591L3.29311 25.1196C3.29312 25.1196 3.29314 25.1196 3.29315 25.1196C3.81423 25.731 3.99096 25.9445 4.12051 26.1719M2.98593 24.7591L3.9251 26.9966L4.40733 26.8645C4.34104 26.6224 4.24465 26.3898 4.12051 26.1719M2.98593 24.7591C2.38384 24.0527 1.89549 23.4792 1.5313 22.9798C1.15235 22.46 0.862961 21.962 0.697979 21.3932L0.217769 21.5325L0.697978 21.3932C0.434007 20.4831 0.434007 19.5168 0.697978 18.6067L0.217769 18.4674L0.697979 18.6067C0.862961 18.0379 1.15235 17.5399 1.53125 17.0204L1.53129 17.0204M2.98593 24.7591L1.53129 17.0204M4.12051 26.1719L3.68605 26.4194L4.12049 26.1719C4.1205 26.1719 4.1205 26.1719 4.12051 26.1719ZM1.53129 17.0204C1.89552 16.5209 2.38387 15.9473 2.98597 15.2408L2.98598 15.2408M1.53129 17.0204L2.98598 15.2408M2.98598 15.2408L3.29313 14.8803C3.29314 14.8803 3.29314 14.8803 3.29315 14.8803C3.81423 14.2689 3.99094 14.0554 4.12046 13.8282L4.12048 13.8281M2.98598 15.2408L4.12048 13.8281M4.12048 13.8281C4.24464 13.6102 4.34102 13.3776 4.40731 13.1356L4.12048 13.8281ZM4.10558 11.2947L4.604 11.3345L4.56633 11.8066L4.06791 11.7668L4.56633 11.8066C4.50243 12.6074 4.47647 12.8833 4.40733 13.1356L4.10558 11.2947ZM4.10558 11.2947L4.604 11.3345C4.67782 10.4092 4.73804 9.65832 4.83369 9.04761L4.83369 9.0476M4.10558 11.2947L4.83369 9.0476M4.83369 9.0476C4.9332 8.41218 5.08068 7.85542 5.36621 7.33662L5.36622 7.3366M4.83369 9.0476L5.36622 7.3366M5.36622 7.3366C5.82308 6.50641 6.50641 5.8231 7.33661 5.36621C7.85542 5.0807 8.41218 4.93321 9.04762 4.83368C9.65834 4.73805 10.4092 4.67782 11.3345 4.604L11.8066 4.56633L11.7668 4.06791M5.36622 7.3366L11.7668 4.06791M11.7668 4.06791L11.8066 4.56633C12.6074 4.50243 12.8833 4.47647 13.1356 4.40733L11.7668 4.06791ZM15.2408 2.98599L15.2408 2.98599L14.8803 3.29316L14.556 2.9126L14.8803 3.29316C14.2689 3.8142 14.0554 3.99097 13.8281 4.12048C13.6102 4.24464 13.3776 4.34102 13.1356 4.40731L15.2408 2.98599ZM15.2408 2.98599C15.9473 2.38388 16.5208 1.89553 17.0203 1.5313L15.2408 2.98599ZM21.3933 0.697978C20.4832 0.434007 19.5167 0.434007 18.6066 0.697978C18.038 0.862958 17.54 1.15235 17.0203 1.53129L21.3933 0.697978ZM21.3933 0.697978C21.9619 0.862958 22.46 1.15235 22.9797 1.53129L21.3933 0.697978ZM28.4163 16.7468L28.4163 16.7468C29.1975 15.9656 29.1976 14.699 28.4163 13.9178C27.6351 13.1366 26.3687 13.1366 25.5874 13.9178L17.6659 21.8392L14.4126 18.5858C13.6314 17.8046 12.3648 17.8046 11.5836 18.5858C10.8023 19.3669 10.8024 20.6335 11.5836 21.4147L11.9371 21.0611L11.5836 21.4147L16.2515 26.0826C17.0327 26.8638 18.2994 26.8638 19.0806 26.0826L28.4163 16.7468Z" fill="url(#paint0_linear_12_1111)" stroke="url(#paint1_linear_12_1111)"/>
3
+ <defs>
4
+ <linearGradient id="paint0_linear_12_1111" x1="15.7976" y1="7.59887e-07" x2="23.9907" y2="39.9999" gradientUnits="userSpaceOnUse">
5
+ <stop stop-color="#079455"/>
6
+ <stop offset="1" stop-color="#00693A"/>
7
+ </linearGradient>
8
+ <linearGradient id="paint1_linear_12_1111" x1="24.9011" y1="39.9999" x2="24.9011" y2="-1.05052e-07" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#079455"/>
10
+ <stop offset="1" stop-color="#00693A"/>
11
+ </linearGradient>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_783_9887)">
3
+ <path d="M4 6.16667C3.08 6.16667 2.33333 5.42 2.33333 4.5C2.33333 3.58 3.08 2.83333 4 2.83333C4.92 2.83333 5.66667 3.58 5.66667 4.5C5.66667 5.42 4.92 6.16667 4 6.16667ZM4 3.5C3.45 3.5 3 3.95 3 4.5C3 5.05 3.45 5.5 4 5.5C4.55 5.5 5 5.05 5 4.5C5 3.95 4.55 3.5 4 3.5ZM4.33333 1.83333V0.833333C4.33333 0.65 4.18333 0.5 4 0.5C3.81667 0.5 3.66667 0.65 3.66667 0.833333V1.83333C3.66667 2.01667 3.81667 2.16667 4 2.16667C4.18333 2.16667 4.33333 2.01667 4.33333 1.83333ZM4.33333 8.16667V7.16667C4.33333 6.98333 4.18333 6.83333 4 6.83333C3.81667 6.83333 3.66667 6.98333 3.66667 7.16667V8.16667C3.66667 8.35 3.81667 8.5 4 8.5C4.18333 8.5 4.33333 8.35 4.33333 8.16667ZM1.66667 4.5C1.66667 4.31667 1.51667 4.16667 1.33333 4.16667H0.333333C0.15 4.16667 0 4.31667 0 4.5C0 4.68333 0.15 4.83333 0.333333 4.83333H1.33333C1.51667 4.83333 1.66667 4.68333 1.66667 4.5ZM8 4.5C8 4.31667 7.85 4.16667 7.66667 4.16667H6.66667C6.48333 4.16667 6.33333 4.31667 6.33333 4.5C6.33333 4.68333 6.48333 4.83333 6.66667 4.83333H7.66667C7.85 4.83333 8 4.68333 8 4.5ZM2.23667 2.73667C2.36667 2.60667 2.36667 2.39667 2.23667 2.26667L1.57 1.6C1.44 1.47 1.23 1.47 1.1 1.6C0.97 1.73 0.97 1.94 1.1 2.07L1.76667 2.73667C1.83333 2.80333 1.91667 2.83333 2.00333 2.83333C2.09 2.83333 2.17333 2.8 2.24 2.73667H2.23667ZM6.90333 7.40333C7.03333 7.27333 7.03333 7.06333 6.90333 6.93333L6.23667 6.26667C6.10667 6.13667 5.89667 6.13667 5.76667 6.26667C5.63667 6.39667 5.63667 6.60667 5.76667 6.73667L6.43333 7.40333C6.5 7.47 6.58333 7.5 6.67 7.5C6.75667 7.5 6.84 7.46667 6.90667 7.40333H6.90333ZM1.57 7.40333L2.23667 6.73667C2.36667 6.60667 2.36667 6.39667 2.23667 6.26667C2.10667 6.13667 1.89667 6.13667 1.76667 6.26667L1.1 6.93333C0.97 7.06333 0.97 7.27333 1.1 7.40333C1.16667 7.47 1.25 7.5 1.33667 7.5C1.42333 7.5 1.50667 7.46667 1.57333 7.40333H1.57ZM6.23667 2.73667L6.90333 2.07C7.03333 1.94 7.03333 1.73 6.90333 1.6C6.77333 1.47 6.56333 1.47 6.43333 1.6L5.76667 2.26667C5.63667 2.39667 5.63667 2.60667 5.76667 2.73667C5.83333 2.80333 5.91667 2.83333 6.00333 2.83333C6.09 2.83333 6.17333 2.8 6.24 2.73667H6.23667Z" fill="currentColor"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_783_9887">
7
+ <rect width="8" height="8" fill="white" transform="translate(0 0.5)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>