pixel-react 1.7.1 → 1.7.3

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 (894) hide show
  1. package/.prettierrc.js +13 -13
  2. package/.storybook/main.ts +26 -26
  3. package/.storybook/preview-head.html +2 -2
  4. package/.storybook/preview.ts +26 -26
  5. package/.yarnrc.yml +1 -1
  6. package/README.md +75 -75
  7. package/index.scss +4 -4
  8. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  9. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  10. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  11. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  12. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  13. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  14. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  15. package/lib/components/AddButton/AddButton.d.ts +5 -0
  16. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  17. package/lib/components/AddButton/index.d.ts +1 -0
  18. package/lib/components/AddButton/types.d.ts +4 -0
  19. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  20. package/lib/components/AddVariables/types.d.ts +3 -67
  21. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  22. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  23. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  24. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  25. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  26. package/lib/components/Button/Button.stories.d.ts +13 -0
  27. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  28. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  29. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  30. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  31. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  32. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  33. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  34. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  35. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  36. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  37. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  38. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  39. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  40. package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
  41. package/lib/components/Drawer/Types.d.ts +4 -0
  42. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  43. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  44. package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
  45. package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +2 -0
  46. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +2 -0
  47. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  48. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  49. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  50. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  68. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  69. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  70. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  71. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  72. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  73. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  74. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  75. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  76. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  77. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  78. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  79. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  80. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  81. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  82. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  83. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
  84. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
  85. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  86. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
  87. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
  88. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  89. package/lib/components/ExcelFile/Types.d.ts +129 -0
  90. package/lib/components/ExcelFile/index.d.ts +1 -0
  91. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  92. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  93. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  94. package/lib/components/Form/Form.stories.d.ts +7 -0
  95. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  96. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  97. package/lib/components/Icon/Icon.stories.d.ts +8 -0
  98. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  99. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  100. package/lib/components/Input/Input.stories.d.ts +9 -0
  101. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  102. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  103. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  104. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  105. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  106. package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
  107. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  108. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  109. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
  110. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  111. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  112. package/lib/components/PhoneInput/PhoneInput.d.ts +0 -1
  113. package/lib/components/PhoneInput/types.d.ts +6 -0
  114. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  115. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  116. package/lib/components/Search/Search.stories.d.ts +6 -0
  117. package/lib/components/Select/Select.stories.d.ts +14 -0
  118. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  119. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
  120. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  121. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  122. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  123. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  124. package/lib/components/Table/Table.stories.d.ts +13 -0
  125. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  126. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  127. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  128. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  129. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  130. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  131. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  132. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  133. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  134. package/lib/index.d.ts +12 -0
  135. package/lib/index.esm.js +109 -69
  136. package/lib/index.esm.js.map +1 -1
  137. package/lib/index.js +109 -69
  138. package/lib/index.js.map +1 -1
  139. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  140. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  141. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  142. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  143. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  144. package/lib/utils/find/findAndInsert.d.ts +7 -0
  145. package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
  146. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  147. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  148. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  149. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  150. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  151. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  152. package/package.json +81 -81
  153. package/rollup.config.mjs +67 -67
  154. package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
  155. package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
  156. package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
  157. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +299 -299
  158. package/src/StyleGuide/ColorPalette/index.ts +1 -1
  159. package/src/StyleGuide/ColorPalette/types.ts +19 -19
  160. package/src/StyleGuide/Typography/Typography.scss +99 -99
  161. package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
  162. package/src/StyleGuide/Typography/Typography.tsx +60 -60
  163. package/src/StyleGuide/Typography/TypographyList.ts +3 -3
  164. package/src/StyleGuide/Typography/types.ts +9 -9
  165. package/src/assets/Themes/BaseTheme.scss +303 -299
  166. package/src/assets/Themes/DarkTheme.scss +309 -305
  167. package/src/assets/Themes/Theme.scss +16 -16
  168. package/src/assets/icons/Arrow.svg +4 -4
  169. package/src/assets/icons/Header_preset.svg +18 -18
  170. package/src/assets/icons/accordion_header_icon.svg +10 -10
  171. package/src/assets/icons/active_license_icon.svg +3 -3
  172. package/src/assets/icons/add_archive.svg +9 -9
  173. package/src/assets/icons/add_file.svg +4 -4
  174. package/src/assets/icons/add_label_icon.svg +3 -3
  175. package/src/assets/icons/add_locator.svg +4 -4
  176. package/src/assets/icons/add_testcase.svg +3 -3
  177. package/src/assets/icons/add_user.svg +9 -9
  178. package/src/assets/icons/add_variable.svg +11 -11
  179. package/src/assets/icons/add_variable_icon.svg +4 -4
  180. package/src/assets/icons/ai_search.svg +9 -9
  181. package/src/assets/icons/alert.svg +17 -17
  182. package/src/assets/icons/all_borders.svg +3 -3
  183. package/src/assets/icons/all_projects.svg +3 -3
  184. package/src/assets/icons/android.svg +9 -9
  185. package/src/assets/icons/android_icon.svg +6 -6
  186. package/src/assets/icons/apk_file_type.svg +4 -4
  187. package/src/assets/icons/app_switch.svg +11 -11
  188. package/src/assets/icons/arrow_down.svg +3 -3
  189. package/src/assets/icons/arrow_right.svg +4 -4
  190. package/src/assets/icons/arrow_up.svg +3 -3
  191. package/src/assets/icons/arrows_down_icon.svg +3 -3
  192. package/src/assets/icons/arrows_right_icon.svg +10 -10
  193. package/src/assets/icons/arrows_top_icon.svg +3 -3
  194. package/src/assets/icons/attachment_icon.svg +3 -3
  195. package/src/assets/icons/authorization.svg +4 -4
  196. package/src/assets/icons/authorization_icon.svg +4 -4
  197. package/src/assets/icons/auto_save_icon.svg +4 -0
  198. package/src/assets/icons/automation_testcase.svg +4 -4
  199. package/src/assets/icons/back_icon.svg +3 -3
  200. package/src/assets/icons/backward.svg +10 -10
  201. package/src/assets/icons/backward_icon.svg +3 -3
  202. package/src/assets/icons/beautify_icon.svg +3 -3
  203. package/src/assets/icons/bold.svg +3 -3
  204. package/src/assets/icons/border_bottom.svg +3 -3
  205. package/src/assets/icons/border_left.svg +3 -3
  206. package/src/assets/icons/border_right.svg +3 -3
  207. package/src/assets/icons/border_top.svg +3 -3
  208. package/src/assets/icons/browser_stack.svg +9 -9
  209. package/src/assets/icons/browserstack_icon.svg +24 -24
  210. package/src/assets/icons/calendar_icon.svg +9 -9
  211. package/src/assets/icons/capture_icon.svg +2 -2
  212. package/src/assets/icons/check_mark.svg +3 -3
  213. package/src/assets/icons/chrome.svg +12 -12
  214. package/src/assets/icons/client_profile.svg +4 -4
  215. package/src/assets/icons/clock_icon.svg +11 -11
  216. package/src/assets/icons/clone_icon.svg +3 -3
  217. package/src/assets/icons/close_pill.svg +3 -3
  218. package/src/assets/icons/cloud_server_host_icon.svg +3 -3
  219. package/src/assets/icons/collapse-icon.svg +6 -6
  220. package/src/assets/icons/compressed_file_type.svg +4 -4
  221. package/src/assets/icons/continue_without_sign.svg +3 -3
  222. package/src/assets/icons/copy-icon.svg +3 -3
  223. package/src/assets/icons/csv_file_type.svg +4 -4
  224. package/src/assets/icons/dashboard_icon.svg +31 -31
  225. package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
  226. package/src/assets/icons/dashboard_web_icon.svg +9 -9
  227. package/src/assets/icons/data_provider.svg +8 -8
  228. package/src/assets/icons/dataset_list.svg +3 -3
  229. package/src/assets/icons/delete.svg +3 -3
  230. package/src/assets/icons/delete_info.svg +17 -17
  231. package/src/assets/icons/depends_on_script.svg +7 -7
  232. package/src/assets/icons/details.svg +3 -3
  233. package/src/assets/icons/double_underline.svg +5 -5
  234. package/src/assets/icons/download-icon.svg +3 -3
  235. package/src/assets/icons/download_file_icon.svg +3 -3
  236. package/src/assets/icons/download_icon.svg +4 -4
  237. package/src/assets/icons/drag_icon.svg +4 -4
  238. package/src/assets/icons/drawer_maximize.svg +6 -6
  239. package/src/assets/icons/dropzone_icon.svg +18 -18
  240. package/src/assets/icons/edge.svg +30 -30
  241. package/src/assets/icons/edit_icon.svg +5 -5
  242. package/src/assets/icons/email_group.svg +3 -3
  243. package/src/assets/icons/error.svg +17 -17
  244. package/src/assets/icons/excel_corner_menu.svg +3 -3
  245. package/src/assets/icons/executions_icon.svg +3 -3
  246. package/src/assets/icons/expand-icon.svg +6 -6
  247. package/src/assets/icons/export.svg +4 -4
  248. package/src/assets/icons/export_collection_icon.svg +13 -13
  249. package/src/assets/icons/eye_closed.svg +3 -3
  250. package/src/assets/icons/eye_open_icon.svg +3 -3
  251. package/src/assets/icons/failed_status_icon.svg +12 -12
  252. package/src/assets/icons/file.svg +11 -11
  253. package/src/assets/icons/fill_color.svg +7 -7
  254. package/src/assets/icons/filter.svg +4 -4
  255. package/src/assets/icons/fire_fox.svg +106 -106
  256. package/src/assets/icons/fireflink_finder_logo.svg +7 -7
  257. package/src/assets/icons/fireflink_icon.svg +4 -4
  258. package/src/assets/icons/fireflink_logo.svg +13 -13
  259. package/src/assets/icons/fireflink_platform.svg +4 -4
  260. package/src/assets/icons/firefox.svg +84 -84
  261. package/src/assets/icons/flaky_status_icon.svg +12 -12
  262. package/src/assets/icons/formate_painter.svg +5 -5
  263. package/src/assets/icons/formula_icon.svg +3 -3
  264. package/src/assets/icons/forward.svg +3 -3
  265. package/src/assets/icons/forward_icon.svg +3 -3
  266. package/src/assets/icons/full_access_icon.svg +4 -4
  267. package/src/assets/icons/gif_file_type.svg +4 -4
  268. package/src/assets/icons/global_variable_icon.svg +4 -4
  269. package/src/assets/icons/hamburger_menu.svg +3 -3
  270. package/src/assets/icons/help_icon.svg +10 -10
  271. package/src/assets/icons/hide_access_icon.svg +3 -3
  272. package/src/assets/icons/hide_icon.svg +9 -9
  273. package/src/assets/icons/history_icon.svg +19 -19
  274. package/src/assets/icons/html_file_type.svg +4 -4
  275. package/src/assets/icons/impactList.svg +6 -6
  276. package/src/assets/icons/import.svg +4 -4
  277. package/src/assets/icons/import_icon.svg +4 -4
  278. package/src/assets/icons/info.svg +17 -17
  279. package/src/assets/icons/info_icon.svg +5 -5
  280. package/src/assets/icons/info_user.svg +5 -5
  281. package/src/assets/icons/internet_explorer.svg +3 -3
  282. package/src/assets/icons/ios_icon.svg +11 -11
  283. package/src/assets/icons/ipk_file_type.svg +4 -4
  284. package/src/assets/icons/italic.svg +3 -3
  285. package/src/assets/icons/jira.svg +3 -3
  286. package/src/assets/icons/jpg_file_type.svg +4 -4
  287. package/src/assets/icons/json_file_type.svg +4 -4
  288. package/src/assets/icons/label_icon.svg +8 -8
  289. package/src/assets/icons/label_plus.svg +3 -3
  290. package/src/assets/icons/labels.svg +8 -8
  291. package/src/assets/icons/lambda_icon.svg +3 -3
  292. package/src/assets/icons/left_arrow_icon.svg +3 -3
  293. package/src/assets/icons/license_expired.svg +20 -20
  294. package/src/assets/icons/license_info.svg +28 -28
  295. package/src/assets/icons/license_warning.svg +10 -10
  296. package/src/assets/icons/link_expired.svg +186 -186
  297. package/src/assets/icons/linked_defects.svg +11 -11
  298. package/src/assets/icons/linux.svg +42 -42
  299. package/src/assets/icons/local.svg +3 -3
  300. package/src/assets/icons/local_variable_icon.svg +4 -4
  301. package/src/assets/icons/logo.svg +17 -17
  302. package/src/assets/icons/mac.svg +9 -9
  303. package/src/assets/icons/machine_disable_icon.svg +18 -18
  304. package/src/assets/icons/machine_enable_icon.svg +10 -10
  305. package/src/assets/icons/manage_apps.svg +3 -3
  306. package/src/assets/icons/manual_locator.svg +7 -7
  307. package/src/assets/icons/manual_testcase.svg +3 -3
  308. package/src/assets/icons/maximize_icon.svg +5 -5
  309. package/src/assets/icons/maximize_script.svg +12 -12
  310. package/src/assets/icons/maximize_tree.svg +3 -3
  311. package/src/assets/icons/minimize_script.svg +5 -5
  312. package/src/assets/icons/mobile_icon.svg +3 -3
  313. package/src/assets/icons/moon_stars.svg +10 -10
  314. package/src/assets/icons/more.svg +10 -10
  315. package/src/assets/icons/move_icon.svg +5 -5
  316. package/src/assets/icons/ms_dynamic.svg +4 -4
  317. package/src/assets/icons/ms_dynamic_icon.svg +15 -15
  318. package/src/assets/icons/nlp_help_icon.svg +3 -3
  319. package/src/assets/icons/no_access_icon.svg +4 -4
  320. package/src/assets/icons/no_border.svg +3 -3
  321. package/src/assets/icons/no_data.svg +13 -13
  322. package/src/assets/icons/no_license_found.svg +22 -22
  323. package/src/assets/icons/notification_icon.svg +3 -3
  324. package/src/assets/icons/opera.svg +9 -9
  325. package/src/assets/icons/parameters.svg +3 -3
  326. package/src/assets/icons/passed_status_icon.svg +12 -12
  327. package/src/assets/icons/pdf_file_type.svg +4 -4
  328. package/src/assets/icons/plus_icon.svg +11 -11
  329. package/src/assets/icons/plus_round_icon.svg +38 -38
  330. package/src/assets/icons/plus_user_icon.svg +3 -3
  331. package/src/assets/icons/png_file_type.svg +4 -4
  332. package/src/assets/icons/pre_post_condition.svg +8 -8
  333. package/src/assets/icons/program_element.svg +8 -8
  334. package/src/assets/icons/project_env_variable_icon.svg +4 -4
  335. package/src/assets/icons/project_status_icon.svg +10 -10
  336. package/src/assets/icons/quick_run_setting_icon.svg +5 -5
  337. package/src/assets/icons/refresh-icon.svg +4 -4
  338. package/src/assets/icons/refresh_icon.svg +4 -4
  339. package/src/assets/icons/reload.svg +3 -3
  340. package/src/assets/icons/remove.svg +11 -11
  341. package/src/assets/icons/remove_user.svg +3 -3
  342. package/src/assets/icons/replace.svg +11 -11
  343. package/src/assets/icons/replace_file.svg +13 -13
  344. package/src/assets/icons/replace_icon.svg +6 -6
  345. package/src/assets/icons/reset-link.svg +52 -52
  346. package/src/assets/icons/right_arrow_icon.svg +4 -4
  347. package/src/assets/icons/rotate_icon.svg +10 -10
  348. package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
  349. package/src/assets/icons/run_icon.svg +26 -26
  350. package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
  351. package/src/assets/icons/safari.svg +93 -93
  352. package/src/assets/icons/safari_icon.svg +12 -12
  353. package/src/assets/icons/sales_force.svg +7 -7
  354. package/src/assets/icons/salesforce_icon.svg +14 -14
  355. package/src/assets/icons/sample_template_first.svg +29 -29
  356. package/src/assets/icons/sample_template_second.svg +47 -47
  357. package/src/assets/icons/sause_lab.svg +3 -3
  358. package/src/assets/icons/save_as_step.svg +3 -3
  359. package/src/assets/icons/search.svg +3 -3
  360. package/src/assets/icons/send_step.svg +4 -4
  361. package/src/assets/icons/skipped_status_icon.svg +12 -12
  362. package/src/assets/icons/standard_template.svg +30 -30
  363. package/src/assets/icons/strike_through.svg +3 -3
  364. package/src/assets/icons/success.svg +17 -17
  365. package/src/assets/icons/suites_icon.svg +3 -3
  366. package/src/assets/icons/sun_icon.svg +10 -10
  367. package/src/assets/icons/swipe_icon.svg +9 -9
  368. package/src/assets/icons/switch_license_icon.svg +123 -123
  369. package/src/assets/icons/system_warning.svg +61 -61
  370. package/src/assets/icons/tap_icon.svg +3 -3
  371. package/src/assets/icons/test_data.svg +5 -5
  372. package/src/assets/icons/test_data_set.svg +7 -7
  373. package/src/assets/icons/text_align_center.svg +3 -3
  374. package/src/assets/icons/text_align_left.svg +3 -3
  375. package/src/assets/icons/text_align_right.svg +3 -3
  376. package/src/assets/icons/text_color.svg +3 -3
  377. package/src/assets/icons/tick_icon.svg +4 -4
  378. package/src/assets/icons/toast_close.svg +3 -3
  379. package/src/assets/icons/txt_file_type.svg +4 -4
  380. package/src/assets/icons/underline.svg +4 -4
  381. package/src/assets/icons/update_icon.svg +3 -3
  382. package/src/assets/icons/user_password_lock.svg +220 -220
  383. package/src/assets/icons/user_profile.svg +3 -3
  384. package/src/assets/icons/user_warning.svg +235 -235
  385. package/src/assets/icons/user_with_system.svg +637 -637
  386. package/src/assets/icons/variable_icon.svg +4 -4
  387. package/src/assets/icons/variable_set.svg +5 -5
  388. package/src/assets/icons/vertical_separator.svg +3 -3
  389. package/src/assets/icons/view_access_icon.svg +4 -4
  390. package/src/assets/icons/view_icon.svg +3 -3
  391. package/src/assets/icons/warning.svg +17 -17
  392. package/src/assets/icons/warning_status_icon.svg +12 -12
  393. package/src/assets/icons/web&mobile_icon.svg +3 -3
  394. package/src/assets/icons/web_icon.svg +3 -3
  395. package/src/assets/icons/web_mobile_icon.svg +29 -29
  396. package/src/assets/icons/web_services_icon.svg +30 -30
  397. package/src/assets/icons/window_maximize.svg +3 -3
  398. package/src/assets/icons/window_minimize.svg +3 -3
  399. package/src/assets/icons/window_restore.svg +4 -4
  400. package/src/assets/icons/windows.svg +10 -10
  401. package/src/assets/icons/wrong_mark.svg +3 -3
  402. package/src/assets/icons/wswb_delete_icon.svg +3 -3
  403. package/src/assets/icons/wswb_plus_icon.svg +4 -4
  404. package/src/assets/icons/xls_file_type.svg +4 -4
  405. package/src/assets/icons/xlsx_file_type.svg +4 -4
  406. package/src/assets/icons/xml_file_type.svg +4 -4
  407. package/src/assets/styles/_colors.scss +150 -151
  408. package/src/assets/styles/_fonts.scss +45 -45
  409. package/src/assets/styles/_mixins.scss +21 -21
  410. package/src/assets/utils/functionUtils.ts +96 -96
  411. package/src/components/Accordion/Accordion.scss +46 -46
  412. package/src/components/Accordion/Accordion.stories.tsx +35 -35
  413. package/src/components/Accordion/Accordion.tsx +68 -68
  414. package/src/components/Accordion/index.ts +1 -1
  415. package/src/components/Accordion/types.ts +40 -40
  416. package/src/components/AddResourceButton/AddButton.scss +36 -36
  417. package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
  418. package/src/components/AddResourceButton/AddButton.tsx +121 -121
  419. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
  420. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
  421. package/src/components/AddResourceButton/index.ts +1 -1
  422. package/src/components/AddResourceButton/type.ts +92 -92
  423. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
  424. package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
  425. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
  426. package/src/components/AllProjectsDropdown/types.ts +12 -12
  427. package/src/components/AppHeader/AppHeader.scss +214 -214
  428. package/src/components/AppHeader/AppHeader.stories.tsx +553 -553
  429. package/src/components/AppHeader/AppHeader.tsx +197 -197
  430. package/src/components/AppHeader/index.ts +1 -1
  431. package/src/components/AppHeader/types.ts +54 -54
  432. package/src/components/AttachImage/AttachImage.scss +76 -76
  433. package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
  434. package/src/components/AttachImage/AttachImage.tsx +60 -60
  435. package/src/components/AttachImage/index.ts +2 -2
  436. package/src/components/AttachImage/types.ts +26 -26
  437. package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
  438. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
  439. package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
  440. package/src/components/AttachmentButton/types.ts +13 -13
  441. package/src/components/Avatar/Avatar.scss +27 -27
  442. package/src/components/Avatar/Avatar.stories.tsx +76 -76
  443. package/src/components/Avatar/Avatar.tsx +41 -41
  444. package/src/components/Avatar/types.ts +35 -35
  445. package/src/components/Button/Button.scss +155 -155
  446. package/src/components/Button/Button.stories.tsx +81 -81
  447. package/src/components/Button/Button.tsx +73 -73
  448. package/src/components/Button/index.ts +1 -1
  449. package/src/components/Button/types.ts +69 -69
  450. package/src/components/Charts/BarChart/BarChart.scss +69 -69
  451. package/src/components/Charts/BarChart/BarChart.stories.tsx +67 -67
  452. package/src/components/Charts/BarChart/BarChart.tsx +342 -342
  453. package/src/components/Charts/BarChart/types.ts +12 -12
  454. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +164 -164
  455. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +55 -55
  456. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +531 -531
  457. package/src/components/Charts/DashboardDonutChart/types.ts +58 -58
  458. package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
  459. package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
  460. package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
  461. package/src/components/Charts/DonutChart/index.ts +1 -1
  462. package/src/components/Charts/DonutChart/type.ts +23 -23
  463. package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
  464. package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
  465. package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
  466. package/src/components/Charts/IconRadialChart/types.ts +28 -28
  467. package/src/components/Charts/LineChart/LineChart.scss +92 -92
  468. package/src/components/Charts/LineChart/LineChart.stories.tsx +259 -259
  469. package/src/components/Charts/LineChart/LineChart.tsx +295 -295
  470. package/src/components/Charts/LineChart/index.ts +1 -1
  471. package/src/components/Charts/LineChart/types.ts +30 -30
  472. package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +86 -86
  473. package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +116 -116
  474. package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +292 -292
  475. package/src/components/Charts/MultiRadialChart/index.ts +1 -1
  476. package/src/components/Charts/MultiRadialChart/types.ts +25 -25
  477. package/src/components/Charts/PieChart/PieChart.scss +41 -41
  478. package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
  479. package/src/components/Charts/PieChart/PieChart.tsx +192 -192
  480. package/src/components/Charts/PieChart/index.ts +1 -1
  481. package/src/components/Charts/PieChart/types.ts +28 -28
  482. package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
  483. package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
  484. package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
  485. package/src/components/Charts/RadialChart/index.ts +1 -1
  486. package/src/components/Charts/RadialChart/types.ts +32 -32
  487. package/src/components/Checkbox/Checkbox.scss +148 -148
  488. package/src/components/Checkbox/Checkbox.stories.tsx +78 -78
  489. package/src/components/Checkbox/Checkbox.tsx +57 -57
  490. package/src/components/Checkbox/types.ts +34 -34
  491. package/src/components/Chip/Chip.scss +95 -95
  492. package/src/components/Chip/Chip.stories.tsx +125 -125
  493. package/src/components/Chip/Chip.tsx +39 -39
  494. package/src/components/Chip/index.ts +1 -1
  495. package/src/components/Chip/types.ts +19 -19
  496. package/src/components/Comment/Comments.scss +166 -166
  497. package/src/components/Comment/Comments.stories.tsx +212 -212
  498. package/src/components/Comment/Comments.tsx +51 -51
  499. package/src/components/Comment/comment/Comment.tsx +206 -206
  500. package/src/components/Comment/comment/useNode.ts +51 -51
  501. package/src/components/Comment/index.ts +1 -1
  502. package/src/components/Comment/type.ts +36 -36
  503. package/src/components/ConditionalDropdown/ConditionalDropdown.scss +17 -17
  504. package/src/components/ConditionalDropdown/ConditionalDropdown.stories.tsx +147 -147
  505. package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +158 -159
  506. package/src/components/ConditionalDropdown/OptionsDropdown.tsx +43 -43
  507. package/src/components/ConditionalDropdown/index.ts +1 -1
  508. package/src/components/ConditionalDropdown/types.ts +159 -159
  509. package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +128 -128
  510. package/src/components/ConnectingBranch/ConnectingBranch.scss +233 -233
  511. package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +21 -21
  512. package/src/components/ConnectingBranch/ConnectingBranch.tsx +182 -182
  513. package/src/components/ConnectingBranch/data.ts +137 -137
  514. package/src/components/ConnectingBranch/index.ts +1 -1
  515. package/src/components/ConnectingBranch/types.ts +21 -21
  516. package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
  517. package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
  518. package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
  519. package/src/components/CreateVariable/index.ts +1 -1
  520. package/src/components/CreateVariable/types.ts +58 -58
  521. package/src/components/DatePicker/DatePicker.scss +413 -413
  522. package/src/components/DatePicker/DatePicker.stories.tsx +193 -193
  523. package/src/components/DatePicker/DatePicker.tsx +502 -502
  524. package/src/components/DatePicker/Timepicker.tsx +372 -372
  525. package/src/components/DatePicker/types.ts +105 -105
  526. package/src/components/DownloadClient/DownloadClient.scss +67 -67
  527. package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
  528. package/src/components/DownloadClient/DownloadClient.tsx +90 -90
  529. package/src/components/DownloadClient/type.ts +33 -33
  530. package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
  531. package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
  532. package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
  533. package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
  534. package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
  535. package/src/components/Drawer/Drawer.scss +139 -139
  536. package/src/components/Drawer/Drawer.stories.tsx +156 -155
  537. package/src/components/Drawer/Drawer.tsx +233 -232
  538. package/src/components/Drawer/Types.ts +161 -157
  539. package/src/components/EditTextField/EditTextField.scss +97 -97
  540. package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
  541. package/src/components/EditTextField/EditTextField.tsx +175 -175
  542. package/src/components/EditTextField/index.ts +1 -1
  543. package/src/components/EditTextField/types.ts +55 -55
  544. package/src/components/Editor/Editor.scss +56 -56
  545. package/src/components/Editor/Editor.stories.tsx +54 -54
  546. package/src/components/Editor/Editor.tsx +250 -250
  547. package/src/components/Editor/VariableDropdown.scss +28 -27
  548. package/src/components/Editor/VariableDropdown.tsx +57 -57
  549. package/src/components/Editor/constants.ts +180 -180
  550. package/src/components/Editor/types.ts +89 -89
  551. package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
  552. package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
  553. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
  554. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +42 -42
  555. package/src/components/Excel/ExcelFile/ExcelFile.scss +56 -69
  556. package/src/components/Excel/ExcelFile/ExcelFile.tsx +512 -507
  557. package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +143 -143
  558. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +206 -206
  559. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +176 -168
  560. package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
  561. package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +55 -56
  562. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +37 -37
  563. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +85 -85
  564. package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +56 -56
  565. package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +5 -5
  566. package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
  567. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +161 -154
  568. package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
  569. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +162 -146
  570. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +485 -479
  571. package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
  572. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +561 -561
  573. package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
  574. package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
  575. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
  576. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
  577. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
  578. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
  579. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
  580. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
  581. package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
  582. package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
  583. package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
  584. package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
  585. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +700 -700
  586. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +886 -886
  587. package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
  588. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +266 -266
  589. package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
  590. package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
  591. package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
  592. package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
  593. package/src/components/Excel/ExcelFile.stories.tsx +168 -167
  594. package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
  595. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +425 -414
  596. package/src/components/Excel/Types.ts +196 -196
  597. package/src/components/Excel/dataConversion.ts +196 -196
  598. package/src/components/Excel/index.ts +1 -1
  599. package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
  600. package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
  601. package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
  602. package/src/components/ExpandableMenu/index.ts +1 -1
  603. package/src/components/ExpandableMenu/types.ts +34 -34
  604. package/src/components/FF_Captcha/Recaptcha.scss +10 -10
  605. package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
  606. package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
  607. package/src/components/FF_Captcha/types.ts +22 -22
  608. package/src/components/FieldSet/FieldSet.scss +10 -10
  609. package/src/components/FieldSet/FieldSet.stories.tsx +104 -104
  610. package/src/components/FieldSet/FieldSet.tsx +29 -29
  611. package/src/components/FieldSet/index.ts +1 -1
  612. package/src/components/FieldSet/types.ts +8 -8
  613. package/src/components/FileDropzone/Dropzone.tsx +105 -105
  614. package/src/components/FileDropzone/FileDropzone.scss +162 -162
  615. package/src/components/FileDropzone/FileDropzone.stories.tsx +205 -205
  616. package/src/components/FileDropzone/FileDropzone.tsx +164 -164
  617. package/src/components/FileDropzone/FilePreview.tsx +77 -77
  618. package/src/components/FileDropzone/RadioFilePreview.tsx +76 -76
  619. package/src/components/FileDropzone/index.ts +1 -1
  620. package/src/components/FileDropzone/types.ts +198 -198
  621. package/src/components/Form/Form.d.ts +2 -2
  622. package/src/components/Form/Form.scss +158 -158
  623. package/src/components/Form/Form.stories.tsx +508 -508
  624. package/src/components/Form/Form.ts +2 -2
  625. package/src/components/Form/Forms.tsx +39 -39
  626. package/src/components/Form/validation.json +29 -29
  627. package/src/components/GridLayout/GridLayout.scss +69 -69
  628. package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
  629. package/src/components/GridLayout/GridLayout.tsx +39 -39
  630. package/src/components/GridLayout/GridLayoutStory.scss +25 -25
  631. package/src/components/GridLayout/types.ts +84 -84
  632. package/src/components/HighlightText/HighlightText.scss +3 -3
  633. package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
  634. package/src/components/HighlightText/HighlightText.tsx +33 -33
  635. package/src/components/HighlightText/index.ts +1 -1
  636. package/src/components/HighlightText/types.ts +4 -4
  637. package/src/components/Icon/Icon.stories.tsx +65 -65
  638. package/src/components/Icon/Icon.tsx +88 -88
  639. package/src/components/Icon/Icons.scss +50 -50
  640. package/src/components/Icon/iconList.ts +503 -503
  641. package/src/components/Icon/index.ts +1 -1
  642. package/src/components/Icon/types.ts +14 -14
  643. package/src/components/IconButton/IconButton.scss +54 -54
  644. package/src/components/IconButton/IconButton.stories.tsx +34 -34
  645. package/src/components/IconButton/IconButton.tsx +32 -32
  646. package/src/components/IconButton/index.ts +1 -1
  647. package/src/components/IconButton/types.ts +5 -5
  648. package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -64
  649. package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
  650. package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
  651. package/src/components/IconRadioGroup/index.ts +1 -1
  652. package/src/components/IconRadioGroup/type.ts +49 -49
  653. package/src/components/Input/Input.scss +170 -170
  654. package/src/components/Input/Input.stories.tsx +141 -141
  655. package/src/components/Input/Input.tsx +120 -120
  656. package/src/components/Input/types.ts +85 -85
  657. package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -220
  658. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
  659. package/src/components/InputWithDropdown/InputWithDropdown.tsx +129 -129
  660. package/src/components/InputWithDropdown/index.ts +1 -1
  661. package/src/components/InputWithDropdown/types.ts +113 -113
  662. package/src/components/LabelEditTextField/LabelEditTextField.scss +86 -86
  663. package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +192 -192
  664. package/src/components/LabelEditTextField/LabelEditTextField.tsx +239 -239
  665. package/src/components/LabelEditTextField/index.ts +1 -1
  666. package/src/components/LabelEditTextField/types.ts +47 -47
  667. package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
  668. package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
  669. package/src/components/LazyLoad/LazyLoad.ts +2 -2
  670. package/src/components/LazyLoad/LazyLoading.tsx +19 -19
  671. package/src/components/LazyLoad/index.ts +1 -1
  672. package/src/components/MachineInputField/MachineInputField.scss +55 -55
  673. package/src/components/MachineInputField/MachineInputField.stories.tsx +33 -33
  674. package/src/components/MachineInputField/MachineInputField.tsx +87 -87
  675. package/src/components/MachineInputField/index.ts +1 -1
  676. package/src/components/MachineInputField/types.ts +15 -15
  677. package/src/components/MenuOption/MenuOption.scss +97 -97
  678. package/src/components/MenuOption/MenuOption.stories.tsx +213 -213
  679. package/src/components/MenuOption/MenuOption.tsx +215 -215
  680. package/src/components/MenuOption/types.ts +231 -231
  681. package/src/components/MiniModal/MiniModal.scss +169 -169
  682. package/src/components/MiniModal/MiniModal.stories.tsx +740 -740
  683. package/src/components/MiniModal/MiniModal.tsx +346 -346
  684. package/src/components/MiniModal/index.ts +1 -1
  685. package/src/components/MiniModal/types.ts +124 -124
  686. package/src/components/Modal/Modal.stories.tsx +70 -70
  687. package/src/components/Modal/Modal.tsx +100 -100
  688. package/src/components/Modal/index.tsx +1 -1
  689. package/src/components/Modal/modal.scss +51 -51
  690. package/src/components/Modal/types.ts +43 -43
  691. package/src/components/ModulesChip/ModuleChip.scss +33 -33
  692. package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
  693. package/src/components/ModulesChip/ModuleChip.tsx +28 -28
  694. package/src/components/ModulesChip/types.ts +14 -14
  695. package/src/components/MultiSelect/Dropdown.scss +77 -77
  696. package/src/components/MultiSelect/Dropdown.tsx +169 -169
  697. package/src/components/MultiSelect/MultiSelect.scss +247 -247
  698. package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -290
  699. package/src/components/MultiSelect/MultiSelect.tsx +486 -486
  700. package/src/components/MultiSelect/MultiSelectTypes.ts +49 -49
  701. package/src/components/MultiSelect/dropdownTypes.ts +21 -21
  702. package/src/components/MultiSelect/index.ts +1 -1
  703. package/src/components/NLPInput/NLPInput.scss +302 -302
  704. package/src/components/NLPInput/NlpInput.stories.tsx +70 -70
  705. package/src/components/NLPInput/NlpInput.tsx +410 -410
  706. package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +62 -62
  707. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +134 -134
  708. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +320 -320
  709. package/src/components/NLPInput/index.ts +1 -1
  710. package/src/components/NLPInput/sampleData.ts +161 -161
  711. package/src/components/NLPInput/types.tsx +136 -136
  712. package/src/components/Paper/Paper.scss +13 -13
  713. package/src/components/Paper/Paper.stories.tsx +77 -77
  714. package/src/components/Paper/Paper.tsx +14 -14
  715. package/src/components/Paper/types.ts +19 -19
  716. package/src/components/PhoneInput/PhoneInput.d.ts +3 -3
  717. package/src/components/PhoneInput/PhoneInput.stories.tsx +70 -95
  718. package/src/components/PhoneInput/PhoneInput.tsx +98 -90
  719. package/src/components/PhoneInput/index.ts +1 -1
  720. package/src/components/PhoneInput/phoneInput.scss +901 -3
  721. package/src/components/PhoneInput/types.ts +16 -10
  722. package/src/components/PopUpModal/PopUpModal.scss +36 -36
  723. package/src/components/PopUpModal/PopUpModal.stories.tsx +67 -67
  724. package/src/components/PopUpModal/PopUpModal.tsx +87 -87
  725. package/src/components/PopUpModal/types.ts +16 -16
  726. package/src/components/ProgressBar/ProgressBar.scss +46 -46
  727. package/src/components/ProgressBar/ProgressBar.stories.tsx +22 -22
  728. package/src/components/ProgressBar/ProgressBar.tsx +61 -61
  729. package/src/components/ProgressBar/types.ts +12 -12
  730. package/src/components/RadioButton/RadioButton.scss +106 -106
  731. package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
  732. package/src/components/RadioButton/RadioButton.tsx +41 -41
  733. package/src/components/RadioButton/index.ts +1 -1
  734. package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
  735. package/src/components/RadioGroup/RadioGroup.scss +11 -11
  736. package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
  737. package/src/components/RadioGroup/RadioGroup.tsx +49 -49
  738. package/src/components/RadioGroup/index.ts +1 -1
  739. package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
  740. package/src/components/Search/Search.scss +103 -103
  741. package/src/components/Search/Search.stories.tsx +45 -45
  742. package/src/components/Search/Search.tsx +138 -138
  743. package/src/components/Search/index.ts +1 -1
  744. package/src/components/Search/types.ts +19 -19
  745. package/src/components/Select/Select.scss +213 -213
  746. package/src/components/Select/Select.stories.tsx +355 -355
  747. package/src/components/Select/Select.tsx +278 -278
  748. package/src/components/Select/components/Dropdown.scss +61 -61
  749. package/src/components/Select/components/Dropdown.tsx +140 -140
  750. package/src/components/Select/components/types.ts +24 -24
  751. package/src/components/Select/index.ts +1 -1
  752. package/src/components/Select/types.ts +134 -134
  753. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
  754. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +67 -67
  755. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +184 -184
  756. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -51
  757. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -107
  758. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -5
  759. package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +190 -190
  760. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +324 -324
  761. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +32 -32
  762. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
  763. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +76 -76
  764. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +24 -24
  765. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -31
  766. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -85
  767. package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -4
  768. package/src/components/SequentialConnectingBranch/index.ts +1 -1
  769. package/src/components/SequentialConnectingBranch/types.ts +62 -62
  770. package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
  771. package/src/components/StateDropdown/StateDropdown.tsx +245 -245
  772. package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
  773. package/src/components/StatusButton/StatusButton.scss +90 -90
  774. package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
  775. package/src/components/StatusButton/StatusButton.tsx +46 -46
  776. package/src/components/StatusButton/index.ts +1 -1
  777. package/src/components/StatusButton/types.ts +45 -45
  778. package/src/components/StatusCard/StatusCard.scss +94 -94
  779. package/src/components/StatusCard/StatusCard.stories.tsx +58 -58
  780. package/src/components/StatusCard/StatusCard.tsx +49 -49
  781. package/src/components/StatusCard/index.ts +1 -1
  782. package/src/components/StatusCard/types.ts +10 -10
  783. package/src/components/Table/Table.scss +118 -118
  784. package/src/components/Table/Table.stories.tsx +373 -373
  785. package/src/components/Table/Table.tsx +178 -178
  786. package/src/components/Table/Types.ts +124 -124
  787. package/src/components/Table/index.ts +1 -1
  788. package/src/components/TableTree/Components/TableBody.tsx +37 -37
  789. package/src/components/TableTree/Components/TableCell.tsx +59 -59
  790. package/src/components/TableTree/Components/TableHead.tsx +39 -39
  791. package/src/components/TableTree/Components/TableRow.tsx +37 -37
  792. package/src/components/TableTree/TableTree.scss +205 -205
  793. package/src/components/TableTree/TableTree.stories.tsx +176 -176
  794. package/src/components/TableTree/TableTree.tsx +91 -91
  795. package/src/components/TableTree/TableTreeStories.scss +22 -22
  796. package/src/components/TableTree/Utils/getAllChildIds.ts +14 -14
  797. package/src/components/TableTree/data.ts +322 -367
  798. package/src/components/TableTree/index.ts +1 -1
  799. package/src/components/TableTree/types.ts +68 -68
  800. package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -54
  801. package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -94
  802. package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -174
  803. package/src/components/TableWithAccordion/data.ts +36 -36
  804. package/src/components/TableWithAccordion/types.ts +69 -69
  805. package/src/components/Tabs/Tabs.scss +132 -132
  806. package/src/components/Tabs/Tabs.stories.tsx +153 -153
  807. package/src/components/Tabs/Tabs.tsx +71 -71
  808. package/src/components/Tabs/index.ts +1 -1
  809. package/src/components/Tabs/types.ts +48 -48
  810. package/src/components/TextArea/Textarea.scss +144 -144
  811. package/src/components/TextArea/Textarea.stories.tsx +92 -92
  812. package/src/components/TextArea/Textarea.tsx +84 -84
  813. package/src/components/TextArea/Types.ts +82 -82
  814. package/src/components/TextArea/index.tsx +1 -1
  815. package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
  816. package/src/components/ThemeProvider/index.ts +1 -1
  817. package/src/components/ThemeProvider/types.ts +14 -14
  818. package/src/components/Toast/Toast.scss +121 -121
  819. package/src/components/Toast/Toast.stories.tsx +144 -144
  820. package/src/components/Toast/Toast.tsx +117 -117
  821. package/src/components/Toast/index.ts +1 -1
  822. package/src/components/Toast/types.ts +27 -27
  823. package/src/components/Toastify/Toastify.stories.tsx +71 -71
  824. package/src/components/Toastify/Toastify.tsx +94 -94
  825. package/src/components/Toastify/index.ts +1 -1
  826. package/src/components/Toastify/types.ts +9 -9
  827. package/src/components/Toggle/Toggle.scss +133 -133
  828. package/src/components/Toggle/Toggle.stories.tsx +132 -132
  829. package/src/components/Toggle/Toggle.tsx +96 -96
  830. package/src/components/Toggle/index.ts +1 -1
  831. package/src/components/Toggle/types.ts +43 -43
  832. package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
  833. package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
  834. package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
  835. package/src/components/ToggleSwitch/index.ts +1 -1
  836. package/src/components/Tooltip/Tooltip.scss +27 -27
  837. package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
  838. package/src/components/Tooltip/Tooltip.tsx +194 -194
  839. package/src/components/Tooltip/index.ts +1 -1
  840. package/src/components/Tooltip/types.ts +66 -66
  841. package/src/components/Typography/Typography.scss +25 -25
  842. package/src/components/Typography/Typography.stories.tsx +59 -59
  843. package/src/components/Typography/Typography.tsx +41 -41
  844. package/src/components/Typography/index.ts +1 -1
  845. package/src/components/Typography/types.ts +57 -57
  846. package/src/components/VariableInput/VariableInput.scss +127 -127
  847. package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
  848. package/src/components/VariableInput/VariableInput.tsx +352 -352
  849. package/src/components/VariableInput/types.ts +56 -56
  850. package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
  851. package/src/hooks/useClickOutside.tsx +30 -30
  852. package/src/hooks/useFileDropzone.tsx +275 -275
  853. package/src/hooks/useIntersectionObserver.tsx +56 -56
  854. package/src/hooks/usePortalPosition.tsx +53 -53
  855. package/src/hooks/useTheme.tsx +13 -13
  856. package/src/index.ts +205 -205
  857. package/src/utils/FormatString/FormatString.stories.tsx +58 -58
  858. package/src/utils/FormatString/FormatString.tsx +41 -41
  859. package/src/utils/TableCell/TableCell.ts +16 -16
  860. package/src/utils/capitalize/capitalize.stories.tsx +44 -44
  861. package/src/utils/capitalize/capitalize.tsx +4 -4
  862. package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
  863. package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
  864. package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
  865. package/src/utils/checkEmpty/checkEmpty.ts +24 -24
  866. package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
  867. package/src/utils/compareArrays/compareArrays.ts +31 -31
  868. package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
  869. package/src/utils/compareObjects/compareObjects.ts +53 -53
  870. package/src/utils/debounce/debounce.stories.tsx +81 -81
  871. package/src/utils/debounce/debounce.ts +28 -28
  872. package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
  873. package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
  874. package/src/utils/ffID/ffID.stories.tsx +35 -35
  875. package/src/utils/ffID/ffid.ts +7 -7
  876. package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
  877. package/src/utils/findAndInsert/findAndInsert.ts +49 -49
  878. package/src/utils/functionCheck/functionCheck.ts +8 -8
  879. package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
  880. package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
  881. package/src/utils/getExtension/getExtension.stories.tsx +23 -23
  882. package/src/utils/getExtension/getExtension.ts +28 -28
  883. package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
  884. package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
  885. package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
  886. package/src/utils/getSequentialPayload/types.ts +33 -33
  887. package/src/utils/throttle/throttle.stories.tsx +100 -100
  888. package/src/utils/throttle/throttle.ts +33 -33
  889. package/src/utils/truncateText/truncateText.stories.tsx +37 -37
  890. package/src/utils/truncateText/truncateText.ts +4 -4
  891. package/tsconfig.json +55 -55
  892. package/vite.config.js +14 -14
  893. package/lib/index.css +0 -1
  894. package/lib/index.esm.css +0 -1
