pixel-react 1.6.6 → 1.6.8
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.
- package/.prettierrc.js +13 -13
- package/.storybook/main.ts +26 -26
- package/.storybook/preview-head.html +2 -2
- package/.storybook/preview.ts +26 -26
- package/.yarnrc.yml +1 -1
- package/README.md +75 -75
- package/index.scss +4 -4
- package/lib/1fb4472b34e4fe07.css +1 -0
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/components/Accordion/Accordion.d.ts +1 -1
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/Accordion/types.d.ts +12 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AppHeader/types.d.ts +2 -0
- package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
- package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
- package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
- package/lib/components/Button/Button.stories.d.ts +13 -0
- package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
- package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +6 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
- package/lib/components/Chip/Chip.stories.d.ts +14 -0
- package/lib/components/Comment/Comments.d.ts +4 -0
- package/lib/components/Comment/comment/Comment.d.ts +11 -0
- package/lib/components/Comment/comment/useNode.d.ts +7 -0
- package/lib/components/Comment/index.d.ts +1 -0
- package/lib/components/Comment/type.d.ts +25 -0
- package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
- package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
- package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
- package/lib/components/ExcelFile/Types.d.ts +129 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
- package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
- package/lib/components/FileDropzone/RadioFilePreview.d.ts +4 -0
- package/lib/components/FileDropzone/types.d.ts +61 -0
- package/lib/components/Form/Form.stories.d.ts +7 -0
- package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
- package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
- package/lib/components/Icon/Icon.stories.d.ts +8 -0
- package/lib/components/IconButton/IconButton.d.ts +1 -2
- package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
- package/lib/components/IconButton/types.d.ts +1 -1
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/Input/Input.stories.d.ts +9 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
- package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
- package/lib/components/MenuOption/types.d.ts +3 -2
- package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
- package/lib/components/Modal/Modal.stories.d.ts +7 -0
- package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
- package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/Paper/Paper.stories.d.ts +11 -0
- package/lib/components/PhoneInput/PhoneInput.d.ts +6 -0
- package/lib/components/PhoneInput/index.d.ts +1 -0
- package/lib/components/PhoneInput/types.d.ts +10 -0
- package/lib/components/PopUpModal/types.d.ts +1 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/lib/components/Search/Search.d.ts +1 -1
- package/lib/components/Search/Search.stories.d.ts +6 -0
- package/lib/components/Search/types.d.ts +4 -0
- package/lib/components/Select/Select.stories.d.ts +14 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
- package/lib/components/Table/Table.stories.d.ts +13 -0
- package/lib/components/Table/Types.d.ts +1 -1
- package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
- package/lib/components/TableWithAccordion/TableWithAccordion.d.ts +5 -0
- package/lib/components/TableWithAccordion/data.d.ts +8 -0
- package/lib/components/TableWithAccordion/index.d.ts +1 -0
- package/lib/components/TableWithAccordion/types.d.ts +67 -0
- package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
- package/lib/components/Tabs/types.d.ts +1 -0
- package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
- package/lib/components/Toast/Toast.stories.d.ts +6 -0
- package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
- package/lib/components/Typography/Typography.stories.d.ts +10 -0
- package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
- package/lib/index.d.ts +225 -31
- package/lib/index.esm.js +3251 -600
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3255 -599
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/FormatString/FormatString.d.ts +1 -0
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
- package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
- package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
- package/lib/utils/debounce/debounce.stories.d.ts +6 -0
- package/lib/utils/ffID/ffID.stories.d.ts +6 -0
- package/lib/utils/find/findAndInsert.d.ts +7 -0
- package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
- package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
- package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/package.json +81 -80
- package/rollup.config.mjs +67 -67
- package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
- package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
- package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
- package/src/StyleGuide/ColorPalette/colorPaletteList.ts +294 -279
- package/src/StyleGuide/ColorPalette/index.ts +1 -1
- package/src/StyleGuide/ColorPalette/types.ts +19 -19
- package/src/StyleGuide/Typography/Typography.scss +99 -99
- package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
- package/src/StyleGuide/Typography/Typography.tsx +60 -60
- package/src/StyleGuide/Typography/TypographyList.ts +3 -3
- package/src/StyleGuide/Typography/types.ts +9 -9
- package/src/assets/Themes/BaseTheme.scss +281 -270
- package/src/assets/Themes/DarkTheme.scss +288 -265
- package/src/assets/Themes/Theme.scss +16 -16
- package/src/assets/icons/Arrow.svg +4 -4
- package/src/assets/icons/Header_preset.svg +18 -18
- package/src/assets/icons/accordion_header_icon.svg +10 -10
- package/src/assets/icons/active_license_icon.svg +3 -3
- package/src/assets/icons/add_archive.svg +9 -9
- package/src/assets/icons/add_file.svg +4 -17
- package/src/assets/icons/add_label_icon.svg +3 -3
- package/src/assets/icons/add_locator.svg +4 -4
- package/src/assets/icons/add_testcase.svg +3 -3
- package/src/assets/icons/add_user.svg +9 -9
- package/src/assets/icons/add_variable.svg +11 -11
- package/src/assets/icons/add_variable_icon.svg +4 -4
- package/src/assets/icons/alert.svg +17 -17
- package/src/assets/icons/all_borders.svg +3 -3
- package/src/assets/icons/all_projects.svg +3 -3
- package/src/assets/icons/android.svg +9 -9
- package/src/assets/icons/android_icon.svg +6 -6
- package/src/assets/icons/apk_file_type.svg +4 -4
- package/src/assets/icons/app_switch.svg +11 -11
- package/src/assets/icons/arrow_down.svg +3 -3
- package/src/assets/icons/arrow_right.svg +4 -4
- package/src/assets/icons/arrow_up.svg +3 -3
- package/src/assets/icons/arrows_down_icon.svg +3 -3
- package/src/assets/icons/arrows_right_icon.svg +10 -10
- package/src/assets/icons/arrows_top_icon.svg +3 -3
- package/src/assets/icons/attachment_icon.svg +3 -3
- package/src/assets/icons/authorization.svg +4 -0
- package/src/assets/icons/authorization_icon.svg +4 -4
- package/src/assets/icons/automation_testcase.svg +4 -4
- package/src/assets/icons/back_icon.svg +3 -3
- package/src/assets/icons/backward.svg +10 -10
- package/src/assets/icons/backward_icon.svg +3 -3
- package/src/assets/icons/beautify_icon.svg +3 -3
- package/src/assets/icons/bold.svg +3 -3
- package/src/assets/icons/border_bottom.svg +3 -3
- package/src/assets/icons/border_left.svg +3 -3
- package/src/assets/icons/border_right.svg +3 -3
- package/src/assets/icons/border_top.svg +3 -3
- package/src/assets/icons/browser_stack.svg +9 -9
- package/src/assets/icons/browserstack_icon.svg +24 -24
- package/src/assets/icons/calendar_icon.svg +9 -9
- package/src/assets/icons/capture_icon.svg +2 -2
- package/src/assets/icons/check_mark.svg +3 -3
- package/src/assets/icons/chrome.svg +12 -12
- package/src/assets/icons/client_profile.svg +4 -4
- package/src/assets/icons/clock_icon.svg +11 -11
- package/src/assets/icons/clone_icon.svg +3 -3
- package/src/assets/icons/close_pill.svg +3 -3
- package/src/assets/icons/cloud_server_host_icon.svg +3 -3
- package/src/assets/icons/collapse-icon.svg +6 -6
- package/src/assets/icons/compressed_file_type.svg +4 -4
- package/src/assets/icons/continue_without_sign.svg +3 -3
- package/src/assets/icons/copy-icon.svg +3 -3
- package/src/assets/icons/csv_file_type.svg +4 -4
- package/src/assets/icons/dashboard_icon.svg +31 -31
- package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
- package/src/assets/icons/dashboard_web_icon.svg +9 -9
- package/src/assets/icons/data_provider.svg +8 -8
- package/src/assets/icons/dataset_list.svg +3 -3
- package/src/assets/icons/delete.svg +3 -3
- package/src/assets/icons/delete_info.svg +17 -17
- package/src/assets/icons/depends_on_script.svg +7 -0
- package/src/assets/icons/details.svg +3 -3
- package/src/assets/icons/double_underline.svg +5 -5
- package/src/assets/icons/download-icon.svg +3 -3
- package/src/assets/icons/download_file_icon.svg +3 -3
- package/src/assets/icons/download_icon.svg +4 -4
- package/src/assets/icons/drag_icon.svg +4 -4
- package/src/assets/icons/drawer_maximize.svg +6 -6
- package/src/assets/icons/dropzone_icon.svg +18 -18
- package/src/assets/icons/edge.svg +30 -30
- package/src/assets/icons/edit_icon.svg +5 -5
- package/src/assets/icons/email_group.svg +3 -0
- package/src/assets/icons/error.svg +17 -17
- package/src/assets/icons/excel_corner_menu.svg +3 -3
- package/src/assets/icons/executions_icon.svg +3 -0
- package/src/assets/icons/expand-icon.svg +6 -6
- package/src/assets/icons/export.svg +4 -4
- package/src/assets/icons/export_collection_icon.svg +13 -13
- package/src/assets/icons/eye_closed.svg +3 -3
- package/src/assets/icons/eye_open_icon.svg +3 -3
- package/src/assets/icons/failed_status_icon.svg +12 -12
- package/src/assets/icons/file.svg +11 -11
- package/src/assets/icons/fill_color.svg +7 -7
- package/src/assets/icons/filter.svg +4 -4
- package/src/assets/icons/fire_fox.svg +106 -106
- package/src/assets/icons/fireflink_finder_logo.svg +7 -7
- package/src/assets/icons/fireflink_icon.svg +4 -4
- package/src/assets/icons/fireflink_logo.svg +13 -13
- package/src/assets/icons/fireflink_platform.svg +4 -4
- package/src/assets/icons/firefox.svg +84 -84
- package/src/assets/icons/flaky_status_icon.svg +12 -12
- package/src/assets/icons/formate_painter.svg +5 -5
- package/src/assets/icons/formula_icon.svg +3 -3
- package/src/assets/icons/forward.svg +3 -3
- package/src/assets/icons/forward_icon.svg +3 -3
- package/src/assets/icons/full_access_icon.svg +4 -4
- package/src/assets/icons/gif_file_type.svg +4 -4
- package/src/assets/icons/global_variable_icon.svg +4 -4
- package/src/assets/icons/hamburger_menu.svg +3 -3
- package/src/assets/icons/hide_access_icon.svg +3 -3
- package/src/assets/icons/hide_icon.svg +9 -9
- package/src/assets/icons/history_icon.svg +19 -19
- package/src/assets/icons/html_file_type.svg +4 -4
- package/src/assets/icons/impactList.svg +6 -6
- package/src/assets/icons/import.svg +4 -4
- package/src/assets/icons/info.svg +17 -17
- package/src/assets/icons/info_icon.svg +5 -5
- package/src/assets/icons/info_user.svg +5 -5
- package/src/assets/icons/internet_explorer.svg +3 -3
- package/src/assets/icons/ipk_file_type.svg +4 -4
- package/src/assets/icons/italic.svg +3 -3
- package/src/assets/icons/jira.svg +3 -3
- package/src/assets/icons/jpg_file_type.svg +4 -4
- package/src/assets/icons/json_file_type.svg +4 -4
- package/src/assets/icons/label_icon.svg +8 -8
- package/src/assets/icons/label_plus.svg +3 -3
- package/src/assets/icons/labels.svg +8 -0
- package/src/assets/icons/lambda_icon.svg +3 -3
- package/src/assets/icons/left_arrow_icon.svg +3 -3
- package/src/assets/icons/license_expired.svg +20 -20
- package/src/assets/icons/license_info.svg +28 -28
- package/src/assets/icons/license_warning.svg +10 -10
- package/src/assets/icons/link_expired.svg +186 -186
- package/src/assets/icons/linked_defects.svg +11 -11
- package/src/assets/icons/linux.svg +42 -42
- package/src/assets/icons/local.svg +3 -3
- package/src/assets/icons/local_variable_icon.svg +4 -4
- package/src/assets/icons/logo.svg +17 -17
- package/src/assets/icons/mac.svg +9 -9
- package/src/assets/icons/machine_disable_icon.svg +18 -0
- package/src/assets/icons/machine_enable_icon.svg +10 -0
- package/src/assets/icons/manage_apps.svg +3 -3
- package/src/assets/icons/manual_locator.svg +7 -7
- package/src/assets/icons/manual_testcase.svg +3 -3
- package/src/assets/icons/maximize_icon.svg +5 -5
- package/src/assets/icons/maximize_script.svg +12 -12
- package/src/assets/icons/maximize_tree.svg +3 -3
- package/src/assets/icons/minimize_script.svg +5 -5
- package/src/assets/icons/mobile_icon.svg +3 -3
- package/src/assets/icons/moon_stars.svg +10 -10
- package/src/assets/icons/more.svg +10 -10
- package/src/assets/icons/move_icon.svg +5 -5
- package/src/assets/icons/ms_dynamic.svg +4 -4
- package/src/assets/icons/ms_dynamic_icon.svg +15 -15
- package/src/assets/icons/nlp_help_icon.svg +3 -3
- package/src/assets/icons/no_access_icon.svg +4 -4
- package/src/assets/icons/no_border.svg +3 -3
- package/src/assets/icons/no_data.svg +13 -13
- package/src/assets/icons/no_license_found.svg +22 -22
- package/src/assets/icons/notification_icon.svg +3 -3
- package/src/assets/icons/opera.svg +9 -9
- package/src/assets/icons/parameters.svg +3 -0
- package/src/assets/icons/passed_status_icon.svg +12 -12
- package/src/assets/icons/pdf_file_type.svg +4 -4
- package/src/assets/icons/plus_icon.svg +11 -11
- package/src/assets/icons/plus_user_icon.svg +3 -3
- package/src/assets/icons/png_file_type.svg +4 -4
- package/src/assets/icons/pre_post_condition.svg +8 -0
- package/src/assets/icons/program_element.svg +8 -0
- package/src/assets/icons/project_env_variable_icon.svg +4 -4
- package/src/assets/icons/project_status_icon.svg +10 -10
- package/src/assets/icons/quick_run_setting_icon.svg +5 -5
- package/src/assets/icons/refresh-icon.svg +4 -4
- package/src/assets/icons/refresh_icon.svg +4 -4
- package/src/assets/icons/reload.svg +3 -3
- package/src/assets/icons/remove.svg +11 -11
- package/src/assets/icons/remove_user.svg +3 -3
- package/src/assets/icons/replace.svg +11 -11
- package/src/assets/icons/replace_file.svg +13 -13
- package/src/assets/icons/replace_icon.svg +6 -6
- package/src/assets/icons/reset-link.svg +52 -52
- package/src/assets/icons/right_arrow_icon.svg +4 -4
- package/src/assets/icons/rotate_icon.svg +10 -10
- package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
- package/src/assets/icons/run_icon.svg +26 -26
- package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
- package/src/assets/icons/safari.svg +93 -93
- package/src/assets/icons/safari_icon.svg +12 -12
- package/src/assets/icons/sales_force.svg +7 -7
- package/src/assets/icons/salesforce_icon.svg +14 -14
- package/src/assets/icons/sample_template_first.svg +29 -29
- package/src/assets/icons/sample_template_second.svg +47 -47
- package/src/assets/icons/sause_lab.svg +3 -3
- package/src/assets/icons/save_as_step.svg +3 -3
- package/src/assets/icons/search.svg +3 -3
- package/src/assets/icons/send_step.svg +4 -4
- package/src/assets/icons/skipped_status_icon.svg +12 -12
- package/src/assets/icons/standard_template.svg +30 -30
- package/src/assets/icons/strike_through.svg +3 -3
- package/src/assets/icons/success.svg +17 -17
- package/src/assets/icons/suites_icon.svg +3 -0
- package/src/assets/icons/sun_icon.svg +10 -10
- package/src/assets/icons/swipe_icon.svg +9 -9
- package/src/assets/icons/switch_license_icon.svg +123 -123
- package/src/assets/icons/system_warning.svg +61 -61
- package/src/assets/icons/tap_icon.svg +3 -3
- package/src/assets/icons/test_data.svg +5 -0
- package/src/assets/icons/test_data_set.svg +7 -0
- package/src/assets/icons/text_align_center.svg +3 -3
- package/src/assets/icons/text_align_left.svg +3 -3
- package/src/assets/icons/text_align_right.svg +3 -3
- package/src/assets/icons/text_color.svg +3 -3
- package/src/assets/icons/tick_icon.svg +4 -4
- package/src/assets/icons/toast_close.svg +3 -3
- package/src/assets/icons/txt_file_type.svg +4 -4
- package/src/assets/icons/underline.svg +4 -4
- package/src/assets/icons/update_icon.svg +3 -3
- package/src/assets/icons/user_password_lock.svg +220 -220
- package/src/assets/icons/user_profile.svg +3 -3
- package/src/assets/icons/user_warning.svg +235 -235
- package/src/assets/icons/user_with_system.svg +637 -637
- package/src/assets/icons/variable_icon.svg +4 -4
- package/src/assets/icons/variable_set.svg +5 -0
- package/src/assets/icons/vertical_separator.svg +3 -3
- package/src/assets/icons/view_access_icon.svg +4 -4
- package/src/assets/icons/view_icon.svg +3 -3
- package/src/assets/icons/warning.svg +17 -17
- package/src/assets/icons/warning_status_icon.svg +12 -12
- package/src/assets/icons/web&mobile_icon.svg +3 -3
- package/src/assets/icons/web_icon.svg +3 -3
- package/src/assets/icons/web_mobile_icon.svg +29 -29
- package/src/assets/icons/web_services_icon.svg +30 -30
- package/src/assets/icons/window_maximize.svg +3 -4
- package/src/assets/icons/window_minimize.svg +3 -3
- package/src/assets/icons/window_restore.svg +4 -0
- package/src/assets/icons/windows.svg +10 -10
- package/src/assets/icons/wrong_mark.svg +3 -3
- package/src/assets/icons/wswb_delete_icon.svg +3 -3
- package/src/assets/icons/wswb_plus_icon.svg +4 -4
- package/src/assets/icons/xls_file_type.svg +4 -4
- package/src/assets/icons/xlsx_file_type.svg +4 -4
- package/src/assets/icons/xml_file_type.svg +4 -4
- package/src/assets/styles/_colors.scss +151 -151
- package/src/assets/styles/_fonts.scss +45 -45
- package/src/assets/styles/_mixins.scss +21 -21
- package/src/assets/utils/functionUtils.ts +96 -96
- package/src/components/Accordion/Accordion.scss +46 -46
- package/src/components/Accordion/Accordion.stories.tsx +35 -31
- package/src/components/Accordion/Accordion.tsx +68 -62
- package/src/components/Accordion/index.ts +1 -1
- package/src/components/Accordion/types.ts +40 -28
- package/src/components/AddResourceButton/AddButton.scss +36 -36
- package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
- package/src/components/AddResourceButton/AddButton.tsx +121 -121
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
- package/src/components/AddResourceButton/index.ts +1 -1
- package/src/components/AddResourceButton/type.ts +92 -92
- package/src/components/AddVariables/AddVariables.scss +14 -14
- package/src/components/AddVariables/AddVariables.stories.tsx +44 -44
- package/src/components/AddVariables/AddVariables.tsx +113 -113
- package/src/components/AddVariables/index.ts +1 -1
- package/src/components/AddVariables/types.ts +36 -36
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
- package/src/components/AllProjectsDropdown/types.ts +12 -12
- package/src/components/AppHeader/AppHeader.scss +215 -182
- package/src/components/AppHeader/AppHeader.stories.tsx +553 -425
- package/src/components/AppHeader/AppHeader.tsx +197 -198
- package/src/components/AppHeader/index.ts +1 -1
- package/src/components/AppHeader/types.ts +54 -52
- package/src/components/AttachImage/AttachImage.scss +76 -76
- package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
- package/src/components/AttachImage/AttachImage.tsx +60 -60
- package/src/components/AttachImage/index.ts +2 -2
- package/src/components/AttachImage/types.ts +26 -26
- package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
- package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
- package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
- package/src/components/AttachmentButton/types.ts +13 -13
- package/src/components/Avatar/Avatar.scss +27 -27
- package/src/components/Avatar/Avatar.stories.tsx +76 -76
- package/src/components/Avatar/Avatar.tsx +41 -41
- package/src/components/Avatar/types.ts +35 -35
- package/src/components/Button/Button.scss +155 -155
- package/src/components/Button/Button.stories.tsx +81 -81
- package/src/components/Button/Button.tsx +73 -73
- package/src/components/Button/index.ts +1 -1
- package/src/components/Button/types.ts +69 -69
- package/src/components/Charts/BarChart/BarChart.scss +69 -66
- package/src/components/Charts/BarChart/BarChart.stories.tsx +67 -67
- package/src/components/Charts/BarChart/BarChart.tsx +342 -328
- package/src/components/Charts/BarChart/types.ts +12 -12
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +164 -157
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +55 -54
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +531 -502
- package/src/components/Charts/DashboardDonutChart/types.ts +58 -52
- package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
- package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
- package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
- package/src/components/Charts/DonutChart/index.ts +1 -1
- package/src/components/Charts/DonutChart/type.ts +23 -23
- package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
- package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
- package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
- package/src/components/Charts/IconRadialChart/types.ts +28 -28
- package/src/components/Charts/LineChart/LineChart.scss +92 -88
- package/src/components/Charts/LineChart/LineChart.stories.tsx +255 -255
- package/src/components/Charts/LineChart/LineChart.tsx +286 -282
- package/src/components/Charts/LineChart/index.ts +1 -1
- package/src/components/Charts/LineChart/types.ts +29 -29
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +86 -86
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +116 -116
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +292 -292
- package/src/components/Charts/MultiRadialChart/index.ts +1 -1
- package/src/components/Charts/MultiRadialChart/types.ts +25 -25
- package/src/components/Charts/PieChart/PieChart.scss +41 -41
- package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
- package/src/components/Charts/PieChart/PieChart.tsx +192 -192
- package/src/components/Charts/PieChart/index.ts +1 -1
- package/src/components/Charts/PieChart/types.ts +28 -28
- package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
- package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
- package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
- package/src/components/Charts/RadialChart/index.ts +1 -1
- package/src/components/Charts/RadialChart/types.ts +32 -32
- package/src/components/Checkbox/Checkbox.scss +146 -146
- package/src/components/Checkbox/Checkbox.stories.tsx +123 -123
- package/src/components/Checkbox/Checkbox.tsx +58 -58
- package/src/components/Checkbox/types.ts +34 -34
- package/src/components/Chip/Chip.scss +85 -85
- package/src/components/Chip/Chip.stories.tsx +116 -116
- package/src/components/Chip/Chip.tsx +35 -35
- package/src/components/Chip/index.ts +1 -1
- package/src/components/Chip/types.ts +19 -19
- package/src/components/Comment/Comments.scss +166 -0
- package/src/components/Comment/Comments.stories.tsx +212 -0
- package/src/components/Comment/Comments.tsx +51 -0
- package/src/components/Comment/comment/Comment.tsx +206 -0
- package/src/components/Comment/comment/useNode.ts +51 -0
- package/src/components/Comment/index.ts +1 -0
- package/src/components/Comment/type.ts +36 -0
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +128 -128
- package/src/components/ConnectingBranch/ConnectingBranch.scss +233 -233
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +21 -21
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +182 -182
- package/src/components/ConnectingBranch/data.ts +137 -137
- package/src/components/ConnectingBranch/index.ts +1 -1
- package/src/components/ConnectingBranch/types.ts +21 -21
- package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
- package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
- package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
- package/src/components/CreateVariable/index.ts +1 -1
- package/src/components/CreateVariable/types.ts +58 -58
- package/src/components/DatePicker/DatePicker.scss +413 -402
- package/src/components/DatePicker/DatePicker.stories.tsx +193 -174
- package/src/components/DatePicker/DatePicker.tsx +502 -451
- package/src/components/DatePicker/Timepicker.tsx +372 -372
- package/src/components/DatePicker/types.ts +105 -105
- package/src/components/DownloadClient/DownloadClient.scss +80 -80
- package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
- package/src/components/DownloadClient/DownloadClient.tsx +81 -81
- package/src/components/DownloadClient/type.ts +40 -40
- package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
- package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
- package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
- package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
- package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
- package/src/components/Drawer/Drawer.scss +139 -138
- package/src/components/Drawer/Drawer.stories.tsx +155 -155
- package/src/components/Drawer/Drawer.tsx +232 -232
- package/src/components/Drawer/Types.ts +157 -157
- package/src/components/EditTextField/EditTextField.scss +97 -97
- package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
- package/src/components/EditTextField/EditTextField.tsx +181 -181
- package/src/components/EditTextField/index.ts +1 -1
- package/src/components/EditTextField/types.ts +55 -55
- package/src/components/Editor/Editor.scss +56 -56
- package/src/components/Editor/Editor.stories.tsx +54 -54
- package/src/components/Editor/Editor.tsx +250 -250
- package/src/components/Editor/VariableDropdown.scss +27 -27
- package/src/components/Editor/VariableDropdown.tsx +57 -57
- package/src/components/Editor/constants.ts +180 -180
- package/src/components/Editor/types.ts +89 -89
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +42 -42
- package/src/components/Excel/ExcelFile/ExcelFile.scss +68 -68
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +491 -491
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +131 -131
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +238 -238
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +168 -168
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +56 -56
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +37 -37
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +85 -85
- package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +154 -154
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +146 -146
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +479 -479
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
- package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +548 -548
- package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
- package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
- package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
- package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +673 -673
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +819 -819
- package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
- package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +255 -255
- package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
- package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
- package/src/components/Excel/ExcelFile.stories.tsx +167 -167
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +397 -397
- package/src/components/Excel/Types.ts +196 -196
- package/src/components/Excel/dataConversion.ts +173 -173
- package/src/components/Excel/index.ts +1 -1
- package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
- package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
- package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
- package/src/components/ExpandableMenu/index.ts +1 -1
- package/src/components/ExpandableMenu/types.ts +34 -34
- package/src/components/FF_Captcha/Recaptcha.scss +10 -10
- package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
- package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
- package/src/components/FF_Captcha/types.ts +22 -22
- package/src/components/FieldSet/FieldSet.scss +10 -9
- package/src/components/FieldSet/FieldSet.stories.tsx +104 -103
- package/src/components/FieldSet/FieldSet.tsx +29 -29
- package/src/components/FieldSet/index.ts +1 -1
- package/src/components/FieldSet/types.ts +8 -8
- package/src/components/FileDropzone/Dropzone.tsx +105 -57
- package/src/components/FileDropzone/FileDropzone.scss +163 -135
- package/src/components/FileDropzone/FileDropzone.stories.tsx +219 -98
- package/src/components/FileDropzone/FileDropzone.tsx +144 -111
- package/src/components/FileDropzone/FilePreview.tsx +77 -77
- package/src/components/FileDropzone/RadioFilePreview.tsx +76 -0
- package/src/components/FileDropzone/index.ts +1 -1
- package/src/components/FileDropzone/types.ts +199 -126
- package/src/components/Form/Form.d.ts +2 -2
- package/src/components/Form/Form.scss +158 -158
- package/src/components/Form/Form.stories.tsx +508 -508
- package/src/components/Form/Form.ts +2 -2
- package/src/components/Form/Forms.tsx +41 -41
- package/src/components/Form/validation.json +29 -29
- package/src/components/GridLayout/GridLayout.scss +69 -69
- package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
- package/src/components/GridLayout/GridLayout.tsx +39 -39
- package/src/components/GridLayout/GridLayoutStory.scss +25 -25
- package/src/components/GridLayout/types.ts +84 -84
- package/src/components/HighlightText/HighlightText.scss +3 -3
- package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
- package/src/components/HighlightText/HighlightText.tsx +33 -33
- package/src/components/HighlightText/index.ts +1 -1
- package/src/components/HighlightText/types.ts +4 -4
- package/src/components/Icon/Icon.stories.tsx +65 -65
- package/src/components/Icon/Icon.tsx +88 -88
- package/src/components/Icon/Icons.scss +50 -50
- package/src/components/Icon/iconList.ts +491 -464
- package/src/components/Icon/index.ts +1 -1
- package/src/components/Icon/types.ts +14 -14
- package/src/components/IconButton/IconButton.scss +54 -54
- package/src/components/IconButton/IconButton.stories.tsx +34 -33
- package/src/components/IconButton/IconButton.tsx +33 -36
- package/src/components/IconButton/index.ts +1 -1
- package/src/components/IconButton/types.ts +6 -6
- package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -63
- package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
- package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
- package/src/components/IconRadioGroup/index.ts +1 -1
- package/src/components/IconRadioGroup/type.ts +49 -49
- package/src/components/Input/Input.scss +171 -159
- package/src/components/Input/Input.stories.tsx +141 -141
- package/src/components/Input/Input.tsx +120 -114
- package/src/components/Input/types.ts +85 -85
- package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -213
- package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +122 -122
- package/src/components/InputWithDropdown/index.ts +1 -1
- package/src/components/InputWithDropdown/types.ts +113 -113
- package/src/components/LabelEditTextField/LabelEditTextField.scss +86 -86
- package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +192 -192
- package/src/components/LabelEditTextField/LabelEditTextField.tsx +246 -246
- package/src/components/LabelEditTextField/index.ts +1 -1
- package/src/components/LabelEditTextField/types.ts +46 -46
- package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
- package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
- package/src/components/LazyLoad/LazyLoad.ts +2 -2
- package/src/components/LazyLoad/LazyLoading.tsx +19 -19
- package/src/components/LazyLoad/index.ts +1 -1
- package/src/components/MachineInputField/MachineInputField.scss +59 -59
- package/src/components/MachineInputField/MachineInputField.stories.tsx +32 -32
- package/src/components/MachineInputField/MachineInputField.tsx +87 -87
- package/src/components/MachineInputField/index.ts +1 -1
- package/src/components/MachineInputField/types.ts +13 -13
- package/src/components/MenuOption/MenuOption.scss +97 -97
- package/src/components/MenuOption/MenuOption.stories.tsx +158 -157
- package/src/components/MenuOption/MenuOption.tsx +219 -219
- package/src/components/MenuOption/types.ts +230 -228
- package/src/components/MiniModal/MiniModal.scss +170 -170
- package/src/components/MiniModal/MiniModal.stories.tsx +735 -735
- package/src/components/MiniModal/MiniModal.tsx +344 -344
- package/src/components/MiniModal/index.ts +1 -1
- package/src/components/MiniModal/types.ts +123 -123
- package/src/components/Modal/Modal.stories.tsx +70 -70
- package/src/components/Modal/Modal.tsx +100 -100
- package/src/components/Modal/index.tsx +1 -1
- package/src/components/Modal/modal.scss +51 -51
- package/src/components/Modal/types.ts +43 -43
- package/src/components/ModulesChip/ModuleChip.scss +33 -20
- package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
- package/src/components/ModulesChip/ModuleChip.tsx +28 -31
- package/src/components/ModulesChip/types.ts +14 -14
- package/src/components/MultiSelect/Dropdown.scss +78 -78
- package/src/components/MultiSelect/Dropdown.tsx +142 -135
- package/src/components/MultiSelect/MultiSelect.scss +246 -217
- package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -273
- package/src/components/MultiSelect/MultiSelect.tsx +483 -472
- package/src/components/MultiSelect/MultiSelectTypes.ts +47 -47
- package/src/components/MultiSelect/dropdownTypes.ts +19 -19
- package/src/components/MultiSelect/index.ts +1 -1
- package/src/components/NLPInput/NLPInput.scss +246 -246
- package/src/components/NLPInput/NlpInput.stories.tsx +136 -136
- package/src/components/NLPInput/NlpInput.tsx +374 -374
- package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +60 -60
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +83 -83
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +180 -180
- package/src/components/NLPInput/index.ts +1 -1
- package/src/components/NLPInput/type.tsx +124 -124
- package/src/components/Paper/Paper.scss +13 -13
- package/src/components/Paper/Paper.stories.tsx +77 -77
- package/src/components/Paper/Paper.tsx +14 -14
- package/src/components/Paper/types.ts +19 -19
- package/src/components/PhoneInput/PhoneInput.d.ts +3 -0
- package/src/components/PhoneInput/PhoneInput.stories.tsx +95 -0
- package/src/components/PhoneInput/PhoneInput.tsx +90 -0
- package/src/components/PhoneInput/index.ts +1 -0
- package/src/components/PhoneInput/phoneInput.scss +3 -0
- package/src/components/PhoneInput/types.ts +10 -0
- package/src/components/PopUpModal/PopUpModal.scss +36 -36
- package/src/components/PopUpModal/PopUpModal.stories.tsx +62 -61
- package/src/components/PopUpModal/PopUpModal.tsx +86 -85
- package/src/components/PopUpModal/types.ts +15 -14
- package/src/components/RadioButton/RadioButton.scss +106 -106
- package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
- package/src/components/RadioButton/RadioButton.tsx +41 -41
- package/src/components/RadioButton/index.ts +1 -1
- package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
- package/src/components/RadioGroup/RadioGroup.scss +11 -11
- package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
- package/src/components/RadioGroup/RadioGroup.tsx +49 -49
- package/src/components/RadioGroup/index.ts +1 -1
- package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
- package/src/components/Search/Search.scss +103 -103
- package/src/components/Search/Search.stories.tsx +45 -26
- package/src/components/Search/Search.tsx +130 -127
- package/src/components/Search/index.ts +1 -1
- package/src/components/Search/types.ts +19 -15
- package/src/components/Select/Select.scss +213 -213
- package/src/components/Select/Select.stories.tsx +355 -355
- package/src/components/Select/Select.tsx +278 -278
- package/src/components/Select/components/Dropdown.scss +61 -61
- package/src/components/Select/components/Dropdown.tsx +140 -140
- package/src/components/Select/components/types.ts +24 -24
- package/src/components/Select/index.ts +1 -1
- package/src/components/Select/types.ts +134 -134
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +56 -56
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +167 -167
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -51
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -107
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -5
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +190 -190
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +236 -236
- package/src/components/SequentialConnectingBranch/components/Branches/types.ts +25 -25
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +68 -68
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +17 -17
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -31
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -85
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -4
- package/src/components/SequentialConnectingBranch/index.ts +1 -1
- package/src/components/SequentialConnectingBranch/types.ts +60 -60
- package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
- package/src/components/StateDropdown/StateDropdown.tsx +245 -245
- package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
- package/src/components/StatusButton/StatusButton.scss +90 -90
- package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
- package/src/components/StatusButton/StatusButton.tsx +46 -46
- package/src/components/StatusButton/index.ts +1 -1
- package/src/components/StatusButton/types.ts +45 -45
- package/src/components/StatusCard/StatusCard.scss +94 -94
- package/src/components/StatusCard/StatusCard.stories.tsx +58 -58
- package/src/components/StatusCard/StatusCard.tsx +49 -49
- package/src/components/StatusCard/index.ts +1 -1
- package/src/components/StatusCard/types.ts +10 -10
- package/src/components/Table/Table.scss +117 -116
- package/src/components/Table/Table.stories.tsx +373 -373
- package/src/components/Table/Table.tsx +178 -178
- package/src/components/Table/Types.ts +124 -124
- package/src/components/Table/index.ts +1 -1
- package/src/components/TableTree/Components/TableBody.tsx +35 -35
- package/src/components/TableTree/Components/TableCell.tsx +59 -59
- package/src/components/TableTree/Components/TableHead.tsx +39 -39
- package/src/components/TableTree/Components/TableRow.tsx +37 -37
- package/src/components/TableTree/TableTree.scss +205 -205
- package/src/components/TableTree/TableTree.stories.tsx +179 -179
- package/src/components/TableTree/TableTree.tsx +245 -245
- package/src/components/TableTree/TableTreeStories.scss +22 -22
- package/src/components/TableTree/Utils/getAllChildIds.ts +12 -12
- package/src/components/TableTree/data.ts +322 -322
- package/src/components/TableTree/index.ts +1 -1
- package/src/components/TableTree/types.ts +68 -68
- package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -0
- package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -0
- package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -0
- package/src/components/TableWithAccordion/data.ts +37 -0
- package/src/components/TableWithAccordion/index.ts +1 -0
- package/src/components/TableWithAccordion/types.ts +70 -0
- package/src/components/Tabs/Tabs.scss +132 -79
- package/src/components/Tabs/Tabs.stories.tsx +153 -134
- package/src/components/Tabs/Tabs.tsx +71 -62
- package/src/components/Tabs/index.ts +1 -1
- package/src/components/Tabs/types.ts +48 -48
- package/src/components/TextArea/Textarea.scss +144 -144
- package/src/components/TextArea/Textarea.stories.tsx +92 -92
- package/src/components/TextArea/Textarea.tsx +84 -84
- package/src/components/TextArea/Types.ts +82 -82
- package/src/components/TextArea/index.tsx +1 -1
- package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
- package/src/components/ThemeProvider/index.ts +1 -1
- package/src/components/ThemeProvider/types.ts +14 -14
- package/src/components/Toast/Toast.scss +121 -121
- package/src/components/Toast/Toast.stories.tsx +144 -144
- package/src/components/Toast/Toast.tsx +117 -117
- package/src/components/Toast/index.ts +1 -1
- package/src/components/Toast/types.ts +27 -27
- package/src/components/Toastify/Toastify.stories.tsx +71 -71
- package/src/components/Toastify/Toastify.tsx +94 -94
- package/src/components/Toastify/index.ts +1 -1
- package/src/components/Toastify/types.ts +9 -9
- package/src/components/Toggle/Toggle.scss +133 -133
- package/src/components/Toggle/Toggle.stories.tsx +132 -132
- package/src/components/Toggle/Toggle.tsx +96 -96
- package/src/components/Toggle/index.ts +1 -1
- package/src/components/Toggle/types.ts +43 -43
- package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
- package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
- package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
- package/src/components/ToggleSwitch/index.ts +1 -1
- package/src/components/Tooltip/Tooltip.scss +27 -27
- package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
- package/src/components/Tooltip/Tooltip.tsx +194 -194
- package/src/components/Tooltip/index.ts +1 -1
- package/src/components/Tooltip/types.ts +66 -66
- package/src/components/Typography/Typography.scss +25 -25
- package/src/components/Typography/Typography.stories.tsx +59 -59
- package/src/components/Typography/Typography.tsx +41 -41
- package/src/components/Typography/index.ts +1 -1
- package/src/components/Typography/types.ts +57 -57
- package/src/components/VariableInput/VariableInput.scss +127 -127
- package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
- package/src/components/VariableInput/VariableInput.tsx +352 -352
- package/src/components/VariableInput/types.ts +56 -56
- package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
- package/src/hooks/useClickOutside.tsx +30 -30
- package/src/hooks/useFileDropzone.tsx +275 -274
- package/src/hooks/usePortalPosition.tsx +53 -53
- package/src/hooks/useTheme.tsx +13 -13
- package/src/index.ts +204 -193
- package/src/utils/FormatString/FormatString.stories.tsx +58 -0
- package/src/utils/FormatString/FormatString.tsx +41 -0
- package/src/utils/TableCell/TableCell.ts +16 -16
- package/src/utils/capitalize/capitalize.stories.tsx +44 -44
- package/src/utils/capitalize/capitalize.tsx +4 -4
- package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
- package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
- package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
- package/src/utils/checkEmpty/checkEmpty.ts +24 -24
- package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
- package/src/utils/compareArrays/compareArrays.ts +31 -31
- package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
- package/src/utils/compareObjects/compareObjects.ts +53 -53
- package/src/utils/debounce/debounce.stories.tsx +81 -81
- package/src/utils/debounce/debounce.ts +28 -28
- package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
- package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
- package/src/utils/ffID/ffID.stories.tsx +35 -35
- package/src/utils/ffID/ffid.ts +7 -7
- package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
- package/src/utils/findAndInsert/findAndInsert.ts +49 -49
- package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
- package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
- package/src/utils/getExtension/getExtension.stories.tsx +23 -23
- package/src/utils/getExtension/getExtension.ts +28 -28
- package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
- package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
- package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
- package/src/utils/getSequentialPayload/types.ts +32 -32
- package/src/utils/throttle/throttle.stories.tsx +100 -100
- package/src/utils/throttle/throttle.ts +33 -33
- package/src/utils/truncateText/truncateText.stories.tsx +37 -37
- package/src/utils/truncateText/truncateText.ts +4 -4
- package/tsconfig.json +55 -55
- package/vite.config.js +14 -14
@@ -1,33 +1,33 @@
|
|
1
|
-
<svg width="30" height="31" viewBox="0 0 30 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g filter="url(#filter0_ddi_5110_1318)">
|
3
|
-
<path d="M26 15C26 21.6274 20.6274 27 14 27C7.37258 27 2 21.6274 2 15C2 8.37258 7.37258 3 14 3C20.6274 3 26 8.37258 26 15Z" fill="url(#paint0_linear_5110_1318)"/>
|
4
|
-
</g>
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9993 15.106C21.9926 15.6149 21.5249 15.9719 21.0201 15.9067C20.5153 15.8415 20.1663 15.3781 20.1555 14.8693C20.134 13.8599 19.8645 12.8663 19.3644 11.9784C18.7128 10.8216 17.7046 9.90633 16.4903 9.36928C15.276 8.83222 13.9206 8.70212 12.6263 8.99837C11.332 9.29462 10.1681 10.0014 9.30833 11.0132C8.44854 12.025 7.93887 13.2876 7.85535 14.6127C7.77184 15.9379 8.11895 17.2545 8.84492 18.3663C9.57089 19.478 10.6368 20.3253 11.8837 20.7817C12.8406 21.1319 13.8647 21.2376 14.8643 21.0959C15.3682 21.0244 15.8819 21.2941 16.0277 21.7818C16.1735 22.2694 15.8966 22.7886 15.3954 22.8774C14.011 23.1226 12.5806 22.9995 11.2501 22.5125C9.62997 21.9195 8.24495 20.8186 7.30166 19.374C6.35836 17.9295 5.90733 16.2187 6.01585 14.4968C6.12436 12.775 6.78661 11.1343 7.9038 9.81963C9.02099 8.50493 10.5333 7.58662 12.215 7.20168C13.8968 6.81674 15.658 6.98579 17.2358 7.68362C18.8137 8.38145 20.1236 9.57067 20.9703 11.0739C21.6656 12.3083 22.0179 13.7002 21.9993 15.106ZM18.2062 17.3323C18.2062 17.4492 18.2154 17.5446 18.2339 17.6184L18.6031 17.6461C18.3692 18.8277 17.8831 20.4308 17.1446 22.4554L16.8215 22.4831C16.8092 22.5692 16.8031 22.6554 16.8031 22.7415C16.8031 22.8215 16.8123 22.9077 16.8308 23C16.9662 22.9938 17.2 22.9908 17.5323 22.9908C17.8708 22.9908 18.1139 22.9938 18.2615 23C18.28 22.8954 18.2892 22.8184 18.2892 22.7692C18.2892 22.7138 18.2831 22.6184 18.2708 22.4831L17.92 22.4554L18.1785 21.3569C18.5354 21.3323 18.9169 21.32 19.3231 21.32C19.7354 21.32 20.1169 21.3292 20.4677 21.3477C20.4739 21.3784 20.5108 21.5354 20.5785 21.8184C20.6462 22.0954 20.6954 22.3077 20.7262 22.4554L20.4031 22.4831C20.3908 22.5692 20.3846 22.6554 20.3846 22.7415C20.3846 22.8215 20.3939 22.9077 20.4123 23C20.5539 22.9938 20.8062 22.9908 21.1692 22.9908C21.5323 22.9908 21.8 22.9938 21.9723 23C21.9908 22.8954 22 22.8184 22 22.7692C22 22.7138 21.9939 22.6184 21.9815 22.4831L21.64 22.4554C20.76 20.0369 20.2462 18.2492 20.0985 17.0923C19.9139 17.0308 19.6892 17 19.4246 17C19.16 17 18.7569 17.0338 18.2154 17.1015C18.2092 17.1384 18.2062 17.2154 18.2062 17.3323ZM19.2862 20.72C18.8677 20.72 18.5539 20.7169 18.3446 20.7108C18.64 19.5538 18.9692 18.5354 19.3323 17.6554H19.3877C19.7077 18.5846 20.0123 19.5969 20.3015 20.6923C20.0431 20.7108 19.7046 20.72 19.2862 20.72Z" fill="white"/>
|
6
|
-
<path d="M12.0875 18.2067C12.1248 18.2349 12.1702 18.2501 12.217 18.2501C12.2582 18.25 12.2985 18.2382 12.3334 18.2162L17.1001 15.1828C17.1308 15.1633 17.1562 15.1363 17.1737 15.1043C17.1913 15.0724 17.2005 15.0365 17.2005 15C17.2005 14.9636 17.1913 14.9277 17.1737 14.8957C17.1562 14.8638 17.1308 14.8368 17.1001 14.8172L12.3334 11.7838C12.2962 11.7602 12.2528 11.7484 12.2088 11.7501C12.1648 11.7517 12.1224 11.7667 12.0871 11.793C12.0519 11.8194 12.0255 11.8558 12.0114 11.8975C11.9973 11.9392 11.9963 11.9842 12.0084 12.0265L12.8583 15L12.0085 17.9737C11.9965 18.016 11.9976 18.0609 12.0117 18.1025C12.0258 18.1441 12.0523 18.1805 12.0875 18.2067Z" fill="white"/>
|
7
|
-
<defs>
|
8
|
-
<filter id="filter0_ddi_5110_1318" x="0" y="0" width="30" height="31" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
9
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
10
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
11
|
-
<feOffset dx="1" dy="1"/>
|
12
|
-
<feGaussianBlur stdDeviation="1.5"/>
|
13
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.4 0"/>
|
14
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5110_1318"/>
|
15
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
16
|
-
<feOffset dx="1" dy="-1"/>
|
17
|
-
<feGaussianBlur stdDeviation="1"/>
|
18
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
|
19
|
-
<feBlend mode="normal" in2="effect1_dropShadow_5110_1318" result="effect2_dropShadow_5110_1318"/>
|
20
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_5110_1318" result="shape"/>
|
21
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
22
|
-
<feOffset dx="-1" dy="-1"/>
|
23
|
-
<feGaussianBlur stdDeviation="1"/>
|
24
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
25
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.5 0"/>
|
26
|
-
<feBlend mode="normal" in2="shape" result="effect3_innerShadow_5110_1318"/>
|
27
|
-
</filter>
|
28
|
-
<linearGradient id="paint0_linear_5110_1318" x1="3.72771" y1="5.34599" x2="26" y2="27" gradientUnits="userSpaceOnUse">
|
29
|
-
<stop offset="1" stop-color="#2A6F09"/>
|
30
|
-
<stop stop-color="#44B002"/>
|
31
|
-
</linearGradient>
|
32
|
-
</defs>
|
33
|
-
</svg>
|
1
|
+
<svg width="30" height="31" viewBox="0 0 30 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g filter="url(#filter0_ddi_5110_1318)">
|
3
|
+
<path d="M26 15C26 21.6274 20.6274 27 14 27C7.37258 27 2 21.6274 2 15C2 8.37258 7.37258 3 14 3C20.6274 3 26 8.37258 26 15Z" fill="url(#paint0_linear_5110_1318)"/>
|
4
|
+
</g>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9993 15.106C21.9926 15.6149 21.5249 15.9719 21.0201 15.9067C20.5153 15.8415 20.1663 15.3781 20.1555 14.8693C20.134 13.8599 19.8645 12.8663 19.3644 11.9784C18.7128 10.8216 17.7046 9.90633 16.4903 9.36928C15.276 8.83222 13.9206 8.70212 12.6263 8.99837C11.332 9.29462 10.1681 10.0014 9.30833 11.0132C8.44854 12.025 7.93887 13.2876 7.85535 14.6127C7.77184 15.9379 8.11895 17.2545 8.84492 18.3663C9.57089 19.478 10.6368 20.3253 11.8837 20.7817C12.8406 21.1319 13.8647 21.2376 14.8643 21.0959C15.3682 21.0244 15.8819 21.2941 16.0277 21.7818C16.1735 22.2694 15.8966 22.7886 15.3954 22.8774C14.011 23.1226 12.5806 22.9995 11.2501 22.5125C9.62997 21.9195 8.24495 20.8186 7.30166 19.374C6.35836 17.9295 5.90733 16.2187 6.01585 14.4968C6.12436 12.775 6.78661 11.1343 7.9038 9.81963C9.02099 8.50493 10.5333 7.58662 12.215 7.20168C13.8968 6.81674 15.658 6.98579 17.2358 7.68362C18.8137 8.38145 20.1236 9.57067 20.9703 11.0739C21.6656 12.3083 22.0179 13.7002 21.9993 15.106ZM18.2062 17.3323C18.2062 17.4492 18.2154 17.5446 18.2339 17.6184L18.6031 17.6461C18.3692 18.8277 17.8831 20.4308 17.1446 22.4554L16.8215 22.4831C16.8092 22.5692 16.8031 22.6554 16.8031 22.7415C16.8031 22.8215 16.8123 22.9077 16.8308 23C16.9662 22.9938 17.2 22.9908 17.5323 22.9908C17.8708 22.9908 18.1139 22.9938 18.2615 23C18.28 22.8954 18.2892 22.8184 18.2892 22.7692C18.2892 22.7138 18.2831 22.6184 18.2708 22.4831L17.92 22.4554L18.1785 21.3569C18.5354 21.3323 18.9169 21.32 19.3231 21.32C19.7354 21.32 20.1169 21.3292 20.4677 21.3477C20.4739 21.3784 20.5108 21.5354 20.5785 21.8184C20.6462 22.0954 20.6954 22.3077 20.7262 22.4554L20.4031 22.4831C20.3908 22.5692 20.3846 22.6554 20.3846 22.7415C20.3846 22.8215 20.3939 22.9077 20.4123 23C20.5539 22.9938 20.8062 22.9908 21.1692 22.9908C21.5323 22.9908 21.8 22.9938 21.9723 23C21.9908 22.8954 22 22.8184 22 22.7692C22 22.7138 21.9939 22.6184 21.9815 22.4831L21.64 22.4554C20.76 20.0369 20.2462 18.2492 20.0985 17.0923C19.9139 17.0308 19.6892 17 19.4246 17C19.16 17 18.7569 17.0338 18.2154 17.1015C18.2092 17.1384 18.2062 17.2154 18.2062 17.3323ZM19.2862 20.72C18.8677 20.72 18.5539 20.7169 18.3446 20.7108C18.64 19.5538 18.9692 18.5354 19.3323 17.6554H19.3877C19.7077 18.5846 20.0123 19.5969 20.3015 20.6923C20.0431 20.7108 19.7046 20.72 19.2862 20.72Z" fill="white"/>
|
6
|
+
<path d="M12.0875 18.2067C12.1248 18.2349 12.1702 18.2501 12.217 18.2501C12.2582 18.25 12.2985 18.2382 12.3334 18.2162L17.1001 15.1828C17.1308 15.1633 17.1562 15.1363 17.1737 15.1043C17.1913 15.0724 17.2005 15.0365 17.2005 15C17.2005 14.9636 17.1913 14.9277 17.1737 14.8957C17.1562 14.8638 17.1308 14.8368 17.1001 14.8172L12.3334 11.7838C12.2962 11.7602 12.2528 11.7484 12.2088 11.7501C12.1648 11.7517 12.1224 11.7667 12.0871 11.793C12.0519 11.8194 12.0255 11.8558 12.0114 11.8975C11.9973 11.9392 11.9963 11.9842 12.0084 12.0265L12.8583 15L12.0085 17.9737C11.9965 18.016 11.9976 18.0609 12.0117 18.1025C12.0258 18.1441 12.0523 18.1805 12.0875 18.2067Z" fill="white"/>
|
7
|
+
<defs>
|
8
|
+
<filter id="filter0_ddi_5110_1318" x="0" y="0" width="30" height="31" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
9
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
10
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
11
|
+
<feOffset dx="1" dy="1"/>
|
12
|
+
<feGaussianBlur stdDeviation="1.5"/>
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.4 0"/>
|
14
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5110_1318"/>
|
15
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
16
|
+
<feOffset dx="1" dy="-1"/>
|
17
|
+
<feGaussianBlur stdDeviation="1"/>
|
18
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
|
19
|
+
<feBlend mode="normal" in2="effect1_dropShadow_5110_1318" result="effect2_dropShadow_5110_1318"/>
|
20
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_5110_1318" result="shape"/>
|
21
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
22
|
+
<feOffset dx="-1" dy="-1"/>
|
23
|
+
<feGaussianBlur stdDeviation="1"/>
|
24
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
25
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.5 0"/>
|
26
|
+
<feBlend mode="normal" in2="shape" result="effect3_innerShadow_5110_1318"/>
|
27
|
+
</filter>
|
28
|
+
<linearGradient id="paint0_linear_5110_1318" x1="3.72771" y1="5.34599" x2="26" y2="27" gradientUnits="userSpaceOnUse">
|
29
|
+
<stop offset="1" stop-color="#2A6F09"/>
|
30
|
+
<stop stop-color="#44B002"/>
|
31
|
+
</linearGradient>
|
32
|
+
</defs>
|
33
|
+
</svg>
|
@@ -1,26 +1,26 @@
|
|
1
|
-
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_5151_106068)">
|
3
|
-
<g filter="url(#filter0_d_5151_106068)">
|
4
|
-
<path d="M24.8701 12C24.8701 18.6274 19.4975 24 12.8701 24C6.2427 24 0.870117 18.6274 0.870117 12C0.870117 5.37258 6.2427 0 12.8701 0C19.4975 0 24.8701 5.37258 24.8701 12Z" fill="url(#paint0_linear_5151_106068)"/>
|
5
|
-
</g>
|
6
|
-
<path d="M11.2033 15.7503L16.2033 12.0003L11.2033 8.25032V15.7503ZM12.87 3.66699C11.2218 3.66699 9.61061 4.15573 8.24021 5.07141C6.8698 5.98709 5.80169 7.28858 5.17096 8.8113C4.54023 10.334 4.3752 12.0096 4.69675 13.6261C5.01829 15.2426 5.81196 16.7274 6.9774 17.8929C8.14284 19.0583 9.6277 19.852 11.2442 20.1735C12.8607 20.4951 14.5363 20.33 16.059 19.6993C17.5817 19.0686 18.8832 18.0005 19.7989 16.6301C20.7145 15.2597 21.2033 13.6485 21.2033 12.0003C21.2033 9.79019 20.3253 7.67057 18.7625 6.10777C17.1997 4.54497 15.0801 3.66699 12.87 3.66699ZM12.87 18.667C11.5514 18.667 10.2625 18.276 9.16616 17.5435C8.06983 16.8109 7.21535 15.7697 6.71076 14.5515C6.20618 13.3334 6.07415 11.9929 6.33139 10.6997C6.58862 9.40652 7.22356 8.21863 8.15591 7.28628C9.08826 6.35393 10.2761 5.71899 11.5694 5.46176C12.8626 5.20452 14.203 5.33654 15.4212 5.84113C16.6394 6.34571 17.6805 7.2002 18.4131 8.29652C19.1456 9.39285 19.5366 10.6818 19.5366 12.0003C19.5344 13.7678 18.8313 15.4622 17.5816 16.7119C16.3318 17.9617 14.6374 18.6648 12.87 18.667Z" fill="currentColor"/>
|
7
|
-
</g>
|
8
|
-
<defs>
|
9
|
-
<filter id="filter0_d_5151_106068" x="-0.129883" y="-3" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
10
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
11
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
12
|
-
<feOffset dx="1" dy="-1"/>
|
13
|
-
<feGaussianBlur stdDeviation="1"/>
|
14
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
|
15
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5151_106068"/>
|
16
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5151_106068" result="shape"/>
|
17
|
-
</filter>
|
18
|
-
<linearGradient id="paint0_linear_5151_106068" x1="2.59783" y1="2.34599" x2="24.8701" y2="24" gradientUnits="userSpaceOnUse">
|
19
|
-
<stop offset="1" stop-color="#2A6F09"/>
|
20
|
-
<stop stop-color="#44B002"/>
|
21
|
-
</linearGradient>
|
22
|
-
<clipPath id="clip0_5151_106068">
|
23
|
-
<rect width="24" height="24" fill="currentColor" transform="translate(0.870117)"/>
|
24
|
-
</clipPath>
|
25
|
-
</defs>
|
26
|
-
</svg>
|
1
|
+
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_5151_106068)">
|
3
|
+
<g filter="url(#filter0_d_5151_106068)">
|
4
|
+
<path d="M24.8701 12C24.8701 18.6274 19.4975 24 12.8701 24C6.2427 24 0.870117 18.6274 0.870117 12C0.870117 5.37258 6.2427 0 12.8701 0C19.4975 0 24.8701 5.37258 24.8701 12Z" fill="url(#paint0_linear_5151_106068)"/>
|
5
|
+
</g>
|
6
|
+
<path d="M11.2033 15.7503L16.2033 12.0003L11.2033 8.25032V15.7503ZM12.87 3.66699C11.2218 3.66699 9.61061 4.15573 8.24021 5.07141C6.8698 5.98709 5.80169 7.28858 5.17096 8.8113C4.54023 10.334 4.3752 12.0096 4.69675 13.6261C5.01829 15.2426 5.81196 16.7274 6.9774 17.8929C8.14284 19.0583 9.6277 19.852 11.2442 20.1735C12.8607 20.4951 14.5363 20.33 16.059 19.6993C17.5817 19.0686 18.8832 18.0005 19.7989 16.6301C20.7145 15.2597 21.2033 13.6485 21.2033 12.0003C21.2033 9.79019 20.3253 7.67057 18.7625 6.10777C17.1997 4.54497 15.0801 3.66699 12.87 3.66699ZM12.87 18.667C11.5514 18.667 10.2625 18.276 9.16616 17.5435C8.06983 16.8109 7.21535 15.7697 6.71076 14.5515C6.20618 13.3334 6.07415 11.9929 6.33139 10.6997C6.58862 9.40652 7.22356 8.21863 8.15591 7.28628C9.08826 6.35393 10.2761 5.71899 11.5694 5.46176C12.8626 5.20452 14.203 5.33654 15.4212 5.84113C16.6394 6.34571 17.6805 7.2002 18.4131 8.29652C19.1456 9.39285 19.5366 10.6818 19.5366 12.0003C19.5344 13.7678 18.8313 15.4622 17.5816 16.7119C16.3318 17.9617 14.6374 18.6648 12.87 18.667Z" fill="currentColor"/>
|
7
|
+
</g>
|
8
|
+
<defs>
|
9
|
+
<filter id="filter0_d_5151_106068" x="-0.129883" y="-3" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
10
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
11
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
12
|
+
<feOffset dx="1" dy="-1"/>
|
13
|
+
<feGaussianBlur stdDeviation="1"/>
|
14
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
|
15
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5151_106068"/>
|
16
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5151_106068" result="shape"/>
|
17
|
+
</filter>
|
18
|
+
<linearGradient id="paint0_linear_5151_106068" x1="2.59783" y1="2.34599" x2="24.8701" y2="24" gradientUnits="userSpaceOnUse">
|
19
|
+
<stop offset="1" stop-color="#2A6F09"/>
|
20
|
+
<stop stop-color="#44B002"/>
|
21
|
+
</linearGradient>
|
22
|
+
<clipPath id="clip0_5151_106068">
|
23
|
+
<rect width="24" height="24" fill="currentColor" transform="translate(0.870117)"/>
|
24
|
+
</clipPath>
|
25
|
+
</defs>
|
26
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M6.10873 11.1962C6.14603 11.2244 6.19148 11.2396 6.23821 11.2396C6.27942 11.2395 6.31977 11.2278 6.3546 11.2057L11.1213 8.17235C11.1521 8.15278 11.1774 8.12577 11.195 8.09381C11.2125 8.06185 11.2217 8.02599 11.2217 7.98953C11.2217 7.95307 11.2125 7.9172 11.195 7.88524C11.1774 7.85328 11.1521 7.82627 11.1213 7.8067L6.3546 4.77334C6.31747 4.74972 6.27403 4.73795 6.23006 4.73959C6.18608 4.74124 6.14364 4.75622 6.10838 4.78255C6.07312 4.80888 6.0467 4.84531 6.03263 4.88701C6.01856 4.9287 6.0175 4.97369 6.0296 5.016L6.87955 7.98953L6.02977 10.9632C6.01775 11.0055 6.01887 11.0504 6.03297 11.092C6.04707 11.1336 6.07349 11.17 6.10873 11.1962Z" fill="#10B660"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8751 9.40825C15.7855 9.90928 15.2659 10.1853 14.7785 10.0387C14.2911 9.89211 14.0222 9.378 14.0945 8.87419C14.2422 7.84415 14.1271 6.7881 13.7528 5.80646C13.2685 4.53625 12.3774 3.46205 11.2185 2.7514C10.0596 2.04076 8.69815 1.73365 7.34641 1.87796C5.99468 2.02227 4.72871 2.60989 3.74598 3.54917C2.76324 4.48845 2.11901 5.72657 1.91375 7.0704C1.7085 8.41423 1.95377 9.78821 2.61131 10.978C3.26885 12.1678 4.30169 13.1066 5.54871 13.6478C6.51243 14.0661 7.5622 14.2288 8.59786 14.1277C9.10443 14.0783 9.60586 14.3701 9.73028 14.8637C9.85469 15.3572 9.55547 15.8638 9.05091 15.9307C7.61706 16.1207 6.15221 15.919 4.81487 15.3386C3.19453 14.6353 1.8525 13.4155 0.998111 11.8695C0.143724 10.3235 -0.174975 8.53824 0.091725 6.79211C0.358425 5.04598 1.19553 3.43721 2.47246 2.21674C3.74939 0.996269 5.39435 0.232729 7.15075 0.0452152C8.90715 -0.142298 10.6762 0.25676 12.182 1.18014C13.6878 2.10353 14.8457 3.49931 15.475 5.14979C15.9944 6.51198 16.1297 7.98445 15.8751 9.40825ZM14.3475 10.7439C14.3475 10.6747 14.3455 10.6238 14.3414 10.5912C13.926 10.583 13.6429 10.5729 13.4922 10.5606C13.3863 11.1064 13.0217 11.9882 12.3986 13.2061C11.645 11.8172 11.2337 10.9354 11.1644 10.5606C10.9934 10.5729 10.7408 10.583 10.4068 10.5912C10.4028 10.6238 10.4007 10.6747 10.4007 10.7439C10.4007 10.8132 10.4068 10.8763 10.4191 10.9333L10.6451 10.9516C10.6573 11.1227 10.6634 11.306 10.6634 11.5015C10.6634 12.5157 10.6207 13.3934 10.5351 14.1347L10.3213 14.1531C10.3132 14.2264 10.3091 14.2875 10.3091 14.3363C10.3091 14.3812 10.3152 14.4341 10.3274 14.4952C10.4537 14.4911 10.6023 14.4891 10.7734 14.4891C10.9445 14.4891 11.0952 14.4911 11.2255 14.4952C11.2377 14.426 11.2439 14.3689 11.2439 14.3241C11.2439 14.2753 11.2398 14.2182 11.2316 14.1531L11.0056 14.1347C10.9974 13.8985 10.9934 13.5808 10.9934 13.1816C10.9934 12.7784 11.0097 12.2876 11.0422 11.7092C11.0911 11.7988 11.2459 12.088 11.5066 12.5768C11.7713 13.0615 11.975 13.4749 12.1175 13.817C12.1501 13.8211 12.2112 13.8231 12.3008 13.8231C12.3945 13.8231 12.4821 13.8069 12.5635 13.7743C12.6979 13.4321 12.9464 12.9006 13.3089 12.1797C13.4718 11.8498 13.5736 11.642 13.6144 11.5565C13.651 12.2285 13.6694 12.754 13.6694 13.1328C13.6694 13.5075 13.6653 13.8415 13.6571 14.1347L13.4555 14.1531C13.4474 14.2264 13.4433 14.2875 13.4433 14.3363C13.4433 14.3812 13.4494 14.4341 13.4616 14.4952C13.6001 14.4911 13.763 14.4891 13.9504 14.4891C14.1378 14.4891 14.3027 14.4911 14.4453 14.4952C14.4575 14.426 14.4636 14.3689 14.4636 14.3241C14.4636 14.2753 14.4595 14.2182 14.4514 14.1531L14.2253 14.1347C14.1357 13.3486 14.0909 12.4566 14.0909 11.4587C14.0909 11.2347 14.0929 11.0657 14.097 10.9516L14.3292 10.9333C14.3414 10.8763 14.3475 10.8132 14.3475 10.7439Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M6.10873 11.1962C6.14603 11.2244 6.19148 11.2396 6.23821 11.2396C6.27942 11.2395 6.31977 11.2278 6.3546 11.2057L11.1213 8.17235C11.1521 8.15278 11.1774 8.12577 11.195 8.09381C11.2125 8.06185 11.2217 8.02599 11.2217 7.98953C11.2217 7.95307 11.2125 7.9172 11.195 7.88524C11.1774 7.85328 11.1521 7.82627 11.1213 7.8067L6.3546 4.77334C6.31747 4.74972 6.27403 4.73795 6.23006 4.73959C6.18608 4.74124 6.14364 4.75622 6.10838 4.78255C6.07312 4.80888 6.0467 4.84531 6.03263 4.88701C6.01856 4.9287 6.0175 4.97369 6.0296 5.016L6.87955 7.98953L6.02977 10.9632C6.01775 11.0055 6.01887 11.0504 6.03297 11.092C6.04707 11.1336 6.07349 11.17 6.10873 11.1962Z" fill="#10B660"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8751 9.40825C15.7855 9.90928 15.2659 10.1853 14.7785 10.0387C14.2911 9.89211 14.0222 9.378 14.0945 8.87419C14.2422 7.84415 14.1271 6.7881 13.7528 5.80646C13.2685 4.53625 12.3774 3.46205 11.2185 2.7514C10.0596 2.04076 8.69815 1.73365 7.34641 1.87796C5.99468 2.02227 4.72871 2.60989 3.74598 3.54917C2.76324 4.48845 2.11901 5.72657 1.91375 7.0704C1.7085 8.41423 1.95377 9.78821 2.61131 10.978C3.26885 12.1678 4.30169 13.1066 5.54871 13.6478C6.51243 14.0661 7.5622 14.2288 8.59786 14.1277C9.10443 14.0783 9.60586 14.3701 9.73028 14.8637C9.85469 15.3572 9.55547 15.8638 9.05091 15.9307C7.61706 16.1207 6.15221 15.919 4.81487 15.3386C3.19453 14.6353 1.8525 13.4155 0.998111 11.8695C0.143724 10.3235 -0.174975 8.53824 0.091725 6.79211C0.358425 5.04598 1.19553 3.43721 2.47246 2.21674C3.74939 0.996269 5.39435 0.232729 7.15075 0.0452152C8.90715 -0.142298 10.6762 0.25676 12.182 1.18014C13.6878 2.10353 14.8457 3.49931 15.475 5.14979C15.9944 6.51198 16.1297 7.98445 15.8751 9.40825ZM14.3475 10.7439C14.3475 10.6747 14.3455 10.6238 14.3414 10.5912C13.926 10.583 13.6429 10.5729 13.4922 10.5606C13.3863 11.1064 13.0217 11.9882 12.3986 13.2061C11.645 11.8172 11.2337 10.9354 11.1644 10.5606C10.9934 10.5729 10.7408 10.583 10.4068 10.5912C10.4028 10.6238 10.4007 10.6747 10.4007 10.7439C10.4007 10.8132 10.4068 10.8763 10.4191 10.9333L10.6451 10.9516C10.6573 11.1227 10.6634 11.306 10.6634 11.5015C10.6634 12.5157 10.6207 13.3934 10.5351 14.1347L10.3213 14.1531C10.3132 14.2264 10.3091 14.2875 10.3091 14.3363C10.3091 14.3812 10.3152 14.4341 10.3274 14.4952C10.4537 14.4911 10.6023 14.4891 10.7734 14.4891C10.9445 14.4891 11.0952 14.4911 11.2255 14.4952C11.2377 14.426 11.2439 14.3689 11.2439 14.3241C11.2439 14.2753 11.2398 14.2182 11.2316 14.1531L11.0056 14.1347C10.9974 13.8985 10.9934 13.5808 10.9934 13.1816C10.9934 12.7784 11.0097 12.2876 11.0422 11.7092C11.0911 11.7988 11.2459 12.088 11.5066 12.5768C11.7713 13.0615 11.975 13.4749 12.1175 13.817C12.1501 13.8211 12.2112 13.8231 12.3008 13.8231C12.3945 13.8231 12.4821 13.8069 12.5635 13.7743C12.6979 13.4321 12.9464 12.9006 13.3089 12.1797C13.4718 11.8498 13.5736 11.642 13.6144 11.5565C13.651 12.2285 13.6694 12.754 13.6694 13.1328C13.6694 13.5075 13.6653 13.8415 13.6571 14.1347L13.4555 14.1531C13.4474 14.2264 13.4433 14.2875 13.4433 14.3363C13.4433 14.3812 13.4494 14.4341 13.4616 14.4952C13.6001 14.4911 13.763 14.4891 13.9504 14.4891C14.1378 14.4891 14.3027 14.4911 14.4453 14.4952C14.4575 14.426 14.4636 14.3689 14.4636 14.3241C14.4636 14.2753 14.4595 14.2182 14.4514 14.1531L14.2253 14.1347C14.1357 13.3486 14.0909 12.4566 14.0909 11.4587C14.0909 11.2347 14.0929 11.0657 14.097 10.9516L14.3292 10.9333C14.3414 10.8763 14.3475 10.8132 14.3475 10.7439Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,93 +1,93 @@
|
|
1
|
-
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_167_6598)">
|
3
|
-
<g opacity="0.08">
|
4
|
-
<path d="M6.65258 12.6442C9.80332 12.6442 12.3575 10.09 12.3575 6.9393C12.3575 3.78856 9.80332 1.23438 6.65258 1.23438C3.50184 1.23438 0.947662 3.78856 0.947662 6.9393C0.947662 10.09 3.50184 12.6442 6.65258 12.6442Z" fill="black"/>
|
5
|
-
</g>
|
6
|
-
<path d="M6.6526 12.4477C9.91194 12.4477 12.5542 9.80544 12.5542 6.54609C12.5542 3.28675 9.91194 0.644531 6.6526 0.644531C3.39326 0.644531 0.751038 3.28675 0.751038 6.54609C0.751038 9.80544 3.39326 12.4477 6.6526 12.4477Z" fill="url(#paint0_linear_167_6598)"/>
|
7
|
-
<g opacity="0.08">
|
8
|
-
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.0544C3.61541 12.0544 1.14439 9.58336 1.14439 6.54619C1.14439 3.50902 3.61541 1.03798 6.65258 1.03798C9.68975 1.03798 12.1608 3.50899 12.1608 6.54616C12.1608 9.58334 9.68975 12.0544 6.65258 12.0544Z" fill="url(#paint1_linear_167_6598)"/>
|
9
|
-
</g>
|
10
|
-
<g opacity="0.16">
|
11
|
-
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.2511C3.5019 12.2511 0.947657 9.69687 0.947657 6.54616C0.947657 3.39546 3.5019 0.841242 6.65258 0.841242C9.80326 0.841242 12.3575 3.39546 12.3575 6.54616C12.3575 9.69687 9.80326 12.2511 6.65258 12.2511Z" fill="black"/>
|
12
|
-
</g>
|
13
|
-
<path d="M6.65259 11.8572C9.586 11.8572 11.964 9.47919 11.964 6.54578C11.964 3.61237 9.586 1.23438 6.65259 1.23438C3.71918 1.23438 1.34119 3.61237 1.34119 6.54578C1.34119 9.47919 3.71918 11.8572 6.65259 11.8572Z" fill="url(#paint2_linear_167_6598)"/>
|
14
|
-
<g opacity="0.16">
|
15
|
-
<path d="M6.6526 1.23438C3.71909 1.23438 1.34113 3.61234 1.34113 6.54585C1.34113 9.47936 3.71909 11.8573 6.6526 11.8573C9.58611 11.8573 11.9641 9.47936 11.9641 6.54585C11.9641 3.61234 9.58611 1.23438 6.6526 1.23438ZM6.6526 11.6606C3.82789 11.6606 1.53786 9.37059 1.53786 6.54587C1.53786 3.72116 3.82789 1.43111 6.6526 1.43111C9.47731 1.43111 11.7673 3.72114 11.7673 6.54585C11.7673 9.37056 9.47731 11.6606 6.6526 11.6606Z" fill="url(#paint3_linear_167_6598)"/>
|
16
|
-
</g>
|
17
|
-
<g opacity="0.36">
|
18
|
-
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
19
|
-
<path d="M6.0747 2.2395C6.03415 2.2395 5.99891 2.20946 5.99347 2.16818L5.94212 1.77828C5.93621 1.73335 5.96783 1.69214 6.01273 1.68624C6.05755 1.68042 6.09887 1.71195 6.10477 1.75685L6.15612 2.14676C6.16203 2.19169 6.13041 2.23289 6.08551 2.2388C6.0819 2.23927 6.07829 2.2395 6.0747 2.2395Z" fill="white"/>
|
20
|
-
<path d="M4.95885 2.53839C4.92664 2.53839 4.89613 2.51934 4.88303 2.48774L4.73235 2.12421C4.715 2.08235 4.73485 2.03437 4.77671 2.017C4.81862 1.99968 4.86657 2.01953 4.88392 2.06137L5.0346 2.42491C5.05194 2.46677 5.03209 2.51474 4.99023 2.53211C4.97994 2.53638 4.9693 2.53839 4.95885 2.53839Z" fill="white"/>
|
21
|
-
<path d="M3.95817 3.11686C3.93354 3.11686 3.90919 3.10582 3.89304 3.08477L3.65344 2.77258C3.62585 2.73666 3.63262 2.68516 3.66858 2.65758C3.70451 2.63001 3.75602 2.63676 3.78359 2.67272L4.02319 2.98491C4.05077 3.02083 4.044 3.07233 4.00805 3.09991C3.99316 3.11135 3.97559 3.11686 3.95817 3.11686Z" fill="white"/>
|
22
|
-
<path d="M3.14105 3.93296C3.12361 3.93296 3.10605 3.92743 3.09117 3.91599L2.77896 3.67639C2.74301 3.6488 2.73623 3.59731 2.76382 3.56138C2.7914 3.52545 2.84292 3.51868 2.87883 3.54624L3.19104 3.78584C3.22699 3.81343 3.23376 3.86492 3.20618 3.90085C3.19003 3.92192 3.16568 3.93296 3.14105 3.93296Z" fill="white"/>
|
23
|
-
<path d="M2.5633 4.93395C2.55285 4.93395 2.54221 4.93194 2.53192 4.92767L2.16838 4.77699C2.12652 4.75965 2.10667 4.71165 2.12401 4.66979C2.14135 4.62795 2.18933 4.60805 2.23121 4.62542L2.59475 4.7761C2.63661 4.79344 2.65646 4.84144 2.63912 4.8833C2.62602 4.91487 2.59548 4.93395 2.5633 4.93395Z" fill="white"/>
|
24
|
-
<path d="M2.26425 6.05034C2.26069 6.05034 2.25708 6.05011 2.25344 6.04964L1.86354 5.99829C1.81861 5.99238 1.78699 5.95116 1.79292 5.90625C1.79883 5.86134 1.84003 5.82991 1.88496 5.83563L2.27487 5.88698C2.3198 5.89289 2.35141 5.93412 2.34548 5.97902C2.34005 6.0203 2.30477 6.05034 2.26425 6.05034Z" fill="white"/>
|
25
|
-
<path d="M5.60871 2.73282C5.5725 2.73282 5.53935 2.70866 5.52953 2.672L5.32593 1.91188C5.31421 1.86812 5.34018 1.82312 5.38394 1.8114C5.42767 1.7997 5.47267 1.82563 5.48442 1.86941L5.68802 2.62953C5.69974 2.67329 5.67377 2.71829 5.63001 2.73001C5.62289 2.73191 5.61574 2.73282 5.60871 2.73282Z" fill="white"/>
|
26
|
-
<path d="M4.63628 3.13555C4.60792 3.13555 4.58036 3.12085 4.56515 3.09453L4.1717 2.41309C4.14906 2.37385 4.16249 2.3237 4.20173 2.30103C4.24096 2.27842 4.29112 2.2918 4.31378 2.33106L4.70723 3.0125C4.72987 3.05174 4.71644 3.10189 4.6772 3.12456C4.66429 3.13199 4.65018 3.13555 4.63628 3.13555Z" fill="white"/>
|
27
|
-
<path d="M3.80091 3.77605C3.77991 3.77605 3.75891 3.76803 3.7429 3.75202L3.18657 3.19571C3.15453 3.16367 3.15453 3.11173 3.18657 3.07969C3.2186 3.04765 3.27054 3.04765 3.30258 3.07969L3.85892 3.63601C3.89096 3.66804 3.89096 3.71998 3.85892 3.75202C3.84289 3.76803 3.82189 3.77605 3.80091 3.77605Z" fill="white"/>
|
28
|
-
<path d="M3.15991 4.61122C3.14599 4.61122 3.1319 4.60768 3.11896 4.60022L2.43752 4.20678C2.39828 4.18411 2.38483 4.13396 2.40749 4.09472C2.43016 4.05549 2.48034 4.04208 2.51955 4.0647L3.20099 4.45814C3.24023 4.48081 3.25368 4.53097 3.23102 4.5702C3.21585 4.59652 3.18827 4.61122 3.15991 4.61122Z" fill="white"/>
|
29
|
-
<path d="M2.75733 5.5845C2.75032 5.5845 2.74317 5.58358 2.73605 5.58169L1.97592 5.37808C1.93216 5.36637 1.90619 5.32139 1.91791 5.27761C1.92963 5.23387 1.97454 5.2079 2.01839 5.2196L2.77851 5.4232C2.82227 5.43492 2.84824 5.4799 2.83652 5.52368C2.8267 5.56031 2.79356 5.5845 2.75733 5.5845Z" fill="white"/>
|
30
|
-
<path d="M2.61981 6.62793H1.83292C1.78761 6.62793 1.75089 6.5912 1.75089 6.5459C1.75089 6.50059 1.78761 6.46387 1.83292 6.46387H2.61981C2.66511 6.46387 2.70184 6.50059 2.70184 6.5459C2.70184 6.5912 2.66511 6.62793 2.61981 6.62793Z" fill="white"/>
|
31
|
-
<path d="M1.87412 7.25738C1.83357 7.25738 1.79832 7.22736 1.79288 7.18606C1.78698 7.14113 1.8186 7.09993 1.8635 7.09402L2.25341 7.04269C2.29843 7.03683 2.33954 7.06838 2.34545 7.11331C2.35135 7.15824 2.31974 7.19944 2.27483 7.20535L1.88492 7.25668C1.88129 7.25715 1.87768 7.25738 1.87412 7.25738Z" fill="white"/>
|
32
|
-
<path d="M2.19983 8.47299C2.16763 8.47299 2.13711 8.45394 2.12401 8.42234C2.10667 8.38051 2.12652 8.33251 2.16838 8.31516L2.53192 8.16448C2.57382 8.14712 2.62178 8.16701 2.63912 8.20887C2.65646 8.25071 2.63661 8.29871 2.59475 8.31605L2.23121 8.46673C2.22095 8.47097 2.21028 8.47299 2.19983 8.47299Z" fill="white"/>
|
33
|
-
<path d="M2.82895 9.56188C2.80432 9.56188 2.77997 9.55084 2.76382 9.52979C2.73623 9.49386 2.74301 9.44237 2.77896 9.41478L3.09117 9.17518C3.12712 9.14757 3.17862 9.15435 3.20618 9.19032C3.23376 9.22625 3.22699 9.27775 3.19104 9.30533L2.87883 9.54493C2.86394 9.55637 2.84639 9.56188 2.82895 9.56188Z" fill="white"/>
|
34
|
-
<path d="M3.71845 10.4518C3.70101 10.4518 3.68346 10.4463 3.66858 10.4349C3.63262 10.4073 3.62585 10.3558 3.65344 10.3199L3.89304 10.0077C3.92062 9.97175 3.97214 9.96496 4.00805 9.99254C4.044 10.0201 4.05077 10.0716 4.02319 10.1075L3.78359 10.4197C3.76741 10.4408 3.74306 10.4518 3.71845 10.4518Z" fill="white"/>
|
35
|
-
<path d="M4.8081 11.0814C4.79764 11.0814 4.787 11.0794 4.77671 11.0751C4.73485 11.0578 4.715 11.0098 4.73235 10.9679L4.88303 10.6044C4.90037 10.5625 4.94832 10.5426 4.99023 10.56C5.03209 10.5773 5.05194 10.6253 5.0346 10.6672L4.88392 11.0307C4.87082 11.0623 4.84028 11.0814 4.8081 11.0814Z" fill="white"/>
|
36
|
-
<path d="M6.02357 11.4065C6.02001 11.4065 6.0164 11.4063 6.01277 11.4058C5.96784 11.3999 5.93622 11.3587 5.94215 11.3138L5.9935 10.9239C5.99943 10.8789 6.04064 10.8474 6.08554 10.8532C6.13047 10.8592 6.16209 10.9004 6.15616 10.9453L6.10481 11.3352C6.09937 11.3765 6.06412 11.4065 6.02357 11.4065Z" fill="white"/>
|
37
|
-
<path d="M1.99711 7.87552C1.96087 7.87552 1.92773 7.85136 1.91791 7.81468C1.90619 7.77092 1.93216 7.72594 1.97592 7.71423L2.73605 7.5106C2.7799 7.49895 2.8248 7.52485 2.83652 7.56863C2.84824 7.61239 2.82227 7.65737 2.77851 7.66909L2.01839 7.87271C2.01129 7.87461 2.00414 7.87552 1.99711 7.87552Z" fill="white"/>
|
38
|
-
<path d="M2.47862 9.03803C2.45026 9.03803 2.42269 9.02331 2.40748 8.99699C2.38484 8.95775 2.39827 8.9076 2.43751 8.88493L3.11895 8.49149C3.15821 8.4688 3.20837 8.48228 3.23101 8.52151C3.25365 8.56075 3.24022 8.6109 3.20098 8.63357L2.51954 9.02701C2.50662 9.03449 2.49254 9.03803 2.47862 9.03803Z" fill="white"/>
|
39
|
-
<path d="M4.24265 10.8026C4.22873 10.8026 4.21465 10.799 4.20171 10.7916C4.16247 10.7689 4.14902 10.7187 4.17168 10.6795L4.56513 9.99806C4.58779 9.9588 4.63797 9.94539 4.67718 9.96804C4.71642 9.9907 4.72987 10.0409 4.70721 10.0801L4.31376 10.7615C4.29858 10.7879 4.27099 10.8026 4.24265 10.8026Z" fill="white"/>
|
40
|
-
<path d="M5.40522 11.2836C5.39819 11.2836 5.39107 11.2827 5.38394 11.2808C5.34018 11.2691 5.31421 11.2241 5.32593 11.1804L5.52953 10.4202C5.54125 10.3765 5.58616 10.3505 5.63001 10.3622C5.67377 10.3739 5.69974 10.4189 5.68802 10.4626L5.48442 11.2228C5.4746 11.2594 5.44146 11.2836 5.40522 11.2836Z" fill="white"/>
|
41
|
-
<path d="M6.65259 11.448C6.60728 11.448 6.57056 11.4113 6.57056 11.366V10.5791C6.57056 10.5338 6.60728 10.4971 6.65259 10.4971C6.69789 10.4971 6.73462 10.5338 6.73462 10.5791V11.366C6.73462 11.4113 6.69789 11.448 6.65259 11.448Z" fill="white"/>
|
42
|
-
<path d="M7.28157 11.4065C7.24105 11.4065 7.2058 11.3765 7.20036 11.3352L7.14903 10.9453C7.1431 10.9004 7.17474 10.8592 7.21965 10.8532C7.26467 10.8473 7.30578 10.8789 7.31169 10.9239L7.36301 11.3138C7.36894 11.3587 7.3373 11.3999 7.2924 11.4058C7.28876 11.4063 7.28513 11.4065 7.28157 11.4065Z" fill="white"/>
|
43
|
-
<path d="M8.49705 11.0814C8.46488 11.0814 8.43434 11.0623 8.42126 11.0307L8.27055 10.6672C8.25321 10.6253 8.27306 10.5773 8.31495 10.56C8.35666 10.5427 8.40478 10.5625 8.42213 10.6044L8.57283 10.9679C8.59017 11.0098 8.57032 11.0578 8.52844 11.0751C8.5182 11.0793 8.50755 11.0814 8.49705 11.0814Z" fill="white"/>
|
44
|
-
<path d="M9.58673 10.4518C9.5621 10.4518 9.53775 10.4408 9.5216 10.4198L9.28198 10.1076C9.25439 10.0716 9.26116 10.0201 9.29712 9.99256C9.333 9.96497 9.38452 9.97172 9.41213 10.0077L9.65175 10.3199C9.67934 10.3558 9.67256 10.4073 9.63661 10.4349C9.62175 10.4463 9.60417 10.4518 9.58673 10.4518Z" fill="white"/>
|
45
|
-
<path d="M10.4762 9.5619C10.4588 9.5619 10.4412 9.5564 10.4263 9.54494L10.1141 9.30533C10.0782 9.27775 10.0714 9.22626 10.099 9.19033C10.1265 9.15437 10.178 9.14755 10.214 9.17519L10.5262 9.41479C10.5621 9.44237 10.5689 9.49387 10.5413 9.52979C10.5252 9.55089 10.5008 9.5619 10.4762 9.5619Z" fill="white"/>
|
46
|
-
<path d="M11.1053 8.47299C11.0949 8.47299 11.0842 8.47097 11.074 8.46671L10.7104 8.31603C10.6686 8.29868 10.6487 8.25068 10.666 8.20885C10.6834 8.16696 10.7314 8.14716 10.7732 8.16446L11.1367 8.31514C11.1786 8.33248 11.1985 8.38048 11.1811 8.42232C11.1681 8.45393 11.1375 8.47299 11.1053 8.47299Z" fill="white"/>
|
47
|
-
<path d="M11.4311 7.2574C11.4275 7.2574 11.4239 7.25716 11.4202 7.2567L11.0303 7.20537C10.9854 7.19946 10.9538 7.15826 10.9597 7.11333C10.9656 7.06845 11.0069 7.03676 11.0517 7.04271L11.4416 7.09404C11.4866 7.09995 11.5182 7.14115 11.5123 7.18608C11.5068 7.22733 11.4716 7.2574 11.4311 7.2574Z" fill="white"/>
|
48
|
-
<path d="M7.89995 11.2836C7.86372 11.2836 7.83058 11.2595 7.82076 11.2228L7.61713 10.4626C7.60541 10.4189 7.63138 10.3739 7.67516 10.3622C7.7188 10.3505 7.7639 10.3764 7.77562 10.4202L7.97924 11.1804C7.99096 11.2241 7.96499 11.2691 7.92121 11.2808C7.91411 11.2827 7.90698 11.2836 7.89995 11.2836Z" fill="white"/>
|
49
|
-
<path d="M9.06245 10.8026C9.03412 10.8026 9.00653 10.7879 8.99135 10.7615L8.59792 10.0801C8.57526 10.0409 8.58871 9.9907 8.62795 9.96804C8.66713 9.94539 8.71734 9.9588 8.74 9.99806L9.13342 10.6795C9.15609 10.7187 9.14263 10.7689 9.1034 10.7916C9.09051 10.799 9.07638 10.8026 9.06245 10.8026Z" fill="white"/>
|
50
|
-
<path d="M10.0606 10.0358C10.0396 10.0358 10.0186 10.0278 10.0026 10.0118L9.44624 9.45545C9.4142 9.42344 9.4142 9.37147 9.44624 9.33946C9.47823 9.30742 9.53019 9.30742 9.56223 9.33946L10.1186 9.89577C10.1506 9.92779 10.1506 9.97975 10.1186 10.0118C10.1026 10.0278 10.0816 10.0358 10.0606 10.0358Z" fill="white"/>
|
51
|
-
<path d="M10.8265 9.03801C10.8126 9.03801 10.7985 9.03447 10.7856 9.027L10.1042 8.63355C10.0649 8.61089 10.0515 8.56073 10.0742 8.5215C10.0968 8.48224 10.147 8.46883 10.1862 8.49147L10.8676 8.88492C10.9069 8.90758 10.9203 8.95774 10.8976 8.99697C10.8825 9.02329 10.8549 9.03801 10.8265 9.03801Z" fill="white"/>
|
52
|
-
<path d="M11.308 7.87554C11.301 7.87554 11.2939 7.87463 11.2868 7.87273L10.5266 7.6691C10.4829 7.65738 10.4569 7.61241 10.4686 7.56865C10.4803 7.52487 10.5254 7.49892 10.5691 7.51062L11.3292 7.71424C11.373 7.72596 11.399 7.77094 11.3872 7.8147C11.3774 7.85137 11.3443 7.87554 11.308 7.87554Z" fill="white"/>
|
53
|
-
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
54
|
-
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
55
|
-
<path d="M11.0409 6.05035C11.0004 6.05035 10.9651 6.02031 10.9597 5.97903C10.9538 5.9341 10.9854 5.8929 11.0303 5.88699L11.4202 5.83564C11.4651 5.82988 11.5064 5.86135 11.5123 5.90626C11.5182 5.95119 11.4866 5.99239 11.4416 5.9983L11.0517 6.04965C11.0481 6.05012 11.0445 6.05035 11.0409 6.05035Z" fill="white"/>
|
56
|
-
<path d="M10.7419 4.93393C10.7097 4.93393 10.6791 4.91487 10.6661 4.88328C10.6487 4.84142 10.6686 4.79344 10.7105 4.77607L11.074 4.62539C11.1157 4.6081 11.1638 4.6279 11.1812 4.66976C11.1985 4.71162 11.1787 4.7596 11.1368 4.77696L10.7732 4.92764C10.763 4.93191 10.7523 4.93393 10.7419 4.93393Z" fill="white"/>
|
57
|
-
<path d="M10.1641 3.93296C10.1395 3.93296 10.1151 3.92193 10.099 3.90088C10.0714 3.86495 10.0782 3.81346 10.1141 3.78587L10.4263 3.54627C10.4623 3.51866 10.5137 3.52546 10.5413 3.56141C10.5689 3.59734 10.5621 3.64883 10.5262 3.67642L10.214 3.91602C10.1991 3.92746 10.1815 3.93296 10.1641 3.93296Z" fill="white"/>
|
58
|
-
<path d="M9.34701 3.1169C9.32959 3.1169 9.31204 3.11137 9.29713 3.09993C9.2612 3.07235 9.25443 3.02085 9.28199 2.98493L9.52161 2.67274C9.5492 2.63678 9.60062 2.62999 9.63662 2.6576C9.67255 2.68518 9.67933 2.73668 9.65176 2.7726L9.41214 3.08479C9.39599 3.10586 9.37164 3.1169 9.34701 3.1169Z" fill="white"/>
|
59
|
-
<path d="M8.34633 2.5384C8.33585 2.5384 8.32521 2.53638 8.31494 2.53211C8.27308 2.51477 8.25321 2.46677 8.27055 2.42491L8.42125 2.06137C8.4386 2.01951 8.48672 1.99969 8.52843 2.01701C8.57029 2.03435 8.59017 2.08235 8.57283 2.12421L8.42212 2.48775C8.40902 2.51932 8.3785 2.5384 8.34633 2.5384Z" fill="white"/>
|
60
|
-
<path d="M7.23044 2.2395C7.22688 2.2395 7.22325 2.23926 7.21962 2.2388C7.17471 2.23289 7.14307 2.19166 7.149 2.14676L7.20033 1.75685C7.20623 1.71192 7.24741 1.68044 7.29237 1.68623C7.33727 1.69214 7.36891 1.73337 7.36298 1.77827L7.31166 2.16818C7.30624 2.20945 7.27099 2.2395 7.23044 2.2395Z" fill="white"/>
|
61
|
-
<path d="M10.5478 5.58451C10.5116 5.58451 10.4784 5.56032 10.4686 5.52369C10.4569 5.47993 10.4829 5.43493 10.5266 5.42321L11.2868 5.21961C11.3305 5.20789 11.3755 5.23388 11.3872 5.27762C11.399 5.32137 11.373 5.36637 11.3292 5.37809L10.5691 5.58169C10.562 5.58357 10.5548 5.58451 10.5478 5.58451Z" fill="white"/>
|
62
|
-
<path d="M10.1453 4.61122C10.1169 4.61122 10.0893 4.59652 10.0742 4.5702C10.0515 4.53097 10.0649 4.48081 10.1042 4.45815L10.7856 4.0647C10.8248 4.04209 10.875 4.05547 10.8976 4.09473C10.9203 4.13396 10.9069 4.18412 10.8676 4.20678L10.1862 4.60023C10.1733 4.60768 10.1592 4.61122 10.1453 4.61122Z" fill="white"/>
|
63
|
-
<path d="M8.66889 3.13554C8.65497 3.13554 8.64086 3.132 8.62795 3.12455C8.58871 3.10189 8.57526 3.05173 8.59792 3.0125L8.99135 2.33105C9.01403 2.29182 9.06421 2.27841 9.1034 2.30103C9.14263 2.32369 9.15609 2.37385 9.13342 2.41308L8.74 3.09453C8.72481 3.12082 8.69723 3.13554 8.66889 3.13554Z" fill="white"/>
|
64
|
-
<path d="M7.69642 2.73282C7.68939 2.73282 7.68226 2.7319 7.67516 2.73001C7.6314 2.71829 7.60541 2.67331 7.61713 2.62953L7.82076 1.8694C7.83247 1.82567 7.87754 1.7997 7.92121 1.8114C7.96497 1.82312 7.99096 1.86809 7.97924 1.91187L7.77561 2.672C7.76579 2.70865 7.73265 2.73282 7.69642 2.73282Z" fill="white"/>
|
65
|
-
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
66
|
-
</g>
|
67
|
-
<path d="M10.1133 3.08594L5.957 5.85105L6.6526 6.54665L10.1133 3.08594Z" fill="#F4413D"/>
|
68
|
-
<path d="M10.1133 3.08594L6.65259 6.54665L7.34819 7.24225L10.1133 3.08594Z" fill="#CC2B2B"/>
|
69
|
-
<path d="M5.95697 5.85059L3.19186 10.0069L6.65258 6.54619L5.95697 5.85059Z" fill="white"/>
|
70
|
-
<path d="M3.19186 10.0066L7.34818 7.2415L6.65258 6.5459L3.19186 10.0066Z" fill="#D8D8D8"/>
|
71
|
-
</g>
|
72
|
-
<defs>
|
73
|
-
<linearGradient id="paint0_linear_167_6598" x1="6.6526" y1="12.4477" x2="6.6526" y2="0.644531" gradientUnits="userSpaceOnUse">
|
74
|
-
<stop stop-color="#F2F2F2"/>
|
75
|
-
<stop offset="1" stop-color="white"/>
|
76
|
-
</linearGradient>
|
77
|
-
<linearGradient id="paint1_linear_167_6598" x1="6.65258" y1="12.4478" x2="6.65258" y2="0.644531" gradientUnits="userSpaceOnUse">
|
78
|
-
<stop/>
|
79
|
-
<stop offset="0.36" stop-opacity="0"/>
|
80
|
-
</linearGradient>
|
81
|
-
<linearGradient id="paint2_linear_167_6598" x1="6.65259" y1="11.8572" x2="6.65259" y2="1.23438" gradientUnits="userSpaceOnUse">
|
82
|
-
<stop stop-color="#3871E9"/>
|
83
|
-
<stop offset="1" stop-color="#61C5F6"/>
|
84
|
-
</linearGradient>
|
85
|
-
<linearGradient id="paint3_linear_167_6598" x1="6.6526" y1="11.8573" x2="6.6526" y2="1.23438" gradientUnits="userSpaceOnUse">
|
86
|
-
<stop/>
|
87
|
-
<stop offset="0.36" stop-opacity="0"/>
|
88
|
-
</linearGradient>
|
89
|
-
<clipPath id="clip0_167_6598">
|
90
|
-
<rect width="12" height="12" fill="white" transform="translate(0.652588 0.644531)"/>
|
91
|
-
</clipPath>
|
92
|
-
</defs>
|
93
|
-
</svg>
|
1
|
+
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_167_6598)">
|
3
|
+
<g opacity="0.08">
|
4
|
+
<path d="M6.65258 12.6442C9.80332 12.6442 12.3575 10.09 12.3575 6.9393C12.3575 3.78856 9.80332 1.23438 6.65258 1.23438C3.50184 1.23438 0.947662 3.78856 0.947662 6.9393C0.947662 10.09 3.50184 12.6442 6.65258 12.6442Z" fill="black"/>
|
5
|
+
</g>
|
6
|
+
<path d="M6.6526 12.4477C9.91194 12.4477 12.5542 9.80544 12.5542 6.54609C12.5542 3.28675 9.91194 0.644531 6.6526 0.644531C3.39326 0.644531 0.751038 3.28675 0.751038 6.54609C0.751038 9.80544 3.39326 12.4477 6.6526 12.4477Z" fill="url(#paint0_linear_167_6598)"/>
|
7
|
+
<g opacity="0.08">
|
8
|
+
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.0544C3.61541 12.0544 1.14439 9.58336 1.14439 6.54619C1.14439 3.50902 3.61541 1.03798 6.65258 1.03798C9.68975 1.03798 12.1608 3.50899 12.1608 6.54616C12.1608 9.58334 9.68975 12.0544 6.65258 12.0544Z" fill="url(#paint1_linear_167_6598)"/>
|
9
|
+
</g>
|
10
|
+
<g opacity="0.16">
|
11
|
+
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.2511C3.5019 12.2511 0.947657 9.69687 0.947657 6.54616C0.947657 3.39546 3.5019 0.841242 6.65258 0.841242C9.80326 0.841242 12.3575 3.39546 12.3575 6.54616C12.3575 9.69687 9.80326 12.2511 6.65258 12.2511Z" fill="black"/>
|
12
|
+
</g>
|
13
|
+
<path d="M6.65259 11.8572C9.586 11.8572 11.964 9.47919 11.964 6.54578C11.964 3.61237 9.586 1.23438 6.65259 1.23438C3.71918 1.23438 1.34119 3.61237 1.34119 6.54578C1.34119 9.47919 3.71918 11.8572 6.65259 11.8572Z" fill="url(#paint2_linear_167_6598)"/>
|
14
|
+
<g opacity="0.16">
|
15
|
+
<path d="M6.6526 1.23438C3.71909 1.23438 1.34113 3.61234 1.34113 6.54585C1.34113 9.47936 3.71909 11.8573 6.6526 11.8573C9.58611 11.8573 11.9641 9.47936 11.9641 6.54585C11.9641 3.61234 9.58611 1.23438 6.6526 1.23438ZM6.6526 11.6606C3.82789 11.6606 1.53786 9.37059 1.53786 6.54587C1.53786 3.72116 3.82789 1.43111 6.6526 1.43111C9.47731 1.43111 11.7673 3.72114 11.7673 6.54585C11.7673 9.37056 9.47731 11.6606 6.6526 11.6606Z" fill="url(#paint3_linear_167_6598)"/>
|
16
|
+
</g>
|
17
|
+
<g opacity="0.36">
|
18
|
+
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
19
|
+
<path d="M6.0747 2.2395C6.03415 2.2395 5.99891 2.20946 5.99347 2.16818L5.94212 1.77828C5.93621 1.73335 5.96783 1.69214 6.01273 1.68624C6.05755 1.68042 6.09887 1.71195 6.10477 1.75685L6.15612 2.14676C6.16203 2.19169 6.13041 2.23289 6.08551 2.2388C6.0819 2.23927 6.07829 2.2395 6.0747 2.2395Z" fill="white"/>
|
20
|
+
<path d="M4.95885 2.53839C4.92664 2.53839 4.89613 2.51934 4.88303 2.48774L4.73235 2.12421C4.715 2.08235 4.73485 2.03437 4.77671 2.017C4.81862 1.99968 4.86657 2.01953 4.88392 2.06137L5.0346 2.42491C5.05194 2.46677 5.03209 2.51474 4.99023 2.53211C4.97994 2.53638 4.9693 2.53839 4.95885 2.53839Z" fill="white"/>
|
21
|
+
<path d="M3.95817 3.11686C3.93354 3.11686 3.90919 3.10582 3.89304 3.08477L3.65344 2.77258C3.62585 2.73666 3.63262 2.68516 3.66858 2.65758C3.70451 2.63001 3.75602 2.63676 3.78359 2.67272L4.02319 2.98491C4.05077 3.02083 4.044 3.07233 4.00805 3.09991C3.99316 3.11135 3.97559 3.11686 3.95817 3.11686Z" fill="white"/>
|
22
|
+
<path d="M3.14105 3.93296C3.12361 3.93296 3.10605 3.92743 3.09117 3.91599L2.77896 3.67639C2.74301 3.6488 2.73623 3.59731 2.76382 3.56138C2.7914 3.52545 2.84292 3.51868 2.87883 3.54624L3.19104 3.78584C3.22699 3.81343 3.23376 3.86492 3.20618 3.90085C3.19003 3.92192 3.16568 3.93296 3.14105 3.93296Z" fill="white"/>
|
23
|
+
<path d="M2.5633 4.93395C2.55285 4.93395 2.54221 4.93194 2.53192 4.92767L2.16838 4.77699C2.12652 4.75965 2.10667 4.71165 2.12401 4.66979C2.14135 4.62795 2.18933 4.60805 2.23121 4.62542L2.59475 4.7761C2.63661 4.79344 2.65646 4.84144 2.63912 4.8833C2.62602 4.91487 2.59548 4.93395 2.5633 4.93395Z" fill="white"/>
|
24
|
+
<path d="M2.26425 6.05034C2.26069 6.05034 2.25708 6.05011 2.25344 6.04964L1.86354 5.99829C1.81861 5.99238 1.78699 5.95116 1.79292 5.90625C1.79883 5.86134 1.84003 5.82991 1.88496 5.83563L2.27487 5.88698C2.3198 5.89289 2.35141 5.93412 2.34548 5.97902C2.34005 6.0203 2.30477 6.05034 2.26425 6.05034Z" fill="white"/>
|
25
|
+
<path d="M5.60871 2.73282C5.5725 2.73282 5.53935 2.70866 5.52953 2.672L5.32593 1.91188C5.31421 1.86812 5.34018 1.82312 5.38394 1.8114C5.42767 1.7997 5.47267 1.82563 5.48442 1.86941L5.68802 2.62953C5.69974 2.67329 5.67377 2.71829 5.63001 2.73001C5.62289 2.73191 5.61574 2.73282 5.60871 2.73282Z" fill="white"/>
|
26
|
+
<path d="M4.63628 3.13555C4.60792 3.13555 4.58036 3.12085 4.56515 3.09453L4.1717 2.41309C4.14906 2.37385 4.16249 2.3237 4.20173 2.30103C4.24096 2.27842 4.29112 2.2918 4.31378 2.33106L4.70723 3.0125C4.72987 3.05174 4.71644 3.10189 4.6772 3.12456C4.66429 3.13199 4.65018 3.13555 4.63628 3.13555Z" fill="white"/>
|
27
|
+
<path d="M3.80091 3.77605C3.77991 3.77605 3.75891 3.76803 3.7429 3.75202L3.18657 3.19571C3.15453 3.16367 3.15453 3.11173 3.18657 3.07969C3.2186 3.04765 3.27054 3.04765 3.30258 3.07969L3.85892 3.63601C3.89096 3.66804 3.89096 3.71998 3.85892 3.75202C3.84289 3.76803 3.82189 3.77605 3.80091 3.77605Z" fill="white"/>
|
28
|
+
<path d="M3.15991 4.61122C3.14599 4.61122 3.1319 4.60768 3.11896 4.60022L2.43752 4.20678C2.39828 4.18411 2.38483 4.13396 2.40749 4.09472C2.43016 4.05549 2.48034 4.04208 2.51955 4.0647L3.20099 4.45814C3.24023 4.48081 3.25368 4.53097 3.23102 4.5702C3.21585 4.59652 3.18827 4.61122 3.15991 4.61122Z" fill="white"/>
|
29
|
+
<path d="M2.75733 5.5845C2.75032 5.5845 2.74317 5.58358 2.73605 5.58169L1.97592 5.37808C1.93216 5.36637 1.90619 5.32139 1.91791 5.27761C1.92963 5.23387 1.97454 5.2079 2.01839 5.2196L2.77851 5.4232C2.82227 5.43492 2.84824 5.4799 2.83652 5.52368C2.8267 5.56031 2.79356 5.5845 2.75733 5.5845Z" fill="white"/>
|
30
|
+
<path d="M2.61981 6.62793H1.83292C1.78761 6.62793 1.75089 6.5912 1.75089 6.5459C1.75089 6.50059 1.78761 6.46387 1.83292 6.46387H2.61981C2.66511 6.46387 2.70184 6.50059 2.70184 6.5459C2.70184 6.5912 2.66511 6.62793 2.61981 6.62793Z" fill="white"/>
|
31
|
+
<path d="M1.87412 7.25738C1.83357 7.25738 1.79832 7.22736 1.79288 7.18606C1.78698 7.14113 1.8186 7.09993 1.8635 7.09402L2.25341 7.04269C2.29843 7.03683 2.33954 7.06838 2.34545 7.11331C2.35135 7.15824 2.31974 7.19944 2.27483 7.20535L1.88492 7.25668C1.88129 7.25715 1.87768 7.25738 1.87412 7.25738Z" fill="white"/>
|
32
|
+
<path d="M2.19983 8.47299C2.16763 8.47299 2.13711 8.45394 2.12401 8.42234C2.10667 8.38051 2.12652 8.33251 2.16838 8.31516L2.53192 8.16448C2.57382 8.14712 2.62178 8.16701 2.63912 8.20887C2.65646 8.25071 2.63661 8.29871 2.59475 8.31605L2.23121 8.46673C2.22095 8.47097 2.21028 8.47299 2.19983 8.47299Z" fill="white"/>
|
33
|
+
<path d="M2.82895 9.56188C2.80432 9.56188 2.77997 9.55084 2.76382 9.52979C2.73623 9.49386 2.74301 9.44237 2.77896 9.41478L3.09117 9.17518C3.12712 9.14757 3.17862 9.15435 3.20618 9.19032C3.23376 9.22625 3.22699 9.27775 3.19104 9.30533L2.87883 9.54493C2.86394 9.55637 2.84639 9.56188 2.82895 9.56188Z" fill="white"/>
|
34
|
+
<path d="M3.71845 10.4518C3.70101 10.4518 3.68346 10.4463 3.66858 10.4349C3.63262 10.4073 3.62585 10.3558 3.65344 10.3199L3.89304 10.0077C3.92062 9.97175 3.97214 9.96496 4.00805 9.99254C4.044 10.0201 4.05077 10.0716 4.02319 10.1075L3.78359 10.4197C3.76741 10.4408 3.74306 10.4518 3.71845 10.4518Z" fill="white"/>
|
35
|
+
<path d="M4.8081 11.0814C4.79764 11.0814 4.787 11.0794 4.77671 11.0751C4.73485 11.0578 4.715 11.0098 4.73235 10.9679L4.88303 10.6044C4.90037 10.5625 4.94832 10.5426 4.99023 10.56C5.03209 10.5773 5.05194 10.6253 5.0346 10.6672L4.88392 11.0307C4.87082 11.0623 4.84028 11.0814 4.8081 11.0814Z" fill="white"/>
|
36
|
+
<path d="M6.02357 11.4065C6.02001 11.4065 6.0164 11.4063 6.01277 11.4058C5.96784 11.3999 5.93622 11.3587 5.94215 11.3138L5.9935 10.9239C5.99943 10.8789 6.04064 10.8474 6.08554 10.8532C6.13047 10.8592 6.16209 10.9004 6.15616 10.9453L6.10481 11.3352C6.09937 11.3765 6.06412 11.4065 6.02357 11.4065Z" fill="white"/>
|
37
|
+
<path d="M1.99711 7.87552C1.96087 7.87552 1.92773 7.85136 1.91791 7.81468C1.90619 7.77092 1.93216 7.72594 1.97592 7.71423L2.73605 7.5106C2.7799 7.49895 2.8248 7.52485 2.83652 7.56863C2.84824 7.61239 2.82227 7.65737 2.77851 7.66909L2.01839 7.87271C2.01129 7.87461 2.00414 7.87552 1.99711 7.87552Z" fill="white"/>
|
38
|
+
<path d="M2.47862 9.03803C2.45026 9.03803 2.42269 9.02331 2.40748 8.99699C2.38484 8.95775 2.39827 8.9076 2.43751 8.88493L3.11895 8.49149C3.15821 8.4688 3.20837 8.48228 3.23101 8.52151C3.25365 8.56075 3.24022 8.6109 3.20098 8.63357L2.51954 9.02701C2.50662 9.03449 2.49254 9.03803 2.47862 9.03803Z" fill="white"/>
|
39
|
+
<path d="M4.24265 10.8026C4.22873 10.8026 4.21465 10.799 4.20171 10.7916C4.16247 10.7689 4.14902 10.7187 4.17168 10.6795L4.56513 9.99806C4.58779 9.9588 4.63797 9.94539 4.67718 9.96804C4.71642 9.9907 4.72987 10.0409 4.70721 10.0801L4.31376 10.7615C4.29858 10.7879 4.27099 10.8026 4.24265 10.8026Z" fill="white"/>
|
40
|
+
<path d="M5.40522 11.2836C5.39819 11.2836 5.39107 11.2827 5.38394 11.2808C5.34018 11.2691 5.31421 11.2241 5.32593 11.1804L5.52953 10.4202C5.54125 10.3765 5.58616 10.3505 5.63001 10.3622C5.67377 10.3739 5.69974 10.4189 5.68802 10.4626L5.48442 11.2228C5.4746 11.2594 5.44146 11.2836 5.40522 11.2836Z" fill="white"/>
|
41
|
+
<path d="M6.65259 11.448C6.60728 11.448 6.57056 11.4113 6.57056 11.366V10.5791C6.57056 10.5338 6.60728 10.4971 6.65259 10.4971C6.69789 10.4971 6.73462 10.5338 6.73462 10.5791V11.366C6.73462 11.4113 6.69789 11.448 6.65259 11.448Z" fill="white"/>
|
42
|
+
<path d="M7.28157 11.4065C7.24105 11.4065 7.2058 11.3765 7.20036 11.3352L7.14903 10.9453C7.1431 10.9004 7.17474 10.8592 7.21965 10.8532C7.26467 10.8473 7.30578 10.8789 7.31169 10.9239L7.36301 11.3138C7.36894 11.3587 7.3373 11.3999 7.2924 11.4058C7.28876 11.4063 7.28513 11.4065 7.28157 11.4065Z" fill="white"/>
|
43
|
+
<path d="M8.49705 11.0814C8.46488 11.0814 8.43434 11.0623 8.42126 11.0307L8.27055 10.6672C8.25321 10.6253 8.27306 10.5773 8.31495 10.56C8.35666 10.5427 8.40478 10.5625 8.42213 10.6044L8.57283 10.9679C8.59017 11.0098 8.57032 11.0578 8.52844 11.0751C8.5182 11.0793 8.50755 11.0814 8.49705 11.0814Z" fill="white"/>
|
44
|
+
<path d="M9.58673 10.4518C9.5621 10.4518 9.53775 10.4408 9.5216 10.4198L9.28198 10.1076C9.25439 10.0716 9.26116 10.0201 9.29712 9.99256C9.333 9.96497 9.38452 9.97172 9.41213 10.0077L9.65175 10.3199C9.67934 10.3558 9.67256 10.4073 9.63661 10.4349C9.62175 10.4463 9.60417 10.4518 9.58673 10.4518Z" fill="white"/>
|
45
|
+
<path d="M10.4762 9.5619C10.4588 9.5619 10.4412 9.5564 10.4263 9.54494L10.1141 9.30533C10.0782 9.27775 10.0714 9.22626 10.099 9.19033C10.1265 9.15437 10.178 9.14755 10.214 9.17519L10.5262 9.41479C10.5621 9.44237 10.5689 9.49387 10.5413 9.52979C10.5252 9.55089 10.5008 9.5619 10.4762 9.5619Z" fill="white"/>
|
46
|
+
<path d="M11.1053 8.47299C11.0949 8.47299 11.0842 8.47097 11.074 8.46671L10.7104 8.31603C10.6686 8.29868 10.6487 8.25068 10.666 8.20885C10.6834 8.16696 10.7314 8.14716 10.7732 8.16446L11.1367 8.31514C11.1786 8.33248 11.1985 8.38048 11.1811 8.42232C11.1681 8.45393 11.1375 8.47299 11.1053 8.47299Z" fill="white"/>
|
47
|
+
<path d="M11.4311 7.2574C11.4275 7.2574 11.4239 7.25716 11.4202 7.2567L11.0303 7.20537C10.9854 7.19946 10.9538 7.15826 10.9597 7.11333C10.9656 7.06845 11.0069 7.03676 11.0517 7.04271L11.4416 7.09404C11.4866 7.09995 11.5182 7.14115 11.5123 7.18608C11.5068 7.22733 11.4716 7.2574 11.4311 7.2574Z" fill="white"/>
|
48
|
+
<path d="M7.89995 11.2836C7.86372 11.2836 7.83058 11.2595 7.82076 11.2228L7.61713 10.4626C7.60541 10.4189 7.63138 10.3739 7.67516 10.3622C7.7188 10.3505 7.7639 10.3764 7.77562 10.4202L7.97924 11.1804C7.99096 11.2241 7.96499 11.2691 7.92121 11.2808C7.91411 11.2827 7.90698 11.2836 7.89995 11.2836Z" fill="white"/>
|
49
|
+
<path d="M9.06245 10.8026C9.03412 10.8026 9.00653 10.7879 8.99135 10.7615L8.59792 10.0801C8.57526 10.0409 8.58871 9.9907 8.62795 9.96804C8.66713 9.94539 8.71734 9.9588 8.74 9.99806L9.13342 10.6795C9.15609 10.7187 9.14263 10.7689 9.1034 10.7916C9.09051 10.799 9.07638 10.8026 9.06245 10.8026Z" fill="white"/>
|
50
|
+
<path d="M10.0606 10.0358C10.0396 10.0358 10.0186 10.0278 10.0026 10.0118L9.44624 9.45545C9.4142 9.42344 9.4142 9.37147 9.44624 9.33946C9.47823 9.30742 9.53019 9.30742 9.56223 9.33946L10.1186 9.89577C10.1506 9.92779 10.1506 9.97975 10.1186 10.0118C10.1026 10.0278 10.0816 10.0358 10.0606 10.0358Z" fill="white"/>
|
51
|
+
<path d="M10.8265 9.03801C10.8126 9.03801 10.7985 9.03447 10.7856 9.027L10.1042 8.63355C10.0649 8.61089 10.0515 8.56073 10.0742 8.5215C10.0968 8.48224 10.147 8.46883 10.1862 8.49147L10.8676 8.88492C10.9069 8.90758 10.9203 8.95774 10.8976 8.99697C10.8825 9.02329 10.8549 9.03801 10.8265 9.03801Z" fill="white"/>
|
52
|
+
<path d="M11.308 7.87554C11.301 7.87554 11.2939 7.87463 11.2868 7.87273L10.5266 7.6691C10.4829 7.65738 10.4569 7.61241 10.4686 7.56865C10.4803 7.52487 10.5254 7.49892 10.5691 7.51062L11.3292 7.71424C11.373 7.72596 11.399 7.77094 11.3872 7.8147C11.3774 7.85137 11.3443 7.87554 11.308 7.87554Z" fill="white"/>
|
53
|
+
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
54
|
+
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
55
|
+
<path d="M11.0409 6.05035C11.0004 6.05035 10.9651 6.02031 10.9597 5.97903C10.9538 5.9341 10.9854 5.8929 11.0303 5.88699L11.4202 5.83564C11.4651 5.82988 11.5064 5.86135 11.5123 5.90626C11.5182 5.95119 11.4866 5.99239 11.4416 5.9983L11.0517 6.04965C11.0481 6.05012 11.0445 6.05035 11.0409 6.05035Z" fill="white"/>
|
56
|
+
<path d="M10.7419 4.93393C10.7097 4.93393 10.6791 4.91487 10.6661 4.88328C10.6487 4.84142 10.6686 4.79344 10.7105 4.77607L11.074 4.62539C11.1157 4.6081 11.1638 4.6279 11.1812 4.66976C11.1985 4.71162 11.1787 4.7596 11.1368 4.77696L10.7732 4.92764C10.763 4.93191 10.7523 4.93393 10.7419 4.93393Z" fill="white"/>
|
57
|
+
<path d="M10.1641 3.93296C10.1395 3.93296 10.1151 3.92193 10.099 3.90088C10.0714 3.86495 10.0782 3.81346 10.1141 3.78587L10.4263 3.54627C10.4623 3.51866 10.5137 3.52546 10.5413 3.56141C10.5689 3.59734 10.5621 3.64883 10.5262 3.67642L10.214 3.91602C10.1991 3.92746 10.1815 3.93296 10.1641 3.93296Z" fill="white"/>
|
58
|
+
<path d="M9.34701 3.1169C9.32959 3.1169 9.31204 3.11137 9.29713 3.09993C9.2612 3.07235 9.25443 3.02085 9.28199 2.98493L9.52161 2.67274C9.5492 2.63678 9.60062 2.62999 9.63662 2.6576C9.67255 2.68518 9.67933 2.73668 9.65176 2.7726L9.41214 3.08479C9.39599 3.10586 9.37164 3.1169 9.34701 3.1169Z" fill="white"/>
|
59
|
+
<path d="M8.34633 2.5384C8.33585 2.5384 8.32521 2.53638 8.31494 2.53211C8.27308 2.51477 8.25321 2.46677 8.27055 2.42491L8.42125 2.06137C8.4386 2.01951 8.48672 1.99969 8.52843 2.01701C8.57029 2.03435 8.59017 2.08235 8.57283 2.12421L8.42212 2.48775C8.40902 2.51932 8.3785 2.5384 8.34633 2.5384Z" fill="white"/>
|
60
|
+
<path d="M7.23044 2.2395C7.22688 2.2395 7.22325 2.23926 7.21962 2.2388C7.17471 2.23289 7.14307 2.19166 7.149 2.14676L7.20033 1.75685C7.20623 1.71192 7.24741 1.68044 7.29237 1.68623C7.33727 1.69214 7.36891 1.73337 7.36298 1.77827L7.31166 2.16818C7.30624 2.20945 7.27099 2.2395 7.23044 2.2395Z" fill="white"/>
|
61
|
+
<path d="M10.5478 5.58451C10.5116 5.58451 10.4784 5.56032 10.4686 5.52369C10.4569 5.47993 10.4829 5.43493 10.5266 5.42321L11.2868 5.21961C11.3305 5.20789 11.3755 5.23388 11.3872 5.27762C11.399 5.32137 11.373 5.36637 11.3292 5.37809L10.5691 5.58169C10.562 5.58357 10.5548 5.58451 10.5478 5.58451Z" fill="white"/>
|
62
|
+
<path d="M10.1453 4.61122C10.1169 4.61122 10.0893 4.59652 10.0742 4.5702C10.0515 4.53097 10.0649 4.48081 10.1042 4.45815L10.7856 4.0647C10.8248 4.04209 10.875 4.05547 10.8976 4.09473C10.9203 4.13396 10.9069 4.18412 10.8676 4.20678L10.1862 4.60023C10.1733 4.60768 10.1592 4.61122 10.1453 4.61122Z" fill="white"/>
|
63
|
+
<path d="M8.66889 3.13554C8.65497 3.13554 8.64086 3.132 8.62795 3.12455C8.58871 3.10189 8.57526 3.05173 8.59792 3.0125L8.99135 2.33105C9.01403 2.29182 9.06421 2.27841 9.1034 2.30103C9.14263 2.32369 9.15609 2.37385 9.13342 2.41308L8.74 3.09453C8.72481 3.12082 8.69723 3.13554 8.66889 3.13554Z" fill="white"/>
|
64
|
+
<path d="M7.69642 2.73282C7.68939 2.73282 7.68226 2.7319 7.67516 2.73001C7.6314 2.71829 7.60541 2.67331 7.61713 2.62953L7.82076 1.8694C7.83247 1.82567 7.87754 1.7997 7.92121 1.8114C7.96497 1.82312 7.99096 1.86809 7.97924 1.91187L7.77561 2.672C7.76579 2.70865 7.73265 2.73282 7.69642 2.73282Z" fill="white"/>
|
65
|
+
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
66
|
+
</g>
|
67
|
+
<path d="M10.1133 3.08594L5.957 5.85105L6.6526 6.54665L10.1133 3.08594Z" fill="#F4413D"/>
|
68
|
+
<path d="M10.1133 3.08594L6.65259 6.54665L7.34819 7.24225L10.1133 3.08594Z" fill="#CC2B2B"/>
|
69
|
+
<path d="M5.95697 5.85059L3.19186 10.0069L6.65258 6.54619L5.95697 5.85059Z" fill="white"/>
|
70
|
+
<path d="M3.19186 10.0066L7.34818 7.2415L6.65258 6.5459L3.19186 10.0066Z" fill="#D8D8D8"/>
|
71
|
+
</g>
|
72
|
+
<defs>
|
73
|
+
<linearGradient id="paint0_linear_167_6598" x1="6.6526" y1="12.4477" x2="6.6526" y2="0.644531" gradientUnits="userSpaceOnUse">
|
74
|
+
<stop stop-color="#F2F2F2"/>
|
75
|
+
<stop offset="1" stop-color="white"/>
|
76
|
+
</linearGradient>
|
77
|
+
<linearGradient id="paint1_linear_167_6598" x1="6.65258" y1="12.4478" x2="6.65258" y2="0.644531" gradientUnits="userSpaceOnUse">
|
78
|
+
<stop/>
|
79
|
+
<stop offset="0.36" stop-opacity="0"/>
|
80
|
+
</linearGradient>
|
81
|
+
<linearGradient id="paint2_linear_167_6598" x1="6.65259" y1="11.8572" x2="6.65259" y2="1.23438" gradientUnits="userSpaceOnUse">
|
82
|
+
<stop stop-color="#3871E9"/>
|
83
|
+
<stop offset="1" stop-color="#61C5F6"/>
|
84
|
+
</linearGradient>
|
85
|
+
<linearGradient id="paint3_linear_167_6598" x1="6.6526" y1="11.8573" x2="6.6526" y2="1.23438" gradientUnits="userSpaceOnUse">
|
86
|
+
<stop/>
|
87
|
+
<stop offset="0.36" stop-opacity="0"/>
|
88
|
+
</linearGradient>
|
89
|
+
<clipPath id="clip0_167_6598">
|
90
|
+
<rect width="12" height="12" fill="white" transform="translate(0.652588 0.644531)"/>
|
91
|
+
</clipPath>
|
92
|
+
</defs>
|
93
|
+
</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_4989_1609)">
|
3
|
-
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="#2196F3"/>
|
4
|
-
<path d="M7 7L3 13L9 9L7 7Z" fill="#FAFAFA"/>
|
5
|
-
<path d="M7 7L9 9L13 3L7 7Z" fill="#F44336"/>
|
6
|
-
</g>
|
7
|
-
<defs>
|
8
|
-
<clipPath id="clip0_4989_1609">
|
9
|
-
<rect width="16" height="16" fill="white"/>
|
10
|
-
</clipPath>
|
11
|
-
</defs>
|
12
|
-
</svg>
|
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_4989_1609)">
|
3
|
+
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="#2196F3"/>
|
4
|
+
<path d="M7 7L3 13L9 9L7 7Z" fill="#FAFAFA"/>
|
5
|
+
<path d="M7 7L9 9L13 3L7 7Z" fill="#F44336"/>
|
6
|
+
</g>
|
7
|
+
<defs>
|
8
|
+
<clipPath id="clip0_4989_1609">
|
9
|
+
<rect width="16" height="16" fill="white"/>
|
10
|
+
</clipPath>
|
11
|
+
</defs>
|
12
|
+
</svg>
|
@@ -1,7 +1,7 @@
|
|
1
|
-
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M4.51031 6.07875C4.42699 6.06597 4.34293 6.05878 4.25868 6.05725C4.06937 6.0549 3.98884 6.1244 3.9894 6.12431C3.93356 6.16372 3.90649 6.2225 3.90649 6.30362C3.90649 6.35534 3.9159 6.39575 3.93431 6.42412C3.94637 6.443 3.95143 6.45012 3.98781 6.47915L3.98834 6.47947C3.98774 6.47928 4.07124 6.54497 4.25996 6.53359C4.39284 6.52559 4.51043 6.50028 4.51043 6.50028H4.51031V6.07875Z" fill="currentColor"/>
|
3
|
-
<path d="M10.0592 5.52728C9.93694 5.52728 9.85038 5.569 9.79347 5.65603C9.73619 5.74363 9.70703 5.86828 9.70703 6.027C9.70703 6.18575 9.73603 6.31156 9.79347 6.39975C9.8505 6.48713 9.9375 6.52969 10.0592 6.52969C10.1809 6.52969 10.2683 6.48678 10.3261 6.39916C10.3841 6.31044 10.4137 6.18531 10.4137 6.02672C10.4137 5.86813 10.3844 5.74353 10.3261 5.65603C10.2685 5.56944 10.1815 5.52728 10.0592 5.52728Z" fill="currentColor"/>
|
4
|
-
<path d="M6.33305 5.52026C6.21136 5.52026 6.1248 5.56786 6.06789 5.65489C6.02999 5.71189 6.00577 5.78536 5.99268 5.87348L6.65408 5.87361C6.6478 5.78833 6.63108 5.71223 6.59293 5.65489C6.5353 5.56811 6.45474 5.52026 6.33305 5.52026Z" fill="currentColor"/>
|
5
|
-
<path d="M12.5488 2.28872C12.0687 2.28847 11.5938 2.38966 11.1554 2.58563C10.6616 1.70963 9.74441 1.12169 8.68612 1.12169C7.89241 1.12169 7.17397 1.45444 6.65775 1.99182L6.65834 1.99488C6.09394 1.25116 5.19441 0.771973 4.18903 0.771973C2.47228 0.771973 1.07887 2.1595 1.07887 3.87629C1.07844 4.30104 1.1655 4.72132 1.33463 5.11094C0.537375 5.58125 0 6.45141 0 7.45088C0 8.93838 1.1935 10.1495 2.66922 10.1495C2.85375 10.1496 3.03778 10.1304 3.21834 10.0923C3.624 11.1918 4.67641 11.9737 5.91694 11.9737C7.10456 11.9737 8.12463 11.2505 8.56262 10.2217C8.90687 10.3896 9.28494 10.4764 9.66794 10.4757C10.6086 10.4757 11.4347 9.95244 11.8668 9.18222C12.0891 9.22644 12.316 9.24982 12.5488 9.24982C14.4538 9.24982 16 7.69182 16 5.76929C16 3.84675 14.4537 2.28872 12.5488 2.28872ZM3.43916 6.32532C3.43916 6.60632 3.23516 6.78094 2.90709 6.78094C2.746 6.78094 2.59197 6.75566 2.42853 6.66925C2.39797 6.65157 2.36744 6.63582 2.33741 6.61403C2.33416 6.60941 2.32053 6.60391 2.33059 6.57769L2.33034 6.57722L2.39503 6.39732C2.40525 6.3665 2.42878 6.37679 2.43819 6.38247C2.456 6.39335 2.46919 6.40304 2.49228 6.41654C2.68337 6.53729 2.85969 6.53825 2.915 6.53825C3.05728 6.53825 3.14606 6.46238 3.14606 6.36066V6.35513C3.14606 6.2446 3.00966 6.2025 2.85209 6.15407L2.81728 6.14322C2.60094 6.08147 2.36928 5.99213 2.36928 5.71813V5.71253C2.36928 5.45269 2.57919 5.271 2.87959 5.271L2.91234 5.27088C3.08872 5.27088 3.25922 5.32203 3.38269 5.39728C3.39391 5.404 3.40484 5.41697 3.39862 5.43422C3.39275 5.45066 3.33791 5.5975 3.33159 5.61413C3.32 5.64488 3.28816 5.62429 3.28816 5.62429C3.18056 5.56488 3.01241 5.51788 2.87131 5.51788C2.74431 5.51788 2.662 5.5855 2.662 5.67722V5.68269C2.662 5.78972 2.8025 5.83569 2.96537 5.88847L2.99353 5.8976C3.20872 5.96522 3.43919 6.05985 3.43919 6.31972L3.43916 6.32532ZM4.785 6.68688C4.785 6.68688 4.75066 6.69622 4.71975 6.70332C4.64228 6.7201 4.56447 6.73522 4.48634 6.74869C4.39463 6.76416 4.29997 6.77216 4.20472 6.77216C4.11419 6.77216 4.03187 6.76375 3.95897 6.7471C3.88547 6.73066 3.82181 6.70291 3.77025 6.66541C3.71841 6.62785 3.67678 6.57791 3.64913 6.52019C3.62091 6.462 3.60663 6.39085 3.60663 6.30854C3.60663 6.22741 3.62337 6.15569 3.65625 6.09453C3.68881 6.03394 3.73487 5.98163 3.79087 5.94166C3.84672 5.90144 3.912 5.87122 3.98431 5.85169C4.05603 5.83232 4.13306 5.82241 4.21244 5.82241C4.27066 5.82241 4.31944 5.82375 4.35706 5.82654L4.35794 5.82869C4.35794 5.82869 4.43144 5.83535 4.51081 5.84685V5.80763C4.51081 5.68419 4.485 5.62544 4.43437 5.58657C4.38262 5.54688 4.30503 5.5266 4.20509 5.5266C4.20509 5.5266 3.97934 5.52366 3.80119 5.62069C3.79297 5.62557 3.78597 5.62832 3.78597 5.62832C3.78597 5.62832 3.76369 5.63616 3.7555 5.61329L3.68966 5.43691C3.67966 5.41135 3.698 5.40003 3.698 5.40003C3.78147 5.33463 3.98372 5.29535 3.98372 5.29535C4.05075 5.28188 4.16303 5.2725 4.23241 5.2725C4.41759 5.2725 4.56047 5.31541 4.65806 5.40069C4.756 5.48594 4.80562 5.6241 4.80562 5.80991L4.80616 6.65654C4.80619 6.65654 4.80794 6.68104 4.785 6.68688ZM5.40703 6.71672C5.40703 6.73225 5.39597 6.74488 5.38047 6.74488H5.13453C5.11894 6.74488 5.10791 6.73225 5.10791 6.71672V4.73729C5.10791 4.72182 5.11897 4.70929 5.13453 4.70929H5.38047C5.396 4.70929 5.40703 4.72179 5.40703 4.73729V6.71672ZM6.94413 6.07894C6.94159 6.10285 6.91713 6.10303 6.91713 6.10303L5.98819 6.10235C5.99347 6.24347 6.02756 6.34282 6.09578 6.411C6.16281 6.47763 6.26981 6.52013 6.41328 6.52038C6.63375 6.52097 6.72781 6.47641 6.79425 6.4516C6.79425 6.4516 6.81987 6.44241 6.82925 6.46778L6.88981 6.63769C6.90197 6.66635 6.89222 6.67625 6.882 6.68204C6.82438 6.71435 6.68328 6.77403 6.41519 6.77494C6.28466 6.77535 6.17178 6.7566 6.07831 6.72044C5.98425 6.68397 5.90606 6.63225 5.84491 6.56582C5.78434 6.49997 5.73897 6.42063 5.71084 6.33007C5.68281 6.2401 5.66875 6.14072 5.66875 6.03375C5.66875 5.9291 5.68234 5.82916 5.70931 5.738C5.73634 5.64572 5.77887 5.56516 5.83512 5.49697C5.89156 5.42875 5.96331 5.37419 6.04856 5.3341C6.13381 5.29432 6.23906 5.27472 6.35488 5.27472C6.44619 5.27457 6.53659 5.29291 6.62063 5.32866C6.67884 5.35335 6.73703 5.39863 6.797 5.46269C6.83462 5.50328 6.89247 5.59207 6.91575 5.67963L6.91641 5.67982C6.97594 5.88844 6.94513 6.06907 6.94413 6.07894ZM7.71037 6.78047C7.54928 6.78047 7.39525 6.75516 7.23178 6.66875C7.20122 6.65107 7.17059 6.63532 7.14066 6.61353C7.13731 6.60891 7.12366 6.60344 7.13372 6.57722L7.133 6.57672L7.19769 6.39682C7.20716 6.36744 7.23484 6.37822 7.24078 6.382C7.25831 6.39328 7.27181 6.40257 7.29494 6.41603C7.48544 6.53678 7.66222 6.53775 7.71766 6.53775C7.85994 6.53775 7.94872 6.46191 7.94872 6.36019V6.35466C7.94872 6.24413 7.81291 6.20203 7.65475 6.15357L7.62 6.14275C7.40366 6.081 7.172 5.99163 7.172 5.71766V5.71207C7.172 5.45219 7.38188 5.2705 7.68231 5.2705L7.71513 5.27041C7.8915 5.27041 8.062 5.32157 8.18547 5.39682C8.19662 5.4035 8.20762 5.4165 8.20134 5.43375C8.19606 5.45019 8.14112 5.59703 8.13491 5.61366C8.12325 5.64438 8.09141 5.62382 8.09141 5.62382C7.98322 5.56438 7.81566 5.51741 7.67456 5.51741C7.54756 5.51741 7.46525 5.585 7.46525 5.67675V5.68222C7.46525 5.78922 7.60575 5.83522 7.76862 5.888L7.79678 5.89713C8.01256 5.96472 8.24244 6.05938 8.24244 6.31925V6.32479C8.24247 6.60585 8.03844 6.78047 7.71037 6.78047ZM9.33372 5.52654C9.32837 5.55447 9.30262 5.5535 9.30262 5.5535H8.99712L8.78819 6.73579C8.76625 6.858 8.73888 6.96291 8.70669 7.04738C8.67416 7.13266 8.64019 7.19516 8.58616 7.25482C8.53619 7.31016 8.47969 7.351 8.41478 7.37447C8.35028 7.39775 8.2725 7.40975 8.18713 7.40975C8.14638 7.40975 8.10288 7.409 8.05125 7.39682C8.01409 7.38807 7.99381 7.38182 7.96653 7.37207C7.95491 7.36788 7.94566 7.35341 7.95225 7.33507C7.95872 7.31647 8.01334 7.16629 8.02103 7.14657C8.0305 7.12247 8.05453 7.13163 8.05453 7.13163C8.07106 7.13857 8.08253 7.1435 8.10456 7.14788C8.12663 7.15229 8.15647 7.15607 8.17894 7.15607C8.21928 7.15607 8.25606 7.15113 8.28806 7.14035C8.32681 7.12735 8.34925 7.10507 8.37297 7.07479C8.39744 7.0435 8.41731 7.00041 8.43766 6.94291C8.45828 6.88466 8.47694 6.80775 8.49322 6.71428L8.70119 5.5535H8.49622C8.47153 5.55363 8.46359 5.5421 8.466 5.52363L8.50056 5.33079C8.50597 5.30275 8.53166 5.30382 8.53166 5.30382H8.74219L8.75353 5.24094C8.785 5.05475 8.84772 4.91325 8.93991 4.82035C9.03275 4.72675 9.16497 4.67935 9.33272 4.67935C9.37494 4.67888 9.41712 4.68216 9.45878 4.6891C9.48975 4.6945 9.52034 4.70175 9.55044 4.71085C9.55703 4.71344 9.57478 4.72222 9.5675 4.74316L9.49659 4.93788C9.49066 4.95253 9.48659 4.96147 9.45638 4.95222C9.44884 4.95 9.43769 4.94675 9.40894 4.94066C9.38806 4.93629 9.36066 4.93294 9.33275 4.93294C9.29903 4.93247 9.26544 4.93735 9.23322 4.94729C9.20381 4.95694 9.17719 4.9735 9.15556 4.99563C9.13241 5.01885 9.10506 5.05266 9.09053 5.09457C9.0565 5.19279 9.04303 5.29704 9.04156 5.30375H9.33806C9.36287 5.30363 9.37075 5.31516 9.36834 5.33363L9.33372 5.52654ZM10.6871 6.32157C10.6601 6.41269 10.6182 6.49266 10.5624 6.55969C10.5066 6.62672 10.4354 6.68032 10.352 6.71841C10.2685 6.75654 10.1697 6.77591 10.0586 6.77591C9.94747 6.77591 9.84869 6.75654 9.76462 6.71841C9.68112 6.68019 9.61006 6.62669 9.55416 6.55969C9.49831 6.49263 9.45637 6.41269 9.4295 6.32157C9.40275 6.23103 9.38916 6.13225 9.38916 6.027C9.38916 5.92178 9.40275 5.823 9.4295 5.73244C9.45653 5.64132 9.49841 5.56135 9.55416 5.49435C9.61 5.42732 9.68116 5.37347 9.76462 5.33444C9.84869 5.29544 9.94687 5.27563 10.0586 5.27563C10.1703 5.27563 10.2691 5.29532 10.3526 5.33444C10.4366 5.37322 10.5071 5.42735 10.563 5.49435C10.6189 5.56138 10.6607 5.64132 10.6877 5.73244H10.6871C10.7138 5.82297 10.7274 5.92235 10.7274 6.027C10.7274 6.13229 10.7138 6.23103 10.6871 6.32157ZM11.8238 5.34857L11.8244 5.34475C11.8156 5.37004 11.7704 5.49697 11.7544 5.53938C11.7484 5.5555 11.7384 5.56641 11.7206 5.56441C11.7206 5.56441 11.6673 5.55197 11.6188 5.55197C11.5767 5.55197 11.5347 5.55785 11.4942 5.5695C11.451 5.58291 11.4117 5.6065 11.3795 5.63829C11.3458 5.67122 11.3185 5.71713 11.2984 5.77469C11.278 5.83288 11.2678 5.92519 11.2678 6.0181V6.71185C11.2678 6.72738 11.2552 6.73994 11.2397 6.73997H10.9963C10.9808 6.73994 10.9682 6.72738 10.9681 6.71185V5.33019C10.9681 5.31466 10.9793 5.30216 10.9947 5.30216H11.2322C11.2478 5.30216 11.2588 5.31466 11.2588 5.33019L11.259 5.44307C11.2942 5.39485 11.3578 5.35316 11.4153 5.32725C11.4736 5.30113 11.5382 5.2815 11.6546 5.28882C11.7152 5.29257 11.794 5.30919 11.8098 5.31522C11.8101 5.31532 11.8104 5.31544 11.8106 5.31554C11.8234 5.321 11.8293 5.33579 11.8238 5.34857ZM12.9955 6.70338C12.8921 6.74438 12.748 6.77275 12.6075 6.77275C12.37 6.77275 12.1877 6.70457 12.0666 6.56935C11.9455 6.43469 11.8843 6.25069 11.8843 6.02372C11.8843 5.9185 11.8993 5.81913 11.929 5.7286C11.959 5.63747 12.0037 5.5575 12.0625 5.4905C12.1213 5.42344 12.1954 5.36957 12.283 5.33057C12.3706 5.29154 12.4729 5.27185 12.5881 5.27185C12.6657 5.27185 12.7345 5.27654 12.7939 5.2856C12.8574 5.29519 12.9412 5.31791 12.9767 5.33182C12.9833 5.33435 13.0011 5.34316 12.9938 5.36404C12.968 5.43694 12.9503 5.48453 12.9262 5.55097C12.9159 5.57925 12.8945 5.56988 12.8945 5.56988C12.8039 5.54157 12.7175 5.52844 12.6046 5.52844C12.4694 5.52844 12.3671 5.57432 12.3007 5.6625C12.2333 5.75185 12.1958 5.86829 12.1954 6.0235C12.1948 6.194 12.2372 6.31978 12.313 6.398C12.3882 6.47613 12.4941 6.5156 12.6264 6.5156C12.6799 6.5156 12.7307 6.512 12.7763 6.50482C12.8216 6.49775 12.8641 6.48366 12.9039 6.46844C12.9039 6.46844 12.9299 6.45838 12.9388 6.485H12.9391L13.0067 6.67078C13.0153 6.69385 12.9955 6.70338 12.9955 6.70338ZM14.3702 6.07894C14.3677 6.10285 14.3433 6.10303 14.3433 6.10303L13.4143 6.10235C13.4196 6.24347 13.4537 6.34282 13.5219 6.411C13.5889 6.47763 13.6953 6.52013 13.8394 6.52038C14.0598 6.52097 14.1539 6.47641 14.2203 6.4516C14.2203 6.4516 14.246 6.44241 14.2553 6.46778L14.3158 6.63769C14.328 6.66635 14.3183 6.67625 14.308 6.68204C14.2503 6.71435 14.1093 6.77403 13.8412 6.77494C13.7112 6.77535 13.5977 6.7566 13.5043 6.72044C13.4102 6.68397 13.332 6.63225 13.2709 6.56582C13.2097 6.49997 13.1644 6.42063 13.1362 6.33007C13.1084 6.2401 13.0942 6.14072 13.0942 6.03375C13.0942 5.9291 13.1079 5.82916 13.1349 5.738C13.1619 5.64572 13.2043 5.56516 13.2607 5.49697C13.3172 5.42875 13.3889 5.37419 13.4741 5.3341C13.5594 5.29432 13.6646 5.27472 13.7804 5.27472C13.8717 5.27457 13.9622 5.29291 14.0462 5.32866C14.1044 5.35335 14.1626 5.39863 14.2226 5.46269C14.2602 5.50328 14.318 5.59207 14.3413 5.67963L14.3426 5.67982C14.4021 5.88844 14.3713 6.06907 14.3702 6.07894Z" fill="currentColor"/>
|
6
|
-
<path d="M13.7587 5.52026C13.637 5.52026 13.5504 5.56786 13.4936 5.65489C13.4556 5.71189 13.4314 5.78536 13.4183 5.87348L14.0797 5.87361C14.0735 5.78833 14.0568 5.71223 14.0186 5.65489C13.961 5.56811 13.8804 5.52026 13.7587 5.52026Z" fill="currentColor"/>
|
7
|
-
</svg>
|
1
|
+
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M4.51031 6.07875C4.42699 6.06597 4.34293 6.05878 4.25868 6.05725C4.06937 6.0549 3.98884 6.1244 3.9894 6.12431C3.93356 6.16372 3.90649 6.2225 3.90649 6.30362C3.90649 6.35534 3.9159 6.39575 3.93431 6.42412C3.94637 6.443 3.95143 6.45012 3.98781 6.47915L3.98834 6.47947C3.98774 6.47928 4.07124 6.54497 4.25996 6.53359C4.39284 6.52559 4.51043 6.50028 4.51043 6.50028H4.51031V6.07875Z" fill="currentColor"/>
|
3
|
+
<path d="M10.0592 5.52728C9.93694 5.52728 9.85038 5.569 9.79347 5.65603C9.73619 5.74363 9.70703 5.86828 9.70703 6.027C9.70703 6.18575 9.73603 6.31156 9.79347 6.39975C9.8505 6.48713 9.9375 6.52969 10.0592 6.52969C10.1809 6.52969 10.2683 6.48678 10.3261 6.39916C10.3841 6.31044 10.4137 6.18531 10.4137 6.02672C10.4137 5.86813 10.3844 5.74353 10.3261 5.65603C10.2685 5.56944 10.1815 5.52728 10.0592 5.52728Z" fill="currentColor"/>
|
4
|
+
<path d="M6.33305 5.52026C6.21136 5.52026 6.1248 5.56786 6.06789 5.65489C6.02999 5.71189 6.00577 5.78536 5.99268 5.87348L6.65408 5.87361C6.6478 5.78833 6.63108 5.71223 6.59293 5.65489C6.5353 5.56811 6.45474 5.52026 6.33305 5.52026Z" fill="currentColor"/>
|
5
|
+
<path d="M12.5488 2.28872C12.0687 2.28847 11.5938 2.38966 11.1554 2.58563C10.6616 1.70963 9.74441 1.12169 8.68612 1.12169C7.89241 1.12169 7.17397 1.45444 6.65775 1.99182L6.65834 1.99488C6.09394 1.25116 5.19441 0.771973 4.18903 0.771973C2.47228 0.771973 1.07887 2.1595 1.07887 3.87629C1.07844 4.30104 1.1655 4.72132 1.33463 5.11094C0.537375 5.58125 0 6.45141 0 7.45088C0 8.93838 1.1935 10.1495 2.66922 10.1495C2.85375 10.1496 3.03778 10.1304 3.21834 10.0923C3.624 11.1918 4.67641 11.9737 5.91694 11.9737C7.10456 11.9737 8.12463 11.2505 8.56262 10.2217C8.90687 10.3896 9.28494 10.4764 9.66794 10.4757C10.6086 10.4757 11.4347 9.95244 11.8668 9.18222C12.0891 9.22644 12.316 9.24982 12.5488 9.24982C14.4538 9.24982 16 7.69182 16 5.76929C16 3.84675 14.4537 2.28872 12.5488 2.28872ZM3.43916 6.32532C3.43916 6.60632 3.23516 6.78094 2.90709 6.78094C2.746 6.78094 2.59197 6.75566 2.42853 6.66925C2.39797 6.65157 2.36744 6.63582 2.33741 6.61403C2.33416 6.60941 2.32053 6.60391 2.33059 6.57769L2.33034 6.57722L2.39503 6.39732C2.40525 6.3665 2.42878 6.37679 2.43819 6.38247C2.456 6.39335 2.46919 6.40304 2.49228 6.41654C2.68337 6.53729 2.85969 6.53825 2.915 6.53825C3.05728 6.53825 3.14606 6.46238 3.14606 6.36066V6.35513C3.14606 6.2446 3.00966 6.2025 2.85209 6.15407L2.81728 6.14322C2.60094 6.08147 2.36928 5.99213 2.36928 5.71813V5.71253C2.36928 5.45269 2.57919 5.271 2.87959 5.271L2.91234 5.27088C3.08872 5.27088 3.25922 5.32203 3.38269 5.39728C3.39391 5.404 3.40484 5.41697 3.39862 5.43422C3.39275 5.45066 3.33791 5.5975 3.33159 5.61413C3.32 5.64488 3.28816 5.62429 3.28816 5.62429C3.18056 5.56488 3.01241 5.51788 2.87131 5.51788C2.74431 5.51788 2.662 5.5855 2.662 5.67722V5.68269C2.662 5.78972 2.8025 5.83569 2.96537 5.88847L2.99353 5.8976C3.20872 5.96522 3.43919 6.05985 3.43919 6.31972L3.43916 6.32532ZM4.785 6.68688C4.785 6.68688 4.75066 6.69622 4.71975 6.70332C4.64228 6.7201 4.56447 6.73522 4.48634 6.74869C4.39463 6.76416 4.29997 6.77216 4.20472 6.77216C4.11419 6.77216 4.03187 6.76375 3.95897 6.7471C3.88547 6.73066 3.82181 6.70291 3.77025 6.66541C3.71841 6.62785 3.67678 6.57791 3.64913 6.52019C3.62091 6.462 3.60663 6.39085 3.60663 6.30854C3.60663 6.22741 3.62337 6.15569 3.65625 6.09453C3.68881 6.03394 3.73487 5.98163 3.79087 5.94166C3.84672 5.90144 3.912 5.87122 3.98431 5.85169C4.05603 5.83232 4.13306 5.82241 4.21244 5.82241C4.27066 5.82241 4.31944 5.82375 4.35706 5.82654L4.35794 5.82869C4.35794 5.82869 4.43144 5.83535 4.51081 5.84685V5.80763C4.51081 5.68419 4.485 5.62544 4.43437 5.58657C4.38262 5.54688 4.30503 5.5266 4.20509 5.5266C4.20509 5.5266 3.97934 5.52366 3.80119 5.62069C3.79297 5.62557 3.78597 5.62832 3.78597 5.62832C3.78597 5.62832 3.76369 5.63616 3.7555 5.61329L3.68966 5.43691C3.67966 5.41135 3.698 5.40003 3.698 5.40003C3.78147 5.33463 3.98372 5.29535 3.98372 5.29535C4.05075 5.28188 4.16303 5.2725 4.23241 5.2725C4.41759 5.2725 4.56047 5.31541 4.65806 5.40069C4.756 5.48594 4.80562 5.6241 4.80562 5.80991L4.80616 6.65654C4.80619 6.65654 4.80794 6.68104 4.785 6.68688ZM5.40703 6.71672C5.40703 6.73225 5.39597 6.74488 5.38047 6.74488H5.13453C5.11894 6.74488 5.10791 6.73225 5.10791 6.71672V4.73729C5.10791 4.72182 5.11897 4.70929 5.13453 4.70929H5.38047C5.396 4.70929 5.40703 4.72179 5.40703 4.73729V6.71672ZM6.94413 6.07894C6.94159 6.10285 6.91713 6.10303 6.91713 6.10303L5.98819 6.10235C5.99347 6.24347 6.02756 6.34282 6.09578 6.411C6.16281 6.47763 6.26981 6.52013 6.41328 6.52038C6.63375 6.52097 6.72781 6.47641 6.79425 6.4516C6.79425 6.4516 6.81987 6.44241 6.82925 6.46778L6.88981 6.63769C6.90197 6.66635 6.89222 6.67625 6.882 6.68204C6.82438 6.71435 6.68328 6.77403 6.41519 6.77494C6.28466 6.77535 6.17178 6.7566 6.07831 6.72044C5.98425 6.68397 5.90606 6.63225 5.84491 6.56582C5.78434 6.49997 5.73897 6.42063 5.71084 6.33007C5.68281 6.2401 5.66875 6.14072 5.66875 6.03375C5.66875 5.9291 5.68234 5.82916 5.70931 5.738C5.73634 5.64572 5.77887 5.56516 5.83512 5.49697C5.89156 5.42875 5.96331 5.37419 6.04856 5.3341C6.13381 5.29432 6.23906 5.27472 6.35488 5.27472C6.44619 5.27457 6.53659 5.29291 6.62063 5.32866C6.67884 5.35335 6.73703 5.39863 6.797 5.46269C6.83462 5.50328 6.89247 5.59207 6.91575 5.67963L6.91641 5.67982C6.97594 5.88844 6.94513 6.06907 6.94413 6.07894ZM7.71037 6.78047C7.54928 6.78047 7.39525 6.75516 7.23178 6.66875C7.20122 6.65107 7.17059 6.63532 7.14066 6.61353C7.13731 6.60891 7.12366 6.60344 7.13372 6.57722L7.133 6.57672L7.19769 6.39682C7.20716 6.36744 7.23484 6.37822 7.24078 6.382C7.25831 6.39328 7.27181 6.40257 7.29494 6.41603C7.48544 6.53678 7.66222 6.53775 7.71766 6.53775C7.85994 6.53775 7.94872 6.46191 7.94872 6.36019V6.35466C7.94872 6.24413 7.81291 6.20203 7.65475 6.15357L7.62 6.14275C7.40366 6.081 7.172 5.99163 7.172 5.71766V5.71207C7.172 5.45219 7.38188 5.2705 7.68231 5.2705L7.71513 5.27041C7.8915 5.27041 8.062 5.32157 8.18547 5.39682C8.19662 5.4035 8.20762 5.4165 8.20134 5.43375C8.19606 5.45019 8.14112 5.59703 8.13491 5.61366C8.12325 5.64438 8.09141 5.62382 8.09141 5.62382C7.98322 5.56438 7.81566 5.51741 7.67456 5.51741C7.54756 5.51741 7.46525 5.585 7.46525 5.67675V5.68222C7.46525 5.78922 7.60575 5.83522 7.76862 5.888L7.79678 5.89713C8.01256 5.96472 8.24244 6.05938 8.24244 6.31925V6.32479C8.24247 6.60585 8.03844 6.78047 7.71037 6.78047ZM9.33372 5.52654C9.32837 5.55447 9.30262 5.5535 9.30262 5.5535H8.99712L8.78819 6.73579C8.76625 6.858 8.73888 6.96291 8.70669 7.04738C8.67416 7.13266 8.64019 7.19516 8.58616 7.25482C8.53619 7.31016 8.47969 7.351 8.41478 7.37447C8.35028 7.39775 8.2725 7.40975 8.18713 7.40975C8.14638 7.40975 8.10288 7.409 8.05125 7.39682C8.01409 7.38807 7.99381 7.38182 7.96653 7.37207C7.95491 7.36788 7.94566 7.35341 7.95225 7.33507C7.95872 7.31647 8.01334 7.16629 8.02103 7.14657C8.0305 7.12247 8.05453 7.13163 8.05453 7.13163C8.07106 7.13857 8.08253 7.1435 8.10456 7.14788C8.12663 7.15229 8.15647 7.15607 8.17894 7.15607C8.21928 7.15607 8.25606 7.15113 8.28806 7.14035C8.32681 7.12735 8.34925 7.10507 8.37297 7.07479C8.39744 7.0435 8.41731 7.00041 8.43766 6.94291C8.45828 6.88466 8.47694 6.80775 8.49322 6.71428L8.70119 5.5535H8.49622C8.47153 5.55363 8.46359 5.5421 8.466 5.52363L8.50056 5.33079C8.50597 5.30275 8.53166 5.30382 8.53166 5.30382H8.74219L8.75353 5.24094C8.785 5.05475 8.84772 4.91325 8.93991 4.82035C9.03275 4.72675 9.16497 4.67935 9.33272 4.67935C9.37494 4.67888 9.41712 4.68216 9.45878 4.6891C9.48975 4.6945 9.52034 4.70175 9.55044 4.71085C9.55703 4.71344 9.57478 4.72222 9.5675 4.74316L9.49659 4.93788C9.49066 4.95253 9.48659 4.96147 9.45638 4.95222C9.44884 4.95 9.43769 4.94675 9.40894 4.94066C9.38806 4.93629 9.36066 4.93294 9.33275 4.93294C9.29903 4.93247 9.26544 4.93735 9.23322 4.94729C9.20381 4.95694 9.17719 4.9735 9.15556 4.99563C9.13241 5.01885 9.10506 5.05266 9.09053 5.09457C9.0565 5.19279 9.04303 5.29704 9.04156 5.30375H9.33806C9.36287 5.30363 9.37075 5.31516 9.36834 5.33363L9.33372 5.52654ZM10.6871 6.32157C10.6601 6.41269 10.6182 6.49266 10.5624 6.55969C10.5066 6.62672 10.4354 6.68032 10.352 6.71841C10.2685 6.75654 10.1697 6.77591 10.0586 6.77591C9.94747 6.77591 9.84869 6.75654 9.76462 6.71841C9.68112 6.68019 9.61006 6.62669 9.55416 6.55969C9.49831 6.49263 9.45637 6.41269 9.4295 6.32157C9.40275 6.23103 9.38916 6.13225 9.38916 6.027C9.38916 5.92178 9.40275 5.823 9.4295 5.73244C9.45653 5.64132 9.49841 5.56135 9.55416 5.49435C9.61 5.42732 9.68116 5.37347 9.76462 5.33444C9.84869 5.29544 9.94687 5.27563 10.0586 5.27563C10.1703 5.27563 10.2691 5.29532 10.3526 5.33444C10.4366 5.37322 10.5071 5.42735 10.563 5.49435C10.6189 5.56138 10.6607 5.64132 10.6877 5.73244H10.6871C10.7138 5.82297 10.7274 5.92235 10.7274 6.027C10.7274 6.13229 10.7138 6.23103 10.6871 6.32157ZM11.8238 5.34857L11.8244 5.34475C11.8156 5.37004 11.7704 5.49697 11.7544 5.53938C11.7484 5.5555 11.7384 5.56641 11.7206 5.56441C11.7206 5.56441 11.6673 5.55197 11.6188 5.55197C11.5767 5.55197 11.5347 5.55785 11.4942 5.5695C11.451 5.58291 11.4117 5.6065 11.3795 5.63829C11.3458 5.67122 11.3185 5.71713 11.2984 5.77469C11.278 5.83288 11.2678 5.92519 11.2678 6.0181V6.71185C11.2678 6.72738 11.2552 6.73994 11.2397 6.73997H10.9963C10.9808 6.73994 10.9682 6.72738 10.9681 6.71185V5.33019C10.9681 5.31466 10.9793 5.30216 10.9947 5.30216H11.2322C11.2478 5.30216 11.2588 5.31466 11.2588 5.33019L11.259 5.44307C11.2942 5.39485 11.3578 5.35316 11.4153 5.32725C11.4736 5.30113 11.5382 5.2815 11.6546 5.28882C11.7152 5.29257 11.794 5.30919 11.8098 5.31522C11.8101 5.31532 11.8104 5.31544 11.8106 5.31554C11.8234 5.321 11.8293 5.33579 11.8238 5.34857ZM12.9955 6.70338C12.8921 6.74438 12.748 6.77275 12.6075 6.77275C12.37 6.77275 12.1877 6.70457 12.0666 6.56935C11.9455 6.43469 11.8843 6.25069 11.8843 6.02372C11.8843 5.9185 11.8993 5.81913 11.929 5.7286C11.959 5.63747 12.0037 5.5575 12.0625 5.4905C12.1213 5.42344 12.1954 5.36957 12.283 5.33057C12.3706 5.29154 12.4729 5.27185 12.5881 5.27185C12.6657 5.27185 12.7345 5.27654 12.7939 5.2856C12.8574 5.29519 12.9412 5.31791 12.9767 5.33182C12.9833 5.33435 13.0011 5.34316 12.9938 5.36404C12.968 5.43694 12.9503 5.48453 12.9262 5.55097C12.9159 5.57925 12.8945 5.56988 12.8945 5.56988C12.8039 5.54157 12.7175 5.52844 12.6046 5.52844C12.4694 5.52844 12.3671 5.57432 12.3007 5.6625C12.2333 5.75185 12.1958 5.86829 12.1954 6.0235C12.1948 6.194 12.2372 6.31978 12.313 6.398C12.3882 6.47613 12.4941 6.5156 12.6264 6.5156C12.6799 6.5156 12.7307 6.512 12.7763 6.50482C12.8216 6.49775 12.8641 6.48366 12.9039 6.46844C12.9039 6.46844 12.9299 6.45838 12.9388 6.485H12.9391L13.0067 6.67078C13.0153 6.69385 12.9955 6.70338 12.9955 6.70338ZM14.3702 6.07894C14.3677 6.10285 14.3433 6.10303 14.3433 6.10303L13.4143 6.10235C13.4196 6.24347 13.4537 6.34282 13.5219 6.411C13.5889 6.47763 13.6953 6.52013 13.8394 6.52038C14.0598 6.52097 14.1539 6.47641 14.2203 6.4516C14.2203 6.4516 14.246 6.44241 14.2553 6.46778L14.3158 6.63769C14.328 6.66635 14.3183 6.67625 14.308 6.68204C14.2503 6.71435 14.1093 6.77403 13.8412 6.77494C13.7112 6.77535 13.5977 6.7566 13.5043 6.72044C13.4102 6.68397 13.332 6.63225 13.2709 6.56582C13.2097 6.49997 13.1644 6.42063 13.1362 6.33007C13.1084 6.2401 13.0942 6.14072 13.0942 6.03375C13.0942 5.9291 13.1079 5.82916 13.1349 5.738C13.1619 5.64572 13.2043 5.56516 13.2607 5.49697C13.3172 5.42875 13.3889 5.37419 13.4741 5.3341C13.5594 5.29432 13.6646 5.27472 13.7804 5.27472C13.8717 5.27457 13.9622 5.29291 14.0462 5.32866C14.1044 5.35335 14.1626 5.39863 14.2226 5.46269C14.2602 5.50328 14.318 5.59207 14.3413 5.67963L14.3426 5.67982C14.4021 5.88844 14.3713 6.06907 14.3702 6.07894Z" fill="currentColor"/>
|
6
|
+
<path d="M13.7587 5.52026C13.637 5.52026 13.5504 5.56786 13.4936 5.65489C13.4556 5.71189 13.4314 5.78536 13.4183 5.87348L14.0797 5.87361C14.0735 5.78833 14.0568 5.71223 14.0186 5.65489C13.961 5.56811 13.8804 5.52026 13.7587 5.52026Z" fill="currentColor"/>
|
7
|
+
</svg>
|
@@ -1,14 +1,14 @@
|
|
1
|
-
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_290_15061)">
|
3
|
-
<path d="M4.65502 8.30378C4.57171 8.291 4.48765 8.28382 4.4034 8.28228C4.21408 8.27994 4.13355 8.34944 4.13411 8.34935C4.07827 8.38875 4.05121 8.44753 4.05121 8.52866C4.05121 8.58038 4.06061 8.62079 4.07902 8.64916C4.09108 8.66804 4.09615 8.67516 4.13252 8.70419L4.13305 8.7045C4.13246 8.70432 4.21596 8.77 4.40468 8.75863C4.53755 8.75063 4.65515 8.72532 4.65515 8.72532H4.65502V8.30378Z" fill="#00A1E2"/>
|
4
|
-
<path d="M10.2039 7.75195C10.0816 7.75195 9.99503 7.79367 9.93812 7.8807C9.88084 7.9683 9.85168 8.09295 9.85168 8.25167C9.85168 8.41042 9.88069 8.53623 9.93812 8.62442C9.99515 8.7118 10.0822 8.75436 10.2039 8.75436C10.3256 8.75436 10.4129 8.71145 10.4708 8.62383C10.5287 8.53511 10.5583 8.40998 10.5584 8.25139C10.5583 8.0928 10.5291 7.9682 10.4708 7.8807C10.4132 7.79411 10.3262 7.75195 10.2039 7.75195Z" fill="#00A1E2"/>
|
5
|
-
<path d="M6.47783 7.74512C6.35614 7.74512 6.26958 7.79271 6.21267 7.87974C6.17476 7.93674 6.15054 8.01021 6.13745 8.09834L6.79886 8.09846C6.79258 8.01318 6.77586 7.93709 6.7377 7.87974C6.68008 7.79296 6.59951 7.74512 6.47783 7.74512Z" fill="#00A1E2"/>
|
6
|
-
<path d="M12.6936 4.51382C12.2134 4.51357 11.7385 4.61476 11.3002 4.81073C10.8063 3.93473 9.88912 3.34679 8.83084 3.34679C8.03712 3.34679 7.31868 3.67954 6.80246 4.21691L6.80306 4.21998C6.23865 3.47626 5.33912 2.99707 4.33375 2.99707C2.617 2.99707 1.22359 4.3846 1.22359 6.10138C1.22315 6.52613 1.31021 6.94641 1.47934 7.33604C0.682089 7.80635 0.144714 8.67651 0.144714 9.67598C0.144714 11.1635 1.33821 12.3746 2.81393 12.3746C2.99846 12.3747 3.1825 12.3555 3.36306 12.3174C3.76871 13.4169 4.82112 14.1988 6.06165 14.1988C7.24928 14.1988 8.26934 13.4756 8.70734 12.4468C9.05159 12.6147 9.42965 12.7015 9.81265 12.7008C10.7533 12.7008 11.5794 12.1775 12.0115 11.4073C12.2338 11.4515 12.4607 11.4749 12.6935 11.4749C14.5985 11.4749 16.1447 9.91691 16.1447 7.99438C16.1447 6.07185 14.5985 4.51382 12.6936 4.51382ZM3.58387 8.55041C3.58387 8.83141 3.37987 9.00604 3.05181 9.00604C2.89071 9.00604 2.73668 8.98076 2.57325 8.89435C2.54268 8.87666 2.51215 8.86091 2.48212 8.83913C2.47887 8.83451 2.46525 8.82901 2.47531 8.80279L2.47506 8.80232L2.53975 8.62241C2.54996 8.5916 2.5735 8.60188 2.5829 8.60757C2.60071 8.61845 2.6139 8.62813 2.637 8.64163C2.82809 8.76238 3.0044 8.76335 3.05971 8.76335C3.202 8.76335 3.29078 8.68748 3.29078 8.58576V8.58023C3.29078 8.46969 3.15437 8.4276 2.99681 8.37916L2.962 8.36832C2.74565 8.30657 2.514 8.21723 2.514 7.94323V7.93763C2.514 7.67779 2.7239 7.4961 3.02431 7.4961L3.05706 7.49598C3.23343 7.49598 3.40393 7.54713 3.5274 7.62238C3.53862 7.6291 3.54956 7.64207 3.54334 7.65932C3.53746 7.67576 3.48262 7.8226 3.47631 7.83923C3.46471 7.86998 3.43287 7.84938 3.43287 7.84938C3.32528 7.78998 3.15712 7.74298 3.01603 7.74298C2.88903 7.74298 2.80671 7.8106 2.80671 7.90232V7.90779C2.80671 8.01482 2.94721 8.06079 3.11009 8.11357L3.13825 8.12269C3.35343 8.19032 3.5839 8.28495 3.5839 8.54482L3.58387 8.55041ZM4.92971 8.91198C4.92971 8.91198 4.89537 8.92132 4.86446 8.92841C4.787 8.9452 4.70918 8.96032 4.63106 8.97379C4.53934 8.98926 4.44468 8.99726 4.34943 8.99726C4.2589 8.99726 4.17659 8.98885 4.10368 8.9722C4.03018 8.95576 3.96653 8.92801 3.91496 8.89051C3.86312 8.85294 3.8215 8.80301 3.79384 8.74529C3.76562 8.6871 3.75134 8.61594 3.75134 8.53363C3.75134 8.45251 3.76809 8.38079 3.80096 8.31963C3.83353 8.25904 3.87959 8.20673 3.93559 8.16676C3.99143 8.12654 4.05671 8.09632 4.12903 8.07679C4.20075 8.05741 4.27778 8.04751 4.35715 8.04751C4.41537 8.04751 4.46415 8.04885 4.50178 8.05163L4.50265 8.05379C4.50265 8.05379 4.57615 8.06044 4.65553 8.07194V8.03273C4.65553 7.90929 4.62971 7.85054 4.57909 7.81166C4.52734 7.77198 4.44975 7.75169 4.34981 7.75169C4.34981 7.75169 4.12406 7.74876 3.9459 7.84579C3.93768 7.85066 3.93068 7.85341 3.93068 7.85341C3.93068 7.85341 3.9084 7.86126 3.90021 7.83838L3.83437 7.66201C3.82437 7.63645 3.84271 7.62513 3.84271 7.62513C3.92618 7.55973 4.12843 7.52044 4.12843 7.52044C4.19546 7.50698 4.30775 7.4976 4.37712 7.4976C4.56231 7.4976 4.70518 7.54051 4.80278 7.62579C4.90071 7.71104 4.95034 7.84919 4.95034 8.03501L4.95087 8.88163C4.9509 8.88163 4.95265 8.90613 4.92971 8.91198ZM5.55175 8.94182C5.55175 8.95735 5.54068 8.96998 5.52518 8.96998H5.27925C5.26365 8.96998 5.25262 8.95735 5.25262 8.94182V6.96238C5.25262 6.94691 5.26368 6.93438 5.27925 6.93438H5.52518C5.54071 6.93438 5.55175 6.94688 5.55175 6.96238V8.94182ZM7.08884 8.30404C7.08631 8.32794 7.06184 8.32813 7.06184 8.32813L6.1329 8.32744C6.13818 8.46857 6.17228 8.56791 6.2405 8.6361C6.30753 8.70273 6.41453 8.74523 6.558 8.74548C6.77846 8.74607 6.87253 8.70151 6.93896 8.67669C6.93896 8.67669 6.96459 8.66751 6.97396 8.69288L7.03453 8.86279C7.04668 8.89145 7.03693 8.90135 7.02671 8.90713C6.96909 8.93945 6.828 8.99913 6.5599 9.00004C6.42937 9.00044 6.3165 8.98169 6.22303 8.94554C6.12896 8.90907 6.05078 8.85735 5.98962 8.79091C5.92906 8.72507 5.88368 8.64573 5.85556 8.55516C5.82753 8.46519 5.81346 8.36582 5.81346 8.25885C5.81346 8.15419 5.82706 8.05426 5.85403 7.9631C5.88106 7.87082 5.92359 7.79026 5.97984 7.72207C6.03628 7.65385 6.10803 7.59929 6.19328 7.55919C6.27853 7.51941 6.38378 7.49982 6.49959 7.49982C6.5909 7.49966 6.68131 7.51801 6.76534 7.55376C6.82356 7.57844 6.88175 7.62373 6.94171 7.68779C6.97934 7.72838 7.03718 7.81716 7.06046 7.90473L7.06112 7.90491C7.12065 8.11354 7.08984 8.29416 7.08884 8.30404ZM7.85509 9.00557C7.694 9.00557 7.53996 8.98026 7.3765 8.89385C7.34593 8.87616 7.31531 8.86041 7.28537 8.83863C7.28203 8.83401 7.26837 8.82854 7.27843 8.80232L7.27771 8.80182L7.3424 8.62191C7.35187 8.59254 7.37956 8.60332 7.3855 8.6071C7.40303 8.61838 7.41653 8.62766 7.43965 8.64113C7.63015 8.76188 7.80693 8.76285 7.86237 8.76285C8.00465 8.76285 8.09343 8.68701 8.09343 8.58529V8.57976C8.09343 8.46923 7.95762 8.42713 7.79946 8.37866L7.76471 8.36785C7.54837 8.3061 7.31671 8.21673 7.31671 7.94276V7.93716C7.31671 7.67729 7.52659 7.4956 7.82703 7.4956L7.85984 7.49551C8.03621 7.49551 8.20671 7.54666 8.33018 7.62191C8.34134 7.6286 8.35234 7.6416 8.34606 7.65885C8.34078 7.67529 8.28584 7.82213 8.27962 7.83876C8.26796 7.86948 8.23612 7.84891 8.23612 7.84891C8.12793 7.78948 7.96037 7.74251 7.81928 7.74251C7.69228 7.74251 7.60996 7.8101 7.60996 7.90185V7.90732C7.60996 8.01432 7.75046 8.06032 7.91334 8.1131L7.9415 8.12223C8.15728 8.18982 8.38715 8.28448 8.38715 8.54435V8.54988C8.38718 8.83095 8.18315 9.00557 7.85509 9.00557ZM9.47843 7.75163C9.47309 7.77957 9.44734 7.7786 9.44734 7.7786H9.14184L8.9329 8.96088C8.91096 9.0831 8.88359 9.18801 8.8514 9.27248C8.81887 9.35776 8.7849 9.42026 8.73087 9.47991C8.6809 9.53526 8.6244 9.5761 8.5595 9.59957C8.495 9.62285 8.41721 9.63485 8.33184 9.63485C8.29109 9.63485 8.24759 9.6341 8.19596 9.62191C8.15881 9.61316 8.13853 9.60691 8.11125 9.59716C8.09962 9.59298 8.09037 9.57851 8.09696 9.56016C8.10343 9.54157 8.15806 9.39138 8.16575 9.37166C8.17521 9.34757 8.19925 9.35673 8.19925 9.35673C8.21578 9.36366 8.22725 9.3686 8.24928 9.37298C8.27134 9.37738 8.30118 9.38116 8.32365 9.38116C8.364 9.38116 8.40078 9.37623 8.43278 9.36544C8.47153 9.35244 8.49396 9.33016 8.51768 9.29988C8.54215 9.2686 8.56203 9.22551 8.58237 9.16801C8.603 9.10976 8.62165 9.03285 8.63793 8.93938L8.8459 7.7786H8.64093C8.61625 7.77873 8.60831 7.76719 8.61071 7.74873L8.64528 7.55588C8.65068 7.52785 8.67637 7.52891 8.67637 7.52891H8.8869L8.89825 7.46604C8.92971 7.27985 8.99243 7.13835 9.08462 7.04544C9.17746 6.95185 9.30968 6.90444 9.47743 6.90444C9.51965 6.90398 9.56184 6.90726 9.6035 6.91419C9.63446 6.9196 9.66506 6.92685 9.69515 6.93594C9.70175 6.93854 9.7195 6.94732 9.71221 6.96826L9.64131 7.16298C9.63537 7.17763 9.63131 7.18657 9.60109 7.17732C9.59356 7.1751 9.5824 7.17185 9.55365 7.16576C9.53278 7.16138 9.50537 7.15804 9.47746 7.15804C9.44375 7.15757 9.41015 7.16245 9.37793 7.17238C9.34853 7.18204 9.3219 7.1986 9.30028 7.22073C9.27712 7.24395 9.24978 7.27776 9.23525 7.31966C9.20121 7.41788 9.18775 7.52213 9.18628 7.52885H9.48278C9.50759 7.52873 9.51546 7.54026 9.51306 7.55873L9.47843 7.75163ZM10.8318 8.54666C10.8048 8.63779 10.763 8.71776 10.7072 8.78479C10.6513 8.85182 10.5802 8.90541 10.4967 8.94351C10.4132 8.98163 10.3144 9.00101 10.2033 9.00101C10.0922 9.00101 9.9934 8.98163 9.90934 8.94351C9.82584 8.90529 9.75478 8.85179 9.69887 8.78479C9.64303 8.71773 9.60109 8.63779 9.57421 8.54666C9.54746 8.45613 9.53387 8.35735 9.53387 8.2521C9.53387 8.14688 9.54746 8.0481 9.57421 7.95754C9.60124 7.86641 9.64312 7.78645 9.69887 7.71944C9.75471 7.65241 9.82587 7.59857 9.90934 7.55954C9.9934 7.52054 10.0916 7.50073 10.2033 7.50073C10.315 7.50073 10.4138 7.52041 10.4973 7.55954C10.5813 7.59832 10.6518 7.65244 10.7077 7.71944C10.7636 7.78648 10.8054 7.86641 10.8324 7.95754H10.8318C10.8585 8.04807 10.8721 8.14744 10.8721 8.2521C10.8721 8.35738 10.8585 8.45613 10.8318 8.54666ZM11.9685 7.57366L11.9691 7.56985C11.9603 7.59513 11.9151 7.72207 11.8992 7.76448C11.8931 7.7806 11.8832 7.79151 11.8653 7.78951C11.8653 7.78951 11.8121 7.77707 11.7636 7.77707C11.7214 7.77707 11.6794 7.78294 11.6389 7.7946C11.5957 7.80801 11.5564 7.8316 11.5242 7.86338C11.4906 7.89632 11.4632 7.94223 11.4431 7.99979C11.4227 8.05798 11.4125 8.15029 11.4125 8.24319V8.93694C11.4125 8.95248 11.3999 8.96504 11.3844 8.96507H11.141C11.1255 8.96504 11.1129 8.95248 11.1128 8.93694V7.55529C11.1128 7.53976 11.124 7.52726 11.1394 7.52726H11.3769C11.3926 7.52726 11.4036 7.53976 11.4036 7.55529L11.4037 7.66816C11.439 7.61994 11.5026 7.57826 11.5601 7.55235C11.6183 7.52623 11.6829 7.5066 11.7993 7.51391C11.8599 7.51766 11.9387 7.53429 11.9546 7.54032C11.9548 7.54041 11.9551 7.54054 11.9553 7.54063C11.9681 7.5461 11.974 7.56088 11.9685 7.57366ZM13.1402 8.92848C13.0368 8.96948 12.8927 8.99785 12.7522 8.99785C12.5147 8.99785 12.3324 8.92966 12.2113 8.79444C12.0902 8.65979 12.0291 8.47579 12.0291 8.24882C12.0291 8.1436 12.0441 8.04423 12.0737 7.95369C12.1037 7.86257 12.1484 7.7826 12.2072 7.7156C12.266 7.64854 12.3401 7.59466 12.4277 7.55566C12.5153 7.51663 12.6176 7.49694 12.7328 7.49694C12.8104 7.49694 12.8792 7.50163 12.9386 7.51069C13.0021 7.52029 13.0859 7.54301 13.1214 7.55691C13.128 7.55944 13.1458 7.56826 13.1386 7.58913C13.1127 7.66204 13.095 7.70963 13.0709 7.77607C13.0607 7.80435 13.0392 7.79498 13.0392 7.79498C12.9487 7.76666 12.8622 7.75354 12.7493 7.75354C12.6141 7.75354 12.5118 7.79941 12.4454 7.8876C12.3781 7.97694 12.3406 8.09338 12.3401 8.2486C12.3395 8.4191 12.3819 8.54488 12.4577 8.6231C12.533 8.70123 12.6388 8.74069 12.7711 8.74069C12.8246 8.74069 12.8754 8.7371 12.921 8.72991C12.9663 8.72285 13.0088 8.70876 13.0486 8.69354C13.0486 8.69354 13.0746 8.68348 13.0836 8.7101H13.0838L13.1514 8.89588C13.16 8.91894 13.1402 8.92848 13.1402 8.92848ZM14.515 8.30404C14.5124 8.32794 14.488 8.32813 14.488 8.32813L13.559 8.32744C13.5643 8.46857 13.5984 8.56791 13.6666 8.6361C13.7337 8.70273 13.8401 8.74523 13.9841 8.74548C14.2046 8.74607 14.2986 8.70151 14.3651 8.67669C14.3651 8.67669 14.3907 8.66751 14.4 8.69288L14.4606 8.86279C14.4727 8.89145 14.463 8.90135 14.4527 8.90713C14.3951 8.93945 14.254 8.99913 13.9859 9.00004C13.8559 9.00044 13.7425 8.98169 13.649 8.94554C13.5549 8.90907 13.4767 8.85735 13.4156 8.79091C13.3544 8.72507 13.3091 8.64573 13.281 8.55516C13.2531 8.46519 13.2389 8.36582 13.2389 8.25885C13.2389 8.15419 13.2526 8.05426 13.2796 7.9631C13.3067 7.87082 13.3491 7.79026 13.4054 7.72207C13.4619 7.65385 13.5336 7.59929 13.6188 7.55919C13.7041 7.51941 13.8093 7.49982 13.9252 7.49982C14.0165 7.49966 14.1069 7.51801 14.1909 7.55376C14.2491 7.57844 14.3073 7.62373 14.3673 7.68779C14.4049 7.72838 14.4627 7.81716 14.486 7.90473L14.4873 7.90491C14.5468 8.11354 14.516 8.29416 14.515 8.30404Z" fill="#00A1E2"/>
|
7
|
-
<path d="M13.9034 7.74512C13.7817 7.74512 13.6951 7.79271 13.6383 7.87974C13.6003 7.93674 13.5761 8.01021 13.563 8.09834L14.2245 8.09846C14.2182 8.01318 14.2015 7.93709 14.1633 7.87974C14.1057 7.79296 14.0251 7.74512 13.9034 7.74512Z" fill="#00A1E2"/>
|
8
|
-
</g>
|
9
|
-
<defs>
|
10
|
-
<clipPath id="clip0_290_15061">
|
11
|
-
<rect width="16" height="16" fill="white" transform="translate(0.144714 0.597656)"/>
|
12
|
-
</clipPath>
|
13
|
-
</defs>
|
14
|
-
</svg>
|
1
|
+
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_290_15061)">
|
3
|
+
<path d="M4.65502 8.30378C4.57171 8.291 4.48765 8.28382 4.4034 8.28228C4.21408 8.27994 4.13355 8.34944 4.13411 8.34935C4.07827 8.38875 4.05121 8.44753 4.05121 8.52866C4.05121 8.58038 4.06061 8.62079 4.07902 8.64916C4.09108 8.66804 4.09615 8.67516 4.13252 8.70419L4.13305 8.7045C4.13246 8.70432 4.21596 8.77 4.40468 8.75863C4.53755 8.75063 4.65515 8.72532 4.65515 8.72532H4.65502V8.30378Z" fill="#00A1E2"/>
|
4
|
+
<path d="M10.2039 7.75195C10.0816 7.75195 9.99503 7.79367 9.93812 7.8807C9.88084 7.9683 9.85168 8.09295 9.85168 8.25167C9.85168 8.41042 9.88069 8.53623 9.93812 8.62442C9.99515 8.7118 10.0822 8.75436 10.2039 8.75436C10.3256 8.75436 10.4129 8.71145 10.4708 8.62383C10.5287 8.53511 10.5583 8.40998 10.5584 8.25139C10.5583 8.0928 10.5291 7.9682 10.4708 7.8807C10.4132 7.79411 10.3262 7.75195 10.2039 7.75195Z" fill="#00A1E2"/>
|
5
|
+
<path d="M6.47783 7.74512C6.35614 7.74512 6.26958 7.79271 6.21267 7.87974C6.17476 7.93674 6.15054 8.01021 6.13745 8.09834L6.79886 8.09846C6.79258 8.01318 6.77586 7.93709 6.7377 7.87974C6.68008 7.79296 6.59951 7.74512 6.47783 7.74512Z" fill="#00A1E2"/>
|
6
|
+
<path d="M12.6936 4.51382C12.2134 4.51357 11.7385 4.61476 11.3002 4.81073C10.8063 3.93473 9.88912 3.34679 8.83084 3.34679C8.03712 3.34679 7.31868 3.67954 6.80246 4.21691L6.80306 4.21998C6.23865 3.47626 5.33912 2.99707 4.33375 2.99707C2.617 2.99707 1.22359 4.3846 1.22359 6.10138C1.22315 6.52613 1.31021 6.94641 1.47934 7.33604C0.682089 7.80635 0.144714 8.67651 0.144714 9.67598C0.144714 11.1635 1.33821 12.3746 2.81393 12.3746C2.99846 12.3747 3.1825 12.3555 3.36306 12.3174C3.76871 13.4169 4.82112 14.1988 6.06165 14.1988C7.24928 14.1988 8.26934 13.4756 8.70734 12.4468C9.05159 12.6147 9.42965 12.7015 9.81265 12.7008C10.7533 12.7008 11.5794 12.1775 12.0115 11.4073C12.2338 11.4515 12.4607 11.4749 12.6935 11.4749C14.5985 11.4749 16.1447 9.91691 16.1447 7.99438C16.1447 6.07185 14.5985 4.51382 12.6936 4.51382ZM3.58387 8.55041C3.58387 8.83141 3.37987 9.00604 3.05181 9.00604C2.89071 9.00604 2.73668 8.98076 2.57325 8.89435C2.54268 8.87666 2.51215 8.86091 2.48212 8.83913C2.47887 8.83451 2.46525 8.82901 2.47531 8.80279L2.47506 8.80232L2.53975 8.62241C2.54996 8.5916 2.5735 8.60188 2.5829 8.60757C2.60071 8.61845 2.6139 8.62813 2.637 8.64163C2.82809 8.76238 3.0044 8.76335 3.05971 8.76335C3.202 8.76335 3.29078 8.68748 3.29078 8.58576V8.58023C3.29078 8.46969 3.15437 8.4276 2.99681 8.37916L2.962 8.36832C2.74565 8.30657 2.514 8.21723 2.514 7.94323V7.93763C2.514 7.67779 2.7239 7.4961 3.02431 7.4961L3.05706 7.49598C3.23343 7.49598 3.40393 7.54713 3.5274 7.62238C3.53862 7.6291 3.54956 7.64207 3.54334 7.65932C3.53746 7.67576 3.48262 7.8226 3.47631 7.83923C3.46471 7.86998 3.43287 7.84938 3.43287 7.84938C3.32528 7.78998 3.15712 7.74298 3.01603 7.74298C2.88903 7.74298 2.80671 7.8106 2.80671 7.90232V7.90779C2.80671 8.01482 2.94721 8.06079 3.11009 8.11357L3.13825 8.12269C3.35343 8.19032 3.5839 8.28495 3.5839 8.54482L3.58387 8.55041ZM4.92971 8.91198C4.92971 8.91198 4.89537 8.92132 4.86446 8.92841C4.787 8.9452 4.70918 8.96032 4.63106 8.97379C4.53934 8.98926 4.44468 8.99726 4.34943 8.99726C4.2589 8.99726 4.17659 8.98885 4.10368 8.9722C4.03018 8.95576 3.96653 8.92801 3.91496 8.89051C3.86312 8.85294 3.8215 8.80301 3.79384 8.74529C3.76562 8.6871 3.75134 8.61594 3.75134 8.53363C3.75134 8.45251 3.76809 8.38079 3.80096 8.31963C3.83353 8.25904 3.87959 8.20673 3.93559 8.16676C3.99143 8.12654 4.05671 8.09632 4.12903 8.07679C4.20075 8.05741 4.27778 8.04751 4.35715 8.04751C4.41537 8.04751 4.46415 8.04885 4.50178 8.05163L4.50265 8.05379C4.50265 8.05379 4.57615 8.06044 4.65553 8.07194V8.03273C4.65553 7.90929 4.62971 7.85054 4.57909 7.81166C4.52734 7.77198 4.44975 7.75169 4.34981 7.75169C4.34981 7.75169 4.12406 7.74876 3.9459 7.84579C3.93768 7.85066 3.93068 7.85341 3.93068 7.85341C3.93068 7.85341 3.9084 7.86126 3.90021 7.83838L3.83437 7.66201C3.82437 7.63645 3.84271 7.62513 3.84271 7.62513C3.92618 7.55973 4.12843 7.52044 4.12843 7.52044C4.19546 7.50698 4.30775 7.4976 4.37712 7.4976C4.56231 7.4976 4.70518 7.54051 4.80278 7.62579C4.90071 7.71104 4.95034 7.84919 4.95034 8.03501L4.95087 8.88163C4.9509 8.88163 4.95265 8.90613 4.92971 8.91198ZM5.55175 8.94182C5.55175 8.95735 5.54068 8.96998 5.52518 8.96998H5.27925C5.26365 8.96998 5.25262 8.95735 5.25262 8.94182V6.96238C5.25262 6.94691 5.26368 6.93438 5.27925 6.93438H5.52518C5.54071 6.93438 5.55175 6.94688 5.55175 6.96238V8.94182ZM7.08884 8.30404C7.08631 8.32794 7.06184 8.32813 7.06184 8.32813L6.1329 8.32744C6.13818 8.46857 6.17228 8.56791 6.2405 8.6361C6.30753 8.70273 6.41453 8.74523 6.558 8.74548C6.77846 8.74607 6.87253 8.70151 6.93896 8.67669C6.93896 8.67669 6.96459 8.66751 6.97396 8.69288L7.03453 8.86279C7.04668 8.89145 7.03693 8.90135 7.02671 8.90713C6.96909 8.93945 6.828 8.99913 6.5599 9.00004C6.42937 9.00044 6.3165 8.98169 6.22303 8.94554C6.12896 8.90907 6.05078 8.85735 5.98962 8.79091C5.92906 8.72507 5.88368 8.64573 5.85556 8.55516C5.82753 8.46519 5.81346 8.36582 5.81346 8.25885C5.81346 8.15419 5.82706 8.05426 5.85403 7.9631C5.88106 7.87082 5.92359 7.79026 5.97984 7.72207C6.03628 7.65385 6.10803 7.59929 6.19328 7.55919C6.27853 7.51941 6.38378 7.49982 6.49959 7.49982C6.5909 7.49966 6.68131 7.51801 6.76534 7.55376C6.82356 7.57844 6.88175 7.62373 6.94171 7.68779C6.97934 7.72838 7.03718 7.81716 7.06046 7.90473L7.06112 7.90491C7.12065 8.11354 7.08984 8.29416 7.08884 8.30404ZM7.85509 9.00557C7.694 9.00557 7.53996 8.98026 7.3765 8.89385C7.34593 8.87616 7.31531 8.86041 7.28537 8.83863C7.28203 8.83401 7.26837 8.82854 7.27843 8.80232L7.27771 8.80182L7.3424 8.62191C7.35187 8.59254 7.37956 8.60332 7.3855 8.6071C7.40303 8.61838 7.41653 8.62766 7.43965 8.64113C7.63015 8.76188 7.80693 8.76285 7.86237 8.76285C8.00465 8.76285 8.09343 8.68701 8.09343 8.58529V8.57976C8.09343 8.46923 7.95762 8.42713 7.79946 8.37866L7.76471 8.36785C7.54837 8.3061 7.31671 8.21673 7.31671 7.94276V7.93716C7.31671 7.67729 7.52659 7.4956 7.82703 7.4956L7.85984 7.49551C8.03621 7.49551 8.20671 7.54666 8.33018 7.62191C8.34134 7.6286 8.35234 7.6416 8.34606 7.65885C8.34078 7.67529 8.28584 7.82213 8.27962 7.83876C8.26796 7.86948 8.23612 7.84891 8.23612 7.84891C8.12793 7.78948 7.96037 7.74251 7.81928 7.74251C7.69228 7.74251 7.60996 7.8101 7.60996 7.90185V7.90732C7.60996 8.01432 7.75046 8.06032 7.91334 8.1131L7.9415 8.12223C8.15728 8.18982 8.38715 8.28448 8.38715 8.54435V8.54988C8.38718 8.83095 8.18315 9.00557 7.85509 9.00557ZM9.47843 7.75163C9.47309 7.77957 9.44734 7.7786 9.44734 7.7786H9.14184L8.9329 8.96088C8.91096 9.0831 8.88359 9.18801 8.8514 9.27248C8.81887 9.35776 8.7849 9.42026 8.73087 9.47991C8.6809 9.53526 8.6244 9.5761 8.5595 9.59957C8.495 9.62285 8.41721 9.63485 8.33184 9.63485C8.29109 9.63485 8.24759 9.6341 8.19596 9.62191C8.15881 9.61316 8.13853 9.60691 8.11125 9.59716C8.09962 9.59298 8.09037 9.57851 8.09696 9.56016C8.10343 9.54157 8.15806 9.39138 8.16575 9.37166C8.17521 9.34757 8.19925 9.35673 8.19925 9.35673C8.21578 9.36366 8.22725 9.3686 8.24928 9.37298C8.27134 9.37738 8.30118 9.38116 8.32365 9.38116C8.364 9.38116 8.40078 9.37623 8.43278 9.36544C8.47153 9.35244 8.49396 9.33016 8.51768 9.29988C8.54215 9.2686 8.56203 9.22551 8.58237 9.16801C8.603 9.10976 8.62165 9.03285 8.63793 8.93938L8.8459 7.7786H8.64093C8.61625 7.77873 8.60831 7.76719 8.61071 7.74873L8.64528 7.55588C8.65068 7.52785 8.67637 7.52891 8.67637 7.52891H8.8869L8.89825 7.46604C8.92971 7.27985 8.99243 7.13835 9.08462 7.04544C9.17746 6.95185 9.30968 6.90444 9.47743 6.90444C9.51965 6.90398 9.56184 6.90726 9.6035 6.91419C9.63446 6.9196 9.66506 6.92685 9.69515 6.93594C9.70175 6.93854 9.7195 6.94732 9.71221 6.96826L9.64131 7.16298C9.63537 7.17763 9.63131 7.18657 9.60109 7.17732C9.59356 7.1751 9.5824 7.17185 9.55365 7.16576C9.53278 7.16138 9.50537 7.15804 9.47746 7.15804C9.44375 7.15757 9.41015 7.16245 9.37793 7.17238C9.34853 7.18204 9.3219 7.1986 9.30028 7.22073C9.27712 7.24395 9.24978 7.27776 9.23525 7.31966C9.20121 7.41788 9.18775 7.52213 9.18628 7.52885H9.48278C9.50759 7.52873 9.51546 7.54026 9.51306 7.55873L9.47843 7.75163ZM10.8318 8.54666C10.8048 8.63779 10.763 8.71776 10.7072 8.78479C10.6513 8.85182 10.5802 8.90541 10.4967 8.94351C10.4132 8.98163 10.3144 9.00101 10.2033 9.00101C10.0922 9.00101 9.9934 8.98163 9.90934 8.94351C9.82584 8.90529 9.75478 8.85179 9.69887 8.78479C9.64303 8.71773 9.60109 8.63779 9.57421 8.54666C9.54746 8.45613 9.53387 8.35735 9.53387 8.2521C9.53387 8.14688 9.54746 8.0481 9.57421 7.95754C9.60124 7.86641 9.64312 7.78645 9.69887 7.71944C9.75471 7.65241 9.82587 7.59857 9.90934 7.55954C9.9934 7.52054 10.0916 7.50073 10.2033 7.50073C10.315 7.50073 10.4138 7.52041 10.4973 7.55954C10.5813 7.59832 10.6518 7.65244 10.7077 7.71944C10.7636 7.78648 10.8054 7.86641 10.8324 7.95754H10.8318C10.8585 8.04807 10.8721 8.14744 10.8721 8.2521C10.8721 8.35738 10.8585 8.45613 10.8318 8.54666ZM11.9685 7.57366L11.9691 7.56985C11.9603 7.59513 11.9151 7.72207 11.8992 7.76448C11.8931 7.7806 11.8832 7.79151 11.8653 7.78951C11.8653 7.78951 11.8121 7.77707 11.7636 7.77707C11.7214 7.77707 11.6794 7.78294 11.6389 7.7946C11.5957 7.80801 11.5564 7.8316 11.5242 7.86338C11.4906 7.89632 11.4632 7.94223 11.4431 7.99979C11.4227 8.05798 11.4125 8.15029 11.4125 8.24319V8.93694C11.4125 8.95248 11.3999 8.96504 11.3844 8.96507H11.141C11.1255 8.96504 11.1129 8.95248 11.1128 8.93694V7.55529C11.1128 7.53976 11.124 7.52726 11.1394 7.52726H11.3769C11.3926 7.52726 11.4036 7.53976 11.4036 7.55529L11.4037 7.66816C11.439 7.61994 11.5026 7.57826 11.5601 7.55235C11.6183 7.52623 11.6829 7.5066 11.7993 7.51391C11.8599 7.51766 11.9387 7.53429 11.9546 7.54032C11.9548 7.54041 11.9551 7.54054 11.9553 7.54063C11.9681 7.5461 11.974 7.56088 11.9685 7.57366ZM13.1402 8.92848C13.0368 8.96948 12.8927 8.99785 12.7522 8.99785C12.5147 8.99785 12.3324 8.92966 12.2113 8.79444C12.0902 8.65979 12.0291 8.47579 12.0291 8.24882C12.0291 8.1436 12.0441 8.04423 12.0737 7.95369C12.1037 7.86257 12.1484 7.7826 12.2072 7.7156C12.266 7.64854 12.3401 7.59466 12.4277 7.55566C12.5153 7.51663 12.6176 7.49694 12.7328 7.49694C12.8104 7.49694 12.8792 7.50163 12.9386 7.51069C13.0021 7.52029 13.0859 7.54301 13.1214 7.55691C13.128 7.55944 13.1458 7.56826 13.1386 7.58913C13.1127 7.66204 13.095 7.70963 13.0709 7.77607C13.0607 7.80435 13.0392 7.79498 13.0392 7.79498C12.9487 7.76666 12.8622 7.75354 12.7493 7.75354C12.6141 7.75354 12.5118 7.79941 12.4454 7.8876C12.3781 7.97694 12.3406 8.09338 12.3401 8.2486C12.3395 8.4191 12.3819 8.54488 12.4577 8.6231C12.533 8.70123 12.6388 8.74069 12.7711 8.74069C12.8246 8.74069 12.8754 8.7371 12.921 8.72991C12.9663 8.72285 13.0088 8.70876 13.0486 8.69354C13.0486 8.69354 13.0746 8.68348 13.0836 8.7101H13.0838L13.1514 8.89588C13.16 8.91894 13.1402 8.92848 13.1402 8.92848ZM14.515 8.30404C14.5124 8.32794 14.488 8.32813 14.488 8.32813L13.559 8.32744C13.5643 8.46857 13.5984 8.56791 13.6666 8.6361C13.7337 8.70273 13.8401 8.74523 13.9841 8.74548C14.2046 8.74607 14.2986 8.70151 14.3651 8.67669C14.3651 8.67669 14.3907 8.66751 14.4 8.69288L14.4606 8.86279C14.4727 8.89145 14.463 8.90135 14.4527 8.90713C14.3951 8.93945 14.254 8.99913 13.9859 9.00004C13.8559 9.00044 13.7425 8.98169 13.649 8.94554C13.5549 8.90907 13.4767 8.85735 13.4156 8.79091C13.3544 8.72507 13.3091 8.64573 13.281 8.55516C13.2531 8.46519 13.2389 8.36582 13.2389 8.25885C13.2389 8.15419 13.2526 8.05426 13.2796 7.9631C13.3067 7.87082 13.3491 7.79026 13.4054 7.72207C13.4619 7.65385 13.5336 7.59929 13.6188 7.55919C13.7041 7.51941 13.8093 7.49982 13.9252 7.49982C14.0165 7.49966 14.1069 7.51801 14.1909 7.55376C14.2491 7.57844 14.3073 7.62373 14.3673 7.68779C14.4049 7.72838 14.4627 7.81716 14.486 7.90473L14.4873 7.90491C14.5468 8.11354 14.516 8.29416 14.515 8.30404Z" fill="#00A1E2"/>
|
7
|
+
<path d="M13.9034 7.74512C13.7817 7.74512 13.6951 7.79271 13.6383 7.87974C13.6003 7.93674 13.5761 8.01021 13.563 8.09834L14.2245 8.09846C14.2182 8.01318 14.2015 7.93709 14.1633 7.87974C14.1057 7.79296 14.0251 7.74512 13.9034 7.74512Z" fill="#00A1E2"/>
|
8
|
+
</g>
|
9
|
+
<defs>
|
10
|
+
<clipPath id="clip0_290_15061">
|
11
|
+
<rect width="16" height="16" fill="white" transform="translate(0.144714 0.597656)"/>
|
12
|
+
</clipPath>
|
13
|
+
</defs>
|
14
|
+
</svg>
|