nautobot 2.4.21__py3-none-any.whl → 3.0.0a3__py3-none-any.whl

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.

Potentially problematic release.


This version of nautobot might be problematic. Click here for more details.

Files changed (919) hide show
  1. nautobot/apps/choices.py +2 -2
  2. nautobot/apps/filters.py +9 -9
  3. nautobot/apps/forms.py +2 -0
  4. nautobot/apps/models.py +7 -2
  5. nautobot/apps/ui.py +20 -1
  6. nautobot/apps/utils.py +2 -3
  7. nautobot/apps/views.py +7 -1
  8. nautobot/circuits/filters.py +8 -23
  9. nautobot/circuits/navigation.py +3 -1
  10. nautobot/circuits/templates/circuits/circuit_create.html +9 -9
  11. nautobot/circuits/templates/circuits/circuit_terminations_swap.html +2 -2
  12. nautobot/circuits/templates/circuits/circuittermination_create.html +24 -33
  13. nautobot/circuits/templates/circuits/inc/circuit_termination.html +10 -10
  14. nautobot/circuits/templates/circuits/inc/circuit_termination_cable_fragment.html +13 -13
  15. nautobot/circuits/templates/circuits/inc/circuit_termination_header_extra_content.html +6 -6
  16. nautobot/circuits/templates/circuits/inc/circuit_termination_speed_fragment.html +3 -3
  17. nautobot/circuits/templates/circuits/inc/speed_widget.html +13 -13
  18. nautobot/circuits/templates/circuits/provider_create.html +9 -9
  19. nautobot/circuits/tests/integration/test_circuit.py +19 -19
  20. nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +3 -0
  21. nautobot/circuits/tests/integration/test_relationships.py +4 -12
  22. nautobot/circuits/views.py +0 -2
  23. nautobot/cloud/filters.py +1 -13
  24. nautobot/cloud/navigation.py +3 -1
  25. nautobot/cloud/templates/cloud/cloudnetwork_update.html +9 -9
  26. nautobot/cloud/templates/cloud/cloudservice_update.html +6 -6
  27. nautobot/core/api/fields.py +30 -2
  28. nautobot/core/api/schema.py +1 -1
  29. nautobot/core/api/serializers.py +9 -2
  30. nautobot/core/api/urls.py +2 -0
  31. nautobot/core/api/views.py +58 -37
  32. nautobot/core/apps/__init__.py +6 -12
  33. nautobot/core/branching.py +83 -0
  34. nautobot/core/celery/__init__.py +11 -6
  35. nautobot/core/celery/backends.py +2 -0
  36. nautobot/core/celery/encoders.py +7 -0
  37. nautobot/core/celery/task.py +44 -0
  38. nautobot/core/checks.py +60 -0
  39. nautobot/core/cli/bootstrap_v3_to_v5.py +776 -0
  40. nautobot/core/constants.py +9 -0
  41. nautobot/core/context_processors.py +84 -0
  42. nautobot/core/filters.py +131 -2
  43. nautobot/core/forms/__init__.py +4 -2
  44. nautobot/core/forms/fields.py +10 -8
  45. nautobot/core/forms/forms.py +21 -9
  46. nautobot/core/forms/search.py +0 -15
  47. nautobot/core/forms/widgets.py +3 -2
  48. nautobot/core/graphql/__init__.py +8 -26
  49. nautobot/core/graphql/generators.py +16 -6
  50. nautobot/core/graphql/schema.py +1 -1
  51. nautobot/core/graphql/schema_init.py +1 -2
  52. nautobot/core/graphql/utils.py +7 -9
  53. nautobot/core/jobs/__init__.py +158 -0
  54. nautobot/core/management/commands/generate_test_data.py +28 -9
  55. nautobot/core/models/__init__.py +17 -2
  56. nautobot/core/models/fields.py +3 -2
  57. nautobot/core/models/generics.py +9 -1
  58. nautobot/core/models/name_color_content_types.py +1 -1
  59. nautobot/core/models/ordering.py +7 -5
  60. nautobot/core/models/querysets.py +77 -2
  61. nautobot/core/models/tree_queries.py +6 -4
  62. nautobot/core/settings.py +30 -16
  63. nautobot/core/settings.yaml +13 -7
  64. nautobot/core/tables.py +114 -44
  65. nautobot/core/templates/403.html +1 -1
  66. nautobot/core/templates/403_csrf_failure.html +1 -1
  67. nautobot/core/templates/404.html +1 -1
  68. nautobot/core/templates/40x.html +8 -8
  69. nautobot/core/templates/500.html +10 -10
  70. nautobot/core/templates/about.html +13 -12
  71. nautobot/core/templates/admin/actions.html +1 -1
  72. nautobot/core/templates/admin/app_index.html +3 -3
  73. nautobot/core/templates/admin/base.html +45 -52
  74. nautobot/core/templates/admin/base_site.html +0 -9
  75. nautobot/core/templates/admin/change_form.html +5 -5
  76. nautobot/core/templates/admin/change_list.html +8 -12
  77. nautobot/core/templates/admin/change_list_results.html +3 -3
  78. nautobot/core/templates/admin/config/config.html +24 -24
  79. nautobot/core/templates/admin/delete_confirmation.html +5 -5
  80. nautobot/core/templates/admin/edit_inline/stacked.html +5 -5
  81. nautobot/core/templates/admin/edit_inline/tabular.html +3 -3
  82. nautobot/core/templates/admin/includes/fieldset.html +15 -15
  83. nautobot/core/templates/admin/index.html +8 -8
  84. nautobot/core/templates/admin/submit_line.html +5 -5
  85. nautobot/core/templates/base_django.html +36 -32
  86. nautobot/core/templates/buttons/add.html +1 -1
  87. nautobot/core/templates/buttons/consolidated_detail_view_action_buttons.html +2 -2
  88. nautobot/core/templates/buttons/export.html +17 -18
  89. nautobot/core/templates/buttons/job_import.html +2 -2
  90. nautobot/core/templates/components/breadcrumbs.html +19 -17
  91. nautobot/core/templates/components/button/dropdown.html +7 -5
  92. nautobot/core/templates/components/echarts.html +2 -0
  93. nautobot/core/templates/components/layout/one_over_two.html +3 -3
  94. nautobot/core/templates/components/layout/two_over_one.html +3 -3
  95. nautobot/core/templates/components/panel/body_content_data_table.html +2 -2
  96. nautobot/core/templates/components/panel/body_content_tags.html +1 -1
  97. nautobot/core/templates/components/panel/body_wrapper_generic.html +4 -2
  98. nautobot/core/templates/components/panel/body_wrapper_generic_table.html +1 -1
  99. nautobot/core/templates/components/panel/body_wrapper_key_value_table.html +5 -3
  100. nautobot/core/templates/components/panel/body_wrapper_table.html +4 -2
  101. nautobot/core/templates/components/panel/footer_contacts_table.html +4 -4
  102. nautobot/core/templates/components/panel/footer_content_table.html +3 -3
  103. nautobot/core/templates/components/panel/grouping_toggle.html +12 -11
  104. nautobot/core/templates/components/panel/header_extra_content_table.html +2 -11
  105. nautobot/core/templates/components/panel/panel.html +6 -3
  106. nautobot/core/templates/components/panel/stats_panel_body.html +9 -7
  107. nautobot/core/templates/components/tab/content_wrapper.html +29 -1
  108. nautobot/core/templates/components/tab/label_wrapper.html +10 -2
  109. nautobot/core/templates/components/tab/label_wrapper_distinct_view.html +11 -4
  110. nautobot/core/templates/echarts/echarts.html +20 -0
  111. nautobot/core/templates/exceptions/import_error.html +2 -2
  112. nautobot/core/templates/exceptions/permission_error.html +1 -1
  113. nautobot/core/templates/exceptions/programming_error.html +2 -2
  114. nautobot/core/templates/generic/object_bulk_add_component.html +29 -20
  115. nautobot/core/templates/generic/object_bulk_create.html +87 -75
  116. nautobot/core/templates/generic/object_bulk_destroy.html +35 -37
  117. nautobot/core/templates/generic/object_bulk_remove.html +30 -26
  118. nautobot/core/templates/generic/object_bulk_rename.html +53 -40
  119. nautobot/core/templates/generic/object_bulk_update.html +36 -29
  120. nautobot/core/templates/generic/object_create.html +40 -27
  121. nautobot/core/templates/generic/object_import.html +36 -24
  122. nautobot/core/templates/generic/object_list.html +279 -215
  123. nautobot/core/templates/generic/object_notes.html +21 -11
  124. nautobot/core/templates/generic/object_retrieve.html +161 -213
  125. nautobot/core/templates/graphene/graphiql.html +113 -60
  126. nautobot/core/templates/home.html +164 -87
  127. nautobot/core/templates/import_success.html +3 -2
  128. nautobot/core/templates/inc/ajax_loader.html +1 -1
  129. nautobot/core/templates/inc/computed_fields/panel_data.html +25 -13
  130. nautobot/core/templates/inc/created_updated.html +12 -7
  131. nautobot/core/templates/inc/custom_fields/panel_data.html +28 -16
  132. nautobot/core/templates/inc/custom_fields_panel.html +3 -3
  133. nautobot/core/templates/inc/dynamic_groups_panel.html +3 -3
  134. nautobot/core/templates/inc/extras_features_edit_form_fields.html +15 -15
  135. nautobot/core/templates/inc/footer.html +90 -40
  136. nautobot/core/templates/inc/form_static_field.html +6 -0
  137. nautobot/core/templates/inc/header.html +75 -0
  138. nautobot/core/templates/inc/header_banners.html +17 -0
  139. nautobot/core/templates/inc/header_messages.html +6 -0
  140. nautobot/core/templates/inc/image_attachments.html +9 -9
  141. nautobot/core/templates/inc/javascript.html +7 -24
  142. nautobot/core/templates/inc/media.html +4 -29
  143. nautobot/core/templates/inc/modal.html +2 -2
  144. nautobot/core/templates/inc/nav_favorites.html +27 -0
  145. nautobot/core/templates/inc/nav_menu.html +150 -108
  146. nautobot/core/templates/inc/object_details_advanced_panel.html +84 -71
  147. nautobot/core/templates/inc/page_title.html +23 -0
  148. nautobot/core/templates/inc/paginator.html +39 -28
  149. nautobot/core/templates/inc/relationships/panel_override.html +3 -3
  150. nautobot/core/templates/inc/relationships_panel.html +3 -3
  151. nautobot/core/templates/inc/relationships_table_rows.html +1 -1
  152. nautobot/core/templates/inc/search_panel.html +22 -16
  153. nautobot/core/templates/inc/table.html +61 -36
  154. nautobot/core/templates/inc/tenancy_form_panel.html +3 -3
  155. nautobot/core/templates/login.html +17 -59
  156. nautobot/core/templates/modals/modal_theme.html +12 -23
  157. nautobot/core/templates/nautobot_config.py.j2 +6 -5
  158. nautobot/core/templates/panel_table.html +8 -12
  159. nautobot/core/templates/redoc_ui.html +80 -0
  160. nautobot/core/templates/rest_framework/api.html +43 -21
  161. nautobot/core/templates/search.html +12 -13
  162. nautobot/core/templates/swagger_ui.html +19 -4
  163. nautobot/core/templates/system_jobs/import_objects.html +70 -58
  164. nautobot/core/templates/template.css +0 -6
  165. nautobot/core/templates/utilities/comment_form.html +34 -0
  166. nautobot/core/templates/utilities/confirmation_form.html +17 -9
  167. nautobot/core/templates/utilities/obj_table.html +19 -11
  168. nautobot/core/templates/utilities/render_field.html +27 -21
  169. nautobot/core/templates/utilities/render_jinja2.html +22 -25
  170. nautobot/core/templates/utilities/templatetags/advanced_filter_indicator.html +8 -0
  171. nautobot/core/templates/utilities/templatetags/badge.html +1 -1
  172. nautobot/core/templates/utilities/templatetags/dynamic_group_assignment_modal.html +2 -3
  173. nautobot/core/templates/utilities/templatetags/filter_form_drawer.html +482 -0
  174. nautobot/core/templates/utilities/templatetags/modal_form_as_dialog.html +14 -18
  175. nautobot/core/templates/utilities/templatetags/saved_view_modal.html +11 -11
  176. nautobot/core/templates/utilities/templatetags/table_config_form.html +51 -24
  177. nautobot/core/templates/utilities/templatetags/tag.html +1 -1
  178. nautobot/core/templates/utilities/templatetags/utilization_graph.html +3 -3
  179. nautobot/core/templates/utilities/theme_preview.html +829 -566
  180. nautobot/core/templates/utilities/worker_status.html +42 -41
  181. nautobot/core/templates/widgets/selectwithdisabled_option.html +3 -1
  182. nautobot/core/templates/widgets/sluginput.html +2 -2
  183. nautobot/core/templatetags/buttons.py +38 -40
  184. nautobot/core/templatetags/helpers.py +105 -28
  185. nautobot/core/templatetags/ui_framework.py +17 -0
  186. nautobot/core/testing/api.py +76 -12
  187. nautobot/core/testing/filters.py +11 -27
  188. nautobot/core/testing/integration.py +128 -10
  189. nautobot/core/testing/mixins.py +7 -4
  190. nautobot/core/testing/utils.py +28 -5
  191. nautobot/core/testing/views.py +125 -27
  192. nautobot/core/tests/integration/test_app_home.py +39 -35
  193. nautobot/core/tests/integration/test_app_navbar.py +60 -67
  194. nautobot/core/tests/integration/test_filters.py +123 -55
  195. nautobot/core/tests/integration/test_general_functionality.py +1 -1
  196. nautobot/core/tests/integration/test_home.py +10 -18
  197. nautobot/core/tests/integration/test_import_objects_ui.py +2 -9
  198. nautobot/core/tests/integration/test_navbar.py +41 -16
  199. nautobot/core/tests/integration/test_swagger.py +1 -7
  200. nautobot/core/tests/integration/test_theme.py +3 -0
  201. nautobot/core/tests/nautobot_config_without_example_apps.py +4 -0
  202. nautobot/core/tests/runner.py +6 -1
  203. nautobot/core/tests/test_api.py +5 -3
  204. nautobot/core/tests/test_branching.py +154 -0
  205. nautobot/core/tests/test_breadcrumbs.py +7 -8
  206. nautobot/core/tests/test_checks.py +28 -0
  207. nautobot/core/tests/test_commands.py +0 -41
  208. nautobot/core/tests/test_config.py +2 -1
  209. nautobot/core/tests/test_csv.py +4 -7
  210. nautobot/core/tests/test_filters.py +326 -318
  211. nautobot/core/tests/test_forms.py +19 -30
  212. nautobot/core/tests/test_graphql.py +67 -57
  213. nautobot/core/tests/test_models.py +1 -1
  214. nautobot/core/tests/test_nautobot_server.py +2 -0
  215. nautobot/core/tests/test_navigations.py +78 -10
  216. nautobot/core/tests/test_tables.py +3 -1
  217. nautobot/core/tests/test_templatetags_helpers.py +61 -21
  218. nautobot/core/tests/test_templatetags_ui_framework.py +36 -18
  219. nautobot/core/tests/test_ui.py +207 -2
  220. nautobot/core/tests/test_utils.py +147 -2
  221. nautobot/core/tests/test_views.py +201 -64
  222. nautobot/core/tests/test_views_utils.py +1 -1
  223. nautobot/core/ui/breadcrumbs.py +2 -12
  224. nautobot/core/ui/choices.py +190 -0
  225. nautobot/core/ui/constants.py +86 -0
  226. nautobot/core/ui/echarts.py +474 -0
  227. nautobot/core/ui/nav.py +5 -1
  228. nautobot/core/ui/object_detail.py +180 -16
  229. nautobot/core/urls.py +13 -1
  230. nautobot/core/utils/cache.py +71 -0
  231. nautobot/core/utils/data.py +8 -5
  232. nautobot/core/utils/filtering.py +8 -2
  233. nautobot/core/utils/git.py +3 -3
  234. nautobot/core/utils/lookup.py +87 -13
  235. nautobot/core/utils/migrations.py +22 -0
  236. nautobot/core/utils/module_loading.py +26 -0
  237. nautobot/core/utils/permissions.py +9 -5
  238. nautobot/core/views/__init__.py +114 -63
  239. nautobot/core/views/generic.py +34 -27
  240. nautobot/core/views/mixins.py +49 -27
  241. nautobot/core/views/renderers.py +3 -5
  242. nautobot/core/views/utils.py +10 -5
  243. nautobot/core/views/viewsets.py +2 -1
  244. nautobot/data_validation/__init__.py +0 -0
  245. nautobot/data_validation/api/__init__.py +1 -0
  246. nautobot/data_validation/api/serializers.py +80 -0
  247. nautobot/data_validation/api/urls.py +20 -0
  248. nautobot/data_validation/api/views.py +44 -0
  249. nautobot/data_validation/apps.py +18 -0
  250. nautobot/data_validation/custom_validators.py +330 -0
  251. nautobot/data_validation/filters.py +133 -0
  252. nautobot/data_validation/form_mixin.py +25 -0
  253. nautobot/data_validation/forms.py +342 -0
  254. nautobot/data_validation/migrations/0001_initial.py +224 -0
  255. nautobot/data_validation/migrations/0002_data_migration_from_app.py +324 -0
  256. nautobot/data_validation/migrations/__init__.py +0 -0
  257. nautobot/data_validation/models.py +361 -0
  258. nautobot/data_validation/navigation.py +74 -0
  259. nautobot/data_validation/signals.py +30 -0
  260. nautobot/data_validation/tables.py +259 -0
  261. nautobot/data_validation/templates/data_validation/datacompliance_retrieve.html +1 -0
  262. nautobot/data_validation/templates/data_validation/datacompliance_tab.html +11 -0
  263. nautobot/data_validation/templates/data_validation/device_constraints.html +61 -0
  264. nautobot/data_validation/tests/__init__.py +20 -0
  265. nautobot/data_validation/tests/migrations/__init__.py +0 -0
  266. nautobot/data_validation/tests/migrations/test_migrations.py +489 -0
  267. nautobot/data_validation/tests/test_api.py +238 -0
  268. nautobot/data_validation/tests/test_custom_validators.py +423 -0
  269. nautobot/data_validation/tests/test_data_compliance_rules.py +85 -0
  270. nautobot/data_validation/tests/test_filters.py +240 -0
  271. nautobot/data_validation/tests/test_form_mixin.py +115 -0
  272. nautobot/data_validation/tests/test_models.py +393 -0
  273. nautobot/data_validation/tests/test_views.py +435 -0
  274. nautobot/data_validation/urls.py +21 -0
  275. nautobot/data_validation/views.py +227 -0
  276. nautobot/dcim/api/serializers.py +10 -13
  277. nautobot/dcim/api/urls.py +2 -0
  278. nautobot/dcim/api/views.py +7 -0
  279. nautobot/dcim/apps.py +4 -0
  280. nautobot/dcim/choices.py +16 -0
  281. nautobot/dcim/custom_validators.py +84 -0
  282. nautobot/dcim/filter_mixins.py +353 -4
  283. nautobot/dcim/{filters/__init__.py → filters.py} +70 -157
  284. nautobot/dcim/forms.py +12 -6
  285. nautobot/dcim/graphql/types.py +1 -0
  286. nautobot/dcim/migrations/0075_add_deviceclusterassignment.py +52 -0
  287. nautobot/dcim/migrations/0076_device_cluster_to_clusters_data_migration.py +40 -0
  288. nautobot/dcim/migrations/0077_remove_device_cluster.py +14 -0
  289. nautobot/dcim/migrations/0078_remove_device_location_tenant_name_uniqueness.py +16 -0
  290. nautobot/dcim/migrations/0079_device_name_data_migration.py +59 -0
  291. nautobot/dcim/models/__init__.py +2 -0
  292. nautobot/dcim/models/device_components.py +3 -1
  293. nautobot/dcim/models/devices.py +115 -51
  294. nautobot/dcim/navigation.py +7 -3
  295. nautobot/dcim/querysets.py +6 -0
  296. nautobot/dcim/signals.py +19 -0
  297. nautobot/dcim/tables/devices.py +9 -5
  298. nautobot/dcim/tables/template_code.py +191 -102
  299. nautobot/dcim/templates/dcim/cable.html +1 -1
  300. nautobot/dcim/templates/dcim/cable_connect.html +62 -146
  301. nautobot/dcim/templates/dcim/cable_retrieve.html +10 -10
  302. nautobot/dcim/templates/dcim/cable_trace.html +15 -17
  303. nautobot/dcim/templates/dcim/console_port_connection_list.html +2 -2
  304. nautobot/dcim/templates/dcim/consoleport.html +18 -17
  305. nautobot/dcim/templates/dcim/consoleserverport.html +18 -17
  306. nautobot/dcim/templates/dcim/controller_create.html +12 -8
  307. nautobot/dcim/templates/dcim/controller_wirelessnetworks.html +1 -1
  308. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +6 -6
  309. nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +1 -1
  310. nautobot/dcim/templates/dcim/device/config.html +17 -19
  311. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +4 -4
  312. nautobot/dcim/templates/dcim/device/status.html +20 -20
  313. nautobot/dcim/templates/dcim/device_component_add.html +24 -15
  314. nautobot/dcim/templates/dcim/device_create.html +120 -120
  315. nautobot/dcim/templates/dcim/device_list.html +75 -12
  316. nautobot/dcim/templates/dcim/devicebay.html +7 -7
  317. nautobot/dcim/templates/dcim/devicebay_populate.html +29 -23
  318. nautobot/dcim/templates/dcim/deviceredundancygroup_create.html +6 -6
  319. nautobot/dcim/templates/dcim/devicetype.html +1 -1
  320. nautobot/dcim/templates/dcim/devicetype_component_add.html +25 -19
  321. nautobot/dcim/templates/dcim/devicetype_list.html +4 -4
  322. nautobot/dcim/templates/dcim/devicetype_update.html +9 -9
  323. nautobot/dcim/templates/dcim/footer_convert_to_contact_or_team_record.html +3 -3
  324. nautobot/dcim/templates/dcim/frontport.html +21 -20
  325. nautobot/dcim/templates/dcim/inc/cable_form.html +7 -7
  326. nautobot/dcim/templates/dcim/inc/cable_termination.html +1 -1
  327. nautobot/dcim/templates/dcim/inc/cable_toggle_buttons.html +18 -9
  328. nautobot/dcim/templates/dcim/inc/detail_softwareversion_softwareimagefile_rows.html +1 -1
  329. nautobot/dcim/templates/dcim/inc/device_interface_filter.html +1 -1
  330. nautobot/dcim/templates/dcim/inc/devicetype_component_table.html +10 -10
  331. nautobot/dcim/templates/dcim/inc/edit_form_softwareversion_js.html +2 -2
  332. nautobot/dcim/templates/dcim/inc/homepage_connections.html +2 -2
  333. nautobot/dcim/templates/dcim/inc/moduletype_component_table.html +10 -10
  334. nautobot/dcim/templates/dcim/inc/rack_elevation.html +2 -2
  335. nautobot/dcim/templates/dcim/interface.html +42 -22
  336. nautobot/dcim/templates/dcim/interface_connection_list.html +2 -2
  337. nautobot/dcim/templates/dcim/interface_edit.html +26 -11
  338. nautobot/dcim/templates/dcim/interfaceredundancygroupassociation_create.html +3 -3
  339. nautobot/dcim/templates/dcim/inventoryitem.html +3 -3
  340. nautobot/dcim/templates/dcim/inventoryitem_add.html +21 -10
  341. nautobot/dcim/templates/dcim/inventoryitem_bulk_delete.html +1 -1
  342. nautobot/dcim/templates/dcim/inventoryitem_edit.html +6 -4
  343. nautobot/dcim/templates/dcim/location.html +1 -1
  344. nautobot/dcim/templates/dcim/location_migrate_data_to_contact.html +24 -18
  345. nautobot/dcim/templates/dcim/location_retrieve.html +1 -1
  346. nautobot/dcim/templates/dcim/location_update.html +9 -9
  347. nautobot/dcim/templates/dcim/locationtype.html +0 -1
  348. nautobot/dcim/templates/dcim/module/base.html +67 -27
  349. nautobot/dcim/templates/dcim/module_consoleports.html +13 -15
  350. nautobot/dcim/templates/dcim/module_consoleserverports.html +13 -15
  351. nautobot/dcim/templates/dcim/module_frontports.html +13 -15
  352. nautobot/dcim/templates/dcim/module_interfaces.html +14 -16
  353. nautobot/dcim/templates/dcim/module_list.html +59 -10
  354. nautobot/dcim/templates/dcim/module_modulebays.html +12 -14
  355. nautobot/dcim/templates/dcim/module_poweroutlets.html +13 -15
  356. nautobot/dcim/templates/dcim/module_powerports.html +13 -15
  357. nautobot/dcim/templates/dcim/module_rearports.html +13 -15
  358. nautobot/dcim/templates/dcim/module_retrieve.html +3 -3
  359. nautobot/dcim/templates/dcim/module_update.html +15 -9
  360. nautobot/dcim/templates/dcim/modulebay_retrieve.html +0 -93
  361. nautobot/dcim/templates/dcim/modulefamily_retrieve.html +7 -7
  362. nautobot/dcim/templates/dcim/moduletype_list.html +2 -2
  363. nautobot/dcim/templates/dcim/moduletype_retrieve.html +74 -35
  364. nautobot/dcim/templates/dcim/platform_create.html +9 -9
  365. nautobot/dcim/templates/dcim/power_port_connection_list.html +3 -3
  366. nautobot/dcim/templates/dcim/powerfeed.html +1 -1
  367. nautobot/dcim/templates/dcim/powerfeed_edit.html +15 -15
  368. nautobot/dcim/templates/dcim/poweroutlet.html +13 -13
  369. nautobot/dcim/templates/dcim/powerpanel.html +1 -1
  370. nautobot/dcim/templates/dcim/powerport.html +17 -16
  371. nautobot/dcim/templates/dcim/rack.html +1 -1
  372. nautobot/dcim/templates/dcim/rack_elevation.html +2 -2
  373. nautobot/dcim/templates/dcim/rack_elevation_list.html +21 -9
  374. nautobot/dcim/templates/dcim/rack_retrieve.html +75 -57
  375. nautobot/dcim/templates/dcim/rack_update.html +14 -14
  376. nautobot/dcim/templates/dcim/rackreservation.html +1 -1
  377. nautobot/dcim/templates/dcim/rackreservation_edit.html +6 -6
  378. nautobot/dcim/templates/dcim/rearport.html +19 -18
  379. nautobot/dcim/templates/dcim/trace/cable.html +1 -1
  380. nautobot/dcim/templates/dcim/trace/circuit.html +1 -1
  381. nautobot/dcim/templates/dcim/trace/device.html +1 -1
  382. nautobot/dcim/templates/dcim/trace/powerpanel.html +1 -1
  383. nautobot/dcim/templates/dcim/trace/termination.html +1 -1
  384. nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
  385. nautobot/dcim/templates/dcim/virtualchassis_add_member.html +25 -16
  386. nautobot/dcim/templates/dcim/virtualchassis_create.html +6 -6
  387. nautobot/dcim/templates/dcim/virtualchassis_edit.html +1 -1
  388. nautobot/dcim/templates/dcim/virtualchassis_retrieve.html +1 -1
  389. nautobot/dcim/templates/dcim/virtualchassis_update.html +36 -22
  390. nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +9 -9
  391. nautobot/dcim/tests/integration/test_controller.py +6 -6
  392. nautobot/dcim/tests/integration/test_controller_managed_device_group.py +7 -7
  393. nautobot/dcim/tests/integration/test_create_device.py +9 -9
  394. nautobot/dcim/tests/integration/test_device_bulk_operations.py +7 -2
  395. nautobot/dcim/tests/integration/test_fileinputpicker.py +5 -7
  396. nautobot/dcim/tests/integration/test_location_bulk_operations.py +2 -0
  397. nautobot/dcim/tests/integration/test_module_bay_position.py +4 -1
  398. nautobot/dcim/tests/test_api.py +86 -6
  399. nautobot/dcim/tests/test_custom_validators.py +229 -0
  400. nautobot/dcim/tests/test_filters.py +159 -110
  401. nautobot/dcim/tests/test_graphql.py +32 -36
  402. nautobot/dcim/tests/test_jobs.py +1 -1
  403. nautobot/dcim/tests/test_models.py +229 -1
  404. nautobot/dcim/tests/test_views.py +31 -20
  405. nautobot/dcim/utils.py +3 -3
  406. nautobot/dcim/views.py +77 -41
  407. nautobot/extras/api/serializers.py +83 -19
  408. nautobot/extras/api/urls.py +7 -0
  409. nautobot/extras/api/views.py +243 -140
  410. nautobot/extras/choices.py +34 -13
  411. nautobot/extras/constants.py +1 -1
  412. nautobot/extras/context_managers.py +26 -26
  413. nautobot/extras/datasources/git.py +22 -0
  414. nautobot/extras/datasources/registry.py +3 -0
  415. nautobot/extras/exceptions.py +5 -0
  416. nautobot/extras/factory.py +11 -1
  417. nautobot/extras/{filters/mixins.py → filter_mixins.py} +4 -3
  418. nautobot/extras/{filters/__init__.py → filters.py} +203 -58
  419. nautobot/extras/forms/base.py +2 -1
  420. nautobot/extras/forms/forms.py +225 -20
  421. nautobot/extras/forms/mixins.py +0 -41
  422. nautobot/extras/homepage.py +21 -2
  423. nautobot/extras/jobs.py +2 -8
  424. nautobot/extras/jobs_ui.py +2 -2
  425. nautobot/extras/management/__init__.py +9 -0
  426. nautobot/extras/managers.py +31 -22
  427. nautobot/extras/migrations/0126_approval_workflow_pre_check.py +58 -0
  428. nautobot/extras/migrations/0127_approval_workflow_models.py +266 -0
  429. nautobot/extras/migrations/0128_remove_job_approval_required_and_more.py +29 -0
  430. nautobot/extras/migrations/0129_jobresult_debug_log_count_jobresult_error_log_count_and_more.py +37 -0
  431. nautobot/extras/migrations/0130_jobresult_generate_log_entry_counts.py +42 -0
  432. nautobot/extras/models/__init__.py +14 -3
  433. nautobot/extras/models/approvals.py +556 -0
  434. nautobot/extras/models/change_logging.py +1 -0
  435. nautobot/extras/models/contacts.py +2 -0
  436. nautobot/extras/models/customfields.py +57 -22
  437. nautobot/extras/models/datasources.py +21 -0
  438. nautobot/extras/models/groups.py +2 -0
  439. nautobot/extras/models/jobs.py +122 -39
  440. nautobot/extras/models/metadata.py +2 -3
  441. nautobot/extras/models/mixins.py +129 -1
  442. nautobot/extras/models/models.py +22 -14
  443. nautobot/extras/models/relationships.py +47 -10
  444. nautobot/extras/models/secrets.py +1 -0
  445. nautobot/extras/models/statuses.py +0 -15
  446. nautobot/extras/models/tags.py +1 -1
  447. nautobot/extras/navigation.py +42 -15
  448. nautobot/extras/plugins/__init__.py +33 -55
  449. nautobot/extras/plugins/marketplace_manifest.yml +1 -23
  450. nautobot/extras/plugins/tables.py +8 -6
  451. nautobot/extras/plugins/urls.py +2 -21
  452. nautobot/extras/plugins/utils.py +1 -33
  453. nautobot/extras/plugins/validators.py +10 -10
  454. nautobot/extras/plugins/views.py +1 -5
  455. nautobot/extras/querysets.py +17 -21
  456. nautobot/extras/signals.py +23 -8
  457. nautobot/extras/tables.py +420 -99
  458. nautobot/extras/templates/extras/approval_dashboard.html +15 -0
  459. nautobot/extras/templates/extras/approval_workflow/approve.html +11 -0
  460. nautobot/extras/templates/extras/approval_workflow/comment.html +9 -0
  461. nautobot/extras/templates/extras/approval_workflow/deny.html +10 -0
  462. nautobot/extras/templates/extras/approvalworkflowdefinition_update.html +77 -0
  463. nautobot/extras/templates/extras/approvalworkflowstage_retrieve.html +29 -0
  464. nautobot/extras/templates/extras/configcontext_update.html +12 -12
  465. nautobot/extras/templates/extras/configcontextschema.html +1 -1
  466. nautobot/extras/templates/extras/configcontextschema_retrieve.html +9 -9
  467. nautobot/extras/templates/extras/configcontextschema_update.html +6 -6
  468. nautobot/extras/templates/extras/configcontextschema_validation.html +2 -2
  469. nautobot/extras/templates/extras/customfield_update.html +12 -12
  470. nautobot/extras/templates/extras/dynamicgroup.html +1 -1
  471. nautobot/extras/templates/extras/dynamicgroup_edit.html +1 -1
  472. nautobot/extras/templates/extras/dynamicgroup_retrieve.html +17 -17
  473. nautobot/extras/templates/extras/dynamicgroup_update.html +24 -24
  474. nautobot/extras/templates/extras/externalintegration_update.html +6 -6
  475. nautobot/extras/templates/extras/gitrepository.html +1 -1
  476. nautobot/extras/templates/extras/gitrepository_object_edit.html +1 -1
  477. nautobot/extras/templates/extras/gitrepository_result.html +1 -1
  478. nautobot/extras/templates/extras/gitrepository_retrieve.html +12 -12
  479. nautobot/extras/templates/extras/gitrepository_update.html +25 -7
  480. nautobot/extras/templates/extras/graphqlquery_retrieve.html +1 -1
  481. nautobot/extras/templates/extras/inc/approval_buttons_column.html +38 -0
  482. nautobot/extras/templates/extras/inc/bulk_edit_overridable_field.html +14 -13
  483. nautobot/extras/templates/extras/inc/configcontext_format.html +11 -4
  484. nautobot/extras/templates/extras/inc/graphqlquery_execute.html +7 -7
  485. nautobot/extras/templates/extras/inc/job_label.html +5 -5
  486. nautobot/extras/templates/extras/inc/job_table.html +23 -10
  487. nautobot/extras/templates/extras/inc/job_tiles.html +33 -21
  488. nautobot/extras/templates/extras/inc/jobresult.html +6 -6
  489. nautobot/extras/templates/extras/inc/json_format.html +11 -4
  490. nautobot/extras/templates/extras/inc/object_contact_header.html +6 -6
  491. nautobot/extras/templates/extras/inc/overridable_field.html +16 -15
  492. nautobot/extras/templates/extras/inc/panel_approvalworkflowstage.html +34 -0
  493. nautobot/extras/templates/extras/inc/panel_changelog.html +9 -9
  494. nautobot/extras/templates/extras/inc/panel_jobhistory.html +8 -6
  495. nautobot/extras/templates/extras/inc/tags_panel.html +3 -3
  496. nautobot/extras/templates/extras/job.html +154 -155
  497. nautobot/extras/templates/extras/job_approval_confirmation.html +4 -27
  498. nautobot/extras/templates/extras/job_bulk_edit.html +18 -1
  499. nautobot/extras/templates/extras/job_detail.html +1 -1
  500. nautobot/extras/templates/extras/job_edit.html +69 -64
  501. nautobot/extras/templates/extras/job_list.html +37 -60
  502. nautobot/extras/templates/extras/jobresult.html +1 -1
  503. nautobot/extras/templates/extras/jobresult_retrieve.html +17 -17
  504. nautobot/extras/templates/extras/marketplace.html +62 -71
  505. nautobot/extras/templates/extras/metadatatype_create.html +9 -9
  506. nautobot/extras/templates/extras/note.html +1 -1
  507. nautobot/extras/templates/extras/object_approvalworkflow.html +36 -0
  508. nautobot/extras/templates/extras/object_assign_contact_or_team.html +16 -7
  509. nautobot/extras/templates/extras/object_configcontext.html +20 -20
  510. nautobot/extras/templates/extras/object_new_contact.html +6 -6
  511. nautobot/extras/templates/extras/object_new_team.html +6 -6
  512. nautobot/extras/templates/extras/objectchange.html +1 -1
  513. nautobot/extras/templates/extras/objectchange_retrieve.html +37 -56
  514. nautobot/extras/templates/extras/plugin_detail.html +40 -41
  515. nautobot/extras/templates/extras/plugins_list.html +23 -38
  516. nautobot/extras/templates/extras/plugins_tiles.html +28 -28
  517. nautobot/extras/templates/extras/role_retrieve.html +112 -48
  518. nautobot/extras/templates/extras/scheduledjob.html +25 -28
  519. nautobot/extras/templates/extras/secret_create.html +11 -11
  520. nautobot/extras/templates/extras/secretsgroup_update.html +6 -6
  521. nautobot/extras/templates/extras/staticgroupassociation_retrieve.html +3 -3
  522. nautobot/extras/templates/extras/status.html +1 -1
  523. nautobot/extras/templates/extras/tag.html +1 -1
  524. nautobot/extras/templates/extras/tag_update.html +3 -3
  525. nautobot/extras/templates/extras/templatetags/log_level.html +1 -1
  526. nautobot/extras/templates/extras/templatetags/plugin_object_detail_tabs.html +2 -2
  527. nautobot/extras/templates/extras/webhook.html +12 -12
  528. nautobot/extras/templatetags/approvals.py +19 -0
  529. nautobot/extras/templatetags/custom_links.py +12 -12
  530. nautobot/extras/templatetags/job_buttons.py +14 -12
  531. nautobot/extras/test_jobs/invalid_import.py +9 -0
  532. nautobot/extras/test_jobs/log_counts_by_level.py +23 -0
  533. nautobot/extras/test_jobs/missing_import.py +11 -0
  534. nautobot/extras/tests/integration/test_computedfields.py +5 -8
  535. nautobot/extras/tests/integration/test_configcontextschema.py +43 -48
  536. nautobot/extras/tests/integration/test_customfields.py +33 -33
  537. nautobot/extras/tests/integration/test_dynamicgroups.py +5 -10
  538. nautobot/extras/tests/integration/test_jobs.py +2 -4
  539. nautobot/extras/tests/integration/test_notes.py +3 -9
  540. nautobot/extras/tests/integration/test_plugin_banner.py +3 -0
  541. nautobot/extras/tests/integration/test_plugins.py +35 -27
  542. nautobot/extras/tests/integration/test_relationships.py +7 -11
  543. nautobot/extras/tests/integration/test_tagfilter.py +3 -11
  544. nautobot/extras/tests/test_api.py +786 -242
  545. nautobot/extras/tests/test_approvals.py +715 -0
  546. nautobot/extras/tests/test_changelog.py +18 -14
  547. nautobot/extras/tests/test_customfields.py +14 -13
  548. nautobot/extras/tests/test_datasources.py +1 -1
  549. nautobot/extras/tests/test_dynamicgroups.py +9 -4
  550. nautobot/extras/tests/test_filters.py +443 -13
  551. nautobot/extras/tests/test_forms.py +18 -57
  552. nautobot/extras/tests/test_jobs.py +25 -4
  553. nautobot/extras/tests/test_migrations.py +81 -1
  554. nautobot/extras/tests/test_models.py +378 -47
  555. nautobot/extras/tests/test_plugins.py +47 -13
  556. nautobot/extras/tests/test_relationships.py +7 -2
  557. nautobot/extras/tests/test_utils.py +2 -0
  558. nautobot/extras/tests/test_views.py +780 -493
  559. nautobot/extras/urls.py +36 -12
  560. nautobot/extras/utils.py +58 -12
  561. nautobot/extras/views.py +668 -209
  562. nautobot/ipam/factory.py +7 -0
  563. nautobot/ipam/filter_mixins.py +38 -0
  564. nautobot/ipam/filters.py +35 -71
  565. nautobot/ipam/formfields.py +1 -1
  566. nautobot/ipam/forms.py +6 -3
  567. nautobot/ipam/migrations/0030_ipam__namespaces.py +13 -0
  568. nautobot/ipam/migrations/0031_ipam___data_migrations.py +4 -1
  569. nautobot/ipam/migrations/0054_namespace_tenant.py +25 -0
  570. nautobot/ipam/models.py +29 -2
  571. nautobot/ipam/navigation.py +3 -1
  572. nautobot/ipam/querysets.py +1 -2
  573. nautobot/ipam/tables.py +26 -17
  574. nautobot/ipam/templates/ipam/inc/ipadress_edit_header.html +6 -6
  575. nautobot/ipam/templates/ipam/inc/service.html +8 -8
  576. nautobot/ipam/templates/ipam/inc/toggle_available.html +10 -10
  577. nautobot/ipam/templates/ipam/inc/vlangroup_header.html +3 -2
  578. nautobot/ipam/templates/ipam/ipaddress.html +27 -13
  579. nautobot/ipam/templates/ipam/ipaddress_assign.html +31 -24
  580. nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +3 -3
  581. nautobot/ipam/templates/ipam/ipaddress_edit.html +9 -9
  582. nautobot/ipam/templates/ipam/ipaddress_interfaces.html +7 -9
  583. nautobot/ipam/templates/ipam/ipaddress_merge.html +195 -186
  584. nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +7 -9
  585. nautobot/ipam/templates/ipam/ipaddresstointerface_retrieve.html +7 -5
  586. nautobot/ipam/templates/ipam/namespace_ip_addresses.html +1 -1
  587. nautobot/ipam/templates/ipam/namespace_prefixes.html +1 -1
  588. nautobot/ipam/templates/ipam/namespace_update.html +15 -0
  589. nautobot/ipam/templates/ipam/namespace_vrfs.html +1 -1
  590. nautobot/ipam/templates/ipam/prefix_create.html +9 -9
  591. nautobot/ipam/templates/ipam/prefix_list.html +15 -14
  592. nautobot/ipam/templates/ipam/prefix_retrieve.html +0 -1
  593. nautobot/ipam/templates/ipam/vlan.html +1 -1
  594. nautobot/ipam/templates/ipam/vlan_interfaces.html +1 -1
  595. nautobot/ipam/templates/ipam/vlan_update.html +6 -6
  596. nautobot/ipam/templates/ipam/vlan_vminterfaces.html +1 -1
  597. nautobot/ipam/templates/ipam/vrf_edit.html +15 -15
  598. nautobot/ipam/tests/integration/test_prefixes.py +5 -13
  599. nautobot/ipam/tests/migration/test_migrations.py +89 -0
  600. nautobot/ipam/tests/test_api.py +20 -7
  601. nautobot/ipam/tests/test_filters.py +10 -0
  602. nautobot/ipam/tests/test_forms.py +1 -1
  603. nautobot/ipam/tests/test_models.py +1 -1
  604. nautobot/ipam/tests/test_tables.py +1 -2
  605. nautobot/ipam/tests/test_utils.py +1 -1
  606. nautobot/ipam/tests/test_views.py +24 -21
  607. nautobot/ipam/ui.py +0 -17
  608. nautobot/ipam/utils/migrations.py +16 -2
  609. nautobot/ipam/utils/testing.py +9 -3
  610. nautobot/ipam/views.py +49 -7
  611. nautobot/project-static/dist/css/graphql-libraries.css +655 -0
  612. nautobot/project-static/dist/css/graphql-libraries.css.map +1 -0
  613. nautobot/project-static/dist/css/materialdesignicons.css +3 -0
  614. nautobot/project-static/dist/css/materialdesignicons.css.map +1 -0
  615. nautobot/project-static/dist/css/nautobot.css +13 -0
  616. nautobot/project-static/dist/css/nautobot.css.map +1 -0
  617. nautobot/project-static/dist/js/graphql-libraries.js +3 -0
  618. nautobot/project-static/dist/js/graphql-libraries.js.LICENSE.txt +62 -0
  619. nautobot/project-static/dist/js/graphql-libraries.js.map +1 -0
  620. nautobot/project-static/dist/js/libraries.js +3 -0
  621. nautobot/project-static/dist/js/libraries.js.LICENSE.txt +65 -0
  622. nautobot/project-static/dist/js/libraries.js.map +1 -0
  623. nautobot/project-static/dist/js/materialdesignicons.js +0 -0
  624. nautobot/project-static/dist/js/nautobot-graphiql.js +2 -0
  625. nautobot/project-static/dist/js/nautobot-graphiql.js.map +1 -0
  626. nautobot/project-static/dist/js/nautobot.js +2 -0
  627. nautobot/project-static/dist/js/nautobot.js.map +1 -0
  628. nautobot/project-static/fonts/Montserrat-v30-Bold.woff2 +0 -0
  629. nautobot/project-static/fonts/Montserrat-v30-Light.woff2 +0 -0
  630. nautobot/project-static/fonts/Montserrat-v30-Regular.woff2 +0 -0
  631. nautobot/project-static/fonts/Roboto-v48-Bold.woff2 +0 -0
  632. nautobot/project-static/fonts/Roboto-v48-Light.woff2 +0 -0
  633. nautobot/project-static/fonts/Roboto-v48-Regular.woff2 +0 -0
  634. nautobot/project-static/img/jinja_logo.svg +21 -92
  635. nautobot/project-static/js/cabletrace.js +1 -1
  636. nautobot/project-static/js/editor.js +4 -4
  637. nautobot/project-static/js/forms.js +67 -717
  638. nautobot/project-static/js/job_result.js +2 -2
  639. nautobot/project-static/nautobot-icons/360-degrees.svg +3 -0
  640. nautobot/project-static/nautobot-icons/arrow-decision.svg +3 -0
  641. nautobot/project-static/nautobot-icons/arrows-expand-rec.svg +3 -0
  642. nautobot/project-static/nautobot-icons/arrows-move-2-rec.svg +3 -0
  643. nautobot/project-static/nautobot-icons/arrows-move-rec.svg +3 -0
  644. nautobot/project-static/nautobot-icons/atom.svg +3 -0
  645. nautobot/project-static/nautobot-icons/battery-3.svg +3 -0
  646. nautobot/project-static/nautobot-icons/branch.svg +3 -0
  647. nautobot/project-static/nautobot-icons/briefcase-2.svg +3 -0
  648. nautobot/project-static/nautobot-icons/cable-data-2.svg +3 -0
  649. nautobot/project-static/nautobot-icons/cable-data.svg +3 -0
  650. nautobot/project-static/nautobot-icons/cast.svg +3 -0
  651. nautobot/project-static/nautobot-icons/check-circle.svg +3 -0
  652. nautobot/project-static/nautobot-icons/checkbox-circle.svg +3 -0
  653. nautobot/project-static/nautobot-icons/checkbox-rec.svg +3 -0
  654. nautobot/project-static/nautobot-icons/cloud-check.svg +3 -0
  655. nautobot/project-static/nautobot-icons/cloud-lightning.svg +3 -0
  656. nautobot/project-static/nautobot-icons/cloud-upload.svg +3 -0
  657. nautobot/project-static/nautobot-icons/cloud.svg +3 -0
  658. nautobot/project-static/nautobot-icons/compass.svg +3 -0
  659. nautobot/project-static/nautobot-icons/control-panel.svg +3 -0
  660. nautobot/project-static/nautobot-icons/credit-card.svg +3 -0
  661. nautobot/project-static/nautobot-icons/device-lifecycle.svg +3 -0
  662. nautobot/project-static/nautobot-icons/direction.svg +3 -0
  663. nautobot/project-static/nautobot-icons/elements.svg +3 -0
  664. nautobot/project-static/nautobot-icons/extensibility.svg +3 -0
  665. nautobot/project-static/nautobot-icons/globe-2.svg +3 -0
  666. nautobot/project-static/nautobot-icons/globe.svg +3 -0
  667. nautobot/project-static/nautobot-icons/hammer.svg +3 -0
  668. nautobot/project-static/nautobot-icons/history.svg +3 -0
  669. nautobot/project-static/nautobot-icons/ip.svg +3 -0
  670. nautobot/project-static/nautobot-icons/laptop.svg +3 -0
  671. nautobot/project-static/nautobot-icons/lightning.svg +3 -0
  672. nautobot/project-static/nautobot-icons/list-unordered.svg +3 -0
  673. nautobot/project-static/nautobot-icons/map-view.svg +3 -0
  674. nautobot/project-static/nautobot-icons/organization.svg +3 -0
  675. nautobot/project-static/nautobot-icons/pin-2.svg +3 -0
  676. nautobot/project-static/nautobot-icons/pin-3.svg +3 -0
  677. nautobot/project-static/nautobot-icons/plug.svg +3 -0
  678. nautobot/project-static/nautobot-icons/refresh-cw.svg +3 -0
  679. nautobot/project-static/nautobot-icons/rocket-2.svg +3 -0
  680. nautobot/project-static/nautobot-icons/rotate-cw.svg +3 -0
  681. nautobot/project-static/nautobot-icons/route.svg +3 -0
  682. nautobot/project-static/nautobot-icons/secrets.svg +3 -0
  683. nautobot/project-static/nautobot-icons/security.svg +3 -0
  684. nautobot/project-static/nautobot-icons/server-2.svg +3 -0
  685. nautobot/project-static/nautobot-icons/server.svg +3 -0
  686. nautobot/project-static/nautobot-icons/share.svg +3 -0
  687. nautobot/project-static/nautobot-icons/shield-check.svg +3 -0
  688. nautobot/project-static/nautobot-icons/sitemap-outline.svg +3 -0
  689. nautobot/project-static/nautobot-icons/sliders-vert-2.svg +3 -0
  690. nautobot/project-static/nautobot-icons/sliders-vert.svg +3 -0
  691. nautobot/project-static/nautobot-icons/star-filled.svg +3 -0
  692. nautobot/project-static/nautobot-icons/star.svg +3 -0
  693. nautobot/project-static/nautobot-icons/transform.svg +3 -0
  694. nautobot/project-static/nautobot-icons/wifi.svg +3 -0
  695. nautobot/tenancy/api/serializers.py +1 -0
  696. nautobot/tenancy/api/views.py +2 -1
  697. nautobot/tenancy/{filters/__init__.py → filters.py} +2 -10
  698. nautobot/tenancy/navigation.py +3 -1
  699. nautobot/tenancy/templates/tenancy/tenant_create.html +6 -6
  700. nautobot/tenancy/tests/test_filters.py +0 -2
  701. nautobot/tenancy/views.py +2 -1
  702. nautobot/ui/.gitignore +137 -0
  703. nautobot/ui/.node-version +1 -0
  704. nautobot/ui/.prettierignore +3 -0
  705. nautobot/ui/eslint.config.js +33 -0
  706. nautobot/ui/package-lock.json +6594 -0
  707. nautobot/ui/package.json +67 -0
  708. nautobot/ui/prettier.config.js +9 -0
  709. nautobot/ui/src/js/collapse.js +69 -0
  710. nautobot/ui/src/js/cookie.js +31 -0
  711. nautobot/ui/src/js/draggable.js +101 -0
  712. nautobot/ui/src/js/drawer.js +106 -0
  713. nautobot/ui/src/js/form.js +23 -0
  714. nautobot/ui/src/js/history.js +51 -0
  715. nautobot/ui/src/js/nautobot-graphiql.js +19 -0
  716. nautobot/ui/src/js/nautobot.js +128 -0
  717. nautobot/ui/src/js/search.js +274 -0
  718. nautobot/ui/src/js/select2.js +318 -0
  719. nautobot/ui/src/js/sidenav.js +87 -0
  720. nautobot/ui/src/js/tabs.js +139 -0
  721. nautobot/ui/src/js/theme.js +104 -0
  722. nautobot/ui/src/js/utils.js +54 -0
  723. nautobot/ui/src/scss/colors.scss +58 -0
  724. nautobot/ui/src/scss/nautobot.scss +2471 -0
  725. nautobot/ui/webpack.config.js +148 -0
  726. nautobot/users/apps.py +3 -0
  727. nautobot/users/filters.py +7 -11
  728. nautobot/users/forms.py +10 -0
  729. nautobot/users/models.py +8 -0
  730. nautobot/users/templates/users/advanced_settings_edit.html +31 -21
  731. nautobot/users/templates/users/api_tokens.html +61 -51
  732. nautobot/users/templates/users/base.html +23 -31
  733. nautobot/users/templates/users/change_password.html +29 -19
  734. nautobot/users/templates/users/preferences.html +55 -45
  735. nautobot/users/templates/users/profile.html +45 -14
  736. nautobot/users/tests/test_api.py +4 -0
  737. nautobot/users/urls.py +2 -0
  738. nautobot/users/views.py +70 -2
  739. nautobot/virtualization/api/views.py +1 -1
  740. nautobot/virtualization/filters.py +18 -32
  741. nautobot/virtualization/forms.py +22 -59
  742. nautobot/virtualization/models.py +1 -19
  743. nautobot/virtualization/navigation.py +3 -1
  744. nautobot/virtualization/tables.py +10 -6
  745. nautobot/virtualization/templates/virtualization/cluster.html +13 -13
  746. nautobot/virtualization/templates/virtualization/cluster_edit.html +6 -6
  747. nautobot/virtualization/templates/virtualization/inc/virtualmachine_vminterface_filter.html +1 -1
  748. nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -1
  749. nautobot/virtualization/templates/virtualization/virtualmachine_component_add.html +24 -16
  750. nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +1 -1
  751. nautobot/virtualization/templates/virtualization/virtualmachine_list.html +4 -4
  752. nautobot/virtualization/templates/virtualization/virtualmachine_update.html +27 -25
  753. nautobot/virtualization/templates/virtualization/vminterface.html +5 -5
  754. nautobot/virtualization/templates/virtualization/vminterface_edit.html +27 -11
  755. nautobot/virtualization/tests/test_api.py +3 -0
  756. nautobot/virtualization/tests/test_models.py +20 -5
  757. nautobot/virtualization/tests/test_views.py +3 -5
  758. nautobot/virtualization/urls.py +0 -11
  759. nautobot/virtualization/views.py +5 -122
  760. nautobot/vpn/__init__.py +0 -0
  761. nautobot/vpn/api/serializers.py +113 -0
  762. nautobot/vpn/api/urls.py +19 -0
  763. nautobot/vpn/api/views.py +70 -0
  764. nautobot/vpn/apps.py +8 -0
  765. nautobot/vpn/choices.py +171 -0
  766. nautobot/vpn/factory.py +209 -0
  767. nautobot/vpn/filters.py +233 -0
  768. nautobot/vpn/forms.py +486 -0
  769. nautobot/vpn/homepage.py +19 -0
  770. nautobot/vpn/migrations/0001_initial.py +541 -0
  771. nautobot/vpn/migrations/0002_populate_defaults.py +199 -0
  772. nautobot/vpn/migrations/__init__.py +0 -0
  773. nautobot/vpn/models.py +527 -0
  774. nautobot/vpn/navigation.py +98 -0
  775. nautobot/vpn/tables.py +380 -0
  776. nautobot/vpn/templates/vpn/vpnprofile.html +2 -0
  777. nautobot/vpn/templates/vpn/vpnprofile_create.html +150 -0
  778. nautobot/vpn/tests/__init__.py +0 -0
  779. nautobot/vpn/tests/test_api.py +341 -0
  780. nautobot/vpn/tests/test_filters.py +139 -0
  781. nautobot/vpn/tests/test_forms.py +294 -0
  782. nautobot/vpn/tests/test_models.py +97 -0
  783. nautobot/vpn/tests/test_views.py +281 -0
  784. nautobot/vpn/urls.py +16 -0
  785. nautobot/vpn/views.py +437 -0
  786. nautobot/wireless/filters.py +0 -8
  787. nautobot/wireless/navigation.py +3 -1
  788. nautobot/wireless/templates/wireless/wirelessnetwork_create.html +6 -6
  789. nautobot/wireless/tests/integration/test_radio_profile.py +3 -7
  790. nautobot/wireless/tests/test_api.py +1 -1
  791. {nautobot-2.4.21.dist-info → nautobot-3.0.0a3.dist-info}/METADATA +5 -4
  792. {nautobot-2.4.21.dist-info → nautobot-3.0.0a3.dist-info}/RECORD +802 -707
  793. {nautobot-2.4.21.dist-info → nautobot-3.0.0a3.dist-info}/entry_points.txt +1 -0
  794. nautobot/core/management/commands/check_job_approval_status.py +0 -47
  795. nautobot/core/templates/search_form.html +0 -9
  796. nautobot/core/templates/utilities/templatetags/filter_form_modal.html +0 -87
  797. nautobot/dcim/filters/mixins.py +0 -354
  798. nautobot/extras/templates/extras/job_approval_request.html +0 -134
  799. nautobot/extras/templates/extras/scheduled_jobs_approval_queue_list.html +0 -28
  800. nautobot/ipam/mixins.py +0 -32
  801. nautobot/ipam/templates/ipam/inc/prefix_header_extra_content_table.html +0 -4
  802. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +0 -587
  803. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +0 -1
  804. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css +0 -6
  805. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +0 -1
  806. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +0 -6865
  807. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +0 -1
  808. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +0 -6
  809. nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +0 -1
  810. nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.eot +0 -0
  811. nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.svg +0 -288
  812. nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  813. nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.woff +0 -0
  814. nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.woff2 +0 -0
  815. nautobot/project-static/bootstrap-3.4.1-dist/js/bootstrap.js +0 -2580
  816. nautobot/project-static/bootstrap-3.4.1-dist/js/bootstrap.min.js +0 -6
  817. nautobot/project-static/bootstrap-3.4.1-dist/js/npm.js +0 -13
  818. nautobot/project-static/clipboard.js-2.0.9/clipboard.min.js +0 -7
  819. nautobot/project-static/css/base.css +0 -1040
  820. nautobot/project-static/css/dark.css +0 -282
  821. nautobot/project-static/flatpickr-4.6.9/flatpickr.min.js +0 -2
  822. nautobot/project-static/flatpickr-4.6.9/themes/light.min.css +0 -1
  823. nautobot/project-static/graphiql-1.5.16/graphiql.min.css +0 -12
  824. nautobot/project-static/graphiql-1.5.16/graphiql.min.js +0 -11
  825. nautobot/project-static/highlight.js-11.9.0/github-dark.min.css +0 -10
  826. nautobot/project-static/highlight.js-11.9.0/github.min.css +0 -10
  827. nautobot/project-static/highlight.js-11.9.0/highlight.min.js +0 -378
  828. nautobot/project-static/jquery/jquery-3.7.1.min.js +0 -2
  829. nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_444444_256x240.png +0 -0
  830. nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_555555_256x240.png +0 -0
  831. nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_777620_256x240.png +0 -0
  832. nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_777777_256x240.png +0 -0
  833. nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_cc0000_256x240.png +0 -0
  834. nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_ffffff_256x240.png +0 -0
  835. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +0 -7
  836. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +0 -6
  837. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +0 -5
  838. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.theme.min.css +0 -5
  839. nautobot/project-static/js/homepage_layout.js +0 -182
  840. nautobot/project-static/js/nav_menu.js +0 -250
  841. nautobot/project-static/js/theme.js +0 -133
  842. nautobot/project-static/materialdesignicons-7.4.47/LICENSE +0 -20
  843. nautobot/project-static/materialdesignicons-7.4.47/css/materialdesignicons.min.css +0 -3
  844. nautobot/project-static/react-16.14.0/react.production.min.js +0 -32
  845. nautobot/project-static/react-dom-16.14.0/react-dom.production.min.js +0 -239
  846. nautobot/project-static/select2-4.0.13/i18n/af.js +0 -3
  847. nautobot/project-static/select2-4.0.13/i18n/ar.js +0 -3
  848. nautobot/project-static/select2-4.0.13/i18n/az.js +0 -3
  849. nautobot/project-static/select2-4.0.13/i18n/bg.js +0 -3
  850. nautobot/project-static/select2-4.0.13/i18n/bn.js +0 -3
  851. nautobot/project-static/select2-4.0.13/i18n/bs.js +0 -3
  852. nautobot/project-static/select2-4.0.13/i18n/ca.js +0 -3
  853. nautobot/project-static/select2-4.0.13/i18n/cs.js +0 -3
  854. nautobot/project-static/select2-4.0.13/i18n/da.js +0 -3
  855. nautobot/project-static/select2-4.0.13/i18n/de.js +0 -3
  856. nautobot/project-static/select2-4.0.13/i18n/dsb.js +0 -3
  857. nautobot/project-static/select2-4.0.13/i18n/el.js +0 -3
  858. nautobot/project-static/select2-4.0.13/i18n/en.js +0 -3
  859. nautobot/project-static/select2-4.0.13/i18n/es.js +0 -3
  860. nautobot/project-static/select2-4.0.13/i18n/et.js +0 -3
  861. nautobot/project-static/select2-4.0.13/i18n/eu.js +0 -3
  862. nautobot/project-static/select2-4.0.13/i18n/fa.js +0 -3
  863. nautobot/project-static/select2-4.0.13/i18n/fi.js +0 -3
  864. nautobot/project-static/select2-4.0.13/i18n/fr.js +0 -3
  865. nautobot/project-static/select2-4.0.13/i18n/gl.js +0 -3
  866. nautobot/project-static/select2-4.0.13/i18n/he.js +0 -3
  867. nautobot/project-static/select2-4.0.13/i18n/hi.js +0 -3
  868. nautobot/project-static/select2-4.0.13/i18n/hr.js +0 -3
  869. nautobot/project-static/select2-4.0.13/i18n/hsb.js +0 -3
  870. nautobot/project-static/select2-4.0.13/i18n/hu.js +0 -3
  871. nautobot/project-static/select2-4.0.13/i18n/hy.js +0 -3
  872. nautobot/project-static/select2-4.0.13/i18n/id.js +0 -3
  873. nautobot/project-static/select2-4.0.13/i18n/is.js +0 -3
  874. nautobot/project-static/select2-4.0.13/i18n/it.js +0 -3
  875. nautobot/project-static/select2-4.0.13/i18n/ja.js +0 -3
  876. nautobot/project-static/select2-4.0.13/i18n/ka.js +0 -3
  877. nautobot/project-static/select2-4.0.13/i18n/km.js +0 -3
  878. nautobot/project-static/select2-4.0.13/i18n/ko.js +0 -3
  879. nautobot/project-static/select2-4.0.13/i18n/lt.js +0 -3
  880. nautobot/project-static/select2-4.0.13/i18n/lv.js +0 -3
  881. nautobot/project-static/select2-4.0.13/i18n/mk.js +0 -3
  882. nautobot/project-static/select2-4.0.13/i18n/ms.js +0 -3
  883. nautobot/project-static/select2-4.0.13/i18n/nb.js +0 -3
  884. nautobot/project-static/select2-4.0.13/i18n/ne.js +0 -3
  885. nautobot/project-static/select2-4.0.13/i18n/nl.js +0 -3
  886. nautobot/project-static/select2-4.0.13/i18n/pl.js +0 -3
  887. nautobot/project-static/select2-4.0.13/i18n/ps.js +0 -3
  888. nautobot/project-static/select2-4.0.13/i18n/pt-BR.js +0 -3
  889. nautobot/project-static/select2-4.0.13/i18n/pt.js +0 -3
  890. nautobot/project-static/select2-4.0.13/i18n/ro.js +0 -3
  891. nautobot/project-static/select2-4.0.13/i18n/ru.js +0 -3
  892. nautobot/project-static/select2-4.0.13/i18n/sk.js +0 -3
  893. nautobot/project-static/select2-4.0.13/i18n/sl.js +0 -3
  894. nautobot/project-static/select2-4.0.13/i18n/sq.js +0 -3
  895. nautobot/project-static/select2-4.0.13/i18n/sr-Cyrl.js +0 -3
  896. nautobot/project-static/select2-4.0.13/i18n/sr.js +0 -3
  897. nautobot/project-static/select2-4.0.13/i18n/sv.js +0 -3
  898. nautobot/project-static/select2-4.0.13/i18n/th.js +0 -3
  899. nautobot/project-static/select2-4.0.13/i18n/tk.js +0 -3
  900. nautobot/project-static/select2-4.0.13/i18n/tr.js +0 -3
  901. nautobot/project-static/select2-4.0.13/i18n/uk.js +0 -3
  902. nautobot/project-static/select2-4.0.13/i18n/vi.js +0 -3
  903. nautobot/project-static/select2-4.0.13/i18n/zh-CN.js +0 -3
  904. nautobot/project-static/select2-4.0.13/i18n/zh-TW.js +0 -3
  905. nautobot/project-static/select2-4.0.13/select2.min.css +0 -1
  906. nautobot/project-static/select2-4.0.13/select2.min.js +0 -2
  907. nautobot/project-static/select2-bootstrap-0.1.0-beta.10/select2-bootstrap.min.css +0 -7
  908. nautobot/project-static/subscriptions-transport-ws-0.9.18/client.min.js +0 -8
  909. nautobot/project-static/whatwg-fetch-3.6.2/fetch.umd.min.js +0 -8
  910. nautobot/virtualization/templates/virtualization/cluster_add_devices.html +0 -37
  911. /nautobot/extras/{filters/customfields.py → filter_mixins_customfields.py} +0 -0
  912. /nautobot/project-static/{materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.ttf → dist/1fcc36272ea3e53d0031.ttf} +0 -0
  913. /nautobot/project-static/{materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.eot → dist/2146c3c82b553977abc7.eot} +0 -0
  914. /nautobot/project-static/{materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff → dist/e55a20c80650829ec5fd.woff} +0 -0
  915. /nautobot/project-static/{materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff2 → dist/ec024da790d2972da002.woff2} +0 -0
  916. /nautobot/tenancy/{filters/mixins.py → filter_mixins.py} +0 -0
  917. {nautobot-2.4.21.dist-info → nautobot-3.0.0a3.dist-info}/LICENSE.txt +0 -0
  918. {nautobot-2.4.21.dist-info → nautobot-3.0.0a3.dist-info}/NOTICE +0 -0
  919. {nautobot-2.4.21.dist-info → nautobot-3.0.0a3.dist-info}/WHEEL +0 -0