@@ -1,13 +1,13 @@
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_4775_71389" 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.7918 1.50469 24.3806 2.0064 25.0811 2.60331L25.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.4959 23.7909 37.9955 24.3783 37.4 25.0772L37.4 25.0772L37.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.3946L25.0807 37.3968C24.3805 37.9936 23.7917 38.4954 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.2088 38.4958 15.6208 37.9947 14.9215 37.3988L14.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.2947L4.10563 11.2942C4.17891 10.3757 4.2405 9.60367 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.60544L14.9165 2.6054C15.618 2.00757 16.2076 1.50513 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769ZM13 25.2197H27.1996V27.2971H13V25.2197ZM25.1954 13V22.5118L22.3469 19.6532L20.3327 21.6573L16.65 17.9746L18.6541 15.9705L15.6835 13H25.1954ZM19.3204 21.5118C19.6429 21.8343 19.6867 22.3125 19.4181 22.581C19.1495 22.8496 18.6704 22.8058 18.3489 22.4844L15.7893 19.9248C15.4679 19.6034 15.4241 19.1242 15.6927 18.8556C15.9613 18.5881 16.4394 18.6318 16.7619 18.9533L19.3204 21.5118ZM17.7355 23.0205C18.0579 23.342 18.1017 23.8211 17.8331 24.0887C17.5646 24.3583 17.0864 24.3145 16.7639 23.992L14.2054 21.4335C13.8829 21.111 13.8402 20.6329 14.1077 20.3643C14.3763 20.0957 14.8544 20.1395 15.1769 20.4609L17.7355 23.0205Z"/>
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.7918 1.50469 24.3806 2.0064 25.0811 2.60331L25.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.4959 23.7909 37.9955 24.3783 37.4 25.0772L37.4 25.0772L37.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.3946L25.0807 37.3968C24.3805 37.9936 23.7917 38.4954 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.2088 38.4958 15.6208 37.9947 14.9215 37.3988L14.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.2947L4.10563 11.2942C4.17891 10.3757 4.2405 9.60367 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.60544L14.9165 2.6054C15.618 2.00757 16.2076 1.50513 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769ZM13 25.2197H27.1996V27.2971H13V25.2197ZM25.1954 13V22.5118L22.3469 19.6532L20.3327 21.6573L16.65 17.9746L18.6541 15.9705L15.6835 13H25.1954ZM19.3204 21.5118C19.6429 21.8343 19.6867 22.3125 19.4181 22.581C19.1495 22.8496 18.6704 22.8058 18.3489 22.4844L15.7893 19.9248C15.4679 19.6034 15.4241 19.1242 15.6927 18.8556C15.9613 18.5881 16.4394 18.6318 16.7619 18.9533L19.3204 21.5118ZM17.7355 23.0205C18.0579 23.342 18.1017 23.8211 17.8331 24.0887C17.5646 24.3583 17.0864 24.3145 16.7639 23.992L14.2054 21.4335C13.8829 21.111 13.8402 20.6329 14.1077 20.3643C14.3763 20.0957 14.8544 20.1395 15.1769 20.4609L17.7355 23.0205Z" fill="#592F7C"/>
6
- <path d="M21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.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.4 25.0772L36.6389 24.4286L36.6288 24.4404L36.6192 24.4525L37.4 25.0772ZM37.4 25.0772L38.1612 25.7257L38.1712 25.714L38.1809 25.7019L37.4 25.0772ZM37.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.9243 35.445L26.4193 36.3139ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM23.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.3147 38.0645L16.7257 38.8726ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.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.0748L12.7393 37.0393H12.7393L13.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.81716 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.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.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.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM27.1996 25.2197H28.1996V24.2197H27.1996V25.2197ZM13 25.2197V24.2197H12V25.2197H13ZM27.1996 27.2971V28.2971H28.1996V27.2971H27.1996ZM13 27.2971H12V28.2971H13V27.2971ZM25.1954 22.5118L24.487 23.2177L26.1954 24.9322V22.5118H25.1954ZM25.1954 13H26.1954V12H25.1954V13ZM22.3469 19.6532L23.0553 18.9474L22.35 18.2395L21.6416 18.9443L22.3469 19.6532ZM20.3327 21.6573L19.6255 22.3644L20.3309 23.0697L21.038 22.3662L20.3327 21.6573ZM16.65 17.9746L15.9429 17.2675L15.2358 17.9746L15.9429 18.6817L16.65 17.9746ZM18.6541 15.9705L19.3612 16.6776L20.0683 15.9705L19.3612 15.2634L18.6541 15.9705ZM15.6835 13V12H13.2693L14.9764 13.7071L15.6835 13ZM18.3489 22.4844L19.056 21.7773H19.056L18.3489 22.4844ZM15.7893 19.9248L15.0822 20.6319L15.7893 19.9248ZM15.6927 18.8556L14.9869 18.1472L14.9856 18.1485L15.6927 18.8556ZM16.7619 18.9533L17.469 18.2462L17.4679 18.2451L16.7619 18.9533ZM17.8331 24.0887L17.1273 23.3802L17.1247 23.3829L17.8331 24.0887ZM17.7355 23.0205L17.0282 23.7275L17.0295 23.7287L17.7355 23.0205ZM16.7639 23.992L16.0568 24.6991L16.0568 24.6991L16.7639 23.992ZM14.2054 21.4335L13.4983 22.1406L13.4983 22.1406L14.2054 21.4335ZM14.1077 20.3643L13.4006 19.6572L13.3993 19.6585L14.1077 20.3643ZM15.1769 20.4609L15.8842 19.754L15.8829 19.7527L15.1769 20.4609ZM21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648ZM23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278ZM25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217ZM25.7322 1.84433L25.7297 1.8422L24.4324 3.36441L24.4349 3.36654L25.7322 1.84433ZM26.0926 2.15161L25.7323 1.84445L24.4348 3.36643L24.7951 3.67359L26.0926 2.15161ZM26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733ZM27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062ZM28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108ZM28.7847 3.10875L28.3128 3.07108L28.1536 5.06474L28.6256 5.10241L28.7847 3.10875ZM31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175ZM33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206ZM35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341ZM36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565ZM36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154ZM36.9289 11.687L36.8911 11.215L34.8975 11.3747L34.9353 11.8467L36.9289 11.687ZM37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384ZM37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858ZM37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074ZM38.1557 14.268L37.8486 13.9075L36.3262 15.2045L36.6333 15.565L38.1557 14.268ZM39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365ZM40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189ZM40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111ZM39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635ZM38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6389 24.4286L38.1612 25.7257ZM38.1809 25.7019L38.1809 25.7019L36.6192 24.4525L36.6192 24.4525L38.1809 25.7019ZM38.1559 25.732L38.1612 25.7257L36.6388 24.4287L36.6335 24.4349L38.1559 25.732ZM37.8485 26.0926L38.1557 25.7321L36.6337 24.4347L36.3264 24.7952L37.8485 26.0926ZM37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148ZM37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606ZM36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127ZM36.8911 28.7849L36.9289 28.313L34.9353 28.1532L34.8975 28.6252L36.8911 28.7849ZM36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844ZM35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864ZM33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478ZM31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482ZM28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912ZM28.3127 36.9288L28.7846 36.8912L28.6257 34.8975L28.1538 34.9351L28.3127 36.9288ZM27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393ZM26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829ZM26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485ZM25.7321 38.1556L26.0926 37.8483L24.7951 36.3263L24.4347 36.6335L25.7321 38.1556ZM25.7291 38.1582L25.7317 38.1559L24.435 36.6332L24.4323 36.6355L25.7291 38.1582ZM23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807ZM21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426ZM18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427ZM16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806ZM14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599ZM14.2678 38.1556L14.2727 38.1598L15.5702 36.6378L15.5652 36.6335L14.2678 38.1556ZM13.9073 37.8483L14.2678 38.1556L15.5652 36.6336L15.2047 36.3263L13.9073 37.8483ZM13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829ZM12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393ZM11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288ZM11.2154 36.8912L11.6874 36.9288L11.8463 34.9351L11.3743 34.8975L11.2154 36.8912ZM8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483ZM6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478ZM4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865ZM3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844ZM3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847ZM3.07108 28.3126L3.10875 28.7848L5.10242 28.6257L5.06475 28.1536L3.07108 28.3126ZM2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261ZM2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144ZM2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926ZM1.84425 25.732L2.15144 26.0925L3.67373 24.7954L3.36654 24.4349L1.84425 25.732ZM0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635ZM-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811ZM-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889ZM0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365ZM1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678ZM2.15145 13.9074L1.84428 14.2679L3.36655 15.5651L3.67371 15.2046L2.15145 13.9074ZM2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855ZM2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393ZM3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873ZM3.10875 11.2152L3.07108 11.6873L5.06475 11.8464L5.10242 11.3743L3.10875 11.2152ZM3.1088 11.2145L3.10876 11.2151L5.10241 11.3744L5.10245 11.3738L3.1088 11.2145ZM3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551ZM4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338ZM6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207ZM8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175ZM11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875ZM11.6873 3.07108L11.2152 3.10875L11.3743 5.10242L11.8464 5.06475L11.6873 3.07108ZM12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066ZM13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719ZM13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148ZM14.2678 1.84432L13.9074 2.15149L15.2046 3.67371L15.5651 3.36655L14.2678 1.84432ZM14.2763 1.83718L14.2763 1.83722L15.5566 3.37366L15.5567 3.37362L14.2763 1.83718ZM16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311ZM18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627ZM27.1996 24.2197H13V26.2197H27.1996V24.2197ZM28.1996 27.2971V25.2197H26.1996V27.2971H28.1996ZM13 28.2971H27.1996V26.2971H13V28.2971ZM12 25.2197V27.2971H14V25.2197H12ZM26.1954 22.5118V13H24.1954V22.5118H26.1954ZM21.6386 20.359L24.487 23.2177L25.9038 21.806L23.0553 18.9474L21.6386 20.359ZM21.038 22.3662L23.0522 20.3621L21.6416 18.9443L19.6273 20.9484L21.038 22.3662ZM15.9429 18.6817L19.6255 22.3644L21.0398 20.9502L17.3571 17.2675L15.9429 18.6817ZM17.947 15.2634L15.9429 17.2675L17.3571 18.6817L19.3612 16.6776L17.947 15.2634ZM14.9764 13.7071L17.947 16.6776L19.3612 15.2634L16.3907 12.2929L14.9764 13.7071ZM25.1954 12H15.6835V14H25.1954V12ZM20.1252 23.2881C20.9001 22.5132 20.6137 21.3909 20.0275 20.8047L18.6133 22.2189C18.6183 22.2239 18.5998 22.2094 18.5951 22.1577C18.5901 22.1029 18.6037 21.9812 18.711 21.8739L20.1252 23.2881ZM17.6418 23.1915C18.2279 23.7776 19.3512 24.0622 20.1252 23.2881L18.711 21.8739C18.8185 21.7664 18.94 21.7532 18.9936 21.758C19.0446 21.7627 19.0596 21.7808 19.056 21.7773L17.6418 23.1915ZM15.0822 20.6319L17.6418 23.1915L19.056 21.7773L16.4965 19.2177L15.0822 20.6319ZM14.9856 18.1485C14.2115 18.9226 14.4961 20.0458 15.0822 20.6319L16.4965 19.2177C16.4929 19.2141 16.5111 19.2291 16.5157 19.2801C16.5205 19.3338 16.5073 19.4552 16.3998 19.5627L14.9856 18.1485ZM17.4679 18.2451C16.8819 17.6609 15.7614 17.3756 14.9869 18.1472L16.3985 19.5641C16.2909 19.6713 16.1696 19.6843 16.1161 19.6794C16.0653 19.6748 16.0511 19.6568 16.0559 19.6615L17.4679 18.2451ZM20.0275 20.8047L17.469 18.2462L16.0548 19.6604L18.6133 22.2189L20.0275 20.8047ZM18.5389 24.7971C19.3161 24.0228 19.0285 22.8975 18.4414 22.3123L17.0295 23.7287C17.0332 23.7325 17.0148 23.7174 17.0101 23.6658C17.0051 23.6116 17.0184 23.4887 17.1274 23.3802L18.5389 24.7971ZM16.0568 24.6991C16.6429 25.2853 17.7666 25.5723 18.5416 24.7944L17.1247 23.3829C17.2316 23.2756 17.3536 23.2614 17.4091 23.2665C17.4614 23.2712 17.476 23.2899 17.471 23.2849L16.0568 24.6991ZM13.4983 22.1406L16.0568 24.6991L17.471 23.2849L14.9125 20.7264L13.4983 22.1406ZM13.3993 19.6585C12.6289 20.4318 12.9103 21.5526 13.4983 22.1406L14.9125 20.7264C14.9081 20.722 14.9265 20.7368 14.9312 20.7883C14.9361 20.8424 14.9227 20.9631 14.8162 21.0701L13.3993 19.6585ZM15.8829 19.7527C15.2969 19.1686 14.1752 18.8827 13.4006 19.6572L14.8148 21.0714C14.7076 21.1787 14.586 21.1922 14.5317 21.1873C14.4804 21.1826 14.4661 21.1644 14.4709 21.1692L15.8829 19.7527ZM18.4427 22.3135L15.8842 19.754L14.4697 21.1679L17.0282 23.7275L18.4427 22.3135Z" fill="url(#paint0_linear_4775_71389)" mask="url(#path-1-inside-1_4775_71389)"/>
7
- <defs>
8
- <linearGradient id="paint0_linear_4775_71389" x1="20" y1="1.21631" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
9
- <stop stop-color="#301349"/>
10
- <stop offset="1" stop-color="#6D3277"/>
11
- </linearGradient>
12
- </defs>
13
- </svg>
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_4775_71389" 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.7918 1.50469 24.3806 2.0064 25.0811 2.60331L25.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.4959 23.7909 37.9955 24.3783 37.4 25.0772L37.4 25.0772L37.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.3946L25.0807 37.3968C24.3805 37.9936 23.7917 38.4954 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.2088 38.4958 15.6208 37.9947 14.9215 37.3988L14.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.2947L4.10563 11.2942C4.17891 10.3757 4.2405 9.60367 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.60544L14.9165 2.6054C15.618 2.00757 16.2076 1.50513 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769ZM13 25.2197H27.1996V27.2971H13V25.2197ZM25.1954 13V22.5118L22.3469 19.6532L20.3327 21.6573L16.65 17.9746L18.6541 15.9705L15.6835 13H25.1954ZM19.3204 21.5118C19.6429 21.8343 19.6867 22.3125 19.4181 22.581C19.1495 22.8496 18.6704 22.8058 18.3489 22.4844L15.7893 19.9248C15.4679 19.6034 15.4241 19.1242 15.6927 18.8556C15.9613 18.5881 16.4394 18.6318 16.7619 18.9533L19.3204 21.5118ZM17.7355 23.0205C18.0579 23.342 18.1017 23.8211 17.8331 24.0887C17.5646 24.3583 17.0864 24.3145 16.7639 23.992L14.2054 21.4335C13.8829 21.111 13.8402 20.6329 14.1077 20.3643C14.3763 20.0957 14.8544 20.1395 15.1769 20.4609L17.7355 23.0205Z"/>
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.7918 1.50469 24.3806 2.0064 25.0811 2.60331L25.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.4959 23.7909 37.9955 24.3783 37.4 25.0772L37.4 25.0772L37.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.3946L25.0807 37.3968C24.3805 37.9936 23.7917 38.4954 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.2088 38.4958 15.6208 37.9947 14.9215 37.3988L14.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.2947L4.10563 11.2942C4.17891 10.3757 4.2405 9.60367 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.60544L14.9165 2.6054C15.618 2.00757 16.2076 1.50513 16.7257 1.1273C17.2694 0.730828 17.821 0.4053 18.4674 0.217769ZM13 25.2197H27.1996V27.2971H13V25.2197ZM25.1954 13V22.5118L22.3469 19.6532L20.3327 21.6573L16.65 17.9746L18.6541 15.9705L15.6835 13H25.1954ZM19.3204 21.5118C19.6429 21.8343 19.6867 22.3125 19.4181 22.581C19.1495 22.8496 18.6704 22.8058 18.3489 22.4844L15.7893 19.9248C15.4679 19.6034 15.4241 19.1242 15.6927 18.8556C15.9613 18.5881 16.4394 18.6318 16.7619 18.9533L19.3204 21.5118ZM17.7355 23.0205C18.0579 23.342 18.1017 23.8211 17.8331 24.0887C17.5646 24.3583 17.0864 24.3145 16.7639 23.992L14.2054 21.4335C13.8829 21.111 13.8402 20.6329 14.1077 20.3643C14.3763 20.0957 14.8544 20.1395 15.1769 20.4609L17.7355 23.0205Z" fill="#592F7C"/>
6
+ <path d="M21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.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.4 25.0772L36.6389 24.4286L36.6288 24.4404L36.6192 24.4525L37.4 25.0772ZM37.4 25.0772L38.1612 25.7257L38.1712 25.714L38.1809 25.7019L37.4 25.0772ZM37.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.9243 35.445L26.4193 36.3139ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM23.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.3147 38.0645L16.7257 38.8726ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.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.0748L12.7393 37.0393H12.7393L13.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.81716 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.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.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.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM27.1996 25.2197H28.1996V24.2197H27.1996V25.2197ZM13 25.2197V24.2197H12V25.2197H13ZM27.1996 27.2971V28.2971H28.1996V27.2971H27.1996ZM13 27.2971H12V28.2971H13V27.2971ZM25.1954 22.5118L24.487 23.2177L26.1954 24.9322V22.5118H25.1954ZM25.1954 13H26.1954V12H25.1954V13ZM22.3469 19.6532L23.0553 18.9474L22.35 18.2395L21.6416 18.9443L22.3469 19.6532ZM20.3327 21.6573L19.6255 22.3644L20.3309 23.0697L21.038 22.3662L20.3327 21.6573ZM16.65 17.9746L15.9429 17.2675L15.2358 17.9746L15.9429 18.6817L16.65 17.9746ZM18.6541 15.9705L19.3612 16.6776L20.0683 15.9705L19.3612 15.2634L18.6541 15.9705ZM15.6835 13V12H13.2693L14.9764 13.7071L15.6835 13ZM18.3489 22.4844L19.056 21.7773H19.056L18.3489 22.4844ZM15.7893 19.9248L15.0822 20.6319L15.7893 19.9248ZM15.6927 18.8556L14.9869 18.1472L14.9856 18.1485L15.6927 18.8556ZM16.7619 18.9533L17.469 18.2462L17.4679 18.2451L16.7619 18.9533ZM17.8331 24.0887L17.1273 23.3802L17.1247 23.3829L17.8331 24.0887ZM17.7355 23.0205L17.0282 23.7275L17.0295 23.7287L17.7355 23.0205ZM16.7639 23.992L16.0568 24.6991L16.0568 24.6991L16.7639 23.992ZM14.2054 21.4335L13.4983 22.1406L13.4983 22.1406L14.2054 21.4335ZM14.1077 20.3643L13.4006 19.6572L13.3993 19.6585L14.1077 20.3643ZM15.1769 20.4609L15.8842 19.754L15.8829 19.7527L15.1769 20.4609ZM21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648ZM23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278ZM25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217ZM25.7322 1.84433L25.7297 1.8422L24.4324 3.36441L24.4349 3.36654L25.7322 1.84433ZM26.0926 2.15161L25.7323 1.84445L24.4348 3.36643L24.7951 3.67359L26.0926 2.15161ZM26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733ZM27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062ZM28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108ZM28.7847 3.10875L28.3128 3.07108L28.1536 5.06474L28.6256 5.10241L28.7847 3.10875ZM31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175ZM33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206ZM35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341ZM36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565ZM36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154ZM36.9289 11.687L36.8911 11.215L34.8975 11.3747L34.9353 11.8467L36.9289 11.687ZM37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384ZM37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858ZM37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074ZM38.1557 14.268L37.8486 13.9075L36.3262 15.2045L36.6333 15.565L38.1557 14.268ZM39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365ZM40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189ZM40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111ZM39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635ZM38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6389 24.4286L38.1612 25.7257ZM38.1809 25.7019L38.1809 25.7019L36.6192 24.4525L36.6192 24.4525L38.1809 25.7019ZM38.1559 25.732L38.1612 25.7257L36.6388 24.4287L36.6335 24.4349L38.1559 25.732ZM37.8485 26.0926L38.1557 25.7321L36.6337 24.4347L36.3264 24.7952L37.8485 26.0926ZM37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148ZM37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606ZM36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127ZM36.8911 28.7849L36.9289 28.313L34.9353 28.1532L34.8975 28.6252L36.8911 28.7849ZM36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844ZM35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864ZM33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478ZM31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482ZM28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912ZM28.3127 36.9288L28.7846 36.8912L28.6257 34.8975L28.1538 34.9351L28.3127 36.9288ZM27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393ZM26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829ZM26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485ZM25.7321 38.1556L26.0926 37.8483L24.7951 36.3263L24.4347 36.6335L25.7321 38.1556ZM25.7291 38.1582L25.7317 38.1559L24.435 36.6332L24.4323 36.6355L25.7291 38.1582ZM23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807ZM21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426ZM18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427ZM16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806ZM14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599ZM14.2678 38.1556L14.2727 38.1598L15.5702 36.6378L15.5652 36.6335L14.2678 38.1556ZM13.9073 37.8483L14.2678 38.1556L15.5652 36.6336L15.2047 36.3263L13.9073 37.8483ZM13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829ZM12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393ZM11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288ZM11.2154 36.8912L11.6874 36.9288L11.8463 34.9351L11.3743 34.8975L11.2154 36.8912ZM8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483ZM6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478ZM4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865ZM3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844ZM3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847ZM3.07108 28.3126L3.10875 28.7848L5.10242 28.6257L5.06475 28.1536L3.07108 28.3126ZM2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261ZM2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144ZM2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926ZM1.84425 25.732L2.15144 26.0925L3.67373 24.7954L3.36654 24.4349L1.84425 25.732ZM0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635ZM-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811ZM-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889ZM0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365ZM1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678ZM2.15145 13.9074L1.84428 14.2679L3.36655 15.5651L3.67371 15.2046L2.15145 13.9074ZM2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855ZM2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393ZM3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873ZM3.10875 11.2152L3.07108 11.6873L5.06475 11.8464L5.10242 11.3743L3.10875 11.2152ZM3.1088 11.2145L3.10876 11.2151L5.10241 11.3744L5.10245 11.3738L3.1088 11.2145ZM3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551ZM4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338ZM6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207ZM8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175ZM11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875ZM11.6873 3.07108L11.2152 3.10875L11.3743 5.10242L11.8464 5.06475L11.6873 3.07108ZM12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066ZM13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719ZM13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148ZM14.2678 1.84432L13.9074 2.15149L15.2046 3.67371L15.5651 3.36655L14.2678 1.84432ZM14.2763 1.83718L14.2763 1.83722L15.5566 3.37366L15.5567 3.37362L14.2763 1.83718ZM16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311ZM18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627ZM27.1996 24.2197H13V26.2197H27.1996V24.2197ZM28.1996 27.2971V25.2197H26.1996V27.2971H28.1996ZM13 28.2971H27.1996V26.2971H13V28.2971ZM12 25.2197V27.2971H14V25.2197H12ZM26.1954 22.5118V13H24.1954V22.5118H26.1954ZM21.6386 20.359L24.487 23.2177L25.9038 21.806L23.0553 18.9474L21.6386 20.359ZM21.038 22.3662L23.0522 20.3621L21.6416 18.9443L19.6273 20.9484L21.038 22.3662ZM15.9429 18.6817L19.6255 22.3644L21.0398 20.9502L17.3571 17.2675L15.9429 18.6817ZM17.947 15.2634L15.9429 17.2675L17.3571 18.6817L19.3612 16.6776L17.947 15.2634ZM14.9764 13.7071L17.947 16.6776L19.3612 15.2634L16.3907 12.2929L14.9764 13.7071ZM25.1954 12H15.6835V14H25.1954V12ZM20.1252 23.2881C20.9001 22.5132 20.6137 21.3909 20.0275 20.8047L18.6133 22.2189C18.6183 22.2239 18.5998 22.2094 18.5951 22.1577C18.5901 22.1029 18.6037 21.9812 18.711 21.8739L20.1252 23.2881ZM17.6418 23.1915C18.2279 23.7776 19.3512 24.0622 20.1252 23.2881L18.711 21.8739C18.8185 21.7664 18.94 21.7532 18.9936 21.758C19.0446 21.7627 19.0596 21.7808 19.056 21.7773L17.6418 23.1915ZM15.0822 20.6319L17.6418 23.1915L19.056 21.7773L16.4965 19.2177L15.0822 20.6319ZM14.9856 18.1485C14.2115 18.9226 14.4961 20.0458 15.0822 20.6319L16.4965 19.2177C16.4929 19.2141 16.5111 19.2291 16.5157 19.2801C16.5205 19.3338 16.5073 19.4552 16.3998 19.5627L14.9856 18.1485ZM17.4679 18.2451C16.8819 17.6609 15.7614 17.3756 14.9869 18.1472L16.3985 19.5641C16.2909 19.6713 16.1696 19.6843 16.1161 19.6794C16.0653 19.6748 16.0511 19.6568 16.0559 19.6615L17.4679 18.2451ZM20.0275 20.8047L17.469 18.2462L16.0548 19.6604L18.6133 22.2189L20.0275 20.8047ZM18.5389 24.7971C19.3161 24.0228 19.0285 22.8975 18.4414 22.3123L17.0295 23.7287C17.0332 23.7325 17.0148 23.7174 17.0101 23.6658C17.0051 23.6116 17.0184 23.4887 17.1274 23.3802L18.5389 24.7971ZM16.0568 24.6991C16.6429 25.2853 17.7666 25.5723 18.5416 24.7944L17.1247 23.3829C17.2316 23.2756 17.3536 23.2614 17.4091 23.2665C17.4614 23.2712 17.476 23.2899 17.471 23.2849L16.0568 24.6991ZM13.4983 22.1406L16.0568 24.6991L17.471 23.2849L14.9125 20.7264L13.4983 22.1406ZM13.3993 19.6585C12.6289 20.4318 12.9103 21.5526 13.4983 22.1406L14.9125 20.7264C14.9081 20.722 14.9265 20.7368 14.9312 20.7883C14.9361 20.8424 14.9227 20.9631 14.8162 21.0701L13.3993 19.6585ZM15.8829 19.7527C15.2969 19.1686 14.1752 18.8827 13.4006 19.6572L14.8148 21.0714C14.7076 21.1787 14.586 21.1922 14.5317 21.1873C14.4804 21.1826 14.4661 21.1644 14.4709 21.1692L15.8829 19.7527ZM18.4427 22.3135L15.8842 19.754L14.4697 21.1679L17.0282 23.7275L18.4427 22.3135Z" fill="url(#paint0_linear_4775_71389)" mask="url(#path-1-inside-1_4775_71389)"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_4775_71389" x1="20" y1="1.21631" x2="20" y2="39.9999" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#301349"/>
10
+ <stop offset="1" stop-color="#6D3277"/>
11
+ </linearGradient>
12
+ </defs>
13
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7651 6.07607C14.9992 6.22242 15.0704 6.5309 14.9241 6.76507C14.485 7.46755 13.9633 8.10658 13.3703 8.66318L14.5713 9.8642C14.7666 10.0595 14.7666 10.376 14.5713 10.5713C14.376 10.7666 14.0595 10.7666 13.8642 10.5713L12.6012 9.30831C11.8051 9.90297 10.909 10.3622 9.93383 10.6512L10.383 12.3278C10.4545 12.5946 10.2962 12.8687 10.0295 12.9402C9.76275 13.0116 9.48858 12.8534 9.41712 12.5866L8.95924 10.8777C8.4875 10.9581 8.00042 11.0001 7.50007 11.0001C6.9997 11.0001 6.51262 10.9581 6.04087 10.8777L5.58303 12.5866C5.51157 12.8533 5.23741 13.0116 4.97068 12.9402C4.70394 12.8687 4.54564 12.5946 4.6171 12.3278L5.06629 10.6512C4.09115 10.3622 3.19506 9.90296 2.39892 9.30829L1.13591 10.5713C0.940646 10.7666 0.624063 10.7666 0.428801 10.5713C0.233539 10.376 0.233539 10.0595 0.428801 9.86419L1.62984 8.66316C1.03683 8.10656 0.515117 7.46754 0.0760684 6.76507C-0.0702873 6.5309 0.000898553 6.22242 0.235066 6.07607C0.469234 5.92971 0.77771 6.0009 0.924065 6.23507C1.40355 7.00224 1.98901 7.68069 2.66235 8.24283C2.67317 8.25109 2.68373 8.25985 2.69399 8.26911C4.009 9.35541 5.65541 10.0001 7.50007 10.0001C10.3079 10.0001 12.6565 8.50643 14.0761 6.23507C14.2224 6.0009 14.5309 5.92971 14.7651 6.07607Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7651 6.07607C14.9992 6.22242 15.0704 6.5309 14.9241 6.76507C14.485 7.46755 13.9633 8.10658 13.3703 8.66318L14.5713 9.8642C14.7666 10.0595 14.7666 10.376 14.5713 10.5713C14.376 10.7666 14.0595 10.7666 13.8642 10.5713L12.6012 9.30831C11.8051 9.90297 10.909 10.3622 9.93383 10.6512L10.383 12.3278C10.4545 12.5946 10.2962 12.8687 10.0295 12.9402C9.76275 13.0116 9.48858 12.8534 9.41712 12.5866L8.95924 10.8777C8.4875 10.9581 8.00042 11.0001 7.50007 11.0001C6.9997 11.0001 6.51262 10.9581 6.04087 10.8777L5.58303 12.5866C5.51157 12.8533 5.23741 13.0116 4.97068 12.9402C4.70394 12.8687 4.54564 12.5946 4.6171 12.3278L5.06629 10.6512C4.09115 10.3622 3.19506 9.90296 2.39892 9.30829L1.13591 10.5713C0.940646 10.7666 0.624063 10.7666 0.428801 10.5713C0.233539 10.376 0.233539 10.0595 0.428801 9.86419L1.62984 8.66316C1.03683 8.10656 0.515117 7.46754 0.0760684 6.76507C-0.0702873 6.5309 0.000898553 6.22242 0.235066 6.07607C0.469234 5.92971 0.77771 6.0009 0.924065 6.23507C1.40355 7.00224 1.98901 7.68069 2.66235 8.24283C2.67317 8.25109 2.68373 8.25985 2.69399 8.26911C4.009 9.35541 5.65541 10.0001 7.50007 10.0001C10.3079 10.0001 12.6565 8.50643 14.0761 6.23507C14.2224 6.0009 14.5309 5.92971 14.7651 6.07607Z" fill="currentColor"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.8985 6.29701C13.5046 8.80023 10.861 10.3552 8.00093 10.3552C5.13896 10.3552 2.49546 8.80023 1.10149 6.29701C0.994127 6.10264 0.994127 5.89717 1.10149 5.70297C2.49546 3.19978 5.13896 1.64494 8.00093 1.64494C10.861 1.64494 13.5045 3.19978 14.8985 5.70297C15.0078 5.89717 15.0078 6.10264 14.8985 6.29701ZM15.789 5.20666C14.2154 2.38043 11.2313 0.624939 8.00093 0.624939C4.76871 0.624939 1.78457 2.38043 0.211039 5.20666C-0.0703464 5.71093 -0.0703464 6.28905 0.211039 6.79295C1.78457 9.61918 4.76871 11.375 8.00093 11.375C11.2313 11.375 14.2154 9.61918 15.789 6.79295C16.0703 6.28909 16.0703 5.71093 15.789 5.20666ZM8.00093 8.09231C9.15424 8.09231 10.0928 7.15375 10.0928 5.99991C10.0928 4.84606 9.15424 3.9075 8.00093 3.9075C6.84576 3.9075 5.9072 4.84606 5.9072 5.99991C5.9072 7.15375 6.8458 8.09231 8.00093 8.09231ZM8.00093 2.88749C6.28299 2.88749 4.8872 4.28386 4.8872 5.99994C4.8872 7.71639 6.28303 9.11218 8.00093 9.11218C9.71701 9.11218 11.1128 7.71636 11.1128 5.99994C11.1128 4.28386 9.71701 2.88749 8.00093 2.88749Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.8985 6.29701C13.5046 8.80023 10.861 10.3552 8.00093 10.3552C5.13896 10.3552 2.49546 8.80023 1.10149 6.29701C0.994127 6.10264 0.994127 5.89717 1.10149 5.70297C2.49546 3.19978 5.13896 1.64494 8.00093 1.64494C10.861 1.64494 13.5045 3.19978 14.8985 5.70297C15.0078 5.89717 15.0078 6.10264 14.8985 6.29701ZM15.789 5.20666C14.2154 2.38043 11.2313 0.624939 8.00093 0.624939C4.76871 0.624939 1.78457 2.38043 0.211039 5.20666C-0.0703464 5.71093 -0.0703464 6.28905 0.211039 6.79295C1.78457 9.61918 4.76871 11.375 8.00093 11.375C11.2313 11.375 14.2154 9.61918 15.789 6.79295C16.0703 6.28909 16.0703 5.71093 15.789 5.20666ZM8.00093 8.09231C9.15424 8.09231 10.0928 7.15375 10.0928 5.99991C10.0928 4.84606 9.15424 3.9075 8.00093 3.9075C6.84576 3.9075 5.9072 4.84606 5.9072 5.99991C5.9072 7.15375 6.8458 8.09231 8.00093 8.09231ZM8.00093 2.88749C6.28299 2.88749 4.8872 4.28386 4.8872 5.99994C4.8872 7.71639 6.28303 9.11218 8.00093 9.11218C9.71701 9.11218 11.1128 7.71636 11.1128 5.99994C11.1128 4.28386 9.71701 2.88749 8.00093 2.88749Z" fill="currentColor"/>
3
+ </svg>
@@ -1,12 +1,12 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_5540_15041)">
3
- <path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#F64C6E"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#9C1732"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_5540_15041">
9
- <rect width="20" height="20" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5540_15041)">
3
+ <path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#F64C6E"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#9C1732"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_5540_15041">
9
+ <rect width="20" height="20" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -1,12 +1,12 @@
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_1017_474)">
3
- <path
4
- d="M11.3333 9.33335C11.3333 9.51016 11.2631 9.67973 11.1381 9.80475C11.0131 9.92978 10.8435 10 10.6667 10H5.33334C5.15653 10 4.98696 9.92978 4.86194 9.80475C4.73691 9.67973 4.66668 9.51016 4.66668 9.33335C4.66668 9.15654 4.73691 8.98697 4.86194 8.86194C4.98696 8.73692 5.15653 8.66668 5.33334 8.66668H10.6667C10.8435 8.66668 11.0131 8.73692 11.1381 8.86194C11.2631 8.98697 11.3333 9.15654 11.3333 9.33335ZM8.66668 11.3333H5.33334C5.15653 11.3333 4.98696 11.4036 4.86194 11.5286C4.73691 11.6536 4.66668 11.8232 4.66668 12C4.66668 12.1768 4.73691 12.3464 4.86194 12.4714C4.98696 12.5964 5.15653 12.6667 5.33334 12.6667H8.66668C8.84349 12.6667 9.01306 12.5964 9.13808 12.4714C9.26311 12.3464 9.33334 12.1768 9.33334 12C9.33334 11.8232 9.26311 11.6536 9.13808 11.5286C9.01306 11.4036 8.84349 11.3333 8.66668 11.3333ZM14.6667 6.99002V12.6667C14.6656 13.5504 14.3141 14.3976 13.6892 15.0225C13.0643 15.6474 12.2171 15.999 11.3333 16H4.66668C3.78295 15.999 2.93572 15.6474 2.31082 15.0225C1.68593 14.3976 1.3344 13.5504 1.33334 12.6667V3.33335C1.3344 2.44962 1.68593 1.60239 2.31082 0.977495C2.93572 0.352603 3.78295 0.00107394 4.66668 1.53658e-05H7.67668C8.28976 -0.00156258 8.89707 0.118407 9.46349 0.352988C10.0299 0.587569 10.5442 0.932107 10.9767 1.36668L13.2993 3.69068C13.7342 4.12284 14.0789 4.63699 14.3136 5.20333C14.5483 5.76968 14.6683 6.37696 14.6667 6.99002ZM10.034 2.30935C9.8242 2.10612 9.58863 1.9313 9.33334 1.78935V4.66668C9.33334 4.84349 9.40358 5.01306 9.52861 5.13809C9.65363 5.26311 9.8232 5.33335 10 5.33335H12.8773C12.7353 5.07814 12.5602 4.84278 12.3567 4.63335L10.034 2.30935ZM13.3333 6.99002C13.3333 6.88002 13.312 6.77468 13.302 6.66668H10C9.46958 6.66668 8.96087 6.45597 8.5858 6.0809C8.21072 5.70582 8.00001 5.19711 8.00001 4.66668V1.36468C7.89201 1.35468 7.78601 1.33335 7.67668 1.33335H4.66668C4.13624 1.33335 3.62754 1.54406 3.25246 1.91914C2.87739 2.29421 2.66668 2.80292 2.66668 3.33335V12.6667C2.66668 13.1971 2.87739 13.7058 3.25246 14.0809C3.62754 14.456 4.13624 14.6667 4.66668 14.6667H11.3333C11.8638 14.6667 12.3725 14.456 12.7476 14.0809C13.1226 13.7058 13.3333 13.1971 13.3333 12.6667V6.99002Z"
5
- fill="currentColor" />
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_1017_474">
9
- <rect width="16" height="16" fill="currentColor" />
10
- </clipPath>
11
- </defs>
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_1017_474)">
3
+ <path
4
+ d="M11.3333 9.33335C11.3333 9.51016 11.2631 9.67973 11.1381 9.80475C11.0131 9.92978 10.8435 10 10.6667 10H5.33334C5.15653 10 4.98696 9.92978 4.86194 9.80475C4.73691 9.67973 4.66668 9.51016 4.66668 9.33335C4.66668 9.15654 4.73691 8.98697 4.86194 8.86194C4.98696 8.73692 5.15653 8.66668 5.33334 8.66668H10.6667C10.8435 8.66668 11.0131 8.73692 11.1381 8.86194C11.2631 8.98697 11.3333 9.15654 11.3333 9.33335ZM8.66668 11.3333H5.33334C5.15653 11.3333 4.98696 11.4036 4.86194 11.5286C4.73691 11.6536 4.66668 11.8232 4.66668 12C4.66668 12.1768 4.73691 12.3464 4.86194 12.4714C4.98696 12.5964 5.15653 12.6667 5.33334 12.6667H8.66668C8.84349 12.6667 9.01306 12.5964 9.13808 12.4714C9.26311 12.3464 9.33334 12.1768 9.33334 12C9.33334 11.8232 9.26311 11.6536 9.13808 11.5286C9.01306 11.4036 8.84349 11.3333 8.66668 11.3333ZM14.6667 6.99002V12.6667C14.6656 13.5504 14.3141 14.3976 13.6892 15.0225C13.0643 15.6474 12.2171 15.999 11.3333 16H4.66668C3.78295 15.999 2.93572 15.6474 2.31082 15.0225C1.68593 14.3976 1.3344 13.5504 1.33334 12.6667V3.33335C1.3344 2.44962 1.68593 1.60239 2.31082 0.977495C2.93572 0.352603 3.78295 0.00107394 4.66668 1.53658e-05H7.67668C8.28976 -0.00156258 8.89707 0.118407 9.46349 0.352988C10.0299 0.587569 10.5442 0.932107 10.9767 1.36668L13.2993 3.69068C13.7342 4.12284 14.0789 4.63699 14.3136 5.20333C14.5483 5.76968 14.6683 6.37696 14.6667 6.99002ZM10.034 2.30935C9.8242 2.10612 9.58863 1.9313 9.33334 1.78935V4.66668C9.33334 4.84349 9.40358 5.01306 9.52861 5.13809C9.65363 5.26311 9.8232 5.33335 10 5.33335H12.8773C12.7353 5.07814 12.5602 4.84278 12.3567 4.63335L10.034 2.30935ZM13.3333 6.99002C13.3333 6.88002 13.312 6.77468 13.302 6.66668H10C9.46958 6.66668 8.96087 6.45597 8.5858 6.0809C8.21072 5.70582 8.00001 5.19711 8.00001 4.66668V1.36468C7.89201 1.35468 7.78601 1.33335 7.67668 1.33335H4.66668C4.13624 1.33335 3.62754 1.54406 3.25246 1.91914C2.87739 2.29421 2.66668 2.80292 2.66668 3.33335V12.6667C2.66668 13.1971 2.87739 13.7058 3.25246 14.0809C3.62754 14.456 4.13624 14.6667 4.66668 14.6667H11.3333C11.8638 14.6667 12.3725 14.456 12.7476 14.0809C13.1226 13.7058 13.3333 13.1971 13.3333 12.6667V6.99002Z"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1017_474">
9
+ <rect width="16" height="16" fill="currentColor" />
10
+ </clipPath>
11
+ </defs>
12
12
  </svg>
@@ -1,7 +1,7 @@
1
- <svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3.13141 7.17795C2.95989 7.04242 2.74491 6.96777 2.5261 6.96777C2.22872 6.96777 1.95179 7.0999 1.76631 7.33035C1.60413 7.53207 1.5307 7.78445 1.55964 8.04092C1.58862 8.29795 1.71684 8.52817 1.92063 8.68925C2.09216 8.82481 2.30706 8.89946 2.52584 8.89946C2.82344 8.89946 3.1004 8.76707 3.28573 8.5364C3.44777 8.33501 3.52112 8.08293 3.49229 7.82657C3.46338 7.56955 3.33524 7.33917 3.13141 7.17795ZM2.94043 8.25881C2.83957 8.38441 2.68843 8.45648 2.52584 8.45648C2.40463 8.45648 2.29033 8.41679 2.19538 8.34173C2.08496 8.25446 2.01555 8.13001 1.99986 7.99127C1.98428 7.85308 2.02393 7.71692 2.11146 7.60809C2.21236 7.48271 2.36351 7.4108 2.5261 7.4108C2.64741 7.4108 2.76175 7.45048 2.85666 7.5255C2.96705 7.61278 3.03642 7.7373 3.05204 7.87612C3.06758 8.01419 3.028 8.15005 2.94043 8.25881Z" fill="currentColor"/>
3
- <path d="M7.02684 4.9091C7.17296 4.9091 7.31425 4.87709 7.44712 4.81378C7.682 4.7014 7.85843 4.50481 7.94382 4.26018C8.02877 4.01711 8.01349 3.75554 7.90089 3.52388C7.73981 3.19183 7.3958 2.97726 7.02451 2.97726C6.8781 2.97726 6.73651 3.00938 6.60368 3.07277C6.36888 3.18478 6.19237 3.38123 6.10683 3.62592C6.02173 3.86918 6.03698 4.13078 6.14977 4.36256C6.31136 4.69457 6.65562 4.9091 7.02684 4.9091ZM6.52497 3.77216C6.57127 3.6398 6.66696 3.53341 6.7944 3.4726C6.8672 3.4379 6.94459 3.42029 7.02448 3.42029C7.2272 3.42029 7.41474 3.53684 7.50231 3.71741C7.56305 3.84234 7.57128 3.98318 7.52557 4.1141C7.47931 4.24652 7.38351 4.35307 7.25622 4.41399C7.18367 4.44858 7.10647 4.46608 7.0268 4.46608C6.8239 4.46608 6.63598 4.34934 6.54804 4.1687C6.48739 4.04395 6.47919 3.90314 6.52497 3.77216Z" fill="currentColor"/>
4
- <path d="M4.61602 3.34364C4.68727 3.35974 4.76018 3.3679 4.83273 3.3679C5.28874 3.3679 5.67835 3.05948 5.78024 2.61746C5.8375 2.36682 5.79346 2.10879 5.65634 1.89082C5.51808 1.67116 5.302 1.51846 5.04807 1.46095C4.97653 1.4447 4.90332 1.43643 4.83044 1.43643C4.37472 1.43643 3.98552 1.74518 3.88396 2.18713C3.82622 2.43759 3.86997 2.69565 4.00712 2.91376C4.14549 3.13372 4.36179 3.28642 4.61602 3.34364ZM4.31572 2.28652C4.37077 2.04688 4.58246 1.87949 4.83044 1.87949C4.87027 1.87949 4.91048 1.88403 4.95002 1.893C5.08854 1.92438 5.2062 2.00741 5.28136 2.12681C5.35542 2.24447 5.3792 2.38365 5.34841 2.51833C5.2941 2.75391 5.0772 2.92488 4.83269 2.92488C4.79297 2.92488 4.75291 2.92037 4.71348 2.91147C4.57493 2.88028 4.45727 2.79732 4.38214 2.67793C4.30823 2.56034 4.28463 2.42138 4.31572 2.28652Z" fill="currentColor"/>
5
- <path d="M2.85595 3.89638C3.05952 3.73508 3.18752 3.50467 3.21646 3.24761C3.2453 2.99132 3.17209 2.73924 3.00998 2.53748C2.8242 2.30714 2.54706 2.17505 2.24968 2.17505C2.03108 2.17505 1.81633 2.24948 1.64477 2.38478C1.44116 2.5456 1.31309 2.77564 1.28404 3.03252C1.25502 3.28914 1.32841 3.54166 1.49082 3.74375C1.67644 3.97435 1.95363 4.10663 2.25134 4.10663C2.47012 4.10659 2.68487 4.03194 2.85595 3.89638ZM1.83608 3.46602C1.74836 3.35688 1.70867 3.22058 1.72433 3.08221C1.73998 2.94366 1.80931 2.81939 1.91933 2.73244C2.01425 2.65757 2.12851 2.618 2.24972 2.618C2.41245 2.618 2.56393 2.68999 2.6649 2.81518C2.75221 2.92394 2.79179 3.05991 2.77625 3.19802C2.76063 3.33699 2.69122 3.4617 2.58087 3.54912C2.4864 3.62395 2.37243 3.66353 2.25138 3.66353C2.08845 3.66357 1.93709 3.5915 1.83608 3.46602Z" fill="currentColor"/>
6
- <path d="M11.9153 1.72867C11.877 1.69006 11.8087 1.64402 11.7009 1.64402C11.5745 1.64402 11.2388 1.64402 9.20006 3.37889C9.15908 3.41374 9.11773 3.44908 9.07623 3.48467C8.71196 2.53442 8.07194 1.68725 7.24722 1.07448C6.30159 0.37188 5.17557 0.000295348 3.991 0C3.99063 0 3.99038 0 3.99008 0C3.19065 0 2.21888 0.279326 1.45389 0.729104C0.516158 1.28037 -0.000184543 2.01763 4.94768e-08 2.805C0.000295398 3.75557 0.536426 4.15319 0.967228 4.47264C1.31851 4.73318 1.59595 4.93892 1.5961 5.38985C1.59621 5.84073 1.31891 6.04629 0.967819 6.30657C0.537165 6.62584 0.00114452 7.02323 0.00143987 7.97392C0.00166138 8.76117 0.518336 9.49862 1.45625 10.0504C2.22179 10.5007 3.19408 10.7806 3.99366 10.7808C3.99421 10.7808 3.99469 10.7808 3.99521 10.7808C5.44629 10.7808 6.8104 10.2207 7.83636 9.20368C8.84926 8.1996 9.4126 6.86873 9.4274 5.4505C9.77134 5.05913 10.1045 4.67012 10.4087 4.30356C10.9291 3.67646 11.3293 3.15901 11.5981 2.76564C11.9542 2.24461 12.1101 1.92504 11.9153 1.72867ZM7.52451 8.88906C6.58202 9.82339 5.32878 10.3378 3.99525 10.3378C3.99484 10.3378 3.99425 10.3378 3.99385 10.3378C2.56484 10.3374 0.444868 9.34459 0.444462 7.97377C0.444241 7.24622 0.826716 6.96265 1.23168 6.66243C1.6102 6.38177 2.03923 6.06368 2.03908 5.3897C2.03886 4.71582 1.60972 4.39755 1.23109 4.11678C0.825941 3.8163 0.443244 3.53251 0.443022 2.80488C0.442838 1.96311 1.21695 1.3823 1.67843 1.11099C2.36873 0.705144 3.276 0.442985 3.99008 0.442985C3.99034 0.442985 3.99063 0.442985 3.99086 0.442985C5.07962 0.443281 6.1143 0.784629 6.98303 1.43004C7.78423 2.02535 8.39583 2.86104 8.71798 3.79463C7.75717 4.63357 6.71673 5.60084 5.94189 6.37819C4.65495 6.54477 4.47962 7.40246 4.35144 8.03255C4.24231 8.56905 4.17146 8.82844 3.75735 8.86166C3.6553 8.86986 3.5722 8.94687 3.55629 9.04799C3.54034 9.14907 3.59575 9.24794 3.69034 9.28711C3.71696 9.29811 4.35033 9.55691 5.09033 9.55695C5.09044 9.55695 5.09051 9.55695 5.09058 9.55695C5.60626 9.55695 6.04862 9.43194 6.40533 9.18544C6.84488 8.88167 7.14292 8.40007 7.2927 7.75422C7.79896 7.24201 8.37744 6.62436 8.94946 5.98815C8.8178 7.08352 8.3235 8.09701 7.52451 8.88906ZM6.84765 7.71228C6.61292 8.64248 6.0223 9.114 5.09055 9.11397C5.09055 9.11397 5.0904 9.11397 5.09033 9.11397C4.84463 9.11397 4.60935 9.08044 4.41154 9.03865C4.64782 8.79768 4.72162 8.43507 4.78553 8.12093C4.90725 7.52255 5.02236 6.95626 5.96408 6.82173L6.84765 7.71228ZM9.90657 4.21388C9.02846 5.26004 7.96558 6.43486 7.09061 7.3281L6.95515 7.19158L6.35748 6.58918C7.15079 5.79949 8.16848 4.85789 9.11799 4.03383C9.22867 3.93777 9.33865 3.84292 9.44704 3.75048C10.549 2.81072 11.1264 2.40173 11.421 2.22375C11.2451 2.5201 10.8399 3.10197 9.90657 4.21388Z" fill="currentColor"/>
7
- </svg>
1
+ <svg width="12" height="11" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.13141 7.17795C2.95989 7.04242 2.74491 6.96777 2.5261 6.96777C2.22872 6.96777 1.95179 7.0999 1.76631 7.33035C1.60413 7.53207 1.5307 7.78445 1.55964 8.04092C1.58862 8.29795 1.71684 8.52817 1.92063 8.68925C2.09216 8.82481 2.30706 8.89946 2.52584 8.89946C2.82344 8.89946 3.1004 8.76707 3.28573 8.5364C3.44777 8.33501 3.52112 8.08293 3.49229 7.82657C3.46338 7.56955 3.33524 7.33917 3.13141 7.17795ZM2.94043 8.25881C2.83957 8.38441 2.68843 8.45648 2.52584 8.45648C2.40463 8.45648 2.29033 8.41679 2.19538 8.34173C2.08496 8.25446 2.01555 8.13001 1.99986 7.99127C1.98428 7.85308 2.02393 7.71692 2.11146 7.60809C2.21236 7.48271 2.36351 7.4108 2.5261 7.4108C2.64741 7.4108 2.76175 7.45048 2.85666 7.5255C2.96705 7.61278 3.03642 7.7373 3.05204 7.87612C3.06758 8.01419 3.028 8.15005 2.94043 8.25881Z" fill="currentColor"/>
3
+ <path d="M7.02684 4.9091C7.17296 4.9091 7.31425 4.87709 7.44712 4.81378C7.682 4.7014 7.85843 4.50481 7.94382 4.26018C8.02877 4.01711 8.01349 3.75554 7.90089 3.52388C7.73981 3.19183 7.3958 2.97726 7.02451 2.97726C6.8781 2.97726 6.73651 3.00938 6.60368 3.07277C6.36888 3.18478 6.19237 3.38123 6.10683 3.62592C6.02173 3.86918 6.03698 4.13078 6.14977 4.36256C6.31136 4.69457 6.65562 4.9091 7.02684 4.9091ZM6.52497 3.77216C6.57127 3.6398 6.66696 3.53341 6.7944 3.4726C6.8672 3.4379 6.94459 3.42029 7.02448 3.42029C7.2272 3.42029 7.41474 3.53684 7.50231 3.71741C7.56305 3.84234 7.57128 3.98318 7.52557 4.1141C7.47931 4.24652 7.38351 4.35307 7.25622 4.41399C7.18367 4.44858 7.10647 4.46608 7.0268 4.46608C6.8239 4.46608 6.63598 4.34934 6.54804 4.1687C6.48739 4.04395 6.47919 3.90314 6.52497 3.77216Z" fill="currentColor"/>
4
+ <path d="M4.61602 3.34364C4.68727 3.35974 4.76018 3.3679 4.83273 3.3679C5.28874 3.3679 5.67835 3.05948 5.78024 2.61746C5.8375 2.36682 5.79346 2.10879 5.65634 1.89082C5.51808 1.67116 5.302 1.51846 5.04807 1.46095C4.97653 1.4447 4.90332 1.43643 4.83044 1.43643C4.37472 1.43643 3.98552 1.74518 3.88396 2.18713C3.82622 2.43759 3.86997 2.69565 4.00712 2.91376C4.14549 3.13372 4.36179 3.28642 4.61602 3.34364ZM4.31572 2.28652C4.37077 2.04688 4.58246 1.87949 4.83044 1.87949C4.87027 1.87949 4.91048 1.88403 4.95002 1.893C5.08854 1.92438 5.2062 2.00741 5.28136 2.12681C5.35542 2.24447 5.3792 2.38365 5.34841 2.51833C5.2941 2.75391 5.0772 2.92488 4.83269 2.92488C4.79297 2.92488 4.75291 2.92037 4.71348 2.91147C4.57493 2.88028 4.45727 2.79732 4.38214 2.67793C4.30823 2.56034 4.28463 2.42138 4.31572 2.28652Z" fill="currentColor"/>
5
+ <path d="M2.85595 3.89638C3.05952 3.73508 3.18752 3.50467 3.21646 3.24761C3.2453 2.99132 3.17209 2.73924 3.00998 2.53748C2.8242 2.30714 2.54706 2.17505 2.24968 2.17505C2.03108 2.17505 1.81633 2.24948 1.64477 2.38478C1.44116 2.5456 1.31309 2.77564 1.28404 3.03252C1.25502 3.28914 1.32841 3.54166 1.49082 3.74375C1.67644 3.97435 1.95363 4.10663 2.25134 4.10663C2.47012 4.10659 2.68487 4.03194 2.85595 3.89638ZM1.83608 3.46602C1.74836 3.35688 1.70867 3.22058 1.72433 3.08221C1.73998 2.94366 1.80931 2.81939 1.91933 2.73244C2.01425 2.65757 2.12851 2.618 2.24972 2.618C2.41245 2.618 2.56393 2.68999 2.6649 2.81518C2.75221 2.92394 2.79179 3.05991 2.77625 3.19802C2.76063 3.33699 2.69122 3.4617 2.58087 3.54912C2.4864 3.62395 2.37243 3.66353 2.25138 3.66353C2.08845 3.66357 1.93709 3.5915 1.83608 3.46602Z" fill="currentColor"/>
6
+ <path d="M11.9153 1.72867C11.877 1.69006 11.8087 1.64402 11.7009 1.64402C11.5745 1.64402 11.2388 1.64402 9.20006 3.37889C9.15908 3.41374 9.11773 3.44908 9.07623 3.48467C8.71196 2.53442 8.07194 1.68725 7.24722 1.07448C6.30159 0.37188 5.17557 0.000295348 3.991 0C3.99063 0 3.99038 0 3.99008 0C3.19065 0 2.21888 0.279326 1.45389 0.729104C0.516158 1.28037 -0.000184543 2.01763 4.94768e-08 2.805C0.000295398 3.75557 0.536426 4.15319 0.967228 4.47264C1.31851 4.73318 1.59595 4.93892 1.5961 5.38985C1.59621 5.84073 1.31891 6.04629 0.967819 6.30657C0.537165 6.62584 0.00114452 7.02323 0.00143987 7.97392C0.00166138 8.76117 0.518336 9.49862 1.45625 10.0504C2.22179 10.5007 3.19408 10.7806 3.99366 10.7808C3.99421 10.7808 3.99469 10.7808 3.99521 10.7808C5.44629 10.7808 6.8104 10.2207 7.83636 9.20368C8.84926 8.1996 9.4126 6.86873 9.4274 5.4505C9.77134 5.05913 10.1045 4.67012 10.4087 4.30356C10.9291 3.67646 11.3293 3.15901 11.5981 2.76564C11.9542 2.24461 12.1101 1.92504 11.9153 1.72867ZM7.52451 8.88906C6.58202 9.82339 5.32878 10.3378 3.99525 10.3378C3.99484 10.3378 3.99425 10.3378 3.99385 10.3378C2.56484 10.3374 0.444868 9.34459 0.444462 7.97377C0.444241 7.24622 0.826716 6.96265 1.23168 6.66243C1.6102 6.38177 2.03923 6.06368 2.03908 5.3897C2.03886 4.71582 1.60972 4.39755 1.23109 4.11678C0.825941 3.8163 0.443244 3.53251 0.443022 2.80488C0.442838 1.96311 1.21695 1.3823 1.67843 1.11099C2.36873 0.705144 3.276 0.442985 3.99008 0.442985C3.99034 0.442985 3.99063 0.442985 3.99086 0.442985C5.07962 0.443281 6.1143 0.784629 6.98303 1.43004C7.78423 2.02535 8.39583 2.86104 8.71798 3.79463C7.75717 4.63357 6.71673 5.60084 5.94189 6.37819C4.65495 6.54477 4.47962 7.40246 4.35144 8.03255C4.24231 8.56905 4.17146 8.82844 3.75735 8.86166C3.6553 8.86986 3.5722 8.94687 3.55629 9.04799C3.54034 9.14907 3.59575 9.24794 3.69034 9.28711C3.71696 9.29811 4.35033 9.55691 5.09033 9.55695C5.09044 9.55695 5.09051 9.55695 5.09058 9.55695C5.60626 9.55695 6.04862 9.43194 6.40533 9.18544C6.84488 8.88167 7.14292 8.40007 7.2927 7.75422C7.79896 7.24201 8.37744 6.62436 8.94946 5.98815C8.8178 7.08352 8.3235 8.09701 7.52451 8.88906ZM6.84765 7.71228C6.61292 8.64248 6.0223 9.114 5.09055 9.11397C5.09055 9.11397 5.0904 9.11397 5.09033 9.11397C4.84463 9.11397 4.60935 9.08044 4.41154 9.03865C4.64782 8.79768 4.72162 8.43507 4.78553 8.12093C4.90725 7.52255 5.02236 6.95626 5.96408 6.82173L6.84765 7.71228ZM9.90657 4.21388C9.02846 5.26004 7.96558 6.43486 7.09061 7.3281L6.95515 7.19158L6.35748 6.58918C7.15079 5.79949 8.16848 4.85789 9.11799 4.03383C9.22867 3.93777 9.33865 3.84292 9.44704 3.75048C10.549 2.81072 11.1264 2.40173 11.421 2.22375C11.2451 2.5201 10.8399 3.10197 9.90657 4.21388Z" fill="currentColor"/>
7
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="16" height="15" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M12.7145 0.400147H2.8385C2.43037 0.399936 2.03133 0.520731 1.69184 0.747262C1.35234 0.973792 1.08763 1.29589 0.931152 1.67284C0.774679 2.04979 0.733473 2.46466 0.812743 2.86503C0.892012 3.26539 1.0882 3.63326 1.3765 3.92215L5.6195 8.16515V13.1001C5.62058 13.3566 5.69752 13.6071 5.84062 13.82C5.98373 14.0328 6.18661 14.1986 6.42373 14.2964C6.66085 14.3943 6.9216 14.4197 7.17317 14.3697C7.42475 14.3196 7.65589 14.1963 7.8375 14.0151L9.4565 12.4001C9.60732 12.2508 9.7269 12.0728 9.80828 11.8768C9.88965 11.6807 9.9312 11.4704 9.9305 11.2581V8.15815L14.1765 3.91615C14.3675 3.72539 14.5189 3.4987 14.6219 3.24914C14.7249 2.99959 14.7774 2.73211 14.7765 2.46215C14.7754 1.91559 14.5579 1.39173 14.1714 1.00526C13.7849 0.618789 13.2611 0.401204 12.7145 0.400147ZM13.4095 3.15715L9.1715 7.40015C9.07035 7.50015 8.99014 7.61931 8.93554 7.75065C8.88094 7.882 8.85305 8.02291 8.8535 8.16515V11.2651C8.85142 11.4076 8.79572 11.544 8.6975 11.6471L7.0815 13.2641C7.04817 13.2903 7.00843 13.307 6.96643 13.3126C6.92444 13.3182 6.88171 13.3124 6.8427 13.2959C6.8037 13.2793 6.76984 13.2526 6.74466 13.2186C6.71947 13.1845 6.70388 13.1443 6.6995 13.1021V8.16515C6.69983 8.02382 6.67186 7.88385 6.61724 7.75349C6.56263 7.62314 6.48247 7.50504 6.3815 7.40615L2.1445 3.15715C2.00588 3.01997 1.91124 2.84462 1.87265 2.65346C1.83406 2.46229 1.85326 2.26396 1.92782 2.08375C2.00237 1.90354 2.12889 1.7496 2.29126 1.64157C2.45362 1.53354 2.64448 1.4763 2.8395 1.47715H12.7145C12.9095 1.4763 13.1004 1.53354 13.2627 1.64157C13.4251 1.7496 13.5516 1.90354 13.6262 2.08375C13.7007 2.26396 13.7199 2.46229 13.6814 2.65346C13.6428 2.84462 13.5481 3.01997 13.4095 3.15715Z"
4
- fill="currentColor" stroke="currentColor" stroke-width="0.5" />
1
+ <svg width="16" height="15" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M12.7145 0.400147H2.8385C2.43037 0.399936 2.03133 0.520731 1.69184 0.747262C1.35234 0.973792 1.08763 1.29589 0.931152 1.67284C0.774679 2.04979 0.733473 2.46466 0.812743 2.86503C0.892012 3.26539 1.0882 3.63326 1.3765 3.92215L5.6195 8.16515V13.1001C5.62058 13.3566 5.69752 13.6071 5.84062 13.82C5.98373 14.0328 6.18661 14.1986 6.42373 14.2964C6.66085 14.3943 6.9216 14.4197 7.17317 14.3697C7.42475 14.3196 7.65589 14.1963 7.8375 14.0151L9.4565 12.4001C9.60732 12.2508 9.7269 12.0728 9.80828 11.8768C9.88965 11.6807 9.9312 11.4704 9.9305 11.2581V8.15815L14.1765 3.91615C14.3675 3.72539 14.5189 3.4987 14.6219 3.24914C14.7249 2.99959 14.7774 2.73211 14.7765 2.46215C14.7754 1.91559 14.5579 1.39173 14.1714 1.00526C13.7849 0.618789 13.2611 0.401204 12.7145 0.400147ZM13.4095 3.15715L9.1715 7.40015C9.07035 7.50015 8.99014 7.61931 8.93554 7.75065C8.88094 7.882 8.85305 8.02291 8.8535 8.16515V11.2651C8.85142 11.4076 8.79572 11.544 8.6975 11.6471L7.0815 13.2641C7.04817 13.2903 7.00843 13.307 6.96643 13.3126C6.92444 13.3182 6.88171 13.3124 6.8427 13.2959C6.8037 13.2793 6.76984 13.2526 6.74466 13.2186C6.71947 13.1845 6.70388 13.1443 6.6995 13.1021V8.16515C6.69983 8.02382 6.67186 7.88385 6.61724 7.75349C6.56263 7.62314 6.48247 7.50504 6.3815 7.40615L2.1445 3.15715C2.00588 3.01997 1.91124 2.84462 1.87265 2.65346C1.83406 2.46229 1.85326 2.26396 1.92782 2.08375C2.00237 1.90354 2.12889 1.7496 2.29126 1.64157C2.45362 1.53354 2.64448 1.4763 2.8395 1.47715H12.7145C12.9095 1.4763 13.1004 1.53354 13.2627 1.64157C13.4251 1.7496 13.5516 1.90354 13.6262 2.08375C13.7007 2.26396 13.7199 2.46229 13.6814 2.65346C13.6428 2.84462 13.5481 3.01997 13.4095 3.15715Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.5" />
5
5
  </svg>