@@ -16,10 +16,10 @@ function updatePendingStatusLabel(status) {
16
16
  labelClass = 'success';
17
17
  }
18
18
  else {
19
- labelClass = 'default';
19
+ labelClass = 'secondary';
20
20
  }
21
21
  var elem = $('#pending-result-label > label');
22
- elem.attr('class', 'label label-' + labelClass);
22
+ elem.attr('class', 'badge bg-' + labelClass);
23
23
  elem.text(status.label);
24
24
  }
25
25
 
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M2.75001 4.99951C2.75028 5.00297 2.75423 5.041 2.80077 5.11877C2.85399 5.20769 2.9489 5.32422 3.10163 5.46085C3.40851 5.7354 3.88177 6.03164 4.49358 6.30513C5.71439 6.85087 7.36042 7.25 9 7.25C9.41421 7.25 9.75 7.58579 9.75 8V22C9.75 22.4142 9.41421 22.75 9 22.75C7.39376 22.75 5.54759 22.3525 4.09103 21.7567C3.36343 21.459 2.6937 21.096 2.19174 20.6777C1.71355 20.2792 1.25 19.7129 1.25 19V5C1.25 4.18625 1.85411 3.596 2.45321 3.20445C3.09053 2.78793 3.95413 2.43954 4.92783 2.15816C6.88505 1.59257 9.45656 1.25 12 1.25C14.5434 1.25 17.115 1.59257 19.0722 2.15816C20.0459 2.43954 20.9095 2.78793 21.5468 3.20445C22.1459 3.596 22.75 4.18625 22.75 5V19C22.75 19.6364 22.432 20.1892 22.005 20.6259C21.5761 21.0646 20.9882 21.4403 20.3078 21.7464C18.9438 22.3603 17.0854 22.75 15 22.75C14.5858 22.75 14.25 22.4142 14.25 22V8C14.25 7.58579 14.5858 7.25 15 7.25C16.9005 7.25 18.5402 6.8465 19.6813 6.3109C20.2539 6.04214 20.6742 5.7527 20.9394 5.4885C21.2177 5.21121 21.25 5.04093 21.25 5C21.25 4.98532 21.2254 4.78636 20.7262 4.46008C20.2652 4.15877 19.5607 3.86072 18.6557 3.5992C16.8556 3.079 14.4271 2.75 12 2.75C9.57288 2.75 7.14439 3.079 5.34425 3.5992C4.43927 3.86072 3.73485 4.15877 3.27382 4.46008C2.77952 4.78313 2.75053 4.98136 2.75001 4.99951ZM21.25 7.15117C20.9687 7.33722 20.6558 7.51054 20.3187 7.66876C19.1239 8.22955 17.5417 8.64003 15.75 8.73102V21.2313C17.343 21.1514 18.7076 20.8217 19.6922 20.3786C20.2618 20.1222 20.6739 19.8417 20.9325 19.5772C21.193 19.3108 21.25 19.1136 21.25 19V7.15117ZM2.75 7.06823V19C2.75 19.0371 2.78645 19.2208 3.15201 19.5254C3.4938 19.8102 4.01157 20.1035 4.65897 20.3683C5.72673 20.8052 7.04009 21.1216 8.25 21.2187V8.7263C6.64851 8.62617 5.09655 8.21773 3.88142 7.67453C3.47136 7.49123 3.08878 7.28775 2.75 7.06823Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" d="M12 13.75C12.4141 13.7501 12.75 14.0859 12.75 14.5V20.1895L14.4697 18.4697C14.7626 18.1769 15.2374 18.1769 15.5303 18.4697C15.823 18.7626 15.823 19.2374 15.5303 19.5303L12.5303 22.5303C12.2374 22.8231 11.7626 22.823 11.4697 22.5303L8.46973 19.5303C8.17683 19.2374 8.17683 18.7626 8.46973 18.4697C8.76263 18.1769 9.23742 18.1769 9.53027 18.4697L11.25 20.1895V14.5C11.25 14.0858 11.5858 13.75 12 13.75ZM12 1.25C14.071 1.2501 15.75 2.92899 15.75 5C15.75 6.81481 14.4606 8.328 12.748 8.6748C12.7448 9.35644 12.7311 9.94005 12.665 10.416C12.5761 11.0561 12.3754 11.6605 11.8438 12.0859C11.3475 12.4829 10.6841 12.6199 9.95703 12.6846C9.21281 12.7507 8.23505 12.75 7 12.75H3.81055L5.53027 14.4697C5.82284 14.7626 5.82284 15.2374 5.53027 15.5303C5.23746 15.8231 4.76264 15.8229 4.46973 15.5303L1.46973 12.5303C1.17683 12.2374 1.17683 11.7626 1.46973 11.4697L4.46973 8.46973C4.76264 8.17708 5.23746 8.17692 5.53027 8.46973C5.82284 8.76256 5.82284 9.23744 5.53027 9.53027L3.81055 11.25H7C8.26444 11.25 9.16236 11.2493 9.82422 11.1904C10.5028 11.1301 10.7776 11.017 10.9062 10.9141C10.9992 10.8395 11.1115 10.6931 11.1787 10.209C11.2315 9.82873 11.2445 9.33853 11.248 8.67383C9.53733 8.32563 8.25 6.81354 8.25 5C8.25 2.92893 9.92893 1.25 12 1.25ZM18.4697 8.46973C18.7626 8.17708 19.2375 8.17691 19.5303 8.46973L22.5303 11.4697C22.8228 11.7626 22.8228 12.2374 22.5303 12.5303L19.5303 15.5303C19.2375 15.8231 18.7626 15.8229 18.4697 15.5303C18.1768 15.2374 18.1768 14.7626 18.4697 14.4697L20.1895 12.75H14.5C14.0858 12.7499 13.75 12.4142 13.75 12C13.75 11.5858 14.0858 11.2501 14.5 11.25H20.1895L18.4697 9.53027C18.1768 9.23738 18.1768 8.76262 18.4697 8.46973ZM12 2.75C10.7574 2.75 9.75 3.75736 9.75 5C9.75 6.24264 10.7574 7.25 12 7.25C13.2426 7.2499 14.25 6.24258 14.25 5C14.25 3.75742 13.2426 2.7501 12 2.75Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.96644 1.25H10H14H14.0336C15.4053 1.25 16.4807 1.24999 17.3451 1.32061C18.2252 1.39252 18.9523 1.54138 19.6104 1.87671C20.6924 2.42798 21.572 3.30762 22.1233 4.38955C22.4586 5.04769 22.6075 5.77479 22.6794 6.65494C22.75 7.51926 22.75 8.59466 22.75 9.96632V9.96637V9.96642V10V14V14.0336V14.0336V14.0337C22.75 15.4053 22.75 16.4807 22.6794 17.3451C22.6075 18.2252 22.4586 18.9523 22.1233 19.6104C21.572 20.6924 20.6924 21.572 19.6104 22.1233C18.9523 22.4586 18.2252 22.6075 17.3451 22.6794C16.4807 22.75 15.4053 22.75 14.0337 22.75H14.0336H14.0336H14H10H9.96642H9.96637H9.96632C8.59466 22.75 7.51926 22.75 6.65494 22.6794C5.77479 22.6075 5.04769 22.4586 4.38955 22.1233C3.30762 21.572 2.42798 20.6924 1.87671 19.6104C1.54138 18.9523 1.39252 18.2252 1.32061 17.3451C1.24999 16.4807 1.25 15.4053 1.25 14.0336V14V10V9.96644C1.25 8.59472 1.24999 7.51929 1.32061 6.65494C1.39252 5.77479 1.54138 5.04769 1.87671 4.38955C2.42798 3.30762 3.30762 2.42798 4.38955 1.87671C5.04769 1.54138 5.77479 1.39252 6.65494 1.32061C7.51929 1.24999 8.59472 1.25 9.96644 1.25ZM6.77708 2.81563C5.9897 2.87996 5.48197 3.00359 5.07054 3.21322C4.27085 3.62068 3.62068 4.27085 3.21322 5.07054C3.00359 5.48197 2.87996 5.9897 2.81563 6.77708C2.75058 7.57322 2.75 8.58749 2.75 10V14C2.75 15.4125 2.75058 16.4268 2.81563 17.2229C2.87996 18.0103 3.00359 18.518 3.21322 18.9295C3.62068 19.7291 4.27085 20.3793 5.07054 20.7868C5.48197 20.9964 5.9897 21.12 6.77708 21.1844C7.57322 21.2494 8.58749 21.25 10 21.25H14C15.4125 21.25 16.4268 21.2494 17.2229 21.1844C18.0103 21.12 18.518 20.9964 18.9295 20.7868C19.7291 20.3793 20.3793 19.7291 20.7868 18.9295C20.9964 18.518 21.12 18.0103 21.1844 17.2229C21.2494 16.4268 21.25 15.4125 21.25 14V10C21.25 8.58749 21.2494 7.57322 21.1844 6.77708C21.12 5.9897 20.9964 5.48197 20.7868 5.07054C20.3793 4.27085 19.7291 3.62068 18.9295 3.21322C18.518 3.00359 18.0103 2.87996 17.2229 2.81563C16.4268 2.75058 15.4125 2.75 14 2.75H10C8.58749 2.75 7.57322 2.75058 6.77708 2.81563ZM5.25 6C5.25 5.58579 5.58579 5.25 6 5.25H10C10.4142 5.25 10.75 5.58579 10.75 6C10.75 6.41421 10.4142 6.75 10 6.75H7.81066L10.5303 9.46967C10.8232 9.76256 10.8232 10.2374 10.5303 10.5303C10.2374 10.8232 9.76256 10.8232 9.46967 10.5303L6.75 7.81066V10C6.75 10.4142 6.41421 10.75 6 10.75C5.58579 10.75 5.25 10.4142 5.25 10V6ZM18 13.25C18.4142 13.25 18.75 13.5858 18.75 14V18C18.75 18.4142 18.4142 18.75 18 18.75H14C13.5858 18.75 13.25 18.4142 13.25 18C13.25 17.5858 13.5858 17.25 14 17.25H16.1893L13.4697 14.5303C13.1768 14.2374 13.1768 13.7626 13.4697 13.4697C13.7626 13.1768 14.2374 13.1768 14.5303 13.4697L17.25 16.1893V14C17.25 13.5858 17.5858 13.25 18 13.25ZM13.25 6C13.25 6.41421 13.5858 6.75 14 6.75H16.1893L13.4697 9.46967C13.1768 9.76256 13.1768 10.2374 13.4697 10.5303C13.7626 10.8232 14.2374 10.8232 14.5303 10.5303L17.25 7.81066V10C17.25 10.4142 17.5858 10.75 18 10.75C18.4142 10.75 18.75 10.4142 18.75 10V6C18.75 5.58579 18.4142 5.25 18 5.25H14C13.5858 5.25 13.25 5.58579 13.25 6ZM6.75 14C6.75 13.5858 6.41421 13.25 6 13.25C5.58579 13.25 5.25 13.5858 5.25 14V18C5.25 18.4142 5.58579 18.75 6 18.75H10C10.4142 18.75 10.75 18.4142 10.75 18C10.75 17.5858 10.4142 17.25 10 17.25H7.81066L10.5303 14.5303C10.8232 14.2374 10.8232 13.7626 10.5303 13.4697C10.2374 13.1768 9.76256 13.1768 9.46967 13.4697L6.75 16.1893V14Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.96644 1.25H10H14H14.0336C15.4053 1.25 16.4807 1.24999 17.3451 1.32061C18.2252 1.39252 18.9523 1.54138 19.6104 1.87671C20.6924 2.42798 21.572 3.30762 22.1233 4.38955C22.4586 5.04769 22.6075 5.77479 22.6794 6.65494C22.75 7.51926 22.75 8.59466 22.75 9.96632V9.96637V9.96642V10V14V14.0336V14.0336V14.0337C22.75 15.4053 22.75 16.4807 22.6794 17.3451C22.6075 18.2252 22.4586 18.9523 22.1233 19.6104C21.572 20.6924 20.6924 21.572 19.6104 22.1233C18.9523 22.4586 18.2252 22.6075 17.3451 22.6794C16.4807 22.75 15.4053 22.75 14.0337 22.75H14.0336H14.0336H14H10H9.96642H9.96637H9.96632C8.59466 22.75 7.51926 22.75 6.65494 22.6794C5.77479 22.6075 5.04769 22.4586 4.38955 22.1233C3.30762 21.572 2.42798 20.6924 1.87671 19.6104C1.54138 18.9523 1.39252 18.2252 1.32061 17.3451C1.24999 16.4807 1.25 15.4053 1.25 14.0336V14V10V9.96644C1.25 8.59472 1.24999 7.51929 1.32061 6.65494C1.39252 5.77479 1.54138 5.04769 1.87671 4.38955C2.42798 3.30762 3.30762 2.42798 4.38955 1.87671C5.04769 1.54138 5.77479 1.39252 6.65494 1.32061C7.51929 1.24999 8.59472 1.25 9.96644 1.25ZM6.77708 2.81563C5.9897 2.87996 5.48197 3.00359 5.07054 3.21322C4.27085 3.62068 3.62068 4.27085 3.21322 5.07054C3.00359 5.48197 2.87996 5.9897 2.81563 6.77708C2.75058 7.57322 2.75 8.58749 2.75 10V14C2.75 15.4125 2.75058 16.4268 2.81563 17.2229C2.87996 18.0103 3.00359 18.518 3.21322 18.9295C3.62068 19.7291 4.27085 20.3793 5.07054 20.7868C5.48197 20.9964 5.9897 21.12 6.77708 21.1844C7.57322 21.2494 8.58749 21.25 10 21.25H14C15.4125 21.25 16.4268 21.2494 17.2229 21.1844C18.0103 21.12 18.518 20.9964 18.9295 20.7868C19.7291 20.3793 20.3793 19.7291 20.7868 18.9295C20.9964 18.518 21.12 18.0103 21.1844 17.2229C21.2494 16.4268 21.25 15.4125 21.25 14V10C21.25 8.58749 21.2494 7.57322 21.1844 6.77708C21.12 5.9897 20.9964 5.48197 20.7868 5.07054C20.3793 4.27085 19.7291 3.62068 18.9295 3.21322C18.518 3.00359 18.0103 2.87996 17.2229 2.81563C16.4268 2.75058 15.4125 2.75 14 2.75H10C8.58749 2.75 7.57322 2.75058 6.77708 2.81563ZM9.46967 16.4697C9.17678 16.7626 9.17678 17.2374 9.46967 17.5303L11.4697 19.5303C11.6103 19.671 11.8011 19.75 12 19.75C12.1989 19.75 12.3897 19.671 12.5303 19.5303L14.5303 17.5303C14.8232 17.2374 14.8232 16.7626 14.5303 16.4697C14.2374 16.1768 13.7626 16.1768 13.4697 16.4697L12.75 17.1893V12.75H17.1893L16.4697 13.4697C16.1768 13.7626 16.1768 14.2374 16.4697 14.5303C16.7626 14.8232 17.2374 14.8232 17.5303 14.5303L19.5303 12.5303C19.671 12.3897 19.75 12.1989 19.75 12C19.75 11.8011 19.671 11.6103 19.5303 11.4697L17.5303 9.46967C17.2374 9.17678 16.7626 9.17678 16.4697 9.46967C16.1768 9.76256 16.1768 10.2374 16.4697 10.5303L17.1893 11.25H12.75V6.81066L13.4697 7.53033C13.7626 7.82322 14.2374 7.82322 14.5303 7.53033C14.8232 7.23744 14.8232 6.76256 14.5303 6.46967L12.5303 4.46967C12.3897 4.32902 12.1989 4.25 12 4.25C11.8011 4.25 11.6103 4.32902 11.4697 4.46967L9.46967 6.46967C9.17678 6.76256 9.17678 7.23744 9.46967 7.53033C9.76256 7.82322 10.2374 7.82322 10.5303 7.53033L11.25 6.81066V11.25H6.81066L7.53033 10.5303C7.82322 10.2374 7.82322 9.76256 7.53033 9.46967C7.23744 9.17678 6.76256 9.17678 6.46967 9.46967L4.46967 11.4697C4.32902 11.6103 4.25 11.8011 4.25 12C4.25 12.1989 4.32902 12.3897 4.46967 12.5303L6.46967 14.5303C6.76256 14.8232 7.23744 14.8232 7.53033 14.5303C7.82322 14.2374 7.82322 13.7626 7.53033 13.4697L6.81066 12.75H11.25V17.1893L10.5303 16.4697C10.2374 16.1768 9.76256 16.1768 9.46967 16.4697Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.96644 1.25H10H14H14.0336C15.4053 1.25 16.4807 1.24999 17.3451 1.32061C18.2252 1.39252 18.9523 1.54138 19.6104 1.87671C20.6924 2.42798 21.572 3.30762 22.1233 4.38955C22.4586 5.04769 22.6075 5.77479 22.6794 6.65494C22.75 7.51924 22.75 8.59461 22.75 9.96623V9.96628V9.96632V9.96637V9.96642V10V14V14.0336V14.0336V14.0337V14.0337V14.0338C22.75 15.4054 22.75 16.4808 22.6794 17.3451C22.6075 18.2252 22.4586 18.9523 22.1233 19.6104C21.572 20.6924 20.6924 21.572 19.6104 22.1233C18.9523 22.4586 18.2252 22.6075 17.3451 22.6794C16.4808 22.75 15.4054 22.75 14.0338 22.75H14.0337H14.0337H14.0336H14.0336H14H10H9.96642H9.96637H9.96632H9.96627H9.96623C8.59461 22.75 7.51924 22.75 6.65494 22.6794C5.77479 22.6075 5.04769 22.4586 4.38955 22.1233C3.30762 21.572 2.42798 20.6924 1.87671 19.6104C1.54138 18.9523 1.39252 18.2252 1.32061 17.3451C1.24999 16.4807 1.25 15.4053 1.25 14.0336V14V10V9.96644C1.25 8.59472 1.24999 7.51929 1.32061 6.65494C1.39252 5.77479 1.54138 5.04769 1.87671 4.38955C2.42798 3.30762 3.30762 2.42798 4.38955 1.87671C5.04769 1.54138 5.77479 1.39252 6.65494 1.32061C7.51929 1.24999 8.59472 1.25 9.96644 1.25ZM6.77708 2.81563C5.9897 2.87996 5.48197 3.00359 5.07054 3.21322C4.27085 3.62068 3.62068 4.27085 3.21322 5.07054C3.00359 5.48197 2.87996 5.9897 2.81563 6.77708C2.75058 7.57322 2.75 8.58749 2.75 10V14C2.75 15.4125 2.75058 16.4268 2.81563 17.2229C2.87996 18.0103 3.00359 18.518 3.21322 18.9295C3.62068 19.7291 4.27085 20.3793 5.07054 20.7868C5.48197 20.9964 5.9897 21.12 6.77708 21.1844C7.57322 21.2494 8.58749 21.25 10 21.25H14C15.4125 21.25 16.4268 21.2494 17.2229 21.1844C18.0103 21.12 18.518 20.9964 18.9295 20.7868C19.7291 20.3793 20.3793 19.7291 20.7868 18.9295C20.9964 18.518 21.12 18.0103 21.1844 17.2229C21.2494 16.4268 21.25 15.4125 21.25 14V10C21.25 8.58749 21.2494 7.57322 21.1844 6.77708C21.12 5.9897 20.9964 5.48197 20.7868 5.07054C20.3793 4.27085 19.7291 3.62068 18.9295 3.21322C18.518 3.00359 18.0103 2.87996 17.2229 2.81563C16.4268 2.75058 15.4125 2.75 14 2.75H10C8.58749 2.75 7.57322 2.75058 6.77708 2.81563ZM16.4697 9.46967C16.7626 9.17678 17.2374 9.17678 17.5303 9.46967L19.5303 11.4697C19.8232 11.7626 19.8232 12.2374 19.5303 12.5303L17.5303 14.5303C17.2374 14.8232 16.7626 14.8232 16.4697 14.5303C16.1768 14.2374 16.1768 13.7626 16.4697 13.4697L17.1893 12.75H15C14.5858 12.75 14.25 12.4142 14.25 12C14.25 11.5858 14.5858 11.25 15 11.25H17.1893L16.4697 10.5303C16.1768 10.2374 16.1768 9.76256 16.4697 9.46967ZM6.46967 9.46967C6.76256 9.17678 7.23744 9.17678 7.53033 9.46967C7.82322 9.76256 7.82322 10.2374 7.53033 10.5303L6.81066 11.25H9C9.41421 11.25 9.75 11.5858 9.75 12C9.75 12.4142 9.41421 12.75 9 12.75H6.81066L7.53033 13.4697C7.82322 13.7626 7.82322 14.2374 7.53033 14.5303C7.23744 14.8232 6.76256 14.8232 6.46967 14.5303L4.46967 12.5303C4.17678 12.2374 4.17678 11.7626 4.46967 11.4697L6.46967 9.46967ZM9.46967 7.53033C9.17678 7.23744 9.17678 6.76256 9.46967 6.46967L11.4697 4.46967C11.7626 4.17678 12.2374 4.17678 12.5303 4.46967L14.5303 6.46967C14.8232 6.76256 14.8232 7.23744 14.5303 7.53033C14.2374 7.82322 13.7626 7.82322 13.4697 7.53033L12.75 6.81066V9C12.75 9.41421 12.4142 9.75 12 9.75C11.5858 9.75 11.25 9.41421 11.25 9V6.81066L10.5303 7.53033C10.2374 7.82322 9.76256 7.82322 9.46967 7.53033ZM9.46967 17.5303C9.17678 17.2374 9.17678 16.7626 9.46967 16.4697C9.76256 16.1768 10.2374 16.1768 10.5303 16.4697L11.25 17.1893V15C11.25 14.5858 11.5858 14.25 12 14.25C12.4142 14.25 12.75 14.5858 12.75 15V17.1893L13.4697 16.4697C13.7626 16.1768 14.2374 16.1768 14.5303 16.4697C14.8232 16.7626 14.8232 17.2374 14.5303 17.5303L12.5303 19.5303C12.3897 19.671 12.1989 19.75 12 19.75C11.8011 19.75 11.6103 19.671 11.4697 19.5303L9.46967 17.5303Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M3.71143 8.76275C3.90218 9.335 4.15199 9.93007 4.45818 10.5379C5.23418 9.4098 6.16339 8.29058 7.22697 7.22701C8.29056 6.16341 9.40979 5.23419 10.5379 4.45819C9.93007 4.15199 9.335 3.90219 8.76275 3.71144C6.54402 2.97186 4.90745 3.18249 4.04497 4.04497C3.18249 4.90745 2.97186 6.54402 3.71143 8.76275ZM2.28841 9.23709C2.5868 10.1323 3.00777 11.0622 3.54045 12C3.00778 12.9377 2.58682 13.8676 2.28843 14.7628C1.49247 17.1507 1.50366 19.5349 2.98433 21.0156C4.46499 22.4963 6.84925 22.5074 9.23711 21.7115C10.1323 21.4131 11.0622 20.9921 12 20.4595C12.9377 20.9921 13.8676 21.4131 14.7628 21.7114C17.1506 22.5074 19.5349 22.4962 21.0155 21.0155C22.4962 19.5349 22.5074 17.1506 21.7114 14.7628C21.4131 13.8676 20.9921 12.9377 20.4594 12C20.9921 11.0622 21.4131 10.1323 21.7115 9.23715C22.5074 6.84928 22.4962 4.46503 21.0156 2.98436C19.5349 1.5037 17.1506 1.49251 14.7628 2.28846C13.8676 2.58685 12.9377 3.0078 12 3.54046C11.0622 3.00778 10.1323 2.5868 9.23709 2.28841C6.84923 1.49246 4.46497 1.50365 2.98431 2.98431C1.50365 4.46498 1.49245 6.84923 2.28841 9.23709ZM8.76277 20.2885C9.33501 20.0977 9.93008 19.8479 10.5379 19.5417C9.40978 18.7657 8.29055 17.8365 7.22695 16.7729C6.16338 15.7093 5.23417 14.5901 4.45819 13.462C4.152 14.0699 3.9022 14.6649 3.71145 15.2371C2.97187 17.4559 3.18251 19.0924 4.04499 19.9549C4.90747 20.8174 6.54403 21.028 8.76277 20.2885ZM8.28761 15.7122C9.49043 16.9151 10.7548 17.9215 12 18.7101C13.2451 17.9215 14.5095 16.9151 15.7123 15.7123C16.9151 14.5095 17.9215 13.2451 18.7101 12C17.9215 10.7548 16.915 9.49043 15.7122 8.28761C14.5094 7.08483 13.2451 6.07844 12 5.28979C10.7548 6.07844 9.49044 7.08485 8.28763 8.28767C7.08483 9.49046 6.07843 10.7548 5.28979 12C6.07843 13.2451 7.08482 14.5094 8.28761 15.7122ZM15.2371 20.2884C14.6649 20.0977 14.0698 19.8479 13.462 19.5417C14.5901 18.7657 15.7093 17.8365 16.7729 16.7729C17.8365 15.7094 18.7657 14.5901 19.5417 13.462C19.8479 14.0698 20.0977 14.6649 20.2884 15.2371C21.028 17.4558 20.8174 19.0924 19.9549 19.9549C19.0924 20.8174 17.4558 21.028 15.2371 20.2884ZM20.2884 8.7628C20.0977 9.33503 19.8479 9.93008 19.5417 10.5379C18.7657 9.40977 17.8365 8.29054 16.7729 7.22695C15.7093 6.16339 14.5901 5.23418 13.462 4.4582C14.0698 4.15202 14.6649 3.90223 15.2371 3.71149C17.4558 2.97191 19.0924 3.18254 19.9549 4.04502C20.8174 4.90751 21.028 6.54407 20.2884 8.7628ZM11.9999 13C12.5522 13 12.9999 12.5522 12.9999 12C12.9999 11.4477 12.5522 11 11.9999 11C11.4476 11 10.9999 11.4477 10.9999 12C10.9999 12.5522 11.4476 13 11.9999 13Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M16.0498 4.25001C16.5975 4.25001 17.0537 4.24898 17.4248 4.2793C17.8045 4.31034 18.1609 4.3781 18.4981 4.54981C19.0155 4.81346 19.4365 5.23452 19.7002 5.75196C19.8719 6.0891 19.9397 6.44547 19.9707 6.8252C20.001 7.19633 20 7.65253 20 8.2002L20 8.29591C20.1658 8.23694 20.3521 8.23326 20.5283 8.30372L21.1719 8.56055C22.5781 9.1231 23.5 10.4855 23.5 12C23.5 13.5146 22.5781 14.8769 21.1719 15.4395L20.5283 15.6963C20.3521 15.7668 20.1658 15.7631 20 15.7041L20 15.7998C20 16.3475 20.001 16.8037 19.9707 17.1748C19.9397 17.5545 19.8719 17.9109 19.7002 18.2481C19.4365 18.7655 19.0155 19.1866 18.498 19.4502C18.1609 19.6219 17.8045 19.6897 17.4248 19.7207C17.0537 19.751 16.5975 19.75 16.0498 19.75L4.4502 19.75C3.90252 19.75 3.44633 19.751 3.0752 19.7207C2.69547 19.6897 2.3391 19.6219 2.00195 19.4502C1.48451 19.1865 1.06346 18.7655 0.799806 18.2481C0.628095 17.9109 0.560331 17.5545 0.529299 17.1748C0.498977 16.8037 0.500002 16.3475 0.500002 15.7998L0.500003 8.2002C0.500003 7.65252 0.498978 7.19633 0.529301 6.8252C0.560333 6.44547 0.628096 6.0891 0.799809 5.75196C1.06346 5.23451 1.48451 4.81346 2.00196 4.54981C2.3391 4.3781 2.69547 4.31033 3.0752 4.2793C3.44633 4.24898 3.90252 4.25 4.4502 4.25L16.0498 4.25001ZM4.4502 5.75C3.87777 5.75 3.49315 5.75024 3.19727 5.77442C2.91027 5.79788 2.77316 5.84059 2.68262 5.88672C2.44751 6.00655 2.25655 6.19751 2.13672 6.43262C2.09059 6.52316 2.04788 6.66027 2.02442 6.94727C2.00024 7.24315 2 7.62777 2 8.2002L2 15.7998C2 16.3722 2.00024 16.7569 2.02442 17.0527C2.04788 17.3397 2.09059 17.4768 2.13672 17.5674C2.25655 17.8025 2.4475 17.9935 2.68262 18.1133C2.77316 18.1594 2.91027 18.2021 3.19727 18.2256C3.49315 18.2498 3.87777 18.25 4.4502 18.25L16.0498 18.25C16.6222 18.25 17.0069 18.2498 17.3027 18.2256C17.5897 18.2021 17.7268 18.1594 17.8174 18.1133C18.0525 17.9935 18.2435 17.8025 18.3633 17.5674C18.4094 17.4768 18.4521 17.3397 18.4756 17.0527C18.4998 16.7569 18.5 16.3722 18.5 15.7998L18.5 8.2002C18.5 7.62777 18.4998 7.24315 18.4756 6.94727C18.4521 6.66027 18.4094 6.52317 18.3633 6.43262C18.2435 6.19751 18.0525 6.00655 17.8174 5.88673C17.7268 5.84059 17.5897 5.79788 17.3027 5.77442C17.0069 5.75025 16.6222 5.75001 16.0498 5.75001L4.4502 5.75ZM5.0625 7.59766C5.47672 7.59766 5.8125 7.93345 5.8125 8.34766L5.8125 15.6533C5.81224 16.0673 5.47655 16.4033 5.0625 16.4033C4.64845 16.4033 4.31277 16.0673 4.3125 15.6533L4.3125 8.34766C4.3125 7.93345 4.64829 7.59766 5.0625 7.59766ZM9.0625 7.59766C9.47672 7.59766 9.8125 7.93345 9.8125 8.34766L9.8125 15.6533C9.81224 16.0673 9.47655 16.4033 9.0625 16.4033C8.64845 16.4033 8.31277 16.0673 8.3125 15.6533L8.3125 8.34766C8.3125 7.93345 8.64829 7.59766 9.0625 7.59766ZM13.0625 7.59669C13.4766 7.59669 13.8122 7.9327 13.8125 8.34669L13.8125 15.6524C13.8125 16.0666 13.4767 16.4024 13.0625 16.4024C12.6483 16.4023 12.3125 16.0666 12.3125 15.6523L12.3125 8.34669C12.3128 7.9327 12.6485 7.59669 13.0625 7.59669ZM20 14.292L20.6143 14.0469C21.4511 13.7122 22 12.9013 22 12C22 11.0988 21.451 10.2879 20.6143 9.95313L20 9.70704L20 14.292Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" d="M19 1.25C21.0711 1.25 22.75 2.92893 22.75 5C22.75 6.8317 21.4365 8.35556 19.7002 8.68359C19.3687 10.983 17.3912 12.75 15 12.75H5.75V15.3242C7.46176 15.6716 8.75 17.1857 8.75 19C8.75 21.0711 7.07107 22.75 5 22.75C2.92893 22.75 1.25 21.0711 1.25 19C1.25 17.1857 2.53824 15.6716 4.25 15.3242V8.6748C2.53834 8.32734 1.25 6.81421 1.25 5C1.25 2.92893 2.92893 1.25 5 1.25C7.07107 1.25 8.75 2.92893 8.75 5C8.75 6.81421 7.46166 8.32734 5.75 8.6748V11.25H15C16.569 11.25 17.8769 10.1379 18.1816 8.65918C16.5043 8.28569 15.25 6.78989 15.25 5C15.25 2.92893 16.9289 1.25 19 1.25ZM5 16.75C3.75736 16.75 2.75 17.7574 2.75 19C2.75 20.2426 3.75736 21.25 5 21.25C6.24264 21.25 7.25 20.2426 7.25 19C7.25 17.7574 6.24264 16.75 5 16.75ZM5 2.75C3.75736 2.75 2.75 3.75736 2.75 5C2.75 6.24264 3.75736 7.25 5 7.25C6.24264 7.25 7.25 6.24264 7.25 5C7.25 3.75736 6.24264 2.75 5 2.75ZM19 2.75C17.7574 2.75 16.75 3.75736 16.75 5C16.75 6.24264 17.7574 7.25 19 7.25C20.2426 7.25 21.25 6.24264 21.25 5C21.25 3.75736 20.2426 2.75 19 2.75Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M7.30888 5.25H5L4.97475 5.25C4.53029 5.24999 4.15925 5.24999 3.85464 5.27077C3.53754 5.29241 3.23801 5.33905 2.94762 5.45933C2.27379 5.73844 1.73844 6.27379 1.45933 6.94762C1.33905 7.23801 1.29241 7.53754 1.27077 7.85464C1.24999 8.15925 1.24999 8.53028 1.25 8.97474V8.97475V9V9.02525V9.02526C1.24999 9.46972 1.24999 9.84075 1.27077 10.1454C1.29241 10.4625 1.33905 10.762 1.45933 11.0524C1.63307 11.4718 1.90609 11.8376 2.25 12.1213V15.6L2.25 15.633C2.24999 16.7251 2.24999 17.5906 2.30699 18.2883C2.36527 19.0017 2.48688 19.6053 2.76772 20.1565C3.22312 21.0502 3.94978 21.7769 4.84355 22.2323C5.39472 22.5131 5.99835 22.6347 6.71173 22.693C7.40934 22.75 8.27481 22.75 9.36691 22.75H9.36698H9.4H14.6H14.633H14.6331C15.7252 22.75 16.5907 22.75 17.2883 22.693C18.0017 22.6347 18.6053 22.5131 19.1565 22.2323C20.0502 21.7769 20.7769 21.0502 21.2323 20.1565C21.5131 19.6053 21.6347 19.0017 21.693 18.2883C21.75 17.5906 21.75 16.7252 21.75 15.633V15.6V12.1213C22.0939 11.8376 22.3669 11.4718 22.5407 11.0524C22.661 10.762 22.7076 10.4625 22.7292 10.1454C22.75 9.84075 22.75 9.46972 22.75 9.02526V9V8.97474C22.75 8.53028 22.75 8.15925 22.7292 7.85464C22.7076 7.53754 22.661 7.23801 22.5407 6.94762C22.2616 6.27379 21.7262 5.73844 21.0524 5.45933C20.762 5.33905 20.4625 5.29241 20.1454 5.27077C19.8408 5.24999 19.4697 5.24999 19.0253 5.25L19 5.25H16.6911C16.3315 2.98301 14.3682 1.25 12 1.25C9.63185 1.25 7.66846 2.98301 7.30888 5.25ZM8.83697 5.25H15.163C14.8245 3.81665 13.5368 2.75 12 2.75C10.4632 2.75 9.17555 3.81665 8.83697 5.25ZM16 6.75H8H5C4.5238 6.75 4.20421 6.75041 3.95674 6.76729C3.71602 6.78372 3.5988 6.81319 3.52165 6.84515C3.21536 6.97202 2.97202 7.21536 2.84515 7.52165C2.81319 7.5988 2.78372 7.71601 2.76729 7.95674C2.75041 8.20421 2.75 8.5238 2.75 9C2.75 9.4762 2.75041 9.79579 2.76729 10.0433C2.78372 10.284 2.81319 10.4012 2.84515 10.4784C2.97202 10.7846 3.21536 11.028 3.52165 11.1549C3.5988 11.1868 3.71602 11.2163 3.95674 11.2327C4.20421 11.2496 4.5238 11.25 5 11.25H7.25V10.5C7.25 10.0858 7.58579 9.75 8 9.75C8.41421 9.75 8.75 10.0858 8.75 10.5V11.25H15.25V10.5C15.25 10.0858 15.5858 9.75 16 9.75C16.4142 9.75 16.75 10.0858 16.75 10.5V11.25H19C19.4762 11.25 19.7958 11.2496 20.0433 11.2327C20.284 11.2163 20.4012 11.1868 20.4784 11.1549C20.7846 11.028 21.028 10.7846 21.1549 10.4784C21.1868 10.4012 21.2163 10.284 21.2327 10.0433C21.2496 9.79579 21.25 9.4762 21.25 9C21.25 8.5238 21.2496 8.20421 21.2327 7.95674C21.2163 7.71601 21.1868 7.5988 21.1549 7.52165C21.028 7.21536 20.7846 6.97202 20.4784 6.84515C20.4012 6.81319 20.284 6.78372 20.0433 6.76729C19.7958 6.75041 19.4762 6.75 19 6.75H16ZM15.25 12.75V13.5C15.25 13.9142 15.5858 14.25 16 14.25C16.4142 14.25 16.75 13.9142 16.75 13.5V12.75H19H19.0253C19.4697 12.75 19.8408 12.75 20.1454 12.7292C20.1805 12.7268 20.2153 12.7241 20.25 12.7211V15.6C20.25 16.7325 20.2494 17.5367 20.198 18.1661C20.1473 18.7867 20.0509 19.171 19.8958 19.4755C19.5842 20.087 19.087 20.5842 18.4755 20.8958C18.171 21.0509 17.7867 21.1473 17.1661 21.198C16.5367 21.2494 15.7325 21.25 14.6 21.25H9.4C8.26752 21.25 7.46327 21.2494 6.83388 21.198C6.21325 21.1473 5.829 21.0509 5.52453 20.8958C4.913 20.5842 4.41582 20.087 4.10423 19.4755C3.94909 19.171 3.85271 18.7867 3.80201 18.1661C3.75058 17.5367 3.75 16.7325 3.75 15.6V12.7211C3.78467 12.7241 3.81955 12.7268 3.85464 12.7292C4.15925 12.75 4.53028 12.75 4.97474 12.75H5H7.25V13.5C7.25 13.9142 7.58579 14.25 8 14.25C8.41421 14.25 8.75 13.9142 8.75 13.5V12.75H15.25Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" d="M11.4937 0.578857C12.1252 0.0882482 13.0095 0.0883131 13.6411 0.578857C13.7368 0.653231 13.8292 0.74738 13.9175 0.835693L15.0103 1.92847C15.0985 2.01667 15.1928 2.10927 15.2671 2.20483C15.7576 2.83644 15.7577 3.72074 15.2671 4.35229C15.1927 4.448 15.0986 4.54034 15.0103 4.62866C14.9219 4.71701 14.8296 4.81112 14.7339 4.8855C14.5451 5.03212 14.3331 5.13309 14.1128 5.19214C14.1675 5.74254 14.0576 6.30527 13.7798 6.80347C13.5805 7.16068 13.2517 7.47999 12.8247 7.90698C12.3979 8.33376 12.0792 8.66279 11.7222 8.86206C10.8896 9.32636 9.87505 9.32636 9.04248 8.86206C8.83415 8.74583 8.64053 8.58371 8.4292 8.3855C8.27157 8.52117 8.08358 8.68617 7.87646 8.87671C7.25344 9.44988 6.46526 10.2384 5.78271 11.116C5.09162 12.0046 4.55332 12.9267 4.35889 13.7693C4.17444 14.5688 4.29979 15.2607 4.90088 15.8621C5.11986 16.081 5.36729 16.1577 5.72412 16.1042C6.12409 16.0441 6.63864 15.8183 7.26709 15.4041C8.52232 14.5766 9.9618 13.1895 11.4624 11.7234C12.9284 10.291 14.4571 8.77846 15.812 7.82593C16.487 7.35147 17.1886 6.96442 17.8726 6.82397C18.6002 6.67471 19.3397 6.80386 19.9282 7.39233C20.9059 8.37012 21.0584 9.57899 20.7993 10.7224C20.5481 11.8308 19.9059 12.9287 19.2163 13.866C18.5189 14.8138 17.729 15.655 17.1196 16.2556C16.95 16.4228 16.7927 16.572 16.6548 16.7009C16.8202 16.8831 16.9562 17.0555 17.0581 17.238C17.5224 18.0706 17.5224 19.0852 17.0581 19.9177C16.8588 20.275 16.5292 20.5941 16.1021 21.0212C15.6752 21.4481 15.3566 21.7771 14.9995 21.9763C14.5014 22.254 13.9385 22.3639 13.3882 22.3093C13.3291 22.5294 13.228 22.7409 13.0815 22.9294C13.0072 23.0251 12.913 23.1175 12.8247 23.2058C12.7364 23.2941 12.644 23.3883 12.5483 23.4626C11.9168 23.9532 11.0325 23.9541 10.4009 23.4636C10.3052 23.3892 10.2128 23.2941 10.1245 23.2058L9.03174 22.114C8.94343 22.0257 8.84928 21.9333 8.7749 21.8376C8.28435 21.2061 8.28453 20.3218 8.7749 19.6902C8.84922 19.5946 8.94348 19.5021 9.03174 19.4138C9.12002 19.3255 9.21245 19.2313 9.30811 19.157C9.49665 19.0105 9.70808 18.9084 9.92822 18.8494C9.87371 18.2992 9.98449 17.736 10.2622 17.238C10.4117 16.9702 10.6336 16.7237 10.9155 16.4373L11.519 15.8337C11.8057 15.5516 12.0528 15.3289 12.3208 15.1794C13.1532 14.7155 14.1672 14.7154 14.9995 15.1794C15.2017 15.2922 15.3902 15.4484 15.5942 15.6384C15.7316 15.5107 15.8923 15.3593 16.0669 15.1873C16.644 14.6183 17.3743 13.8379 18.0083 12.9763C18.6502 12.1039 19.1522 11.2036 19.3364 10.3914C19.5125 9.61425 19.3919 8.97847 18.8677 8.45386C18.705 8.29118 18.5125 8.22434 18.1743 8.2937C17.7925 8.37212 17.2923 8.61812 16.6743 9.05249C15.4425 9.91844 14.0161 11.3263 12.5112 12.7966C11.0409 14.2332 9.49215 15.7333 8.09229 16.656C7.39371 17.1165 6.66384 17.481 5.94678 17.5886C5.18632 17.7027 4.44097 17.5232 3.84033 16.9226C2.80302 15.885 2.62165 14.6302 2.89795 13.4324C3.16451 12.2773 3.85602 11.1495 4.59912 10.1941C5.35074 9.22782 6.20236 8.37711 6.85986 7.77222C7.04553 7.60141 7.21728 7.44973 7.36768 7.31909C7.21113 7.14494 7.08172 6.97884 6.98389 6.80347C6.51978 5.97102 6.51976 4.95719 6.98389 4.12476C7.13342 3.8567 7.35593 3.60977 7.63818 3.323L8.2417 2.71948C8.52816 2.43756 8.77459 2.21561 9.04248 2.06616C9.54028 1.78856 10.1028 1.67782 10.6528 1.73218C10.7118 1.51198 10.814 1.30066 10.9604 1.11206C11.0348 1.01635 11.129 0.924023 11.2173 0.835693C11.3056 0.747368 11.3979 0.653244 11.4937 0.578857ZM10.5356 20.3406C10.4456 20.2707 10.3192 20.2709 10.229 20.3406C10.2323 20.338 10.2272 20.3424 10.2046 20.364C10.1796 20.3879 10.1465 20.4201 10.0923 20.4744C10.0381 20.5285 10.0058 20.5617 9.98193 20.5867C9.95964 20.61 9.95623 20.6143 9.95947 20.6101C9.88947 20.7003 9.88949 20.8265 9.95947 20.9167C9.96188 20.9194 9.96876 20.9264 9.98193 20.9402C10.0058 20.9651 10.0381 20.9983 10.0923 21.0525L11.1851 22.1453C11.2395 22.1997 11.2724 22.2326 11.2974 22.2566C11.3108 22.2694 11.3178 22.2764 11.3208 22.2791C11.4109 22.349 11.5372 22.3488 11.6274 22.2791C11.6302 22.2767 11.6382 22.2706 11.6519 22.2576L11.8745 22.0339C11.8878 22.02 11.8946 22.0123 11.897 22.0095C11.9669 21.9193 11.9669 21.793 11.897 21.7029C11.8944 21.6999 11.8873 21.6928 11.8745 21.6794C11.8506 21.6545 11.8184 21.6213 11.7642 21.5671L10.6714 20.4744C10.617 20.4199 10.5841 20.387 10.5591 20.363C10.5358 20.3407 10.5315 20.3373 10.5356 20.3406ZM14.2681 16.49C13.8898 16.2793 13.4295 16.2792 13.0513 16.49C12.9224 16.562 12.7767 16.6971 12.2778 17.196C11.7786 17.6953 11.6437 17.8405 11.5718 17.9695C11.361 18.3477 11.361 18.808 11.5718 19.1863C11.6427 19.3134 11.7745 19.4561 12.2563 19.9382L12.3003 19.9812C12.7815 20.4621 12.9243 20.5948 13.0513 20.6658C13.4295 20.8765 13.8898 20.8765 14.2681 20.6658C14.397 20.5939 14.5424 20.4597 15.0415 19.9607C15.5411 19.4611 15.6766 19.3153 15.7485 19.1863C15.9592 18.8081 15.9592 18.3477 15.7485 17.9695C15.6766 17.8405 15.5411 17.6946 15.0415 17.1951C14.5425 16.6961 14.397 16.5619 14.2681 16.49ZM10.9907 3.37573C10.6126 3.165 10.1521 3.16509 9.77393 3.37573C9.64494 3.44766 9.49975 3.58253 9.00049 4.08179C8.50092 4.58136 8.3654 4.72719 8.29346 4.8562C8.08307 5.23417 8.08308 5.69404 8.29346 6.07202C8.36537 6.20098 8.50045 6.34639 8.99951 6.84546C9.49908 7.34503 9.64491 7.48054 9.77393 7.55249C10.1521 7.76314 10.6125 7.76322 10.9907 7.55249C11.1197 7.48052 11.2648 7.34485 11.7642 6.84546C12.2634 6.34619 12.3983 6.201 12.4702 6.07202C12.6807 5.69393 12.6808 5.23428 12.4702 4.8562C12.3993 4.72912 12.2671 4.58599 11.7856 4.10425L11.7231 4.04175C11.2564 3.57557 11.1161 3.4457 10.9907 3.37573ZM12.7212 1.76343C12.631 1.69344 12.5047 1.69349 12.4146 1.76343C12.4119 1.76579 12.4047 1.77193 12.3911 1.78491C12.3661 1.80887 12.3324 1.84171 12.2778 1.89624C12.2236 1.95052 12.1914 1.98357 12.1675 2.00854C12.1536 2.02304 12.1472 2.03051 12.145 2.03296C12.0753 2.12307 12.0753 2.24855 12.145 2.33862C12.1473 2.3412 12.1531 2.34902 12.1665 2.36304C12.1905 2.38805 12.2233 2.42085 12.2778 2.47534L12.522 2.71948C12.6175 2.81354 12.7179 2.91439 12.8247 3.02124L13.3706 3.56714C13.425 3.62149 13.4579 3.65453 13.4829 3.67847C13.4962 3.69116 13.5033 3.69826 13.5063 3.70093C13.5964 3.77091 13.7228 3.77069 13.813 3.70093C13.8157 3.69861 13.8242 3.69202 13.8384 3.67847L14.061 3.45581C14.0742 3.44206 14.0801 3.43413 14.0825 3.4314C14.1525 3.34118 14.1526 3.21493 14.0825 3.12476C14.0799 3.12173 14.0728 3.1146 14.0601 3.10132C14.0362 3.07637 14.0039 3.04319 13.9497 2.98901L12.8569 1.89624C12.8024 1.84174 12.7696 1.80886 12.7446 1.78491C12.7315 1.77232 12.7241 1.76608 12.7212 1.76343Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" d="M5.5 0.249512C5.72267 0.249512 5.92774 0.249575 6.09863 0.26123C6.27609 0.273363 6.47166 0.300241 6.66992 0.382324C7.09854 0.559878 7.43952 0.901035 7.61719 1.32959C7.69927 1.52774 7.72613 1.72349 7.73828 1.90088C7.74993 2.07166 7.75 2.27699 7.75 2.49951C7.75 2.72201 7.74991 2.92733 7.73828 3.09814C7.72615 3.27555 7.69921 3.47123 7.61719 3.66943C7.60584 3.69682 7.59078 3.72286 7.57812 3.74951C7.94452 4.00651 8.24525 4.34941 8.4502 4.75146C8.62184 5.08846 8.68965 5.44516 8.7207 5.82471C8.75102 6.19573 8.75 6.65224 8.75 7.19971V7.79932C8.75 8.34676 8.75099 8.80327 8.7207 9.17432C8.68968 9.55391 8.62177 9.91052 8.4502 10.2476C8.18657 10.765 7.76542 11.1861 7.24805 11.4497C6.9109 11.6214 6.55454 11.6892 6.1748 11.7202C5.89329 11.7432 5.56287 11.7465 5.18066 11.7476C5.15578 12.0509 5.12854 12.4468 5.10938 12.9067C5.06348 14.0082 5.06367 15.4638 5.24414 16.9077C5.42641 18.3655 5.78335 19.7391 6.40137 20.728C6.99612 21.6794 7.80872 22.2504 9 22.2505C9.48006 22.2505 9.83911 22.054 10.1523 21.6304C10.4914 21.1715 10.7624 20.456 10.9609 19.4897C11.3575 17.5591 11.4061 14.95 11.4375 12.2417C11.4684 9.58161 11.4823 6.82068 11.8467 4.73096C12.0284 3.68901 12.3107 2.72788 12.7832 2.01123C13.2803 1.25753 14.0114 0.750488 15 0.750488C16.6953 0.750507 17.8784 1.66016 18.6582 2.89697C19.4186 4.1033 19.8289 5.66038 20.0537 7.13721C20.2805 8.62749 20.3283 10.1089 20.3203 11.2095C20.3174 11.611 20.305 11.9641 20.293 12.2515C20.628 12.2532 20.9212 12.2591 21.1748 12.2798C21.5545 12.3108 21.9109 12.3786 22.248 12.5503C22.7654 12.814 23.1866 13.2351 23.4502 13.7524C23.6218 14.0895 23.6897 14.4461 23.7207 14.8257C23.751 15.1967 23.75 15.6532 23.75 16.2007V16.8003C23.75 17.3478 23.751 17.8043 23.7207 18.1753C23.6897 18.5548 23.6218 18.9115 23.4502 19.2485C23.2453 19.6504 22.9443 19.9925 22.5781 20.2495C22.5909 20.2764 22.6057 20.3029 22.6172 20.3306C22.6992 20.5288 22.7262 20.7245 22.7383 20.9019C22.7499 21.0727 22.75 21.278 22.75 21.5005C22.75 21.723 22.7499 21.9283 22.7383 22.0991C22.7261 22.2765 22.6993 22.4723 22.6172 22.6704C22.4395 23.099 22.0985 23.4401 21.6699 23.6177C21.4716 23.6998 21.2761 23.7266 21.0986 23.7388C20.9277 23.7504 20.7227 23.7505 20.5 23.7505H18.5C18.2773 23.7505 18.0723 23.7504 17.9014 23.7388C17.7239 23.7266 17.5284 23.6998 17.3301 23.6177C16.9015 23.4401 16.5605 23.099 16.3828 22.6704C16.3007 22.4723 16.2739 22.2765 16.2617 22.0991C16.2501 21.9283 16.25 21.723 16.25 21.5005C16.25 21.278 16.2501 21.0727 16.2617 20.9019C16.2738 20.7245 16.3008 20.5288 16.3828 20.3306C16.3942 20.303 16.4082 20.2763 16.4209 20.2495C16.055 19.9926 15.7545 19.6502 15.5498 19.2485C15.3782 18.9115 15.3103 18.5548 15.2793 18.1753C15.249 17.8043 15.25 17.3478 15.25 16.8003V16.2007C15.25 15.6532 15.249 15.1967 15.2793 14.8257C15.3103 14.4461 15.3782 14.0895 15.5498 13.7524C15.8134 13.2351 16.2346 12.814 16.752 12.5503C17.0891 12.3786 17.4455 12.3108 17.8252 12.2798C18.1 12.2573 18.4214 12.2527 18.792 12.2515C18.8045 11.9688 18.8173 11.6102 18.8203 11.1978C18.8279 10.1425 18.7819 8.74783 18.5713 7.36377C18.3586 5.96612 17.9873 4.64747 17.3887 3.69775C16.8091 2.77842 16.0546 2.25051 15 2.25049C14.6136 2.25049 14.3134 2.41544 14.0352 2.8374C13.7326 3.29652 13.4949 4.01563 13.3252 4.98877C12.9867 6.93017 12.969 9.54482 12.9375 12.2593C12.9065 14.9254 12.8621 17.6922 12.4307 19.7925C12.2152 20.841 11.8882 21.8063 11.3584 22.5229C10.8026 23.2746 10.0196 23.7505 9 23.7505C7.19173 23.7504 5.94132 22.821 5.12988 21.5229C4.34186 20.2621 3.94861 18.635 3.75586 17.0933C3.56145 15.5377 3.5625 13.9926 3.61035 12.8442C3.62801 12.4206 3.65331 12.0482 3.67676 11.7466C3.35435 11.7446 3.07107 11.7403 2.8252 11.7202C2.4455 11.6892 2.08907 11.6214 1.75195 11.4497C1.23462 11.186 0.813416 10.7649 0.549805 10.2476C0.378244 9.91054 0.310316 9.5539 0.279297 9.17432C0.249015 8.80327 0.25 8.34676 0.25 7.79932V7.19971C0.249999 6.65224 0.248983 6.19573 0.279297 5.82471C0.310346 5.44515 0.378164 5.08847 0.549805 4.75146C0.754612 4.34965 1.05483 4.00646 1.4209 3.74951C1.40831 3.723 1.3941 3.69668 1.38281 3.66943C1.3008 3.47125 1.27385 3.27554 1.26172 3.09814C1.25009 2.92733 1.25 2.72201 1.25 2.49951C1.25 2.27699 1.25007 2.07166 1.26172 1.90088C1.27387 1.72348 1.30073 1.52775 1.38281 1.32959C1.56047 0.901017 1.90145 0.559883 2.33008 0.382324C2.52836 0.300215 2.72389 0.273365 2.90137 0.26123C3.07226 0.249571 3.27731 0.249512 3.5 0.249512H5.5ZM18.0039 20.7583C17.9442 20.7624 17.915 20.7668 17.9043 20.769C17.8431 20.7944 17.7939 20.8436 17.7686 20.9048C17.7747 20.8901 17.7647 20.9031 17.7578 21.0044C17.7505 21.1123 17.75 21.2576 17.75 21.5005C17.75 21.7434 17.7504 21.8886 17.7578 21.9966C17.7647 22.0964 17.7743 22.1102 17.7686 22.0962C17.794 22.1573 17.8432 22.2066 17.9043 22.2319C17.8896 22.2258 17.9026 22.2358 18.0039 22.2427C18.1119 22.25 18.2568 22.2505 18.5 22.2505H20.5C20.7432 22.2505 20.8881 22.25 20.9961 22.2427C21.0974 22.2358 21.1104 22.2258 21.0957 22.2319C21.1568 22.2066 21.206 22.1573 21.2314 22.0962C21.2257 22.1102 21.2353 22.0964 21.2422 21.9966C21.2496 21.8886 21.25 21.7434 21.25 21.5005C21.25 21.2576 21.2495 21.1123 21.2422 21.0044C21.2353 20.9031 21.2253 20.8901 21.2314 20.9048C21.2061 20.8436 21.1569 20.7944 21.0957 20.769C21.085 20.7668 21.0558 20.7624 20.9961 20.7583C20.8881 20.7509 20.7432 20.7505 20.5 20.7505H18.5C18.2568 20.7505 18.1119 20.7509 18.0039 20.7583ZM19.2002 13.7505C18.6278 13.7505 18.2431 13.7507 17.9473 13.7749C17.6603 13.7984 17.5232 13.8411 17.4326 13.8872C17.1976 14.007 17.0065 14.1981 16.8867 14.4331C16.8407 14.5237 16.7978 14.6612 16.7744 14.9478C16.7503 15.2436 16.75 15.6286 16.75 16.2007V16.8003C16.75 17.3725 16.7502 17.7574 16.7744 18.0532C16.7979 18.3399 16.8406 18.4774 16.8867 18.5679C17.0066 18.8028 17.1976 18.994 17.4326 19.1138C17.5232 19.1599 17.6605 19.2026 17.9473 19.2261C18.2431 19.2502 18.6278 19.2505 19.2002 19.2505H19.7998C20.3722 19.2505 20.7569 19.2502 21.0527 19.2261C21.3395 19.2026 21.4768 19.1599 21.5674 19.1138C21.8024 18.994 21.9934 18.8028 22.1133 18.5679C22.1594 18.4774 22.2021 18.3399 22.2256 18.0532C22.2498 17.7574 22.25 17.3725 22.25 16.8003V16.2007C22.25 15.6286 22.2497 15.2436 22.2256 14.9478C22.2022 14.6612 22.1593 14.5237 22.1133 14.4331C21.9935 14.1981 21.8024 14.007 21.5674 13.8872C21.4768 13.8411 21.3397 13.7984 21.0527 13.7749C20.7569 13.7507 20.3722 13.7505 19.7998 13.7505H19.2002ZM4.2002 4.74951C3.6278 4.74951 3.24314 4.74975 2.94727 4.77393C2.66044 4.79737 2.52316 4.84013 2.43262 4.88623C2.19762 5.006 2.00656 5.19718 1.88672 5.43213C1.84061 5.52262 1.79788 5.6601 1.77441 5.94678C1.75025 6.24257 1.75 6.62754 1.75 7.19971V7.79932C1.75 8.37143 1.75028 8.75643 1.77441 9.05225C1.79784 9.33882 1.84066 9.47635 1.88672 9.56689C2.00651 9.80193 2.19761 9.99296 2.43262 10.1128C2.52315 10.1589 2.66033 10.2016 2.94727 10.2251C3.24314 10.2493 3.6278 10.2495 4.2002 10.2495H4.7998C5.37222 10.2495 5.75686 10.2493 6.05273 10.2251C6.33973 10.2016 6.47684 10.1589 6.56738 10.1128C6.80243 9.99296 6.99348 9.80196 7.11328 9.56689C7.15934 9.47635 7.20216 9.33886 7.22559 9.05225C7.24972 8.75643 7.25 8.37144 7.25 7.79932V7.19971C7.25 6.62754 7.24975 6.24257 7.22559 5.94678C7.20212 5.66011 7.15939 5.52262 7.11328 5.43213C6.99344 5.1972 6.80236 5.00599 6.56738 4.88623C6.47684 4.84014 6.33948 4.79737 6.05273 4.77393C5.75687 4.74976 5.37217 4.74951 4.7998 4.74951H4.2002ZM3.00391 1.75732C2.90266 1.76423 2.88957 1.77417 2.9043 1.76807C2.84317 1.79339 2.79397 1.84273 2.76855 1.90381C2.77431 1.88974 2.76466 1.9035 2.75781 2.00342C2.75045 2.11135 2.75 2.25657 2.75 2.49951C2.75 2.74238 2.75048 2.88765 2.75781 2.99561C2.76472 3.09688 2.77466 3.10995 2.76855 3.09521C2.7939 3.1564 2.84314 3.20556 2.9043 3.23096C2.91499 3.23322 2.9441 3.23762 3.00391 3.2417C3.1119 3.24907 3.2568 3.24951 3.5 3.24951H5.5C5.74321 3.24951 5.88809 3.24907 5.99609 3.2417C6.05577 3.23763 6.08492 3.23323 6.0957 3.23096C6.1569 3.20557 6.20609 3.15643 6.23145 3.09521C6.22534 3.10995 6.23528 3.09688 6.24219 2.99561C6.24953 2.88765 6.25 2.74238 6.25 2.49951C6.25 2.25657 6.24955 2.11135 6.24219 2.00342C6.23535 1.90359 6.22573 1.8898 6.23145 1.90381C6.20602 1.84275 6.15682 1.79338 6.0957 1.76807C6.11044 1.77417 6.09736 1.76423 5.99609 1.75732C5.8881 1.74996 5.74316 1.74951 5.5 1.74951H3.5C3.2568 1.74951 3.1119 1.74996 3.00391 1.75732Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M10 1.25H9.96644C8.59472 1.25 7.51929 1.24999 6.65494 1.32061C5.77479 1.39252 5.04769 1.54138 4.38955 1.87671C3.30762 2.42798 2.42798 3.30762 1.87671 4.38955C1.54138 5.04769 1.39252 5.77479 1.32061 6.65494C1.24999 7.51929 1.25 8.59472 1.25 9.96644V10V14C1.25 16.6234 3.37665 18.75 6 18.75H6.5C6.91421 18.75 7.25 18.4142 7.25 18C7.25 17.5858 6.91421 17.25 6.5 17.25H6C4.20507 17.25 2.75 15.7949 2.75 14V10C2.75 8.58749 2.75058 7.57322 2.81563 6.77708C2.87996 5.9897 3.00359 5.48197 3.21322 5.07054C3.62068 4.27085 4.27085 3.62068 5.07054 3.21322C5.48197 3.00359 5.9897 2.87996 6.77708 2.81563C7.57322 2.75058 8.58749 2.75 10 2.75H14C15.4125 2.75 16.4268 2.75058 17.2229 2.81563C18.0103 2.87996 18.518 3.00359 18.9295 3.21322C19.7291 3.62068 20.3793 4.27085 20.7868 5.07054C20.9964 5.48197 21.12 5.9897 21.1844 6.77708C21.2494 7.57322 21.25 8.58749 21.25 10V14C21.25 15.7949 19.7949 17.25 18 17.25H17.5C17.0858 17.25 16.75 17.5858 16.75 18C16.75 18.4142 17.0858 18.75 17.5 18.75H18C20.6234 18.75 22.75 16.6234 22.75 14V10V9.96642V9.96637C22.75 8.59469 22.75 7.51927 22.6794 6.65494C22.6075 5.77479 22.4586 5.04769 22.1233 4.38955C21.572 3.30762 20.6924 2.42798 19.6104 1.87671C18.9523 1.54138 18.2252 1.39252 17.3451 1.32061C16.4807 1.24999 15.4053 1.25 14.0336 1.25H14H10ZM11.7682 17.408C11.9189 17.3591 12.0811 17.3591 12.2318 17.408C12.2713 17.4209 12.3447 17.4543 12.5006 17.5866C12.6631 17.7246 12.861 17.9216 13.1667 18.2274L13.3726 18.4333C14.0257 19.0863 14.4788 19.5405 14.7791 19.8991C15.0952 20.2767 15.1245 20.4178 15.1264 20.4412C15.1452 20.6805 15.0483 20.9144 14.8658 21.0703C14.848 21.0855 14.7274 21.1645 14.2369 21.208C13.7711 21.2493 13.1295 21.25 12.2059 21.25H11.7941C10.8705 21.25 10.2289 21.2493 9.76309 21.208C9.27255 21.1645 9.15202 21.0855 9.13423 21.0703C8.95168 20.9144 8.8548 20.6805 8.87363 20.4412C8.87547 20.4178 8.90481 20.2767 9.22093 19.8991C9.52115 19.5405 9.97433 19.0863 10.6274 18.4333L10.8333 18.2274C11.139 17.9216 11.3369 17.7246 11.4994 17.5866C11.6553 17.4543 11.7287 17.4209 11.7682 17.408ZM12.6953 15.9814C12.2434 15.8346 11.7566 15.8346 11.3047 15.9814C11.0018 16.0799 10.7554 16.2506 10.5287 16.4431C10.3138 16.6255 10.0726 16.8667 9.79305 17.1463L9.77261 17.1667L9.56673 17.3726L9.53962 17.3997L9.5396 17.3997C8.92004 18.0193 8.41892 18.5204 8.07079 18.9362C7.73349 19.3391 7.41984 19.7951 7.37826 20.3235C7.32175 21.0415 7.61239 21.7432 8.16006 22.2109C8.56307 22.5551 9.1073 22.6558 9.63068 22.7021C10.1709 22.75 10.8795 22.75 11.7557 22.75H11.7558H11.7941H12.2059H12.2442H12.2443C13.1205 22.75 13.8291 22.75 14.3693 22.7021C14.8927 22.6558 15.4369 22.5551 15.8399 22.2109C16.3876 21.7432 16.6783 21.0415 16.6217 20.3235C16.5802 19.7951 16.2665 19.3391 15.9292 18.9362C15.5811 18.5204 15.0799 18.0193 14.4604 17.3997L14.4333 17.3726L14.2274 17.1667L14.2069 17.1463L14.2069 17.1462C13.9274 16.8667 13.6862 16.6255 13.4713 16.4431C13.2446 16.2506 12.9982 16.0799 12.6953 15.9814Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12ZM12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM17.0303 10.0303C17.3232 9.73744 17.3232 9.26256 17.0303 8.96967C16.7374 8.67678 16.2626 8.67678 15.9697 8.96967L11 13.9393L9.03033 11.9697C8.73744 11.6768 8.26256 11.6768 7.96967 11.9697C7.67678 12.2626 7.67678 12.7374 7.96967 13.0303L10.4697 15.5303C10.6103 15.671 10.8011 15.75 11 15.75C11.1989 15.75 11.3897 15.671 11.5303 15.5303L17.0303 10.0303Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C13.4781 2.75 14.8732 3.09614 16.1107 3.7111C16.4816 3.89544 16.9317 3.74417 17.1161 3.37324C17.3004 3.00231 17.1492 2.55217 16.7782 2.36783C15.338 1.6521 13.7149 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 11.5969 22.7278 11.1986 22.6844 10.8065C22.6389 10.3948 22.2683 10.0979 21.8566 10.1434C21.4449 10.1889 21.148 10.5596 21.1935 10.9713C21.2308 11.3088 21.25 11.652 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12ZM22.5303 4.53033C22.8232 4.23744 22.8232 3.76256 22.5303 3.46967C22.2374 3.17678 21.7626 3.17678 21.4697 3.46967L12 12.9393L9.53033 10.4697C9.23744 10.1768 8.76256 10.1768 8.46967 10.4697C8.17678 10.7626 8.17678 11.2374 8.46967 11.5303L11.4697 14.5303C11.7626 14.8232 12.2374 14.8232 12.5303 14.5303L22.5303 4.53033Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M11.6 1.25H11.5661H11.566C9.91462 1.25 8.62922 1.24999 7.59814 1.33424C6.55124 1.41977 5.70065 1.59588 4.93556 1.98571C3.66547 2.63285 2.63285 3.66547 1.98571 4.93556C1.59588 5.70065 1.41977 6.55124 1.33424 7.59814C1.24999 8.62922 1.25 9.91462 1.25 11.566V11.5661V11.6V12.4V12.4339V12.434C1.25 14.0854 1.24999 15.3708 1.33424 16.4019C1.41977 17.4488 1.59588 18.2994 1.98571 19.0644C2.63285 20.3345 3.66547 21.3671 4.93556 22.0143C5.70065 22.4041 6.55124 22.5802 7.59814 22.6658C8.62921 22.75 9.91458 22.75 11.566 22.75H11.566H11.6H12.4H12.434H12.434C14.0854 22.75 15.3708 22.75 16.4019 22.6658C17.4488 22.5802 18.2994 22.4041 19.0644 22.0143C20.3345 21.3671 21.3671 20.3345 22.0143 19.0644C22.4041 18.2994 22.5802 17.4488 22.6658 16.4019C22.75 15.3708 22.75 14.0854 22.75 12.434V12.434V12.4V10.8889C22.75 10.4747 22.4142 10.1389 22 10.1389C21.5858 10.1389 21.25 10.4747 21.25 10.8889V12.4C21.25 14.0925 21.2494 15.3168 21.1707 16.2797C21.0928 17.2338 20.9419 17.8651 20.6778 18.3835C20.1744 19.3713 19.3713 20.1744 18.3835 20.6778C17.8651 20.9419 17.2338 21.0928 16.2797 21.1707C15.3168 21.2494 14.0925 21.25 12.4 21.25H11.6C9.90747 21.25 8.68317 21.2494 7.72029 21.1707C6.76615 21.0928 6.13493 20.9419 5.61655 20.6778C4.6287 20.1744 3.82555 19.3713 3.32222 18.3835C3.05809 17.8651 2.90721 17.2338 2.82925 16.2797C2.75058 15.3168 2.75 14.0925 2.75 12.4V11.6C2.75 9.90747 2.75058 8.68317 2.82925 7.72029C2.90721 6.76615 3.05809 6.13493 3.32222 5.61655C3.82555 4.6287 4.6287 3.82555 5.61655 3.32222C6.13493 3.05809 6.76615 2.90721 7.72029 2.82925C8.68317 2.75058 9.90747 2.75 11.6 2.75H16.4444C16.8587 2.75 17.1944 2.41421 17.1944 2C17.1944 1.58579 16.8587 1.25 16.4444 1.25H11.6ZM22.5303 4.53033C22.8232 4.23744 22.8232 3.76256 22.5303 3.46967C22.2374 3.17678 21.7626 3.17678 21.4697 3.46967L12 12.9393L9.53033 10.4697C9.23744 10.1768 8.76256 10.1768 8.46967 10.4697C8.17678 10.7626 8.17678 11.2374 8.46967 11.5303L11.4697 14.5303C11.7626 14.8232 12.2374 14.8232 12.5303 14.5303L22.5303 4.53033Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M5.05 10.9333C5.05 6.94483 8.18257 3.75 12 3.75C15.2514 3.75 18.0035 6.06449 18.7508 9.21813C18.8072 9.45612 18.9761 9.65166 19.2033 9.74208C20.9764 10.4475 22.25 12.2298 22.25 14.3333C22.25 17.07 20.1024 19.25 17.5 19.25H5.4C3.40511 19.25 1.75 17.5774 1.75 15.4667C1.75 13.6888 2.92894 12.2152 4.49325 11.8008C4.82678 11.7125 5.05701 11.408 5.05111 11.063C5.05037 11.0199 5.05 10.9767 5.05 10.9333ZM12 2.25C7.4446 2.25 3.76319 5.9413 3.55893 10.5311C1.61442 11.2944 0.25 13.225 0.25 15.4667C0.25 18.3633 2.53479 20.75 5.4 20.75H17.5C20.9727 20.75 23.75 17.8559 23.75 14.3333C23.75 11.7563 22.268 9.52279 20.1145 8.50352C19.095 4.90344 15.8601 2.25 12 2.25ZM15.5303 11.5303C15.8232 11.2374 15.8232 10.7626 15.5303 10.4697C15.2374 10.1768 14.7626 10.1768 14.4697 10.4697L11 13.9393L10.0303 12.9697C9.73744 12.6768 9.26256 12.6768 8.96967 12.9697C8.67678 13.2626 8.67678 13.7374 8.96967 14.0303L10.4697 15.5303C10.6103 15.671 10.8011 15.75 11 15.75C11.1989 15.75 11.3897 15.671 11.5303 15.5303L15.5303 11.5303Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M5.05 9.7429C5.05 5.87689 8.16554 2.75 12 2.75C15.2644 2.75 18.0087 5.01629 18.7518 8.07704C18.8096 8.31542 18.9804 8.51044 19.2091 8.59923C20.9873 9.28969 22.25 11.0266 22.25 13.0613C22.25 14.6266 21.5035 16.015 20.348 16.8877C20.0174 17.1374 19.9519 17.6077 20.2015 17.9382C20.4512 18.2688 20.9215 18.3343 21.252 18.0847C22.7683 16.9394 23.75 15.1148 23.75 13.0613C23.75 10.5298 22.2594 8.34734 20.1107 7.35337C19.0843 3.82884 15.8445 1.25 12 1.25C7.46613 1.25 3.77223 4.83655 3.55966 9.33328C1.62275 10.0781 0.25 11.9625 0.25 14.1674C0.25 16.0816 1.28514 17.7538 2.82289 18.6483C3.18094 18.8566 3.64003 18.7352 3.8483 18.3771C4.05657 18.0191 3.93515 17.56 3.57711 17.3517C2.48454 16.7162 1.75 15.5286 1.75 14.1674C1.75 12.453 2.91601 11.0147 4.48893 10.6081C4.82471 10.5213 5.05718 10.2156 5.0511 9.86884C5.05037 9.82695 5.05 9.78497 5.05 9.7429ZM13.5303 14.5303C13.8232 14.2374 13.8232 13.7626 13.5303 13.4697C13.2374 13.1768 12.7626 13.1768 12.4697 13.4697L8.46967 17.4697C8.25517 17.6842 8.191 18.0068 8.30709 18.287C8.42318 18.5673 8.69665 18.75 9 18.75H13.1893L10.4697 21.4697C10.1768 21.7626 10.1768 22.2374 10.4697 22.5303C10.7626 22.8232 11.2374 22.8232 11.5303 22.5303L15.5303 18.5303C15.7448 18.3158 15.809 17.9932 15.6929 17.713C15.5768 17.4327 15.3033 17.25 15 17.25H10.8107L13.5303 14.5303Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M5.05 9.7429C5.05 5.87689 8.16554 2.75 12 2.75C15.2644 2.75 18.0087 5.01629 18.7518 8.07704C18.8096 8.31542 18.9804 8.51044 19.2091 8.59923C20.9873 9.28969 22.25 11.0266 22.25 13.0613C22.25 14.6266 21.5035 16.015 20.348 16.8877C20.0174 17.1374 19.9519 17.6077 20.2015 17.9382C20.4512 18.2688 20.9215 18.3343 21.252 18.0847C22.7683 16.9394 23.75 15.1148 23.75 13.0613C23.75 10.5298 22.2594 8.34734 20.1107 7.35337C19.0843 3.82884 15.8445 1.25 12 1.25C7.46613 1.25 3.77223 4.83655 3.55966 9.33328C1.62275 10.0781 0.25 11.9625 0.25 14.1674C0.25 16.0816 1.28514 17.7538 2.82289 18.6483C3.18094 18.8566 3.64003 18.7352 3.8483 18.3771C4.05657 18.0191 3.93515 17.56 3.57711 17.3517C2.48454 16.7162 1.75 15.5286 1.75 14.1674C1.75 12.453 2.91601 11.0147 4.48893 10.6081C4.82471 10.5213 5.05718 10.2156 5.0511 9.86884C5.05037 9.82695 5.05 9.78497 5.05 9.7429ZM16.0303 15.9697L12.5303 12.4697C12.2374 12.1768 11.7626 12.1768 11.4697 12.4697L7.96967 15.9697C7.67678 16.2626 7.67678 16.7374 7.96967 17.0303C8.26256 17.3232 8.73744 17.3232 9.03033 17.0303L11.25 14.8107V22C11.25 22.4142 11.5858 22.75 12 22.75C12.4142 22.75 12.75 22.4142 12.75 22V14.8107L14.9697 17.0303C15.2626 17.3232 15.7374 17.3232 16.0303 17.0303C16.3232 16.7374 16.3232 16.2626 16.0303 15.9697Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M12.1016 2.52621C14.9791 2.52621 17.5874 4.21791 18.1055 7.18832C21.4719 7.52106 23.9177 10.3454 23.918 13.577C23.918 15.9528 22.7448 18.0558 20.9473 19.3582C19.7392 20.2336 18.2465 20.7498 16.6348 20.7498H5.2168C2.33274 20.7498 0.0830948 18.2578 0.0830078 15.2967C0.0830728 12.4299 2.19181 10.0021 4.94336 9.85043V9.38364C4.94366 5.56299 8.18268 2.52643 12.1016 2.52621ZM12.1016 4.02621C8.94235 4.02643 6.44366 6.45854 6.44336 9.38364V11.3436H5.21582C3.25824 11.3443 1.58307 13.0633 1.58301 15.2967C1.58309 17.5305 3.25877 19.2497 5.2168 19.2498H16.6348C17.9216 19.2498 19.1074 18.8382 20.0664 18.1434C21.4966 17.1071 22.418 15.4453 22.418 13.577C22.4177 10.9422 20.2937 8.6561 17.4375 8.6561H16.7344L16.6895 7.95395C16.5326 5.52645 14.5774 4.02621 12.1016 4.02621Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12ZM12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.6828 8.31035C16.8121 8.02574 16.7514 7.69074 16.5303 7.46967C16.3093 7.2486 15.9743 7.18786 15.6896 7.31722L11.2821 9.32066L11.2224 9.34778C10.8761 9.50497 10.6034 9.62875 10.3639 9.80772C10.1528 9.96552 9.96552 10.1528 9.80772 10.3639C9.62875 10.6034 9.50497 10.8761 9.34778 11.2224L9.32066 11.2821L7.31722 15.6896C7.18786 15.9743 7.2486 16.3093 7.46967 16.5303C7.69074 16.7514 8.02574 16.8121 8.31035 16.6828L12.7179 14.6793L12.7776 14.6522C13.1239 14.495 13.3966 14.3712 13.6361 14.1923C13.8472 14.0345 14.0345 13.8472 14.1923 13.6361C14.3712 13.3966 14.495 13.1239 14.6522 12.7776L14.6793 12.7179L16.6828 8.31035ZM11.9028 10.6862L14.4896 9.51038L13.3138 12.0972C13.1167 12.5308 13.0605 12.6449 12.9908 12.738C12.9191 12.834 12.834 12.9191 12.738 12.9908C12.6449 13.0605 12.5308 13.1167 12.0972 13.3138L9.51038 14.4896L10.6862 11.9028C10.8833 11.4692 10.9395 11.3551 11.0092 11.262C11.0809 11.166 11.166 11.0809 11.262 11.0092C11.3551 10.9395 11.4692 10.8833 11.9028 10.6862Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M19.9189 1.28711C21.4374 1.28732 22.6688 2.5186 22.6689 4.03711V19.9619C22.6689 21.4806 21.4375 22.7117 19.9189 22.7119H4.08105C2.56227 22.7119 1.33105 21.4807 1.33105 19.9619V4.03711C1.33122 2.51847 2.56237 1.28711 4.08105 1.28711H19.9189ZM4.08105 2.78711C3.3908 2.78711 2.83122 3.34689 2.83105 4.03711V19.9619C2.83105 20.6523 3.3907 21.2119 4.08105 21.2119H19.9189C20.6091 21.2117 21.1689 20.6521 21.1689 19.9619V4.03711C21.1688 3.34702 20.609 2.78732 19.9189 2.78711H4.08105ZM8.18555 15.0801C9.45226 15.0802 10.4795 16.1073 10.4795 17.374C10.4792 18.6405 9.45209 19.6679 8.18555 19.668C6.91891 19.668 5.89187 18.6406 5.8916 17.374C5.8916 16.1072 6.91874 15.0801 8.18555 15.0801ZM15.8145 15.0801C17.0812 15.0802 18.1084 16.1073 18.1084 17.374C18.1081 18.6405 17.081 19.6679 15.8145 19.668C14.5478 19.668 13.5208 18.6406 13.5205 17.374C13.5205 16.1072 14.5476 15.0801 15.8145 15.0801ZM8.18555 16.5801C7.74717 16.5801 7.3916 16.9356 7.3916 17.374C7.39187 17.8122 7.74734 18.168 8.18555 18.168C8.62367 18.1679 8.97922 17.8121 8.97949 17.374C8.97949 16.9357 8.62383 16.5802 8.18555 16.5801ZM15.8145 16.5801C15.3761 16.5801 15.0205 16.9356 15.0205 17.374C15.0208 17.8122 15.3762 18.168 15.8145 18.168C16.2526 18.1679 16.6081 17.8121 16.6084 17.374C16.6084 16.9357 16.2527 16.5802 15.8145 16.5801ZM8.23535 4.33984C8.64957 4.33984 8.98535 4.67563 8.98535 5.08984V6.33984H10.1357C10.5498 6.34005 10.8857 6.67576 10.8857 7.08984V10.1201C10.8854 10.5339 10.5496 10.8699 10.1357 10.8701H8.98535V13.1494C8.98519 13.5635 8.64946 13.8994 8.23535 13.8994C7.82124 13.8994 7.48552 13.5635 7.48535 13.1494V10.8701H6.23535C5.82133 10.8701 5.48566 10.5341 5.48535 10.1201V7.08984C5.48535 6.67563 5.82114 6.33984 6.23535 6.33984H7.48535V5.08984C7.48535 4.67563 7.82114 4.33984 8.23535 4.33984ZM15.8145 4.33301C16.2287 4.33301 16.5645 4.66879 16.5645 5.08301V7.84473H17.7646C18.1784 7.84494 18.5143 8.18098 18.5146 8.59473V11.625C18.5146 12.0391 18.1787 12.3748 17.7646 12.375H16.5645V13.1455C16.5645 13.5597 16.2287 13.8955 15.8145 13.8955C15.4002 13.8955 15.0645 13.5597 15.0645 13.1455V12.375H13.8643C13.45 12.375 13.1143 12.0392 13.1143 11.625V8.59473C13.1147 8.18085 13.4503 7.84473 13.8643 7.84473H15.0645V5.08301C15.0645 4.66879 15.4002 4.33301 15.8145 4.33301ZM14.6143 10.875H17.0146V9.34473H14.6143V10.875ZM6.98535 9.37012H9.38574V7.83984H6.98535V9.37012Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M8.367 2.25H8.4H15.6H15.633H15.633C16.7252 2.25 17.5907 2.24999 18.2883 2.30699C19.0017 2.36527 19.6053 2.48688 20.1565 2.76772C21.0502 3.22312 21.7769 3.94978 22.2323 4.84355C22.5131 5.39472 22.6347 5.99835 22.693 6.71173C22.75 7.40935 22.75 8.27485 22.75 9.36698V9.4V14.6V14.633C22.75 15.7252 22.75 16.5906 22.693 17.2883C22.6347 18.0017 22.5131 18.6053 22.2323 19.1565C21.7769 20.0502 21.0502 20.7769 20.1565 21.2323C19.6053 21.5131 19.0017 21.6347 18.2883 21.693C17.5906 21.75 16.7252 21.75 15.633 21.75H15.6H8.4H8.36698C7.27485 21.75 6.40935 21.75 5.71173 21.693C4.99835 21.6347 4.39472 21.5131 3.84355 21.2323C2.94978 20.7769 2.22312 20.0502 1.76772 19.1565C1.48688 18.6053 1.36527 18.0017 1.30699 17.2883C1.24999 16.5907 1.24999 15.7252 1.25 14.633V14.633V14.6V9.4V9.367V9.36698C1.24999 8.27484 1.24999 7.40935 1.30699 6.71173C1.36527 5.99835 1.48688 5.39472 1.76772 4.84355C2.22312 3.94978 2.94978 3.22312 3.84355 2.76772C4.39472 2.48688 4.99835 2.36527 5.71173 2.30699C6.40935 2.24999 7.27484 2.25 8.36697 2.25H8.367ZM5.83388 3.80201C5.21325 3.85271 4.829 3.94909 4.52453 4.10423C3.913 4.41582 3.41582 4.913 3.10423 5.52453C2.94909 5.829 2.85271 6.21325 2.80201 6.83388C2.79133 6.96459 2.78284 7.10284 2.7761 7.25H21.2239C21.2172 7.10284 21.2087 6.96459 21.198 6.83388C21.1473 6.21325 21.0509 5.829 20.8958 5.52453C20.5842 4.913 20.087 4.41582 19.4755 4.10423C19.171 3.94909 18.7867 3.85271 18.1661 3.80201C17.5367 3.75058 16.7325 3.75 15.6 3.75H8.4C7.26752 3.75 6.46327 3.75058 5.83388 3.80201ZM2.75 9.4C2.75 9.17025 2.75002 8.95401 2.75049 8.75H21.2495C21.25 8.95401 21.25 9.17025 21.25 9.4V14.6C21.25 15.7325 21.2494 16.5367 21.198 17.1661C21.1473 17.7867 21.0509 18.171 20.8958 18.4755C20.5842 19.087 20.087 19.5842 19.4755 19.8958C19.171 20.0509 18.7867 20.1473 18.1661 20.198C17.5367 20.2494 16.7325 20.25 15.6 20.25H8.4C7.26752 20.25 6.46327 20.2494 5.83388 20.198C5.21325 20.1473 4.829 20.0509 4.52453 19.8958C3.913 19.5842 3.41582 19.087 3.10423 18.4755C2.94909 18.171 2.85271 17.7867 2.80201 17.1661C2.75058 16.5367 2.75 15.7325 2.75 14.6V9.4ZM5.99988 11.25C5.58566 11.25 5.24988 11.5858 5.24988 12C5.24988 12.4142 5.58566 12.75 5.99988 12.75H9.99988C10.4141 12.75 10.7499 12.4142 10.7499 12C10.7499 11.5858 10.4141 11.25 9.99988 11.25H5.99988Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M16.2969 3.34473C16.4512 3.20481 16.656 3.13667 16.8613 3.15332C16.9424 3.15414 17.0237 3.16644 17.1025 3.19434L20.541 3.84863C20.9479 3.92611 21.2152 4.31966 21.1377 4.72656C21.0601 5.13319 20.6675 5.39961 20.2607 5.32227L19.5098 5.17871C21.0888 6.9688 22.0508 9.32126 22.0508 11.8975C22.0507 17.505 17.5098 22.0505 11.9053 22.0508C11.1643 22.0508 10.4377 21.9731 9.7373 21.8174C9.33323 21.7274 9.07824 21.327 9.16797 20.9229C9.25789 20.5185 9.65914 20.2636 10.0635 20.3535C10.6516 20.4843 11.2684 20.5508 11.9053 20.5508C16.6802 20.5505 20.5507 16.6776 20.5508 11.8975C20.5508 9.35007 19.4489 7.0568 17.6982 5.47266L17.8232 6.83203C17.861 7.24441 17.5569 7.60959 17.1445 7.64746C16.7322 7.68513 16.367 7.38111 16.3291 6.96875L16.0537 3.96875C16.0323 3.73429 16.1225 3.50298 16.2969 3.34473ZM11.8105 1.65039C12.5446 1.65039 13.2592 1.72763 13.9531 1.87207C14.3585 1.95647 14.6184 2.35338 14.5342 2.75879C14.4498 3.16431 14.053 3.42524 13.6475 3.34082C13.0508 3.21662 12.4387 3.15039 11.8105 3.15039C7.02619 3.15051 3.15039 7.02452 3.15039 11.8037C3.15049 14.3362 4.2414 16.6171 5.97754 18.2002L5.83887 16.8779C5.79575 16.4661 6.09499 16.097 6.50684 16.0537C6.91879 16.0105 7.28783 16.3097 7.33105 16.7217L7.64551 19.7217C7.67053 19.9604 7.57981 20.1968 7.40137 20.3574C7.25971 20.4848 7.07657 20.5505 6.88965 20.5479C6.87206 20.5487 6.85457 20.5473 6.83691 20.5469C6.83462 20.5467 6.83237 20.5461 6.83008 20.5459C6.7471 20.5433 6.66401 20.5301 6.58398 20.499L2.84375 19.7031C2.4387 19.6169 2.18046 19.2185 2.2666 18.8135C2.35286 18.4083 2.75112 18.1501 3.15625 18.2363L4.12305 18.4414C2.58436 16.6618 1.65047 14.3411 1.65039 11.8037C1.65039 6.19499 6.19888 1.65051 11.8105 1.65039ZM14.6025 7.0166C15.0168 7.0166 15.3525 7.35239 15.3525 7.7666V9.22559H16.8125C17.779 9.22559 18.5625 10.0091 18.5625 10.9756V12.7256C18.5625 13.6921 17.779 14.4756 16.8125 14.4756H16.6064V15.1201C16.6062 15.5341 16.2705 15.8701 15.8564 15.8701C15.4424 15.8701 15.1067 15.5341 15.1064 15.1201V14.4756H9.39355V15.1201C9.39328 15.5341 9.0576 15.8701 8.64355 15.8701C8.22951 15.8701 7.89383 15.5341 7.89355 15.1201V14.4756H7.1875C6.221 14.4756 5.4375 13.6921 5.4375 12.7256V10.9756C5.4375 10.0091 6.221 9.22559 7.1875 9.22559H13.8525V7.7666C13.8525 7.35239 14.1883 7.0166 14.6025 7.0166ZM7.1875 10.7256C7.04943 10.7256 6.9375 10.8375 6.9375 10.9756V12.7256C6.9375 12.8637 7.04943 12.9756 7.1875 12.9756H16.8125C16.9506 12.9756 17.0625 12.8637 17.0625 12.7256V10.9756C17.0625 10.8375 16.9506 10.7256 16.8125 10.7256H7.1875Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M12.5354 2.34276C12.1964 2.18197 11.8031 2.18197 11.4641 2.34276C11.3571 2.3935 11.1814 2.53839 10.8895 3.00963C10.6036 3.47116 10.2757 4.12519 9.80843 5.05977L4.68989 15.2969C3.93454 16.8076 3.38914 17.8996 3.05969 18.7121C2.89563 19.1167 2.79863 19.42 2.75363 19.6488C2.70796 19.8809 2.72778 19.9784 2.73611 20.0043C2.87152 20.4238 3.21795 20.7411 3.64781 20.8391C3.67426 20.8451 3.77314 20.8563 4.00039 20.7904C4.22432 20.7254 4.51796 20.6021 4.90656 20.4032C5.68689 20.0036 6.72681 19.3643 8.16527 18.4791L9.92959 17.3934C9.96062 17.3743 9.99123 17.3554 10.0215 17.3367C10.5398 17.0172 10.9468 16.7662 11.3979 16.6651C11.7942 16.5762 12.2053 16.5762 12.6017 16.6651C13.0527 16.7662 13.4598 17.0172 13.9781 17.3367C14.0083 17.3554 14.0389 17.3743 14.07 17.3934L15.8343 18.4791C17.2727 19.3643 18.3127 20.0036 19.093 20.4032C19.4816 20.6021 19.7752 20.7254 19.9992 20.7904C20.2264 20.8563 20.3253 20.8451 20.3517 20.8391C20.7816 20.7411 21.128 20.4238 21.2634 20.0043C21.2718 19.9784 21.2916 19.8809 21.2459 19.6488C21.2009 19.42 21.1039 19.1167 20.9399 18.7121C20.6104 17.8996 20.065 16.8076 19.3097 15.2969L14.1911 5.05978C13.7238 4.12519 13.396 3.47116 13.1101 3.00964C12.8182 2.53839 12.6424 2.3935 12.5354 2.34276ZM10.8213 0.98746C11.5671 0.633737 12.4324 0.633737 13.1782 0.98746C13.6945 1.23233 14.0607 1.69585 14.3852 2.21973C14.7115 2.74646 15.0695 3.46241 15.5153 4.354L15.5328 4.38896L20.6513 14.626L20.6682 14.6598C21.4032 16.1298 21.9756 17.2746 22.3299 18.1484C22.5091 18.5903 22.646 18.9947 22.7177 19.3593C22.7888 19.7205 22.8081 20.1019 22.6909 20.465C22.393 21.388 21.6309 22.0859 20.6852 22.3015C20.3132 22.3863 19.935 22.3335 19.5814 22.231C19.2246 22.1275 18.8337 21.9556 18.4093 21.7383C17.57 21.3085 16.4799 20.6377 15.0801 19.7763L15.0481 19.7566L13.2838 18.6708C12.6288 18.2677 12.4479 18.1679 12.2734 18.1287C12.0932 18.0883 11.9063 18.0883 11.7262 18.1287C11.5516 18.1679 11.3708 18.2677 10.7157 18.6708L8.95142 19.7566L8.91923 19.7764C7.51954 20.6377 6.42949 21.3085 5.59023 21.7383C5.16581 21.9556 4.775 22.1275 4.41813 22.231C4.06458 22.3335 3.68631 22.3863 3.31436 22.3015C2.36867 22.0859 1.60652 21.388 1.30861 20.465C1.19144 20.1019 1.21078 19.7205 1.28183 19.3593C1.35354 18.9947 1.49044 18.5903 1.66963 18.1484C2.02397 17.2746 2.59639 16.1297 3.33142 14.6597L3.34825 14.626L8.46679 4.38895L8.48425 4.35404C8.93004 3.46244 9.28801 2.74646 9.6143 2.21973C9.93882 1.69585 10.305 1.23233 10.8213 0.98746Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M8.40088 13.2504C8.66819 13.2504 8.9145 13.2503 9.11865 13.267C9.33152 13.2844 9.56539 13.3236 9.79541 13.4408C10.1243 13.6085 10.3915 13.8765 10.5591 14.2055C10.6763 14.4356 10.7155 14.6693 10.7329 14.8822C10.7496 15.0865 10.7495 15.3327 10.7495 15.6V20.4008C10.7495 20.6682 10.7496 20.9144 10.7329 21.1186C10.7155 21.3315 10.6763 21.5653 10.5591 21.7953C10.3914 22.1241 10.1243 22.3923 9.79541 22.56C9.56537 22.6772 9.33153 22.7163 9.11865 22.7338C8.9145 22.7505 8.66819 22.7504 8.40088 22.7504H3.6001C3.33282 22.7504 3.0865 22.7505 2.88232 22.7338C2.66944 22.7163 2.43558 22.677 2.20557 22.56C1.87662 22.3924 1.60868 22.1242 1.44092 21.7953C1.32371 21.5653 1.28454 21.3315 1.26709 21.1186C1.25041 20.9144 1.25049 20.6682 1.25049 20.4008V15.6C1.25049 15.3327 1.25043 15.0865 1.26709 14.8822C1.28452 14.6693 1.32369 14.4356 1.44092 14.2055C1.60867 13.8764 1.87646 13.6085 2.20557 13.4408C2.43568 13.3236 2.66934 13.2844 2.88232 13.267C3.08651 13.2503 3.33279 13.2504 3.6001 13.2504H8.40088ZM20.3999 13.2504C20.6674 13.2504 20.9144 13.2503 21.1187 13.267C21.3315 13.2844 21.5654 13.3236 21.7954 13.4408C22.1243 13.6085 22.3915 13.8765 22.5591 14.2055C22.6763 14.4356 22.7155 14.6693 22.7329 14.8822C22.7496 15.0865 22.7495 15.3327 22.7495 15.6V20.4008C22.7495 20.6682 22.7496 20.9144 22.7329 21.1186C22.7155 21.3315 22.6763 21.5653 22.5591 21.7953C22.3914 22.1241 22.1243 22.3923 21.7954 22.56C21.5654 22.6772 21.3315 22.7163 21.1187 22.7338C20.9144 22.7505 20.6674 22.7504 20.3999 22.7504H15.6001C15.3328 22.7504 15.0865 22.7505 14.8823 22.7338C14.6692 22.7163 14.4348 22.6773 14.2046 22.56C13.8757 22.3923 13.6086 22.1241 13.4409 21.7953C13.3237 21.5653 13.2836 21.3316 13.2661 21.1186C13.2495 20.9144 13.2495 20.6682 13.2495 20.4008V15.6C13.2495 15.3327 13.2495 15.0864 13.2661 14.8822C13.2836 14.6693 13.3237 14.4356 13.4409 14.2055C13.6085 13.8766 13.8757 13.6085 14.2046 13.4408C14.4348 13.3235 14.6692 13.2844 14.8823 13.267C15.0865 13.2503 15.3328 13.2504 15.6001 13.2504H20.3999ZM3.6001 14.7504C3.30826 14.7504 3.13342 14.7507 3.00439 14.7611C2.93404 14.7669 2.89981 14.7741 2.88721 14.7777C2.84017 14.8017 2.8018 14.84 2.77783 14.8871C2.77424 14.8996 2.76701 14.9337 2.76123 15.0043C2.75072 15.1333 2.75049 15.308 2.75049 15.6V20.4008C2.75049 20.6927 2.75069 20.8674 2.76123 20.9965C2.76713 21.0682 2.77434 21.1018 2.77783 21.1137C2.80182 21.1605 2.84035 21.1992 2.88721 21.2231C2.87083 21.2148 2.88433 21.2299 3.00439 21.2397C3.13341 21.2502 3.30831 21.2504 3.6001 21.2504H8.40088C8.69276 21.2504 8.86759 21.2502 8.99658 21.2397C9.1157 21.2299 9.12979 21.215 9.11377 21.2231C9.1607 21.1992 9.19918 21.1606 9.22314 21.1137C9.21503 21.1298 9.22998 21.1158 9.23975 20.9965C9.25024 20.8674 9.24951 20.6927 9.24951 20.4008V15.6C9.24951 15.3081 9.25021 15.1333 9.23975 15.0043C9.22995 14.8842 9.21484 14.8707 9.22314 14.8871C9.19924 14.8402 9.1606 14.8018 9.11377 14.7777C9.12926 14.7855 9.11482 14.7708 8.99658 14.7611C8.86759 14.7506 8.69276 14.7504 8.40088 14.7504H3.6001ZM15.6001 14.7504C15.3079 14.7504 15.1325 14.7506 15.0034 14.7611C14.9334 14.7669 14.8998 14.7741 14.8872 14.7777C14.8401 14.8017 14.8018 14.84 14.7778 14.8871C14.7742 14.8996 14.767 14.9337 14.7612 15.0043C14.7507 15.1333 14.7495 15.3081 14.7495 15.6V20.4008C14.7495 20.6927 14.7506 20.8674 14.7612 20.9965C14.7671 21.0682 14.7743 21.1018 14.7778 21.1137C14.8018 21.1605 14.8403 21.1992 14.8872 21.2231C14.8708 21.2148 14.8838 21.2299 15.0034 21.2397C15.1325 21.2503 15.3079 21.2504 15.6001 21.2504H20.3999C20.6917 21.2504 20.8667 21.2502 20.9956 21.2397C21.1157 21.2299 21.1292 21.2148 21.1128 21.2231C21.1598 21.1992 21.1991 21.1607 21.2231 21.1137C21.215 21.1298 21.23 21.1158 21.2397 20.9965C21.2502 20.8674 21.2495 20.6927 21.2495 20.4008V15.6C21.2495 15.3081 21.2502 15.1333 21.2397 15.0043C21.2299 14.8842 21.2148 14.8707 21.2231 14.8871C21.1991 14.84 21.1599 14.8017 21.1128 14.7777C21.1002 14.7741 21.066 14.7669 20.9956 14.7611C20.8666 14.7507 20.6918 14.7504 20.3999 14.7504H15.6001ZM8.40088 1.2504C8.66819 1.2504 8.9145 1.25032 9.11865 1.267C9.33151 1.28444 9.56539 1.32364 9.79541 1.44083C10.1243 1.60859 10.3915 1.87655 10.5591 2.20547C10.6763 2.43563 10.7155 2.66923 10.7329 2.88223C10.7496 3.08644 10.7495 3.33267 10.7495 3.60001V8.40079C10.7495 8.66813 10.7496 8.91438 10.7329 9.11856C10.7155 9.33152 10.6763 9.56527 10.5591 9.79532C10.3914 10.1241 10.1243 10.3923 9.79541 10.56C9.56537 10.6772 9.33153 10.7163 9.11865 10.7338C8.9145 10.7505 8.66819 10.7504 8.40088 10.7504H3.6001C3.33282 10.7504 3.0865 10.7505 2.88232 10.7338C2.66944 10.7163 2.43558 10.677 2.20557 10.56C1.87662 10.3924 1.60868 10.1242 1.44092 9.79532C1.32371 9.56527 1.28454 9.33152 1.26709 9.11856C1.25041 8.91438 1.25049 8.66813 1.25049 8.40079V3.60001C1.25049 3.33267 1.25043 3.08644 1.26709 2.88223C1.28452 2.66923 1.32368 2.43563 1.44092 2.20547C1.60867 1.87637 1.87646 1.60858 2.20557 1.44083C2.43569 1.32363 2.66934 1.28441 2.88232 1.267C3.08651 1.25034 3.33279 1.2504 3.6001 1.2504H8.40088ZM20.3999 1.2504C20.6674 1.2504 20.9144 1.25031 21.1187 1.267C21.3315 1.28444 21.5654 1.32364 21.7954 1.44083C22.1243 1.60859 22.3915 1.87655 22.5591 2.20547C22.6763 2.43563 22.7155 2.66923 22.7329 2.88223C22.7496 3.08644 22.7495 3.33267 22.7495 3.60001V8.40079C22.7495 8.66813 22.7496 8.91438 22.7329 9.11856C22.7155 9.33152 22.6763 9.56527 22.5591 9.79532C22.3914 10.1241 22.1243 10.3923 21.7954 10.56C21.5654 10.6772 21.3315 10.7163 21.1187 10.7338C20.9144 10.7505 20.6674 10.7504 20.3999 10.7504H15.6001C15.3328 10.7504 15.0865 10.7505 14.8823 10.7338C14.6692 10.7163 14.4348 10.6773 14.2046 10.56C13.8757 10.3923 13.6086 10.1241 13.4409 9.79532C13.3237 9.56525 13.2836 9.33154 13.2661 9.11856C13.2495 8.91438 13.2495 8.66813 13.2495 8.40079V3.60001C13.2495 3.3327 13.2495 3.08643 13.2661 2.88223C13.2836 2.66923 13.3237 2.43562 13.4409 2.20547C13.6085 1.87655 13.8757 1.60859 14.2046 1.44083C14.4348 1.32355 14.6692 1.28442 14.8823 1.267C15.0865 1.25034 15.3328 1.2504 15.6001 1.2504H20.3999ZM3.6001 2.7504C3.30826 2.75041 3.13342 2.75062 3.00439 2.76114C2.93404 2.7669 2.89981 2.77414 2.88721 2.77774C2.84017 2.80171 2.8018 2.84008 2.77783 2.88712C2.77424 2.89964 2.76701 2.93375 2.76123 3.0043C2.75072 3.13334 2.75049 3.30811 2.75049 3.60001V8.40079C2.75049 8.69271 2.7507 8.86748 2.76123 8.99649C2.76712 9.06814 2.77434 9.10178 2.77783 9.11368C2.80182 9.16049 2.84034 9.19917 2.88721 9.22305C2.87083 9.21471 2.88433 9.22982 3.00439 9.23965C3.13341 9.25016 3.30831 9.2504 3.6001 9.2504H8.40088C8.69276 9.2504 8.86759 9.2502 8.99658 9.23965C9.11568 9.22987 9.12978 9.21498 9.11377 9.22305C9.16071 9.19909 9.19918 9.16059 9.22314 9.11368C9.21498 9.12986 9.22997 9.11594 9.23975 8.99649C9.25024 8.86748 9.24951 8.69271 9.24951 8.40079V3.60001C9.24951 3.30817 9.25021 3.13333 9.23975 3.0043C9.22995 2.88425 9.21484 2.87075 9.22314 2.88712C9.19924 2.84026 9.1606 2.80173 9.11377 2.77774C9.12927 2.78546 9.11483 2.77086 8.99658 2.76114C8.86759 2.75059 8.69276 2.75041 8.40088 2.7504H3.6001ZM15.6001 2.7504C15.3079 2.75041 15.1325 2.75059 15.0034 2.76114C14.9334 2.7669 14.8998 2.77415 14.8872 2.77774C14.8401 2.80171 14.8018 2.84008 14.7778 2.88712C14.7742 2.89963 14.767 2.93375 14.7612 3.0043C14.7507 3.13334 14.7495 3.30811 14.7495 3.60001V8.40079C14.7495 8.69271 14.7506 8.86748 14.7612 8.99649C14.7671 9.06815 14.7743 9.10179 14.7778 9.11368C14.8018 9.16049 14.8403 9.19917 14.8872 9.22305C14.8708 9.21472 14.8838 9.22982 15.0034 9.23965C15.1325 9.2502 15.3079 9.2504 15.6001 9.2504H20.3999C20.6917 9.2504 20.8667 9.25016 20.9956 9.23965C21.1157 9.22982 21.1292 9.21471 21.1128 9.22305C21.1599 9.1991 21.1991 9.16067 21.2231 9.11368C21.215 9.12986 21.23 9.11594 21.2397 8.99649C21.2502 8.86748 21.2495 8.69271 21.2495 8.40079V3.60001C21.2495 3.30817 21.2502 3.13333 21.2397 3.0043C21.2299 2.88425 21.2148 2.87075 21.2231 2.88712C21.1991 2.84008 21.1599 2.80171 21.1128 2.77774C21.1002 2.77413 21.066 2.7669 20.9956 2.76114C20.8666 2.75062 20.6918 2.75041 20.3999 2.7504H15.6001Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M13.4014 0.00488281C13.4445 0.00852865 13.4877 0.0143229 13.5303 0.0214844C13.5729 0.0286389 13.6152 0.0373239 13.6572 0.0478516C13.6991 0.0585191 13.7404 0.0709151 13.7812 0.0849609C13.8223 0.0990206 13.8626 0.114522 13.9023 0.131836C13.9418 0.149232 13.9806 0.167975 14.0186 0.188477C14.0567 0.20917 14.0937 0.232174 14.1299 0.255859C14.166 0.279532 14.2013 0.304523 14.2354 0.331055C14.2695 0.357747 14.3032 0.385612 14.335 0.415039C14.3666 0.444259 14.3975 0.475026 14.4268 0.506836C14.4558 0.538564 14.4835 0.571553 14.5098 0.605469C14.5363 0.639714 14.5614 0.675716 14.585 0.711914C14.6085 0.748168 14.631 0.785172 14.6514 0.823242C14.6719 0.861258 14.6907 0.899886 14.708 0.939453C14.7253 0.979123 14.741 1.01958 14.7549 1.06055C14.7688 1.10132 14.7815 1.14276 14.792 1.18457L15.1924 2.79004L16.2559 3.23047L17.6748 2.37988C17.7117 2.35768 17.7495 2.33648 17.7881 2.31738L17.9072 2.26465L18.0293 2.22266C18.0707 2.21016 18.113 2.19954 18.1553 2.19043C18.1973 2.18152 18.2397 2.17439 18.2822 2.16895L18.4121 2.15723C18.4553 2.15528 18.4988 2.15554 18.542 2.15723C18.5851 2.15892 18.628 2.16277 18.6709 2.16797C18.7138 2.1733 18.7566 2.17964 18.7988 2.18848C18.8411 2.19733 18.8833 2.20846 18.9248 2.2207C18.966 2.23302 19.0067 2.24715 19.0469 2.2627C19.0871 2.27844 19.1271 2.29546 19.166 2.31445C19.2048 2.33346 19.243 2.35469 19.2803 2.37695C19.3173 2.39903 19.3536 2.42222 19.3887 2.44727C19.4238 2.4724 19.4583 2.49922 19.4912 2.52734C19.5242 2.55525 19.5556 2.58474 19.5859 2.61523L21.3857 4.41406C21.4163 4.44466 21.4458 4.47682 21.4736 4.50977C21.5016 4.54266 21.5276 4.57721 21.5527 4.6123C21.578 4.64756 21.6019 4.68363 21.624 4.7207C21.6461 4.75777 21.6666 4.79607 21.6855 4.83496C21.7045 4.87357 21.7216 4.91297 21.7373 4.95312C21.7529 4.99336 21.7679 5.03464 21.7803 5.07617C21.7925 5.1175 21.8027 5.15978 21.8115 5.20215C21.8203 5.24436 21.8277 5.28722 21.833 5.33008C21.8382 5.3729 21.8411 5.4159 21.8428 5.45898C21.8445 5.50221 21.8447 5.54564 21.8428 5.58887C21.8409 5.63196 21.8375 5.67494 21.832 5.71777L21.8105 5.8457L21.7783 5.97168L21.7354 6.09375L21.6826 6.21191C21.6635 6.25071 21.6434 6.2892 21.6211 6.32617L20.7695 7.74414L21.21 8.80859L22.8135 9.20898C22.8554 9.21953 22.8975 9.23216 22.9385 9.24609C22.9793 9.25989 23.0199 9.2758 23.0596 9.29297C23.099 9.31006 23.138 9.32832 23.1758 9.34863C23.2139 9.36921 23.2518 9.39147 23.2881 9.41504C23.3244 9.43845 23.3594 9.46384 23.3936 9.49023C23.4278 9.51666 23.4613 9.54493 23.4932 9.57422C23.5249 9.60326 23.5557 9.63342 23.585 9.66504C23.6144 9.69681 23.6424 9.73053 23.6689 9.76465C23.6954 9.79852 23.7205 9.83322 23.7441 9.86914C23.7678 9.90534 23.7898 9.94329 23.8105 9.98145C23.8311 10.0194 23.8508 10.0582 23.8682 10.0977C23.8855 10.137 23.9011 10.1772 23.915 10.2178C23.9291 10.2587 23.9416 10.3007 23.9521 10.3428C23.9628 10.3846 23.9714 10.4271 23.9785 10.4697C23.9855 10.5123 23.9916 10.5556 23.9951 10.5986C23.9987 10.6415 24 10.6845 24 10.7275V13.2725L23.9951 13.4014L23.9785 13.5303C23.9714 13.5729 23.9628 13.6154 23.9521 13.6572C23.9416 13.6992 23.9291 13.7412 23.915 13.7822L23.8682 13.9023C23.8509 13.942 23.8312 13.9806 23.8105 14.0186C23.79 14.0565 23.7678 14.0938 23.7441 14.1299C23.7205 14.1659 23.6955 14.2014 23.6689 14.2354C23.6424 14.2695 23.6144 14.3032 23.585 14.335C23.5558 14.3666 23.5249 14.3967 23.4932 14.4258C23.4613 14.4551 23.4278 14.4833 23.3936 14.5098C23.3594 14.5363 23.3242 14.5614 23.2881 14.585L23.1768 14.6504C23.1388 14.6708 23.0993 14.6897 23.0596 14.707C23.0199 14.7242 22.9794 14.7401 22.9385 14.7539C22.8976 14.7678 22.8563 14.7805 22.8145 14.791L21.21 15.1914L20.7705 16.2559L21.6211 17.6738C21.6433 17.7107 21.6636 17.7485 21.6826 17.7871C21.7018 17.8259 21.7195 17.866 21.7354 17.9062C21.7512 17.9464 21.7659 17.9869 21.7783 18.0283C21.7908 18.0697 21.8016 18.112 21.8105 18.1543C21.8195 18.1966 21.8266 18.2393 21.832 18.2822C21.8373 18.3251 21.841 18.368 21.8428 18.4111C21.8446 18.4544 21.8445 18.4978 21.8428 18.541C21.8411 18.5841 21.8383 18.6272 21.833 18.6699L21.8115 18.7979C21.8027 18.8401 21.7925 18.8824 21.7803 18.9238L21.7373 19.0469L21.6855 19.166L21.624 19.2803C21.6019 19.3173 21.5778 19.3535 21.5527 19.3887L21.4736 19.4912L21.3848 19.5859L19.5859 21.3848C19.5555 21.4155 19.5232 21.4445 19.4902 21.4727C19.4572 21.5007 19.423 21.5275 19.3877 21.5527C19.3526 21.5778 19.3164 21.6019 19.2793 21.624C19.2421 21.6462 19.2039 21.6666 19.165 21.6855C19.1263 21.7046 19.087 21.7226 19.0469 21.7383L18.9238 21.7803L18.7979 21.8115C18.7555 21.8204 18.7129 21.8278 18.6699 21.833C18.627 21.8383 18.5834 21.8421 18.54 21.8438C18.4971 21.8454 18.4541 21.8447 18.4111 21.8428C18.3678 21.841 18.3242 21.8375 18.2812 21.832C18.2385 21.8266 18.1956 21.8197 18.1533 21.8105L18.0273 21.7783L17.9053 21.7354C17.8652 21.7194 17.8257 21.7018 17.7871 21.6826C17.7483 21.6635 17.7098 21.6425 17.6729 21.6201L16.2559 20.7695L15.1914 21.21L14.791 22.8145C14.7805 22.8562 14.7688 22.8977 14.7549 22.9385C14.741 22.9794 14.7251 23.0201 14.708 23.0596L14.6514 23.1768C14.6309 23.2149 14.6085 23.2519 14.585 23.2881C14.5614 23.3243 14.5363 23.3594 14.5098 23.3936L14.4258 23.4932L14.334 23.585C14.3023 23.6143 14.2694 23.6423 14.2354 23.6689L14.1299 23.7441C14.0937 23.7678 14.0565 23.79 14.0186 23.8105C13.9804 23.8312 13.9419 23.8507 13.9023 23.8682L13.7812 23.915L13.6572 23.9521L13.5303 23.9785C13.4876 23.9857 13.4445 23.9916 13.4014 23.9951C13.3582 23.9988 13.3148 24 13.2715 24H10.7285L10.5986 23.9951C10.5555 23.9915 10.5124 23.9855 10.4697 23.9785C10.4272 23.9714 10.3848 23.9627 10.3428 23.9521C10.3009 23.9415 10.2596 23.9291 10.2188 23.915C10.1778 23.901 10.1372 23.8856 10.0977 23.8682L9.98145 23.8115L9.87012 23.7441L9.76465 23.6689C9.73053 23.6423 9.69694 23.6143 9.66504 23.585L9.57422 23.4932C9.54499 23.4613 9.51674 23.4287 9.49023 23.3945C9.46367 23.3604 9.43861 23.3243 9.41504 23.2881C9.39143 23.2519 9.36914 23.2148 9.34863 23.1768L9.29199 23.0605C9.27468 23.0209 9.25904 22.9804 9.24512 22.9395L9.20898 22.8154L8.80762 21.21L7.74414 20.7695L6.32617 21.6201C6.28906 21.6425 6.25072 21.6633 6.21191 21.6826L6.09375 21.7354C6.05352 21.7514 6.01211 21.7648 5.9707 21.7773C5.92945 21.7898 5.88786 21.8006 5.8457 21.8096C5.80344 21.8187 5.76055 21.8266 5.71777 21.832L5.58789 21.8428C5.54491 21.8446 5.50196 21.8444 5.45898 21.8428L5.3291 21.833C5.28619 21.8277 5.24343 21.8204 5.20117 21.8115L5.0752 21.7803C5.03387 21.7679 4.99328 21.753 4.95312 21.7373C4.91276 21.7215 4.87279 21.7047 4.83398 21.6855L4.71973 21.624C4.68267 21.6018 4.64644 21.5778 4.61133 21.5527C4.57629 21.5276 4.5426 21.5007 4.50977 21.4727C4.47682 21.4447 4.44466 21.4154 4.41406 21.3848L2.61426 19.5859C2.58366 19.5553 2.55423 19.5232 2.52637 19.4902C2.49842 19.4573 2.47235 19.4228 2.44727 19.3877C2.42203 19.3524 2.39809 19.3164 2.37598 19.2793C2.35387 19.2422 2.33344 19.2039 2.31445 19.165L2.2627 19.0469C2.24707 19.0066 2.2321 18.9652 2.21973 18.9238C2.20752 18.8825 2.19731 18.8402 2.18848 18.7979C2.17965 18.7556 2.17232 18.7128 2.16699 18.6699L2.15723 18.541C2.15553 18.4978 2.15527 18.4544 2.15723 18.4111L2.16797 18.2822C2.17344 18.2394 2.18047 18.1966 2.18945 18.1543C2.19844 18.112 2.20918 18.0697 2.22168 18.0283L2.26465 17.9062L2.31738 17.7881C2.33652 17.7493 2.35664 17.7108 2.37891 17.6738L3.23047 16.2559L2.79004 15.1914L1.18652 14.791C1.1446 14.7805 1.10254 14.7678 1.06152 14.7539C1.02067 14.7401 0.980112 14.7242 0.94043 14.707L0.824219 14.6514L0.711914 14.585C0.675635 14.5614 0.640646 14.5362 0.606445 14.5098C0.572215 14.4833 0.538724 14.4551 0.506836 14.4258C0.475098 14.3967 0.444197 14.3666 0.415039 14.335C0.385612 14.3032 0.357617 14.2695 0.331055 14.2354L0.255859 14.1309L0.189453 14.0186C0.168931 13.9806 0.149247 13.9418 0.131836 13.9023L0.0849609 13.7822C0.0708984 13.7413 0.0583984 13.6993 0.0478516 13.6572L0.0214844 13.5303C0.0144652 13.4877 0.00839438 13.4444 0.00488281 13.4014L0 13.2725V10.7275C5.06952e-06 10.6845 0.00127104 10.6415 0.00488281 10.5986L0.0214844 10.4697C0.0286345 10.4271 0.0371972 10.3846 0.0478516 10.3428L0.0849609 10.2178L0.131836 10.0977C0.149247 10.0582 0.168931 10.0194 0.189453 9.98145C0.210156 9.94329 0.232161 9.90534 0.255859 9.86914L0.331055 9.76465C0.357617 9.73053 0.385612 9.69681 0.415039 9.66504L0.506836 9.57422C0.538724 9.54493 0.572215 9.51666 0.606445 9.49023C0.640646 9.46384 0.675636 9.43845 0.711914 9.41504C0.748242 9.39147 0.786068 9.36921 0.824219 9.34863L0.94043 9.29297L1.06152 9.24609L1.18652 9.20898L2.79004 8.80859L3.22949 7.74414L2.37891 6.32617C2.35678 6.28939 2.33629 6.25147 2.31738 6.21289L2.26465 6.09375L2.22168 5.97168C2.20918 5.93028 2.19844 5.88801 2.18945 5.8457C2.1805 5.80349 2.17342 5.76063 2.16797 5.71777L2.15723 5.58887C2.15541 5.54566 2.1554 5.50232 2.15723 5.45898L2.16699 5.33008L2.18848 5.20215C2.19733 5.15983 2.20833 5.11771 2.2207 5.07617C2.23294 5.03479 2.24695 4.99347 2.2627 4.95312C2.27826 4.91296 2.29567 4.87358 2.31445 4.83496C2.33344 4.79608 2.35374 4.75777 2.37598 4.7207C2.39808 4.68351 2.42204 4.64742 2.44727 4.6123L2.52734 4.50977L2.61523 4.41406L4.41406 2.61523C4.44466 2.58464 4.4767 2.55521 4.50977 2.52734L4.6123 2.44824C4.64741 2.42315 4.68365 2.39906 4.7207 2.37695L4.83496 2.31543C4.87376 2.29642 4.91374 2.27845 4.9541 2.2627C4.99417 2.2472 5.03495 2.23384 5.07617 2.22168C5.11752 2.20933 5.15976 2.1983 5.20215 2.18945C5.2444 2.18074 5.28718 2.1733 5.33008 2.16797C5.37292 2.16263 5.41673 2.16003 5.45996 2.1582C5.50302 2.15653 5.54593 2.1564 5.58887 2.1582C5.6321 2.16016 5.67591 2.16348 5.71875 2.16895C5.76164 2.17441 5.80444 2.18146 5.84668 2.19043C5.88879 2.19938 5.93047 2.21023 5.97168 2.22266C6.01322 2.23516 6.05436 2.24987 6.09473 2.26562C6.13474 2.28143 6.17429 2.29836 6.21289 2.31738C6.25169 2.33652 6.29004 2.35762 6.32715 2.37988L7.74414 3.23047L8.80859 2.79004L9.20898 1.18555L9.24512 1.06152C9.25902 1.02061 9.27485 0.979922 9.29199 0.94043C9.30931 0.900716 9.32806 0.861263 9.34863 0.823242C9.36906 0.785128 9.39149 0.748078 9.41504 0.711914L9.49023 0.606445C9.5168 0.572201 9.54492 0.538737 9.57422 0.506836C9.60334 0.474997 9.6343 0.444284 9.66602 0.415039L9.76465 0.331055L9.87012 0.255859C9.9064 0.232193 9.94347 0.210132 9.98145 0.189453C10.0194 0.168897 10.058 0.149272 10.0977 0.131836L10.2188 0.0849609C10.2596 0.07092 10.3009 0.0585172 10.3428 0.0478516L10.4697 0.0214844C10.5124 0.0143244 10.5555 0.00839847 10.5986 0.00488281L10.7285 0H13.2715C13.3148 0 13.3583 0.00137219 13.4014 0.00488281ZM10.7178 1.50098H10.7119L10.7129 1.50195C10.7108 1.50248 10.709 1.50324 10.707 1.50391H10.7051L10.6953 1.50879L10.6943 1.50781C10.693 1.50857 10.6916 1.50903 10.6904 1.50977L10.6914 1.51074L10.6895 1.51172L10.6855 1.51465L10.6787 1.52148C10.6783 1.52189 10.6775 1.5232 10.6758 1.52539L10.6738 1.52734V1.52832L10.6719 1.53027C10.6708 1.53188 10.6707 1.53265 10.6709 1.53223L10.668 1.53711C10.6684 1.53638 10.6686 1.53679 10.668 1.53809C10.667 1.54041 10.6665 1.5426 10.666 1.54395L10.665 1.54492C10.6648 1.54566 10.6635 1.54647 10.6631 1.54785L10.6641 1.54883L10.2637 3.15332L10.0811 3.88672L9.38281 4.17578L8.31836 4.61621L7.62012 4.90625L6.97266 4.5166L5.55469 3.66602V3.66504C5.55273 3.66389 5.55092 3.66364 5.5498 3.66309H5.54883C5.54364 3.66107 5.541 3.65948 5.54004 3.65918H5.53809C5.53756 3.65904 5.53664 3.65852 5.53516 3.6582C5.53451 3.65807 5.53245 3.65763 5.5293 3.65723H5.52832L5.52637 3.65625V3.65723C5.52345 3.6571 5.52105 3.65623 5.51953 3.65625L5.51562 3.65723C5.51299 3.65755 5.51006 3.65682 5.50781 3.65723C5.50575 3.65767 5.50524 3.65839 5.50586 3.6582L5.50098 3.66016L5.49512 3.66211L5.48926 3.66504L5.48438 3.66797L5.48145 3.6709L5.47656 3.6748L5.47559 3.67578H5.47461L3.67578 5.47559L3.66504 5.48633V5.4873H3.66602L3.66211 5.49023L3.66309 5.49121C3.66082 5.49587 3.66036 5.49709 3.66113 5.49512L3.66016 5.49902L3.65918 5.50098L3.6582 5.50391C3.6581 5.50426 3.6578 5.50612 3.65723 5.50879C3.6572 5.50891 3.6567 5.51107 3.65625 5.51465C3.65613 5.51596 3.65628 5.51693 3.65625 5.51758L3.65527 5.52246L3.65723 5.53418C3.65768 5.53633 3.65811 5.53775 3.6582 5.53809C3.65886 5.54026 3.65972 5.54323 3.66113 5.54688L3.66504 5.55469L4.5166 6.97266L4.9043 7.62012L4.61621 8.31738L4.17676 9.38184L3.8877 10.0801L3.1543 10.2637L1.5498 10.665L1.54883 10.6641C1.54515 10.665 1.5437 10.6661 1.54395 10.666L1.54102 10.667C1.54035 10.6672 1.5386 10.6679 1.53613 10.6689L1.52832 10.6738L1.52539 10.6758C1.52479 10.6762 1.52429 10.6771 1.52344 10.6777L1.52148 10.6787L1.51953 10.6807L1.51855 10.6826L1.51562 10.6846L1.51465 10.6855L1.50879 10.6943H1.50781C1.50653 10.6967 1.506 10.6996 1.50488 10.7021C1.50479 10.7024 1.5037 10.7038 1.50293 10.7061V10.707L1.50195 10.7129C1.50189 10.7132 1.50148 10.7148 1.50098 10.7178L1.5 10.7168V13.2822H1.50098L1.50195 13.2871L1.50293 13.293V13.2939L1.50879 13.3057L1.51465 13.3145L1.51562 13.3154L1.51855 13.3174L1.51953 13.3193L1.52148 13.3213L1.52344 13.3223C1.52608 13.3243 1.52755 13.3257 1.52832 13.3262C1.5294 13.3269 1.53138 13.3285 1.53418 13.3301L1.53613 13.3311L1.54102 13.333L1.54395 13.334C1.54373 13.3339 1.54535 13.334 1.54883 13.335H1.5498L3.1543 13.7363L3.88672 13.9199L4.17578 14.6182L4.61621 15.6816L4.90527 16.3799L4.5166 17.0273L3.66504 18.4453L3.65918 18.457C3.6597 18.4557 3.65963 18.4572 3.6582 18.4619C3.6582 18.4619 3.65776 18.4633 3.65723 18.4658L3.65625 18.4717C3.65612 18.4727 3.65629 18.4737 3.65625 18.4746L3.65527 18.4795V18.4854H3.65625L3.65723 18.4912V18.4941C3.65786 18.4963 3.65845 18.4989 3.65918 18.501C3.65976 18.5025 3.66084 18.5042 3.66113 18.5049V18.5059L3.66211 18.5068C3.66276 18.5082 3.66345 18.5097 3.66406 18.5107L3.66699 18.5146V18.5156L3.66992 18.5186L3.67188 18.5215L5.48047 20.3301L5.4834 20.332C5.48496 20.3331 5.48745 20.3352 5.49023 20.3369L5.49219 20.3379L5.49805 20.3398V20.3408H5.5C5.50068 20.341 5.50164 20.3414 5.50293 20.3418H5.50391L5.50879 20.3438H5.50977C5.51381 20.3442 5.51658 20.3447 5.51758 20.3447C5.51822 20.3447 5.5192 20.3447 5.52051 20.3447C5.52374 20.3446 5.52601 20.3439 5.52734 20.3438H5.5293L5.53418 20.3428C5.53467 20.3427 5.5356 20.3422 5.53711 20.3418C5.53922 20.3412 5.54015 20.3414 5.53906 20.3418L5.55078 20.3359L5.55371 20.334L6.97266 19.4824L7.62012 19.0938L8.31836 19.3838L9.38184 19.8242L10.0801 20.1133L10.2637 20.8467L10.6631 22.4492L10.665 22.4551L10.666 22.457C10.6662 22.4576 10.6662 22.459 10.667 22.4609C10.6674 22.4619 10.6681 22.4631 10.6689 22.4648L10.6719 22.4688V22.4697L10.6738 22.4727L10.6758 22.4746L10.6768 22.4766L10.6855 22.4854C10.6873 22.4867 10.6895 22.488 10.6914 22.4893C10.6924 22.4899 10.6936 22.4912 10.6953 22.4922L10.6973 22.4932L10.7031 22.4951L10.707 22.4971C10.7095 22.4977 10.7126 22.4986 10.7148 22.499C10.7181 22.4995 10.722 22.4997 10.7256 22.5H13.2793C13.2799 22.5 13.2811 22.4992 13.2822 22.499H13.2861C13.2847 22.4993 13.2848 22.4986 13.2871 22.498L13.2939 22.4961C13.2961 22.4953 13.2983 22.4942 13.3008 22.4932L13.3037 22.4922L13.3047 22.4912C13.3059 22.4906 13.3074 22.4901 13.3086 22.4893C13.309 22.489 13.3113 22.4878 13.3145 22.4854L13.3213 22.4785C13.3223 22.4773 13.3232 22.4759 13.3242 22.4746C13.3252 22.4733 13.3258 22.4722 13.3262 22.4717L13.3281 22.4697C13.3292 22.4681 13.3294 22.4673 13.3291 22.4678L13.332 22.4629C13.3315 22.4638 13.332 22.4633 13.333 22.4609C13.3337 22.4591 13.3336 22.4572 13.334 22.4561L13.335 22.4551C13.3353 22.4542 13.3355 22.4529 13.3359 22.4512L13.7363 20.8467L13.9189 20.1133L14.6172 19.8242L15.6816 19.3838L16.3799 19.0938L17.0273 19.4834L18.4453 20.334L18.4502 20.3369L18.4561 20.3398C18.4573 20.3403 18.4608 20.3412 18.4658 20.3428L18.4697 20.3438H18.4707C18.472 20.3439 18.473 20.3447 18.4736 20.3447H18.4854L18.4893 20.3438H18.4912C18.4912 20.3438 18.4929 20.3427 18.4961 20.3418C18.4972 20.3415 18.4985 20.3414 18.5 20.3408H18.502L18.5068 20.3379C18.508 20.3373 18.5093 20.3372 18.5098 20.3369L18.5107 20.3359C18.5107 20.3359 18.5121 20.3348 18.5146 20.333C18.5151 20.3327 18.5176 20.3314 18.5215 20.3281L20.3242 18.5254C20.3262 18.5234 20.3288 18.5204 20.332 18.5166C20.3338 18.5141 20.3354 18.5127 20.3359 18.5117V18.5098C20.3362 18.5093 20.3377 18.5083 20.3389 18.5059C20.3397 18.5038 20.3403 18.5015 20.3408 18.5C20.3417 18.4971 20.3423 18.4946 20.3428 18.4922V18.4912C20.3428 18.4911 20.3433 18.4891 20.3438 18.4854V18.4844L20.3447 18.4824C20.3448 18.4813 20.3449 18.4787 20.3447 18.4746C20.3448 18.476 20.3442 18.4748 20.3438 18.4707C20.3436 18.4698 20.3433 18.4682 20.3428 18.4658C20.3422 18.4632 20.3418 18.4619 20.3418 18.4619V18.4609C20.3414 18.4596 20.3412 18.4581 20.3408 18.457C20.3396 18.4539 20.3382 18.4519 20.3379 18.4512C20.3373 18.4499 20.3371 18.4486 20.3369 18.4482L20.335 18.4453L19.4834 17.0273L19.0957 16.3799L19.3838 15.6816L19.8242 14.6182L20.1133 13.9199L20.8467 13.7363L22.4502 13.335C22.4534 13.3341 22.4554 13.3342 22.4561 13.334L22.459 13.333C22.4586 13.3331 22.4588 13.3325 22.46 13.332C22.4625 13.3309 22.4647 13.3307 22.4658 13.3301L22.4678 13.3291C22.469 13.3284 22.4704 13.327 22.4717 13.3262L22.4775 13.3223L22.4854 13.3145L22.4873 13.3115L22.4883 13.3105L22.4912 13.3047L22.4932 13.3018L22.4951 13.2979L22.4961 13.2949L22.498 13.2871C22.4981 13.2868 22.4985 13.2852 22.499 13.2822C22.4993 13.2799 22.4998 13.2776 22.5 13.2754V10.7197C22.4999 10.719 22.4992 10.7181 22.499 10.7168C22.4986 10.7143 22.4981 10.7131 22.498 10.7129L22.4971 10.707V10.7061C22.4963 10.7038 22.4952 10.7024 22.4951 10.7021C22.494 10.6997 22.4924 10.6976 22.4912 10.6953V10.6943L22.4854 10.6855L22.4785 10.6787L22.4766 10.6777C22.4757 10.6771 22.4752 10.6762 22.4746 10.6758L22.4717 10.6738C22.4704 10.673 22.4676 10.6709 22.4639 10.6689L22.459 10.667L22.4502 10.6641L20.8457 10.2637L20.1133 10.0801L19.8242 9.38184L19.3838 8.31836L19.0947 7.62012L19.4834 6.97266L20.335 5.55469L20.3408 5.54297C20.3403 5.54426 20.3404 5.54276 20.3418 5.53809C20.3418 5.53809 20.3422 5.53666 20.3428 5.53418C20.3434 5.53122 20.3436 5.52919 20.3438 5.52832V5.52539L20.3447 5.52051C20.3447 5.51984 20.3448 5.51881 20.3447 5.51758C20.3447 5.51688 20.3439 5.51562 20.3438 5.51367C20.3434 5.51107 20.3429 5.50935 20.3428 5.50879V5.50781C20.3425 5.50641 20.3421 5.50513 20.3418 5.50391C20.3415 5.5028 20.3416 5.50104 20.3408 5.49902L20.3389 5.49512V5.49414L20.3379 5.49316C20.3372 5.49185 20.3366 5.49032 20.3359 5.48926C20.3346 5.48705 20.3333 5.48576 20.333 5.48535V5.48438C20.3318 5.48271 20.3304 5.48185 20.3301 5.48145L20.3281 5.47852L18.5215 3.67188L18.5166 3.66797C18.5148 3.66671 18.5129 3.66575 18.5117 3.66504L18.5107 3.66406C18.5104 3.66384 18.5093 3.66286 18.5078 3.66211C18.5065 3.66145 18.5042 3.66046 18.501 3.65918C18.4986 3.65833 18.4964 3.6586 18.4951 3.6582V3.65723C18.494 3.65696 18.4923 3.65746 18.4912 3.65723L18.4902 3.65625H18.4727L18.4668 3.65723C18.4646 3.65775 18.4633 3.65808 18.4629 3.6582L18.4619 3.65918C18.4613 3.65935 18.4599 3.65943 18.458 3.66016C18.4568 3.66064 18.4546 3.66186 18.4521 3.66309L18.4512 3.66211C18.4501 3.66266 18.4495 3.66429 18.4482 3.66504L18.4463 3.66602L17.0273 4.51758L16.3799 4.90625L15.6816 4.61621L14.6182 4.17578L13.9199 3.88672L13.7363 3.15332L13.3369 1.55078C13.3362 1.5481 13.3354 1.54619 13.335 1.54492V1.54297L13.3281 1.5293V1.53027C13.3274 1.52908 13.3258 1.52738 13.3242 1.52539V1.52441C13.3242 1.52442 13.3234 1.52293 13.3213 1.52051V1.52148L13.3145 1.51465L13.3086 1.51074C13.3076 1.51012 13.3065 1.50882 13.3047 1.50781C13.3023 1.50655 13.2994 1.50599 13.2969 1.50488V1.50391H13.2949L13.2939 1.50293C13.2939 1.50293 13.2932 1.50231 13.292 1.50195C13.2885 1.50109 13.2851 1.50147 13.2822 1.50098L13.2812 1.5H10.7207L10.7178 1.50098ZM12 5.40625C15.6416 5.40625 18.5938 8.35837 18.5938 12C18.5938 15.6416 15.6416 18.5938 12 18.5938C8.35837 18.5938 5.40625 15.6416 5.40625 12C5.40625 8.35837 8.35837 5.40625 12 5.40625ZM12 6.90625C9.1868 6.90625 6.90625 9.1868 6.90625 12C6.90625 14.8132 9.1868 17.0938 12 17.0938C14.8132 17.0938 17.0938 14.8132 17.0938 12C17.0938 9.1868 14.8132 6.90625 12 6.90625ZM12.001 8.5332C12.4152 8.5332 12.751 8.86899 12.751 9.2832V11.25H14.7178C15.132 11.25 15.4678 11.5858 15.4678 12C15.4678 12.4142 15.132 12.75 14.7178 12.75H12.751V14.7178C12.7507 15.1318 12.415 15.4678 12.001 15.4678C11.5869 15.4678 11.2512 15.1318 11.251 14.7178V12.75H9.2832C8.86899 12.75 8.5332 12.4142 8.5332 12C8.5332 11.5858 8.86899 11.25 9.2832 11.25H11.251V9.2832C11.251 8.86899 11.5868 8.5332 12.001 8.5332Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M12 2.75C8.54822 2.75 5.75 5.54822 5.75 9C5.75 12.4518 8.54822 15.25 12 15.25C15.4518 15.25 18.25 12.4518 18.25 9C18.25 5.54822 15.4518 2.75 12 2.75ZM4.25 9C4.25 4.71979 7.71979 1.25 12 1.25C16.2802 1.25 19.75 4.71979 19.75 9C19.75 13.2802 16.2802 16.75 12 16.75C7.71979 16.75 4.25 13.2802 4.25 9ZM18.6164 1.46443C18.9122 1.17446 19.387 1.17918 19.677 1.47497C21.5771 3.41323 22.75 6.0704 22.75 9C22.75 14.6849 18.3372 19.3392 12.75 19.7242V21.25H14C14.4142 21.25 14.75 21.5858 14.75 22C14.75 22.4142 14.4142 22.75 14 22.75H12H10C9.58579 22.75 9.25 22.4142 9.25 22C9.25 21.5858 9.58579 21.25 10 21.25H11.25V19.7242C8.61838 19.5427 6.24643 18.4136 4.47497 16.677C4.17918 16.387 4.17446 15.9122 4.46443 15.6164C4.75439 15.3206 5.22924 15.3159 5.52503 15.6059C7.19427 17.2422 9.4787 18.25 12 18.25C17.1086 18.25 21.25 14.1086 21.25 9C21.25 6.4787 20.2422 4.19427 18.6059 2.52503C18.3159 2.22924 18.3206 1.75439 18.6164 1.46443Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M10.9879 3.30118C11.3781 2.88858 11.7204 2.75 12 2.75C12.2796 2.75 12.6219 2.88858 13.0121 3.30118C13.4038 3.71536 13.7911 4.35495 14.1321 5.20748C14.388 5.84734 14.6096 6.58631 14.7865 7.4025C13.8962 7.30277 12.9616 7.25 12 7.25C11.0384 7.25 10.1038 7.30277 9.21354 7.4025C9.3904 6.58631 9.61199 5.84734 9.86793 5.20748C10.2089 4.35495 10.5962 3.71536 10.9879 3.30118ZM7.63641 7.63641C7.84323 6.52904 8.12744 5.51983 8.47522 4.65039C8.69034 4.11258 8.93444 3.61652 9.20735 3.17903C6.34478 4.08446 4.08446 6.34478 3.17903 9.20735C3.61652 8.93444 4.11258 8.69034 4.65039 8.47522C5.51983 8.12744 6.52904 7.84323 7.63641 7.63641ZM2.75 12C2.75 12.0002 2.75 12.0003 2.75 12.0005C2.75016 12.28 2.88881 12.6221 3.30118 13.0121C3.71536 13.4038 4.35495 13.7911 5.20748 14.1321C5.84734 14.388 6.58631 14.6096 7.4025 14.7865C7.30277 13.8962 7.25 12.9616 7.25 12C7.25 11.0384 7.30277 10.1038 7.4025 9.21354C6.58631 9.3904 5.84734 9.61199 5.20747 9.86793C4.35495 10.2089 3.71536 10.5962 3.30118 10.9879C2.88858 11.3781 2.75 11.7204 2.75 12ZM8.94628 15.0537C8.81954 14.0991 8.75 13.0726 8.75 12C8.75 10.9274 8.81954 9.90086 8.94628 8.94628C9.90086 8.81954 10.9274 8.75 12 8.75C13.0726 8.75 14.0991 8.81954 15.0537 8.94628C15.1805 9.90086 15.25 10.9274 15.25 12C15.25 13.0726 15.1805 14.0991 15.0537 15.0537C14.0991 15.1805 13.0726 15.25 12 15.25C10.9274 15.25 9.90086 15.1805 8.94628 15.0537ZM7.63641 16.3636C6.52904 16.1568 5.51983 15.8726 4.65039 15.5248C4.11258 15.3097 3.61652 15.0656 3.17903 14.7927C4.08446 17.6552 6.34478 19.9155 9.20735 20.821C8.93444 20.3835 8.69034 19.8874 8.47522 19.3496C8.12744 18.4802 7.84323 17.471 7.63641 16.3636ZM1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12ZM20.821 9.20735C19.9155 6.34478 17.6552 4.08446 14.7927 3.17903C15.0656 3.61652 15.3097 4.11258 15.5248 4.65039C15.8726 5.51983 16.1568 6.52904 16.3636 7.63641C17.471 7.84323 18.4802 8.12744 19.3496 8.47522C19.8874 8.69034 20.3835 8.93444 20.821 9.20735ZM16.5975 9.21354C17.4137 9.3904 18.1527 9.61199 18.7925 9.86793C19.6451 10.2089 20.2846 10.5962 20.6988 10.9879C21.1114 11.3781 21.25 11.7204 21.25 12C21.25 12.2796 21.1114 12.6219 20.6988 13.0121C20.2846 13.4038 19.6451 13.7911 18.7925 14.1321C18.1527 14.388 17.4137 14.6096 16.5975 14.7865C16.6972 13.8962 16.75 12.9616 16.75 12C16.75 11.0384 16.6972 10.1038 16.5975 9.21354ZM16.3636 16.3636C17.471 16.1568 18.4802 15.8726 19.3496 15.5248C19.8874 15.3097 20.3835 15.0656 20.821 14.7927C19.9155 17.6552 17.6552 19.9155 14.7927 20.821C15.0656 20.3835 15.3097 19.8874 15.5248 19.3496C15.8726 18.4802 16.1568 17.471 16.3636 16.3636ZM14.7865 16.5975C14.6096 17.4137 14.388 18.1527 14.1321 18.7925C13.7911 19.6451 13.4038 20.2846 13.0121 20.6988C12.6219 21.1114 12.2796 21.25 12 21.25C11.7204 21.25 11.3781 21.1114 10.9879 20.6988C10.5962 20.2846 10.2089 19.6451 9.86793 18.7925C9.61199 18.1527 9.3904 17.4137 9.21354 16.5975C10.1038 16.6972 11.0384 16.75 12 16.75C12.9616 16.75 13.8962 16.6972 14.7865 16.5975Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.94428 1.72413C12.0233 1.35467 14.7869 1.28002 16.6962 2.91944L19.0292 4.92335L19.0956 4.98683C19.1575 5.05483 19.2067 5.135 19.2402 5.2212L19.9824 7.13038L20.1874 7.30616C20.4631 7.0901 20.8626 7.09194 21.1386 7.32862L23.4081 9.27784C23.7221 9.54776 23.758 10.0213 23.4882 10.3355L20.6552 13.6343C20.3855 13.9481 19.9118 13.9846 19.5976 13.7153L17.3281 11.7661C17.0685 11.543 17.0016 11.1816 17.1376 10.8853L15.8603 9.78858L14.3681 11.478C14.3202 11.5322 14.2642 11.5749 14.206 11.6118L5.82123 21.3745C5.37145 21.8981 4.58221 21.958 4.05854 21.5083L1.43549 19.2554C0.911817 18.8056 0.85206 18.0164 1.3017 17.4927L9.67572 7.74073C9.70528 7.66966 9.74403 7.60114 9.79682 7.53956L11.4794 5.5796C11.4898 5.5675 11.4955 5.55409 11.5029 5.54444C11.4829 5.52603 11.4555 5.50216 11.4179 5.47511C11.093 5.24114 10.4609 5.01095 9.65815 4.81593C8.88538 4.62824 8.05431 4.4957 7.40912 4.40968C7.088 4.36687 6.81555 4.33595 6.62494 4.31593C6.53024 4.30598 6.45567 4.29919 6.40522 4.29444C6.37996 4.29207 6.36019 4.28971 6.3476 4.28858C6.34158 4.28805 6.33687 4.28692 6.33393 4.28663C6.3328 4.28653 6.33158 4.2876 6.331 4.28761C5.98898 4.25865 5.71021 4.00025 5.65424 3.66163C5.59853 3.3232 5.77851 2.98949 6.09272 2.85206L6.3935 3.53956L6.09467 2.85206L6.09662 2.85108C6.09781 2.85052 6.09967 2.84992 6.1015 2.84913C6.10555 2.84741 6.11123 2.8452 6.11811 2.84229C6.13265 2.8361 6.15404 2.82598 6.18061 2.81495C6.23363 2.79295 6.31003 2.76218 6.40717 2.72413C6.60239 2.64766 6.88313 2.54261 7.22846 2.42628C7.91722 2.19428 8.87501 1.91417 9.94428 1.72413ZM2.60248 18.2808L4.84565 20.2075L12.7197 11.0386L10.4755 9.11183L2.60248 18.2808ZM18.8749 11.1167L20.0058 12.0884L21.8622 9.92726L20.7304 8.95558L18.8749 11.1167ZM15.7197 4.05714C14.3622 2.89151 12.2182 2.84331 10.207 3.20069C10.0441 3.22964 9.88352 3.26039 9.7265 3.29347C9.8221 3.3149 9.91778 3.33586 10.0126 3.3589C10.8281 3.55701 11.7133 3.83933 12.2949 4.25831C12.5871 4.46889 12.9111 4.79149 13.0097 5.25538C13.1162 5.75768 12.9172 6.20767 12.6171 6.55714L11.4619 7.90089L13.7724 9.88624L15.2265 8.24073C15.498 7.93436 15.9655 7.90204 16.2763 8.16847L18.0908 9.72706L19.1992 8.43507L18.8632 8.14601C18.7697 8.06571 18.6969 7.96399 18.6523 7.84913L17.9101 5.93897L15.7197 4.05714Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M12 1.25C8.78914 1.25 6.13821 2.58674 4.31407 3.8897C3.70169 4.32711 3.17725 4.76436 2.75 5.15307V3C2.75 2.58579 2.41421 2.25 2 2.25C1.58579 2.25 1.25 2.58579 1.25 3V7C1.25 7.41421 1.58579 7.75 2 7.75H5.5C5.91421 7.75 6.25 7.41421 6.25 7C6.25 6.58579 5.91421 6.25 5.5 6.25H3.7733C4.15999 5.89905 4.63392 5.50459 5.18593 5.1103C6.86179 3.91326 9.21086 2.75 12 2.75C14.8296 2.75 17.1293 3.68991 18.7197 5.28033C20.3101 6.87075 21.25 9.17044 21.25 12C21.25 14.8296 20.3101 17.1293 18.7197 18.7197C17.1293 20.3101 14.8296 21.25 12 21.25C6.46344 21.25 2.75 16.6074 2.75 12C2.75 11.5858 2.41421 11.25 2 11.25C1.58579 11.25 1.25 11.5858 1.25 12C1.25 17.3338 5.53656 22.75 12 22.75C15.1704 22.75 17.8707 21.6899 19.7803 19.7803C21.6899 17.8707 22.75 15.1704 22.75 12C22.75 8.82956 21.6899 6.12925 19.7803 4.21967C17.8707 2.31009 15.1704 1.25 12 1.25ZM12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8V12C11.25 12.2508 11.3753 12.4849 11.584 12.624L14.584 14.624C14.9286 14.8538 15.3943 14.7607 15.624 14.416C15.8538 14.0714 15.7607 13.6057 15.416 13.376L12.75 11.5986V8Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" d="M7 6.25C7.41421 6.25 7.75 6.58579 7.75 7V17C7.75 17.4142 7.41421 17.75 7 17.75C6.58579 17.75 6.25 17.4142 6.25 17V7C6.25 6.58579 6.58579 6.25 7 6.25ZM12 6.25C13.4923 6.25 14.6386 6.24998 15.5039 6.29004C16.3471 6.3291 17.0292 6.40816 17.5381 6.62012C17.8098 6.73332 18.0545 6.89273 18.251 7.12012C18.4472 7.34723 18.5621 7.60345 18.6309 7.86133C18.756 8.33053 18.75 8.91718 18.75 9.5C18.75 10.0828 18.756 10.6695 18.6309 11.1387C18.5621 11.3965 18.4472 11.6528 18.251 11.8799C18.0545 12.1073 17.8098 12.2667 17.5381 12.3799C17.0292 12.5918 16.3471 12.6709 15.5039 12.71C14.7896 12.743 13.8838 12.747 12.75 12.748V17C12.75 17.4142 12.4142 17.75 12 17.75C11.5858 17.75 11.25 17.4142 11.25 17V7C11.25 6.58579 11.5858 6.25 12 6.25ZM12.75 11.248C13.8826 11.2471 14.7543 11.2433 15.4336 11.2119C16.2775 11.1728 16.721 11.0955 16.9619 10.9951C17.065 10.9521 17.1018 10.9161 17.1162 10.8994C17.1309 10.8824 17.1567 10.8456 17.1816 10.752C17.244 10.518 17.25 10.1671 17.25 9.5C17.25 8.83293 17.244 8.48197 17.1816 8.24805C17.1567 8.15442 17.1309 8.11758 17.1162 8.10059C17.1018 8.08386 17.065 8.04787 16.9619 8.00488C16.721 7.90449 16.2775 7.82715 15.4336 7.78809C14.7543 7.75665 13.8826 7.75197 12.75 7.75098V11.248Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.4 2.25H9.367H9.36697C8.27484 2.25 7.40935 2.24999 6.71173 2.30699C5.99834 2.36527 5.39472 2.48688 4.84354 2.76772C3.94978 3.22312 3.22312 3.94978 2.76772 4.84355C2.48688 5.39472 2.36527 5.99835 2.30699 6.71173C2.24999 7.40936 2.24999 8.27486 2.25 9.367L2.25 9.4V16.25H1.44444C0.784771 16.25 0.25 16.7848 0.25 17.4444C0.25 19.8223 2.17766 21.75 4.55556 21.75H19.4444C21.8223 21.75 23.75 19.8223 23.75 17.4444C23.75 16.7848 23.2152 16.25 22.5556 16.25H21.75V9.4V9.36698C21.75 8.27485 21.75 7.40935 21.693 6.71173C21.6347 5.99835 21.5131 5.39472 21.2323 4.84355C20.7769 3.94978 20.0502 3.22312 19.1565 2.76772C18.6053 2.48688 18.0017 2.36527 17.2883 2.30699C16.5907 2.24999 15.7252 2.25 14.633 2.25H14.633H14.6H9.4ZM20.25 16.25V9.4C20.25 8.26752 20.2494 7.46327 20.198 6.83388C20.1473 6.21325 20.0509 5.829 19.8958 5.52453C19.5842 4.913 19.087 4.41582 18.4755 4.10423C18.171 3.94909 17.7867 3.85271 17.1661 3.80201C16.5367 3.75058 15.7325 3.75 14.6 3.75H9.4C8.26752 3.75 7.46326 3.75058 6.83388 3.80201C6.21325 3.85271 5.829 3.94909 5.52453 4.10423C4.913 4.41582 4.41582 4.913 4.10423 5.52453C3.94909 5.829 3.85271 6.21325 3.80201 6.83388C3.75058 7.46327 3.75 8.26752 3.75 9.4V16.25H20.25ZM3 17.75H1.76645C1.9187 19.1557 3.10934 20.25 4.55556 20.25H19.4444C20.8907 20.25 22.0813 19.1557 22.2336 17.75H21H3Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M13.0535 2.76989C12.8837 2.5843 12.6322 2.49618 12.3836 2.53526C12.3842 2.53517 12.3845 2.53511 12.3845 2.53511C12.3845 2.53513 12.342 2.54393 12.245 2.61256C12.1391 2.68745 12.0007 2.8103 11.8166 3.00426C11.4442 3.39651 10.9762 3.98055 10.3117 4.81111L5.70522 10.5692C5.19658 11.205 4.84813 11.6418 4.6217 11.9843C4.38761 12.3384 4.37113 12.4686 4.37109 12.4992C4.37085 12.7276 4.4747 12.9437 4.65321 13.0861C4.67708 13.1052 4.78909 13.1737 5.21182 13.2121C5.62071 13.2492 6.17942 13.25 6.99366 13.25H7.60016H7.62908C8.02444 13.25 8.3655 13.25 8.64643 13.2729C8.94294 13.2971 9.23785 13.3506 9.52164 13.4952C9.945 13.7109 10.2892 14.0551 10.5049 14.4785C10.6495 14.7623 10.703 15.0572 10.7272 15.3537C10.7502 15.6346 10.7502 15.9757 10.7502 16.3711V16.4V18.1581C10.7502 19.2218 10.7508 19.9702 10.7965 20.5091C10.8191 20.7756 10.8505 20.958 10.8864 21.0826C10.918 21.1924 10.9448 21.2275 10.9468 21.2301C11.1166 21.4157 11.3682 21.5038 11.6167 21.4647C11.6091 21.4659 11.6502 21.4617 11.7553 21.3874C11.8612 21.3125 11.9996 21.1897 12.1837 20.9957C12.5561 20.6035 13.0241 20.0194 13.6886 19.1889L18.2951 13.4307C18.8037 12.7949 19.1522 12.3582 19.3786 12.0157C19.6127 11.6616 19.6292 11.5313 19.6292 11.5008C19.6295 11.2724 19.5256 11.0563 19.3471 10.9138C19.3232 10.8948 19.2112 10.8263 18.7885 10.7879C18.3796 10.7507 17.8209 10.75 17.0067 10.75H16.4002H16.3712C15.9759 10.75 15.6348 10.75 15.3539 10.7271C15.0574 10.7028 14.7625 10.6493 14.4787 10.5047C14.0553 10.289 13.7111 9.94483 13.4954 9.52146C13.3508 9.23768 13.2973 8.94276 13.2731 8.64626C13.2501 8.36533 13.2501 8.02426 13.2502 7.62891V7.59999V5.84186C13.2502 4.77822 13.2495 4.02976 13.2038 3.49087C13.1812 3.2244 13.1498 3.04198 13.1139 2.91735C13.0823 2.80739 13.0554 2.77234 13.0535 2.76989ZM12.1506 1.05348C12.8968 0.936108 13.6522 1.20107 14.1616 1.75892C14.5448 2.17849 14.6494 2.78637 14.6984 3.36412C14.7502 3.97421 14.7502 4.78683 14.7502 5.80372V5.84186V7.59999C14.7502 8.0324 14.7507 8.3116 14.7681 8.52411C14.7847 8.72786 14.813 8.80339 14.8319 8.84048C14.9038 8.9816 15.0185 9.09633 15.1597 9.16824C15.1967 9.18713 15.2723 9.21539 15.476 9.23204C15.6885 9.2494 15.9677 9.24998 16.4002 9.24998H17.0067H17.0446C17.8116 9.24997 18.4391 9.24996 18.9242 9.29402C19.4034 9.33754 19.8962 9.43289 20.2829 9.74151C20.8184 10.169 21.13 10.8172 21.1292 11.5024C21.1287 11.9971 20.8952 12.4416 20.6299 12.8429C20.3613 13.2492 19.9692 13.7392 19.49 14.3382L19.4664 14.3678L14.8599 20.1259L14.8361 20.1557C14.2008 20.9497 13.6932 21.5843 13.2717 22.0284C12.8725 22.4489 12.411 22.8582 11.8497 22.9465C11.1035 23.0639 10.3481 22.7989 9.83869 22.2411C9.45554 21.8215 9.35088 21.2136 9.30188 20.6359C9.25014 20.0258 9.25015 19.2131 9.25016 18.1962V18.1581V16.4C9.25016 15.9676 9.24957 15.6884 9.23221 15.4759C9.21556 15.2721 9.18731 15.1966 9.16841 15.1595C9.09651 15.0184 8.98177 14.9036 8.84065 14.8317C8.80357 14.8128 8.72803 14.7846 8.52428 14.7679C8.31178 14.7506 8.03257 14.75 7.60016 14.75H6.99366H6.95573C6.18868 14.75 5.56117 14.75 5.07613 14.7059C4.59695 14.6624 4.10407 14.5671 3.71743 14.2585C3.1819 13.831 2.87036 13.1828 2.8711 12.4976C2.87163 12.0028 3.10508 11.5584 3.37044 11.157C3.63904 10.7508 4.03106 10.2607 4.51026 9.66177L4.53392 9.63219L9.14042 3.87407L9.16422 3.84432C9.79947 3.05025 10.3071 2.41568 10.7286 1.97159C11.1278 1.55106 11.5893 1.14176 12.1506 1.05348Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M3 5C3.55228 5 4 4.55228 4 4C4 3.44772 3.55228 3 3 3C2.44772 3 2 3.44772 2 4C2 4.55228 2.44772 5 3 5ZM8.25 4C8.25 3.58579 8.58579 3.25 9 3.25L22 3.25C22.4142 3.25 22.75 3.58579 22.75 4C22.75 4.41421 22.4142 4.75 22 4.75L9 4.75C8.58579 4.75 8.25 4.41421 8.25 4ZM9 11.25C8.58579 11.25 8.25 11.5858 8.25 12C8.25 12.4142 8.58579 12.75 9 12.75L22 12.75C22.4142 12.75 22.75 12.4142 22.75 12C22.75 11.5858 22.4142 11.25 22 11.25L9 11.25ZM9 19.25C8.58579 19.25 8.25 19.5858 8.25 20C8.25 20.4142 8.58579 20.75 9 20.75L22 20.75C22.4142 20.75 22.75 20.4142 22.75 20C22.75 19.5858 22.4142 19.25 22 19.25L9 19.25ZM4 12C4 12.5523 3.55228 13 3 13C2.44772 13 2 12.5523 2 12C2 11.4477 2.44772 11 3 11C3.55228 11 4 11.4477 4 12ZM3 21C3.55228 21 4 20.5523 4 20C4 19.4477 3.55228 19 3 19C2.44772 19 2 19.4477 2 20C2 20.5523 2.44772 21 3 21Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M5.68784 4.11564C6.5011 3.67204 6.91301 3.45187 7.25015 3.33278V18.5052C7.21634 18.5124 7.1826 18.52 7.14892 18.528C6.52863 18.6753 5.95476 18.9884 5.06395 19.4746L4.96956 19.5261L4.24379 19.9219C3.80221 20.1628 3.51623 20.3179 3.29716 20.4126C3.12964 20.485 3.06357 20.4929 3.05262 20.4938C2.95902 20.481 2.87457 20.4309 2.81849 20.3548C2.81406 20.3448 2.78935 20.283 2.77269 20.1013C2.7509 19.8636 2.75015 19.5383 2.75015 19.0353V6.6975C2.75015 6.12711 2.75929 6.0142 2.78856 5.92629C2.82254 5.82424 2.87807 5.7307 2.95139 5.652C3.01455 5.5842 3.10929 5.52211 3.61004 5.24898L5.68784 4.11564ZM8.82406 18.435C8.79944 18.4319 8.7748 18.4291 8.75015 18.4265V3.2125C9.12764 3.2772 9.55443 3.44623 10.5326 3.84641L12.8997 4.81476L12.9992 4.85549C13.9384 5.23992 14.5435 5.48757 15.1762 5.56517C15.2009 5.56819 15.2255 5.57101 15.2501 5.57364V20.7876C14.8727 20.7229 14.4459 20.5539 13.4677 20.1537L11.1006 19.1854L11.0011 19.1446C10.0619 18.7602 9.45684 18.5125 8.82406 18.435ZM16.7501 20.6673C17.0873 20.5483 17.4992 20.3281 18.3125 19.8845L20.3903 18.7511C20.891 18.478 20.9858 18.4159 21.0489 18.3481C21.1222 18.2694 21.1778 18.1759 21.2117 18.0738C21.241 17.9859 21.2502 17.873 21.2502 17.3026V4.96485C21.2502 4.46186 21.2494 4.13651 21.2276 3.89886C21.2109 3.71714 21.1862 3.65536 21.1818 3.64529C21.1257 3.56926 21.0413 3.51913 20.9477 3.5063C20.9367 3.50723 20.8707 3.51512 20.7031 3.58751C20.4841 3.68218 20.1981 3.83732 19.7565 4.07818L19.0307 4.47405L18.9364 4.52555C18.0455 5.01168 17.4717 5.32484 16.8514 5.47208C16.8177 5.48007 16.784 5.48769 16.7501 5.49494V20.6673ZM7.14892 1.80077C7.69735 1.67059 8.26458 1.63907 8.82406 1.70768C9.45684 1.78528 10.0619 2.03293 11.0011 2.41736L11.1006 2.45808L13.4677 3.42644C14.5405 3.86534 14.9501 4.0262 15.3588 4.07632C15.7416 4.12326 16.1297 4.10169 16.505 4.01263C16.9056 3.91753 17.2948 3.71228 18.3125 3.15721L19.0382 2.76134L19.0684 2.74486L19.0684 2.74486C19.4713 2.52511 19.8181 2.33589 20.1081 2.21059C20.4028 2.08324 20.7482 1.97069 21.1247 2.01674C21.639 2.07963 22.1033 2.35525 22.4047 2.77657C22.6254 3.08508 22.692 3.4422 22.7213 3.76189C22.7502 4.07645 22.7502 4.47161 22.7502 4.93048V4.96485V17.3026L22.7502 17.3922C22.7508 17.821 22.7513 18.1983 22.6349 18.5477C22.533 18.8539 22.3664 19.1345 22.1464 19.3706C21.8954 19.64 21.564 19.8203 21.1872 20.0252L21.1085 20.068L19.0307 21.2013L18.9363 21.2528C18.0455 21.739 17.4717 22.0521 16.8514 22.1993C16.3029 22.3295 15.7357 22.361 15.1762 22.2924C14.5435 22.2148 13.9384 21.9672 12.9992 21.5828L12.8997 21.542L10.5326 20.5737C9.45976 20.1348 9.0502 19.9739 8.64148 19.9238C8.25868 19.8769 7.87058 19.8984 7.49534 19.9875C7.09469 20.0826 6.70547 20.2878 5.68784 20.8429L4.96207 21.2388L4.93189 21.2552L4.93185 21.2553L4.93177 21.2553C4.52898 21.475 4.18213 21.6642 3.8922 21.7895C3.59751 21.9169 3.2521 22.0294 2.87557 21.9834C2.36134 21.9205 1.89705 21.6449 1.5956 21.2235C1.37487 20.915 1.30827 20.5579 1.27896 20.2382C1.25012 19.9237 1.25013 19.5285 1.25015 19.0696L1.25015 19.0353V6.6975L1.25007 6.60792C1.24953 6.17907 1.24904 5.8018 1.36539 5.4524C1.46733 5.14625 1.63392 4.86562 1.85387 4.62952C2.1049 4.36008 2.43634 4.17984 2.81308 3.97497L2.81308 3.97497L2.89177 3.93213L4.96956 2.79879L5.06395 2.74729C5.95477 2.26116 6.52863 1.948 7.14892 1.80077Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M11.9229 0.525574C12.5276 0.153588 13.2974 0.183505 13.8711 0.601746L20.8418 5.68671C21.2932 6.01616 21.5605 6.54188 21.5605 7.10077V22.1906H22.7334C23.1475 22.1906 23.4832 22.5265 23.4834 22.9406C23.4834 23.3548 23.1476 23.6906 22.7334 23.6906H1.2334C0.819185 23.6906 0.483398 23.3548 0.483398 22.9406C0.483564 22.5265 0.819287 22.1906 1.2334 22.1906H2.43945V11.7473C2.43956 11.0841 2.8148 10.478 3.4082 10.1818L6.05566 8.86053V5.11249C6.05577 4.50485 6.37114 3.94068 6.88867 3.62225L11.9229 0.525574ZM12.9873 1.81366C12.9054 1.75401 12.7953 1.74981 12.709 1.80292L7.6748 4.8996C7.60098 4.94505 7.55577 5.0258 7.55566 5.11249V8.11151L10.2021 6.7912C11.3655 6.21076 12.7331 7.05659 12.7334 8.35663V12.6144H14.9365C15.903 12.6144 16.6865 13.3979 16.6865 14.3644V22.1906H20.0605V7.10077C20.0605 7.02109 20.0223 6.9457 19.958 6.89862L12.9873 1.81366ZM9.03027 14.1144C8.8922 14.1144 8.78027 14.2264 8.78027 14.3644V22.1906H15.1865V14.3644C15.1865 14.2264 15.0746 14.1144 14.9365 14.1144H9.03027ZM11.2334 8.35663C11.2331 8.17125 11.0381 8.05049 10.8721 8.133L4.07812 11.5236C3.99346 11.5659 3.93956 11.6526 3.93945 11.7473V22.1906H7.28027V14.3644C7.28027 13.3979 8.06377 12.6144 9.03027 12.6144H11.2334V8.35663Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M12 2.75C9.65279 2.75 7.75 4.65279 7.75 7C7.75 9.34721 9.65279 11.25 12 11.25C14.3472 11.25 16.25 9.34721 16.25 7C16.25 4.65279 14.3472 2.75 12 2.75ZM12.75 12.7015C15.5713 12.334 17.75 9.92145 17.75 7C17.75 3.82436 15.1756 1.25 12 1.25C8.82436 1.25 6.25 3.82436 6.25 7C6.25 9.92145 8.42873 12.334 11.25 12.7015V18C11.25 18.4142 11.5858 18.75 12 18.75C12.4142 18.75 12.75 18.4142 12.75 18V12.7015ZM7.73404 13.8461C7.81904 14.2515 7.55931 14.649 7.15391 14.734C5.57311 15.0655 4.443 15.5624 3.72556 16.1201C3.01891 16.6695 2.75 17.2416 2.75 17.7807C2.75 18.1054 2.90279 18.4803 3.31553 18.8921C3.73117 19.3067 4.37051 19.7146 5.22049 20.0732C6.91744 20.7892 9.31389 21.25 12 21.25C14.6861 21.25 17.0826 20.7892 18.7795 20.0732C19.6295 19.7146 20.2688 19.3067 20.6845 18.8921C21.0972 18.4803 21.25 18.1054 21.25 17.7807C21.25 17.2416 20.9811 16.6695 20.2744 16.1201C19.557 15.5624 18.4269 15.0655 16.8461 14.734C16.4407 14.649 16.181 14.2515 16.266 13.8461C16.351 13.4407 16.7485 13.181 17.1539 13.266C18.8658 13.6249 20.2357 14.1901 21.1951 14.9359C22.1653 15.6901 22.75 16.6632 22.75 17.7807C22.75 18.6211 22.3431 19.3562 21.7438 19.954C21.1474 20.549 20.3223 21.0503 19.3626 21.4552C17.4403 22.2663 14.8367 22.75 12 22.75C9.16326 22.75 6.55971 22.2663 4.63737 21.4552C3.67771 21.0503 2.85259 20.549 2.25617 19.954C1.65685 19.3562 1.25 18.6211 1.25 17.7807C1.25 16.6632 1.83474 15.6901 2.80491 14.9359C3.7643 14.1901 5.13419 13.6249 6.84609 13.266C7.25148 13.181 7.64903 13.4407 7.73404 13.8461Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M5.75 8.80006C5.75 5.25042 8.4882 2.75 12 2.75C15.5118 2.75 18.25 5.25042 18.25 8.80006C18.25 11.7034 16.9978 13.8182 15.5601 15.2183C14.8382 15.9212 14.0739 16.4389 13.4093 16.7777C12.7191 17.1296 12.2133 17.25 12 17.25C11.7867 17.25 11.2809 17.1296 10.5907 16.7777C9.9261 16.4389 9.16178 15.9212 8.43991 15.2183C7.00217 13.8182 5.75 11.7034 5.75 8.80006ZM12 1.25C7.73402 1.25 4.25 4.34964 4.25 8.80006C4.25 12.1782 5.72005 14.6634 7.39342 16.2929C8.22711 17.1048 9.11557 17.7093 9.90935 18.114C10.6774 18.5056 11.4356 18.75 12 18.75C12.5644 18.75 13.3226 18.5056 14.0907 18.114C14.8844 17.7093 15.7729 17.1048 16.6066 16.2929C18.2799 14.6634 19.75 12.1782 19.75 8.80006C19.75 4.34964 16.266 1.25 12 1.25ZM12 6.75C11.3096 6.75 10.75 7.30964 10.75 8C10.75 8.69036 11.3096 9.25 12 9.25C12.6904 9.25 13.25 8.69036 13.25 8C13.25 7.30964 12.6904 6.75 12 6.75ZM9.25 8C9.25 6.48122 10.4812 5.25 12 5.25C13.5188 5.25 14.75 6.48122 14.75 8C14.75 9.51878 13.5188 10.75 12 10.75C10.4812 10.75 9.25 9.51878 9.25 8ZM4.92345 16.734C5.07038 17.1212 4.87555 17.5543 4.48827 17.7012C3.83542 17.9489 3.36741 18.2115 3.07621 18.4595C2.7811 18.7108 2.75 18.8715 2.75 18.9299C2.75 18.9981 2.79718 19.2064 3.22642 19.5179C3.63898 19.8174 4.28423 20.1183 5.14905 20.3838C6.86949 20.912 9.29184 21.25 12 21.25C14.7082 21.25 17.1305 20.912 18.8509 20.3838C19.7158 20.1183 20.361 19.8174 20.7736 19.5179C21.2028 19.2064 21.25 18.9981 21.25 18.9299C21.25 18.8715 21.2189 18.7108 20.9238 18.4595C20.6326 18.2115 20.1646 17.9489 19.5117 17.7012C19.1245 17.5543 18.9296 17.1212 19.0766 16.734C19.2235 16.3467 19.6565 16.1518 20.0438 16.2988C20.7808 16.5784 21.4239 16.9151 21.8963 17.3175C22.3649 17.7165 22.75 18.257 22.75 18.9299C22.75 19.7094 22.2375 20.3088 21.6547 20.7319C21.0552 21.167 20.236 21.5277 19.2912 21.8177C17.3923 22.4007 14.8147 22.75 12 22.75C9.18532 22.75 6.60766 22.4007 4.70881 21.8177C3.76399 21.5277 2.94478 21.167 2.34528 20.7319C1.76246 20.3088 1.25 19.7094 1.25 18.9299C1.25 18.257 1.63512 17.7165 2.10368 17.3175C2.57615 16.9151 3.21925 16.5784 3.95617 16.2988C4.34345 16.1518 4.77651 16.3467 4.92345 16.734Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M8.00002 1.25C8.41423 1.25 8.75002 1.58579 8.75002 2V6.25H15.25V2C15.25 1.58579 15.5858 1.25 16 1.25C16.4142 1.25 16.75 1.58579 16.75 2V6.25209C17.235 6.25744 17.5994 6.27618 17.9267 6.34127C19.811 6.71608 21.2839 8.18904 21.6587 10.0733C21.7502 10.5332 21.7502 11.0666 21.75 11.9047L21.75 12V13V13.0554C21.75 13.9317 21.75 14.4296 21.7079 14.8576C21.2987 19.0119 18.012 22.2987 13.8577 22.7079C13.4296 22.75 12.9317 22.75 12.0556 22.75H12.0555H12.0555H12H11.9446H11.9445H11.9445C11.0683 22.75 10.5704 22.75 10.1424 22.7079C5.98807 22.2987 2.70131 19.0119 2.29215 14.8576C2.24999 14.4296 2.25 13.9317 2.25002 13.0555L2.25002 13.0554L2.25002 13V12L2.25001 11.9047C2.24988 11.0667 2.24981 10.5332 2.34129 10.0733C2.71609 8.18904 4.18906 6.71608 6.07334 6.34127C6.40059 6.27618 6.76506 6.25744 7.25002 6.25209V2C7.25002 1.58579 7.5858 1.25 8.00002 1.25ZM16 7.75H8.00002C7.03476 7.75 6.66166 7.75363 6.36597 7.81245C5.07673 8.06889 4.06891 9.07671 3.81247 10.366C3.75365 10.6616 3.75002 11.0347 3.75002 12V13C3.75002 13.9465 3.75093 14.3654 3.78493 14.7106C4.12395 18.1528 6.84726 20.8761 10.2894 21.2151C10.6346 21.2491 11.0535 21.25 12 21.25C12.9465 21.25 13.3654 21.2491 13.7106 21.2151C17.1528 20.8761 19.8761 18.1528 20.2151 14.7106C20.2491 14.3654 20.25 13.9465 20.25 13V12C20.25 11.0347 20.2464 10.6616 20.1876 10.366C19.9311 9.07671 18.9233 8.06889 17.6341 7.81245C17.3384 7.75363 16.9653 7.75 16 7.75Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M1.25 12C1.25 6.06454 6.02863 1.25 12 1.25C15.5536 1.25 18.2167 2.71897 19.9773 4.17147C20.4706 4.57844 20.8947 4.98535 21.25 5.36063V4C21.25 3.58579 21.5858 3.25 22 3.25C22.4142 3.25 22.75 3.58579 22.75 4V7.5C22.75 7.91421 22.4142 8.25 22 8.25H18.5C18.0858 8.25 17.75 7.91421 17.75 7.5C17.75 7.08579 18.0858 6.75 18.5 6.75H20.4869C20.1154 6.32579 19.627 5.8271 19.0227 5.32853C17.45 4.03103 15.1131 2.75 12 2.75C6.86026 2.75 2.75 6.88977 2.75 12C2.75 12.4142 2.41421 12.75 2 12.75C1.58579 12.75 1.25 12.4142 1.25 12ZM22 11.25C22.4142 11.25 22.75 11.5858 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C8.98283 22.75 6.56245 21.2492 4.93295 19.8126C4.48212 19.4151 4.08662 19.0181 3.75 18.6513V20C3.75 20.4142 3.41421 20.75 3 20.75C2.58579 20.75 2.25 20.4142 2.25 20V16.5C2.25 16.0858 2.58579 15.75 3 15.75H6.5C6.91421 15.75 7.25 16.0858 7.25 16.5C7.25 16.9142 6.91421 17.25 6.5 17.25H4.51226C4.87929 17.6794 5.35377 18.1839 5.92491 18.6874C7.4147 20.0008 9.49432 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 11.5858 21.5858 11.25 22 11.25Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M12.6623 2.93807C12.2308 2.80515 11.7693 2.80515 11.3377 2.93807C11.1354 3.00039 10.9119 3.12236 10.5787 3.38537C10.2382 3.65407 9.83203 4.0294 9.24844 4.56977L8.56139 5.20593C7.77771 5.93156 7.48392 6.21083 7.27566 6.53101C7.08056 6.83095 6.93634 7.16105 6.8488 7.50798C6.75536 7.87833 6.75004 8.28364 6.75004 9.35167L6.75004 10.9992L6.75004 10.9996L6.75004 15.9999L6.75004 16.0332C6.75006 16.9578 6.75088 17.6173 6.78636 18.1374C6.82182 18.6571 6.88936 18.9827 6.99743 19.2436C7.32729 20.0399 7.95998 20.6726 8.75632 21.0025C9.01725 21.1105 9.34283 21.1781 9.86247 21.2135C10.237 21.2391 10.6839 21.2467 11.2499 21.2489L11.2499 18.9996C11.2499 18.5854 11.5857 18.2496 11.9999 18.2496C12.4141 18.2496 12.7499 18.5854 12.7499 18.9996L12.7499 21.2489C13.3161 21.2467 13.763 21.2391 14.1376 21.2135C14.6573 21.1781 14.9828 21.1105 15.2438 21.0025C16.0401 20.6726 16.6728 20.0399 17.0027 19.2436C17.1107 18.9827 17.1783 18.6571 17.2137 18.1374C17.2496 17.611 17.25 16.942 17.25 15.9999L17.25 10.9996L17.25 9.35167C17.25 8.28364 17.2447 7.87833 17.1513 7.50798C17.0638 7.16105 16.9195 6.83095 16.7244 6.53101C16.5162 6.21083 16.2224 5.93156 15.4387 5.20593L14.7516 4.56977C14.1681 4.0294 13.7619 3.65407 13.4214 3.38537C13.0882 3.12236 12.8647 3.00039 12.6623 2.93807ZM18.75 10.6246L18.75 9.35167L18.7501 9.25296C18.7502 8.31721 18.7503 7.71424 18.6057 7.14102C18.4778 6.63396 18.267 6.15151 17.9818 5.71313C17.6595 5.21756 17.217 4.80797 16.5302 4.17234L16.4578 4.10528L15.7708 3.46913L15.7482 3.44828L15.7482 3.44824L15.7482 3.44822C15.1924 2.93364 14.7431 2.5176 14.3507 2.20788C13.9457 1.88827 13.555 1.64346 13.1039 1.50452C12.3847 1.283 11.6154 1.283 10.8962 1.50452C10.4451 1.64346 10.0544 1.88827 9.64941 2.20788C9.25694 2.51761 8.80761 2.93367 8.25186 3.44827L8.22933 3.46913L7.54228 4.10529L7.46984 4.17234C6.7831 4.80798 6.34059 5.21756 6.01825 5.71313C5.73311 6.15151 5.52232 6.63396 5.39438 7.14102C5.24975 7.71424 5.24986 8.31721 5.25003 9.25296L5.25004 9.35167L5.25004 10.6246L3.47004 11.9596L3.38735 12.0216C2.76298 12.4895 2.3311 12.8132 2.0127 13.2328C1.73163 13.6032 1.5219 14.0227 1.39421 14.4698C1.24957 14.9763 1.24975 15.516 1.25002 16.2963L1.25004 16.3996L1.25004 19.9996C1.25004 20.2306 1.35645 20.4486 1.53848 20.5908C1.72052 20.7329 1.95789 20.7832 2.18195 20.7272L5.63148 19.8648C6.11884 21.0065 7.0342 21.9127 8.1823 22.3883C8.65646 22.5847 9.16435 22.6694 9.76037 22.7101C10.3438 22.7499 11.0639 22.7499 11.9724 22.7499L11.9725 22.7499L11.9726 22.7499L11.9726 22.7499L11.9727 22.7499L12 22.7499L12.0274 22.7499L12.0276 22.7499L12.0276 22.7499L12.0276 22.7499L12.0277 22.7499C12.9362 22.7499 13.6563 22.7499 14.2397 22.7101C14.8357 22.6694 15.3436 22.5847 15.8178 22.3883C16.9659 21.9127 17.8812 21.0065 18.3686 19.8648L21.8181 20.7272C22.0422 20.7832 22.2796 20.7329 22.4616 20.5908C22.6436 20.4486 22.75 20.2306 22.75 19.9996L22.75 16.3996L22.7501 16.2963C22.7503 15.516 22.7505 14.9763 22.6059 14.4698C22.4782 14.0227 22.2685 13.6032 21.9874 13.2328C21.669 12.8132 21.2371 12.4895 20.6127 12.0216L20.53 11.9596L18.75 10.6246ZM18.75 12.4996L18.75 15.9999L18.75 16.0272L18.75 16.0273L18.75 16.0274L18.75 18.414L21.25 19.039L21.25 16.3996C21.25 15.4761 21.2433 15.1609 21.1635 14.8817C21.0869 14.6135 20.9611 14.3618 20.7924 14.1395C20.617 13.9083 20.3688 13.7137 19.63 13.1596L18.75 12.4996ZM4.37004 13.1596L5.25004 12.4996L5.25004 15.9999L5.25004 16.0272L5.25004 16.0823L5.25004 18.414L2.75004 19.039L2.75004 16.3996C2.75004 15.4761 2.75682 15.1609 2.83655 14.8817C2.91316 14.6135 3.039 14.3618 3.20764 14.1395C3.38313 13.9083 3.63127 13.7137 4.37004 13.1596ZM10.75 11.0001C10.75 10.3097 11.3097 9.7501 12 9.7501C12.6904 9.7501 13.25 10.3097 13.25 11.0001C13.25 11.6905 12.6904 12.2501 12 12.2501C11.3097 12.2501 10.75 11.6905 10.75 11.0001ZM12 8.2501C10.4813 8.2501 9.25004 9.48132 9.25004 11.0001C9.25004 12.5189 10.4813 13.7501 12 13.7501C13.5188 13.7501 14.75 12.5189 14.75 11.0001C14.75 9.48132 13.5188 8.2501 12 8.2501Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M1.25 12C1.25 6.06454 6.02863 1.25 12 1.25C15.5536 1.25 18.2167 2.71897 19.9773 4.17147C20.4706 4.57844 20.8947 4.98535 21.25 5.36063V4C21.25 3.58579 21.5858 3.25 22 3.25C22.4142 3.25 22.75 3.58579 22.75 4V7.5C22.75 7.91421 22.4142 8.25 22 8.25H18.5C18.0858 8.25 17.75 7.91421 17.75 7.5C17.75 7.08579 18.0858 6.75 18.5 6.75H20.4869C20.1154 6.32579 19.627 5.8271 19.0227 5.32853C17.45 4.03103 15.1131 2.75 12 2.75C6.86026 2.75 2.75 6.88977 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 11.5858 21.5858 11.25 22 11.25C22.4142 11.25 22.75 11.5858 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M18 2.75C16.7574 2.75 15.75 3.75736 15.75 5C15.75 6.24264 16.7574 7.25 18 7.25C19.2426 7.25 20.25 6.24264 20.25 5C20.25 3.75736 19.2426 2.75 18 2.75ZM14.25 5C14.25 2.92893 15.9289 1.25 18 1.25C20.0711 1.25 21.75 2.92893 21.75 5C21.75 7.07107 20.0711 8.75 18 8.75C15.9289 8.75 14.25 7.07107 14.25 5ZM5 16.75C3.75736 16.75 2.75 17.7574 2.75 19C2.75 20.2426 3.75736 21.25 5 21.25C6.24264 21.25 7.25 20.2426 7.25 19C7.25 17.7574 6.24264 16.75 5 16.75ZM8.67499 18.25C8.32753 16.5383 6.81422 15.25 5 15.25C2.92893 15.25 1.25 16.9289 1.25 19C1.25 21.0711 2.92893 22.75 5 22.75C6.81422 22.75 8.32753 21.4617 8.67499 19.75H16.5C18.8472 19.75 20.75 17.8472 20.75 15.5C20.75 13.1528 18.8472 11.25 16.5 11.25H6.5C4.98122 11.25 3.75 10.0188 3.75 8.5C3.75 6.98122 4.98122 5.75 6.5 5.75H10.1893L8.96967 6.96967C8.67678 7.26256 8.67678 7.73744 8.96967 8.03033C9.26256 8.32322 9.73744 8.32322 10.0303 8.03033L12.5303 5.53033C12.8232 5.23744 12.8232 4.76256 12.5303 4.46967L10.0303 1.96967C9.73744 1.67678 9.26256 1.67678 8.96967 1.96967C8.67678 2.26256 8.67678 2.73744 8.96967 3.03033L10.1893 4.25H6.5C4.15279 4.25 2.25 6.15279 2.25 8.5C2.25 10.8472 4.15279 12.75 6.5 12.75H16.5C18.0188 12.75 19.25 13.9812 19.25 15.5C19.25 17.0188 18.0188 18.25 16.5 18.25H8.67499Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M2.55859 14.1231C2.97281 14.1231 3.30859 14.4589 3.30859 14.8731V19.4405C3.30863 20.1308 3.86832 20.6904 4.55859 20.6905H9.12598C9.54006 20.6905 9.87577 21.0265 9.87598 21.4405C9.87594 21.8547 9.54017 22.1905 9.12598 22.1905H4.55859C3.03989 22.1904 1.80863 20.9592 1.80859 19.4405V14.8731C1.80859 14.4589 2.14444 14.1232 2.55859 14.1231ZM21.4404 14.1231C21.8546 14.1231 22.1904 14.4589 22.1904 14.8731V19.4405C22.1904 20.9593 20.9592 22.1905 19.4404 22.1905H14.873C14.4588 22.1905 14.123 21.8547 14.123 21.4405C14.1233 21.0265 14.459 20.6905 14.873 20.6905H19.4404C20.1308 20.6905 20.6904 20.1308 20.6904 19.4405V14.8731C20.6904 14.459 21.0264 14.1233 21.4404 14.1231ZM12 5.25006C13.8614 5.25015 15.6239 6.53023 15.624 8.38385V9.34186C16.5394 9.39846 17.2646 10.1573 17.2646 11.087V16.4756C17.2646 17.4421 16.4811 18.2255 15.5146 18.2256H8.48438C7.51788 18.2256 6.73438 17.4421 6.73438 16.4756V11.087C6.73438 10.1565 7.46044 9.39731 8.37695 9.34186V8.38385C8.37712 6.53028 10.1387 5.25022 12 5.25006ZM8.48438 10.837C8.3463 10.837 8.23438 10.9489 8.23438 11.087V16.4756C8.23438 16.6137 8.3463 16.7256 8.48438 16.7256H15.5146C15.6526 16.7255 15.7646 16.6137 15.7646 16.4756V11.087C15.7646 10.949 15.6526 10.8371 15.5146 10.837H8.48438ZM12 11.7999C12.6439 11.8 13.161 12.3162 13.1611 12.96C13.1611 13.3171 13.0013 13.6342 12.75 13.8467V15.0128C12.75 15.4269 12.4141 15.7626 12 15.7628C11.5858 15.7628 11.25 15.427 11.25 15.0128V13.8467C10.9989 13.6342 10.8398 13.317 10.8398 12.96C10.84 12.3162 11.3562 11.8 12 11.7999ZM9.12598 1.80865C9.54019 1.80865 9.87598 2.14444 9.87598 2.55865C9.87594 2.97283 9.54017 3.30865 9.12598 3.30865H4.55859C3.8683 3.30872 3.30859 3.86834 3.30859 4.55865V9.12604C3.30855 9.54022 2.97278 9.87604 2.55859 9.87604C2.14446 9.87597 1.80863 9.54017 1.80859 9.12604V4.55865C1.80859 3.03991 3.03987 1.80872 4.55859 1.80865H9.12598ZM19.4404 1.80865C20.9592 1.80865 22.1904 3.03987 22.1904 4.55865V9.12604C22.1904 9.54025 21.8546 9.87604 21.4404 9.87604C21.0264 9.87583 20.6904 9.54012 20.6904 9.12604V4.55865C20.6904 3.8683 20.1308 3.30865 19.4404 3.30865H14.873C14.4588 3.30865 14.123 2.97287 14.123 2.55865C14.123 2.14444 14.4588 1.80865 14.873 1.80865H19.4404ZM12 6.75006C10.6929 6.75021 9.87714 7.60854 9.87695 8.38385V9.33698H14.124V8.38385C14.1238 7.60851 13.3071 6.75015 12 6.75006Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M11.5156 0.125031C11.801 -0.0207136 12.1298 -0.0390586 12.4258 0.070343L12.5508 0.125031L12.5537 0.126984C14.7224 1.24767 16.9104 1.57976 18.5723 1.62698C20.2044 1.67329 21.3026 1.44422 21.3252 1.43948V1.44046C21.6413 1.36551 21.9776 1.42746 22.2451 1.61526L22.2461 1.61624C22.5505 1.83085 22.7129 2.17402 22.7129 2.52054V14.7608C22.7129 14.9458 22.6644 15.125 22.5879 15.2744L22.5557 15.3369L22.5518 15.3457L22.5459 15.3555C20.4533 19.1689 16.8479 22.1987 12.4072 23.9229L12.3936 23.9287C12.2856 23.9682 12.1491 24 11.9971 24C11.8454 24 11.7096 23.9682 11.6016 23.9287L11.5879 23.9239C7.15589 22.2085 3.55775 19.1807 1.47363 15.378L1.47266 15.3789L1.43555 15.3164L1.42383 15.2959L1.41211 15.2744C1.33817 15.1302 1.28614 14.9564 1.28613 14.7608V2.52054C1.28613 2.17398 1.44947 1.83084 1.75391 1.61624L1.7627 1.61038L1.77051 1.6055C2.04254 1.42444 2.38776 1.35788 2.71973 1.44925C2.71139 1.44698 2.70372 1.44474 2.69824 1.44339C2.70335 1.44447 2.71373 1.44634 2.72852 1.44925C2.75936 1.45531 2.80811 1.4649 2.87207 1.47562C3.00089 1.49718 3.1931 1.52576 3.4375 1.55276C3.92723 1.60686 4.62723 1.65444 5.46387 1.63089C7.14183 1.58359 9.34484 1.2499 11.5127 0.126984L11.5156 0.125031ZM12.0332 1.54202C9.66331 2.72944 7.29279 3.08052 5.50586 3.13089C4.5897 3.15667 3.81966 3.10345 3.27246 3.043C3.08371 3.02214 2.92075 2.99863 2.78711 2.97855V14.6563C4.66228 18.0786 7.91884 20.8599 11.9971 22.4707C16.0716 20.8565 19.3264 18.0841 21.2129 14.666V2.97855C19.9336 3.1688 15.9965 3.52402 12.0332 1.54202ZM14.6387 6.05276C14.5111 6.56105 14.5602 7.03869 14.8672 7.72171C15.1105 8.26313 15.4968 8.89308 16.0479 9.72073L16.6553 10.6192L16.6748 10.6475L16.6914 10.6768C17.6676 12.4271 17.5538 14.1959 16.751 15.5967C15.9623 16.9727 14.5314 17.959 12.9189 18.2598C10.2947 18.7492 8.19395 17.2493 7.22656 15.2569C6.26293 13.2719 6.35293 10.6611 8.19824 8.81546L9.90527 7.10843L9.4668 9.48148C9.29068 10.4341 9.55779 11.1995 9.95312 11.6739C10.3683 12.1718 10.8424 12.2839 11.1377 12.1953C11.1491 12.1919 11.1591 12.1868 11.1689 12.1836C11.1619 12.1589 11.1549 12.1287 11.1436 12.0948C11.0217 11.7298 10.6036 10.8697 10.6035 9.91898V9.91116C10.6114 9.16282 10.7328 8.26388 11.1777 7.40237C11.6301 6.52649 12.3931 5.73626 13.6006 5.18753L15.0176 4.54398L14.6387 6.05276ZM13.1445 7.25491C12.8623 7.51903 12.6583 7.80333 12.5098 8.09085C12.2088 8.6737 12.11 9.31797 12.1035 9.92679C12.1055 10.5494 12.3545 10.9851 12.5664 11.6201C12.6507 11.8728 12.7805 12.3102 12.624 12.75C12.4438 13.2562 11.9981 13.503 11.5684 13.6319C10.5258 13.9446 9.47188 13.4383 8.80176 12.6348C8.57455 12.3623 8.38204 12.0466 8.23438 11.6973C8.00014 12.6635 8.13737 13.6977 8.57617 14.6016C9.31127 16.1156 10.8159 17.1263 12.6445 16.7852C13.8488 16.5604 14.8924 15.8239 15.4502 14.8506C15.9912 13.9063 16.0967 12.7048 15.3896 11.4248C14.5382 10.1775 13.8847 9.19415 13.499 8.33597C13.333 7.96648 13.2144 7.60944 13.1445 7.25491Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M3.75 5C3.75 4.91409 3.80155 4.71287 4.17149 4.42132C4.53298 4.13644 5.10255 3.84708 5.87321 3.59019C7.4067 3.07903 9.5729 2.75 12 2.75C14.4271 2.75 16.5933 3.07903 18.1268 3.59019C18.8975 3.84708 19.467 4.13644 19.8285 4.42132C20.1985 4.71287 20.25 4.91409 20.25 5C20.25 5.08591 20.1985 5.28713 19.8285 5.57868C19.467 5.86356 18.8975 6.15292 18.1268 6.40981C16.5933 6.92097 14.4271 7.25 12 7.25C9.5729 7.25 7.4067 6.92097 5.87321 6.40981C5.10255 6.15292 4.53298 5.86356 4.17149 5.57868C3.80155 5.28713 3.75 5.08591 3.75 5ZM20.25 7.10311C19.7794 7.38436 19.2186 7.627 18.6011 7.83283C16.8773 8.40746 14.5435 8.75 12 8.75C9.45654 8.75 7.12274 8.40746 5.39887 7.83283C4.78138 7.627 4.22063 7.38436 3.75 7.10311L3.75 12L3.75 12.0004C3.75014 12.0865 3.80206 12.2875 4.17149 12.5787C4.53298 12.8636 5.10255 13.1529 5.87321 13.4098C7.4067 13.921 9.5729 14.25 12 14.25C14.4271 14.25 16.5933 13.921 18.1268 13.4098C18.8975 13.1529 19.467 12.8636 19.8285 12.5787C20.1985 12.2871 20.25 12.0859 20.25 12V7.10311ZM21.75 12V5C21.75 4.25749 21.2979 3.66949 20.757 3.24321C20.2076 2.81026 19.4591 2.45317 18.6011 2.16717C16.8773 1.59254 14.5435 1.25 12 1.25C9.45654 1.25 7.12274 1.59254 5.39887 2.16717C4.54085 2.45317 3.79239 2.81026 3.24303 3.24321C2.70213 3.66949 2.25 4.25749 2.25 5V12V19C2.25 19.7425 2.70213 20.3305 3.24303 20.7568C3.79239 21.1897 4.54085 21.5468 5.39887 21.8328C7.12274 22.4075 9.45654 22.75 12 22.75C14.5435 22.75 16.8773 22.4075 18.6011 21.8328C19.4591 21.5468 20.2076 21.1897 20.757 20.7568C21.2979 20.3305 21.75 19.7425 21.75 19V12ZM20.25 14.1031C19.7794 14.3844 19.2186 14.627 18.6011 14.8328C16.8773 15.4075 14.5435 15.75 12 15.75C9.45654 15.75 7.12274 15.4075 5.39887 14.8328C4.78138 14.627 4.22063 14.3844 3.75 14.1031L3.75 19C3.75 19.0859 3.80155 19.2871 4.17149 19.5787C4.53298 19.8636 5.10255 20.1529 5.87321 20.4098C7.4067 20.921 9.5729 21.25 12 21.25C14.4271 21.25 16.5933 20.921 18.1268 20.4098C18.8975 20.1529 19.467 19.8636 19.8285 19.5787C20.1985 19.2871 20.25 19.0859 20.25 19V14.1031Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M20.7822 13.002C20.9029 13.0039 21.0159 13.0082 21.1182 13.0166C21.3312 13.034 21.5647 13.0731 21.7949 13.1904C22.124 13.3582 22.3918 13.626 22.5596 13.9551C22.6769 14.1853 22.716 14.4188 22.7334 14.6318C22.7501 14.8361 22.75 15.0821 22.75 15.3496V19.6504C22.75 19.9179 22.7501 20.1639 22.7334 20.3682C22.716 20.5812 22.6769 20.8147 22.5596 21.0449C22.3918 21.374 22.124 21.6418 21.7949 21.8096C21.5647 21.9269 21.3312 21.966 21.1182 21.9834C20.9139 22.0001 20.6679 22 20.4004 22H3.59961C3.33211 22 3.08611 22.0001 2.88184 21.9834C2.66879 21.966 2.43527 21.9269 2.20508 21.8096C1.87597 21.6418 1.60818 21.374 1.44043 21.0449C1.32314 20.8147 1.28403 20.5812 1.2666 20.3682C1.24991 20.1639 1.25 19.9179 1.25 19.6504V15.3496C1.25 15.0821 1.24991 14.8361 1.2666 14.6318C1.28403 14.4188 1.32314 14.1853 1.44043 13.9551C1.60818 13.626 1.87597 13.3582 2.20508 13.1904C2.43527 13.0731 2.66879 13.034 2.88184 13.0166C3.08611 12.9999 3.33211 13 3.59961 13H20.4004L20.7822 13.002ZM3.59961 14.5C3.30744 14.5 3.13298 14.5002 3.00391 14.5107C2.88384 14.5206 2.87034 14.5357 2.88672 14.5273C2.83968 14.5513 2.80131 14.5897 2.77734 14.6367C2.78569 14.6203 2.77058 14.6338 2.76074 14.7539C2.7502 14.883 2.75 15.0574 2.75 15.3496V19.6504C2.75 19.9426 2.7502 20.117 2.76074 20.2461C2.77058 20.3662 2.78569 20.3797 2.77734 20.3633C2.80131 20.4103 2.83968 20.4487 2.88672 20.4727C2.87034 20.4643 2.88384 20.4794 3.00391 20.4893C3.13298 20.4998 3.30744 20.5 3.59961 20.5H20.4004C20.6926 20.5 20.867 20.4998 20.9961 20.4893C21.1162 20.4794 21.1297 20.4643 21.1133 20.4727C21.1603 20.4487 21.1987 20.4103 21.2227 20.3633C21.2143 20.3797 21.2294 20.3662 21.2393 20.2461C21.2498 20.117 21.25 19.9426 21.25 19.6504V15.3496C21.25 15.0574 21.2498 14.883 21.2393 14.7539C21.2294 14.6338 21.2143 14.6203 21.2227 14.6367C21.1987 14.5897 21.1603 14.5513 21.1133 14.5273C21.1297 14.5357 21.1162 14.5206 20.9961 14.5107C20.9315 14.5055 20.8552 14.5034 20.7588 14.502L20.4004 14.5H3.59961ZM17.8037 15.0117C19.178 15.0117 20.2928 16.1257 20.293 17.5C20.2927 18.8742 19.1779 19.9893 17.8037 19.9893C16.4296 19.9891 15.3157 18.8741 15.3154 17.5C15.3156 16.1258 16.4295 15.0119 17.8037 15.0117ZM17.8037 16.5117C17.258 16.5119 16.8156 16.9542 16.8154 17.5C16.8157 18.0456 17.258 18.4891 17.8037 18.4893C18.3495 18.4893 18.7927 18.0457 18.793 17.5C18.7928 16.9542 18.3496 16.5117 17.8037 16.5117ZM20.7822 2.00195C20.9029 2.00389 21.0159 2.00824 21.1182 2.0166C21.3312 2.03403 21.5647 2.07314 21.7949 2.19043C22.124 2.35818 22.3918 2.62597 22.5596 2.95508C22.6769 3.18527 22.716 3.41879 22.7334 3.63184C22.7501 3.83611 22.75 4.08211 22.75 4.34961V8.65039C22.75 8.91789 22.7501 9.16389 22.7334 9.36816C22.716 9.58121 22.6769 9.81473 22.5596 10.0449C22.3918 10.374 22.124 10.6418 21.7949 10.8096C21.5647 10.9269 21.3312 10.966 21.1182 10.9834C20.9139 11.0001 20.6679 11 20.4004 11H3.59961C3.33211 11 3.08611 11.0001 2.88184 10.9834C2.66879 10.966 2.43527 10.9269 2.20508 10.8096C1.87597 10.6418 1.60818 10.374 1.44043 10.0449C1.32314 9.81473 1.28403 9.58121 1.2666 9.36816C1.24991 9.16389 1.25 8.91789 1.25 8.65039V4.34961C1.25 4.08211 1.24991 3.83611 1.2666 3.63184C1.28403 3.41879 1.32314 3.18527 1.44043 2.95508C1.60818 2.62597 1.87597 2.35818 2.20508 2.19043C2.43527 2.07314 2.66879 2.03403 2.88184 2.0166C3.08611 1.99991 3.33211 2 3.59961 2H20.4004L20.7822 2.00195ZM3.59961 3.5C3.30744 3.5 3.13298 3.5002 3.00391 3.51074C2.88384 3.52058 2.87034 3.53569 2.88672 3.52734C2.83968 3.55131 2.80131 3.58968 2.77734 3.63672C2.78569 3.62034 2.77058 3.63384 2.76074 3.75391C2.7502 3.88298 2.75 4.05744 2.75 4.34961V8.65039C2.75 8.94256 2.7502 9.11702 2.76074 9.24609C2.77058 9.36616 2.78569 9.37966 2.77734 9.36328C2.80131 9.41032 2.83968 9.44869 2.88672 9.47266C2.87034 9.46431 2.88384 9.47942 3.00391 9.48926C3.13298 9.4998 3.30744 9.5 3.59961 9.5H20.4004C20.6926 9.5 20.867 9.4998 20.9961 9.48926C21.1162 9.47942 21.1297 9.46431 21.1133 9.47266C21.1603 9.44869 21.1987 9.41032 21.2227 9.36328C21.2143 9.37966 21.2294 9.36616 21.2393 9.24609C21.2498 9.11702 21.25 8.94256 21.25 8.65039V4.34961C21.25 4.05744 21.2498 3.88298 21.2393 3.75391C21.2294 3.63384 21.2143 3.62034 21.2227 3.63672C21.1987 3.58968 21.1603 3.55131 21.1133 3.52734C21.1297 3.53569 21.1162 3.52058 20.9961 3.51074C20.9315 3.50546 20.8552 3.50342 20.7588 3.50195L20.4004 3.5H3.59961ZM17.8037 4.01172C19.178 4.01172 20.2928 5.12574 20.293 6.5C20.2927 7.87415 19.1779 8.98926 17.8037 8.98926C16.4296 8.98913 15.3157 7.87407 15.3154 6.5C15.3156 5.12582 16.4295 4.01185 17.8037 4.01172ZM17.8037 5.51172C17.258 5.51185 16.8156 5.95425 16.8154 6.5C16.8157 7.04564 17.258 7.48913 17.8037 7.48926C18.3495 7.48926 18.7927 7.04572 18.793 6.5C18.7928 5.95416 18.3496 5.51172 17.8037 5.51172Z" fill="currentcolor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" color="#FFFFFF" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="vector" fill-rule="evenodd" clip-rule="evenodd" d="M15.325 4.25C15.6725 2.53832 17.1858 1.25 19 1.25C21.0711 1.25 22.75 2.92894 22.75 5C22.75 7.07107 21.0711 8.75 19 8.75C17.1858 8.75 15.6725 7.46168 15.325 5.75L9 5.75C7.43146 5.75 6.12245 6.86118 5.8172 8.3393C7.49529 8.71226 8.75 10.2096 8.75 12C8.75 13.7904 7.49529 15.2877 5.8172 15.6607C6.12245 17.1388 7.43146 18.25 9 18.25L15.325 18.25C15.6725 16.5383 17.1858 15.25 19 15.25C21.0711 15.25 22.75 16.9289 22.75 19C22.75 21.0711 21.0711 22.75 19 22.75C17.1858 22.75 15.6725 21.4617 15.325 19.75L9 19.75C6.60912 19.75 4.63081 17.9836 4.29897 15.6846C2.56295 15.3563 1.25 13.8315 1.25 12C1.25 10.1685 2.56295 8.6437 4.29897 8.31542C4.63081 6.01644 6.60912 4.25 9 4.25L15.325 4.25ZM16.75 19C16.75 20.2426 17.7574 21.25 19 21.25C20.2426 21.25 21.25 20.2426 21.25 19C21.25 17.7574 20.2426 16.75 19 16.75C17.7574 16.75 16.75 17.7574 16.75 19ZM7.25 12C7.25 13.2423 6.2432 14.2494 5.00105 14.25L5 14.25C3.75736 14.25 2.75 13.2426 2.75 12C2.75 10.7574 3.75736 9.75 5 9.75C6.24264 9.75 7.25 10.7574 7.25 12ZM16.75 5C16.75 6.24264 17.7574 7.25 19 7.25C20.2426 7.25 21.25 6.24264 21.25 5C21.25 3.75736 20.2426 2.75 19 2.75C17.7574 2.75 16.75 3.75736 16.75 5Z" fill="currentcolor"/>
3
+ </svg>