@@ -1,106 +1,106 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.4208 5.36759C15.0727 4.55686 14.3668 3.6815 13.8139 3.40478C14.2082 4.14411 14.4819 4.93812 14.6251 5.75855L14.6266 5.77156C13.7209 3.58546 12.1852 2.7043 10.9309 0.785106C10.8661 0.687267 10.8032 0.588276 10.7422 0.488184C10.7108 0.435902 10.6813 0.38251 10.654 0.328118C10.6019 0.230589 10.5619 0.127516 10.5345 0.0209915C10.5346 0.016076 10.5327 0.0113193 10.5294 0.00762902C10.526 0.00393873 10.5214 0.00157306 10.5163 0.000983305C10.5114 -0.000327768 10.5062 -0.000327768 10.5012 0.000983305C10.5002 0.000983305 10.4986 0.00278405 10.4973 0.00298413L10.4915 0.00618545L10.4946 0.000983305C8.48271 1.14145 7.80008 3.25272 7.73726 4.30876C6.93381 4.36217 6.16564 4.64874 5.53293 5.1311C5.46691 5.07703 5.39792 5.02647 5.32626 4.97963C5.14375 4.36117 5.13597 3.70662 5.30373 3.08425C4.56488 3.43078 3.90836 3.92201 3.37572 4.52685H3.372C3.05456 4.13729 3.07688 2.85276 3.09507 2.58445C3.00116 2.62099 2.91151 2.66706 2.82764 2.7219C2.54741 2.91554 2.28543 3.13281 2.04478 3.37117C1.77055 3.64035 1.52009 3.93128 1.29602 4.24093C0.78105 4.94773 0.415796 5.74609 0.221342 6.5903L0.210595 6.64152C0.181051 6.8024 0.154799 6.96383 0.131855 7.12572C0.131855 7.13152 0.130615 7.13692 0.129995 7.14272C0.0598797 7.49554 0.016433 7.85283 0 8.21176V8.25178C0.00175609 10.1934 0.755792 12.0638 2.11309 13.4933C3.47038 14.9227 5.33217 15.8072 7.33051 15.972C9.32884 16.1368 11.3183 15.5698 12.9058 14.3832C14.4932 13.1965 15.5631 11.4765 15.904 9.56312C15.9174 9.46308 15.9284 9.36404 15.9403 9.263C16.1054 7.94283 15.9267 6.60388 15.4208 5.36759ZM6.1889 11.4377C6.2263 11.4551 6.26144 11.4737 6.29988 11.4905L6.30546 11.4939C6.2666 11.4759 6.22775 11.4572 6.1889 11.4377ZM14.6272 5.77336V5.76596L14.6286 5.77396L14.6272 5.77336Z" fill="url(#paint0_linear_4989_1618)"/>
3
- <path d="M15.4208 5.36729C15.0727 4.55655 14.3668 3.68119 13.8139 3.40448C14.2082 4.14381 14.4819 4.93781 14.6251 5.75825V5.76565L14.6266 5.77366C15.244 7.48411 15.1547 9.35941 14.3773 11.0076C13.4593 12.9144 11.2372 14.8692 7.75896 14.7742C4.00069 14.6711 0.690893 11.971 0.0721273 8.43495C-0.040507 7.87732 0.0721273 7.59461 0.128755 7.14142C0.0515075 7.49344 0.00840198 7.85168 0 8.21146V8.25148C0.00175609 10.1931 0.755792 12.0635 2.11309 13.493C3.47038 14.9224 5.33217 15.8069 7.33051 15.9717C9.32884 16.1365 11.3183 15.5695 12.9058 14.3829C14.4932 13.1962 15.5631 11.4762 15.904 9.56282C15.9174 9.46277 15.9284 9.36373 15.9403 9.26269C16.1054 7.94253 15.9267 6.60357 15.4208 5.36729Z" fill="url(#paint1_radial_4989_1618)"/>
4
- <path d="M15.4208 5.36729C15.0727 4.55655 14.3668 3.68119 13.8139 3.40448C14.2082 4.14381 14.4819 4.93781 14.6251 5.75825V5.76565L14.6266 5.77366C15.244 7.48411 15.1547 9.35941 14.3773 11.0076C13.4593 12.9144 11.2372 14.8692 7.75896 14.7742C4.00069 14.6711 0.690893 11.971 0.0721273 8.43495C-0.040507 7.87732 0.0721273 7.59461 0.128755 7.14142C0.0515075 7.49344 0.00840198 7.85168 0 8.21146V8.25148C0.00175609 10.1931 0.755792 12.0635 2.11309 13.493C3.47038 14.9224 5.33217 15.8069 7.33051 15.9717C9.32884 16.1365 11.3183 15.5695 12.9058 14.3829C14.4932 13.1962 15.5631 11.4762 15.904 9.56282C15.9174 9.46277 15.9284 9.36373 15.9403 9.26269C16.1054 7.94253 15.9267 6.60357 15.4208 5.36729Z" fill="url(#paint2_radial_4989_1618)"/>
5
- <path d="M11.5284 6.27931C11.5458 6.29112 11.5619 6.30292 11.5782 6.31473C11.377 5.96933 11.1266 5.65309 10.8342 5.37534C8.3447 2.96475 10.1818 0.14859 10.4916 0.00553096L10.4947 0.00112915C8.48276 1.1416 7.80013 3.25287 7.7373 4.3089C7.83072 4.3027 7.92331 4.2949 8.01879 4.2949C8.73268 4.29618 9.43349 4.48047 10.0499 4.82903C10.6664 5.17759 11.1765 5.67798 11.5284 6.27931Z" fill="url(#paint3_radial_4989_1618)"/>
6
- <path d="M8.02379 6.76045C8.01057 6.95333 7.30665 7.6186 7.06051 7.6186C4.78282 7.6186 4.41309 8.95255 4.41309 8.95255C4.51394 10.0758 5.32243 11.001 6.29976 11.4904C6.3444 11.5128 6.38966 11.533 6.43492 11.5528C6.51332 11.5864 6.59172 11.6175 6.67011 11.6461C7.00553 11.761 7.35684 11.8266 7.71234 11.8407C11.7046 12.022 12.4779 7.21883 9.59695 5.82506C10.2766 5.73945 10.9649 5.90123 11.5283 6.27905C11.1763 5.67775 10.6662 5.1774 10.0497 4.82888C9.43329 4.48036 8.7325 4.2961 8.01862 4.29483C7.92356 4.29483 7.83056 4.30243 7.73714 4.30864C6.9337 4.36205 6.16553 4.64862 5.53282 5.13097C5.65496 5.23102 5.79281 5.36487 6.08317 5.64199C6.62671 6.1602 8.02069 6.69742 8.02379 6.76045Z" fill="url(#paint4_radial_4989_1618)"/>
7
- <path d="M8.02379 6.76045C8.01057 6.95333 7.30665 7.6186 7.06051 7.6186C4.78282 7.6186 4.41309 8.95255 4.41309 8.95255C4.51394 10.0758 5.32243 11.001 6.29976 11.4904C6.3444 11.5128 6.38966 11.533 6.43492 11.5528C6.51332 11.5864 6.59172 11.6175 6.67011 11.6461C7.00553 11.761 7.35684 11.8266 7.71234 11.8407C11.7046 12.022 12.4779 7.21883 9.59695 5.82506C10.2766 5.73945 10.9649 5.90123 11.5283 6.27905C11.1763 5.67775 10.6662 5.1774 10.0497 4.82888C9.43329 4.48036 8.7325 4.2961 8.01862 4.29483C7.92356 4.29483 7.83056 4.30243 7.73714 4.30864C6.9337 4.36205 6.16553 4.64862 5.53282 5.13097C5.65496 5.23102 5.79281 5.36487 6.08317 5.64199C6.62671 6.1602 8.02069 6.69742 8.02379 6.76045Z" fill="url(#paint5_radial_4989_1618)"/>
8
- <path d="M5.15971 4.87333C5.22461 4.91335 5.27814 4.94817 5.32505 4.97938C5.14258 4.36097 5.1348 3.7065 5.30252 3.0842C4.56367 3.43073 3.90715 3.92195 3.37451 4.52679C3.41357 4.52579 4.57546 4.50558 5.15971 4.87333Z" fill="url(#paint6_radial_4989_1618)"/>
9
- <path d="M0.073037 8.43551C0.691182 11.9718 4.0016 14.6717 7.75987 14.7747C11.2381 14.87 13.4602 12.9152 14.3782 11.0082C15.1555 9.36002 15.2448 7.48481 14.6275 5.77441V5.76701C14.6275 5.76101 14.6262 5.75781 14.6275 5.75961L14.6289 5.77261C14.9131 7.56875 13.9694 9.30887 12.4942 10.4856L12.4897 10.4956C9.61534 12.7619 6.86458 11.8629 6.30781 11.496C6.26896 11.478 6.2301 11.4592 6.19125 11.4397C4.51538 10.6642 3.82304 9.18602 3.97142 7.9183C3.57361 7.92398 3.18263 7.81785 2.84586 7.61276C2.50908 7.40768 2.24097 7.11244 2.074 6.76282C2.51392 6.5019 3.01552 6.3544 3.53102 6.33436C4.04651 6.31433 4.55872 6.42243 5.01882 6.64837C5.9674 7.06528 7.04681 7.10635 8.02626 6.76282C8.02316 6.69979 6.62918 6.16257 6.08564 5.64436C5.79527 5.36725 5.65743 5.23379 5.53529 5.13355C5.46928 5.07942 5.40029 5.02879 5.32862 4.98189C5.28108 4.95047 5.22756 4.91646 5.16328 4.87564C4.57903 4.50789 3.41714 4.5281 3.3787 4.5291H3.37498C3.05754 4.13954 3.07986 2.85501 3.09804 2.5867C3.00413 2.62324 2.91449 2.66932 2.83062 2.72416C2.55038 2.91779 2.28841 3.13506 2.04775 3.37342C1.77254 3.64184 1.52104 3.93211 1.29589 4.24118C0.780927 4.94798 0.415672 5.74634 0.221218 6.59055C0.217292 6.60636 -0.0672909 7.81105 0.073037 8.43551Z" fill="url(#paint7_radial_4989_1618)"/>
10
- <path d="M10.8344 5.3752C11.1269 5.65325 11.3773 5.96983 11.5784 6.31558C11.6225 6.3476 11.6636 6.37961 11.6985 6.41082C13.5145 8.03149 12.563 10.3224 12.4921 10.4855C13.9673 9.30882 14.9101 7.5687 14.6268 5.77256C13.7208 3.58546 12.185 2.7043 10.9307 0.785106C10.866 0.687267 10.8031 0.588276 10.7421 0.488184C10.7106 0.435902 10.6812 0.38251 10.6538 0.328118C10.6018 0.230589 10.5617 0.127516 10.5344 0.0209915C10.5344 0.016076 10.5326 0.0113193 10.5292 0.00762903C10.5258 0.00393873 10.5212 0.00157306 10.5162 0.000983305C10.5112 -0.000327768 10.506 -0.000327768 10.5011 0.000983305C10.5 0.000983305 10.4984 0.00278405 10.4972 0.00298413L10.4914 0.00618545C10.1816 0.148244 8.34449 2.9646 10.8344 5.3752Z" fill="url(#paint8_radial_4989_1618)"/>
11
- <path d="M11.6977 6.40941C11.6592 6.37588 11.6192 6.3441 11.5776 6.31417C11.5613 6.30217 11.5452 6.29056 11.5278 6.27876C10.9644 5.90087 10.2762 5.73901 9.59651 5.82457C12.4775 7.21914 11.7045 12.0217 7.7119 11.8404C7.35639 11.8263 7.00508 11.7607 6.66967 11.6458C6.59127 11.6174 6.51287 11.5863 6.43448 11.5525C6.38922 11.5325 6.34396 11.5125 6.29932 11.4901L6.3049 11.4935C6.86166 11.8615 9.61159 12.7604 12.4868 10.4931L12.4913 10.4831C12.563 10.321 13.5145 8.02948 11.6977 6.40941Z" fill="url(#paint9_radial_4989_1618)"/>
12
- <path d="M4.41333 8.9525C4.41333 8.9525 4.78306 7.61856 7.06076 7.61856C7.3069 7.61856 8.01143 6.95328 8.02404 6.7602C7.04461 7.1038 5.9652 7.06279 5.0166 6.64595C4.55649 6.42001 4.04429 6.31191 3.52879 6.33194C3.0133 6.35198 2.51169 6.49948 2.07178 6.7604C2.23874 7.11002 2.50686 7.40526 2.84363 7.61035C3.18041 7.81543 3.57139 7.92156 3.9692 7.91588C3.82081 9.1838 4.51315 10.662 6.18903 11.4373C6.22643 11.4547 6.26157 11.4733 6.30001 11.4901C5.32185 11.0009 4.51419 10.0756 4.41333 8.9525Z" fill="url(#paint10_radial_4989_1618)"/>
13
- <path d="M15.4208 5.36759C15.0727 4.55686 14.3668 3.6815 13.8139 3.40478C14.2082 4.14411 14.4819 4.93812 14.6251 5.75855L14.6266 5.77156C13.7209 3.58546 12.1852 2.7043 10.9309 0.785106C10.8661 0.687267 10.8032 0.588276 10.7422 0.488184C10.7108 0.435902 10.6813 0.38251 10.654 0.328118C10.6019 0.230589 10.5619 0.127516 10.5345 0.0209915C10.5346 0.016076 10.5327 0.0113193 10.5294 0.00762902C10.526 0.00393873 10.5214 0.00157306 10.5163 0.000983305C10.5114 -0.000327768 10.5062 -0.000327768 10.5012 0.000983305C10.5002 0.000983305 10.4986 0.00278405 10.4973 0.00298413L10.4915 0.00618545L10.4946 0.000983305C8.48271 1.14145 7.80008 3.25272 7.73726 4.30876C7.83067 4.30255 7.92326 4.29475 8.01874 4.29475C8.73263 4.29604 9.43344 4.48033 10.0499 4.82889C10.6664 5.17744 11.1765 5.67783 11.5284 6.27917C10.965 5.90128 10.2767 5.73943 9.59707 5.82498C12.478 7.21956 11.7051 12.0221 7.71246 11.8409C7.35695 11.8267 7.00564 11.7611 6.67023 11.6462C6.59183 11.6178 6.51343 11.5867 6.43504 11.5529C6.38978 11.5329 6.34452 11.5129 6.29988 11.4905L6.30546 11.4939C6.2666 11.4759 6.22775 11.4572 6.1889 11.4377C6.2263 11.4551 6.26144 11.4737 6.29988 11.4905C5.32171 11.0011 4.51405 10.0759 4.4132 8.95267C4.4132 8.95267 4.78293 7.61872 7.06062 7.61872C7.30677 7.61872 8.0113 6.95345 8.0239 6.76037C8.02081 6.69754 6.62683 6.16012 6.08329 5.64191C5.79292 5.36499 5.65507 5.23154 5.53293 5.1313C5.46692 5.07716 5.39793 5.02654 5.32626 4.97963C5.14375 4.36117 5.13597 3.70662 5.30373 3.08425C4.56488 3.43078 3.90836 3.92201 3.37572 4.52685H3.372C3.05456 4.13729 3.07688 2.85276 3.09507 2.58445C3.00116 2.62099 2.91151 2.66706 2.82764 2.7219C2.54741 2.91554 2.28543 3.13281 2.04478 3.37117C1.77055 3.64035 1.52009 3.93128 1.29602 4.24093C0.78105 4.94773 0.415796 5.74609 0.221342 6.5903L0.210595 6.64152C0.195508 6.70955 0.127928 7.05629 0.118214 7.13072C0.118214 7.12472 0.118214 7.13632 0.118214 7.13072C0.056402 7.48844 0.0169256 7.84944 0 8.21176V8.25178C0.00175609 10.1934 0.755792 12.0638 2.11309 13.4933C3.47038 14.9227 5.33217 15.8072 7.33051 15.972C9.32884 16.1368 11.3183 15.5698 12.9058 14.3832C14.4932 13.1965 15.5631 11.4765 15.904 9.56312C15.9174 9.46308 15.9284 9.36404 15.9403 9.263C16.1054 7.94283 15.9267 6.60388 15.4208 5.36759Z" fill="url(#paint11_linear_4989_1618)"/>
14
- <defs>
15
- <linearGradient id="paint0_linear_4989_1618" x1="14.3606" y1="2.4788" x2="1.47928" y2="15.3159" gradientUnits="userSpaceOnUse">
16
- <stop offset="0.048" stop-color="#FFF44F"/>
17
- <stop offset="0.111" stop-color="#FFE847"/>
18
- <stop offset="0.225" stop-color="#FFC830"/>
19
- <stop offset="0.368" stop-color="#FF980E"/>
20
- <stop offset="0.401" stop-color="#FF8B16"/>
21
- <stop offset="0.462" stop-color="#FF672A"/>
22
- <stop offset="0.534" stop-color="#FF3647"/>
23
- <stop offset="0.705" stop-color="#E31587"/>
24
- </linearGradient>
25
- <radialGradient id="paint1_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.7461 1.77541) scale(16.6982 16.1661)">
26
- <stop offset="0.129" stop-color="#FFBD4F"/>
27
- <stop offset="0.186" stop-color="#FFAC31"/>
28
- <stop offset="0.247" stop-color="#FF9D17"/>
29
- <stop offset="0.283" stop-color="#FF980E"/>
30
- <stop offset="0.403" stop-color="#FF563B"/>
31
- <stop offset="0.467" stop-color="#FF3750"/>
32
- <stop offset="0.71" stop-color="#F5156C"/>
33
- <stop offset="0.782" stop-color="#EB0878"/>
34
- <stop offset="0.86" stop-color="#E50080"/>
35
- </radialGradient>
36
- <radialGradient id="paint2_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.64446 8.38453) scale(16.6982 16.1661)">
37
- <stop offset="0.3" stop-color="#960E18"/>
38
- <stop offset="0.351" stop-color="#B11927" stop-opacity="0.74"/>
39
- <stop offset="0.435" stop-color="#DB293D" stop-opacity="0.343"/>
40
- <stop offset="0.497" stop-color="#F5334B" stop-opacity="0.094"/>
41
- <stop offset="0.53" stop-color="#FF3750" stop-opacity="0"/>
42
- </radialGradient>
43
- <radialGradient id="paint3_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.65767 -1.89285) scale(12.0971 11.7116)">
44
- <stop offset="0.132" stop-color="#FFF44F"/>
45
- <stop offset="0.252" stop-color="#FFDC3E"/>
46
- <stop offset="0.506" stop-color="#FF9D12"/>
47
- <stop offset="0.526" stop-color="#FF980E"/>
48
- </radialGradient>
49
- <radialGradient id="paint4_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(5.79735 12.6075) scale(7.95075 7.69737)">
50
- <stop offset="0.353" stop-color="#3A8EE6"/>
51
- <stop offset="0.472" stop-color="#5C79F0"/>
52
- <stop offset="0.669" stop-color="#9059FF"/>
53
- <stop offset="1" stop-color="#C139E6"/>
54
- </radialGradient>
55
- <radialGradient id="paint5_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(8.55683 7.05984) rotate(-13.1738) scale(4.20813 4.78625)">
56
- <stop offset="0.206" stop-color="#9059FF" stop-opacity="0"/>
57
- <stop offset="0.278" stop-color="#8C4FF3" stop-opacity="0.064"/>
58
- <stop offset="0.747" stop-color="#7716A8" stop-opacity="0.45"/>
59
- <stop offset="0.975" stop-color="#6E008B" stop-opacity="0.6"/>
60
- </radialGradient>
61
- <radialGradient id="paint6_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.43389 1.11419) scale(5.71976 5.53748)">
62
- <stop stop-color="#FFE226"/>
63
- <stop offset="0.121" stop-color="#FFDB27"/>
64
- <stop offset="0.295" stop-color="#FFC82A"/>
65
- <stop offset="0.502" stop-color="#FFA930"/>
66
- <stop offset="0.732" stop-color="#FF7E37"/>
67
- <stop offset="0.792" stop-color="#FF7139"/>
68
- </radialGradient>
69
- <radialGradient id="paint7_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.9294 -2.39775) scale(24.4036 23.6259)">
70
- <stop offset="0.113" stop-color="#FFF44F"/>
71
- <stop offset="0.456" stop-color="#FF980E"/>
72
- <stop offset="0.622" stop-color="#FF5634"/>
73
- <stop offset="0.716" stop-color="#FF3647"/>
74
- <stop offset="0.904" stop-color="#E31587"/>
75
- </radialGradient>
76
- <radialGradient id="paint8_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.87252 -1.08435) rotate(83.7792) scale(17.3224 11.7341)">
77
- <stop stop-color="#FFF44F"/>
78
- <stop offset="0.06" stop-color="#FFE847"/>
79
- <stop offset="0.168" stop-color="#FFC830"/>
80
- <stop offset="0.304" stop-color="#FF980E"/>
81
- <stop offset="0.356" stop-color="#FF8B16"/>
82
- <stop offset="0.455" stop-color="#FF672A"/>
83
- <stop offset="0.57" stop-color="#FF3647"/>
84
- <stop offset="0.737" stop-color="#E31587"/>
85
- </radialGradient>
86
- <radialGradient id="paint9_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.29918 3.16487) scale(15.2356 14.7501)">
87
- <stop offset="0.137" stop-color="#FFF44F"/>
88
- <stop offset="0.48" stop-color="#FF980E"/>
89
- <stop offset="0.592" stop-color="#FF5634"/>
90
- <stop offset="0.655" stop-color="#FF3647"/>
91
- <stop offset="0.904" stop-color="#E31587"/>
92
- </radialGradient>
93
- <radialGradient id="paint10_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.3208 4.02848) scale(16.6753 16.1438)">
94
- <stop offset="0.094" stop-color="#FFF44F"/>
95
- <stop offset="0.231" stop-color="#FFE141"/>
96
- <stop offset="0.509" stop-color="#FFAF1E"/>
97
- <stop offset="0.626" stop-color="#FF980E"/>
98
- </radialGradient>
99
- <linearGradient id="paint11_linear_4989_1618" x1="14.2008" y1="2.41238" x2="3.25284" y2="13.7205" gradientUnits="userSpaceOnUse">
100
- <stop offset="0.167" stop-color="#FFF44F" stop-opacity="0.8"/>
101
- <stop offset="0.266" stop-color="#FFF44F" stop-opacity="0.634"/>
102
- <stop offset="0.489" stop-color="#FFF44F" stop-opacity="0.217"/>
103
- <stop offset="0.6" stop-color="#FFF44F" stop-opacity="0"/>
104
- </linearGradient>
105
- </defs>
106
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4208 5.36759C15.0727 4.55686 14.3668 3.6815 13.8139 3.40478C14.2082 4.14411 14.4819 4.93812 14.6251 5.75855L14.6266 5.77156C13.7209 3.58546 12.1852 2.7043 10.9309 0.785106C10.8661 0.687267 10.8032 0.588276 10.7422 0.488184C10.7108 0.435902 10.6813 0.38251 10.654 0.328118C10.6019 0.230589 10.5619 0.127516 10.5345 0.0209915C10.5346 0.016076 10.5327 0.0113193 10.5294 0.00762902C10.526 0.00393873 10.5214 0.00157306 10.5163 0.000983305C10.5114 -0.000327768 10.5062 -0.000327768 10.5012 0.000983305C10.5002 0.000983305 10.4986 0.00278405 10.4973 0.00298413L10.4915 0.00618545L10.4946 0.000983305C8.48271 1.14145 7.80008 3.25272 7.73726 4.30876C6.93381 4.36217 6.16564 4.64874 5.53293 5.1311C5.46691 5.07703 5.39792 5.02647 5.32626 4.97963C5.14375 4.36117 5.13597 3.70662 5.30373 3.08425C4.56488 3.43078 3.90836 3.92201 3.37572 4.52685H3.372C3.05456 4.13729 3.07688 2.85276 3.09507 2.58445C3.00116 2.62099 2.91151 2.66706 2.82764 2.7219C2.54741 2.91554 2.28543 3.13281 2.04478 3.37117C1.77055 3.64035 1.52009 3.93128 1.29602 4.24093C0.78105 4.94773 0.415796 5.74609 0.221342 6.5903L0.210595 6.64152C0.181051 6.8024 0.154799 6.96383 0.131855 7.12572C0.131855 7.13152 0.130615 7.13692 0.129995 7.14272C0.0598797 7.49554 0.016433 7.85283 0 8.21176V8.25178C0.00175609 10.1934 0.755792 12.0638 2.11309 13.4933C3.47038 14.9227 5.33217 15.8072 7.33051 15.972C9.32884 16.1368 11.3183 15.5698 12.9058 14.3832C14.4932 13.1965 15.5631 11.4765 15.904 9.56312C15.9174 9.46308 15.9284 9.36404 15.9403 9.263C16.1054 7.94283 15.9267 6.60388 15.4208 5.36759ZM6.1889 11.4377C6.2263 11.4551 6.26144 11.4737 6.29988 11.4905L6.30546 11.4939C6.2666 11.4759 6.22775 11.4572 6.1889 11.4377ZM14.6272 5.77336V5.76596L14.6286 5.77396L14.6272 5.77336Z" fill="url(#paint0_linear_4989_1618)"/>
3
+ <path d="M15.4208 5.36729C15.0727 4.55655 14.3668 3.68119 13.8139 3.40448C14.2082 4.14381 14.4819 4.93781 14.6251 5.75825V5.76565L14.6266 5.77366C15.244 7.48411 15.1547 9.35941 14.3773 11.0076C13.4593 12.9144 11.2372 14.8692 7.75896 14.7742C4.00069 14.6711 0.690893 11.971 0.0721273 8.43495C-0.040507 7.87732 0.0721273 7.59461 0.128755 7.14142C0.0515075 7.49344 0.00840198 7.85168 0 8.21146V8.25148C0.00175609 10.1931 0.755792 12.0635 2.11309 13.493C3.47038 14.9224 5.33217 15.8069 7.33051 15.9717C9.32884 16.1365 11.3183 15.5695 12.9058 14.3829C14.4932 13.1962 15.5631 11.4762 15.904 9.56282C15.9174 9.46277 15.9284 9.36373 15.9403 9.26269C16.1054 7.94253 15.9267 6.60357 15.4208 5.36729Z" fill="url(#paint1_radial_4989_1618)"/>
4
+ <path d="M15.4208 5.36729C15.0727 4.55655 14.3668 3.68119 13.8139 3.40448C14.2082 4.14381 14.4819 4.93781 14.6251 5.75825V5.76565L14.6266 5.77366C15.244 7.48411 15.1547 9.35941 14.3773 11.0076C13.4593 12.9144 11.2372 14.8692 7.75896 14.7742C4.00069 14.6711 0.690893 11.971 0.0721273 8.43495C-0.040507 7.87732 0.0721273 7.59461 0.128755 7.14142C0.0515075 7.49344 0.00840198 7.85168 0 8.21146V8.25148C0.00175609 10.1931 0.755792 12.0635 2.11309 13.493C3.47038 14.9224 5.33217 15.8069 7.33051 15.9717C9.32884 16.1365 11.3183 15.5695 12.9058 14.3829C14.4932 13.1962 15.5631 11.4762 15.904 9.56282C15.9174 9.46277 15.9284 9.36373 15.9403 9.26269C16.1054 7.94253 15.9267 6.60357 15.4208 5.36729Z" fill="url(#paint2_radial_4989_1618)"/>
5
+ <path d="M11.5284 6.27931C11.5458 6.29112 11.5619 6.30292 11.5782 6.31473C11.377 5.96933 11.1266 5.65309 10.8342 5.37534C8.3447 2.96475 10.1818 0.14859 10.4916 0.00553096L10.4947 0.00112915C8.48276 1.1416 7.80013 3.25287 7.7373 4.3089C7.83072 4.3027 7.92331 4.2949 8.01879 4.2949C8.73268 4.29618 9.43349 4.48047 10.0499 4.82903C10.6664 5.17759 11.1765 5.67798 11.5284 6.27931Z" fill="url(#paint3_radial_4989_1618)"/>
6
+ <path d="M8.02379 6.76045C8.01057 6.95333 7.30665 7.6186 7.06051 7.6186C4.78282 7.6186 4.41309 8.95255 4.41309 8.95255C4.51394 10.0758 5.32243 11.001 6.29976 11.4904C6.3444 11.5128 6.38966 11.533 6.43492 11.5528C6.51332 11.5864 6.59172 11.6175 6.67011 11.6461C7.00553 11.761 7.35684 11.8266 7.71234 11.8407C11.7046 12.022 12.4779 7.21883 9.59695 5.82506C10.2766 5.73945 10.9649 5.90123 11.5283 6.27905C11.1763 5.67775 10.6662 5.1774 10.0497 4.82888C9.43329 4.48036 8.7325 4.2961 8.01862 4.29483C7.92356 4.29483 7.83056 4.30243 7.73714 4.30864C6.9337 4.36205 6.16553 4.64862 5.53282 5.13097C5.65496 5.23102 5.79281 5.36487 6.08317 5.64199C6.62671 6.1602 8.02069 6.69742 8.02379 6.76045Z" fill="url(#paint4_radial_4989_1618)"/>
7
+ <path d="M8.02379 6.76045C8.01057 6.95333 7.30665 7.6186 7.06051 7.6186C4.78282 7.6186 4.41309 8.95255 4.41309 8.95255C4.51394 10.0758 5.32243 11.001 6.29976 11.4904C6.3444 11.5128 6.38966 11.533 6.43492 11.5528C6.51332 11.5864 6.59172 11.6175 6.67011 11.6461C7.00553 11.761 7.35684 11.8266 7.71234 11.8407C11.7046 12.022 12.4779 7.21883 9.59695 5.82506C10.2766 5.73945 10.9649 5.90123 11.5283 6.27905C11.1763 5.67775 10.6662 5.1774 10.0497 4.82888C9.43329 4.48036 8.7325 4.2961 8.01862 4.29483C7.92356 4.29483 7.83056 4.30243 7.73714 4.30864C6.9337 4.36205 6.16553 4.64862 5.53282 5.13097C5.65496 5.23102 5.79281 5.36487 6.08317 5.64199C6.62671 6.1602 8.02069 6.69742 8.02379 6.76045Z" fill="url(#paint5_radial_4989_1618)"/>
8
+ <path d="M5.15971 4.87333C5.22461 4.91335 5.27814 4.94817 5.32505 4.97938C5.14258 4.36097 5.1348 3.7065 5.30252 3.0842C4.56367 3.43073 3.90715 3.92195 3.37451 4.52679C3.41357 4.52579 4.57546 4.50558 5.15971 4.87333Z" fill="url(#paint6_radial_4989_1618)"/>
9
+ <path d="M0.073037 8.43551C0.691182 11.9718 4.0016 14.6717 7.75987 14.7747C11.2381 14.87 13.4602 12.9152 14.3782 11.0082C15.1555 9.36002 15.2448 7.48481 14.6275 5.77441V5.76701C14.6275 5.76101 14.6262 5.75781 14.6275 5.75961L14.6289 5.77261C14.9131 7.56875 13.9694 9.30887 12.4942 10.4856L12.4897 10.4956C9.61534 12.7619 6.86458 11.8629 6.30781 11.496C6.26896 11.478 6.2301 11.4592 6.19125 11.4397C4.51538 10.6642 3.82304 9.18602 3.97142 7.9183C3.57361 7.92398 3.18263 7.81785 2.84586 7.61276C2.50908 7.40768 2.24097 7.11244 2.074 6.76282C2.51392 6.5019 3.01552 6.3544 3.53102 6.33436C4.04651 6.31433 4.55872 6.42243 5.01882 6.64837C5.9674 7.06528 7.04681 7.10635 8.02626 6.76282C8.02316 6.69979 6.62918 6.16257 6.08564 5.64436C5.79527 5.36725 5.65743 5.23379 5.53529 5.13355C5.46928 5.07942 5.40029 5.02879 5.32862 4.98189C5.28108 4.95047 5.22756 4.91646 5.16328 4.87564C4.57903 4.50789 3.41714 4.5281 3.3787 4.5291H3.37498C3.05754 4.13954 3.07986 2.85501 3.09804 2.5867C3.00413 2.62324 2.91449 2.66932 2.83062 2.72416C2.55038 2.91779 2.28841 3.13506 2.04775 3.37342C1.77254 3.64184 1.52104 3.93211 1.29589 4.24118C0.780927 4.94798 0.415672 5.74634 0.221218 6.59055C0.217292 6.60636 -0.0672909 7.81105 0.073037 8.43551Z" fill="url(#paint7_radial_4989_1618)"/>
10
+ <path d="M10.8344 5.3752C11.1269 5.65325 11.3773 5.96983 11.5784 6.31558C11.6225 6.3476 11.6636 6.37961 11.6985 6.41082C13.5145 8.03149 12.563 10.3224 12.4921 10.4855C13.9673 9.30882 14.9101 7.5687 14.6268 5.77256C13.7208 3.58546 12.185 2.7043 10.9307 0.785106C10.866 0.687267 10.8031 0.588276 10.7421 0.488184C10.7106 0.435902 10.6812 0.38251 10.6538 0.328118C10.6018 0.230589 10.5617 0.127516 10.5344 0.0209915C10.5344 0.016076 10.5326 0.0113193 10.5292 0.00762903C10.5258 0.00393873 10.5212 0.00157306 10.5162 0.000983305C10.5112 -0.000327768 10.506 -0.000327768 10.5011 0.000983305C10.5 0.000983305 10.4984 0.00278405 10.4972 0.00298413L10.4914 0.00618545C10.1816 0.148244 8.34449 2.9646 10.8344 5.3752Z" fill="url(#paint8_radial_4989_1618)"/>
11
+ <path d="M11.6977 6.40941C11.6592 6.37588 11.6192 6.3441 11.5776 6.31417C11.5613 6.30217 11.5452 6.29056 11.5278 6.27876C10.9644 5.90087 10.2762 5.73901 9.59651 5.82457C12.4775 7.21914 11.7045 12.0217 7.7119 11.8404C7.35639 11.8263 7.00508 11.7607 6.66967 11.6458C6.59127 11.6174 6.51287 11.5863 6.43448 11.5525C6.38922 11.5325 6.34396 11.5125 6.29932 11.4901L6.3049 11.4935C6.86166 11.8615 9.61159 12.7604 12.4868 10.4931L12.4913 10.4831C12.563 10.321 13.5145 8.02948 11.6977 6.40941Z" fill="url(#paint9_radial_4989_1618)"/>
12
+ <path d="M4.41333 8.9525C4.41333 8.9525 4.78306 7.61856 7.06076 7.61856C7.3069 7.61856 8.01143 6.95328 8.02404 6.7602C7.04461 7.1038 5.9652 7.06279 5.0166 6.64595C4.55649 6.42001 4.04429 6.31191 3.52879 6.33194C3.0133 6.35198 2.51169 6.49948 2.07178 6.7604C2.23874 7.11002 2.50686 7.40526 2.84363 7.61035C3.18041 7.81543 3.57139 7.92156 3.9692 7.91588C3.82081 9.1838 4.51315 10.662 6.18903 11.4373C6.22643 11.4547 6.26157 11.4733 6.30001 11.4901C5.32185 11.0009 4.51419 10.0756 4.41333 8.9525Z" fill="url(#paint10_radial_4989_1618)"/>
13
+ <path d="M15.4208 5.36759C15.0727 4.55686 14.3668 3.6815 13.8139 3.40478C14.2082 4.14411 14.4819 4.93812 14.6251 5.75855L14.6266 5.77156C13.7209 3.58546 12.1852 2.7043 10.9309 0.785106C10.8661 0.687267 10.8032 0.588276 10.7422 0.488184C10.7108 0.435902 10.6813 0.38251 10.654 0.328118C10.6019 0.230589 10.5619 0.127516 10.5345 0.0209915C10.5346 0.016076 10.5327 0.0113193 10.5294 0.00762902C10.526 0.00393873 10.5214 0.00157306 10.5163 0.000983305C10.5114 -0.000327768 10.5062 -0.000327768 10.5012 0.000983305C10.5002 0.000983305 10.4986 0.00278405 10.4973 0.00298413L10.4915 0.00618545L10.4946 0.000983305C8.48271 1.14145 7.80008 3.25272 7.73726 4.30876C7.83067 4.30255 7.92326 4.29475 8.01874 4.29475C8.73263 4.29604 9.43344 4.48033 10.0499 4.82889C10.6664 5.17744 11.1765 5.67783 11.5284 6.27917C10.965 5.90128 10.2767 5.73943 9.59707 5.82498C12.478 7.21956 11.7051 12.0221 7.71246 11.8409C7.35695 11.8267 7.00564 11.7611 6.67023 11.6462C6.59183 11.6178 6.51343 11.5867 6.43504 11.5529C6.38978 11.5329 6.34452 11.5129 6.29988 11.4905L6.30546 11.4939C6.2666 11.4759 6.22775 11.4572 6.1889 11.4377C6.2263 11.4551 6.26144 11.4737 6.29988 11.4905C5.32171 11.0011 4.51405 10.0759 4.4132 8.95267C4.4132 8.95267 4.78293 7.61872 7.06062 7.61872C7.30677 7.61872 8.0113 6.95345 8.0239 6.76037C8.02081 6.69754 6.62683 6.16012 6.08329 5.64191C5.79292 5.36499 5.65507 5.23154 5.53293 5.1313C5.46692 5.07716 5.39793 5.02654 5.32626 4.97963C5.14375 4.36117 5.13597 3.70662 5.30373 3.08425C4.56488 3.43078 3.90836 3.92201 3.37572 4.52685H3.372C3.05456 4.13729 3.07688 2.85276 3.09507 2.58445C3.00116 2.62099 2.91151 2.66706 2.82764 2.7219C2.54741 2.91554 2.28543 3.13281 2.04478 3.37117C1.77055 3.64035 1.52009 3.93128 1.29602 4.24093C0.78105 4.94773 0.415796 5.74609 0.221342 6.5903L0.210595 6.64152C0.195508 6.70955 0.127928 7.05629 0.118214 7.13072C0.118214 7.12472 0.118214 7.13632 0.118214 7.13072C0.056402 7.48844 0.0169256 7.84944 0 8.21176V8.25178C0.00175609 10.1934 0.755792 12.0638 2.11309 13.4933C3.47038 14.9227 5.33217 15.8072 7.33051 15.972C9.32884 16.1368 11.3183 15.5698 12.9058 14.3832C14.4932 13.1965 15.5631 11.4765 15.904 9.56312C15.9174 9.46308 15.9284 9.36404 15.9403 9.263C16.1054 7.94283 15.9267 6.60388 15.4208 5.36759Z" fill="url(#paint11_linear_4989_1618)"/>
14
+ <defs>
15
+ <linearGradient id="paint0_linear_4989_1618" x1="14.3606" y1="2.4788" x2="1.47928" y2="15.3159" gradientUnits="userSpaceOnUse">
16
+ <stop offset="0.048" stop-color="#FFF44F"/>
17
+ <stop offset="0.111" stop-color="#FFE847"/>
18
+ <stop offset="0.225" stop-color="#FFC830"/>
19
+ <stop offset="0.368" stop-color="#FF980E"/>
20
+ <stop offset="0.401" stop-color="#FF8B16"/>
21
+ <stop offset="0.462" stop-color="#FF672A"/>
22
+ <stop offset="0.534" stop-color="#FF3647"/>
23
+ <stop offset="0.705" stop-color="#E31587"/>
24
+ </linearGradient>
25
+ <radialGradient id="paint1_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.7461 1.77541) scale(16.6982 16.1661)">
26
+ <stop offset="0.129" stop-color="#FFBD4F"/>
27
+ <stop offset="0.186" stop-color="#FFAC31"/>
28
+ <stop offset="0.247" stop-color="#FF9D17"/>
29
+ <stop offset="0.283" stop-color="#FF980E"/>
30
+ <stop offset="0.403" stop-color="#FF563B"/>
31
+ <stop offset="0.467" stop-color="#FF3750"/>
32
+ <stop offset="0.71" stop-color="#F5156C"/>
33
+ <stop offset="0.782" stop-color="#EB0878"/>
34
+ <stop offset="0.86" stop-color="#E50080"/>
35
+ </radialGradient>
36
+ <radialGradient id="paint2_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.64446 8.38453) scale(16.6982 16.1661)">
37
+ <stop offset="0.3" stop-color="#960E18"/>
38
+ <stop offset="0.351" stop-color="#B11927" stop-opacity="0.74"/>
39
+ <stop offset="0.435" stop-color="#DB293D" stop-opacity="0.343"/>
40
+ <stop offset="0.497" stop-color="#F5334B" stop-opacity="0.094"/>
41
+ <stop offset="0.53" stop-color="#FF3750" stop-opacity="0"/>
42
+ </radialGradient>
43
+ <radialGradient id="paint3_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.65767 -1.89285) scale(12.0971 11.7116)">
44
+ <stop offset="0.132" stop-color="#FFF44F"/>
45
+ <stop offset="0.252" stop-color="#FFDC3E"/>
46
+ <stop offset="0.506" stop-color="#FF9D12"/>
47
+ <stop offset="0.526" stop-color="#FF980E"/>
48
+ </radialGradient>
49
+ <radialGradient id="paint4_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(5.79735 12.6075) scale(7.95075 7.69737)">
50
+ <stop offset="0.353" stop-color="#3A8EE6"/>
51
+ <stop offset="0.472" stop-color="#5C79F0"/>
52
+ <stop offset="0.669" stop-color="#9059FF"/>
53
+ <stop offset="1" stop-color="#C139E6"/>
54
+ </radialGradient>
55
+ <radialGradient id="paint5_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(8.55683 7.05984) rotate(-13.1738) scale(4.20813 4.78625)">
56
+ <stop offset="0.206" stop-color="#9059FF" stop-opacity="0"/>
57
+ <stop offset="0.278" stop-color="#8C4FF3" stop-opacity="0.064"/>
58
+ <stop offset="0.747" stop-color="#7716A8" stop-opacity="0.45"/>
59
+ <stop offset="0.975" stop-color="#6E008B" stop-opacity="0.6"/>
60
+ </radialGradient>
61
+ <radialGradient id="paint6_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.43389 1.11419) scale(5.71976 5.53748)">
62
+ <stop stop-color="#FFE226"/>
63
+ <stop offset="0.121" stop-color="#FFDB27"/>
64
+ <stop offset="0.295" stop-color="#FFC82A"/>
65
+ <stop offset="0.502" stop-color="#FFA930"/>
66
+ <stop offset="0.732" stop-color="#FF7E37"/>
67
+ <stop offset="0.792" stop-color="#FF7139"/>
68
+ </radialGradient>
69
+ <radialGradient id="paint7_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.9294 -2.39775) scale(24.4036 23.6259)">
70
+ <stop offset="0.113" stop-color="#FFF44F"/>
71
+ <stop offset="0.456" stop-color="#FF980E"/>
72
+ <stop offset="0.622" stop-color="#FF5634"/>
73
+ <stop offset="0.716" stop-color="#FF3647"/>
74
+ <stop offset="0.904" stop-color="#E31587"/>
75
+ </radialGradient>
76
+ <radialGradient id="paint8_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.87252 -1.08435) rotate(83.7792) scale(17.3224 11.7341)">
77
+ <stop stop-color="#FFF44F"/>
78
+ <stop offset="0.06" stop-color="#FFE847"/>
79
+ <stop offset="0.168" stop-color="#FFC830"/>
80
+ <stop offset="0.304" stop-color="#FF980E"/>
81
+ <stop offset="0.356" stop-color="#FF8B16"/>
82
+ <stop offset="0.455" stop-color="#FF672A"/>
83
+ <stop offset="0.57" stop-color="#FF3647"/>
84
+ <stop offset="0.737" stop-color="#E31587"/>
85
+ </radialGradient>
86
+ <radialGradient id="paint9_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(7.29918 3.16487) scale(15.2356 14.7501)">
87
+ <stop offset="0.137" stop-color="#FFF44F"/>
88
+ <stop offset="0.48" stop-color="#FF980E"/>
89
+ <stop offset="0.592" stop-color="#FF5634"/>
90
+ <stop offset="0.655" stop-color="#FF3647"/>
91
+ <stop offset="0.904" stop-color="#E31587"/>
92
+ </radialGradient>
93
+ <radialGradient id="paint10_radial_4989_1618" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.3208 4.02848) scale(16.6753 16.1438)">
94
+ <stop offset="0.094" stop-color="#FFF44F"/>
95
+ <stop offset="0.231" stop-color="#FFE141"/>
96
+ <stop offset="0.509" stop-color="#FFAF1E"/>
97
+ <stop offset="0.626" stop-color="#FF980E"/>
98
+ </radialGradient>
99
+ <linearGradient id="paint11_linear_4989_1618" x1="14.2008" y1="2.41238" x2="3.25284" y2="13.7205" gradientUnits="userSpaceOnUse">
100
+ <stop offset="0.167" stop-color="#FFF44F" stop-opacity="0.8"/>
101
+ <stop offset="0.266" stop-color="#FFF44F" stop-opacity="0.634"/>
102
+ <stop offset="0.489" stop-color="#FFF44F" stop-opacity="0.217"/>
103
+ <stop offset="0.6" stop-color="#FFF44F" stop-opacity="0"/>
104
+ </linearGradient>
105
+ </defs>
106
+ </svg>