@epcare/esm-report-builder 0.1.1-pre.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (222) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +19 -0
  3. package/.prettierrc +8 -0
  4. package/LICENSE +401 -0
  5. package/README.md +317 -0
  6. package/dist/184.js +2 -0
  7. package/dist/184.js.LICENSE.txt +14 -0
  8. package/dist/184.js.map +1 -0
  9. package/dist/211.js +1 -0
  10. package/dist/211.js.map +1 -0
  11. package/dist/300.js +1 -0
  12. package/dist/311.js +1 -0
  13. package/dist/311.js.map +1 -0
  14. package/dist/44.js +2 -0
  15. package/dist/44.js.LICENSE.txt +30 -0
  16. package/dist/44.js.map +1 -0
  17. package/dist/478.js +2 -0
  18. package/dist/478.js.LICENSE.txt +9 -0
  19. package/dist/478.js.map +1 -0
  20. package/dist/535.js +1 -0
  21. package/dist/535.js.map +1 -0
  22. package/dist/540.js +2 -0
  23. package/dist/540.js.LICENSE.txt +9 -0
  24. package/dist/540.js.map +1 -0
  25. package/dist/710.js +1 -0
  26. package/dist/710.js.map +1 -0
  27. package/dist/729.js +1 -0
  28. package/dist/729.js.map +1 -0
  29. package/dist/872.js +1 -0
  30. package/dist/872.js.map +1 -0
  31. package/dist/917.js +1 -0
  32. package/dist/917.js.map +1 -0
  33. package/dist/961.js +2 -0
  34. package/dist/961.js.LICENSE.txt +19 -0
  35. package/dist/961.js.map +1 -0
  36. package/dist/972.js +2 -0
  37. package/dist/972.js.LICENSE.txt +21 -0
  38. package/dist/972.js.map +1 -0
  39. package/dist/main.js +1 -0
  40. package/dist/main.js.map +1 -0
  41. package/dist/openmrs-esm-report-builder.js +1 -0
  42. package/dist/openmrs-esm-report-builder.js.buildmanifest.json +482 -0
  43. package/dist/openmrs-esm-report-builder.js.map +1 -0
  44. package/dist/routes.json +1 -0
  45. package/e2e/core/env.ts +5 -0
  46. package/e2e/core/global-setup.ts +34 -0
  47. package/e2e/core/test.ts +21 -0
  48. package/e2e/pages/app-shell.page.ts +34 -0
  49. package/e2e/pages/etl-sources.page.ts +35 -0
  50. package/e2e/pages/report-sections.page.ts +20 -0
  51. package/e2e/pages/section-preview.modal.ts +29 -0
  52. package/e2e/specs/etl-sources.spec.ts +51 -0
  53. package/e2e/specs/navigation.spec.ts +13 -0
  54. package/e2e/specs/section-preview-validation.spec.ts +38 -0
  55. package/e2e/specs/section-preview.spec.ts +94 -0
  56. package/e2e/tsconfig.json +11 -0
  57. package/example.env +5 -0
  58. package/jest.config.js +28 -0
  59. package/package.json +102 -0
  60. package/playwright.config.ts +28 -0
  61. package/src/admin-card-link.extension.module.scss +55 -0
  62. package/src/admin-card-link.extension.tsx +24 -0
  63. package/src/components/admin/admin-page.component.tsx +31 -0
  64. package/src/components/admin/age-categories-page.component.tsx +109 -0
  65. package/src/components/admin/age-groups-page.component.tsx +146 -0
  66. package/src/components/admin/etl-sources-page.component.tsx +344 -0
  67. package/src/components/admin/report-categories-page.component.tsx +256 -0
  68. package/src/components/admin/report-library-page.component.tsx +540 -0
  69. package/src/components/ai-support/ai-assist-button.component.tsx +30 -0
  70. package/src/components/ai-support/ai-assist-modal.component.tsx +81 -0
  71. package/src/components/ai-support/ai.service.ts +21 -0
  72. package/src/components/ai-support/ai.types.ts +12 -0
  73. package/src/components/app-shell/report-builder-shell.component.tsx +120 -0
  74. package/src/components/app-shell/report-builder-shell.scss +15 -0
  75. package/src/components/data-themes/data-theme-form.component.tsx +59 -0
  76. package/src/components/data-themes/data-theme-modal.component.tsx +349 -0
  77. package/src/components/data-themes/data-themes-page.component.tsx +132 -0
  78. package/src/components/data-themes/data-themes-table.component.tsx +91 -0
  79. package/src/components/data-themes/icon-registry.ts +35 -0
  80. package/src/components/data-themes/sections/data-theme-basics.section.tsx +63 -0
  81. package/src/components/data-themes/sections/data-theme-condition-columns.section.tsx +397 -0
  82. package/src/components/data-themes/sections/data-theme-fields-editor.section.tsx +125 -0
  83. package/src/components/data-themes/sections/data-theme-metadata.section.tsx +245 -0
  84. package/src/components/data-themes/sections/data-theme-preview.section.tsx +115 -0
  85. package/src/components/data-themes/sections/data-theme-source.section.tsx +184 -0
  86. package/src/components/indicators/README.md +24 -0
  87. package/src/components/indicators/base-indicator-basic-fields.component.tsx +18 -0
  88. package/src/components/indicators/base-indicator-basics.section.tsx +54 -0
  89. package/src/components/indicators/base-indicator-countby.section.tsx +25 -0
  90. package/src/components/indicators/base-indicator-criteria.section.tsx +83 -0
  91. package/src/components/indicators/base-indicator-details-form.component.tsx +80 -0
  92. package/src/components/indicators/base-indicator-theme-unit-fields.component.tsx +39 -0
  93. package/src/components/indicators/create-base-indicator-modal.component.tsx +501 -0
  94. package/src/components/indicators/create-composite-base-indicator-modal.component.tsx +297 -0
  95. package/src/components/indicators/create-final-indicator-modal.component.tsx +260 -0
  96. package/src/components/indicators/diagnosis-filters-form.component.tsx +101 -0
  97. package/src/components/indicators/disaggregation-panel.component.tsx +93 -0
  98. package/src/components/indicators/handler/concept-search-multiselect.component.tsx +153 -0
  99. package/src/components/indicators/handler/question-answer-concept-search.component.tsx +336 -0
  100. package/src/components/indicators/indicator-status-tag.component.tsx +9 -0
  101. package/src/components/indicators/indicators-page.component.tsx +481 -0
  102. package/src/components/indicators/indicators-page.scss +121 -0
  103. package/src/components/indicators/indicators-table.component.tsx +166 -0
  104. package/src/components/indicators/preview-table.component.tsx +31 -0
  105. package/src/components/indicators/sections/composite-indicator-basics.section.tsx +36 -0
  106. package/src/components/indicators/sections/composite-indicator-picker.section.tsx +161 -0
  107. package/src/components/indicators/sections/composite-indicator-sql-preview.section.tsx +31 -0
  108. package/src/components/indicators/sections/final-indicator-basics.section.tsx +46 -0
  109. package/src/components/indicators/sections/final-indicator-disaggregation.section.tsx +47 -0
  110. package/src/components/indicators/sections/final-indicator-picker.section.tsx +92 -0
  111. package/src/components/indicators/sections/final-indicator-preview.section.tsx +20 -0
  112. package/src/components/indicators/sections/final-indicator-results-preview.section.tsx +65 -0
  113. package/src/components/indicators/sections/indicator-basics.section.tsx +40 -0
  114. package/src/components/indicators/sections/indicator-conditions.section.tsx +194 -0
  115. package/src/components/indicators/sections/indicator-sql-preview.section.tsx +26 -0
  116. package/src/components/indicators/sections/indicator-theme.section.tsx +48 -0
  117. package/src/components/indicators/sql-preview.component.tsx +19 -0
  118. package/src/components/indicators/types/base-indicator-form.types.ts +17 -0
  119. package/src/components/indicators/types/base-indicator-theme.constants.ts +8 -0
  120. package/src/components/indicators/types/composite-indicator.types.ts +21 -0
  121. package/src/components/indicators/types/condition-ui.types.ts +11 -0
  122. package/src/components/indicators/types/data-theme-config.types.ts +88 -0
  123. package/src/components/indicators/types/indicator-types.ts +56 -0
  124. package/src/components/indicators/types/sql-builders.ts +43 -0
  125. package/src/components/indicators/utils/composite-indicator-sql.utils.ts +206 -0
  126. package/src/components/indicators/utils/concept-preload.utils.ts +21 -0
  127. package/src/components/indicators/utils/final-indicator-sql.utils.ts +124 -0
  128. package/src/components/indicators/utils/indicator-conditions-hydration.utils.ts +254 -0
  129. package/src/components/indicators/utils/indicator-sql.utils.ts +185 -0
  130. package/src/components/landing/landing-action-item.component.tsx +50 -0
  131. package/src/components/landing/landing-action-list.component.tsx +12 -0
  132. package/src/components/landing/landing-activity-list.component.tsx +47 -0
  133. package/src/components/landing/landing-footer-grid.component.tsx +45 -0
  134. package/src/components/landing/landing-hero.component.tsx +18 -0
  135. package/src/components/landing/landing-section-card.component.tsx +33 -0
  136. package/src/components/landing/report-builder-landing-page.component.tsx +103 -0
  137. package/src/components/landing/report-builder-landing-page.scss +131 -0
  138. package/src/components/report/dashboard/reports-table.component.tsx +145 -0
  139. package/src/components/report/definition/panels/properties-panel.component.tsx +38 -0
  140. package/src/components/report/definition/panels/report-structure-panel.component.tsx +61 -0
  141. package/src/components/report/definition/panels/selection-panel.component.tsx +58 -0
  142. package/src/components/report/definition/report-definition-editor.component.tsx +99 -0
  143. package/src/components/report/definition/report-definition.types.ts +66 -0
  144. package/src/components/report/design/panels/IndicatorPropertiesPanel.scss +33 -0
  145. package/src/components/report/design/panels/IndicatorPropertiesPanel.tsx +389 -0
  146. package/src/components/report/design/panels/JsonPreviewPanel.scss +32 -0
  147. package/src/components/report/design/panels/JsonPreviewPanel.tsx +104 -0
  148. package/src/components/report/design/panels/mapping-preview-panel.component.tsx +82 -0
  149. package/src/components/report/design/panels/mapping-preview-panel.scss +55 -0
  150. package/src/components/report/design/panels/template-structure-panel.component.tsx +296 -0
  151. package/src/components/report/design/panels/template-structure-panel.scss +81 -0
  152. package/src/components/report/design/report-design-editor.component.tsx +894 -0
  153. package/src/components/report/design/report-design.types.ts +43 -0
  154. package/src/components/report/design/report-design.utils.ts +86 -0
  155. package/src/components/report/panels/report-detail.component.tsx +71 -0
  156. package/src/components/report/panels/report-panel-shell.component.tsx +60 -0
  157. package/src/components/report/report-dashboard.page.component.tsx +75 -0
  158. package/src/components/report/report-editor.page.component.tsx +466 -0
  159. package/src/components/report/report.routes.tsx +30 -0
  160. package/src/components/report-sections/create-report-section-modal.component.tsx +278 -0
  161. package/src/components/report-sections/hooks/useAgeCategories.ts +25 -0
  162. package/src/components/report-sections/hooks/useSectionEditorState.ts +306 -0
  163. package/src/components/report-sections/panels/Dhis2MappingPanel.tsx +157 -0
  164. package/src/components/report-sections/panels/DisaggregationPanel.tsx +97 -0
  165. package/src/components/report-sections/panels/IndicatorPickerPanel.tsx +143 -0
  166. package/src/components/report-sections/panels/SectionBasicsPanel.tsx +27 -0
  167. package/src/components/report-sections/report-section-preview-modal.component.tsx +418 -0
  168. package/src/components/report-sections/report-sections-page.component.tsx +313 -0
  169. package/src/components/report-sections/section-types.ts +55 -0
  170. package/src/components/report-sections/section-utils.ts +46 -0
  171. package/src/components/report-sections/sections-page.scss +79 -0
  172. package/src/components/run-reports/run-reports-page.component.tsx +23 -0
  173. package/src/components/shared/header/builder-header-actions.component.tsx +38 -0
  174. package/src/components/shared/header/header.component.tsx +85 -0
  175. package/src/components/shared/header/header.scss +150 -0
  176. package/src/components/shared/header/illustration.component.tsx +34 -0
  177. package/src/components/shared/indicator-properties-panel/IndicatorPropertiesPanel.scss +33 -0
  178. package/src/components/shared/indicator-properties-panel/IndicatorPropertiesPanel.tsx +389 -0
  179. package/src/components/shared/json-preview-panel/JsonPreviewPanel.scss +32 -0
  180. package/src/components/shared/json-preview-panel/JsonPreviewPanel.tsx +104 -0
  181. package/src/components/shared/mapping-preview-panel/mapping-preview-panel.component.tsx +82 -0
  182. package/src/components/shared/mapping-preview-panel/mapping-preview-panel.scss +55 -0
  183. package/src/components/shared/preview/query-results-preview.component.tsx +204 -0
  184. package/src/components/shared/template-structure-panel/template-structure-panel.component.tsx +296 -0
  185. package/src/components/shared/template-structure-panel/template-structure-panel.scss +81 -0
  186. package/src/config-schema.ts +23 -0
  187. package/src/globals.d.ts +14 -0
  188. package/src/hooks/theme/useDataThemes.ts +28 -0
  189. package/src/hooks/theme/useMambaTableMeta.ts +34 -0
  190. package/src/hooks/theme/useMambaTables.ts +63 -0
  191. package/src/index.ts +23 -0
  192. package/src/resources/agegroup/agegroups.api.ts +58 -0
  193. package/src/resources/concepts/concept-mapper.ts +21 -0
  194. package/src/resources/concepts/concept-types.ts +31 -0
  195. package/src/resources/concepts/concepts.resource.ts +44 -0
  196. package/src/resources/concepts/useConceptSearch.ts +41 -0
  197. package/src/resources/etl-source/etl-source.api.ts +65 -0
  198. package/src/resources/indicator/indicators.api.ts +125 -0
  199. package/src/resources/openmrs-api.ts +24 -0
  200. package/src/resources/preview/sql-preview.api.ts +54 -0
  201. package/src/resources/report/reports.api.ts +117 -0
  202. package/src/resources/report-category/report-category.api.ts +41 -0
  203. package/src/resources/report-library/report-library.api.ts +63 -0
  204. package/src/resources/report-section/report-sections.api.ts +73 -0
  205. package/src/resources/report-section/section-preview.api.ts +21 -0
  206. package/src/resources/theme/data-theme.api.ts +88 -0
  207. package/src/resources/theme/mamba-schema.api.ts +31 -0
  208. package/src/resources/theme/mamba-table-meta.api.ts +45 -0
  209. package/src/root.component.tsx +20 -0
  210. package/src/routes/report-builder.routes.tsx +66 -0
  211. package/src/routes/report-builder.scss +56 -0
  212. package/src/routes.json +21 -0
  213. package/src/sample-template.ts +121 -0
  214. package/src/template-utils.ts +110 -0
  215. package/src/types/carbon-react-inert.d.ts +13 -0
  216. package/src/types/condition-operators.ts +49 -0
  217. package/src/types/theme/data-theme.types.ts +88 -0
  218. package/src/utils/html-entities.utils.ts +23 -0
  219. package/tools/setup-tests.ts +1 -0
  220. package/translations/en.json +4 -0
  221. package/tsconfig.json +43 -0
  222. package/webpack.config.js +14 -0
package/dist/535.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_epcare_esm_report_builder=self.webpackChunk_epcare_esm_report_builder||[]).push([[535],{4535(e,t,r){r.d(t,{B8:()=>n,MQ:()=>c,aZ:()=>w,zg:()=>i});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"}),(0,a.jsx)("path",{d:"m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"}),(0,a.jsx)("path",{fill:"none",d:"M0 0h32v32H0z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2.0023,2.0023,0,0,0,23,13Zm0,8H19V19h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2.002,2.002,0,0,0-2,2V23H9V18h4v5h2V11A2.002,2.002,0,0,0,13,9ZM9,16V11h4v5Z"}),(0,a.jsx)("path",{d:"M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 19H24V21H18z"}),(0,a.jsx)("path",{d:"M18 15H30V17H18z"}),(0,a.jsx)("path",{d:"M18 11H30V13H18z"}),(0,a.jsx)("path",{d:"M14,21V19H9V17H7v2H2v2h8.2148a8.5914,8.5914,0,0,1-2.2159,3.9771A9.2731,9.2731,0,0,1,6.5521,23H4.3334a10.8553,10.8553,0,0,0,2.1451,3.2966A14.6584,14.6584,0,0,1,3,28.127L3.7021,30a16.42,16.42,0,0,0,4.2907-2.3362A16.4883,16.4883,0,0,0,12.2979,30L13,28.127A14.664,14.664,0,0,1,9.5228,26.3,10.3132,10.3132,0,0,0,12.2516,21Z"}),(0,a.jsx)("path",{d:"M11.1666,13H13.333L8.75,2H6.5832L2,13H4.1664L5,11h5.3335ZM5.8331,9,7.6665,4.6,9.5,9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z",transform:"translate(0 .005)"}),(0,a.jsx)("path",{d:"M2 26.005H30V28.005H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z"}),(0,a.jsx)("path",{d:"M10 1 10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z"}),(0,a.jsx)("path",{d:"M20 2 20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 10.59 17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"}),(0,a.jsx)("path",{d:"M8 24H20V26H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M26,4v6H6V4H26m0-2H6A2,2,0,0,0,4,4v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V4a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 21.41 17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"23",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M26,22v6H6V22H26m0-2H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M20.59 4.59 17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z"}),(0,a.jsx)("path",{d:"M20.59 10.59 16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"}),(0,a.jsx)("path",{d:"M8 24H20V26H8z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z"}),(0,a.jsx)("path",{d:"M16,30a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,21.12,16,27.8643,28.5259,21.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,30Z"}),(0,a.jsx)("path",{d:"M16,18a.9967.9967,0,0,1-.4741-.12l-13-7a1,1,0,0,1,0-1.7607l13-7a.9982.9982,0,0,1,.9482,0l13,7a1,1,0,0,1,0,1.7607l-13,7A.9967.9967,0,0,1,16,18ZM5.1094,10,16,15.8643,26.8906,10,16,4.1358Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,24c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m29.4741,9.1196L16,1.8643v2.2715l10.8906,5.8643-10.8906,5.8643v2.2715l13.4741-7.2554c.324-.1743.5259-.5122.5259-.8804s-.2019-.7061-.5259-.8804Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4.4141,9.4141l3.5859-3.586v8.1719s2,0,2,0V5.8281s3.5859,3.5859,3.5859,3.5859l1.4141-1.414L9,2,3,8l1.4141,1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("rect",{width:"6",height:"6",x:"4",y:"20",rx:"1"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M9.5,12h-5a.5.5,0,0,1-.4473-.7236l2.5-5.0224a.5206.5206,0,0,1,.8945,0l2.5,5.0225A.5.5,0,0,1,9.5,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H18v2h5v2H19a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V15A2,2,0,0,0,23,13Zm0,8H19V19h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2,2,0,0,0-2,2V23H9V18h4v5h2V11A2,2,0,0,0,13,9ZM9,16V11h4v5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H19V9H17V23h6a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z"}),(0,a.jsx)("path",{d:"M15,12a3,3,0,0,0-3-3H7V23h5a3,3,0,0,0,3-3V18a3,3,0,0,0-.78-2A3,3,0,0,0,15,14ZM9,11h3a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H9Zm4,9a1,1,0,0,1-1,1H9V17h3a1,1,0,0,1,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v6h5Z"}),(0,a.jsx)("path",{d:"M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,9v4H19a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6V9Zm-4,6h4v6H19Z"}),(0,a.jsx)("path",{d:"M11,23H7V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,11,23ZM9,21h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,19V15a2.0023,2.0023,0,0,0-2-2H19a2.0023,2.0023,0,0,0-2,2v6a2.0077,2.0077,0,0,0,2,2h5V21H19V19Zm-6-4h4v2H19Z"}),(0,a.jsx)("path",{d:"M15 11 15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 11 16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11z"}),(0,a.jsx)("path",{d:"M24,11V9H21a2,2,0,0,0-2,2v2H17v2h2v8h2V15h3V13H21V11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v2H18v2h5a2,2,0,0,0,2-2V13Zm4,8H19V15h4Z"}),(0,a.jsx)("path",{d:"M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h4V17H11V15h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 9 13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9z"}),(0,a.jsx)("path",{d:"M23,13H19V9H17V23h2V15h4v8h2V15A2,2,0,0,0,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 11 13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11z"}),(0,a.jsx)("path",{d:"M20 13H22V23H20z"}),(0,a.jsx)("path",{d:"M20 9H22V11H20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 9H22V11H20z"}),(0,a.jsx)("path",{d:"M20,25H17v2h3a2,2,0,0,0,2-2V13H20Z"}),(0,a.jsx)("path",{d:"M14,23H10a2,2,0,0,1-2-2V19h2v2h4V9h2V21A2,2,0,0,1,14,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9z"}),(0,a.jsx)("path",{d:"M22.78 23 25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 21 11 9 9 9 9 23 17 23 17 21 11 21z"}),(0,a.jsx)("path",{d:"M23,23H21a2,2,0,0,1-2-2V9h2V21h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H16V23h2V15h2v8h2V15h2v8h2V15A2,2,0,0,0,24,13Z"}),(0,a.jsx)("path",{d:"M12 9 10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,23H23V15H19v8H17V13h6a2,2,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M13 19 9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2v6A2,2,0,0,1,23,23Zm-4-8v6h4V15Z"}),(0,a.jsx)("path",{d:"M13,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h4a2,2,0,0,1,2,2V21A2,2,0,0,1,13,23ZM9,11V21h4V11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,13H17V27h2V23h4a2,2,0,0,0,2-2V15A2,2,0,0,0,23,13Zm-4,8V15h4v6Z"}),(0,a.jsx)("path",{d:"M9,23H7V9h6a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H9Zm0-7h4V11H9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h4v4h2V13Zm4,8H19V15h4Z"}),(0,a.jsx)("path",{d:"M13,9H9a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2h1v2a2,2,0,0,0,2,2h2V25H12V23h1a2,2,0,0,0,2-2V11A2,2,0,0,0,13,9ZM9,21V11h4V21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,15V11a2,2,0,0,0-2-2H8V23h2V17h1.48l2.34,6H16l-2.33-6H14A2,2,0,0,0,16,15Zm-6-4h4v4H10Z"}),(0,a.jsx)("path",{d:"M24 13 18 13 18 23 20 23 20 15 24 15 24 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,23H17V21h5V19H19a2,2,0,0,1-2-2V15a2,2,0,0,1,2-2h5v2H19v2h3a2,2,0,0,1,2,2v2A2,2,0,0,1,22,23Z"}),(0,a.jsx)("path",{d:"M13,23H7V21h6V17H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,13,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 11 11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11z"}),(0,a.jsx)("path",{d:"M23,15V13H20V11H18v2H16v2h2v6a2,2,0,0,0,2,2h3V21H20V15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23H19a2,2,0,0,1-2-2V13h2v8h4V13h2v8A2,2,0,0,1,23,23Z"}),(0,a.jsx)("path",{d:"M13,23H9a2,2,0,0,1-2-2V9H9V21h4V9h2V21A2,2,0,0,1,13,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 13 23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13z"}),(0,a.jsx)("path",{d:"M13 9 11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.3 13 23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13z"}),(0,a.jsx)("path",{d:"M12.21 9 11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9z"}),(0,a.jsx)("path",{d:"M25 13 23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 9 13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9z"}),(0,a.jsx)("path",{d:"M23,13l-2,7.52L19.08,13H17l3.15,9.87L19.53,25H17v2h2.26a2,2,0,0,0,1.91-1.42L25,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25 15 25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15z"}),(0,a.jsx)("path",{d:"M15 9 7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H22V8H10z"}),(0,a.jsx)("path",{d:"M10 10H22V12H10z"}),(0,a.jsx)("path",{d:"M10 24H16V26H10z"}),(0,a.jsx)("path",{d:"M10 14H16V16H10z"}),(0,a.jsx)("path",{d:"M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 24H12V26H8z"}),(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a8,8,0,1,0,8,8A8.0092,8.0092,0,0,0,22,14Zm5.91,7H25.9563a12.03,12.03,0,0,0-1.2183-4.3325A6.01,6.01,0,0,1,27.91,21Zm-7.8545,0A10.0135,10.0135,0,0,1,22,16.0146,10.0121,10.0121,0,0,1,23.9448,21Zm3.89,2A10.01,10.01,0,0,1,22,27.9854,10.0121,10.0121,0,0,1,20.0552,23Zm-4.6831-6.332A12.0265,12.0265,0,0,0,18.0435,21H16.09A6.01,6.01,0,0,1,19.2617,16.668ZM16.09,23h1.9532a12.0265,12.0265,0,0,0,1.2182,4.332A6.01,6.01,0,0,1,16.09,23Zm8.6482,4.332A12.0242,12.0242,0,0,0,25.9565,23H27.91A6.0088,6.0088,0,0,1,24.7385,27.332Z"}),(0,a.jsx)("path",{d:"M6 14H12V16H6z"}),(0,a.jsx)("path",{d:"M6 6H18V8H6z"}),(0,a.jsx)("path",{d:"M6 10H18V12H6z"}),(0,a.jsx)("path",{d:"M6 24H12V26H6z"}),(0,a.jsx)("path",{d:"M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M20,13V11H17.8579a3.94,3.94,0,0,0-.4248-1.019L18.95,8.4644,17.5356,7.05,16.019,8.5669A3.9443,3.9443,0,0,0,15,8.1421V6H13V8.1421a3.9443,3.9443,0,0,0-1.019.4248L10.4644,7.05,9.05,8.4644,10.5669,9.981A3.94,3.94,0,0,0,10.1421,11H8v2h2.1421a3.94,3.94,0,0,0,.4248,1.019L9.05,15.5356,10.4644,16.95l1.5166-1.5166A3.9443,3.9443,0,0,0,13,15.8579V18h2V15.8579a3.9443,3.9443,0,0,0,1.019-.4248L17.5356,16.95,18.95,15.5356,17.4331,14.019A3.94,3.94,0,0,0,17.8579,13Zm-6,1a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,14,14Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 14H14V16H8z"}),(0,a.jsx)("path",{d:"M8 6H20V8H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M8 24H14V26H8z"}),(0,a.jsx)("path",{d:"M27,25H21a3,3,0,0,0-3,3v2h2V28a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v2h2V28A3,3,0,0,0,27,25Z"}),(0,a.jsx)("path",{d:"M24,24a4,4,0,1,0-4-4A4,4,0,0,0,24,24Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{d:"M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M17,15H11a3,3,0,0,0-3,3v1h2V18a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V18A3,3,0,0,0,17,15Z"}),(0,a.jsx)("path",{d:"M14,14a4,4,0,1,0-4-4A4,4,0,0,0,14,14Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,14,8Z"}),(0,a.jsx)("path",{d:"M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.5 1H8.5V3.5H7.5z"}),(0,a.jsx)("path",{d:"M10.8 3.4H13.3V4.4H10.8z",transform:"rotate(-45 12.041 3.923)"}),(0,a.jsx)("path",{d:"M12.5 7.5H15V8.5H12.5z"}),(0,a.jsx)("path",{d:"M11.6 10.8H12.6V13.3H11.6z",transform:"rotate(-45 12.075 12.04)"}),(0,a.jsx)("path",{d:"M7.5 12.5H8.5V15H7.5z"}),(0,a.jsx)("path",{d:"M2.7 11.6H5.2V12.6H2.7z",transform:"rotate(-45 3.96 12.078)"}),(0,a.jsx)("path",{d:"M1 7.5H3.5V8.5H1z"}),(0,a.jsx)("path",{d:"M3.4 2.7H4.4V5.2H3.4z",transform:"rotate(-45 3.925 3.961)"}),(0,a.jsx)("path",{d:"M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 2H17V7H15z"}),(0,a.jsx)("path",{d:"M21.668 6.854H26.625999999999998V8.854H21.668z",transform:"rotate(-45 24.147 7.853)"}),(0,a.jsx)("path",{d:"M25 15H30V17H25z"}),(0,a.jsx)("path",{d:"M23.147 21.668H25.147V26.625999999999998H23.147z",transform:"rotate(-45 24.147 24.146)"}),(0,a.jsx)("path",{d:"M15 25H17V30H15z"}),(0,a.jsx)("path",{d:"M5.375 23.147H10.333V25.147H5.375z",transform:"rotate(-45 7.853 24.146)"}),(0,a.jsx)("path",{d:"M2 15H7V17H2z"}),(0,a.jsx)("path",{d:"M6.854 5.375H8.854V10.333H6.854z",transform:"rotate(-45 7.854 7.853)"}),(0,a.jsx)("path",{d:"M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 2H17V7H15z"}),(0,a.jsx)("path",{d:"M21.668 6.854H26.625999999999998V8.854H21.668z",transform:"rotate(-45 24.147 7.853)"}),(0,a.jsx)("path",{d:"M25 15H30V17H25z"}),(0,a.jsx)("path",{d:"M23.147 21.668H25.147V26.625999999999998H23.147z",transform:"rotate(-45 24.147 24.146)"}),(0,a.jsx)("path",{d:"M15 25H17V30H15z"}),(0,a.jsx)("path",{d:"M5.375 23.147H10.333V25.147H5.375z",transform:"rotate(-45 7.853 24.146)"}),(0,a.jsx)("path",{d:"M2 15H7V17H2z"}),(0,a.jsx)("path",{d:"M6.854 5.375H8.854V10.333H6.854z",transform:"rotate(-45 7.854 7.853)"}),(0,a.jsx)("path",{d:"M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z"}),(0,a.jsx)("path",{d:"M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.5,24.6506L24.6506,4.5l2.8494,2.8494L7.3494,27.5l-2.8494-2.8494Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5.293,25.2929L25.293,5.2929l1.4141,1.4141L6.707,26.707l-1.4141-1.4141Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z"}),(0,a.jsx)("path",{d:"M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M26 2H28V30H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m20,25H6c-1.1046,0-2-.8954-2-2v-14c0-1.1046.8954-2,2-2h14c1.1046,0,2,.8954,2,2v14c0,1.1046-.8954,2-2,2Zm0-16H6v14h14v-14Z"}),e)});const n=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H28V8H10z"}),(0,a.jsx)("path",{d:"M10 24H28V26H10z"}),(0,a.jsx)("path",{d:"M10 15H28V17H10z"}),(0,a.jsx)("path",{d:"M4 15H6V17H4z"}),(0,a.jsx)("path",{d:"M4 6H6V8H4z"}),(0,a.jsx)("path",{d:"M4 24H6V26H4z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M10,14H4a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,4,4h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,14ZM4,6v6h6.0012L10,6Z"}),(0,a.jsx)("path",{d:"M10,28H4a2.0023,2.0023,0,0,1-2-2V20a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,10,28ZM4,20v6h6.0012L10,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"3.5",cy:"4.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"3.5",cy:"11.5",r:"1.5"}),(0,a.jsx)("path",{d:"M8 11H15V12H8z"}),(0,a.jsx)("path",{d:"M8 4H15V5H8z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7",cy:"9",r:"3"}),(0,a.jsx)("circle",{cx:"7",cy:"23",r:"3"}),(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M14 19.4 12.6 18 6 24.6 3.4 22 2 23.4 6 27.4z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M14 5.4 12.6 4 6 10.6 3.4 8 2 9.4 6 13.4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 19.4 28.6 18 22 24.6 19.4 22 18 23.4 22 27.4z"}),(0,a.jsx)("path",{d:"M2 22H16V24H2z"}),(0,a.jsx)("path",{d:"M30 5.4 28.6 4 22 10.6 19.4 8 18 9.4 22 13.4z"}),(0,a.jsx)("path",{d:"M2 8H16V10H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6V2H2V12h9V30H30V6ZM4,10V4H24V6H11v4ZM28,28H13V8H28Z"}),(0,a.jsx)("path",{d:"M15 11H17V13H15z"}),(0,a.jsx)("path",{d:"M19 11H26V13H19z"}),(0,a.jsx)("path",{d:"M15 17H17V19H15z"}),(0,a.jsx)("path",{d:"M19 17H26V19H19z"}),(0,a.jsx)("path",{d:"M15 23H17V25H15z"}),(0,a.jsx)("path",{d:"M19 23H26V25H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 22H30V24H16z"}),(0,a.jsx)("path",{d:"M16 8H30V10H16z"}),(0,a.jsx)("path",{d:"M8 12 8 4 6 4 6 5 4 5 4 7 6 7 6 12 4 12 4 14 6 14 8 14 10 14 10 12 8 12z"}),(0,a.jsx)("path",{d:"M10,28H4V24a2,2,0,0,1,2-2H8V20H4V18H8a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H6v2h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,28h-6v-4c0-1.1,0.9-2,2-2h2v-2h-4v-2h4c1.1,0,2,0.9,2,2v2c0,1.1-0.9,2-2,2h-2v2h4V28z"}),(0,a.jsx)("path",{d:"M2 22H16V24H2z"}),(0,a.jsx)("path",{d:"M26 12 26 4 24 4 24 5 22 5 22 7 24 7 24 12 22 12 22 14 24 14 26 14 28 14 28 12z"}),(0,a.jsx)("path",{d:"M2 8H16V10H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,4h-2v22c0,1.1025.897,2,2,2h5v-2h-5v-6h5v-2h-5v-6h5v-2h-5v-6ZM16,12h2v-2h-2v2ZM20,10v2h7v-2h-7ZM16,20h2v-2h-2v2ZM20,20h7v-2h-7v2ZM16,28h2v-2h-2v2ZM20,28h7v-2h-7v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V14H15v2H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M9,2V12H23V2Zm2,2h2v6H11Zm10,6H15V4h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M20,10V2H12v8ZM14,8V4h4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 8H17V10H15z"}),(0,a.jsx)("path",{d:"M19 8H21V10H19z"}),(0,a.jsx)("path",{d:"M11 8H13V10H11z"}),(0,a.jsx)("path",{d:"M25,16H17V13H15v3H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M11 3H21V5H11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17V10H15v6H7a2.0023,2.0023,0,0,0-2,2v6H7V18h8v6h2V18h8v6h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M4 26H8V30H4z"}),(0,a.jsx)("path",{d:"M14 26H18V30H14z"}),(0,a.jsx)("path",{d:"M24 26H28V30H24z"}),(0,a.jsx)("path",{d:"M11 5H21V7H11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17V12H15v4H7a2.0023,2.0023,0,0,0-2,2v4H7V18h8v4h2V18h8v4h2V18A2.0023,2.0023,0,0,0,25,16Z"}),(0,a.jsx)("path",{d:"M20,10V2H12v8h8ZM14,8V4h4V8Z"}),(0,a.jsx)("path",{d:"M26,24a2.9948,2.9948,0,0,0-2.8157,2H18.8157a2.982,2.982,0,0,0-5.6314,0H8.8157a3,3,0,1,0,0,2h4.3686a2.982,2.982,0,0,0,5.6314,0h4.3686A2.9947,2.9947,0,1,0,26,24ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Zm10,0a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 15H22V17H10z"}),(0,a.jsx)("path",{d:"M8.7,6.2852A2.9665,2.9665,0,0,0,9,5,3,3,0,1,0,6,8a2.96,2.96,0,0,0,1.2852-.3008L10,10.4141V13h2V9.5859ZM6,6A1,1,0,1,1,7,5,1.0009,1.0009,0,0,1,6,6Z"}),(0,a.jsx)("path",{d:"M19,5a3,3,0,1,0-4,2.8154V13h2V7.8159A2.9957,2.9957,0,0,0,19,5ZM16,6a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,6Z"}),(0,a.jsx)("path",{d:"M26,2a3.0033,3.0033,0,0,0-3,3,2.9665,2.9665,0,0,0,.3,1.2852L20,9.5859V13h2V10.4141l2.7148-2.7149A2.96,2.96,0,0,0,26,8a3,3,0,0,0,0-6Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,6Z"}),(0,a.jsx)("path",{d:"M12,19H10v2.5859L7.2854,24.3008A2.9609,2.9609,0,0,0,6,24a3,3,0,1,0,3,3,2.9665,2.9665,0,0,0-.3-1.2852L12,22.4141ZM6,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,6,28Z"}),(0,a.jsx)("path",{d:"M17,24.1841V19H15v5.1841a3,3,0,1,0,2,0ZM16,28a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M26,24a2.9609,2.9609,0,0,0-1.2854.3008L22,21.5859V19H20v3.4141l3.3,3.3007A2.9665,2.9665,0,0,0,23,27a3,3,0,1,0,3-3Zm0,4a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,30H2V24H8ZM4,28H6V26H4Z"}),(0,a.jsx)("path",{d:"M19,30H13V24h6Zm-4-2h2V26H15Z"}),(0,a.jsx)("path",{d:"M30,30H24V24h6Zm-4-2h2V26H26Z"}),(0,a.jsx)("path",{d:"M16,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,10Zm0-6a2,2,0,1,0,2,2A2.002,2.002,0,0,0,16,4Z"}),(0,a.jsx)("path",{d:"M26,16H21a4.0045,4.0045,0,0,1-4-4H15a4.0045,4.0045,0,0,1-4,4H6a2.0023,2.0023,0,0,0-2,2v4H6V18h5A5.9694,5.9694,0,0,0,15,16.46V22h2V16.46A5.9694,5.9694,0,0,0,21,18h5v4h2V18A2.0023,2.0023,0,0,0,26,16Z"}),e)});const w=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),(0,a.jsx)("path",{d:"M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M15 16H17V18H15z"}),(0,a.jsx)("path",{d:"M15 12H17V14H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M21,18H19V10H13v8H11V10a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2Zm-4-2H15v2h2Zm0-4H15v2h2Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm1,16H15V16h2Zm0-4H15V12h2Zm4,4H19V10H13v8H11V10a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,12.9835a1,1,0,0,0,.6289.9448l9.6015,3.8409,3.8407,9.6019A1,1,0,0,0,19,28h.0162a1.0009,1.0009,0,0,0,.9238-.6582l8-22.0007A1,1,0,0,0,26.658,4.0594l-22,8A1.0011,1.0011,0,0,0,4,12.9835Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,17Z"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"4",fill:"none"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"20.5",r:"1.5"}),(0,a.jsx)("path",{d:"M15 7H17V16H15z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Zm-1.125-6h2.25V7h-2.25Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2ZM14.875,7h2.25v9h-2.25ZM16,22a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M18.303,9a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,18l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,9Z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm4.2109,11.7021L16.002,18l-4.2129-4.2979a2.7992,2.7992,0,0,1,0-3.8964,2.6619,2.6619,0,0,1,3.8159,0l.397.4057.393-.4057a2.6619,2.6619,0,0,1,3.8159,0A2.7992,2.7992,0,0,1,20.2109,13.7021Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M17 18 17 11 13 11 13 13 15 13 15 18 12 18 12 20 20 20 20 18 17 18z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m15.5,6c-.8284,0-1.5.6716-1.5,1.5s.6716,1.5,1.5,1.5,1.5-.6716,1.5-1.5-.6716-1.5-1.5-1.5Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30l-8.4355-9.9487c-.0479-.0571-.3481-.4516-.3481-.4516-1.4507-1.9268-2.2163-4.2065-2.2163-6.5998,0-6.0641,4.9346-11,11-11s11,4.9359,11,11c0,2.3933-.7656,4.673-2.2148,6.5973l-.0015.0024s-.3003.3944-.3447.4474l-8.439,9.9528Zm-7.1875-11.605c.001.0007.2334.3083.2866.3744l6.9009,8.1385,6.9102-8.1498c.0439-.0552.2783-.3649.2788-.3656,1.1851-1.5746,1.811-3.4376,1.811-5.3925,0-4.9615-4.0376-9-9-9S7,8.0385,7,13c0,1.9559.627,3.8199,1.8125,5.395h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-6.0654,0-11,4.936-11,11,0,2.3931.7656,4.6729,2.2163,6.5996,0,0,.3003.3945.3481.4517l8.4355,9.9487,8.439-9.9526c.0444-.0532.3447-.4478.3447-.4478l.0015-.0024c1.4492-1.9243,2.2148-4.2041,2.2148-6.5972,0-6.064-4.9346-11-11-11Zm-.5,4c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"}),(0,a.jsx)("path",{fill:"none",strokeWidth:"0",d:"m15.5,6c.8284,0,1.5.6714,1.5,1.5s-.6716,1.5-1.5,1.5-1.5-.6714-1.5-1.5.6716-1.5,1.5-1.5Zm4.5,14h-8v-2h3v-5h-2v-2h4v7h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M16,14a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,14Zm0-4a1,1,0,1,0,1,1A1.0011,1.0011,0,0,0,16,10Z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M20,19H18V17H14v2H12V17a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2Zm-1-8a3,3,0,1,0-3,3A3.0033,3.0033,0,0,0,19,11Zm-2,0a1,1,0,1,1-1-1A1.0011,1.0011,0,0,1,17,11Z"}),(0,a.jsx)("circle",{cx:"16",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm0,6a3,3,0,1,1-3,3A3.0033,3.0033,0,0,1,16,8Zm4,11H18V17H14v2H12V17a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30h2V28a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v2h2V28a3.0033,3.0033,0,0,0-3-3H21a3.0033,3.0033,0,0,0-3,3Z"}),(0,a.jsx)("path",{d:"M24,24a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,24,24Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,24,18Z"}),(0,a.jsx)("path",{d:"M25.3418,10.06l-22-8A1,1,0,0,0,2.06,3.3415l8,22A1.001,1.001,0,0,0,10.9839,26H11a1,1,0,0,0,.9287-.6289L15.77,15.7692l9.6016-3.8408a1,1,0,0,0-.0293-1.8687ZM14.6284,14.0709v0l-.3979.1591-.1591.3979,0,0-3.0269,7.5678L4.6719,4.6715l17.5244,6.3726Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"}),(0,a.jsx)("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,0,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M16 7 17.912 10.667 22 11.173 19 13.926 19.6 18 16 15.708 12.4 18 13 13.926 10 11.173 14.2 10.667 16 7z"}),(0,a.jsx)("path",{d:"M16,2A11.0134,11.0134,0,0,0,5,13a10.8885,10.8885,0,0,0,2.2163,6.6s.3.3945.3482.4517L16,30l8.439-9.9526c.0444-.0533.3447-.4478.3447-.4478l.0015-.0024A10.8846,10.8846,0,0,0,27,13,11.0134,11.0134,0,0,0,16,2Zm3.6,16L16,15.7085,12.4,18l.6-4.0742-3-2.7529,4.2-.5064L16,7l1.9116,3.6665L22,11.1729l-3,2.7529Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,14H22V8A6,6,0,0,0,10,8v6H8a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V16A2,2,0,0,0,24,14ZM12,8a4,4,0,0,1,8,0v6H12ZM24,28H8V16H24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30.4461,20.1005c-.1386-.0692-.2914-.1052-.4464-.1053h-10c-.5522,0-1.0001.4474-1.0002.9998,0,.1338.0268.2662.0789.3895l5.0268,10.0581c.1694.3388.5158.5527.8946.5527.3788,0,.7253-.2139.8947-.5527l5-10c.2468-.4944.046-1.0953-.4484-1.342h0ZM8,16h16v2h2v-2c0-1.1046-.8954-2-2-2h-2v-6c0-3.3137-2.6863-6-6-6s-6,2.6863-6,6v6h-2c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h11v-2h-11v-12ZM12,8c0-2.2092,1.7908-4,4-4s4,1.7908,4,4v6h-8v-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M27,22v-4c0-1.1046-.8954-2-2-2h-8v-4h9c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2H6c-1.1046,0-2,.8954-2,2v6c0,1.1046,.8954,2,2,2H15v4H7c-1.1046,0-2,.8954-2,2v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4H15v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1v-4h8v4h-1c-1.1046,0-2,.8954-2,2v4c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-1Zm-19,6H4v-4h4v4Zm10-4v4h-4v-4h4ZM6,10V4H26v6H6ZM28,28h-4v-4h4v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,30H14a2,2,0,0,1-2-2V25h2v3H26V4H14V7H12V4a2,2,0,0,1,2-2H26a2,2,0,0,1,2,2V28A2,2,0,0,1,26,30Z"}),(0,a.jsx)("path",{d:"M14.59 20.59 18.17 17 4 17 4 15 18.17 15 14.59 11.41 16 10 22 16 16 22 14.59 20.59z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.5,16h4.9L16,10.8L13.5,16z"}),(0,a.jsx)("path",{d:"M16,3L3,7.6l2.7,15.8L16,29l10.3-5.6L29,7.6L16,3z M21.1,21.6l-1.5-3.2h-7.1l-1.5,3.2H8.6L16,5.3l7.4,16.2H21.1z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.8,27.7L17.5,3.1C17.2,2.4,16.6,2,15.9,2c-0.7,0-1.3,0.4-1.6,1.1L3,30h3.9l4.5-11.1l13.3,10.7c0.5,0.4,0.9,0.6,1.4,0.6 c1,0,1.9-0.7,1.9-1.8C28,28.2,27.9,28,27.8,27.7z M15.9,7.5l6.7,16.4L12.5,16L15.9,7.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.2,6.9c2.7,2.1,5.7,6.3,6.8,8.5,1.1-2.2,4-6.4,6.8-8.5,2-1.5,5.2-2.6,5.2,1s-.4,6.2-.7,7c-.9,3.1-4,3.8-6.8,3.4,4.8.8,6.1,3.6,3.4,6.3-5.1,5.2-7.3-1.3-7.8-3,0-.3-.1-.5-.1-.3,0-.1,0,0-.1.3-.6,1.7-2.8,8.2-7.8,3-2.7-2.7-1.4-5.5,3.4-6.3-2.8.5-5.9-.3-6.8-3.4-.2-.9-.7-6.3-.7-7,0-3.7,3.2-2.5,5.2-1,0,0,0,0,0,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6.48,7.6v3.92H2V21H9.28V7.6Zm0,11.2H4.8v-5H6.48Z"}),(0,a.jsx)("path",{d:"M10.4 11.52H13.2V21.04H10.4z"}),(0,a.jsx)("path",{d:"M10.4 7.6H13.2V10.399999999999999H10.4z"}),(0,a.jsx)("path",{d:"M14.32,11.52V21H18.8v1.12H14.32V24.4H21.6V11.52ZM18.8,18.8H17.12v-5H18.8Z"}),(0,a.jsx)("path",{d:"M22.72,11.52V21H27.2v1.12H22.72V24.4H30V11.52ZM27.2,18.8H25.52v-5H27.2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.7,7.1C23.9,6.3,22,5.7,20,5.3c0,0-0.1,0-0.1,0c-0.2,0.4-0.5,1-0.7,1.5c-2.2-0.3-4.3-0.3-6.4,0c-0.2-0.5-0.5-1-0.7-1.5 c0,0-0.1,0-0.1,0c-2,0.3-3.9,0.9-5.7,1.8c0,0,0,0,0,0c-3.6,5.4-4.6,10.7-4.1,15.9c0,0,0,0.1,0,0.1c2.4,1.8,4.7,2.8,7,3.5 c0,0,0.1,0,0.1,0c0.5-0.7,1-1.5,1.4-2.3c0,0,0-0.1,0-0.1c-0.8-0.3-1.5-0.6-2.2-1c-0.1,0-0.1-0.1,0-0.1c0.1-0.1,0.3-0.2,0.4-0.3 c0,0,0.1,0,0.1,0c4.6,2.1,9.5,2.1,14.1,0c0,0,0.1,0,0.1,0c0.1,0.1,0.3,0.2,0.4,0.3c0.1,0,0,0.1,0,0.1c-0.7,0.4-1.4,0.8-2.2,1 c0,0-0.1,0.1,0,0.1c0.4,0.8,0.9,1.6,1.4,2.3c0,0,0.1,0,0.1,0c2.3-0.7,4.6-1.8,7-3.5c0,0,0,0,0-0.1C30.5,17,28.9,11.8,25.7,7.1 C25.7,7.1,25.7,7.1,25.7,7.1z M11.4,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C13.9,18.6,12.8,19.9,11.4,19.9z M20.7,19.9c-1.4,0-2.5-1.3-2.5-2.8s1.1-2.8,2.5-2.8c1.4,0,2.5,1.3,2.5,2.8 C23.2,18.6,22.1,19.9,20.7,19.9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.67,4H5.33A1.34,1.34,0,0,0,4,5.33V26.67A1.34,1.34,0,0,0,5.33,28H16.82V18.72H13.7V15.09h3.12V12.42c0-3.1,1.89-4.79,4.67-4.79.93,0,1.86,0,2.79.14V11H22.37c-1.51,0-1.8.72-1.8,1.77v2.31h3.6l-.47,3.63H20.57V28h6.1A1.34,1.34,0,0,0,28,26.67V5.33A1.34,1.34,0,0,0,26.67,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.6,11.6c1-0.6,1.7-1.5,2.1-2.6c0.4-1.1,0.4-2.2,0.1-3.3c-0.3-1.1-1-2-1.9-2.7c-0.9-0.7-2.1-1-3.2-1h-9.2 c-1.2,0-2.3,0.4-3.2,1C7.2,3.7,6.6,4.7,6.2,5.7C5.9,6.8,5.9,8,6.3,9c0.4,1.1,1.1,2,2.1,2.6c-0.7,0.5-1.4,1.1-1.8,1.9 C6.2,14.3,6,15.1,6,16c0,0.9,0.2,1.7,0.6,2.5c0.4,0.8,1,1.4,1.8,1.9c-1,0.6-1.7,1.5-2.1,2.6c-0.4,1.1-0.4,2.2-0.1,3.3 c0.3,1.1,1,2,2,2.7c0.9,0.7,2.1,1,3.2,1c1.4,0,2.8-0.6,3.9-1.5c1-1,1.6-2.3,1.6-3.7v-4.8c1,0.9,2.3,1.4,3.6,1.4h0.1 c1.2,0,2.3-0.4,3.2-1c0.9-0.7,1.6-1.6,1.9-2.7c0.3-1.1,0.3-2.2-0.1-3.3C25.3,13.1,24.5,12.2,23.6,11.6z M16.9,3.7h3.7 c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2s0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2 c-0.4,0.3-0.8,0.6-1.2,0.8c-0.5,0.2-1,0.2-1.4,0.2h-3.7V3.7z M11.4,3.7h3.7v7h-3.7c-0.9,0-1.8-0.4-2.4-1.1C8.3,9,8,8.1,8,7.2 s0.4-1.8,1-2.4C9.6,4.2,10.5,3.8,11.4,3.7L11.4,3.7z M7.8,16c0-0.9,0.4-1.8,1.1-2.5c0.7-0.7,1.6-1,2.6-1h3.7v7h-3.7 c-1,0-1.9-0.4-2.6-1C8.2,17.8,7.8,16.9,7.8,16L7.8,16z M15.1,24.7c0,1-0.4,1.9-1.1,2.5c-0.7,0.7-1.6,1-2.6,1c-0.5,0-1,0-1.4-0.2 c-0.5-0.2-0.9-0.4-1.2-0.7c-0.4-0.3-0.6-0.7-0.8-1.2c-0.2-0.4-0.3-0.9-0.3-1.4c0-0.5,0.1-1,0.3-1.4c0.2-0.4,0.5-0.8,0.8-1.2 c0.4-0.3,0.8-0.6,1.2-0.8c0.5-0.2,1-0.2,1.4-0.2h3.7L15.1,24.7z M20.6,19.5h-0.1c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.7-1-1.5-1-2.4 c0-0.9,0.4-1.8,1-2.4c0.6-0.7,1.5-1,2.4-1.1h0.1c0.5,0,1,0,1.4,0.2c0.5,0.2,0.9,0.4,1.2,0.8c0.4,0.3,0.6,0.7,0.8,1.2 c0.2,0.4,0.3,0.9,0.3,1.4c0,0.5-0.1,1-0.3,1.4c-0.2,0.4-0.5,0.8-0.8,1.2c-0.4,0.3-0.8,0.6-1.2,0.8C21.6,19.5,21.1,19.5,20.6,19.5 L20.6,19.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"8",cy:"16",r:"6"}),(0,a.jsx)("circle",{cx:"24",cy:"16",r:"6"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.5242,14.8021L17.2022,2.5241c-.7013-.6988-1.8032-.6988-2.5045,0h0l-2.5045,2.4955,3.2057,3.1943c.8014-.2995,1.6029,0,2.2039.4991.6011.5989.8014,1.3975.5009,2.1961l3.1055,3.0945c.8014-.2995,1.6029,0,2.2039.4991.8014.7986.8014,2.1961,0,2.9947h0c-.8014.7986-2.2039.7986-3.0054,0-.6011-.5989-.8014-1.4973-.5009-2.2959l-2.9052-2.8948v7.5865c1.102.4991,1.5027,1.7968,1.0018,2.8948-.1002.1996-.2004.3993-.4007.5989-.8014.7986-2.2039.7986-3.0054,0h0c-.8014-.7986-.8014-2.1961,0-2.9947h0c.2004-.1996.4007-.3993.7013-.4991v-7.6863c-.3005-.0998-.5009-.2995-.7013-.4991-.6011-.5989-.8014-1.4973-.5009-2.2959l-3.2057-3.1943L2.4759,14.7023c-.7013.6988-.7013,1.7968,0,2.5954h0l12.2218,12.1783c.7013.6988,1.8032.6988,2.5045,0l12.2218-12.1783c.7013-.6988.7013-1.7968,0-2.5954"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M16,2a14,14,0,0,0-4.43,27.28c.7.13,1-.3,1-.67s0-1.21,0-2.38c-3.89.84-4.71-1.88-4.71-1.88A3.71,3.71,0,0,0,6.24,22.3c-1.27-.86.1-.85.1-.85A2.94,2.94,0,0,1,8.48,22.9a3,3,0,0,0,4.08,1.16,2.93,2.93,0,0,1,.88-1.87c-3.1-.36-6.37-1.56-6.37-6.92a5.4,5.4,0,0,1,1.44-3.76,5,5,0,0,1,.14-3.7s1.17-.38,3.85,1.43a13.3,13.3,0,0,1,7,0c2.67-1.81,3.84-1.43,3.84-1.43a5,5,0,0,1,.14,3.7,5.4,5.4,0,0,1,1.44,3.76c0,5.38-3.27,6.56-6.39,6.91a3.33,3.33,0,0,1,.95,2.59c0,1.87,0,3.38,0,3.84s.25.81,1,.67A14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28.5678,12.8926l-.0366-.0934-3.5388-9.2356c-.072-.181-.1995-.3346-.3642-.4386-.3375-.2095-.7699-.1863-1.083.0582-.1512.1228-.2608.2892-.3141.4765l-2.3894,7.3105h-9.6756l-2.3894-7.3105c-.0518-.1884-.1617-.3556-.3141-.4779-.3131-.2445-.7455-.2677-1.083-.0582-.1643.1045-.2917.2579-.3642.4386l-3.5456,9.2315-.0352.0934c-1.0465,2.7345-.1578,5.8315,2.1796,7.5948l.0122.0095.0325.023,5.3908,4.037,2.667,2.0185,1.6246,1.2265c.3905.2965.9308.2965,1.3213,0l1.6246-1.2265,2.667-2.0185,5.4233-4.0614.0135-.0108c2.3319-1.7635,3.219-4.8551,2.1769-7.5867Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.8281,28H21.1719a3.43,3.43,0,0,0,3.43-3.43V10.3306h-3.43V24.57H7.3981A3.43,3.43,0,0,0,10.8281,28Z"}),(0,a.jsx)("path",{d:"M21.1719,4H10.8281a3.43,3.43,0,0,0-3.43,3.43v14.24h3.43V7.43H24.6019A3.43,3.43,0,0,0,21.1719,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"22.406",cy:"9.594",r:"1.44"}),(0,a.jsx)("path",{d:"M16,9.8378A6.1622,6.1622,0,1,0,22.1622,16,6.1622,6.1622,0,0,0,16,9.8378ZM16,20a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z"}),(0,a.jsx)("path",{d:"M16,6.1622c3.2041,0,3.5837.0122,4.849.07a6.6418,6.6418,0,0,1,2.2283.4132,3.9748,3.9748,0,0,1,2.2774,2.2774,6.6418,6.6418,0,0,1,.4132,2.2283c.0577,1.2653.07,1.6449.07,4.849s-.0122,3.5837-.07,4.849a6.6418,6.6418,0,0,1-.4132,2.2283,3.9748,3.9748,0,0,1-2.2774,2.2774,6.6418,6.6418,0,0,1-2.2283.4132c-1.2652.0577-1.6446.07-4.849.07s-3.5838-.0122-4.849-.07a6.6418,6.6418,0,0,1-2.2283-.4132,3.9748,3.9748,0,0,1-2.2774-2.2774,6.6418,6.6418,0,0,1-.4132-2.2283c-.0577-1.2653-.07-1.6449-.07-4.849s.0122-3.5837.07-4.849a6.6418,6.6418,0,0,1,.4132-2.2283A3.9748,3.9748,0,0,1,8.9227,6.6453a6.6418,6.6418,0,0,1,2.2283-.4132c1.2653-.0577,1.6449-.07,4.849-.07M16,4c-3.259,0-3.6677.0138-4.9476.0722A8.8068,8.8068,0,0,0,8.14,4.63,6.1363,6.1363,0,0,0,4.63,8.14a8.8068,8.8068,0,0,0-.5578,2.9129C4.0138,12.3323,4,12.741,4,16s.0138,3.6677.0722,4.9476A8.8074,8.8074,0,0,0,4.63,23.8605a6.1363,6.1363,0,0,0,3.51,3.51,8.8068,8.8068,0,0,0,2.9129.5578C12.3323,27.9862,12.741,28,16,28s3.6677-.0138,4.9476-.0722a8.8074,8.8074,0,0,0,2.9129-.5578,6.1363,6.1363,0,0,0,3.51-3.51,8.8074,8.8074,0,0,0,.5578-2.9129C27.9862,19.6677,28,19.259,28,16s-.0138-3.6677-.0722-4.9476A8.8068,8.8068,0,0,0,27.37,8.14a6.1363,6.1363,0,0,0-3.51-3.5095,8.8074,8.8074,0,0,0-2.9129-.5578C19.6677,4.0138,19.259,4,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,4v24h24V4H4z M12.1,9c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c0,0,0,0,0,0c-0.8,0-1.4-0.6-1.4-1.4 C10.8,9.6,11.4,9,12.1,9z M21.5,22.2c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1l0.7-2.4c0.1-0.2,0.1-0.5,0.1-0.7 c0-0.8-0.5-1.3-1.2-1.3c-1,0-1.6,0.7-1.9,2L15.9,22h-2.3l0.4-1.7c-0.7,1.1-1.6,1.8-2.8,1.8c-1.4,0-2.1-0.8-2.1-2c0-0.3,0-0.7,0.1-1 l1.1-4.3H8.7L9.2,13h3.9l-1.5,6.1c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4,0.2,0.5,0.5,0.6c0.2,0,1.6,0,2.4-1.8l1-4.1h-1.6l0.5-1.8h3.5 l-0.5,2.1c0.6-1.2,1.9-2.2,3.1-2.2c1.3,0,2.4,0.9,2.4,2.7c0,0.5-0.1,1-0.2,1.5l-0.7,2.4c-0.1,0.2-0.1,0.4-0.1,0.6 c0,0.4,0.2,0.6,0.5,0.6c0.3,0,0.7-0.2,1.2-1.5l0.9,0.4C23.7,21.4,22.7,22.2,21.5,22.2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.0766,3.5878a1.69,1.69,0,1,1-1.76-1.5853,1.67,1.67,0,0,1,1.76,1.5853Z"}),(0,a.jsx)("path",{d:"M16.2191,23.1113c-4.4866,0-8.43-1.61-10.4688-3.9882a11.1618,11.1618,0,0,0,20.9377,0C24.6541,21.5011,20.7257,23.1113,16.2191,23.1113Z"}),(0,a.jsx)("path",{d:"M16.2191,7.6483c4.4867,0,8.43,1.61,10.4689,3.9881a11.1618,11.1618,0,0,0-20.9377,0C7.7892,9.2535,11.7126,7.6483,16.2191,7.6483Z"}),(0,a.jsx)("path",{d:"M10.0427,27.7388a2.1085,2.1085,0,1,1-.2031-.7976,2.1278,2.1278,0,0,1,.2031.7976Z"}),(0,a.jsx)("path",{d:"M6.26,7.1064A1.2263,1.2263,0,1,1,7.4517,5.83,1.2415,1.2415,0,0,1,6.26,7.1064Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14.1233,26.9328a1.1122,1.1122,0,1,1-1.1121-1.1122,1.112,1.112,0,0,1,1.1121,1.1122"}),(0,a.jsx)("path",{d:"M21.0257,26.9328a1.1122,1.1122,0,1,1-1.1122-1.1122,1.1121,1.1121,0,0,1,1.1122,1.1122"}),(0,a.jsx)("path",{d:"M9.999 5.797H10.973V6.771H9.999z",transform:"rotate(-86.462 10.486 6.284)"}),(0,a.jsx)("path",{d:"M26.4275,16.3825l-.0013.001a13.0868,13.0868,0,0,0-5.1431-4.1825c-.3754-.1667-.7543-.3142-1.1354-.4454.0128-.0314.0277-.0615.04-.0933a4.83,4.83,0,0,0-2.9861-6.319,5.9368,5.9368,0,0,0-1.9962-.3558c-.0366-.1253-.1165-.6743.58-2.1571L14.3742,2q-.17.236-.3368.4661c-.384.5309-.7549,1.0444-1.1029,1.55a2.1657,2.1657,0,0,0-1.4486-.6771L9.8543,3.2377H9.852l-.0025,0c-.0429-.0025-.0864-.0039-.1293-.0039A2.1877,2.1877,0,0,0,7.54,5.2825L7.4388,6.9169l0,.003,0,.0028A2.1882,2.1882,0,0,0,9.4854,9.23l1.1673.0723a5.1711,5.1711,0,0,0,.47,2.688,13.1954,13.1954,0,0,0-4.2637,2.9C3,18.7883,3,23.06,3,26.4916v2.0706l1.524-1.6163A12.3293,12.3293,0,0,0,5.8548,30H7.8367A10.7091,10.7091,0,0,1,5.878,25.51l2.2353-2.3708L6.963,26.745l2.03-1.4774c3.5858-2.61,7.8678-3.2093,12.7263-1.7826a4.6276,4.6276,0,0,0,5.2189-1.468c.0441-.0628.0828-.128.1228-.1926a9.6141,9.6141,0,0,1,.1638,1.7454,12.4214,12.4214,0,0,1-1.61,6.43h1.877A14.4022,14.4022,0,0,0,28.87,23.57,12.2666,12.2666,0,0,0,26.4275,16.3825ZM13.8455,5.9257a1.5872,1.5872,0,0,0,1.3983.7068,4.2111,4.2111,0,0,1,1.44.2719,3.17,3.17,0,0,1,1.0279,5.4638l-.4752-.5849-.0032-.004a1.7048,1.7048,0,0,0-3.0235.9865,3.2143,3.2143,0,0,1-1.899-3.5412,8.4815,8.4815,0,0,1,1.4374-3.466A1.642,1.642,0,0,0,13.8455,5.9257Zm3.49,9.2589-.6072.4962a.2675.2675,0,0,1-.376-.038l-.1264-.1549a.2791.2791,0,0,1,.0394-.3927l.6-.49-1.235-1.5158a.362.362,0,1,1,.5611-.4575l3.4546,4.2517a.3619.3619,0,0,1-.1988.5815.3566.3566,0,0,1-.0816.0094.3609.3609,0,0,1-.2806-.1332l-.3441-.4239-1.2215.9971a.2815.2815,0,0,1-.3965-.04l-.5532-.6775a.2786.2786,0,0,1,.04-.3919l1.2275-1.002ZM9.08,7.0184l.1014-1.6342A.5394.5394,0,0,1,9.72,4.8781l.0326.001,1.6335.1013a.5387.5387,0,0,1,.5046.5716l-.0073.1182a10.6739,10.6739,0,0,0-.9028,2.0046L9.5859,7.5886A.5407.5407,0,0,1,9.08,7.0184ZM25.5944,21.07a2.9883,2.9883,0,0,1-3.4112.8373c-4.5313-1.3305-8.6289-1.0534-12.2124.82l1.9069-5.978-7.203,7.6393a11.67,11.67,0,0,1,3.3532-8.3419,11.4953,11.4953,0,0,1,4.1073-2.6908,5.42,5.42,0,0,0,2.2411,1.2214,4.714,4.714,0,0,0,.5627.12,1.6258,1.6258,0,0,0,.2449,1.6416l.0847.1038a1.6247,1.6247,0,0,0,.2594,1.605l.5532.6777a1.6276,1.6276,0,0,0,2.29.2314l.3314-.2705a1.7079,1.7079,0,0,0,1.9867-2.6535l-1.9427-2.3911a4.88,4.88,0,0,0,.4863-.456,12.449,12.449,0,0,1,1.3829.5181,11.419,11.419,0,0,1,4.5085,3.6838C26.0987,18.7278,26.2745,20.1043,25.5944,21.07Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15.134 17.189 15.999 17.605 16.862 17.19 17.076 16.259 16.479 15.512 15.518 15.512 14.919 16.257 15.134 17.189z"}),(0,a.jsx)("path",{d:"M14.2166,13.88l.0024.0019a.5239.5239,0,0,0,.8321-.4013l0-.003.0127-.0063L15.242,10.33c-.2173.0268-.43.0635-.6333.1094a6.2,6.2,0,0,0-2.9727,1.6176l2.5752,1.8257Z"}),(0,a.jsx)("path",{d:"M12.8347,16.2622l.003-.001a.5241.5241,0,0,0,.206-.9008l-.0024-.002.0029-.0127-2.3515-2.1035a6.1775,6.1775,0,0,0-.8746,3.9l3.0142-.87Z"}),(0,a.jsx)("path",{d:"M13.8645,18.501a.5229.5229,0,0,0-.6059-.3989l-.0034,0-.0049-.0063-3.0908.5249a6.2052,6.2052,0,0,0,2.4863,3.1108l1.1972-2.8935-.0087-.0117.0009-.003A.5184.5184,0,0,0,13.8645,18.501Z"}),(0,a.jsx)("path",{d:"M16.4622,19.6431l-.0015-.0025a.53.53,0,0,0-.48-.2759.5269.5269,0,0,0-.4434.2769l-.0015.0029H15.533l-1.52,2.7481a6.2277,6.2277,0,0,0,3.38.1723c.207-.0468.41-.104.6044-.1684l-1.5234-2.7534Z"}),(0,a.jsx)("path",{d:"M18.7371,18.09l-.0034,0a.51.51,0,0,0-.1206-.0088.5263.5263,0,0,0-.4546.7319l.001.0024-.004.0054,1.21,2.9234A6.185,6.185,0,0,0,21.86,18.61l-3.1176-.5269Z"}),(0,a.jsx)("path",{d:"M21.2893,13.2437,18.951,15.3364l.0014.0064-.0024.0019a.5249.5249,0,0,0,.2055.9014l.0035.0005.0024.0132,3.0293.872a6.2915,6.2915,0,0,0-.9014-3.8881Z"}),(0,a.jsx)("path",{d:"M16.9383,13.4673l0,.0029a.5161.5161,0,0,0,.1143.3037.5236.5236,0,0,0,.7192.0967l.0025-.0019.0088.0039,2.5586-1.814a6.2307,6.2307,0,0,0-3.584-1.7285l.1777,3.1357Z"}),(0,a.jsx)("path",{d:"M30.3806,19.0376,27.9016,8.2705a1.9057,1.9057,0,0,0-1.038-1.291L16.83,2.1885a1.9332,1.9332,0,0,0-1.6656,0L5.1326,6.9819a1.9072,1.9072,0,0,0-1.0381,1.291L1.6194,19.04A1.89,1.89,0,0,0,1.88,20.499a1.8364,1.8364,0,0,0,.1088.1514l6.9439,8.6338a1.9244,1.9244,0,0,0,1.5.7158l11.1357-.0024a1.9251,1.9251,0,0,0,1.5-.7149L30.01,20.6479A1.8911,1.8911,0,0,0,30.3806,19.0376Zm-3.8115-.13a.6432.6432,0,0,1-.7812.4429l-.0039,0-.0049-.001-.0069-.0019-.0048-.002-.0572-.0117c-.0346-.0068-.07-.0142-.0981-.0215a2.4643,2.4643,0,0,1-.3589-.1328c-.0576-.0249-.1172-.0513-.1807-.0752l-.0175-.0063a5.5192,5.5192,0,0,0-1.0284-.3013.4119.4119,0,0,0-.2954.0981l-.0371.0254-.0019.0015-.002,0c-.0439-.0088-.1748-.0322-.2519-.0444a7.8166,7.8166,0,0,1-3.459,4.351c.0093.022.02.05.0307.0806a.9352.9352,0,0,0,.0669.1567l.002.002-.001.0029-.0166.042a.4148.4148,0,0,0-.03.3091,5.69,5.69,0,0,0,.5322.9517c.0376.0561.0757.1084.1128.1591a2.4,2.4,0,0,1,.2095.32c.0166.0312.0371.0752.0552.1137l.0229.0484a.6083.6083,0,1,1-1.0947.5176l-.0224-.0455c-.0186-.038-.0381-.0776-.0518-.1088a2.5059,2.5059,0,0,1-.1211-.3658c-.0166-.0595-.0337-.1215-.0537-.185l-.0059-.0166a5.5441,5.5441,0,0,0-.4052-.9922.4177.4177,0,0,0-.2627-.1709l-.0415-.0127-.0015,0-.0015-.0019c-.01-.0171-.0337-.0611-.0595-.1075-.0235-.042-.0484-.0874-.0664-.12a7.8868,7.8868,0,0,1-1.0269.3091,7.7588,7.7588,0,0,1-4.51-.3233l-.1352.2442-.002.001a.481.481,0,0,0-.2563.124,2.2827,2.2827,0,0,0-.336.7207c-.04.1172-.08.2383-.1279.3569-.0205.064-.0376.127-.0537.188a2.4747,2.4747,0,0,1-.12.3623c-.0127.03-.0313.0669-.0493.1025l-.0245.0494h0l-.0005.0024-.0019.002a.6773.6773,0,0,1-.5952.3945.5484.5484,0,0,1-.24-.0542.6426.6426,0,0,1-.2578-.86c.0088-.0171.0176-.0371.0274-.0576.0171-.0371.0346-.0757.05-.1045a2.53,2.53,0,0,1,.21-.3222c.0367-.05.0747-.1026.1118-.1578a5.8209,5.8209,0,0,0,.543-.976.5889.5889,0,0,0-.0532-.336l0-.0019,0-.002.1074-.2573a7.8224,7.8224,0,0,1-3.46-4.32l-.2593.0444-.0015-.001-.0264-.0151a.5961.5961,0,0,0-.3159-.106,5.5447,5.5447,0,0,0-1.0283.3013l-.0171.0064c-.062.0239-.1211.0488-.1782.0732a2.4949,2.4949,0,0,1-.3613.1333c-.0308.0083-.0708.0171-.1094.0249l-.0459.01-.0049.0019-.0068.002-.0049.001-.0039,0a.6078.6078,0,1,1-.2695-1.18l.0039-.001.0053-.0015.002,0,.0034-.0009.0469-.0113c.04-.01.081-.02.1133-.0258a2.4132,2.4132,0,0,1,.3808-.0357c.063-.0024.1284-.0054.1958-.0107l.0142-.0015A5.554,5.554,0,0,0,7.77,17.92a.72.72,0,0,0,.231-.227l.0244-.0318.001-.0014.0014,0,.2471-.0718a7.7765,7.7765,0,0,1,1.2246-5.4126l-.19-.17,0-.002-.0044-.0278a.5983.5983,0,0,0-.1153-.3159,5.6171,5.6171,0,0,0-.8916-.6265c-.0585-.0342-.1157-.0649-.1713-.0942a2.4731,2.4731,0,0,1-.3267-.1973c-.0264-.0195-.0586-.0459-.0894-.0713l-.0356-.0288L7.67,10.6387l-.0049-.0039A.7045.7045,0,0,1,7.4041,10.2a.5725.5725,0,0,1,.1128-.4575A.5835.5835,0,0,1,8,9.5288a.7226.7226,0,0,1,.4214.1592l.0361.0283c.0332.0259.07.0552.0972.0781a2.5254,2.5254,0,0,1,.2671.2759c.04.0469.0825.0952.1284.1441l.01.01a5.5221,5.5221,0,0,0,.7989.72.4159.4159,0,0,0,.31.0406l.043-.0069h.0019l.0015.001c.0357.0264.1484.1074.2134.1514a7.7273,7.7273,0,0,1,3.9233-2.24,7.9671,7.9671,0,0,1,1.0816-.1665l.0141-.2515.001-.0014a.6486.6486,0,0,0,.1939-.3076,5.5779,5.5779,0,0,0-.066-1.0791l-.0009-.0088c-.0093-.0664-.021-.13-.0328-.1914a2.5611,2.5611,0,0,1-.0493-.38c-.0009-.03-.0005-.0679,0-.1045l.0005-.05-.0005-.0073,0-.0093a.6088.6088,0,1,1,1.211,0l.0009.0605c.001.0386.0015.0791.0005.11a2.5348,2.5348,0,0,1-.0493.38c-.0117.0615-.0234.125-.0327.1914l-.0039.0317a5.4479,5.4479,0,0,0-.064,1.0567.4132.4132,0,0,0,.1616.2666l.0328.03.0019.0015v.0019c.0015.0435.0083.1836.0137.2637a7.79,7.79,0,0,1,2.7173.7559,7.8812,7.8812,0,0,1,2.2632,1.65l.226-.1612h.002l.0312.002a.5914.5914,0,0,0,.33-.041,5.4885,5.4885,0,0,0,.7871-.71l.0215-.022c.0454-.0478.0869-.0952.1274-.1416a2.57,2.57,0,0,1,.27-.2783c.0263-.0229.062-.05.0967-.0776l.0366-.0288a.6088.6088,0,1,1,.7544.9472l-.0435.0357c-.0307.0254-.063.0517-.0884.0708a2.4733,2.4733,0,0,1-.3266.1968c-.0562.0293-.1143.06-.1734.0947a5.6889,5.6889,0,0,0-.8921.6269.4152.4152,0,0,0-.1079.293l-.0034.044v.0019l-.0014.001c-.0162.0146-.0508.0459-.0914.082s-.0864.0772-.1186.1065a7.7983,7.7983,0,0,1,1.25,5.3994l.24.07.001.001.0171.0254a.6014.6014,0,0,0,.24.2334,5.595,5.595,0,0,0,1.063.1757l.0122.001c.0674.0059.1328.0083.1963.0108a2.4617,2.4617,0,0,1,.38.0356c.0312.0059.0713.0156.11.0254l.0644.0156A.643.643,0,0,1,26.5691,18.9077Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.2,4H5.8C4.8,4,4,4.8,4,5.7v20.5c0,0.9,0.8,1.7,1.8,1.7h20.4c1,0,1.8-0.8,1.8-1.7V5.7C28,4.8,27.2,4,26.2,4z M11.1,24.4 H7.6V13h3.5V24.4z M9.4,11.4c-1.1,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.1,0,2.1,0.9,2.1,2.1S10.5,11.4,9.4,11.4z M24.5,24.3 H21v-5.6c0-1.3,0-3.1-1.9-3.1c-1.9,0-2.1,1.5-2.1,2.9v5.7h-3.5V13h3.3v1.5h0.1c0.5-0.9,1.7-1.9,3.4-1.9c3.6,0,4.3,2.4,4.3,5.5V24.3z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.49,23.71h-.76c-2.26,0-4.52,0-6.78,0a3.12,3.12,0,0,1-2.41-1A14.91,14.91,0,0,1,10,18.88c-1.3-2.6-2.54-5.22-3.82-7.82-.39-.8-.82-1.56-1.28-2.32A7.84,7.84,0,0,0,2,5.6c1.24,0,2.41,0,3.57,0a45.63,45.63,0,0,1,7,.61,8.09,8.09,0,0,1,6.34,5.09,48.51,48.51,0,0,1,2.17,7.36A26,26,0,0,0,22.49,23.71Z"}),(0,a.jsx)("path",{d:"M28.1,26.38a2.93,2.93,0,0,1-2.74-2.64,42.08,42.08,0,0,1-.14-4.9,48,48,0,0,0-.61-7.58,3.75,3.75,0,0,0-.83-2h2.65c.54,0,.73.37.89.78A12.1,12.1,0,0,1,28,13.28c.29,2.72.31,5.45.33,8.18a10.94,10.94,0,0,0,0,1.15c.09.78.4,1.1,1.17,1.08.5,0,.5-.06.5-.06v2.69A8.62,8.62,0,0,1,28.1,26.38Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m29.0581,11.1929c0-6.0742-3.9797-7.8545-3.9797-7.8545-2.0066-.9214-5.4522-1.3091-9.0318-1.3384h-.0879c-3.5798.0293-7.023.417-9.0296,1.3384,0,0-3.98,1.7803-3.98,7.8545,0,1.3911-.0271,3.0537.0171,4.8174.1445,5.9404,1.0889,11.7945,6.5811,13.2481,2.5322.6704,4.7063.8105,6.4573.7144,3.1755-.1758,4.958-1.1333,4.958-1.1333l-.1047-2.3037s-2.269.7153-4.8176.6284c-2.5249-.0869-5.1902-.2725-5.5986-3.3726-.0378-.272-.0566-.563-.0566-.8691,0,0,2.4785.606,5.6196.75,1.9207.0879,3.7219-.1128,5.5515-.3311,3.5083-.4189,6.563-2.5806,6.9468-4.5557.605-3.1113.5552-7.5928.5552-7.5928Zm-4.6943,7.8257h-2.9138v-7.1382c0-1.5049-.6331-2.2686-1.8997-2.2686-1.4002,0-2.1018.9058-2.1018,2.6973v3.9077h-2.8967v-3.9077c0-1.7915-.7019-2.6973-2.1021-2.6973-1.2666,0-1.8997.7637-1.8997,2.2686v7.1382h-2.9138v-7.3545c0-1.5029.3828-2.6978,1.1516-3.5811.7927-.8838,1.8308-1.3369,3.1196-1.3369,1.491,0,2.6204.5732,3.367,1.7192l.7256,1.2168.7261-1.2168c.7463-1.146,1.8755-1.7192,3.3667-1.7192,1.2886,0,2.3267.4531,3.1196,1.3369.7686.8833,1.1514,2.0781,1.1514,3.5811v7.3545Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,16c0,3.7-0.6,6.7-1.4,6.7c-0.8,0-1.4-3-1.4-6.7s0.6-6.7,1.4-6.7C29.4,9.3,30,12.3,30,16"}),(0,a.jsx)("path",{d:"M26.5,16c0,4.1-1.8,7.5-3.9,7.5s-3.9-3.4-3.9-7.5s1.8-7.5,3.9-7.5S26.5,11.9,26.5,16"}),(0,a.jsx)("path",{d:"M17.8,16c0,4.4-3.5,8-7.9,8S2,20.4,2,16s3.5-8,7.9-8S17.8,11.6,17.8,16"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.2916,25.8339c-.1264.1266-.1264.3324,0,.459l2.0453,2.0453c.3803.3801.3803.9964,0,1.3766-.19.1901-.4392.2852-.6883.2852s-.4983-.0951-.6883-.2852l-2.0454-2.0453c-.8856-.8855-.8856-2.3266,0-3.2121l9.9609-9.9609c.5515-.5516.8554-1.285.8554-2.065s-.3039-1.5134-.8554-2.0651l-.0574-.0574c-1.1387-1.1386-2.9916-1.1387-4.1303,0l-8.2027,8.2027-.1147.1147c-.1901.1901-.4392.2852-.6884.2852s-.4983-.0951-.6884-.2852c-.3802-.3801-.3802-.9964,0-1.3766l.1147-.1147,8.2029-8.2029c.5515-.5516.8553-1.285.8553-2.0651s-.3037-1.5134-.8553-2.065c-.5517-.5516-1.285-.8554-2.0651-.8554s-1.5134.3037-2.065.8554L5.168,15.8159c-.3801.3801-.9966.3801-1.3767,0s-.3802-.9965,0-1.3767L14.8049,3.4256c.9194-.9193,2.1417-1.4256,3.4417-1.4256s2.5226.5063,3.4419,1.4256c.9193.9193,1.4255,2.1416,1.4255,3.4417,0,.2332-.0169.4637-.049.6906,1.4645-.2075,3.0061.2505,4.1301,1.3745l.0574.0574c.9194.9193,1.4258,2.1416,1.4258,3.4418s-.5064,2.5224-1.4258,3.4417l-9.9608,9.9608ZM24.4417,13.0625c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1454c-1.1384,1.1387-2.9912,1.1387-4.1301.0002-.5516-.5517-.8554-1.2851-.8554-2.0651s.3038-1.5134.8554-2.0651l8.1453-8.1455c.3803-.3802.3803-.9965,0-1.3767-.3799-.3801-.9966-.3801-1.3766,0l-8.1455,8.1455c-.9194.9194-1.4257,2.1418-1.4257,3.4418s.5063,2.5224,1.4257,3.4419c.9489.9488,2.1953,1.4231,3.4417,1.4231s2.4929-.4744,3.4418-1.4233l8.1454-8.1454Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,28V4h24v24H4z M8.5,8.5v15H16v-12h4.5v12h3v-15H8.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.4612,15.7968A12.1352,12.1352,0,0,0,25.2821,11.48L29,10.13a11.9879,11.9879,0,0,0-1.0281-1.7382l-1.7431.635a11.9884,11.9884,0,0,0-21.71,7.9129l1.7477-.6412a12.19,12.19,0,0,0,.3309,1.9846L2.8838,19.6384A12.1451,12.1451,0,0,0,4.7565,23.7l1.9663-.7163.0026.0039a11.8856,11.8856,0,0,0,4.67,3.8909A12.013,12.013,0,0,0,27.34,21.0743a11.8725,11.8725,0,0,0,1.08-5.992Zm-2.92,3.4967a7.8,7.8,0,0,1-10.3533,3.7744,7.7207,7.7207,0,0,1-2.2714-1.6128l-1.9846.7235a7.84,7.84,0,0,1-2.0742-3.9895l.0009-.0008,3.7242-1.3566a7.8175,7.8175,0,0,1-.1232-2.0653l-1.7517.6362A7.7729,7.7729,0,0,1,19.7645,8.94h.0067a7.7442,7.7442,0,0,1,2.2646,1.615L23.78,9.921a7.8014,7.8014,0,0,1,1.229,1.6558l-3.71,1.3595a7.8245,7.8245,0,0,1,.9766,4.3882l1.9685-.7151A7.6714,7.6714,0,0,1,23.5411,19.2935Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2a14,14,0,0,0-5.1,27,13.24,13.24,0,0,1,0-4l1.65-7A5.05,5.05,0,0,1,12.17,16c0-1.94,1.13-3.4,2.53-3.4a1.76,1.76,0,0,1,1.77,2c0,1.2-.76,3-1.16,4.66a2,2,0,0,0,2.08,2.53c2.48,0,4.4-2.63,4.4-6.41a5.53,5.53,0,0,0-5.85-5.7,6.06,6.06,0,0,0-6.32,6.08,5.42,5.42,0,0,0,1,3.19.44.44,0,0,1,.1.4c-.11.44-.35,1.4-.39,1.59s-.21.31-.47.19c-1.75-.82-2.84-3.37-2.84-5.43,0-4.41,3.21-8.47,9.25-8.47,4.85,0,8.63,3.46,8.63,8.09,0,4.82-3,8.7-7.27,8.7a3.76,3.76,0,0,1-3.21-1.6l-.87,3.33a15.55,15.55,0,0,1-1.74,3.67A14.17,14.17,0,0,0,16,30,14,14,0,0,0,16,2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.4882,9.14v2.9663a4.2843,4.2843,0,0,1-4.173,4.2352H12.6431a3.4077,3.4077,0,0,0-3.34,3.3945v6.3607c0,1.81,1.5742,2.8751,3.34,3.3945a11.1762,11.1762,0,0,0,6.6721,0c1.6817-.4869,3.34-1.4668,3.34-3.3945V23.55H15.983v-.8486H25.9951c1.9414,0,2.6648-1.3542,3.34-3.3867a11.4642,11.4642,0,0,0,0-6.7889c-.48-1.9327-1.3961-3.3867-3.34-3.3867ZM19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"}),(0,a.jsx)("path",{fill:"none",d:"M19.7356,25.2476a1.2731,1.2731,0,1,1-1.2534,1.269A1.2607,1.2607,0,0,1,19.7356,25.2476Z"}),(0,a.jsx)("path",{d:"M15.8351,2a19.0717,19.0717,0,0,0-3.192.2725c-2.8268.4994-3.34,1.5447-3.34,3.4723V8.2909h6.68V9.14H6.7962a4.1708,4.1708,0,0,0-4.173,3.3867,12.4855,12.4855,0,0,0,0,6.7889c.4748,1.9776,1.6088,3.3867,3.55,3.3867H8.47V19.65a4.2449,4.2449,0,0,1,4.173-4.15h6.6721a3.3654,3.3654,0,0,0,3.34-3.3944V5.745a3.729,3.729,0,0,0-3.34-3.4723A20.8377,20.8377,0,0,0,15.8351,2ZM12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"}),(0,a.jsx)("path",{fill:"none",d:"M12.2226,4.0478a1.2731,1.2731,0,1,1-1.2534,1.2768A1.2675,1.2675,0,0,1,12.2226,4.0478Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,23.86H27a1.72,1.72,0,0,1-1.73,1.72c-1.15,0-1.82-.86-2.58-2a11,11,0,0,0,4.79-9.1c.09-7.19-5.85-11.89-12.17-11.89S3,7.37,3,14.37,9,26.16,15.17,26.16a10.71,10.71,0,0,0,3.07-.48c1.15,2.11,2.59,3.74,5.46,3.74A5,5,0,0,0,29,23.86Zm-8.14-3.45a6.31,6.31,0,0,0-5.56-3.16,6,6,0,0,0-3.74,1.15L12.2,20a2.56,2.56,0,0,1,.86-.1c1.82,0,3,1.53,4.12,3.64a7.58,7.58,0,0,1-1.91.19C10.86,23.76,9,20.6,9,14.47s1.91-9.3,6.23-9.3,6.32,3.16,6.32,9.3A20.68,20.68,0,0,1,20.83,20.41Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M30,14.7842c0-5.1782-6.2681-9.376-14-9.376S2,9.606,2,14.7842c0,4.6147,4.9814,8.4419,11.5361,9.2226v2.9917l4.7762-.0019,0-2.9741a19.3812,19.3812,0,0,0,3.3418-.6646L23.593,27l5.3975-.0024-3.253-5.4849C28.3625,19.8086,30,17.4263,30,14.7842Zm-22.4983.7c0-3.54,4.7644-6.41,10.6414-6.41s10.2138,1.9629,10.2138,6.41A5.4694,5.4694,0,0,1,24.9587,20.61a3.2252,3.2252,0,0,0-.2978-.1749,10.4735,10.4735,0,0,0-1.34-.5048s4.1743-.31,4.1743-4.4659-4.3684-4.2343-4.3684-4.2343H13.5361V21.2554C9.97,20.22,7.5017,18.0283,7.5017,15.4839Zm13.7422,1.8452-2.8928.001.0014-2.6812,2.8914.0015a1.2476,1.2476,0,0,1,1.34,1.3149A1.3232,1.3232,0,0,1,21.2439,17.3291Zm-2.9326,3.4946h1.2825a.8785.8785,0,0,1,.6406.291,3.2917,3.2917,0,0,1,.51.63,22.4033,22.4033,0,0,1-2.4326.1455Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,11.6c-0.3-0.1-0.6-0.2-0.9-0.3c0-0.2,0.1-0.4,0.1-0.6c0.7-3.3,0.2-6-1.3-6.9c-1.5-0.8-3.9,0-6.3,2.1 c-0.2,0.2-0.5,0.4-0.7,0.6c-0.2-0.1-0.3-0.3-0.5-0.4C13,3.9,10.5,3,9,3.9c-1.5,0.8-1.9,3.4-1.3,6.5c0.1,0.3,0.1,0.6,0.2,0.9 c-0.4,0.1-0.7,0.2-1,0.3c-3,1-4.9,2.7-4.9,4.3c0,1.7,2,3.5,5.1,4.5c0.2,0.1,0.5,0.2,0.8,0.2c-0.1,0.3-0.2,0.7-0.2,1 c-0.6,3.1-0.1,5.5,1.3,6.4c1.5,0.9,4,0,6.5-2.2c0.2-0.2,0.4-0.4,0.6-0.5c0.2,0.2,0.5,0.5,0.8,0.7c2.4,2.1,4.7,2.9,6.2,2 c1.5-0.9,2-3.5,1.4-6.7c0-0.2-0.1-0.5-0.2-0.8c0.2-0.1,0.4-0.1,0.5-0.2c3.2-1.1,5.3-2.8,5.3-4.5C30,14.3,28,12.7,25,11.6z M17.5,6.9 c2.1-1.8,4-2.5,4.9-2c0.9,0.5,1.3,2.7,0.7,5.6c0,0.2-0.1,0.4-0.1,0.6c-1.2-0.3-2.5-0.5-3.7-0.6c-0.7-1-1.5-2-2.4-3 C17.1,7.3,17.3,7.1,17.5,6.9L17.5,6.9z M10.3,17.4c0.3,0.5,0.5,1,0.8,1.5c0.3,0.5,0.6,1,0.9,1.4c-0.9-0.1-1.7-0.2-2.6-0.4 C9.6,19.1,9.9,18.3,10.3,17.4z M10.3,14.6c-0.4-0.8-0.6-1.6-0.9-2.4c0.8-0.2,1.7-0.3,2.5-0.4c-0.3,0.5-0.6,0.9-0.9,1.4 C10.8,13.6,10.5,14.1,10.3,14.6L10.3,14.6z M10.9,16c0.4-0.8,0.8-1.5,1.2-2.3c0.4-0.7,0.9-1.5,1.4-2.2c0.8-0.1,1.7-0.1,2.6-0.1 c0.9,0,1.7,0,2.6,0.1c0.5,0.7,0.9,1.4,1.3,2.2c0.4,0.7,0.8,1.5,1.2,2.3c-0.4,0.8-0.8,1.5-1.2,2.3c-0.4,0.7-0.9,1.5-1.3,2.2 c-0.8,0.1-1.7,0.1-2.6,0.1c-0.9,0-1.7,0-2.5-0.1c-0.5-0.7-0.9-1.4-1.4-2.2C11.7,17.5,11.3,16.8,10.9,16L10.9,16z M20.9,18.9 c0.3-0.5,0.6-1,0.8-1.5c0.4,0.8,0.7,1.6,0.9,2.5c-0.9,0.2-1.7,0.3-2.6,0.4C20.4,19.8,20.7,19.3,20.9,18.9z M21.7,14.6 c-0.3-0.5-0.5-1-0.8-1.5c-0.3-0.5-0.6-0.9-0.8-1.4c0.9,0.1,1.7,0.3,2.6,0.4C22.4,13,22.1,13.8,21.7,14.6z M16,8.3 c0.6,0.6,1.1,1.3,1.6,2c-1.1-0.1-2.2-0.1-3.3,0C14.9,9.6,15.5,8.9,16,8.3z M9.6,4.9c0.9-0.5,3,0.2,5.2,2.2c0.1,0.1,0.3,0.3,0.4,0.4 c-0.9,0.9-1.7,1.9-2.4,3c-1.3,0.1-2.5,0.3-3.7,0.6c-0.1-0.3-0.1-0.6-0.2-0.9C8.3,7.5,8.7,5.4,9.6,4.9z M8.2,19.6 c-0.2-0.1-0.5-0.1-0.7-0.2c-1.4-0.5-2.5-1.1-3.3-1.7c-0.7-0.6-1-1.2-1-1.7c0-1,1.5-2.3,4.1-3.2c0.3-0.1,0.6-0.2,1-0.3 C8.6,13.7,9,14.9,9.6,16C9,17.2,8.6,18.4,8.2,19.6z M14.7,25.1c-1.1,1-2.2,1.6-3.1,2c-0.9,0.3-1.5,0.3-2,0.1 c-0.9-0.5-1.3-2.5-0.8-5.1C8.9,21.7,9,21.4,9,21c1.2,0.3,2.5,0.5,3.8,0.5c0.7,1,1.5,2,2.4,3C15,24.7,14.9,24.9,14.7,25.1z M16,23.7 c-0.6-0.6-1.1-1.3-1.7-2c0.5,0,1.1,0,1.6,0c0.6,0,1.1,0,1.7,0C17.2,22.4,16.6,23.1,16,23.7z M23.3,25.4c-0.2,0.9-0.5,1.5-0.9,1.7 c-0.9,0.5-2.8-0.2-4.8-1.9c-0.2-0.2-0.5-0.4-0.7-0.6c0.8-0.9,1.6-1.9,2.3-3c1.3-0.1,2.5-0.3,3.8-0.6c0.1,0.2,0.1,0.5,0.2,0.7 C23.5,23.1,23.5,24.4,23.3,25.4z M24.3,19.4c-0.2,0-0.3,0.1-0.5,0.1c-0.4-1.2-0.9-2.4-1.4-3.6c0.5-1.1,1-2.3,1.4-3.5 c0.3,0.1,0.6,0.2,0.8,0.3c2.6,0.9,4.2,2.2,4.2,3.2C28.8,17.1,27.1,18.5,24.3,19.4z"}),(0,a.jsx)("path",{d:"M16,18.5c0.5,0,1-0.1,1.4-0.4c0.4-0.3,0.7-0.7,0.9-1.1c0.2-0.5,0.2-1,0.1-1.5c-0.1-0.5-0.3-0.9-0.7-1.3 c-0.3-0.4-0.8-0.6-1.3-0.7c-0.5-0.1-1,0-1.5,0.1c-0.5,0.2-0.9,0.5-1.1,0.9c-0.3,0.4-0.4,0.9-0.4,1.4c0,0.3,0.1,0.7,0.2,1 c0.1,0.3,0.3,0.6,0.5,0.8c0.2,0.2,0.5,0.4,0.8,0.5C15.3,18.4,15.7,18.5,16,18.5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.2148,13.1793c.2327-.501-.4158-.9337-.9252-.8189-.3831.0863-.8737.7158-1.0126,1.0705.0842.5294,1.6957.2715,1.9378-.2516ZM12.8453,12.7614c.06.5895-.6263.5432-1.0515.5242.2484-.3642.5768-.7484,1.0515-.5242ZM16,21.8211c.9062-.0084,1.2-1.8673.4673-2.0052-.0768-.0137-.2548-.0231-.4673-.0253-.2126.0021-.3906.0116-.4674.0253-.7326.1379-.4389,1.9968.4674,2.0052ZM12.154,19.6017c1.2337-.0746,1.1996-2.8773-.0815-2.8101-1.4228.0746-1.2452,2.8903.0815,2.8101ZM26.8406,9.7584c-.52-.6715-1.2484-2.2767-2.0789-2.4473-1.2431-.2547-2.1147.3842-2.923,1.221-1.6652-1.2252-3.7147-2.3188-5.8387-2.3052-2.1241-.0137-4.1736,1.08-5.8387,2.3052-.8084-.8368-1.68-1.4757-2.9231-1.221-.8305.1705-1.5589,1.7758-2.0789,2.4473-.9073,1.1747-3.1978,3.1746-3.1588,4.7346.0484,1.9073,4.4714,7.2376,6.3776,7.5229.4211.0631.7842-.0421,1.1874-.0842.7214,1.4147,1.8981,2.4644,3.2742,3.1268,1.9797.953,4.3409.953,6.3207,0,1.376-.6624,2.5527-1.7121,3.2742-3.1268.4031.0421.7662.1473,1.1873.0842,1.9062-.2853,6.3292-5.6156,6.3777-7.5229.0389-1.56-2.2515-3.5599-3.1589-4.7346h-.0001ZM11.1285,9.2016c1.6884-1.1799,3.2167-1.8304,4.8715-1.7957,1.6547-.0347,3.183.6158,4.8714,1.7957.3747.261,1.4536,1.0516,1.6978,1.3547.5905.7305.5526,3.2515.5853,4.204h-2.1263c-.9337,0-1.8673.001-2.801,0-.3168,0-.6905.201-.9157.421-.6642.6505-.2316,1.52-.2632,2.3157-.3494-.1453-.6979-.2-1.0483-.2084-.3505.0084-.699.0632-1.0484.2084-.0316-.7958.401-1.6652-.2632-2.3157-.2252-.22-.5989-.421-.9157-.421-.9337.001-1.8673,0-2.801,0h-2.1263c.0327-.9526-.0052-3.4736.5853-4.204.2442-.3032,1.3231-1.0937,1.6978-1.3547ZM8.6855,20.9191c-1.3947-.0516-5.3871-4.9725-5.5187-6.3293-.1126-1.1673,2.2062-3.2589,2.9399-4.1998.3547-.4537,1.14-2.0147,1.641-2.0473.4168-.0263,1.3157.5378,1.5052.9052.3968.7684-.179.8516-.4274,1.4389-.5137,1.2126-.3632,2.7736-.4127,4.062-.782.1769-1.4136.5273-1.361,1.4294.0253.4453.9062,3.3241,1.141,3.7094.3074.5042.8189.7263,1.3894.7684l-.8968.2632h0ZM9.3718,20.2338c-.4716.0221-.7389-.319-.9337-.6968-.2158-.4189-1.0146-3.0568-1.0431-3.4894-.0347-.52.5684-.8505,1.0294-.8652,0,1.7273.481,3.4041.9473,5.0514h0ZM8.8455,15.1814h5.1051c.3379.0674.7642.5432.7852.9.0264.4274-.3221,2.5242-.4452,3.0189-.0569.2274-.1937.6463-.3453.8126-.5737.6305-3.1567.1979-4.0346.3084-.5968-1.6241-.8789-3.3209-1.0652-5.0399ZM16,24.7495c-2.481-.18-4.9062-1.5852-5.7861-4.0946.9337-.0937,2.0989.1274,2.9999,0,1.6063-.2263,1.34-1.7242,1.7368-2.8957.3389-.1053.6926-.1579,1.0494-.1705.3568.0126.7104.0652,1.0494.1705.3968,1.1715.1305,2.6694,1.7368,2.8957.901.1274,2.0662-.0937,2.9999,0-.8799,2.5094-3.3051,3.9146-5.7861,4.0946ZM18.0546,19.9128c-.1516-.1663-.2884-.5853-.3452-.8126-.1232-.4947-.4716-2.5915-.4453-3.0189.0211-.3568.4473-.8326.7852-.9h5.1051c-.1863,1.7189-.4684,3.4157-1.0652,5.0399-.8779-.1105-3.4609.3221-4.0346-.3084ZM23.5755,15.1825c.4611.0147,1.0641.3452,1.0294.8652-.0284.4326-.8273,3.0704-1.0431,3.4894-.1948.3779-.4621.7189-.9337.6968.4663-1.6473.9473-3.3241.9473-5.0514h.0001ZM23.3144,20.9191l-.8968-.2632c.5705-.0421,1.082-.2642,1.3894-.7684.2347-.3853,1.1157-3.2641,1.141-3.7094.0527-.9021-.5789-1.2526-1.361-1.4294-.0495-1.2883.101-2.8494-.4127-4.062-.2484-.5873-.8242-.6705-.4273-1.4389.1895-.3674,1.0884-.9315,1.5052-.9052.501.0326,1.2863,1.5936,1.641,2.0473.7336.941,3.0526,3.0325,2.9399,4.1998-.1315,1.3568-4.124,6.2777-5.5187,6.3293h0ZM20.723,13.4309c-.1389-.3547-.6295-.9842-1.0126-1.0705-.5095-.1147-1.1579.3179-.9252.8189.2421.5231,1.8536.781,1.9378.2516ZM20.2061,13.2857c-.4252.0189-1.1115.0652-1.0515-.5242.4747-.2242.8031.16,1.0515.5242ZM16,22.0274c-.6074,1.041-1.6042.2295-2.3115-.4252.3514,1.0421,1.1141,1.8438,1.985,2.1157.2104.0657.4424.0657.6529,0,.871-.2719,1.6337-1.0736,1.985-2.1157-.7073.6547-1.7042,1.4662-2.3115.4252h.0001ZM16.4631,23.3104c-.2929.1281-.6333.1281-.9262,0-.213-.0932-.4126-.2253-.5853-.3925.3663-.0379.7895-.0547,1.0484-.2895.2589.2347.682.2516,1.0483.2895-.1727.1671-.3723.2993-.5853.3925h.0001ZM19.9274,16.7916c-1.2811-.0672-1.3152,2.7355-.0814,2.8101,1.3266.0803,1.5042-2.7354.0814-2.8101Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.9104,20.5859h0l-5-11c-.1577-.3452-.5061-.5859-.9104-.5859s-.7529,.2407-.9104,.5859l-5,11c-.0576,.1265-.0896,.2661-.0896,.4141,0,.5522,.4478,1,1,1,.4043,0,.7527-.2407,.9104-.5859l1.9985-4.3965,6.4978,4.7876c.166,.1226,.3711,.1948,.5933,.1948,.5522,0,1-.4478,1-1,0-.1479-.032-.2881-.0896-.4141Zm-5.9104-8.1689l2.499,5.498-3.7441-2.7588,1.2451-2.7393Z"}),(0,a.jsx)("path",{d:"M16,30c-7.7197,0-14-6.2803-14-14S8.2803,2,16,2s14,6.2803,14,14-6.2803,14-14,14Zm0-26c-6.6167,0-12,5.3833-12,12s5.3833,12,12,12,12-5.3833,12-12-5.3833-12-12-12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.1,3.2l7.7,0.9c0.2,0,0.3,0.1,0.4,0.2l5.7,7.7c0.2,0.2,0.2,0.5,0,0.7l-13.6,16c-0.1,0.1-0.3,0.1-0.4,0c0,0,0,0,0,0 l-13.6-16C2,12.5,2,12.2,2.1,12l5.7-7.7c0.1-0.1,0.2-0.2,0.4-0.2l7.7-0.9C16,3.2,16,3.2,16.1,3.2z M17.7,4.8c0,0-0.1,0-0.2,0 c0,0-0.1,0.1,0,0.2l0,0l4.3,5.4c0,0.1,0.1,0.1,0.1,0.2c0,0.2-0.1,0.3-0.3,0.3l0,0H10.4c-0.1,0-0.1,0-0.2-0.1 c-0.1-0.1-0.1-0.3-0.1-0.4l0,0L14.5,5c0,0,0-0.1,0-0.2c0,0-0.1,0-0.2,0l0,0l-5.9,5.9c0,0-0.1,0.1-0.2,0.1c-0.1,0-0.2-0.1-0.2-0.2v0 l0.2-4.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1l0,0l-1.1,4.9c0,0.2-0.2,0.3-0.3,0.3l0,0l-2.8,0.6c-0.1,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.1,0.1,0.1l0,0h2.7c0.2,0,0.3,0.1,0.4,0.2l0,0l6.6,11.8c0,0.1,0.1,0.1,0.2,0.1c0.1,0,0.1-0.1,0.1-0.2l0,0L8.6,12.9 c0,0,0-0.1,0-0.1c0-0.2,0.1-0.3,0.3-0.4l0,0h14.2c0.1,0,0.1,0,0.2,0c0.2,0.1,0.2,0.3,0.2,0.4l0,0l-5.3,11.3c0,0.1,0,0.2,0.1,0.2 c0.1,0,0.2,0,0.2-0.1l0,0L25,12.6c0.1-0.1,0.2-0.2,0.4-0.2l0,0h2.7c0.1,0,0.1,0,0.1-0.1c0-0.1,0-0.1-0.1-0.1l0,0l-2.8-0.6 c-0.2,0-0.3-0.2-0.4-0.3l0,0L24,6.3c0-0.1-0.1-0.1-0.1-0.1c-0.1,0-0.1,0-0.1,0.1v0l0.2,4.3c0,0.1,0,0.1-0.1,0.2 c-0.1,0.1-0.2,0.1-0.3,0l0,0L17.7,4.8z"}),e)})},9564(e,t,r){r.d(t,{jG:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,20H17.83l2.58-2.59L19,16l-5,5,5,5,1.41-1.41L17.83,22H26v8h2V22A2,2,0,0,0,26,20Z"}),(0,a.jsx)("path",{d:"M23.71,9.29l-7-7A1,1,0,0,0,16,2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2h8V28H6V4h8v6a2,2,0,0,0,2,2h6v2h2V10A1,1,0,0,0,23.71,9.29ZM16,4.41,21.59,10H16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,4v8H4V4H6 M6,3H4C3.4,3,3,3.4,3,4v8c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V4C7,3.4,6.6,3,6,3z"}),(0,a.jsx)("path",{d:"M12,4v8h-2V4H12 M12,3h-2C9.4,3,9,3.4,9,4v8c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V4C13,3.4,12.6,3,12,3z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,8V24H8V8h4m0-2H8A2,2,0,0,0,6,8V24a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M24,8V24H20V8h4m0-2H20a2,2,0,0,0-2,2V24a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,6H10A2,2,0,0,0,8,8V24a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),(0,a.jsx)("path",{d:"M22,6H20a2,2,0,0,0-2,2V24a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7 5 6 5 6 11 7 11 7 5z"}),(0,a.jsx)("path",{d:"M10 5 9 5 9 11 10 11 10 5z"}),(0,a.jsx)("path",{d:"M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 10 12 10 12 22 14 22 14 10 14 10z"}),(0,a.jsx)("path",{d:"M20 10 18 10 18 22 20 22 20 10 20 10z"}),(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M7,11H6V5h1V11z M10,11H9V5h1V11z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,22H12V10h2Zm6,0H18V10h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 11 12 11 12 22 14 22 14 11 14 11z"}),(0,a.jsx)("path",{d:"M20 11 18 11 18 22 20 22 20 11 20 11z"}),(0,a.jsx)("path",{d:"M16,2A13.9158,13.9158,0,0,1,26,6.2343V2h2v8H20V8h4.9217A11.9818,11.9818,0,1,0,28,16h2A14,14,0,1,1,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 11 12 11 12 22 14 22 14 11 14 11z"}),(0,a.jsx)("path",{d:"M20 11 18 11 18 22 20 22 20 11 20 11z"}),(0,a.jsx)("path",{d:"M16,2A13.9158,13.9158,0,0,0,6,6.2343V2H4v8h8V8H7.0783A11.9818,11.9818,0,1,1,4,16H2A14,14,0,1,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 11 20 9 12 9 12 23 20 23 20 21 14 21 14 17 19 17 19 15 14 15 14 11 20 11z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 16 14.407 19 11 19.414 13.5 21.667 13 25 16 23.125 19 25 18.5 21.667 21 19.414 17.5 19 16 16z"}),(0,a.jsx)("path",{d:"M12.414 17.414 16 13.834 16 13.834 19.588 17.416 21 16 16 11 11 16 12.414 17.414z"}),(0,a.jsx)("path",{d:"M12.414 12.414 16 8.834 16 8.834 19.588 12.416 21 11 16 6 11 11 12.414 12.414z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 9 12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M8,9H2V23H4V18H8a2,2,0,0,0,2-2V11A2,2,0,0,0,8,9Zm0,7H4V11H8Z"}),(0,a.jsx)("path",{d:"M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M22 16 24 16 24 10 29 10 29 8 24 8 24 4 30 4 30 2 22 2 22 16z"}),(0,a.jsx)("path",{d:"M16,2H12V16h4a4,4,0,0,0,4-4V6A4,4,0,0,0,16,2Zm2,10a2,2,0,0,1-2,2H14V4h2a2,2,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M8,2H2V16H4V11H8a2,2,0,0,0,2-2V4A2,2,0,0,0,8,2ZM8,9H4V4H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.6772,14l-1.2456-3.1143A2.9861,2.9861,0,0,0,17.646,9H13.5542a3.0018,3.0018,0,0,0-1.5439.4277L7,12.4336V18H9V13.5664l3-1.8V23.6973L8.5383,28.8906,10.2024,30,14,24.3027V11h3.646a.9949.9949,0,0,1,.9282.6289L20.3228,16H26V14Z"}),(0,a.jsx)("path",{d:"M17.051 18.316 19 24.162 19 30 21 30 21 23.838 18.949 17.684 17.051 18.316z"}),(0,a.jsx)("path",{d:"M16.5,8A3.5,3.5,0,1,1,20,4.5,3.5042,3.5042,0,0,1,16.5,8Zm0-5A1.5,1.5,0,1,0,18,4.5,1.5017,1.5017,0,0,0,16.5,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,30H17a2.0021,2.0021,0,0,1-2-2V23h2v5h3V23h2V19a1.0011,1.0011,0,0,0-1-1H12.2793l-2-6H4a1.0011,1.0011,0,0,0-1,1v6H5v9H9V21h2v7a2.0021,2.0021,0,0,1-2,2H5a2.0021,2.0021,0,0,1-2-2V21a2.0021,2.0021,0,0,1-2-2V13a3.0033,3.0033,0,0,1,3-3h6.2793a1.998,1.998,0,0,1,1.8975,1.3674L13.7207,16H21a3.0033,3.0033,0,0,1,3,3v4a2.0021,2.0021,0,0,1-2,2v3A2.0021,2.0021,0,0,1,20,30Z"}),(0,a.jsx)("path",{d:"M28,30H26V19h3V13a1.0011,1.0011,0,0,0-1-1H24V10h4a3.0033,3.0033,0,0,1,3,3v6a2.0021,2.0021,0,0,1-2,2H28Z"}),(0,a.jsx)("path",{d:"M7,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,7,9ZM7,3A2,2,0,1,0,9,5,2.0021,2.0021,0,0,0,7,3Z"}),(0,a.jsx)("path",{d:"M25,9a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,25,9Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,25,3Z"}),(0,a.jsx)("path",{d:"M18.5,15A3.5,3.5,0,1,1,22,11.5,3.5041,3.5041,0,0,1,18.5,15Zm0-5A1.5,1.5,0,1,0,20,11.5,1.5017,1.5017,0,0,0,18.5,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,16H17.4683l-5-6H5a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21H10v7H6V19H4V13a1.0009,1.0009,0,0,1,1-1h6.5317l5,6H26a1.0009,1.0009,0,0,1,1,1v3H25v6H22V22H20v6a2.0023,2.0023,0,0,0,2,2h3a2.0023,2.0023,0,0,0,2-2V24a2.0023,2.0023,0,0,0,2-2V19A3.0033,3.0033,0,0,0,26,16Z"}),(0,a.jsx)("path",{d:"M23.5,15A3.5,3.5,0,1,1,27,11.5,3.5042,3.5042,0,0,1,23.5,15Zm0-5A1.5,1.5,0,1,0,25,11.5,1.5017,1.5017,0,0,0,23.5,10Z"}),(0,a.jsx)("path",{d:"M8,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,8,9ZM8,3a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,8,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.3069,6.1069,30,3.4141,28.5859,2,25.8931,4.6929,24.8,3.6a1.9328,1.9328,0,0,0-2.8,0L4,21.6V28h6.4l18-18a1.9329,1.9329,0,0,0,0-2.8ZM9.6,26H6V22.4L23.4,5,27,8.6Z"}),(0,a.jsx)("path",{d:"M8.136 7.5H18.863999999999997V9.5H8.136z",transform:"rotate(-45 13.5 8.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,5.293l-3-3a.9994.9994,0,0,0-1.414,0L19.5859,8H17.0947A11.0118,11.0118,0,0,0,6.7124,15.3662L2.0562,28.67a1,1,0,0,0,1.2744,1.2739l13.3037-4.6562A11.012,11.012,0,0,0,24,14.9053V12.4141L29.707,6.707A.9994.9994,0,0,0,29.707,5.293Zm-7.414,6A1,1,0,0,0,22,12v2.9053A9.01,9.01,0,0,1,15.9731,23.4l-9.1677,3.209L16,17.4141,14.5859,16,5.3914,25.1948,8.6,16.0269A9.01,9.01,0,0,1,17.0947,10H20a1,1,0,0,0,.707-.293L26,4.4141,27.5859,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"9",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"23",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"16",r:"2"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,18a2,2,0,1,1,2-2A2,2,0,0,1,8,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,16,18Zm8,0a2,2,0,1,1,2-2A2,2,0,0,1,24,18Z"}),(0,a.jsx)("path",{fill:"none",d:"M10,16a2,2,0,1,1-2-2A2,2,0,0,1,10,16Zm6-2a2,2,0,1,0,2,2A2,2,0,0,0,16,14Zm8,0a2,2,0,1,0,2,2A2,2,0,0,0,24,14Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,27.7593l-11.8274-8.6831,4.5261-14.0762h14.6025l4.5261,14.0762-11.8274,8.6831m0,2.2407c.2078,0,.4158-.0645.5918-.1938l13-9.5444c.2599-.1907.4066-.4904.4082-.8009.0005-.1036-.0151-.2085-.0481-.3109l-4.9697-15.4561c-.1331-.4136-.5176-.6938-.9519-.6938H7.9697c-.4343,0-.8188.2803-.9519.6938l-4.9697,15.4561c-.0329.1021-.0485.2067-.0481.31.0013.3108.1481.6109.4082.8018l13,9.5444c.176.1294.384.1938.5918.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c.2078,0,.4158-.0645.5918-.1938l13-9.5444c.2599-.1907.4066-.4904.4082-.8009.0005-.1036-.0151-.2085-.0481-.3109l-4.9697-15.4561c-.1331-.4136-.5176-.6938-.9519-.6938H7.9697c-.4343,0-.8188.2803-.9519.6938l-4.9697,15.4561c-.0329.1021-.0485.2067-.0481.31.0013.3108.1481.6109.4082.8018l13,9.5444c.176.1294.384.1938.5918.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m4.2407,16L12.9238,4.1726l14.0762,4.5261v14.6025l-14.0762,4.5261-8.6831-11.8274m-2.2407,0c0,.2078.0645.4158.1938.5918l9.5444,13c.1907.2599.4904.4066.8009.4082.1036.0005.2085-.0151.3109-.0481l15.4561-4.9697c.4136-.1331.6938-.5176.6938-.9519V7.9697c0-.4343-.2803-.8188-.6938-.9519L12.8501,2.0481c-.1021-.0329-.2067-.0485-.31-.0481-.3108.0013-.6109.1481-.8018.4082L2.1938,15.4082c-.1294.176-.1938.384-.1938.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,16c0,.2078.0645.4158.1938.5918l9.5444,13c.1907.2599.4904.4066.8009.4082.1036.0005.2085-.0151.3109-.0481l15.4561-4.9697c.4136-.1331.6938-.5176.6938-.9519V7.9697c0-.4343-.2803-.8188-.6938-.9519L12.8501,2.0481c-.1021-.0329-.2067-.0485-.31-.0481-.3108.0013-.6109.1481-.8018.4082L2.1938,15.4082c-.1294.176-.1938.384-.1938.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,4.2407l11.8274,8.6831-4.5261,14.0762h-14.6025l-4.5261-14.0762,11.8274-8.6831m0-2.2407c-.2078,0-.4158.0645-.5918.1938L2.4082,11.7383c-.2599.1907-.4066.4904-.4082.8009-.0005.1036.0151.2085.0481.3109l4.9697,15.4561c.1331.4136.5176.6938.9519.6938h16.0605c.4343,0,.8188-.2803.9519-.6938l4.9697-15.4561c.0329-.1021.0485-.2067.0481-.31-.0013-.3108-.1481-.6109-.4082-.8018L16.5918,2.1938c-.176-.1294-.384-.1938-.5918-.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27.7593,16l-8.6831,11.8274-14.0762-4.5261v-14.6025l14.0762-4.5261,8.6831,11.8274m2.2407,0c0-.2078-.0645-.4158-.1938-.5918L20.2617,2.4082c-.1907-.2599-.4904-.4066-.8009-.4082-.1036-.0005-.2085.0151-.3109.0481L3.6938,7.0178c-.4136.1331-.6938.5176-.6938.9519v16.0605c0,.4343.2803.8188.6938.9519l15.4561,4.9697c.1021.0329.2067.0485.31.0481.3108-.0013.6109-.1481.8018-.4082l9.5444-13c.1294-.176.1938-.384.1938-.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30,16c0-.2078-.0645-.4158-.1938-.5918L20.2617,2.4082c-.1907-.2599-.4904-.4066-.8009-.4082-.1036-.0005-.2085.0151-.3109.0481L3.6938,7.0178c-.4136.1331-.6938.5176-.6938.9519v16.0605c0,.4343.2803.8188.6938.9519l15.4561,4.9697c.1021.0329.2067.0485.31.0481.3108-.0013.6109-.1481.8018-.4082l9.5444-13c.1294-.176.1938-.384.1938-.5918h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-.2078,0-.4158.0645-.5918.1938L2.4082,11.7383c-.2599.1907-.4066.4904-.4082.8009-.0005.1036.0151.2085.0481.3109l4.9697,15.4561c.1331.4136.5176.6938.9519.6938h16.0605c.4343,0,.8188-.2803.9519-.6938l4.9697-15.4561c.0329-.1021.0485-.2067.0481-.31-.0013-.3108-.1481-.6109-.4082-.8018L16.5918,2.1938c-.176-.1294-.384-.1938-.5918-.1938h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14ZM9,6a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,9,6Z"}),(0,a.jsx)("path",{d:"M.029 15H31.97V17H.029z",transform:"rotate(-45 16 16)"}),(0,a.jsx)("path",{d:"M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,23,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,14a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,9,14Z"}),(0,a.jsx)("path",{d:"M.029 15H31.97V17H.029z",transform:"rotate(-45 16 16)"}),(0,a.jsx)("path",{d:"M23,28a5,5,0,1,1,5-5A5.0055,5.0055,0,0,1,23,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,2h-10C6,2,2,6,2,11v10c0,5,4,9,9,9h10c5,0,9-4,9-9v-10c0-5-4-9-9-9ZM28,21c0,3.9-3.1,7-7,7h-10c-3.9,0-7-3.1-7-7v-10c0-3.9,3.1-7,7-7h10c3.9,0,7,3.1,7,7v10ZM24,11h-6c-1.1,0-2,.9-2,2v6c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-6c0-1.1-.9-2-2-2ZM18,19v-6h6v6h-6ZM11,11l5,5-5,5-1.5-1.4,2.7-2.6h-6.2v-2h6.2l-2.7-2.6,1.5-1.4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30H14a2,2,0,0,1-2-2V21a2,2,0,0,1-2-2V13a3,3,0,0,1,3-3h6a3,3,0,0,1,3,3v6a2,2,0,0,1-2,2v7A2,2,0,0,1,18,30ZM13,12a.94.94,0,0,0-1,1v6h2v9h4V19h2V13a.94.94,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M16,9a4,4,0,1,1,4-4h0A4,4,0,0,1,16,9Zm0-6a2,2,0,1,0,2,2h0a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,31H6a2.0059,2.0059,0,0,1-2-2V22a2.0059,2.0059,0,0,1-2-2V14a2.9465,2.9465,0,0,1,3-3h6a2.9465,2.9465,0,0,1,3,3v6a2.0059,2.0059,0,0,1-2,2v7A2.0059,2.0059,0,0,1,10,31ZM5,13a.9448.9448,0,0,0-1,1v6H6v9h4V20h2V14a.9448.9448,0,0,0-1-1Z"}),(0,a.jsx)("path",{d:"M8,10a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,8,10ZM8,4a2,2,0,1,0,2,2A2.002,2.002,0,0,0,8,4Z"}),(0,a.jsx)("path",{d:"M28.7663,4.2558A4.2121,4.2121,0,0,0,23,4.0321a4.2121,4.2121,0,0,0-5.7663.2237,4.319,4.319,0,0,0,0,6.0447L22.998,16.14,23,16.1376l.002.0019,5.7643-5.839A4.319,4.319,0,0,0,28.7663,4.2558ZM27.342,8.8948l-4.34,4.3973L23,13.29l-.002.002-4.34-4.3973a2.3085,2.3085,0,0,1,0-3.2338,2.2639,2.2639,0,0,1,3.1561,0l1.181,1.2074L23,6.8634l.0049.005,1.181-1.2074a2.2639,2.2639,0,0,1,3.1561,0A2.3085,2.3085,0,0,1,27.342,8.8948Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"7.5",cy:"9.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"13",cy:"13",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"21",r:"1"}),(0,a.jsx)("path",{d:"M25,14a8.9844,8.9844,0,0,0-7,3.3555V13a10.9054,10.9054,0,0,0-1.0093-4.5845l-.3569-.7768L15.811,7.87A2.9549,2.9549,0,0,1,15,8a3.0033,3.0033,0,0,1-3-3,2.9574,2.9574,0,0,1,.1294-.8105l.2324-.8233-.7773-.3569A10.9115,10.9115,0,0,0,7,2H2V9a10.8954,10.8954,0,0,0,2.2339,6.627l.3887.4277.54-.0381a5.5286,5.5286,0,0,1,5.3628,3.2559l.2207.497.5376.0845A11.0219,11.0219,0,0,0,13,20h3V30h2V26h3a9.01,9.01,0,0,0,9-9V14ZM12.1016,17.9468A7.51,7.51,0,0,0,5.5283,14,8.8945,8.8945,0,0,1,4,9V4H7a8.8624,8.8624,0,0,1,3.0259.53A4.2457,4.2457,0,0,0,10,5a4.9658,4.9658,0,0,0,5.47,4.9736A8.8793,8.8793,0,0,1,16,13v5H13A8.1153,8.1153,0,0,1,12.1016,17.9468ZM28,17a7.0078,7.0078,0,0,1-7,7H18V23a7.01,7.01,0,0,1,5.0212-6.7109A1.4971,1.4971,0,1,0,26,16.5a1.485,1.485,0,0,0-.0918-.5H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19 21H21V24H19z"}),(0,a.jsx)("path",{d:"M19 0H21V3H19z"}),(0,a.jsx)("path",{d:"M8 11H11V13H8z"}),(0,a.jsx)("path",{d:"M29 11H32V13H29z"}),(0,a.jsx)("path",{d:"M11.59 3.07H13.57V6.07H11.59z",transform:"rotate(-45 12.586 4.577)"}),(0,a.jsx)("path",{d:"M26.44 17.92H28.42V20.92H26.44z",transform:"rotate(-45 27.43 19.408)"}),(0,a.jsx)("path",{d:"M11.09 18.42H14.09V20.400000000000002H11.09z",transform:"rotate(-45 12.592 19.414)"}),(0,a.jsx)("path",{d:"M25.93 3.58H28.93V5.5600000000000005H25.93z",transform:"rotate(-45 27.423 4.57)"}),(0,a.jsx)("path",{d:"M20,5a7,7,0,1,0,7,7A7,7,0,0,0,20,5Zm0,12A5,5,0,0,1,20,7Z"}),(0,a.jsx)("path",{d:"M5,18H0V32H5a3,3,0,0,0,3-3V27a3,3,0,0,0-.78-2A3,3,0,0,0,8,23V21A3,3,0,0,0,5,18ZM2,20H5a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H2Zm4,9a1,1,0,0,1-1,1H2V26H5a1,1,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M2 2 9 2 9 0 0 0 0 9 2 9 2 2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 29H13V32H11z"}),(0,a.jsx)("path",{d:"M11 8H13V11H11z"}),(0,a.jsx)("path",{d:"M0 19H3V21H0z"}),(0,a.jsx)("path",{d:"M21 19H24V21H21z"}),(0,a.jsx)("path",{d:"M3.59 11.09H5.57V14.09H3.59z",transform:"rotate(-45 4.585 12.59)"}),(0,a.jsx)("path",{d:"M18.44 25.93H20.42V28.93H18.44z",transform:"rotate(-45 19.429 27.422)"}),(0,a.jsx)("path",{d:"M3.09 26.44H6.09V28.42H3.09z",transform:"rotate(-45 4.591 27.428)"}),(0,a.jsx)("path",{d:"M17.93 11.59H20.93V13.57H17.93z",transform:"rotate(-45 19.423 12.585)"}),(0,a.jsx)("path",{d:"M12,13a7,7,0,1,0,7,7A7,7,0,0,0,12,13Zm0,12a5,5,0,0,1,0-10Z"}),(0,a.jsx)("path",{d:"M2 2 9 2 9 0 0 0 0 9 2 9 2 2z"}),(0,a.jsx)("path",{d:"M30,0H26a2,2,0,0,0-2,2V12a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V2A2,2,0,0,0,30,0ZM26,12V2h4V12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.76,3h5.51a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.37,9.37,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5A1,1,0,0,0,5,6v.08C5.46,12,8.41,26,25.94,27A1,1,0,0,0,27,26.06V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M26 8H30V12H26z"}),(0,a.jsx)("path",{d:"M20 2H24V6H20z"}),(0,a.jsx)("path",{d:"M20 8H24V12H20z"}),(0,a.jsx)("path",{d:"M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),(0,a.jsx)("path",{d:"M24.41 9 28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M24.41 9 28 5.41 26.59 4 23 7.59 19.41 4 18 5.41 21.59 9 18 12.59 19.41 14 23 10.41 26.59 14 28 12.59 24.41 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.33,21.48l2.24-2.24a2.19,2.19,0,0,1,2.34-.48l2.73,1.09a2.18,2.18,0,0,1,1.36,2v5A2.17,2.17,0,0,1,26.72,29C7.59,27.81,3.73,11.61,3,5.41A2.17,2.17,0,0,1,5.17,3H10a2.16,2.16,0,0,1,2,1.36l1.09,2.73a2.16,2.16,0,0,1-.47,2.34l-2.24,2.24S11.67,20.4,20.33,21.48Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),(0,a.jsx)("path",{d:"M27 13 27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M27 13 27 11 22.414 11 29 4.414 27.586 3 21 9.586 21 5 19 5 19 13 27 13z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 14H18V16H16z"}),(0,a.jsx)("path",{d:"M20 14H22V16H20z"}),(0,a.jsx)("path",{d:"M24 14H26V16H24z"}),(0,a.jsx)("path",{d:"M16 18H18V20H16z"}),(0,a.jsx)("path",{d:"M20 18H22V20H20z"}),(0,a.jsx)("path",{d:"M24 18H26V20H24z"}),(0,a.jsx)("path",{d:"M16 22H18V24H16z"}),(0,a.jsx)("path",{d:"M20 22H22V24H20z"}),(0,a.jsx)("path",{d:"M24 22H26V24H24z"}),(0,a.jsx)("path",{d:"M16 10H26V12H16z"}),(0,a.jsx)("path",{d:"M28,6H14V5a2.0025,2.0025,0,0,0-2-2H8A2.0025,2.0025,0,0,0,6,5V6H4A2.0025,2.0025,0,0,0,2,8V26a2.0025,2.0025,0,0,0,2,2H28a2.0025,2.0025,0,0,0,2-2V8A2.0025,2.0025,0,0,0,28,6ZM8,5h4V22H8ZM28,26H4V8H6V22a2.0025,2.0025,0,0,0,2,2h4a2.0025,2.0025,0,0,0,2-2V8H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.19,18.56A25.66,25.66,0,0,1,5,6.08V6A1,1,0,0,1,6,5h5.28l1.5,3.77L9.94,11.64l.06.48a13,13,0,0,0,1.46,4.17l1.46-1.46a9.34,9.34,0,0,1-.84-2.52l2.13-2.15A2,2,0,0,0,14.65,8L13.13,4.26A2,2,0,0,0,11.27,3H5.76A3,3,0,0,0,3,6.23,28,28,0,0,0,7.79,20Z"}),(0,a.jsx)("path",{d:"M27.77,18.86,24,17.35a2,2,0,0,0-2.17.41l-2.17,2.15A9.17,9.17,0,0,1,15.45,18L30,3.41,28.59,2,2,28.59,3.41,30l7-7c3.38,3.18,8.28,5.62,15.39,6H26a3,3,0,0,0,3-3V20.72A2,2,0,0,0,27.77,18.86ZM27,26v.06a1,1,0,0,1-1.06.94c-6.51-.37-11-2.54-14.11-5.42L14,19.44A10.77,10.77,0,0,0,19.88,22l.48.06,2.87-2.85L27,20.72Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.74,19.56l-2.52-1a2,2,0,0,0-2.15.44L20,21.06a9.93,9.93,0,0,1-5.35-2.29L30,3.41,28.59,2,2,28.59,3.41,30l7.93-7.92c3.24,3.12,7.89,5.5,14.55,5.92A2,2,0,0,0,28,26V21.41A2,2,0,0,0,26.74,19.56Z"}),(0,a.jsx)("path",{d:"M8.15,18.19l3.52-3.52A11.68,11.68,0,0,1,10.85,12l2.07-2.07a2,2,0,0,0,.44-2.15l-1-2.52A2,2,0,0,0,10.5,4H6A2,2,0,0,0,4,6.22,29,29,0,0,0,8.15,18.19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,29h-0.2C6.2,27.9,3.4,11.3,3,6.2C2.9,4.6,4.1,3.1,5.8,3C5.8,3,5.9,3,6,3h5.3c0.8,0,1.6,0.5,1.9,1.3L14.6,8 c0.3,0.7,0.1,1.6-0.4,2.2l-2.1,2.1c0.7,3.9,3.7,6.9,7.6,7.6l2.2-2.1c0.6-0.6,1.4-0.7,2.2-0.4l3.8,1.5c0.7,0.3,1.2,1,1.2,1.9V26 C29,27.7,27.7,29,26,29z M6,5C5.4,5,5,5.4,5,6c0,0,0,0.1,0,0.1C5.5,12,8.4,26,25.9,27c0.6,0,1-0.4,1.1-0.9c0,0,0,0,0-0.1v-5.3 l-3.8-1.5l-2.9,2.9L19.9,22c-8.7-1.1-9.9-9.8-9.9-9.9l-0.1-0.5l2.8-2.9L11.3,5H6z"}),(0,a.jsx)("path",{d:"M20 4 20 6 24.6 6 18 12.6 19.4 14 26 7.4 26 12 28 12 28 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),(0,a.jsx)("path",{d:"M20 4 20 6 24.586 6 18 12.586 19.414 14 26 7.414 26 12 28 12 28 4 20 4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z"}),(0,a.jsx)("path",{d:"M25,30h-.17C5.18,28.87,2.39,12.29,2,7.23A3,3,0,0,1,4.7611,4.0088Q4.88,4,5,4h5.27a2,2,0,0,1,1.86,1.26L13.65,9a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,23,18.35l3.77,1.51A2,2,0,0,1,28,21.72V27A3,3,0,0,1,25,30ZM5,6a1,1,0,0,0-1.0032.9968c0,.0278.001.0555.0032.0832C4.46,13,7.41,27,24.94,28a1,1,0,0,0,1.0581-.9382Q26,27.0309,26,27V21.72l-3.77-1.51-2.87,2.85L18.88,23C10.18,21.91,9,13.21,9,13.12l-.06-.48,2.84-2.87L10.28,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z"}),(0,a.jsx)("path",{d:"M28,13H26a7.0078,7.0078,0,0,0-7-7V4A9.01,9.01,0,0,1,28,13Z"}),(0,a.jsx)("path",{d:"M26,29h-.17C6.18,27.87,3.39,11.29,3,6.23A3,3,0,0,1,5.7612,3.0088Q5.88,3,6,3h5.27a2,2,0,0,1,1.86,1.26L14.65,8a2,2,0,0,1-.44,2.16l-2.13,2.15a9.36,9.36,0,0,0,7.58,7.6l2.17-2.15A2,2,0,0,1,24,17.35l3.77,1.51A2,2,0,0,1,29,20.72V26A3,3,0,0,1,26,29ZM6,5a1,1,0,0,0-1.0032.9968q0,.0417.0032.0832C5.46,12,8.41,26,25.94,27a1,1,0,0,0,1.0582-.9382Q27,26.0309,27,26V20.72l-3.77-1.51-2.87,2.85L19.88,22C11.18,20.91,10,12.21,10,12.12l-.06-.48,2.84-2.87L11.28,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,13H22a3.0033,3.0033,0,0,0-3-3V8A5.0057,5.0057,0,0,1,24,13Z"}),(0,a.jsx)("path",{d:"M28,13H26a7.0078,7.0078,0,0,0-7-7V4A9.01,9.01,0,0,1,28,13Z"}),(0,a.jsx)("path",{d:"M20.3333,21.4823l2.24-2.24a2.1667,2.1667,0,0,1,2.3368-.48l2.7281,1.0913A2.1666,2.1666,0,0,1,29,21.8659v4.9613a2.1668,2.1668,0,0,1-2.2843,2.1686C7.5938,27.8054,3.7321,11.6114,3.0146,5.4079A2.162,2.162,0,0,1,5.1692,3H10.042a2.1666,2.1666,0,0,1,2.0117,1.362L13.145,7.09a2.1666,2.1666,0,0,1-.48,2.3367l-2.24,2.24S11.6667,20.399,20.3333,21.4823Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18.303,10a2.6616,2.6616,0,0,0-1.9079.8058l-.3932.4054-.397-.4054a2.6615,2.6615,0,0,0-3.8157,0,2.7992,2.7992,0,0,0,0,3.8964L16.0019,19l4.2089-4.2978a2.7992,2.7992,0,0,0,0-3.8964A2.6616,2.6616,0,0,0,18.303,10Z"}),(0,a.jsx)("path",{d:"M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,12a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,12Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,6Z"}),(0,a.jsx)("path",{d:"M26,22H21.8472L21.18,18H24V16H8v2h2.82l-.6668,4H6v2H9.82l-.6668,4H11.18l.6668-4h8.3056l.6668,4h2.0276L22.18,24H26ZM12.18,22l.6665-4h6.3062l.6665,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.5,14H20V12H18V11H16v1.0508A2.5,2.5,0,0,0,16.5,17h1a.5.5,0,0,1,0,1H14v2h2v1h2V19.9492A2.5,2.5,0,0,0,17.5,15h-1a.5.5,0,0,1,0-1Z"}),(0,a.jsx)("path",{d:"M29,13H26.98A5.7789,5.7789,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0926,5.0926,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.013,7.013,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 11H20V13H13z"}),(0,a.jsx)("path",{d:"M29,13H26.98A5.7791,5.7791,0,0,0,25,8.8525V5a1,1,0,0,0-1.6-.8L19.6665,7H15c-5.5095,0-9.4634,3.2412-9.9485,8H5a1.0009,1.0009,0,0,1-1-1V12H2v2a3.0033,3.0033,0,0,0,3,3h.07A9.1733,9.1733,0,0,0,9,23.5566V27a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V25h3v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V23.6372A5.0928,5.0928,0,0,0,26.8188,20H29a1,1,0,0,0,1-1V14A1,1,0,0,0,29,13Zm-1,5H25.124c-.3052,2.7529-.8235,3.4854-3.124,4.3154V26H20V23H13v3H11V22.3779A7.0129,7.0129,0,0,1,7,16c0-4.8354,4.0181-7,8-7h5.3335L23,7V9.7764c2.4182,1.8593,1.9126,3.186,2.0183,5.2236H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.999,6.999,0,0,0,12.2855,4.5878A7.9969,7.9969,0,1,0,22,14Zm0,2a6.0046,6.0046,0,0,1,5.91,5H16.09A6.0046,6.0046,0,0,1,22,16ZM6,9A5,5,0,0,1,16,9v6H6Zm5,19a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9566,7.9566,0,0,0-.7242,8.9315A4.9885,4.9885,0,0,1,11,28Zm11,0a6.0046,6.0046,0,0,1-5.91-5H27.91A6.0046,6.0046,0,0,1,22,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M25 21 23 21 23 19 21 19 21 21 19 21 19 23 21 23 21 25 23 25 23 23 25 23 25 21z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,14a7.94,7.94,0,0,0-4,1.0825V9A7,7,0,0,0,4,9V23a6.9857,6.9857,0,0,0,12.2756,4.5768A7.9966,7.9966,0,1,0,22,14ZM11,4a5.0059,5.0059,0,0,1,5,5v6H6V9A5.0059,5.0059,0,0,1,11,4Zm0,24a5.0059,5.0059,0,0,1-5-5V17h9.765a7.9564,7.9564,0,0,0-.7239,8.9319A5.0147,5.0147,0,0,1,11,28Zm11,0a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,22,28Z"}),(0,a.jsx)("path",{d:"M19 21H25V23H19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.59,13.31,30,11.9,20,2,18.69,3.42,19.87,4.6,8.38,14.32,6.66,12.61,5.25,14l5.66,5.68L2,28.58,3.41,30l8.91-8.91L18,26.75l1.39-1.42-1.71-1.71L27.4,12.13ZM16.26,22.2,9.8,15.74,21.29,6,26,10.71Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5858,13.3137,30,11.9,20,2,18.6858,3.415l1.1858,1.1857L8.38,14.3225,6.6641,12.6067,5.25,14l5.6572,5.6773L2,28.5831,3.41,30l8.9111-8.9087L18,26.7482l1.3929-1.414L17.6765,23.618l9.724-11.4895Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,12h6c1.1028,0,2-.8975,2-2V4c0-1.1025-.8972-2-2-2h-6c-1.1028,0-2,.8975-2,2v2h-9c-2.7571,0-5,2.2432-5,5h-2c-1.1028,0-2,.8975-2,2v6c0,1.1025.8972,2,2,2h2c0,2.7568,2.2429,5,5,5h9v2c0,1.1025.8972,2,2,2h6c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2h-6c-1.1028,0-2,.8975-2,2v2h-9c-1.6543,0-3-1.3457-3-3h2c1.1028,0,2-.8975,2-2v-6c0-1.1025-.8972-2-2-2h-2c0-1.6543,1.3457-3,3-3h9v2c0,1.1025.8972,2,2,2ZM22,22h6v6h-6l-.0012-6h.0012ZM10,13v6h-6l-.0012-6h6.0012ZM22,4h6v6h-6l-.0012-6h.0012Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.1,2H3.9c-1.1,0-1.9.9-1.9,1.9v24.2c0,1.1.9,1.9,1.9,1.9h24.2c1.1,0,1.9-.9,1.9-1.9V3.9c0-1.1-.9-1.9-1.9-1.9ZM28,28H4V8h24s0,20,0,20ZM28,6H4v-2h24s0,2,0,2ZM22,19l-1.4,1.4-2.6-2.6v6.2c0,1.1-.9,2-2,2h-6v-2h6v-6.2l-2.6,2.6-1.4-1.4,5-5,5,5ZM8,12v-2h16v2H8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h24c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM28,28H4V8h24v20ZM28,6H4v-2h24v2ZM22,10h2v16h-2v-16ZM15,14l5,5-5,5-1.4-1.4,2.6-2.6h-6.2c-1.1,0-2-.9-2-2v-6h2v6h6.2l-2.6-2.6,1.4-1.4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,8c0-0.4-0.2-0.7-0.5-0.9l-7-4C23.3,3,23.2,3,23,3s-0.3,0-0.5,0.1L16,6.8L9.5,3.1C9.3,3,9.2,3,9,3S8.7,3,8.5,3.1l-7,4 C1.2,7.3,1,7.6,1,8v20c0,0.6,0.4,1,1,1c0.2,0,0.3-0.1,0.5-0.1l0,0L9,25.2l6.5,3.7C15.7,29,15.8,29,16,29s0.3,0,0.5-0.1l6.5-3.7 l6.5,3.7l0,0c0.1,0.1,0.3,0.1,0.5,0.1c0.6,0,1-0.4,1-1V8z M3,8.6l5-2.9v17.7l-5,2.9V8.6z M15,26.3l-5-2.9V5.7l5,2.9V26.3z M22,23.4 l-5,2.9V8.6l5-2.9V23.4z M24,23.4V5.7l5,2.9l0,17.7L24,23.4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.37,14.75,20,10V6a4,4,0,0,0-8,0v4L2.63,14.75a1,1,0,0,0-.63.93v5a1,1,0,0,0,1,1,1,1,0,0,0,.29-.05L12,18v5L8.55,24.72a1,1,0,0,0-.55.9V29a1,1,0,0,0,1,1,.9.9,0,0,0,.28,0L16,28l6.72,2A.9.9,0,0,0,23,30a1,1,0,0,0,1-1V25.62a1,1,0,0,0-.55-.9L20,23V18l8.71,3.61a1,1,0,0,0,.29.05,1,1,0,0,0,1-1v-5A1,1,0,0,0,29.37,14.75ZM28,19.15,18,15v9.24l4,2v1.43l-6-1.75-6,1.75V26.24l4-2V15L4,19.15V16.3l10-5.07V6a2,2,0,0,1,4,0v5.23L28,16.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5845,14.585l-3.12-1.8721A4.9951,4.9951,0,0,0,22.8921,12H7.7808L7.16,9.5151A1.9975,1.9975,0,0,0,5.2192,8H4a2.0023,2.0023,0,0,0-2,2v7a3.0033,3.0033,0,0,0,3,3h7v6a2.0023,2.0023,0,0,0,2,2h1.3071A2.0086,2.0086,0,0,0,17.18,26.7021L19.6929,20h7.3916a2.9152,2.9152,0,0,0,1.5-5.415ZM27.0845,18H18.3071l-3,8H14V18H5a1.0009,1.0009,0,0,1-1-1V10H5.2192l1,4H10v2h2V14h3v2h2V14h3v2h2V14h.8921a2.9977,2.9977,0,0,1,1.5434.4277l3.12,1.8721a.9154.9154,0,0,1-.4712,1.7Z"}),(0,a.jsx)("path",{d:"M14,4h1.3228l2.4,6h2.1545L17.18,3.2573A1.9906,1.9906,0,0,0,15.3228,2H14a2.0023,2.0023,0,0,0-2,2v6h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,30H28a4.9316,4.9316,0,0,1-4-1.9873,5.0192,5.0192,0,0,1-8,0,5.0192,5.0192,0,0,1-8,0A4.9316,4.9316,0,0,1,4,30H2V28H4a3.44,3.44,0,0,0,3.0532-2.3215A.9712.9712,0,0,1,8,25a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,12,28a3.44,3.44,0,0,0,3.0532-2.3215A.99.99,0,0,1,16,25a1.0069,1.0069,0,0,1,.9487.6838A3.4381,3.4381,0,0,0,20,28a3.44,3.44,0,0,0,3.0532-2.3215,1,1,0,0,1,1.8955.0053A3.4381,3.4381,0,0,0,28,28h2Z"}),(0,a.jsx)("path",{d:"M28,6v4H25.5L23.4,7.2A3.0129,3.0129,0,0,0,21,6H15a3.0033,3.0033,0,0,0-3,3v1H8.6182L7.8945,8.5527l-1-2A1,1,0,0,0,6,6H3A1,1,0,0,0,2,7v6a3.0033,3.0033,0,0,0,3,3h6.82l-.6666,4H7a1,1,0,0,0,0,2H27a1,1,0,0,0,0-2H22.847L22.18,16h.1629a4.9662,4.9662,0,0,0,3.5351-1.4648L28,12.4141V16h2V6ZM14,9a1.0009,1.0009,0,0,1,1-1h6a1.0045,1.0045,0,0,1,.8.4L23,10H14Zm6.82,11H13.18l.6666-4h6.306Zm1.5237-6H5a1.0009,1.0009,0,0,1-1-1V8H5.3818l.7237,1.4473L7.3818,12h18.204l-1.1214,1.1211A2.9789,2.9789,0,0,1,22.3433,14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141L7,15.8281V25H19v2H7A2.0024,2.0024,0,0,1,5,25Z"}),(0,a.jsx)("path",{d:"M24,22h4a2.002,2.002,0,0,1,2,2v4a2.002,2.002,0,0,1-2,2H24a2.002,2.002,0,0,1-2-2V24A2.002,2.002,0,0,1,24,22Zm4,6V24H23.9985L24,28Z"}),(0,a.jsx)("path",{d:"M27,6v9.1719l3.5859-3.586L32,13l-6,6-6-6,1.4141-1.4141L25,15.1719V6H13V4H25A2.0024,2.0024,0,0,1,27,6Z"}),(0,a.jsx)("path",{d:"M2 6H8V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28,28H4c-1.1028,0-2-.8972-2-2v-6h2v6h24v-6h2v6c0,1.1028-.8972,2-2,2Z"}),(0,a.jsx)("path",{d:"m17,17v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m9,17v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m17,9v4c0,.5522.4477,1,1,1h4c.5523,0,1-.4478,1-1v-4c0-.5523-.4477-1-1-1h-4c-.5523,0-1,.4477-1,1Zm2,1h2v2h-2v-2Z"}),(0,a.jsx)("path",{d:"m5,5v8c0,.5522.4477,1,1,1h8c.5523,0,1-.4478,1-1V5c0-.5523-.4477-1-1-1H6c-.5523,0-1,.4477-1,1Zm2,1h6v6h-6v-6Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M3.5,14C3.2,14,3,13.8,3,13.5v-11c0-0.2,0.1-0.3,0.2-0.4C3.4,2,3.6,2,3.8,2.1l9.5,5.5c0.2,0.1,0.3,0.4,0.2,0.7 c0,0.1-0.1,0.1-0.2,0.2l-9.5,5.5C3.7,14,3.6,14,3.5,14z M4,3.4v9.3L12,8L4,3.4z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28ZM8,6.6909V25.3088L24.9248,16Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,28a1,1,0,0,1-1-1V5a1,1,0,0,1,1.4819-.8763l20,11a1,1,0,0,1,0,1.7525l-20,11A1.0005,1.0005,0,0,1,7,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,2c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S4.7,2,8,2 M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z"}),(0,a.jsx)("path",{d:"M6,11.5c-0.1,0-0.2,0-0.3-0.1c-0.2-0.1-0.2-0.3-0.2-0.4V5c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3 C12,7.7,12.1,8,11.9,8.2c0,0.1-0.1,0.2-0.2,0.2l-5.5,3C6.2,11.5,6.1,11.5,6,11.5z M6.5,5.8v4.3l4-2.2L6.5,5.8z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z"}),(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M11.7,8.4l-5.5,3c-0.2,0.1-0.3,0.1-0.5,0c-0.2-0.1-0.2-0.3-0.2-0.4V5 c0-0.2,0.1-0.3,0.2-0.4c0.2-0.1,0.3-0.1,0.5,0l5.5,3C12,7.7,12.1,8,11.9,8.2C11.9,8.3,11.8,8.4,11.7,8.4L11.7,8.4z"}),(0,a.jsx)("path",{d:"M6.5 10.2 10.5 8 6.5 5.8z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M11,23a1,1,0,0,1-1-1V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789l-12,6A1.001,1.001,0,0,1,11,23Zm1-11.3821v8.7642L20.7642,16Z"}),(0,a.jsx)("path",{d:"M12 20.382 20.764 16 12 11.618 12 20.382z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.4473,14.8945-12,6A1,1,0,0,1,10,22V10a1,1,0,0,1,1.4473-.8945l12,6a1,1,0,0,1,0,1.789Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 6H22V8H4z"}),(0,a.jsx)("path",{d:"M4 12H22V14H4z"}),(0,a.jsx)("path",{d:"M4 18H16V20H4z"}),(0,a.jsx)("path",{d:"M21 18 28 23 21 28 21 18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,9h8v2h-3v10h3v2h-8v-2h3v-10h-3v-2ZM14,21v-12h-2v14h8v-2h-6ZM4,18h4c1.103,0,2-.897,2-2v-5c0-1.103-.897-2-2-2H2v14h2v-5ZM4,10.9985h4v5.0015h-4v-5.0015Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Zm0,8a6,6,0,0,1-12,0V10H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,8H21V2H19V8H13V2H11V8H10a2,2,0,0,0-2,2v6a8.0073,8.0073,0,0,0,7,7.9307V30h2V23.9307A8.0073,8.0073,0,0,0,24,16V10A2,2,0,0,0,22,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,23H24a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H24V21h4V17H26V15h4Z"}),(0,a.jsx)("path",{d:"M18 19 14.32 9 12 9 12 23 14 23 14 13 17.68 23 20 23 20 9 18 9 18 19z"}),(0,a.jsx)("path",{d:"M4,23H2V9H8a2,2,0,0,1,2,2v5a2,2,0,0,1-2,2H4Zm0-7H8V11H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.0009,13c-.5165.0019-1.0234.1398-1.4696.4-.5478-.8691-1.5021-1.3974-2.5293-1.4-.5165.0019-1.0234.1398-1.4696.4-.749-1.1788-2.2121-1.6847-3.529-1.22v-5.18h0c0-1.6569-1.3427-3-2.9991-3s-2.9991,1.3431-2.9991,3v11.1l-2.2293-1.52h0c-.5111-.3807-1.1323-.5843-1.7695-.58-1.6564-.0041-3.0024,1.3357-3.0065,2.9926-.002.8025.3175,1.5723.8871,2.1374l7.9976,7.3c1.1323,1.0137,2.5992,1.5729,4.1188,1.57h4.9985c3.8648,0,6.9979-3.134,6.9979-7v-6c0-1.6569-1.3427-3-2.9991-3h.0002ZM26.0006,22c0,2.7614-2.2379,5-4.9985,5h-4.9985c-1.0105.0122-1.991-.3432-2.7592-1l-7.9476-7.3c-.1847-.1863-.2888-.4377-.2899-.7,0-.5523.4476-1,.9997-1,.2163,0,.4268.0702.5998.2l5.3984,3.7V6c0-.5523.4476-1,.9997-1s.9997.4477.9997,1h0v11h1.9994v-3c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v3h1.9994v-2c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v2h1.9994v-1c0-.5523.4476-1,.9997-1s.9997.4477.9997,1v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H18a2.0021,2.0021,0,0,1-2-2V18a2.0021,2.0021,0,0,1,2-2h2v2H18V28H28V18H26V16h2a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M14,16H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H14a2.0021,2.0021,0,0,1,2,2V6H14V4H4V14H14V12h2v2A2.0021,2.0021,0,0,1,14,16Z"}),(0,a.jsx)("path",{d:"M26,9a2.9926,2.9926,0,0,0-5.8157-1H9v2H20.1843A2.9939,2.9939,0,0,0,22,11.8154V23h2V11.8159A2.9958,2.9958,0,0,0,26,9Zm-3,1a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,23,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13.71 12.29 7.41 6 13 6 13 4 4 4 4 13 6 13 6 7.41 12.29 13.71 13.71 12.29z"}),(0,a.jsx)("path",{d:"M28,30H12a2,2,0,0,1-2-2V18h2V28H28V12H18V10H28a2,2,0,0,1,2,2V28A2,2,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M22,15H17v2h5v2H18a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h6V17A2,2,0,0,0,22,15Zm0,8H18V21h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 24H12V30H10z"}),(0,a.jsx)("path",{d:"M21,20H7a3.0033,3.0033,0,0,1-3-3V6H2V17a5.0059,5.0059,0,0,0,5,5H21a4.9419,4.9419,0,0,1,2.105.481L17,28.5859,18.4141,30l6.3071-6.3071A4.96,4.96,0,0,1,26,27v3h2V27A7.0078,7.0078,0,0,0,21,20Z"}),(0,a.jsx)("path",{d:"M25.2746,4.0386l-7-2a1.0013,1.0013,0,0,0-.55,0l-7,2A.9993.9993,0,0,0,10.03,5.2422L11,9.123V11A7,7,0,1,0,25,11V9.123l.97-3.8808A.9993.9993,0,0,0,25.2746,4.0386ZM18,4.04l5.7952,1.6558L23.219,8H19V6H17V8H12.781l-.5762-2.3042ZM18,16a5.0058,5.0058,0,0,1-5-5V10H23v1A5.0058,5.0058,0,0,1,18,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,18A6,6,0,1,0,20,22.46v7.54l4-1.8926,4,1.8926V22.46A5.98,5.98,0,0,0,30,18Zm-4,8.84-2-.9467L22,26.84V23.65a5.8877,5.8877,0,0,0,4,0ZM24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Z"}),(0,a.jsx)("path",{d:"M9 14H16V16H9z"}),(0,a.jsx)("path",{d:"M9 8H19V10H9z"}),(0,a.jsx)("path",{d:"M6,30a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V8H22V4H6V28H16v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6c-1.1025,0-2-.8975-2-2V6c0-1.1025.8975-2,2-2h8v2H6v20h20v-8.0267h2v8.0267c0,1.1025-.8975,2-2,2ZM28,14v-2l-6.586-.0266L30,3.3875l-1.4142-1.4142-8.5861,8.586.0003-6.5593h-2v10l9.9999-.0269v.0269Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,4H10A2.0059,2.0059,0,0,0,8,6V20a2.0059,2.0059,0,0,0,2,2H28a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,28,4Zm0,16H10V6H28Z"}),(0,a.jsx)("path",{d:"M18,26H4V16H6V14H4a2.0059,2.0059,0,0,0-2,2V26a2.0059,2.0059,0,0,0,2,2H18a2.0059,2.0059,0,0,0,2-2V24H18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m19,7v-3.3999c0-.8837-.7164-1.6001-1.6001-1.6001H4v2h13v3h-6c-1.1046,0-2,.8954-2,2v14c0,1.1046.8954,2,2,2h6v3H4v2h13.3999c.8837,0,1.6001-.7164,1.6001-1.6001v-3.3999h6c1.1046,0,2-.8954,2-2v-14c0-1.1046-.8954-2-2-2h-6Zm6,16h-14v-14h14v14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28c-3.5928,0-6.9666-1.5903-9.2566-4.3632l1.542-1.2737c1.9087,2.3113,4.7207,3.6368,7.7146,3.6368,5.5139,0,10-4.486,10-10s-4.4861-10-10-10c-2.9939,0-5.8059,1.3256-7.7146,3.6368l-1.542-1.2737c2.29-2.7728,5.6638-4.3632,9.2566-4.3632,6.6169,0,12,5.3832,12,12s-5.3831,12-12,12Z"}),(0,a.jsx)("path",{d:"M23 16 16 9 14.5859 10.4141 19.1719 15 2 15 2 17 19.1719 17 14.5859 21.5859 16 23 23 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 16 23 9 21.5859 10.4141 26.1719 15 9 15 9 17 26.1719 17 21.5859 21.5859 23 23 30 16z"}),(0,a.jsx)("path",{d:"M14,28c-6.6167,0-12-5.3832-12-12S7.3833,4,14,4c2.335,0,4.5986,.6714,6.5461,1.9414l-1.0923,1.6753c-1.6221-1.0576-3.5078-1.6167-5.4539-1.6167-5.5139,0-10,4.486-10,10s4.4861,10,10,10c1.946,0,3.8318-.5591,5.4539-1.6167l1.0923,1.6753c-1.9475,1.27-4.2112,1.9414-6.5461,1.9414Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m21,7h-2v-3.3999c0-.8999-.7002-1.6001-1.6001-1.6001H4v2h13v3h-2c-3.3,0-6,2.7002-6,6v6c0,3.2998,2.7,6,6,6h2v3H4v2h13.3999c.8999,0,1.6001-.7002,1.6001-1.6001v-3.3999h2c3.3,0,6-2.7002,6-6v-6c0-3.2998-2.7-6-6-6Zm4,12c0,2.2002-1.8,4-4,4h-6c-2.2,0-4-1.7998-4-4v-6c0-2.2002,1.8-4,4-4h6c2.2,0,4,1.7998,4,4v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,10H22V6a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2v4H4a2,2,0,0,0-2,2V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM12,6h8v4H12ZM4,26V12H28V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.2,2.9l-0.5,0.9c2.6,1.5,3.5,4.9,2,7.5s-4.9,3.5-7.5,2s-3.5-4.9-2-7.5c0.5-0.8,1.2-1.5,2-2L4.8,2.9 c-3.1,1.8-4.2,5.8-2.4,8.9s5.8,4.2,8.9,2.4s4.2-5.8,2.4-8.9C13.1,4.3,12.2,3.4,11.2,2.9z"}),(0,a.jsx)("path",{d:"M7.5 1H8.5V8H7.5z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,5.74l-1,1.73a11,11,0,1,1-11,0l-1-1.73a13,13,0,1,0,13,0Z"}),(0,a.jsx)("path",{d:"M15 2H17V16H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.0166,29.9937c-7.7085,0-13.9863-6.2646-13.9995-13.9761-.0068-3.7358,1.4443-7.2534,4.0854-9.9043l1.417,1.4121c-2.2642,2.272-3.5083,5.2866-3.5024,8.4888.0054,3.2056,1.2588,6.2168,3.5293,8.4795,2.2651,2.2573,5.2725,3.5,8.4702,3.5h.021c1.3477-.0024,2.6533-.2212,3.8799-.6514l.6611,1.8877c-1.4385.5039-2.9653.7612-4.5381.7637h-.0239Z"}),(0,a.jsx)("path",{d:"M15,16h2v4h2c1.1046,0,2,.8954,2,2v3h-2v-3h-2v3h-2v-3h-2v3h-2v-3c0-1.1046.8954-2,2-2h2v-4Z"}),(0,a.jsx)("path",{d:"M23,26h0c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z"}),(0,a.jsx)("path",{d:"M9,4h0c.5523,0,1,.4477,1,1h0c0,.5523-.4477,1-1,1h0c-.5523,0-1-.4477-1-1h0c0-.5523.4477-1,1-1Z"}),(0,a.jsx)("path",{d:"M20.9199,10.1064c-.4219-2.332-2.4678-4.1064-4.9199-4.1064s-4.498,1.7744-4.9199,4.1064c-1.7637.417-3.0801,2.0049-3.0801,3.8936,0,2.2061,1.7939,4,4,4h1v-2h-1c-1.1025,0-2-.8975-2-2s.8975-2,2-2h1v-1c0-1.6543,1.3457-3,3-3s3,1.3457,3,3v1h1c1.1025,0,2,.8975,2,2s-.8975,2-2,2h-1v2h1c2.2061,0,4-1.7939,4-4,0-1.8887-1.3164-3.4766-3.0801-3.8936Z"}),(0,a.jsx)("path",{d:"M25.8999,25.8885l-1.4141-1.4141c2.2681-2.2681,3.5171-5.2808,3.5171-8.4829,0-6.6167-5.3833-12-12-12-1.3491,0-2.6548.2168-3.8809.644l-.6582-1.8887c1.4385-.501,2.9653-.7554,4.5391-.7554,7.7197,0,14,6.2803,14,14,0,3.7363-1.457,7.251-4.103,9.897Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,16h0c0,.3369.024.6749.0714,1.006l-1.9795.2832c-.061-.4238-.0919-.858-.0919-1.2892,0-4.9629,4.0376-9,9-9,2.0435,0,4.0444.7041,5.6348,1.9814l-1.2529,1.5596c-1.2544-1.0083-2.7696-1.541-4.3819-1.541-3.8599,0-6.9999,3.1401-6.9999,7.0001h-.0001ZM8,20c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM16,4c6.6166,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14-1.6431,0-3.2529.2822-4.7846.8389l.6836,1.8799c1.3115-.4771,2.6913-.7188,4.101-.7188ZM22,12c0,.5522.4478,1,1,1s1-.4478,1-1-.4478-1-1-1-1,.4478-1,1ZM9,6c.5522,0,1-.4478,1-1s-.4478-1-1-1-1,.4478-1,1,.4478,1,1,1ZM4,16h0c0-3.2051,1.2481-6.2188,3.5147-8.4854l-1.4141-1.4141c-2.6445,2.6445-4.1006,6.1603-4.1006,9.8995,0,7.7197,6.2803,14,14,14v-2c-6.6166,0-12-5.3832-12-12ZM28.5,25.5c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.4617.1135-.8942.3006-1.2853l-5.5153-5.5153c-.3911.1871-.8236.3006-1.2853.3006-1.6543,0-3-1.3457-3-3s1.3457-3,3-3,3,1.3457,3,3c0,.4617-.1135.8942-.3006,1.2853l5.5153,5.5153c.3911-.1871.8236-.3006,1.2853-.3006,1.6543,0,3,1.3456,3,2.9999h0ZM16,17c.5513,0,1-.4487,1-1s-.4487-1-1-1-1,.4487-1,1,.4487,1,1,1ZM26.5,25.5c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 11 25 11 25 23 27 23 27 11 30 11 30 9 22 9 22 11z"}),(0,a.jsx)("path",{d:"M14,23H12V9h6a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H14Zm0-7h4V10.9985H14Z"}),(0,a.jsx)("path",{d:"M4,23H2V9H8a2.002,2.002,0,0,1,2,2v5a2.002,2.002,0,0,1-2,2H4Zm0-7H8V10.9985H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.0001,14.0001v4h-2v-4s2,0,2,0ZM30.0001,14.0001v4h-2v-4s2,0,2,0ZM4.0001,20.0001v4h-2v-4h2ZM6.0001,28.0001v2h-2c-1.1001,0-2-.9-2-2v-2h2v2h2ZM12.0001,28.0001v2h-4v-2h4ZM28,2H4c-1.1001,0-2,.9-2,2v8h2v-2h24v2h2V4c0-1.1-.8999-2-2-2ZM25.5802,22.4099l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.4202,27.5899l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.9152,20.5769l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 10H17V18H15z"}),(0,a.jsx)("path",{d:"M20 14H22V18H20z"}),(0,a.jsx)("path",{d:"M10 12H12V18H10z"}),(0,a.jsx)("path",{d:"M25,4H17V2H15V4H7A2,2,0,0,0,5,6V20a2,2,0,0,0,2,2h8v6H11v2H21V28H17V22h8a2,2,0,0,0,2-2V6A2,2,0,0,0,25,4Zm0,16H7V6H25Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.5053,16l8.1591-7.2529A1,1,0,0,0,25,7H22V2H20V9h2.37L16,14.6621,9.63,9H12V2H10V7H7a1,1,0,0,0-.6646,1.7471L14.4945,16,6.3353,23.2529A1,1,0,0,0,7,25h3v5h2V23H9.63L16,17.3379,22.37,23H20v7h2V25h3a1,1,0,0,0,.6645-1.7471Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,30H10V25H6l10-9,10,9H22Z"}),(0,a.jsx)("path",{d:"M16,16,6,7h4V2H22V7h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm8,15H11.85l5.58,5.5728L16,24,8,16l8-8,1.43,1.3926L11.85,15H24Z"}),(0,a.jsx)("path",{fill:"none",d:"M16 8 17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8 17.43 9.393 11.85 15 24 15 24 17 11.85 17 17.43 22.573 16 24 8 16 16 8z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2v2c6.63,0,12,5.37,12,12s-5.37,12-12,12v2c7.73,0,14-6.27,14-14S23.73,2,16,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m8.24,25.14l-1.29,1.53c1.23,1.04,2.64,1.87,4.18,2.44l.68-1.88c-1.32-.49-2.53-1.2-3.58-2.09h.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4.19,18l-1.97.41c.28,1.63.84,3.16,1.64,4.54l1.73-.95c-.68-1.18-1.16-2.61-1.4-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m5.59,10l-1.73-1c-.79,1.38-1.35,2.96-1.64,4.59l1.97.35c.24-1.39.72-2.75,1.4-3.93v-.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m11.82,4.76l-.68-1.88c-1.54.57-2.95,1.4-4.18,2.44l1.29,1.53c1.05-.89,2.26-1.6,3.58-2.09h-.01Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,12v-2h-4v-3h-2v3h-2c-1.103,0-2,.897-2,2v3c0,1.103.897,2,2,2h6v3h-8v2h4v3h2v-3h2c1.103,0,2-.8975,2-2v-3c0-1.103-.897-2-2-2h-6v-3h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2h-5v2h5v24h-5v2h5c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,4h5V2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h5v-2H4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M3 11H11V13H3z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M3 19H11V21H3z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M5 15H13V17H5z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27,21h-2c0-2.8226,0-7.0881-10.0903-8.0042l.1807-1.9917c11.9097,1.0811,11.9097,6.8802,11.9097,9.9958Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16.9097,20.9958c-11.9097-1.0811-11.9097-6.8802-11.9097-9.9958h2c0,2.8226,0,7.0881,10.0903,8.0042l-.1807,1.9917Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m23,20.52c0-4.62-3.78-5.14-6.82-5.56-3.31-.46-5.18-.86-5.18-3.71,0-2.39,2.51-3.24,4.65-3.24,2.32,0,4.14.86,5.57,2.63l1.56-1.26c-1.52-1.88-3.46-2.97-5.78-3.28v-3.1h-2v3.02c-3.62.22-6,2.26-6,5.22,0,4.73,3.83,5.26,6.91,5.69,3.25.45,5.09.84,5.09,3.58,0,3.03-3.13,3.48-5,3.48-3.43,0-4.88-.96-6.22-2.63l-1.56,1.26c1.77,2.19,3.73,3.17,6.78,3.34v3.04h2v-3.04c3.73-.3,6-2.33,6-5.44Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m17,15.0698v-6.9536c1.6909.2793,3.084,1.1021,4.2219,2.5117l1.5562-1.2559c-1.5195-1.8823-3.4619-2.9736-5.7781-3.2759v-3.0962h-2v3.022c-3.6152.2192-6,2.2603-6,5.2202,0,4.2739,3.1265,5.1191,6,5.5586v7.1616c-2.7192-.1777-4.0186-1.1001-5.2219-2.5903l-1.5562,1.2559c1.7703,2.1934,3.7332,3.168,6.7781,3.3369v3.0352h2v-3.0449c3.7256-.3042,6-2.3271,6-5.4399,0-4.209-3.1428-5.0156-6-5.4453Zm-6-3.8276c0-2.1533,2.0293-3.0537,4-3.2134v6.7466c-2.5696-.4238-4-1.043-4-3.5332Zm6,12.71v-6.8574c2.5669.4155,4,1.0044,4,3.4204,0,2.5361-2.1902,3.2656-4,3.437Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,9H25V3H7V9H4a2,2,0,0,0-2,2V21a2,2,0,0,0,2,2H7v6H25V23h3a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9ZM9,5H23V9H9ZM23,27H9V17H23Zm5-6H25V15H7v6H4V11H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23v3h-14.5c-2.5,0-4.5-2-4.5-4.5s2-4.5,4.5-4.5h.5v-2h-.5c-3.6,0-6.5,2.9-6.5,6.5s2.9,6.5,6.5,6.5h14.5v3h8v-8h-8ZM29,29h-4v-4h4v4ZM23.5,4h-14.5V1H1v8h8v-3h14.5c2.5,0,4.5,2,4.5,4.5s-2,4.5-4.5,4.5h-.5v2h.5c3.6,0,6.5-2.9,6.5-6.5s-2.9-6.5-6.5-6.5ZM7,7H3V3h4v4ZM20,15h-1v-2c0-1.7-1.3-3-3-3s-3,1.3-3,3v2h-1c-.6,0-1,.4-1,1v5c0,.6.4,1,1,1h8c.6,0,1-.4,1-1v-5c0-.6-.4-1-1-1ZM15,13c0-.6.4-1,1-1s1,.4,1,1v2h-2v-2ZM19,20h-6v-3h6v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m12,25c-.7383,0-1.3762.4048-1.7227,1h-5.6301l2.6479-5.0923c.2273.0552.4609.0923.7048.0923,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.6787.2349,1.2979.6162,1.8013l-3.5034,6.7373c-.1611.3101-.1489.6816.0325.9805.1812.2983.5054.481.8547.481h7.2773c.3464.5952.9844,1,1.7227,1,1.1045,0,2-.8955,2-2s-.8955-2-2-2Zm-4-8c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1Z"}),(0,a.jsx)("path",{d:"m29.8872,26.5386l-4.041-7.771c.0986-.2363.1538-.4956.1538-.7676,0-1.1045-.8955-2-2-2s-2,.8955-2,2,.8955,2,2,2c.0757,0,.1477-.0142.2212-.0225l3.1316,6.0225h-4.5371c-.4141-1.1611-1.5137-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.302,0,2.4016-.8389,2.8157-2h6.1843c.3494,0,.6736-.1826.8547-.481.1814-.2988.1936-.6704.0325-.9805Zm-9.8872,1.4614c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),(0,a.jsx)("path",{d:"m21,8c-.2439,0-.4778.0371-.7048.0923l-3.408-6.5537c-.1721-.3311-.5298-.5386-.8872-.5386s-.7151.2075-.8872.5386l-3.8914,7.4839c-.0737-.0083-.1458-.0225-.2214-.0225-1.1045,0-2,.8955-2,2s.8955,2,2,2,2-.8955,2-2c0-.272-.0552-.5312-.1538-.7676l3.1538-6.0649,2.6162,5.0312c-.3813.5034-.6162,1.1226-.6162,1.8013,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0,4c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m31,17c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.3018.8384,2.4014,2,2.8154v2.6104l-11,6.4165-10.0154-5.8423,22.5193-13.1362c.3071-.1792.4961-.5083.4961-.8638s-.189-.6846-.4961-.8638L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3.1846c-1.1616.4141-2,1.5137-2,2.8154,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-1.3018-.8384-2.4014-2-2.8159v-2.6099l11-6.4165,10.0154,5.8423L3.4961,22.1362c-.3071.1792-.4961.5083-.4961.8638s.189.6846.4961.8638l12,7c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-3.1841c1.1616-.4146,2-1.5142,2-2.8159Zm-27-1c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm24,2c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 18H14V20H8z"}),(0,a.jsx)("path",{d:"M8 22H18V24H8z"}),(0,a.jsx)("path",{d:"M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM18,6v4H14V6ZM6,26V6h6v6h8V6h6l.0012,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18.0001h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM25.58,22.4101l1.42-1.41,4,4-4,4-1.41-1.42,2.58-2.58-2.59-2.59ZM19.42,27.5901l-1.42,1.41-4-4,4-4,1.41,1.42-2.58,2.58,2.59,2.59ZM24.915,20.5771l-1.915-.577-2.915,9.423,1.915.577,2.915-9.423Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6c0-.5522.4477-1,1-1s1,.4478,1,1-.4478,1-1,1-1-.4476-1-1ZM11,7c.5522,0,1-.4476,1-1s-.4478-1-1-1-1,.4478-1,1,.4477,1,1,1ZM30,4v12.0001h-2v-6.0001H4v18h7.9999v2h-7.9999c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2ZM28,4H4v4h24v-4ZM31,27.0001c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3c0-.2228.0283-.4384.0746-.6475l-2.0746-1.1977-2.0746,1.1977c.0463.209.0746.4247.0746.6475,0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3c.7037,0,1.343.2536,1.8551.6607l2.1449-1.2383v-1.6068c-1.1615-.4141-2-1.5137-2-2.8157,0-1.6543,1.3457-3,3-3s3,1.3457,3,3c0,1.3019-.8385,2.4016-2,2.8157v1.6067l2.1449,1.2383c.5121-.4071,1.1514-.6607,1.8551-.6607,1.6543,0,3,1.3457,3,3h0ZM19,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1ZM22,19.0001c0,.5513.4482,1,1,1s1-.4487,1-1-.4482-1-1-1-1,.4487-1,1ZM29,27.0001c0-.5518-.4482-1-1-1s-1,.4482-1,1,.4482,1,1,1,1-.4482,1-1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,21H4a2.0021,2.0021,0,0,1-2-2V13a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,21ZM4,13v6H28V13Z"}),(0,a.jsx)("path",{d:"M6 15H20V17H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,22a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,16,22Zm0-10a4,4,0,1,0,4,4A4.0045,4.0045,0,0,0,16,12Z"}),(0,a.jsx)("path",{d:"M16,26a10.0162,10.0162,0,0,1-7.4531-3.3325l1.49-1.334A8,8,0,1,0,16,8V6a10,10,0,0,1,0,20Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 21 17.4 22.4 14.8 25 23 25 23 27 14.8 27 17.4 29.6 16 31 11 26z"}),(0,a.jsx)("path",{d:"M6.3 19H17.6V21H6.3z",transform:"rotate(-45 12 20)"}),(0,a.jsx)("path",{d:"M23,22h-2v-5c0-0.3,0.1-0.5,0.3-0.7l4.1-4.1c1.7-1.7,2.6-4,2.6-6.4V4h-1.9c-2.4,0-4.7,0.9-6.4,2.6l-4.1,4.1 C15.5,10.9,15.3,11,15,11H7.5l-2.6,3.3l5.3,0.8l-0.3,2l-7-1c-0.4-0.1-0.7-0.3-0.8-0.6s-0.1-0.7,0.1-1l4-5C6.4,9.1,6.7,9,7,9h7.6 l3.8-3.8C20.4,3.1,23.2,2,26.1,2H28c1.1,0,2,0.9,2,2v1.9c0,2.9-1.1,5.7-3.2,7.8L23,17.4V22z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27 25.5859 25 23.5859 25 21 23 21 23 24.4141 25.5859 27 27 25.5859z"}),(0,a.jsx)("path",{d:"m24,31c-3.8599,0-7-3.1401-7-7s3.1401-7,7-7,7,3.1401,7,7-3.1401,7-7,7Zm0-12c-2.7571,0-5,2.2429-5,5s2.2429,5,5,5,5-2.2429,5-5-2.2429-5-5-5Z"}),(0,a.jsx)("path",{d:"m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z"}),(0,a.jsx)("circle",{cx:"9",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"23",cy:"13",r:"2"}),(0,a.jsx)("path",{d:"m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m31.5,23c-.8271,0-1.5-.6729-1.5-1.5v-1.5c0-1.1025-.8972-2-2-2h-2v2h2v1.5c0,.98.4072,1.8643,1.0581,2.5-.6509.6357-1.0581,1.52-1.0581,2.5v1.5h-2v2h2c1.1028,0,2-.8975,2-2v-1.5c0-.8271.6729-1.5,1.5-1.5h.5v-2h-.5Z"}),(0,a.jsx)("path",{d:"m16,20v1.5c0,.8271-.6729,1.5-1.5,1.5h-.5v2h.5c.8271,0,1.5.6729,1.5,1.5v1.5c0,1.1025.8972,2,2,2h2v-2h-2v-1.5c0-.98-.4072-1.8643-1.0581-2.5.6509-.6357,1.0581-1.52,1.0581-2.5v-1.5h2v-2h-2c-1.1028,0-2,.8975-2,2Z"}),(0,a.jsx)("path",{d:"m28,15h2V5c0-1.103-.8975-2-2-2h-3v2h3v10Z"}),(0,a.jsx)("circle",{cx:"23",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"13",r:"2"}),(0,a.jsx)("circle",{cx:"9",cy:"13",r:"2"}),(0,a.jsx)("path",{d:"m7,23h-3c-1.103,0-2-.8975-2-2V5c0-1.103.897-2,2-2h3v2h-3v16h3v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 16 22 24 20.6 22.6 27.2 16 20.6 9.4 22 8z"}),(0,a.jsx)("path",{d:"M12 15H20V17H12z"}),(0,a.jsx)("path",{d:"M2 16 10 8 11.4 9.4 4.8 16 11.4 22.6 10 24z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m25,22.1421v-13.1421c0-2.2056-1.7944-4-4-4h-4.1719l2.5859-2.5859-1.4141-1.4141-5,5,5,5,1.4141-1.4141-2.5859-2.5859h4.1719c1.1028,0,2,.8975,2,2v13.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579Zm-1,5.8579c-1.1028,0-2-.8975-2-2s.8972-2,2-2,2,.8975,2,2-.8972,2-2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m4,6c0,1.8584,1.2798,3.4106,3,3.8579v12.2842c-1.7202.447-3,1.9993-3,3.8579,0,2.2061,1.7944,4,4,4s4-1.7939,4-4c0-1.8586-1.2798-3.4109-3-3.8579v-12.2842c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm6,20c0,1.1025-.897,2-2,2s-2-.8975-2-2c0-1.1025.897-2,2-2s2,.8975,2,2Zm0-20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,27.1781l-2.59-2.59-1.41,1.4119,4,4,7-7-1.41-1.4119-5.59,5.59ZM14,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM22,16h-3v-.1689c0-1.397.7441-2.7114,1.9419-3.4302l1.1416-.6865-1.03-1.7144-1.1404.686c-1.7969,1.0781-2.9131,3.0493-2.9131,5.145v5.1689c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1h0ZM12,28h-6c-1.103,0-2-.8975-2-2V6c0-1.103.897-2,2-2h20c1.1025,0,2,.897,2,2v11h-2V6H6v20h6v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6Zm0,2v3H4V8ZM4,24V13H28V24Z"}),(0,a.jsx)("path",{d:"M6 20H16V22H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,22H19a2.0023,2.0023,0,0,1-2-2V10a2.002,2.002,0,0,1,2-2h6v2H19V20h6Z"}),(0,a.jsx)("path",{d:"M13,8H9a2.002,2.002,0,0,0-2,2V20a2.0023,2.0023,0,0,0,2,2h1v2a2.0023,2.0023,0,0,0,2,2h2V24H12V22h1a2.0023,2.0023,0,0,0,2-2V10A2.002,2.002,0,0,0,13,8ZM9,20V10h4V20Z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.002,2.002,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V28A2.0027,2.0027,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,1C7.729,1,1,7.729,1,16s6.729,15,15,15,15-6.729,15-15S24.271,1,16,1Zm6.5825,20.5c-.5203-.8926-1.4771-1.5-2.5825-1.5-.1821,0-.3586.0225-.532.0537l-1.7258-3.0205c6.7866.2388,10.1216,1.8262,10.2571,2.4668-.0979.4624-1.8899,1.4141-5.4167,2Zm-2.5825.5c.5515,0,1,.4487,1,1s-.4485,1-1,1-1-.4487-1-1,.4485-1,1-1ZM3,16c0-.5435.0442-1.0762.1094-1.6025.8552.666,2.1555,1.1973,3.7239,1.6025-1.5684.4053-2.8687.9365-3.7239,1.6025-.0652-.5264-.1094-1.0591-.1094-1.6025Zm6.4175-5.4995c.5205.8921,1.4773,1.4995,2.5825,1.4995.1821,0,.3586-.0225.532-.0537l1.7258,3.0205c-6.8042-.2393-10.1387-1.8335-10.2581-2.4619.0862-.4609,1.8784-1.416,5.4177-2.0044Zm2.5825-.5005c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Zm13.167,6c1.5681-.4053,2.8684-.9365,3.7236-1.6025.0652.5264.1094,1.0591.1094,1.6025s-.0442,1.0762-.1094,1.6025c-.8552-.666-2.1555-1.1973-3.7236-1.6025ZM16,3c4.9019,0,9.1758,2.7285,11.3901,6.7451-2.2891-.9961-5.7993-1.5513-9.3901-1.6997v1.999c6.6108.2695,9.8655,1.8232,9.9993,2.4556-.1431.6763-3.8533,2.4062-11.4236,2.4917l-2.3118-4.0454c.4524-.5254.7361-1.2002.7361-1.9463,0-1.6543-1.3457-3-3-3-1.4956,0-2.7285,1.1035-2.9531,2.5371-1.7056.2837-3.2363.6841-4.4351,1.2051,2.2151-4.0146,6.4878-6.7422,11.3882-6.7422Zm0,26c-4.9019,0-9.1758-2.7285-11.3901-6.7451,2.2891.9961,5.7993,1.5513,9.3901,1.6997v-1.999c-6.6282-.2705-9.8823-1.8306-10.0002-2.4507.126-.6729,3.8357-2.4106,11.4246-2.4966l2.3118,4.0454c-.4524.5254-.7361,1.2002-.7361,1.9463,0,1.6543,1.3457,3,3,3,1.4956,0,2.7285-1.1035,2.9531-2.5371,1.7056-.2837,3.2363-.6841,4.4351-1.2051-2.2151,4.0146-6.4878,6.7422-11.3882,6.7422Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"20",cy:"4",r:"2"}),(0,a.jsx)("circle",{cx:"8",cy:"16",r:"2"}),(0,a.jsx)("circle",{cx:"28",cy:"12",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"7",r:"2"}),(0,a.jsx)("circle",{cx:"16",cy:"24",r:"2"}),(0,a.jsx)("path",{d:"M30,3.4131,28.5859,2,4,26.585V2H2V28a2,2,0,0,0,2,2H30V28H5.4131Z"}),e)})},4499(e,t,r){r.d(t,{pl:()=>i,wM:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24 26H26V28H24z",transform:"rotate(-90 25 27)"}),(0,a.jsx)("path",{d:"M18 22H20V24H18z",transform:"rotate(-90 19 23)"}),(0,a.jsx)("path",{d:"M18 30 22 30 22 28 20 28 20 26 18 26 18 30z"}),(0,a.jsx)("path",{d:"M25 23H29V25H25z",transform:"rotate(-90 27 24)"}),(0,a.jsx)("path",{d:"M28 26 30 26 30 30 26 30 26 28 28 28 28 26z"}),(0,a.jsx)("path",{d:"M26 20 26 18 30 18 30 22 28 22 28 20 26 20z"}),(0,a.jsx)("path",{d:"M24 20 22 20 22 24 20 24 20 26 24 26 24 20z"}),(0,a.jsx)("path",{d:"M19 17H21V21H19z",transform:"rotate(-90 20 19)"}),(0,a.jsx)("path",{d:"M6 22H10V26H6z"}),(0,a.jsx)("path",{d:"M14,30H2V18H14ZM4,28h8V20H4Z"}),(0,a.jsx)("path",{d:"M22 6H26V10H22z"}),(0,a.jsx)("path",{d:"M30,14H18V2H30ZM20,12h8V4H20Z"}),(0,a.jsx)("path",{d:"M6 6H10V10H6z"}),(0,a.jsx)("path",{d:"M14,14H2V2H14ZM4,12h8V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 15 17 15 17 2 15 2 15 15 2 15 2 17 15 17 15 30 17 30 17 17 30 17 30 15z"}),(0,a.jsx)("path",{d:"M5,30a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,5,30Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,5,26Z"}),(0,a.jsx)("path",{d:"M8,8a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,8,8ZM8,4A1,1,0,1,0,9,5,1.001,1.001,0,0,0,8,4Z"}),(0,a.jsx)("path",{d:"M22,13a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,22,13Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,22,9Z"}),(0,a.jsx)("circle",{cx:"11",cy:"11",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"21",r:"2"}),(0,a.jsx)("circle",{cx:"21",cy:"21",r:"2"}),(0,a.jsx)("circle",{cx:"22",cy:"28",r:"2"}),(0,a.jsx)("circle",{cx:"28",cy:"24",r:"2"}),(0,a.jsx)("circle",{cx:"4",cy:"11",r:"2"}),(0,a.jsx)("circle",{cx:"28",cy:"4",r:"2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"11",cy:"15.5",r:"1.5"}),(0,a.jsx)("path",{d:"M12,12H10V8h2a2,2,0,0,0,0-4H10A2.0023,2.0023,0,0,0,8,6v.5H6V6a4.0045,4.0045,0,0,1,4-4h2a4,4,0,0,1,0,8Z"}),(0,a.jsx)("path",{d:"M22.4479,21.0337A10.971,10.971,0,0,0,19.9211,4.7446l-.999,1.73A8.9967,8.9967,0,1,1,5,14H3a10.9916,10.9916,0,0,0,18.0338,8.4478L28.5859,30,30,28.5859Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 6H28V8H10z"}),(0,a.jsx)("path",{d:"M10 12H28V14H10z"}),(0,a.jsx)("path",{d:"M15 18H28V20H15z"}),(0,a.jsx)("path",{d:"M10 24H28V26H10z"}),(0,a.jsx)("path",{d:"M4 14 11 19 4 24 4 14z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M20 15.1798 17.41 12.59 16 14 20 18 26 12 24.59 10.59 20 15.1798z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 18H10V20H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,9h-5v2h4v2h-3v3h2v-1h2c.5522,0,1-.4478,1-1v-4c0-.5522-.4478-1-1-1Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17.7358,30l-1.7358-1,4-7h6c1.1071,0,2-.8926,2-2v-12c0-1.1074-.8929-2-2-2H6c-1.1071,0-2,.8926-2,2v12c0,1.1074.8929,2,2,2h9v2H6c-2.2093,0-4-1.79-4-4v-12c0-2.2109,1.7907-4,4-4h20c2.2093,0,4,1.7891,4,4v12c0,2.21-1.7907,4-4,4h-4.8354l-3.4287,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 20H30V22H22z"}),(0,a.jsx)("path",{d:"M22 24H30V26H22z"}),(0,a.jsx)("path",{d:"M22 28H30V30H22z"}),(0,a.jsx)("path",{d:"M18 24H20V26H18z"}),(0,a.jsx)("path",{d:"M18 20H20V22H18z"}),(0,a.jsx)("path",{d:"M18 28H20V30H18z"}),(0,a.jsx)("path",{d:"M6.8149,8.293A12.0777,12.0777,0,0,1,10.0068,5.62L9.0079,3.89A14.0845,14.0845,0,0,0,5.2841,7.0083Z"}),(0,a.jsx)("path",{d:"M25.1851,8.293l1.5308-1.2847A14.0845,14.0845,0,0,0,22.9921,3.89l-.9989,1.73A12.0777,12.0777,0,0,1,25.1851,8.293Z"}),(0,a.jsx)("path",{d:"M4.7366,11.9l-1.8772-.6831A13.9019,13.9019,0,0,0,2,16H4A11.917,11.917,0,0,1,4.7366,11.9Z"}),(0,a.jsx)("path",{d:"M6.8149,23.707A11.9975,11.9975,0,0,1,4.7366,20.1l-1.8772.6831a13.99,13.99,0,0,0,2.4247,4.209Z"}),(0,a.jsx)("path",{d:"M27.2634,11.9A11.917,11.917,0,0,1,28,16h2a13.8971,13.8971,0,0,0-.8594-4.7827Z"}),(0,a.jsx)("path",{d:"M13.9182,27.8066A11.8894,11.8894,0,0,1,10.0068,26.38l-.9989,1.73a13.8673,13.8673,0,0,0,4.5633,1.664Z"}),(0,a.jsx)("path",{d:"M13.9182,4.1934a11.3012,11.3012,0,0,1,4.1636,0l.347-1.9678a13.187,13.187,0,0,0-4.8576,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,15H6.11A9,9,0,0,1,10,8.86l1.79-1.2L10.69,6,8.9,7.2A11,11,0,0,0,4,16.35V23a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V17A2,2,0,0,0,12,15Z"}),(0,a.jsx)("path",{d:"M26,15H20.11A9,9,0,0,1,24,8.86l1.79-1.2L24.7,6,22.9,7.2A11,11,0,0,0,18,16.35V23a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V17A2,2,0,0,0,26,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,3.4141,28.5859,2,15.293,15.293a1,1,0,0,0,1.414,1.414l4.18-4.1792A5.9956,5.9956,0,1,1,16,10V8a8.011,8.011,0,1,0,6.3164,3.0977L25.1631,8.251A11.881,11.881,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a13.8572,13.8572,0,0,0-3.4224-9.1636Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541A4.9817,4.9817,0,0,1,18,19a5.0385,5.0385,0,0,1-.6074-.05,8.0432,8.0432,0,0,0-4.3421-4.3423A4.9,4.9,0,0,1,18,9V7a7.0078,7.0078,0,0,0-7,7c0,.0234.0056.0469.0059.07A8.0469,8.0469,0,0,0,10,14a7.95,7.95,0,0,0-1.9883.26C8.0095,14.1729,8,14.0879,8,14A10.0114,10.0114,0,0,1,18,4V2A12.0137,12.0137,0,0,0,6,14c0,.355.0171.7061.0471,1.0537A7.9943,7.9943,0,1,0,16.9465,25.9521c.35.03.7019.0479,1.0535.0479A11.9853,11.9853,0,0,0,27.1538,6.2607ZM15.91,21H13.9563a12.029,12.029,0,0,0-1.218-4.332A6.01,6.01,0,0,1,15.91,21ZM4.09,23H6.0435a12.0318,12.0318,0,0,0,1.2182,4.3325A6.01,6.01,0,0,1,4.09,23Zm1.9532-2H4.09a6.01,6.01,0,0,1,3.1714-4.332A12.0321,12.0321,0,0,0,6.0435,21ZM10,27.9858A10.0149,10.0149,0,0,1,8.0552,23h3.89A10.0149,10.0149,0,0,1,10,27.9858ZM8.0552,21A10.0118,10.0118,0,0,1,10,16.0151,10.01,10.01,0,0,1,11.9448,21Zm4.6831,6.3325A12.0318,12.0318,0,0,0,13.9565,23H15.91A6.01,6.01,0,0,1,12.7383,27.3325ZM28,14A10.0114,10.0114,0,0,1,18,24c-.0869,0-.1733-.01-.26-.0117a7.5527,7.5527,0,0,0,.19-2.9942c.0237,0,.0466.0059.07.0059A6.9991,6.9991,0,0,0,23.6055,9.8086l2.1313-2.1314A9.95,9.95,0,0,1,28,14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,3.4146,28.5854,2,17.2932,13.2925a1,1,0,1,0,1.4141,1.414l3.4543-3.4541a4.9646,4.9646,0,0,1-3.8811,7.7193,7.0485,7.0485,0,0,0-5.1438-3.8731A4.9431,4.9431,0,0,1,18,9V7a6.9551,6.9551,0,0,0-6.9087,8.0791,6.93,6.93,0,0,0-2.8525,1.06A9.97,9.97,0,0,1,18,4V2A11.9756,11.9756,0,0,0,6.573,17.6357a6.9293,6.9293,0,0,0-1.3674,2.7061A4.9948,4.9948,0,0,0,7,30H17a4.9921,4.9921,0,0,0,4.9678-4.68A12.0391,12.0391,0,0,0,30,14a11.8678,11.8678,0,0,0-2.8389-7.7466ZM17,28H7a2.9945,2.9945,0,0,1-.6963-5.9082l.6587-.1572.0986-.67a4.9923,4.9923,0,0,1,9.878,0l.0986.6695.6587.1572A2.9945,2.9945,0,0,1,17,28ZM28,14a10.0346,10.0346,0,0,1-6.3118,9.291,4.9577,4.9577,0,0,0-2.0207-2.5,6.9922,6.9922,0,0,0,3.938-10.9824l2.132-2.1318A9.8873,9.8873,0,0,1,28,14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,10H24V2H22v8H13V8H11v2H8V8H6v2H4a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V12A2,2,0,0,0,28,10ZM4,28V12H28V28Z"}),(0,a.jsx)("path",{d:"M10,26a4,4,0,1,1,4-4A4,4,0,0,1,10,26Zm0-6a2,2,0,1,0,2,2A2,2,0,0,0,10,20Z"}),(0,a.jsx)("path",{d:"M7 14H13V16H7z"}),(0,a.jsx)("path",{d:"M17 16H26V18H17z"}),(0,a.jsx)("path",{d:"M17 20H26V22H17z"}),(0,a.jsx)("path",{d:"M17 24H26V26H17z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,26a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,10,26Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,10,20Z"}),(0,a.jsx)("path",{d:"M17 20H26V22H17z"}),(0,a.jsx)("path",{d:"M17 24H26V26H17z"}),(0,a.jsx)("path",{d:"M20,12h8a2.0023,2.0023,0,0,0,2-2V6a2.0023,2.0023,0,0,0-2-2H20a2.0023,2.0023,0,0,0-2,2V7H12a4.0045,4.0045,0,0,0-4,4v3H6V4H4V14a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V16a2.0023,2.0023,0,0,0-2-2H10V11a2.0023,2.0023,0,0,1,2-2h6v1A2.0023,2.0023,0,0,0,20,12Zm4-6h4v4H24ZM20,6h2v4H20Zm8,22H4V16H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 11H19V13H13z"}),(0,a.jsx)("path",{d:"M13 15H19V17H13z"}),(0,a.jsx)("circle",{cx:"16",cy:"23",r:"2"}),(0,a.jsx)("path",{d:"M22,7H21V2H19V7H10A2.0023,2.0023,0,0,0,8,9v2H6v2H8v2H6v2H8V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,22,7ZM10,28V9H22V28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m12,28h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,19h-9c-1.104.0014-1.9986.896-2,2v5c0,1.1046.8954,2,2,2h3v-2h-3v-5h9v5h-2.5352l-2.5937,3.8906,1.6641,1.1094,2-3h1.4648c1.1046,0,2-.8954,2-2v-5c-.0014-1.104-.896-1.9986-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m29,15v-4c0-3.8599-3.1401-7-7-7h-3v2h3c2.7568,0,5,2.2432,5,5v4h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M6 10H9V12H6z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12.606,6.4355l-2.5251-3.6855c-.3821-.4766-.9512-.75-1.5615-.75h-4.5193c-1.1028,0-2,.8975-2,2v10c0,1.1025.8972,2,2,2h7c1.1028,0,2-.8975,2-2v-6.375c0-.4526-.1558-.8965-.394-1.1895Zm-8.606,7.5645V4h4v3c0,.5522.4478,1,1,1h2v6h-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.5,22H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22ZM16,4a7,7,0,0,0-6.94,6.14L9,11,8.14,11a4.5,4.5,0,0,0,.36,9h15a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82A7,7,0,0,0,16,4Z"}),(0,a.jsx)("path",{d:"M14,30a.93.93,0,0,1-.45-.11,1,1,0,0,1-.44-1.34l2-4a1,1,0,1,1,1.78.9l-2,4A1,1,0,0,1,14,30Z"}),(0,a.jsx)("path",{d:"M20,30a.93.93,0,0,1-.45-.11,1,1,0,0,1-.44-1.34l2-4a1,1,0,1,1,1.78.9l-2,4A1,1,0,0,1,20,30Z"}),(0,a.jsx)("path",{d:"M8,30a.93.93,0,0,1-.45-.11,1,1,0,0,1-.44-1.34l2-4a1,1,0,1,1,1.78.9l-2,4A1,1,0,0,1,8,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,30a1,1,0,0,1-.8944-1.4474l2-4a1,1,0,1,1,1.7887.8946l-2,4A.9979.9979,0,0,1,11,30Z"}),(0,a.jsx)("path",{d:"M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.4973,6.4973,0,0,0,8.5,22H19.3813L18.105,24.5527a1,1,0,0,0,1.789.8946L21.6177,22H23.5A6.4974,6.4974,0,0,0,24.8008,9.1362ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,17,30Z"}),(0,a.jsx)("path",{d:"M8,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,8,30Z"}),(0,a.jsx)("path",{d:"M30,15.5a6.5323,6.5323,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0A6.4905,6.4905,0,0,0,5.7026,21.3584L4.106,24.5527a1,1,0,1,0,1.7885.8946L7.6174,22l6.7644,0L13.106,24.5527a1,1,0,1,0,1.7885.8946L16.6177,22h6.7641L22.106,24.5527a1,1,0,1,0,1.7885.8946l1.9444-3.89A6.5058,6.5058,0,0,0,30,15.5ZM23.5,20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.5084,32a1.0127,1.0127,0,0,1-.4485-.1054.9986.9986,0,0,1-.4486-1.3418l1.4934-3.0005a1.0025,1.0025,0,0,1,1.7943.8945l-1.4934,3A1.0013,1.0013,0,0,1,8.5084,32Z"}),(0,a.jsx)("path",{d:"M27.232 15.733H29.232V18.733H27.232z",transform:"rotate(-45.01 28.232 17.233)"}),(0,a.jsx)("path",{d:"M29 10H32V12H29z"}),(0,a.jsx)("path",{d:"M26.732 3.768H29.732V5.768H26.732z",transform:"rotate(-45 28.232 4.768)"}),(0,a.jsx)("path",{d:"M20 0H22V3H20z"}),(0,a.jsx)("path",{d:"M12.768 3.268H14.768V6.268H12.768z",transform:"rotate(-45 13.768 4.768)"}),(0,a.jsx)("path",{d:"M27,11A5.9955,5.9955,0,0,0,15.6335,8.3311,7.3494,7.3494,0,0,0,13.5,8a7.5509,7.5509,0,0,0-7.1492,5.2441A5.9926,5.9926,0,0,0,8,25h7.3818L14.106,27.5527a1,1,0,1,0,1.7885.8946L17.6177,25H19a5.9853,5.9853,0,0,0,5.2163-8.9463A5.9941,5.9941,0,0,0,27,11ZM19,23H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,14.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,23Zm3.9268-8.5107a5.96,5.96,0,0,0-2.2776-1.2452,7.5157,7.5157,0,0,0-3.1853-4.0688,3.9869,3.9869,0,1,1,5.4629,5.314Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.5084,32a1.0115,1.0115,0,0,1-.4485-.1055.9986.9986,0,0,1-.4486-1.3418l1.4934-3a1.0025,1.0025,0,0,1,1.7943.8945l-1.4934,3A1.0015,1.0015,0,0,1,8.5084,32Z"}),(0,a.jsx)("path",{d:"M29.8442,13.0347a1.5184,1.5184,0,0,0-1.2309-.8658,5.3587,5.3587,0,0,1-3.4094-1.7163,6.4648,6.4648,0,0,1-1.285-6.393,1.6031,1.6031,0,0,0-.3-1.5459,1.4535,1.4535,0,0,0-1.3594-.4922l-.0191.0029a7.8549,7.8549,0,0,0-6.1054,6.48A7.3725,7.3725,0,0,0,13.5,8a7.5511,7.5511,0,0,0-7.1494,5.2441A5.9926,5.9926,0,0,0,8,25h7.3818L14.106,27.5527a1,1,0,1,0,1.7885.8946L17.6177,25H19a5.9549,5.9549,0,0,0,5.88-7.1455,7.5,7.5,0,0,0,4.8672-3.3A1.5381,1.5381,0,0,0,29.8442,13.0347ZM19,23H8a3.9926,3.9926,0,0,1-.6733-7.9292l.663-.1128.1456-.6562a5.496,5.496,0,0,1,10.7294,0l.1456.6562.6626.1128A3.9925,3.9925,0,0,1,19,23Zm5.1509-7.0479a5.9639,5.9639,0,0,0-3.5015-2.708A7.5076,7.5076,0,0,0,18.0286,9.55a6.01,6.01,0,0,1,3.77-5.334,8.4581,8.4581,0,0,0,1.9395,7.5972A7.4007,7.4007,0,0,0,27.64,14.041,5.4392,5.4392,0,0,1,24.1509,15.9521Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24V22a3.2965,3.2965,0,0,0,3-3h2A5.2668,5.2668,0,0,1,16,24Z"}),(0,a.jsx)("path",{d:"M16,28a9.0114,9.0114,0,0,1-9-9,9.9843,9.9843,0,0,1,1.4941-4.9554L15.1528,3.4367a1.04,1.04,0,0,1,1.6944,0l6.6289,10.5564A10.0633,10.0633,0,0,1,25,19,9.0114,9.0114,0,0,1,16,28ZM16,5.8483l-5.7817,9.2079A7.9771,7.9771,0,0,0,9,19a7,7,0,0,0,14,0,8.0615,8.0615,0,0,0-1.248-3.9953Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.2 9 28.86 17 28.6 21.54 28.19 18 27.51 12.54 25.49 12.54 24.81 18 24.4 21.54 24.14 17 23.8 9 22 9 23 23 25.27 23 26.03 18.07 26.49 14 26.5 13.97 26.51 14 26.97 18.07 27.73 23 30 23 31 9 29.2 9z"}),(0,a.jsx)("path",{d:"M18,9H14a2,2,0,0,0-2,2V23h2V18h4v5h2V11A2,2,0,0,0,18,9Zm-4,7V11h4v5Z"}),(0,a.jsx)("path",{d:"M10,15V11A2,2,0,0,0,8,9H2V23H4V17H5.48l2.34,6H10L7.63,17H8A2,2,0,0,0,10,15ZM4,11H8v4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,7H5v-2h15v2ZM20,10H5v2h15v-2ZM12,15h-7v2h7v-2ZM10,20h-5v2h5v-2ZM20,20c-1.1,0-2,.9-2,2s.9,2,2,2,2-.9,2-2-.9-2-2-2ZM28,22l-.22.52c-1.42,3.33-4.48,5.48-7.78,5.48s-6.35-2.15-7.78-5.48l-.22-.52.22-.52c1.42-3.33,4.48-5.48,7.78-5.48s6.35,2.15,7.78,5.48l.22.52ZM24,22c0-2.21-1.79-4-4-4s-4,1.79-4,4,1.79,4,4,4,4-1.79,4-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.4141,6.9968l-4.0001-3.9968-1.414,1.4144,4.0001,3.9968v10.5888h-7.0001c-1.4702,0-2.691,1.0646-2.9457,2.4624-.6383-.2906-1.333-.4624-2.0543-.4624s-1.416.1718-2.0543.4623c-.2548-1.3978-1.4755-2.4623-2.9457-2.4623H3.9999v-10.5888l4.0001-3.9968-1.414-1.4144-4.0001,3.9968c-.3779.378-.5859.8801-.5859,1.4144v16.5888c0,2.2061,1.7944,4,4,4h3c2.7568,0,5-2.2432,5-5v-.2139c.5444-.4899,1.2498-.7861,2-.7861s1.4553.2962,2,.7861v.2139c0,2.7568,2.2432,5,5,5h3c2.2061,0,4-1.7939,4-4V8.4112c0-.5343-.208-1.0364-.5859-1.4144ZM12,24c0,1.6543-1.3457,3-3,3h-3c-1.103,0-2-.8975-2-2v-4h7c.5513,0,1,.4482,1,1v2ZM28,25c0,1.1025-.8975,2-2,2h-3c-1.6543,0-3-1.3457-3-3v-2c0-.5518.4482-1,1-1h7v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21 16H23V18H21z"}),(0,a.jsx)("path",{d:"M9 16H17V18H9z"}),(0,a.jsx)("path",{d:"M21 12H23V14H21z"}),(0,a.jsx)("path",{d:"M9 12H17V14H9z"}),(0,a.jsx)("path",{d:"M9 8H23V10H9z"}),(0,a.jsx)("path",{d:"M25,2H7A2.002,2.002,0,0,0,5,4V29a1,1,0,0,0,1,1H7a.9987.9987,0,0,0,.8-.4L10,26.667,12.2,29.6a1.0353,1.0353,0,0,0,1.6,0L16,26.667,18.2,29.6a1.0353,1.0353,0,0,0,1.6,0L22,26.667,24.2,29.6a.9993.9993,0,0,0,.8.4h1a1,1,0,0,0,1-1V4A2.0023,2.0023,0,0,0,25,2Zm0,25.333L22.8,24.4a1.0353,1.0353,0,0,0-1.6,0L19,27.333,16.8,24.4a1.0353,1.0353,0,0,0-1.6,0L13,27.333,10.8,24.4a1.0353,1.0353,0,0,0-1.6,0L7,27.333V4H25Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.59 22 15 16.41 15 7 17 7 17 15.58 22 20.59 20.59 22z"}),(0,a.jsx)("path",{d:"M16,2A13.94,13.94,0,0,0,6,6.23V2H4v8h8V8H7.08A12,12,0,1,1,4,16H2A14,14,0,1,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2a9,9,0,0,0-6,15.69V30l6-4,6,4V17.69A9,9,0,0,0,16,2Zm4,24.26-2.89-1.92L16,23.6l-1.11.74L12,26.26V19.05a8.88,8.88,0,0,0,8,0ZM20.89,16A7,7,0,1,1,23,11,7,7,0,0,1,20.89,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"}),(0,a.jsx)("path",{d:"M16,12a4,4,0,1,1-4,4,4,4,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"16",r:"4"}),(0,a.jsx)("path",{d:"M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6 S19.3,22,16,22z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2C8.3,2,2,8.3,2,16s6.3,14,14,14s14-6.3,14-14S23.7,2,16,2z M16,22c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S19.3,22,16,22 z"}),(0,a.jsx)("path",{d:"M16,10c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S19.3,10,16,10z","data-icon-path":"inner-path",opacity:"0"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.5081,22.2549l-2.0781-3.7402-1.7485,.9707,2.0781,3.7412c.3247,.584,.3162,1.2769-.0229,1.8535-.3391,.5762-.9407,.9199-1.6091,.9199h-7.2974l2.5801-2.5898-1.4102-1.4102-5,5,5,5,1.4102-1.4102-2.5801-2.5898h7.2974c1.3848,0,2.6306-.7124,3.3328-1.9058,.7024-1.1938,.7202-2.6284,.0479-3.8394Z"}),(0,a.jsx)("path",{d:"M5.8726,26c-.6685,0-1.27-.3438-1.6091-.9199-.3391-.5767-.3477-1.2695-.0229-1.8535l4.1111-7.4004,1.0479,3.52,1.9121-.5664-2.0083-6.7798-6.7798,2.0083,.5664,1.9121,3.4934-1.0298-4.0913,7.3643c-.6724,1.2109-.6545,2.6455,.0479,3.8394,.7021,1.1934,1.948,1.9058,3.3328,1.9058h6.1274v-2H5.8726Z"}),(0,a.jsx)("path",{d:"M25.51,9.6538l-1.0476,3.519L19.3503,3.9712c-.6858-1.2344-1.9382-1.9712-3.3503-1.9712s-2.6646,.7368-3.3503,1.9712l-3.0796,5.5435,1.7485,.9707,3.0796-5.543c.3276-.5898,.9265-.9424,1.6018-.9424s1.2742,.3525,1.6018,.9424l5.0925,9.167-3.4939-1.0298-.5664,1.9121,6.78,2.0083,2.0083-6.7798-1.9124-.5664Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,28v-4h7v-2h-7v-4h7c.3564,0,.686-.1899.865-.498.179-.3086.1802-.6885.0032-.998L12.8682,2.5039c-.356-.623-1.3804-.623-1.7363,0L3.1318,16.5039c-.177.3096-.1758.6895.0032.998.179.3081.5085.498.865.498h7v4h-7v2h7v4c0,1.1045.8955,2,2,2h15v-2h-15ZM5.7231,16l6.2769-10.9844,6.2769,10.9844H5.7231Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,10c-1.3016,0-2.3906.8409-2.805,2.002l-8.195-.002v2l8.1945.002c.4138,1.162,1.5032,1.998,2.8055,1.998,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3ZM21,14c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1ZM24,18l-8.1796.001c-.4146-1.1608-1.519-2.001-2.8204-2.001-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.3025,0,2.4076-.8367,2.8213-1.999l8.1787-.001v-2ZM13,20c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1ZM29.8801,16.4801l-6,11c-.1799.3198-.51.5199-.88.5199h-14c-.37,0-.7001-.2001-.88-.5199l-6-11c-.16-.3-.16-.6602,0-.9601l4.11-7.53,1.74,1-3.83,7.01,5.45,10h12.8201l5.45-10-5.45-10h-13.41v-2h14c.37,0,.7001.2001.88.52l6,11c.1599.2999.1599.66,0,.9601h-.0001Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,10H24.1851L20.5977,6.4141,22,5,28,11,22,17l-1.4023-1.4146L24.1821,12H12a6,6,0,0,0,0,12h8v2H12a8,8,0,0,1,0-16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,12a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L13.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L17.3154,6.11A3.9693,3.9693,0,0,1,18,8.223,3.8978,3.8978,0,0,1,14,12Zm.0005-7.2368L12.3438,7.2257A1.89,1.89,0,0,0,12,8.223,1.9,1.9,0,0,0,14,10a1.9,1.9,0,0,0,2-1.777,1.98,1.98,0,0,0-.375-1.0466Z"}),(0,a.jsx)("path",{d:"M7.5,26A5.385,5.385,0,0,1,2,20.751,5.3837,5.3837,0,0,1,2.874,17.92L6.49,12.5383a1.2168,1.2168,0,0,1,2.02-.0006l3.55,5.2777A5.4923,5.4923,0,0,1,13,20.751,5.385,5.385,0,0,1,7.5,26Zm0-11.38L4.5649,18.9868A3.3586,3.3586,0,0,0,4,20.751,3.3855,3.3855,0,0,0,7.5,24,3.3855,3.3855,0,0,0,11,20.751a3.4354,3.4354,0,0,0-.63-1.867Z"}),(0,a.jsx)("path",{d:"M25,2,20,7l1.4141,1.4141L24,5.8281V16a4.0045,4.0045,0,0,1-4,4H16v2h4a6.0066,6.0066,0,0,0,6-6V5.8281l2.5859,2.586L30,7Z"}),(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"18",cy:"26",r:"1"}),(0,a.jsx)("path",{d:"m28,20c1.1028,0,2-.8975,2-2v-4c0-1.1025-.8972-2-2-2h-1v-5c0-1.1025-.8972-2-2-2h-5v-1c0-1.1025-.8972-2-2-2h-4c-1.1028,0-2,.8975-2,2v1h-5c-1.1028,0-2,.8975-2,2v5.1421c-1.7202.4473-3,1.9995-3,3.8579s1.2798,3.4106,3,3.8579v5.1421c0,1.1025.8972,2,2,2h7v1c0,1.1025.8972,2,2,2h12c1.1028,0,2-.8975,2-2v-4c0-1.1025-.8972-2-2-2h-1v-2h1Zm0-2h-4v-4h4v4ZM14,4h4v4h-4v-4Zm-2,3v1c0,1.1025.8972,2,2,2h4c1.1028,0,2-.8975,2-2v-1h5v5h-1c-1.1028,0-2,.8975-2,2v1h-12.1421c-.3638-1.3989-1.4592-2.4941-2.8579-2.8579v-5.1421h5Zm-8,9c0-1.1025.8972-2,2-2s2,.8975,2,2-.8972,2-2,2-2-.8975-2-2Zm24,12h-12v-4h12v4Zm-3-6h-9c-1.1028,0-2,.8975-2,2v1h-7v-5.1421c1.3987-.3638,2.4941-1.459,2.8579-2.8579h12.1421v1c0,1.1025.8972,2,2,2h1v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.386,15.2105l9-7A1,1,0,0,1,30,9V23a1,1,0,0,1-1.614.79l-9-7a1,1,0,0,1,0-1.5791Z"}),(0,a.jsx)("path",{d:"M15 2H17V30H15z",transform:"matrix(-1 0 0 -1 32 32)"}),(0,a.jsx)("path",{d:"M13,16a1.001,1.001,0,0,1-.386.79l-9,7A1,1,0,0,1,2,23V9a1,1,0,0,1,1.614-.79l9,7A1.001,1.001,0,0,1,13,16ZM4,20.9556,10.3711,16,4,11.0444Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.79,19.386l7,9A1,1,0,0,1,23,30H9a1,1,0,0,1-.79-1.614l7-9a1,1,0,0,1,1.5791,0Z"}),(0,a.jsx)("path",{d:"M15 2H17V30H15z",transform:"rotate(-90 16 16)"}),(0,a.jsx)("path",{d:"M16,13a1.001,1.001,0,0,1-.79-.386l-7-9A1,1,0,0,1,9,2H23a1,1,0,0,1,.79,1.614l-7,9A1.001,1.001,0,0,1,16,13ZM11.0444,4,16,10.3711,20.9556,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16H28A12,12,0,1,0,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,23V21H28V19H26v2H23V19H21v2H19v2h2v3H19v2h2v2h2V28h3v2h2V28h2V26H28V23Zm-4,3H23V23h3Z"}),(0,a.jsx)("path",{d:"M4.8305,20.3555A24.9534,24.9534,0,0,0,15,22.9644v-2A22.9014,22.9014,0,0,1,4.1335,17.6919,11.979,11.979,0,0,1,4,16a11.9847,11.9847,0,0,1,.1332-1.69,22.9282,22.9282,0,0,1,23.7336,0A11.9847,11.9847,0,0,1,28,16h2A14,14,0,1,0,16,30V28A12.01,12.01,0,0,1,4.8305,20.3555ZM16,4a12.01,12.01,0,0,1,11.17,7.6465,24.8982,24.8982,0,0,0-22.3406,0A12.01,12.01,0,0,1,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,25H20a2.0027,2.0027,0,0,1-2-2V20h2v3h8V9H20v3H18V9a2.0023,2.0023,0,0,1,2-2h8a2.0023,2.0023,0,0,1,2,2V23A2.0027,2.0027,0,0,1,28,25Z"}),(0,a.jsx)("path",{d:"M8 15H12V17H8z"}),(0,a.jsx)("path",{d:"M20 15H24V17H20z"}),(0,a.jsx)("path",{d:"M14 15H18V17H14z"}),(0,a.jsx)("path",{d:"M12,25H4a2.0023,2.0023,0,0,1-2-2V9A2.002,2.002,0,0,1,4,7h8a2.002,2.002,0,0,1,2,2v3H12V9H4V23h8V20h2v3A2.0023,2.0023,0,0,1,12,25Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,23.3818l-2-1V20a6.0046,6.0046,0,0,0-5-5.91V12H21v2.09A6.0046,6.0046,0,0,0,16,20v2.3818l-2,1V28h6v2h4V28h6ZM28,26H16V24.6182l2-1V20a4,4,0,0,1,8,0v3.6182l2,1Z"}),(0,a.jsx)("path",{d:"M28,6a2,2,0,0,0-2-2H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V6h4V8h2V6h8V8h2V6h4v6h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,12v2h1v4a3,3,0,0,1-6,0V14h1V12H20v6a5.0083,5.0083,0,0,0,4,4.8989V24a4,4,0,0,1-8,0V21.8157a3,3,0,1,0-2,0V24a6,6,0,0,0,12,0V22.8989A5.0083,5.0083,0,0,0,30,18V12ZM15,18a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,15,18Z"}),(0,a.jsx)("path",{d:"M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2l4,0V26L6,26V6h4V8h2V6h8V8h2V6h4v4h2V6A2,2,0,0,0,26,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.5,12c-5.2,0-9.5,4.3-9.5,9.5v.5H4V6h24v6h2v-6c0-1.1-.9-2-2-2H4c-1.1,0-2,.9-2,2v16c0,1.1.9,2,2,2h8.3c.4,1.5,1.2,2.9,2.2,4h-6.6v2h9.3c1.3.6,2.7,1,4.2,1,5.2,0,9.5-4.3,9.5-9.5s-4.3-9.5-9.5-9.5h0ZM21.5,29c-4.1,0-7.5-3.4-7.5-7.5s3.4-7.5,7.5-7.5,7.5,3.4,7.5,7.5-3.4,7.5-7.5,7.5ZM18.7,24.7l-1.4-1.4,2.3-2.3-2.3-2.3,1.4-1.4,3.7,3.7s-3.7,3.7-3.7,3.7ZM26,25h-4v-2h4v2Z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,10H6.78A11,11,0,0,1,27,16h2A13,13,0,0,0,6,7.68V4H4v8h8Z"}),(0,a.jsx)("path",{d:"M20,22h5.22A11,11,0,0,1,5,16H3a13,13,0,0,0,23,8.32V28h2V20H20Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6H26.1719l-3.586-3.5859L24,1l6,6-6,6-1.4141-1.4141L26.1719,8H6v7H4V8A2.0024,2.0024,0,0,1,6,6Z"}),(0,a.jsx)("path",{d:"M9.4141,20.4141,5.8281,24H26V17h2v7a2.0024,2.0024,0,0,1-2,2H5.8281L9.414,29.5859,8,31,2,25l6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,6H26.1719l-3.586-3.5859L24,1l6,6-6,6-1.4141-1.4141L26.1719,8H6v7H4V8A2.0024,2.0024,0,0,1,6,6Z"}),(0,a.jsx)("path",{d:"M9.4141,20.4141,5.8281,24H26V17h2v7a2.0024,2.0024,0,0,1-2,2H5.8281L9.414,29.5859,8,31,2,25l6-6Z"}),(0,a.jsx)("path",{d:"M17 19 17 11 15 11 15 12 13 12 13 14 15 14 15 19 13 19 13 21 19 21 19 19 17 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8h2V4a2.0021,2.0021,0,0,0-2-2H24V4h4Z"}),(0,a.jsx)("path",{d:"M17 2H21V4H17z"}),(0,a.jsx)("path",{d:"M28 11H30V15H28z"}),(0,a.jsx)("path",{d:"M28,18v4H24V10a2.0023,2.0023,0,0,0-2-2H10V4h4V2H10A2.0023,2.0023,0,0,0,8,4V8H4a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H22a2.0023,2.0023,0,0,0,2-2V24h4a2.0023,2.0023,0,0,0,2-2V18ZM22,28H4V10H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.88,30a1,1,0,0,1-.88-.5A15.19,15.19,0,0,0,15,22v6a1,1,0,0,1-.62.92,1,1,0,0,1-1.09-.21l-12-12a1,1,0,0,1,0-1.42l12-12a1,1,0,0,1,1.09-.21A1,1,0,0,1,15,4v6.11a17.19,17.19,0,0,1,15,17,16.34,16.34,0,0,1-.13,2,1,1,0,0,1-.79.86ZM14.5,20A17.62,17.62,0,0,1,28,26,15.31,15.31,0,0,0,13.91,12,1,1,0,0,1,13,11V6.41L3.41,16,13,25.59V21a1,1,0,0,1,1-1h.54Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,29a.9989.9989,0,0,1-.768-.36l-10-12a1,1,0,0,1,0-1.28l10-12A1,1,0,0,1,20,4v7.0325c7.0074.4629,11,5.86,11,14.9677a1,1,0,0,1-1.8.6c-2.8218-3.7623-5.3912-5.3463-9.2-5.5716V28a1,1,0,0,1-1,1ZM10.3016,16,18,25.238V20a1,1,0,0,1,1-1,12.7127,12.7127,0,0,1,9.8414,4.0909C28.0864,16.5553,24.6587,13,19,13a1,1,0,0,1-1-1V6.7618Z"}),(0,a.jsx)("path",{d:"M11.4639,28.9182,1.2318,16.64a1,1,0,0,1,0-1.28L11.4638,3.0792,13,4.36,3.3016,16,13,27.638Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V16h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H16v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5l1.4,1.4 l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V30h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8H30z M23,26 c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S24.7,26,23,26z"}),(0,a.jsx)("path",{d:"M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h10v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v5h2v-5 C30,8.9,29.1,8,28,8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.6 21.4 27.2 25 27.2 25 23.6 28.6 25 30 30 25 25 20z"}),(0,a.jsx)("path",{d:"M20.4 21.4 16.8 25 16.8 25 20.4 28.6 19 30 14 25 19 20z"}),(0,a.jsx)("path",{d:"M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h7v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 18H18V20H10z"}),(0,a.jsx)("path",{d:"M10 13H22V15H10z"}),(0,a.jsx)("path",{d:"M10 23H15V25H10z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 20H17V24H15z"}),(0,a.jsx)("path",{d:"M20 18H22V24H20z"}),(0,a.jsx)("path",{d:"M10 14H12V24H10z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,22v6H6V4H16V2H6A2,2,0,0,0,4,4V28a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V22Z"}),(0,a.jsx)("path",{d:"M29.54,5.76l-3.3-3.3a1.6,1.6,0,0,0-2.24,0l-14,14V22h5.53l14-14a1.6,1.6,0,0,0,0-2.24ZM14.7,20H12V17.3l9.44-9.45,2.71,2.71ZM25.56,9.15,22.85,6.44l2.27-2.27,2.71,2.71Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m17.1788,17.4959c0-2.8367,1.5301-4.6764,4.1606-4.6764,2.8025,0,4.0919,2.0631,4.0919,4.5217v.7221h-5.9658v.2235c0,1.2894.7392,2.1663,2.1834,2.1663,1.0833,0,1.7365-.5158,2.2867-1.2207l1.1863,1.3239c-.7392,1.0143-2.0459,1.6505-3.7137,1.6505-2.6475,0-4.2293-1.8397-4.2293-4.7109Zm2.2867-.9284v.1377h3.6791v-.1548c0-1.2379-.6362-2.0803-1.7709-2.0803-1.152,0-1.9083.8597-1.9083,2.0975Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m9.2694,22h-2.2693v-12h5.4154c2.1835,0,3.5416,1.4441,3.5416,3.7135,0,1.6504-.7565,2.9054-2.2349,3.4039l2.4584,4.8826h-2.5271l-2.2349-4.6247h-2.1492v4.6247Zm3.1215-6.533c.8769,0,1.4097-.4813,1.4097-1.3581v-.7909c0-.8769-.5328-1.341-1.4097-1.341h-2.9227v3.4899h2.9227Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,30H4c-1.1046,0-2-.8954-2-2V4c0-1.1046.8954-2,2-2h24c1.1046,0,2,.8954,2,2v24c0,1.1046-.8954,2-2,2Zm-24-2h24V4H4v24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m17.1788,17.4959c0-2.8367,1.5301-4.6764,4.1606-4.6764,2.8025,0,4.0919,2.0631,4.0919,4.5217v.7221h-5.9658v.2235c0,1.2894.7392,2.1663,2.1834,2.1663,1.0833,0,1.7365-.5158,2.2867-1.2207l1.1863,1.3239c-.7392,1.0143-2.0459,1.6505-3.7137,1.6505-2.6475,0-4.2293-1.8397-4.2293-4.7109Zm2.2867-.9284v.1377h3.6791v-.1548c0-1.2379-.6362-2.0803-1.7709-2.0803-1.152,0-1.9083.8597-1.9083,2.0975Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m9.2694,22h-2.2693v-12h5.4154c2.1835,0,3.5416,1.4441,3.5416,3.7135,0,1.6504-.7565,2.9054-2.2349,3.4039l2.4584,4.8826h-2.5271l-2.2349-4.6247h-2.1492v4.6247Zm3.1215-6.533c.8769,0,1.4097-.4813,1.4097-1.3581v-.7909c0-.8769-.5328-1.341-1.4097-1.341h-2.9227v3.4899h2.9227Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28A12,12,0,1,0,6,16v6.2L2.4,18.6,1,20l6,6,6-6-1.4-1.4L8,22.2V16H8A10,10,0,1,1,18,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,8H6.83l3.58-3.59L9,3,3,9l6,6,1.41-1.41L6.83,10H27V26H7V19H5v7a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V10A2,2,0,0,0,27,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,9c0,2.8-2.2,5-5,5s-5-2.2-5-5s2.2-5,5-5h3.1L9.3,5.8L10,6.5l3-3l-3-3L9.3,1.2L11.1,3H8C4.7,3,2,5.7,2,9s2.7,6,6,6 s6-2.7,6-6H13z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h6.1821l-3.5844,3.5854L20,13l6-6L20,1,18.5977,2.414,22.1851,6H16A12,12,0,1,0,28,18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9 2H11V12H9z"}),(0,a.jsx)("path",{d:"M14,11a4,4,0,0,1-8,0V2H4v9a6,6,0,0,0,5,5.91V30h2V16.91A6,6,0,0,0,16,11V2H14Z"}),(0,a.jsx)("path",{d:"M22,2H21V30h2V20h3a2,2,0,0,0,2-2V8A5.78,5.78,0,0,0,22,2Zm4,16H23V4.09c2.88.56,3,3.54,3,3.91Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,11.0005v-8a1,1,0,0,0-1-1H19a1,1,0,0,0-1,1v8A6.0039,6.0039,0,0,0,23,16.91V28H19v2H29V28H25V16.91A6.0039,6.0039,0,0,0,30,11.0005Zm-10,0V4h8v7.0005a4,4,0,1,1-8,0Z"}),(0,a.jsx)("path",{d:"M12,2v9.02a3.9644,3.9644,0,0,1-3.96,3.96A4.0052,4.0052,0,0,1,4,11.02V2H2v9.02a5.9888,5.9888,0,0,0,5,5.8652V30H9V16.8953A5.9646,5.9646,0,0,0,14,11.02V2Z"}),(0,a.jsx)("path",{d:"M7 2H9V11.98H7z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 23H22V25H14z"}),(0,a.jsx)("path",{d:"M10 23H12V25H10z"}),(0,a.jsx)("path",{d:"M14 18H22V20H14z"}),(0,a.jsx)("path",{d:"M10 18H12V20H10z"}),(0,a.jsx)("path",{d:"M14 13H22V15H14z"}),(0,a.jsx)("path",{d:"M10 13H12V15H10z"}),(0,a.jsx)("path",{d:"M25,5H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H25a2,2,0,0,0,2-2V7A2,2,0,0,0,25,5ZM12,4h8V8H12ZM25,28H7V7h3v3H22V7h3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.7,19.3l-3-3c-0.4-0.4-1-0.4-1.4,0L16,25.6V30h4.4l9.3-9.3C30.1,20.3,30.1,19.7,29.7,19.3z M19.6,28H18v-1.6l5-5l1.6,1.6 L19.6,28z M26,21.6L24.4,20l1.6-1.6l1.6,1.6L26,21.6z"}),(0,a.jsx)("path",{d:"M10 23H12V25H10z"}),(0,a.jsx)("path",{d:"M14 18H18V20H14z"}),(0,a.jsx)("path",{d:"M10 18H12V20H10z"}),(0,a.jsx)("path",{d:"M14 13H22V15H14z"}),(0,a.jsx)("path",{d:"M10 13H12V15H10z"}),(0,a.jsx)("path",{d:"M7,28V7h3v3h12V7h3v6h2V7c0-1.1-0.9-2-2-2h-3V4c0-1.1-0.9-2-2-2h-8c-1.1,0-2,0.9-2,2v1H7C5.9,5,5,5.9,5,7v21 c0,1.1,0.9,2,2,2h5v-2H7z M12,4h8v4h-8V4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"26",cy:"26",r:"4"}),(0,a.jsx)("path",{d:"M10 13H12V15H10z"}),(0,a.jsx)("path",{d:"M10 18H12V20H10z"}),(0,a.jsx)("path",{d:"M10 23H12V25H10z"}),(0,a.jsx)("path",{d:"M14 13H22V15H14z"}),(0,a.jsx)("path",{d:"M14 18H22V20H14z"}),(0,a.jsx)("path",{d:"M14 23H18V25H14z"}),(0,a.jsx)("path",{d:"M7,28V7h3v3H22V7h3V18h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2H18V28ZM12,4h8V8H12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 13H12V15H10z"}),(0,a.jsx)("path",{d:"M14 13H22V15H14z"}),(0,a.jsx)("path",{d:"M10 18H12V20H10z"}),(0,a.jsx)("path",{d:"M10 23H12V25H10z"}),(0,a.jsx)("path",{d:"M7,28V7h3v3H22V7h3v8h2V7a2,2,0,0,0-2-2H22V4a2,2,0,0,0-2-2H12a2,2,0,0,0-2,2V5H7A2,2,0,0,0,5,7V28a2,2,0,0,0,2,2h9V28ZM12,4h8V8H12Z"}),(0,a.jsx)("path",{d:"M18,19v2.4131A6.996,6.996,0,1,1,24,32V30a5,5,0,1,0-4.5762-7H22v2H16V19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.41 25 30 21.41 28.59 20 25 23.59 21.41 20 20 21.41 23.59 25 20 28.59 21.41 30 25 26.41 28.59 30 30 28.59 26.41 25z"}),(0,a.jsx)("path",{d:"M18,2A12.0351,12.0351,0,0,0,6,14v6.2L2.4,16.6,1,18l6,6,6-6-1.4-1.4L8,20.2V14a10,10,0,0,1,20,0v3h2V14A12.0351,12.0351,0,0,0,18,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m22,8v2c2.2061,0,4,1.7944,4,4s-1.7939,4-4,4h-12v-5l-6,6,6,6v-5h12c3.3086,0,6-2.6914,6-6s-2.6914-6-6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 8 17.912 11.703 22 12.297 19 15 20 19 16 16.75 12 19 13 15 10 12.297 14.2 11.703 16 8z"}),(0,a.jsx)("path",{d:"M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"}),(0,a.jsx)("path",{d:"M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z"}),(0,a.jsx)("path",{d:"M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"}),(0,a.jsx)("path",{d:"M19.64,22.13a2.81,2.81,0,0,1-1.28-.27,2.36,2.36,0,0,1-.89-.77A3.39,3.39,0,0,1,17,19.84a7.12,7.12,0,0,1-.17-1.68A7.24,7.24,0,0,1,17,16.48a3.46,3.46,0,0,1,.52-1.25,2.36,2.36,0,0,1,.89-.77,2.81,2.81,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.31,5.31,0,0,1,.7,2.93,5.31,5.31,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.64,22.13Zm0-1.22a1,1,0,0,0,1-.55,3.24,3.24,0,0,0,.3-1.51V17.47a3.17,3.17,0,0,0-.3-1.5,1.22,1.22,0,0,0-2.05,0,3.18,3.18,0,0,0-.29,1.5v1.38a3.25,3.25,0,0,0,.29,1.51A1,1,0,0,0,19.64,20.91Z"}),(0,a.jsx)("path",{d:"M12.62,17.42a1.46,1.46,0,0,0,1-.27.84.84,0,0,0,.31-.68v-.08a.94.94,0,0,0-.3-.74,1.2,1.2,0,0,0-.83-.27,1.65,1.65,0,0,0-.89.24,2.1,2.1,0,0,0-.68.68l-.93-.83a5.37,5.37,0,0,1,.44-.51,2.7,2.7,0,0,1,.54-.4,2.55,2.55,0,0,1,.7-.27,3.25,3.25,0,0,1,.87-.1,3.94,3.94,0,0,1,1.06.14,2.33,2.33,0,0,1,.82.4,1.91,1.91,0,0,1,.54.63,1.87,1.87,0,0,1,.18.83,2,2,0,0,1-.11.67,1.82,1.82,0,0,1-.32.52,1.79,1.79,0,0,1-.47.36,2.27,2.27,0,0,1-.57.2V18a2.34,2.34,0,0,1,.63.21,1.7,1.7,0,0,1,.51.38,1.89,1.89,0,0,1,.34.55,2.07,2.07,0,0,1,.12.73,2,2,0,0,1-.2.92,2,2,0,0,1-.58.72,2.66,2.66,0,0,1-.89.45,3.76,3.76,0,0,1-1.15.16,4.1,4.1,0,0,1-1-.11A3.1,3.1,0,0,1,11,21.7a2.76,2.76,0,0,1-.56-.45A4.22,4.22,0,0,1,10,20.7l1.07-.81a3.07,3.07,0,0,0,.28.42,1.94,1.94,0,0,0,.36.34,1.57,1.57,0,0,0,.45.22,2,2,0,0,0,.57.07,1.45,1.45,0,0,0,1-.3,1.12,1.12,0,0,0,.34-.85v-.08a1,1,0,0,0-.37-.8,1.78,1.78,0,0,0-1.06-.28h-.76V17.42Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4,18A12,12,0,1,0,16,6H12V1L6,7l6,6V8h4A10,10,0,1,1,6,18Z"}),(0,a.jsx)("path",{d:"M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20.5,16l2.5,5h-2l-1.5-3-1.5,3h-2l2.5-5-2.5-5h2l1.5,3,1.5-3h2l-2.5,5ZM32,11h-2l-1.5,3-1.5-3h-2l2.5,5-2.5,5h2l1.5-3,1.5,3h2l-2.5-5,2.5-5ZM14,12.9761v-1.9761h-6v9.9761h6v-2h-4v-2h2v-2h-2v-2s4,0,4,0ZM6,13v2c0,1-.7,1.8-1.6,2l1.6,4h-2l-1.6-4h-.4v4H0v-10h4c1.1,0,2,.9,2,2ZM4,13h-2v2h2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13 13H19V15H13z"}),(0,a.jsx)("path",{d:"M25.4409,8,24.1687,3.45A2.009,2.009,0,0,0,22.2456,2H9.7544A2.0089,2.0089,0,0,0,7.8313,3.4507L6.5315,8H4v2H6v7a2.0025,2.0025,0,0,0,2,2v3h2V19H22v3h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM9.7544,4H22.2458l1.4285,5H8.3257ZM24,13H22v2h2v2H8V15h2V13H8V11H24Z"}),(0,a.jsx)("path",{d:"M2 16H4V30H2z"}),(0,a.jsx)("path",{d:"M28 16H30V30H28z"}),(0,a.jsx)("path",{d:"M15 21H17V24H15z"}),(0,a.jsx)("path",{d:"M15 26H17V30H15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,31H14v-.228a3.0135,3.0135,0,0,0-1.9468-2.8091L8.5215,26.6384A3.9034,3.9034,0,0,1,6,23H8a1.8946,1.8946,0,0,0,1.2236,1.7659L12.7554,26.09A5.0226,5.0226,0,0,1,16,30.772Z"}),(0,a.jsx)("path",{d:"M30,31H28v-.228a3.0135,3.0135,0,0,0-1.9468-2.8091l-3.5317-1.3245A3.9034,3.9034,0,0,1,20,23h2a1.8946,1.8946,0,0,0,1.2236,1.7659L26.7554,26.09A5.0226,5.0226,0,0,1,30,30.772Z"}),(0,a.jsx)("path",{d:"M11 13H17V15H11z"}),(0,a.jsx)("path",{d:"M23.4409,8,22.1687,3.45A2.009,2.009,0,0,0,20.2456,2H7.7544A2.0089,2.0089,0,0,0,5.8313,3.4507L4.5315,8H2v2H4v7a2.0025,2.0025,0,0,0,2,2v2H8V19H20v2h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM7.7544,4H20.2458l1.4285,5H6.3257ZM22,13H20v2h2v2H6V15H8V13H6V11H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,30H4a2.0023,2.0023,0,0,1-2-2V24a2.0023,2.0023,0,0,1,2-2h8a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,12,30ZM4,24v4h8V24Z"}),(0,a.jsx)("path",{d:"M28,20H12a2.0023,2.0023,0,0,1-2-2V14a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2v4A2.0023,2.0023,0,0,1,28,20ZM12,14v4H28V14Z"}),(0,a.jsx)("path",{d:"M16,10H4A2.0023,2.0023,0,0,1,2,8V4A2.0023,2.0023,0,0,1,4,2H16a2.0023,2.0023,0,0,1,2,2V8A2.0023,2.0023,0,0,1,16,10ZM4,4V8H16V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6.34 19H17.65V21H6.34z",transform:"rotate(-45 11.995 20.002)"}),(0,a.jsx)("path",{d:"M17,30a1,1,0,0,1-.37-.07,1,1,0,0,1-.62-.79l-1-7,2-.28.75,5.27L21,24.52V17a1,1,0,0,1,.29-.71l4.07-4.07A8.94,8.94,0,0,0,28,5.86V4H26.14a8.94,8.94,0,0,0-6.36,2.64l-4.07,4.07A1,1,0,0,1,15,11H7.48L4.87,14.26l5.27.75-.28,2-7-1a1,1,0,0,1-.79-.62,1,1,0,0,1,.15-1l4-5A1,1,0,0,1,7,9h7.59l3.77-3.78A10.92,10.92,0,0,1,26.14,2H28a2,2,0,0,1,2,2V5.86a10.92,10.92,0,0,1-3.22,7.78L23,17.41V25a1,1,0,0,1-.38.78l-5,4A1,1,0,0,1,17,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17.91,26.82l.35,2a12.9,12.9,0,0,0,4.24-1.54l-1-1.73A10.88,10.88,0,0,1,17.91,26.82Z"}),(0,a.jsx)("path",{d:"M24.42,23.07,26,24.35a13,13,0,0,0,2.24-3.91l-1.87-.68A11,11,0,0,1,24.42,23.07Z"}),(0,a.jsx)("path",{d:"M9.5,27.25a12.9,12.9,0,0,0,4.24,1.54l.35-2a10.88,10.88,0,0,1-3.59-1.3Z"}),(0,a.jsx)("path",{d:"M5.67,19.76l-1.87.68A13,13,0,0,0,6,24.35l.32-.26,1.22-1h0a11,11,0,0,1-1.91-3.31Z"}),(0,a.jsx)("path",{d:"M29,16a12.85,12.85,0,0,0-.8-4.44l-1.87.68A11.18,11.18,0,0,1,27,16Z"}),(0,a.jsx)("path",{d:"M26,7.65a13,13,0,0,0-20,0V4H4v8h8V10H6.81A11,11,0,0,1,24.42,8.93Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14.0913,26.8235l-.3467,1.968a12.8956,12.8956,0,0,1-4.24-1.5418l1-1.7307A10.9086,10.9086,0,0,0,14.0913,26.8235Z"}),(0,a.jsx)("path",{d:"M7.5767,23.0682,6.0449,24.3533a12.9811,12.9811,0,0,1-2.25-3.9112l1.8775-.6834A10.9808,10.9808,0,0,0,7.5767,23.0682Z"}),(0,a.jsx)("path",{d:"M22.4951,27.25a12.8956,12.8956,0,0,1-4.24,1.5418l-.3467-1.968a10.9086,10.9086,0,0,0,3.5869-1.3045Z"}),(0,a.jsx)("path",{d:"M26.3271,19.7587l1.8775.6834a12.9811,12.9811,0,0,1-2.2495,3.9112l-.3115-.2614-1.22-1.0237h0a10.9822,10.9822,0,0,0,1.9038-3.3093Z"}),(0,a.jsx)("path",{d:"M13.6616,5.2559c-.1592.0346-.3144.08-.4712.1215-.2131.0562-.4258.1138-.6335.1822-.1643.0547-.325.1167-.4859.1782-.1926.0742-.3835.1509-.57.2349-.1611.0727-.3193.15-.4763.23q-.2677.1363-.5262.2867c-.153.0893-.3046.18-.4531.2758-.1679.1089-.3308.2242-.4922.3413-.1406.1026-.2817.2037-.417.3125-.1616.1294-.3156.2676-.47.4063-.1225.11-.2478.2168-.3652.332-.1668.1636-.3223.3379-.4785.5117A10.9438,10.9438,0,0,0,5,16H3A12.9363,12.9363,0,0,1,6.05,7.65l-.0047-.0039c.0918-.1094.197-.2061.2925-.3125.1841-.2051.3672-.41.5635-.603.1382-.1358.2856-.2613.43-.3907.1831-.1645.3657-.3286.5581-.4824.1592-.1279.3244-.2466.4895-.3667.1921-.14.3855-.2768.5854-.4062.1743-.1128.3523-.2188.5322-.3238q.3081-.1786.6253-.3408c.1846-.0942.37-.1846.56-.27.2224-.1.449-.1914.678-.2793.1894-.0723.3777-.1455.5713-.209.2463-.0815.498-.1494.7507-.2163.1848-.0493.3674-.1025.5554-.1431.29-.0634.5865-.1074.8833-.1508.159-.023.3145-.0552.4754-.0728A12.9331,12.9331,0,0,1,26,7.7031V4h2v8H20V10h5.1885A10.961,10.961,0,0,0,16,5a11.1114,11.1114,0,0,0-1.189.0669c-.1362.0146-.268.042-.4026.0615C14.1575,5.165,13.907,5.2026,13.6616,5.2559Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25.95,7.65l.0047-.0039c-.0918-.1094-.197-.2061-.2925-.3125-.1841-.2051-.3672-.41-.5635-.603-.1382-.1358-.2856-.2613-.43-.3907-.1831-.1645-.3657-.3286-.5581-.4824-.1592-.1279-.3244-.2466-.4895-.3667-.1921-.14-.3855-.2768-.5854-.4062-.1743-.1128-.3523-.2188-.5322-.3238q-.3081-.1786-.6253-.3408c-.1846-.0942-.37-.1846-.56-.27-.2224-.1-.449-.1914-.678-.2793-.1894-.0723-.3777-.1455-.5713-.209-.2463-.0815-.498-.1494-.7507-.2163-.1848-.0493-.3674-.1025-.5554-.1431-.29-.0634-.5865-.1074-.8833-.1508-.159-.023-.3145-.0552-.4754-.0728A12.9331,12.9331,0,0,0,6,7.7031V4H4v8h8V10H6.8115A10.961,10.961,0,0,1,16,5a11.1114,11.1114,0,0,1,1.189.0669c.1362.0146.268.042.4026.0615.2509.0366.5014.0742.7468.1275.1592.0346.3144.08.4712.1215.2131.0562.4258.1138.6335.1822.1643.0547.325.1167.4859.1782.1926.0742.3835.1509.5705.2349.1611.0727.3193.15.4763.23q.2677.1363.5262.2867c.153.0893.3046.18.4531.2758.1679.1089.3308.2242.4922.3413.1406.1026.2817.2037.417.3125.1616.1294.3156.2676.47.4063.1225.11.2478.2168.3652.332.1668.1636.3223.3379.4785.5117A10.9928,10.9928,0,1,1,5,16H3A13,13,0,1,0,25.95,7.65Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H16a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM16,16V28H28.0012L28,16Z"}),(0,a.jsx)("path",{d:"M15,2,13.59,3.41,16.17,6H11a7.0078,7.0078,0,0,0-7,7v5H6V13a5.0057,5.0057,0,0,1,5-5h5.17l-2.58,2.59L15,12l5-5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30H4a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,16,30ZM4,16V28H16.0012L16,16Z"}),(0,a.jsx)("path",{d:"M30,15l-1.41-1.41L26,16.17V11a7.0078,7.0078,0,0,0-7-7H14V6h5a5.0057,5.0057,0,0,1,5,5v5.17l-2.59-2.58L20,15l5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30H4a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,16,30Z"}),(0,a.jsx)("path",{d:"M30,15l-1.41-1.41L26,16.17V11a7.0078,7.0078,0,0,0-7-7H14V6h5a5.0057,5.0057,0,0,1,5,5v5.17l-2.59-2.58L20,15l5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H16a2.0023,2.0023,0,0,1-2-2V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30Z"}),(0,a.jsx)("path",{d:"M15,2,13.59,3.41,16.17,6H11a7.0078,7.0078,0,0,0-7,7v5H6V13a5.0057,5.0057,0,0,1,5-5h5.17l-2.58,2.59L15,12l5-5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,28V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,28ZM4,16,3.9988,28H16V16Z"}),(0,a.jsx)("path",{d:"M17,2l1.41,1.41L15.83,6H21a7.0078,7.0078,0,0,1,7,7v5H26V13a5.0057,5.0057,0,0,0-5-5H15.83l2.58,2.59L17,12,12,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,28V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H16A2.0023,2.0023,0,0,1,14,28Zm2-12-.0012,12H28V16Z"}),(0,a.jsx)("path",{d:"M2,15l1.41-1.41L6,16.17V11a7.0078,7.0078,0,0,1,7-7h5V6H13a5.0057,5.0057,0,0,0-5,5v5.17l2.59-2.58L12,15,7,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,28V16a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H16A2.0023,2.0023,0,0,1,14,28Z"}),(0,a.jsx)("path",{d:"M2,15l1.41-1.41L6,16.17V11a7.0078,7.0078,0,0,1,7-7h5V6H13a5.0057,5.0057,0,0,0-5,5v5.17l2.59-2.58L12,15,7,20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,28V16a2.0023,2.0023,0,0,1,2-2H16a2.0023,2.0023,0,0,1,2,2V28a2.0023,2.0023,0,0,1-2,2H4A2.0023,2.0023,0,0,1,2,28Z"}),(0,a.jsx)("path",{d:"M17,2l1.41,1.41L15.83,6H21a7.0078,7.0078,0,0,1,7,7v5H26V13a5.0057,5.0057,0,0,0-5-5H15.83l2.58,2.59L17,12,12,7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21 7 16 2 11 7 12.409 8.419 15 5.847 15 13 17 13 17 5.794 19.591 8.419 21 7z"}),(0,a.jsx)("path",{d:"M21 25 16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25z"}),(0,a.jsx)("path",{d:"M24 11 19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11z"}),(0,a.jsx)("path",{d:"M8 11 13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21 25 16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25z"}),(0,a.jsx)("path",{d:"M24 11 19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11z"}),(0,a.jsx)("path",{d:"M8 11 13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z"}),(0,a.jsx)("path",{d:"M12.4289,5.8227v1.63a1.1269,1.1269,0,0,1-.6767,1.026l-1.39.5967A1.1218,1.1218,0,0,1,9.14,8.8424L7.3208,7.0233a1.1165,1.1165,0,0,1,.0125-1.579l.0348-.0328c7.393-6.527,14.6913-2.0374,17.2127-.0473a1.1166,1.1166,0,0,1,.1746,1.5693,1.1011,1.1011,0,0,1-.0873.0971L22.9108,8.7878a1.1114,1.1114,0,0,1-1.2225.2329l-1.39-.5967a1.1112,1.1112,0,0,1-.68-1.0223v-1.63S15.9726,3.0648,12.4289,5.8227Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"13.5",r:"1.5"}),(0,a.jsx)("path",{d:"M19.5356,10.4648a5,5,0,0,0-7.0717,0L11.05,9.0508a6.9992,6.9992,0,0,1,9.9,0Z"}),(0,a.jsx)("path",{d:"M23.0713,6.929a10,10,0,0,0-14.1426,0L7.5146,5.5144a12.0011,12.0011,0,0,1,16.9708,0Z"}),(0,a.jsx)("path",{d:"M21 25 16 30 11 25 12.409 23.581 15 26.153 15 19 17 19 17 26.206 19.591 23.581 21 25z"}),(0,a.jsx)("path",{d:"M24 11 19 16 24 21 25.419 19.591 22.847 17 30 17 30 15 22.794 15 25.419 12.409 24 11z"}),(0,a.jsx)("path",{d:"M8 11 13 16 8 21 6.581 19.591 9.153 17 2 17 2 15 9.206 15 6.581 12.409 8 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 24H28V26H4z"}),(0,a.jsx)("path",{d:"M26,18H6V14H26v4m2,0V14a2,2,0,0,0-2-2H6a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2Z"}),(0,a.jsx)("path",{d:"M4 6H28V8H4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,20H6a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V22A2,2,0,0,0,26,20Zm0,6H6V22H26Z"}),(0,a.jsx)("path",{d:"M17 7.828 19.586 10.414 21 9 16 4 11 9 12.414 10.414 15 7.828 15 14 4 14 4 16 28 16 28 14 17 14 17 7.828z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,30H4a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2H24a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,24,30ZM4,22H3.9985L4,28H24V22Z"}),(0,a.jsx)("path",{d:"M30 3.41 28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z"}),(0,a.jsx)("path",{d:"M4,14V8H18V6H4A2.0023,2.0023,0,0,0,2,8v6a2.0023,2.0023,0,0,0,2,2H26V14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 18 15 18 15 24.172 12.414 21.586 11 23 16 28 21 23 19.586 21.586 17 24.172 17 18 28 18 28 16 4 16 4 18z"}),(0,a.jsx)("path",{d:"M26,4H6A2,2,0,0,0,4,6v4a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,6H6V6H26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,12H10a2.0021,2.0021,0,0,1-2-2V4a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,12ZM10,4v6H28V4Z"}),(0,a.jsx)("path",{d:"M28,30H10a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30ZM10,22v6H28V22Z"}),(0,a.jsx)("path",{d:"M9 16 3.414 10.414 2 11.828 6.172 16 2 20.172 3.414 21.586 9 16z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,18c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6C14,20.7,11.3,18,8,18z M8,28c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4 C12,26.2,10.2,28,8,28z"}),(0,a.jsx)("path",{d:"M30,24h-2C28,13,19,4,8,4V2C20.1,2,30,11.9,30,24z"}),(0,a.jsx)("path",{d:"M22,24h-2c0-6.6-5.4-12-12-12v-2C15.7,10,22,16.3,22,24z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10 16H22V18H10z"}),(0,a.jsx)("path",{d:"M10 10H22V12H10z"}),(0,a.jsx)("path",{d:"M16,30,9.8242,26.7071A10.9815,10.9815,0,0,1,4,17V4A2.0022,2.0022,0,0,1,6,2H26a2.0022,2.0022,0,0,1,2,2V17a10.9815,10.9815,0,0,1-5.8242,9.7069ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z"}),(0,a.jsx)("path",{d:"M8 16H18V18H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24l0,11h2L26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsxs)("switch",{children:[(0,a.jsx)("foreignObject",{width:"1",height:"1",x:"0",y:"0",requiredExtensions:"http://ns.adobe.com/AdobeIllustrator/10.0/"}),(0,a.jsxs)("g",{children:[(0,a.jsx)("path",{d:"M30,28.6l-2.8-2.8C27.7,25,28,24,28,23c0-2.8-2.2-5-5-5s-5,2.2-5,5s2.2,5,5,5c1,0,2-0.3,2.8-0.8l2.8,2.8 L30,28.6z M20,23c0-1.7,1.3-3,3-3s3,1.3,3,3s-1.3,3-3,3S20,24.7,20,23z"}),(0,a.jsx)("path",{d:"M8 16H18V18H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M14,27.7l-5.2-2.8C5.8,23.4,4,20.3,4,17V4h20v11h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7L14,30 V27.7z"})]})]}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.707,19.293l-3-3a.9994.9994,0,0,0-1.414,0L16,25.5859V30h4.4141l9.2929-9.293A.9994.9994,0,0,0,29.707,19.293ZM19.5859,28H18V26.4141l5-5L24.5859,23ZM26,21.5859,24.4141,20,26,18.4141,27.5859,20Z"}),(0,a.jsx)("path",{d:"M8 16H18V18H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L13,29.4668V27.2L8.7656,24.9424A8.9858,8.9858,0,0,1,4,17V4H24v9h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M9 16H23V18H9z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{fill:"none",d:"M9 10H23V12H9z"}),(0,a.jsx)("path",{d:"M26,2H6A2.0023,2.0023,0,0,0,4,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L16,30l6.1758-3.293A10.9814,10.9814,0,0,0,28,17V4A2.0023,2.0023,0,0,0,26,2ZM23,18H9V16H23Zm0-6H9V10H23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,22v-3c0-2.2-1.8-4-4-4s-4,1.8-4,4v3c-1.1,0-2,0.9-2,2v5c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-5C30,22.9,29.1,22,28,22z M22,19c0-1.1,0.9-2,2-2s2,0.9,2,2v3h-4V19z M20,29v-5h8v5H20z"}),(0,a.jsx)("path",{d:"M8 16H14V18H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M26,4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7l5.2,2.8v-2.3l-4.2-2.3C5.8,23.4,4,20.3,4,17V4h20v8h2V4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,16c-3.9,0-7,3.1-7,7s3.1,7,7,7s7-3.1,7-7S26.9,16,23,16z M23,28V18c2.8,0,5,2.2,5,5S25.8,28,23,28z"}),(0,a.jsx)("path",{d:"M8 16H14V18H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M26,4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v13c0,4.1,2.2,7.8,5.8,9.7l5.2,2.8v-2.3l-4.2-2.3C5.8,23.4,4,20.3,4,17V4h20v9h2V4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,30a7,7,0,1,1,7-7A7.0078,7.0078,0,0,1,23,30Zm0-12a5,5,0,1,0,5,5A5.0055,5.0055,0,0,0,23,18Z"}),(0,a.jsx)("path",{d:"M26 24.586 24 22.586 24 20 22 20 22 23.414 24.586 26 26 24.586z"}),(0,a.jsx)("path",{d:"M8 16H14V18H8z"}),(0,a.jsx)("path",{d:"M8 10H20V12H8z"}),(0,a.jsx)("path",{d:"M26,4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L13,29.4668V27.2L8.7656,24.9424A8.9858,8.9858,0,0,1,4,17V4H24v9h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,29.5829l-2.8325-2.8306c.5237-.7905.8325-1.7354.8325-2.7524,0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5c1.0171,0,1.9619-.3086,2.7524-.8325l2.8306,2.8325,1.417-1.417ZM21,23.9999c0-1.6543,1.3457-3,3-3s3,1.3457,3,3-1.3457,3-3,3-3-1.3457-3-3ZM28.42,6.9999H10.58c-.87,0-1.58.7-1.58,1.57v12.2201c0,3.19.27,6.12,3.11,7.62l4.89,2.59v-2.26l-3.95-2.09c-2.19-1.16-2.05-3.41-2.05-5.86v-11.7901h17v8.0001h2v-8.4301c0-.87-.71-1.57-1.58-1.57ZM21.42.9999H3.58c-.87,0-1.58.7-1.58,1.57v12.22c0,3.19.27,6.12,3.11,7.62l1.89,1v-2.2599l-.95-.5c-2.19-1.16-2.05-3.41-2.05-5.86V2.9999h17v2h2v-2.43c0-.87-.71-1.57-1.58-1.57ZM24,13h-11v-2h11v2ZM22,17h-9v-2h9v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,10H3a1,1,0,0,0-1,1V21a1,1,0,0,0,1,1H29a1,1,0,0,0,1-1V11A1,1,0,0,0,29,10ZM28,20H4V12H8v4h2V12h5v4h2V12h5v4h2V12h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29.41,21.67,10.34,2.58a2,2,0,0,0-2.83,0L2.59,7.51a2,2,0,0,0,0,2.82L21.66,29.42a2,2,0,0,0,1.42.58,2,2,0,0,0,1.41-.58l4.92-4.93A2,2,0,0,0,29.41,21.67ZM23.08,28,4,8.92,8.92,4l3.79,3.79L10.46,10l1.41,1.41L14.12,9.2l4.13,4.13L16,15.58,17.42,17l2.25-2.25,4.13,4.13-2.25,2.25L23,22.54l2.25-2.25L28,23.08Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,16a6,6,0,1,1-6,6,6,6,0,0,1,6-6m0-2a8,8,0,1,0,8,8,8,8,0,0,0-8-8Z"}),(0,a.jsx)("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2h4V26H6V12H28V6A2,2,0,0,0,26,4ZM6,10V6H26v4Z"}),(0,a.jsx)("path",{d:"M19 19 19 25 24 22 19 19z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9 19 9 25 14 22z"}),(0,a.jsx)("path",{d:"M11,16c3.3,0,6,2.7,6,6s-2.7,6-6,6s-6-2.7-6-6S7.7,16,11,16 M11,14c-4.4,0-8,3.6-8,8s3.6,8,8,8s8-3.6,8-8S15.4,14,11,14 L11,14z"}),(0,a.jsx)("path",{d:"M4,6v6h22v14h-4v2h4c1.1,0,2-0.9,2-2V6c0-1.1-0.9-2-2-2H6C4.9,4,4,4.9,4,6z M6,10V6h20v4H6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.48,14.1201L8.48,3.1201c-.1499-.0801-.3101-.1201-.48-.1201-.55,0-1,.4502-1,1v11h2V5.6899l16.9199,9.3101-7.04,3.8799,1.4702,1.4702,8.1299-4.4702c.1699-.0996.3-.23.3999-.3999.2603-.48.0901-1.0898-.3999-1.3599ZM13.9748,26.0001h2.0254v-2h-2v-1.5c0-.0276-.0037-.0542-.0042-.0818l2.7112-2.7112-1.4141-1.4141-1.8374,1.8374c-.8876-1.8481-2.7725-3.1304-4.9556-3.1304s-4.068,1.2822-4.9556,3.1304l-1.8374-1.8374-1.4141,1.4141,2.7112,2.7112c-.0005.0276-.0042.0542-.0042.0818v1.5H1.0002v2h2.0254c.0398.4397.1337.8632.2712,1.2671l-2.8513,1.9009,1.1094,1.6641,2.7219-1.8147c1.0098,1.2104,2.5278,1.9827,4.2234,1.9827s3.2136-.7722,4.2234-1.9827l2.7219,1.8147,1.1094-1.6641-2.8513-1.9009c.1376-.4039.2314-.8274.2712-1.2671ZM8.5002,19.0001c1.3909,0,2.585.8218,3.1489,2h-6.2979c.564-1.1782,1.7581-2,3.1489-2ZM8.5002,29.0001c-1.9297,0-3.5-1.5703-3.5-3.5v-2.5h7v2.5c0,1.9297-1.5703,3.5-3.5,3.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m21.707,20.293l-5-5c-.1951-.1953-.451-.293-.707-.293s-.512.0977-.707.293L2,28.5859l1.4143,1.4141,12.5857-12.5859,3.5857,3.5859-5.5857,5.5859,1.4143,1.4141,2.292-2.292,4.0007-4.001c.1953-.1953.293-.4512.293-.707s-.0977-.5117-.293-.707Z"}),(0,a.jsx)("path",{d:"m28.5859,9l-5.5859,5.5859-6.0012-6.0015c-.392-.3918-.9073-.5865-1.422-.5845-.5096.002-1.0185.1968-1.4063.5845l-6.1704,6.1753,1.4143,1.4141,6.1704-6.1748,6.7083,6.708c.1951.1953.4512.293.707.293s.512-.0977.707-.293l6.293-6.293-1.4141-1.4141Z"}),(0,a.jsx)("path",{d:"m22.5,9c-1.9299,0-3.5-1.5701-3.5-3.5s1.5701-3.5,3.5-3.5,3.5,1.5701,3.5,3.5-1.5701,3.5-3.5,3.5Zm0-5c-.8271,0-1.5.6729-1.5,1.5s.6729,1.5,1.5,1.5,1.5-.6729,1.5-1.5-.6729-1.5-1.5-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,23H12V21h6V17H14a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H14v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,18,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24 9 22 9 22 7 20 7 20 9 18 9 18 11 20 11 20 17 22 17 22 11 24 11 24 9z"}),(0,a.jsx)("path",{d:"M14,23H8V21h6V17H10a2,2,0,0,1-2-2V11a2,2,0,0,1,2-2h6v2H10v4h4a2,2,0,0,1,2,2v4A2,2,0,0,1,14,23Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.7808,26,25.97,21.2422A1,1,0,0,0,25,20H20V17h5a1,1,0,0,0,.9082-1.4189l-6-13a1.0006,1.0006,0,0,0-1.7021-.19L8.2075,15.3906A1,1,0,0,0,9,17h9v3H7a1,1,0,0,0-.97,1.2422L7.2192,26H2v2H30V26ZM20,7.5527,23.437,15H20ZM11.0308,15,18,5.94V15ZM22.7192,26H9.2808l-1-4H23.7192Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6.9692,25H9.0308l-.75-3H23.7192l-.75,3h2.0616l.9394-3.7578A1,1,0,0,0,25,20H20V17h5a1,1,0,0,0,.9082-1.4189l-6-13a1.0006,1.0006,0,0,0-1.7021-.19L8.2075,15.3906A1,1,0,0,0,9,17h9v3H7a1,1,0,0,0-.97,1.2422ZM20,7.5527,23.437,15H20ZM11.0308,15,18,5.94V15Z"}),(0,a.jsx)("path",{d:"M26.9058,25.751A2.998,2.998,0,0,1,24,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,20,25a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,16,28a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,12,25a.971.971,0,0,0-.9468.6787A3.44,3.44,0,0,1,8,28a2.998,2.998,0,0,1-2.9058-2.249l-1.9365.498A4.9965,4.9965,0,0,0,8,30a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,24,30a4.9965,4.9965,0,0,0,4.8423-3.751Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m30,6v-2h-3v-2h-2v2h-1c-1.1028,0-2,.8975-2,2v2c0,1.1025.8972,2,2,2h4v2h-6v2h3v2h2v-2h1c1.1028,0,2-.8975,2-2v-2c0-1.1025-.8972-2-2-2h-4v-2h6Z"}),(0,a.jsx)("path",{d:"m24,20v2h2.5859l-3.5857,3.5859-2.2917-2.293c-.1875-.1875-.4419-.293-.707-.293h-.0015c-.2651,0-.5183.1055-.7058.293l-5.2942,5.293,1.4143,1.4141,4.5867-4.5859,2.2917,2.293c.1875.1875.4419.293.7073.293.2651,0,.5195-.1055.707-.293l4.293-4.293v2.5859h2v-6h-6Z"}),(0,a.jsx)("path",{d:"m4,30h-2v-5c0-3.8599,3.1401-7,7-7h6c1.9885,0,3.8901.8502,5.217,2.3328l-1.4902,1.334c-.948-1.0592-2.3064-1.6667-3.7268-1.6667h-6c-2.7571,0-5,2.243-5,5v5Z"}),(0,a.jsx)("path",{d:"m12,16c3.866,0,7-3.134,7-7s-3.134-7-7-7-7,3.134-7,7,3.134,7,7,7Zm0-12c2.7615,0,5,2.2385,5,5s-2.2385,5-5,5-5-2.2385-5-5c.0032-2.7601,2.2399-4.9968,5-5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2V8.0439c-1.9634.1968-6.3162,1.2325-10.5637,6.2764-.198-.2768-.3982-.5464-.5882-.8506C11.9736,5.6714,6.3191,4.2759,4,4.042V2H2V30H4V26.0464a14.8661,14.8661,0,0,0,9.9185-3.96C18.47,27.46,25.2363,28.0381,27.9341,28.0381c.0244,0,.0422-.001.0659-.001V30h2V2Zm0,8.0552v9.99a12.8834,12.8834,0,0,1-9.2756-4.1328C22.5032,11.2666,26.2915,10.26,28,10.0552ZM15.1519,14.53c.3242.5185.663.9907,1.0078,1.4409-.3384.4741-.6753.9707-1.0078,1.5029a16.1346,16.1346,0,0,1-1.0313,1.4531c-.0825-.1372-.1675-.27-.2466-.4126C9.3279,10.3315,5.7871,8.4438,4,8.0684V6.0508C5.9932,6.2905,10.8228,7.6035,15.1519,14.53ZM4,24.0488V10.1406c1.3254.4644,4.2034,2.2847,8.126,9.3448.1894.3413.396.6523.6.9667A12.8784,12.8784,0,0,1,4,24.0488Zm11.3179-3.4209a18.0563,18.0563,0,0,0,1.53-2.0937c.2212-.354.4454-.67.6687-.9951A14.8686,14.8686,0,0,0,28,22.0425v3.9863C25.67,26.019,19.374,25.5088,15.3179,20.6279Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,2H2V16H8.1113a7.0359,7.0359,0,0,1,3.13.7393L15.7637,19l-4.522,2.2607A7.0359,7.0359,0,0,1,8.1113,22H2v8H9.2231a9.0446,9.0446,0,0,0,4.0249-.95L21.87,24.7393A7.0359,7.0359,0,0,1,25,24h5V14H25a7.0359,7.0359,0,0,1-3.13-.7393L15.3481,10H30ZM8,4H24V8H8ZM4,4H6V14H4ZM4,24H6v4H4Zm16.9751-1.05-8.6216,4.3105A7.0359,7.0359,0,0,1,9.2231,28H8V24h.1113a9.0446,9.0446,0,0,0,4.0249-.95L18,20.1182l1.8638.9316a9.0446,9.0446,0,0,0,4.0249.95H24v.0586A9.0515,9.0515,0,0,0,20.9751,22.95ZM28,22H26V16h2ZM12.3535,10.7393l8.6216,4.31A9.0515,9.0515,0,0,0,24,15.9414V20h-.1113a7.0359,7.0359,0,0,1-3.13-.7393l-8.6221-4.31A9.0446,9.0446,0,0,0,8.1113,14H8V10H9.2231A7.0359,7.0359,0,0,1,12.3535,10.7393ZM28,8H26V4h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,8h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157,2H4c-1.1046,0-2,.8954-2,2v12c0,1.1046.8954,2,2,2h1.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h4.1843c.2653,0,.5197-.1054.7073-.293l14-14c.6299-.6299.1836-1.707-.7073-1.707ZM20,8c.5522,0,1,.4478,1,1s-.4478,1-1,1-1-.4478-1-1,.4478-1,1-1ZM8,24c-.5522,0-1-.4478-1-1s.4478-1,1-1,1,.4478,1,1-.4478,1-1,1ZM14.5857,22h-3.77c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157,2h-1.1843v-12h13.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h3.77s-12,12-12,12Z"}),e)})},1660(e,t,r){r.d(t,{vd:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 26H26V28H20z"}),(0,a.jsx)("path",{d:"M20 18H28V20H20z"}),(0,a.jsx)("path",{d:"M20 10H30V12H20z"}),(0,a.jsx)("path",{d:"M15 4H17V28H15z"}),(0,a.jsx)("path",{d:"M10.586 3.959 7 7.249 3.412 3.958 2 5.373 7 10 12 5.373 10.586 3.959z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,28h-11c-1.103,0-2-.8975-2-2v-6c0-1.1025.897-2,2-2h11c1.1025,0,2,.8975,2,2v6c0,1.1025-.8975,2-2,2ZM17,20v6h11.002l-.002-6h-11ZM13,20H4V7h22v9h2V7c0-1.103-.8975-2-2-2H4c-1.103,0-2,.897-2,2v13c0,1.1025.897,2,2,2h9v-2ZM7.9999,15.9999v-3.586l4.293,4.293,1.414-1.414-4.293-4.293h3.586v-2h-7v7h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,18h11c1.1046,0,2,.8954,2,2v6c0,1.1046-.8954,2-2,2h-11c-1.1046,0-2-.8954-2-2v-6c0-1.1046.8954-2,2-2ZM8,16v-3.586s4.2931,4.293,4.2931,4.293l1.414-1.414-4.293-4.293h3.5859v-2h-7v7h2ZM13,22H4c-1.104-.0013-1.9987-.896-2-2V7c.0011-1.1041.8959-1.9989,2-2h22c1.104.0013,1.9987.896,2,2v9h-2V7H4v13h9v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.707,9.2931a.9992.9992,0,0,0-1.0234-.2417l-9,3a1.001,1.001,0,0,0-.6323.6323l-3,9a1,1,0,0,0,1.2651,1.2651l9-3a1.0013,1.0013,0,0,0,.6323-.6324l3-9A1,1,0,0,0,22.707,9.2931ZM11.5811,20.419l2.2094-6.6284L18.21,18.21Z"}),(0,a.jsx)("path",{d:"M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,12v2H3v-2H2v2l0,0c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1l0,0v-2H13z"}),(0,a.jsx)("path",{d:"M3 6 3.7 6.7 7.5 2.9 7.5 12 8.5 12 8.5 2.9 12.3 6.7 13 6 8 1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,24v4H6V24H4v4l.0076-.0049A1.9977,1.9977,0,0,0,6,30H26a2,2,0,0,0,2-2h0V24Z"}),(0,a.jsx)("path",{d:"M6 12 7.411 13.405 15 5.825 15 24 17 24 17 5.825 24.591 13.405 26 12 16 2 6 12z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30.8664,10.1602L25.8664,1.5001c-.2764-.479-.8896-.6431-1.3662-.3662l-7.5,4.3302v-1.464c0-.5522-.4473-1-1-1H4.0002c-.5527,0-1,.4478-1,1v24c0,.5522.4473,1,1,1h24c.5527,0,1-.4478,1-1v-12c0-.5522-.4473-1-1-1h-3.5164l6.0164-3.4736c.4785-.2764.6426-.8877.3662-1.3662ZM5.0002,5.0001h10v10H5.0002V5.0001ZM5.0002,17.0001h10v10H5.0002v-10ZM27.0002,27.0001h-10v-10h10v10ZM17.0002,15.0001v-4.8562l2.8038,4.8562h-2.8038ZM21.7062,14.294l-4-6.9277,6.9277-4,4,6.9277-6.9277,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 27H5V30H2z"}),(0,a.jsx)("path",{d:"M29.71,7.29l-5-5a1,1,0,0,0-1.41,0h0L20,5.59l-1.29-1.3L17.29,5.71,18.59,7,8.29,17.29A1,1,0,0,0,8,18v1.59l-2.71,2.7a1,1,0,0,0,0,1.41h0l3,3a1,1,0,0,0,1.41,0h0L12.41,24H14a1,1,0,0,0,.71-.29L25,13.41l1.29,1.3,1.42-1.42L26.41,12l3.3-3.29a1,1,0,0,0,0-1.41ZM13.59,22h-2L9,24.59,7.41,23,10,20.41v-2l10-10L23.59,12ZM25,10.59,21.41,7,24,4.41,27.59,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M9,20a8.13,8.13,0,0,0,14,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 4 26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M9,20a8.13,8.13,0,0,0,14,0Z"}),(0,a.jsx)("path",{d:"M27.82,14A12,12,0,1,1,16,4V2A14,14,0,1,0,30,16a14.71,14.71,0,0,0-.16-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8.11,8.11,0,0,1-7-4H23A8.11,8.11,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,22a6,6,0,0,1-5.14-2.92l-1.71,1a8,8,0,0,0,13.7,0l-1.71-1A6,6,0,0,1,16,22Z"}),(0,a.jsx)("path",{d:"M30 4 26 4 26 0 24 0 24 4 20 4 20 6 24 6 24 10 26 10 26 6 30 6 30 4z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M27.61,13A12.33,12.33,0,0,1,28,16,12,12,0,1,1,16,4V2A14,14,0,1,0,29.67,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,2a12,12,0,0,1,10.89,7H25a1,1,0,0,0-1-1H8a1,1,0,0,0-1,1H5.11A12,12,0,0,1,16,4Zm0,24A12,12,0,0,1,4,16a11.86,11.86,0,0,1,.4-3H7v2a2,2,0,0,0,2,2h3.31a2,2,0,0,0,2-1.67L14.83,12h2.34l.55,3.33a2,2,0,0,0,2,1.67H23a2,2,0,0,0,2-2V13h2.6a11.86,11.86,0,0,1,.4,3A12,12,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M16,19a8,8,0,0,0-6.85,3.89l1.71,1a6,6,0,0,1,10.28,0l1.71-1A8,8,0,0,0,16,19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9h0A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.54,11Zm9.64,12.92a6,6,0,0,0-10.28,0l-1.71-1a8,8,0,0,1,13.7,0ZM20.5,16a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M24.41 11 23 9.59 21 11.59 19 9.59 17.59 11 19.59 13 17.59 15 19 16.41 21 14.41 23 16.41 24.41 15 22.41 13 24.41 11z"}),(0,a.jsx)("path",{d:"M14.41 11 13 9.59 11 11.59 9 9.59 7.59 11 9.59 13 7.59 15 9 16.41 11 14.41 13 16.41 14.41 15 12.41 13 14.41 11z"}),(0,a.jsx)("path",{d:"M16,19a3,3,0,1,0,3,3,3,3,0,0,0-3-3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,16.41,7.59,15l2-2-2-2L9,9.59l2,2,2-2L14.41,11l-2,2,2,2L13,16.41l-2-2ZM16,25a3,3,0,1,1,3-3A3,3,0,0,1,16,25Zm8.41-10L23,16.41l-2-2-2,2L17.59,15l2-2-2-2L19,9.59l2,2,2-2L24.41,11l-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M30,16A14,14,0,1,0,8.8994,28.042l.0156.1562A1.993,1.993,0,0,0,10.9048,30h10.19a1.9929,1.9929,0,0,0,1.99-1.8008l.0156-.1572A13.9674,13.9674,0,0,0,30,16ZM16,4A11.99,11.99,0,0,1,27.97,15.397L22.7637,18H9.2363L4.0305,15.397A11.99,11.99,0,0,1,16,4ZM4.12,17.6777l3.94,1.97.5813,5.81A11.97,11.97,0,0,1,4.12,17.6777ZM21.0947,28H10.9053l-.8-8h11.79Zm2.2644-2.542.5811-5.81,3.94-1.97A11.9712,11.9712,0,0,1,23.3591,25.458Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.5,2.5,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M10 20H22V22H10z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM9,13.5A2.5,2.5,0,1,1,11.5,16,2.5,2.5,0,0,1,9,13.5ZM22,22H10V20H22Zm-1.5-6A2.5,2.5,0,1,1,23,13.5,2.5,2.5,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM11.5,16A2.5,2.5,0,1,1,14,13.5,2.48,2.48,0,0,1,11.5,16Zm9,0A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M11.5,11A2.5,2.5,0,1,0,14,13.5,2.48,2.48,0,0,0,11.5,11Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.48,2.48,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm-4.5,9A2.5,2.5,0,1,1,9,13.5,2.48,2.48,0,0,1,11.5,11ZM16,24a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8A2.5,2.5,0,1,1,23,13.5,2.48,2.48,0,0,1,20.5,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("path",{d:"M20.5,11A2.5,2.5,0,1,0,23,13.5,2.5,2.5,0,0,0,20.5,11Z"}),(0,a.jsx)("path",{d:"M8 13H14V15H8z"}),(0,a.jsx)("path",{d:"M16,24a8,8,0,0,0,6.85-3.89l-1.71-1a6,6,0,0,1-10.28,0l-1.71,1A8,8,0,0,0,16,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM8,13h6v2H8Zm8,11a8,8,0,0,1-6.85-3.89l1.71-1a6,6,0,0,0,10.28,0l1.71,1A8,8,0,0,1,16,24Zm4.5-8a2.5,2.5,0,0,1,0-5h0a2.5,2.5,0,0,1,0,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,28V9H24V4h2V2H20V4h2V9H19V28H15V16H12V11h2V9H8v2h2v5H7V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM13,28H9V18h4Zm8-17h4V28H21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.1,12.6l-0.6,0.8c0.6,0.5,1.3,0.9,2.1,1.2l0.3-0.9C5.3,13.4,4.7,13,4.1,12.6z"}),(0,a.jsx)("path",{d:"M2.1,9l-1,0.2c0.1,0.8,0.4,1.6,0.8,2.3L2.8,11C2.4,10.4,2.2,9.7,2.1,9z"}),(0,a.jsx)("path",{d:"M5.9,2.4L5.6,1.4C4.8,1.7,4.1,2.1,3.5,2.7l0.6,0.8C4.7,3,5.3,2.6,5.9,2.4z"}),(0,a.jsx)("path",{d:"M2.8,5L1.9,4.5C1.5,5.2,1.3,6,1.1,6.8l1,0.2C2.2,6.3,2.5,5.6,2.8,5z"}),(0,a.jsx)("path",{d:"M8,1v1c3.3,0,6,2.7,6,6s-2.7,6-6,6v1c3.9,0,7-3.1,7-7S11.9,1,8,1z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.24,25.14,7,26.67a13.79,13.79,0,0,0,4.18,2.44l.69-1.87A12,12,0,0,1,8.24,25.14Z"}),(0,a.jsx)("path",{d:"M4.19,18l-2,.41A14.09,14.09,0,0,0,3.86,23L5.59,22A12.44,12.44,0,0,1,4.19,18Z"}),(0,a.jsx)("path",{d:"M11.82,4.76l-.69-1.87A13.79,13.79,0,0,0,7,5.33L8.24,6.86A12,12,0,0,1,11.82,4.76Z"}),(0,a.jsx)("path",{d:"M5.59,10,3.86,9a14.37,14.37,0,0,0-1.64,4.59l2,.34A12.05,12.05,0,0,1,5.59,10Z"}),(0,a.jsx)("path",{d:"M16,2V4a12,12,0,0,1,0,24v2A14,14,0,0,0,16,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.45,6a5.47,5.47,0,0,1,3.91,1.64,5.7,5.7,0,0,1,0,8L16,26.13,5.64,15.64a5.7,5.7,0,0,1,0-8,5.48,5.48,0,0,1,7.82,0L16,10.24l2.53-2.58A5.44,5.44,0,0,1,22.45,6m0-2a7.47,7.47,0,0,0-5.34,2.24L16,7.36,14.89,6.24a7.49,7.49,0,0,0-10.68,0,7.72,7.72,0,0,0,0,10.82L16,29,27.79,17.06a7.72,7.72,0,0,0,0-10.82A7.49,7.49,0,0,0,22.45,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,4c-2,0-3.9,0.8-5.3,2.2L16,7.4l-1.1-1.1C12,3.3,7.2,3.3,4.3,6.2c0,0-0.1,0.1-0.1,0.1c-3,3-3,7.8,0,10.8L16,29 l11.8-11.9c3-3,3-7.8,0-10.8C26.4,4.8,24.5,4,22.5,4z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4.21,17.0615,16,29,27.79,17.0615a7.7313,7.7313,0,0,0,0-10.8232,7.494,7.494,0,0,0-10.6841,0L16,7.3643l-1.1062-1.126a7.494,7.494,0,0,0-10.6841,0A7.7313,7.7313,0,0,0,4.21,17.0615ZM26.3552,15.645,16,26.1255V10.23q1.2708-1.2876,2.5413-2.5742a5.4768,5.4768,0,0,1,7.8139,0A5.708,5.708,0,0,1,26.3552,15.645Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Zm-1-23.1716l6.1716,6.1716-6.1716,6.1716-6.1716-6.1716,6.1716-6.1716Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m14,28v-9l8-8L13,2,4,11l8,8v9c0,1.1045.8955,2,2,2h14v-2h-14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,18h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-5v-5c0-1.6543-1.3457-3-3-3h-4v-1c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v4c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-1h4c.5515,0,1,.4487,1,1v16c0,1.6543,1.3457,3,3,3h4v1c0,1.1045.8955,2,2,2h4c1.1045,0,2-.8955,2-2v-4c0-1.1045-.8955-2-2-2h-4c-1.1045,0-2,.8955-2,2v1h-4c-.5515,0-1-.4487-1-1v-9h5v1c0,1.1045.8955,2,2,2ZM24,12h4v4h-4v-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"17.5",cy:"22.5",r:"1.5",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"6.5",cy:"22.5",r:"1.5",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m13,28v-10h7c.3564,0,.686-.1899.8647-.498.0902-.1551.1353-.3285.1353-.502,0-.1711-.0441-.3424-.1318-.4961L12.8682,2.504c-.1919-.3359-.5301-.504-.8682-.504s-.6763.1681-.8682.504l-7.9999,13.9999c-.0878.1537-.1318.3249-.1318.4961,0,.1735.0451.3469.1353.502.1787.3081.5083.498.8647.498h7v10c0,1.1046.8954,2,2,2h15v-2h-15Zm-7.2769-12l6.2769-10.9844,6.2769,10.9844H5.7231Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M13,22c.8282,0,1.4788-.6792,1.4788-1.5078s-.6506-1.4922-1.4788-1.4922-1.5206.6636-1.5206,1.4922.6924,1.5078,1.5206,1.5078Z"}),(0,a.jsx)("path",{d:"M13,2C6.3722,2,1,7.3688,1,14s5.3662,12.0005,11.9941,12.0005c.3403,0,.7007-.02,1.0212-.0601v-2.0034c-.3405.0401-.6809.0601-1.0212.0601-5.5065,0-9.9941-4.4877-9.9941-9.9971S7.4935,4,13,4s10,4.4906,10,10h2c0-6.6312-5.3721-12-12-12Z"}),(0,a.jsx)("path",{d:"M13.9803,5.9914h-1.5018c-.592-.0013-1.1784.1143-1.7256.3404-.5472.2261-1.0444.5581-1.463.9769s-.7504.9163-.9764,1.4637c-.226.5475-.3416,1.1342-.3402,1.7265l.0267.5011h2l-.0243-.5011c0-.6642.2637-1.3011.7331-1.7707.4694-.4696,1.1061-.7335,1.7698-.7335h1.5018c.6639,0,1.3004.2639,1.7698.7335.4694.4696.733,1.1066.733,1.7707s-.2636,1.3011-.733,1.7707-1.1061.7335-1.7698.7335h-2.0024v4.5076h2.0024v-2.5042c1.1948,0,2.3408-.4749,3.1857-1.3203.8448-.8454,1.3195-1.9919,1.3195-3.1873s-.4748-2.342-1.3195-3.1873c-.8449-.8454-1.9909-1.3203-3.1857-1.3203h-.0001Z"}),(0,a.jsx)("path",{d:"M28.9976,16.9779h-10.0117c-1.1013,0-2.0024.9016-2.0024,2.0034v6.0102c0,1.1018.9011,2.0034,2.0024,2.0034h2.4028l1.702,3.0051,1.702-1.0017-2.3027-4.0068h-3.5041l.0141-5.9915h10v6h-3v2l2.9976-.0051c1.1013,0,2.0024-.9016,2.0024-2.0034v-6.0102c0-1.1018-.9011-2.0034-2.0024-2.0034Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,7,6,17l1.41,1.41L15,10.83V28H2v2H15a2,2,0,0,0,2-2V10.83l7.59,7.58L26,17Z"}),(0,a.jsx)("path",{d:"M6,8V4H26V8h2V4a2,2,0,0,0-2-2H6A2,2,0,0,0,4,4V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,13l-5,5,1.41,1.41L15,16.83V28H6v2h9a2,2,0,0,0,2-2V16.83l2.59,2.58L21,18Z"}),(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20H26v2h2v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),(0,a.jsx)("path",{d:"M22.707,7.293l-5-5A1,1,0,0,0,17,2H11A2.0023,2.0023,0,0,0,9,4V20a2.0023,2.0023,0,0,0,2,2H21a2.0023,2.0023,0,0,0,2-2V8A1,1,0,0,0,22.707,7.293ZM20.5857,8H17V4.4141ZM11,20V4h4V8a2.0023,2.0023,0,0,0,2,2h4V20Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,28H14a2,2,0,0,1-2-2V18.41L4.59,11A2,2,0,0,1,4,9.59V6A2,2,0,0,1,6,4H26a2,2,0,0,1,2,2V9.59A2,2,0,0,1,27.41,11L20,18.41V26A2,2,0,0,1,18,28ZM6,6V9.59l8,8V26h4V17.59l8-8V6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,6H4V9.17l7.41,7.42.59.58V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.59,10.59A2,2,0,0,1,2,9.17V6A2,2,0,0,1,4,4H26Z"}),(0,a.jsx)("path",{d:"M29.71,11.29l-3-3a1,1,0,0,0-1.42,0L16,17.59V22h4.41l9.3-9.29A1,1,0,0,0,29.71,11.29ZM19.59,20H18V18.41l5-5L24.59,15ZM26,13.59,24.41,12,26,10.41,27.59,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30 11.414 28.586 10 24 14.586 19.414 10 18 11.414 22.586 16 18 20.585 19.415 22 24 17.414 28.587 22 30 20.587 25.414 16 30 11.414z"}),(0,a.jsx)("path",{d:"M4,4A2,2,0,0,0,2,6V9.1709a2,2,0,0,0,.5859,1.4145L10,18v8a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2V24H16v2H12V17.1709l-.5859-.5855L4,9.1709V6H24V8h2V6a2,2,0,0,0-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,9A7.4522,7.4522,0,0,0,16,12.792V8H14v8h8V14H17.6167A5.4941,5.4941,0,1,1,22.5,22H22v2h.5a7.5,7.5,0,0,0,0-15Z"}),(0,a.jsx)("path",{d:"M26,6H4V9.171l7.4142,7.4143L12,17.171V26h4V24h2v2a2,2,0,0,1-2,2H12a2,2,0,0,1-2-2V18L2.5858,10.5853A2,2,0,0,1,2,9.171V6A2,2,0,0,1,4,4H26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 28H30V30H2z"}),(0,a.jsx)("path",{d:"M27,11a1,1,0,0,0,1-1V7a1,1,0,0,0-.66-.94l-11-4a1,1,0,0,0-.68,0l-11,4A1,1,0,0,0,4,7v3a1,1,0,0,0,1,1H6V24H4v2H28V24H26V11ZM6,7.7,16,4.06,26,7.7V9H6ZM18,24H14V11h4ZM8,11h4V24H8ZM24,24H20V11h4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,16h-2v2h-1c-1.1,0-2,.9-2,2v2c0,1.1.9,2,2,2h4v2h-6v2h3v2h2v-2h1c1.1,0,2-.9,2-2v-2c0-1.1-.9-2-2-2h-4v-2h6v-2h-3v-2ZM28,8h-6v-4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v4h-6c-1.1,0-2,.9-2,2v14c0,1.1.9,2,2,2h15v-2H4v-14h24v4h2v-4c0-1.1-.9-2-2-2ZM20,8h-8v-4h8v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,5.21a.77.77,0,0,1-.46-1.38A15.46,15.46,0,0,1,16,1c2.66,0,6.48.45,9.5,2.62a.77.77,0,0,1,.18,1.07.78.78,0,0,1-1.08.17A15,15,0,0,0,16,2.53,14,14,0,0,0,7.5,5.05.74.74,0,0,1,7,5.21Z"}),(0,a.jsx)("path",{d:"M28.23,12.26a.78.78,0,0,1-.63-.33C25.87,9.49,22.78,6.24,16,6.24a14,14,0,0,0-11.63,5.7.77.77,0,0,1-1.07.17A.76.76,0,0,1,3.15,11,15.54,15.54,0,0,1,16,4.71c5.61,0,9.81,2.08,12.84,6.34a.77.77,0,0,1-.19,1.07A.79.79,0,0,1,28.23,12.26Z"}),(0,a.jsx)("path",{d:"M12.28,31a.78.78,0,0,1-.72-.49.75.75,0,0,1,.44-1c4.37-1.68,7-5.12,7-9.21a2.8,2.8,0,0,0-3-3c-1.86,0-2.76,1-3,3.35a4.27,4.27,0,0,1-4.52,3.83,4.27,4.27,0,0,1-4.32-4.59A11.71,11.71,0,0,1,16,8.39a12,12,0,0,1,12,11.93,18.66,18.66,0,0,1-1.39,6.5.78.78,0,0,1-1,.41.76.76,0,0,1-.41-1,17.25,17.25,0,0,0,1.27-5.91A10.45,10.45,0,0,0,16,9.92a10.18,10.18,0,0,0-10.38,10,2.77,2.77,0,0,0,2.79,3.06,2.74,2.74,0,0,0,3-2.48c.36-3.11,1.89-4.69,4.56-4.69a4.31,4.31,0,0,1,4.52,4.56c0,4.74-3,8.72-8,10.63A.92.92,0,0,1,12.28,31Z"}),(0,a.jsx)("path",{d:"M19.77,30.28a.81.81,0,0,1-.52-.2.76.76,0,0,1,0-1.08,12.63,12.63,0,0,0,3.54-8.68c0-1.56-.48-6.65-6.7-6.65a6.83,6.83,0,0,0-4.94,1.87A6.17,6.17,0,0,0,9.32,20a.77.77,0,0,1-.77.76h0A.76.76,0,0,1,7.78,20,7.73,7.73,0,0,1,10,14.46a8.34,8.34,0,0,1,6-2.32c6.08,0,8.24,4.4,8.24,8.18A14.09,14.09,0,0,1,20.34,30,.75.75,0,0,1,19.77,30.28Z"}),(0,a.jsx)("path",{d:"M8.66,27.74a14.14,14.14,0,0,1-1.56-.09.76.76,0,1,1,.17-1.52c2.49.28,4.45-.16,5.84-1.32a6.37,6.37,0,0,0,2.12-4.53.75.75,0,0,1,.82-.71.78.78,0,0,1,.72.81A7.89,7.89,0,0,1,14.09,26,8.2,8.2,0,0,1,8.66,27.74Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.832,16.9688c-.2724-.6465-.5815-1.38-.8833-2.2852-.79-2.3682,1.7344-4.9522,1.7583-4.9766L24.293,8.293c-.1407.1406-3.4234,3.4775-2.2417,7.0234.3261.978.6513,1.749.938,2.43A9.3812,9.3812,0,0,1,24,22a6.24,6.24,0,0,1-4.1892,5.293,8.52,8.52,0,0,0-2.1038-8l-1.0444-1.0445-.5815,1.3575C14.2449,23.89,12.06,25.76,10.7747,26.54A5.8437,5.8437,0,0,1,8,22a9.6239,9.6239,0,0,1,.9287-3.6289A11.3329,11.3329,0,0,0,10,14V12.2217c.8735.36,2,1.3037,2,3.7783v2.6035l1.7432-1.9341c3.1118-3.4546,2.4624-7.5678,1.206-10.3081A4.4859,4.4859,0,0,1,18,11h2c0-5.5371-4.5786-7-7-7H11l1.1992,1.5986c.1377.1856,2.8628,3.9278,1.3535,7.688A4.9426,4.9426,0,0,0,9,10H8v4a9.6239,9.6239,0,0,1-.9287,3.6289A11.3329,11.3329,0,0,0,6,22c0,3.8477,3.8232,8,10,8s10-4.1523,10-8A11.3771,11.3771,0,0,0,24.832,16.9688ZM12.8352,27.5264a16.4987,16.4987,0,0,0,4.3665-5.5987,6.1053,6.1053,0,0,1,.2573,5.9717A11.3213,11.3213,0,0,1,16,28,10.3278,10.3278,0,0,1,12.8352,27.5264Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10.7838,26.539c.3496-.21.7598-.5,1.2197-.9102-.3901.3301-.7998.6301-1.2402.9001.0103,0,.0103.01.0205.01ZM24.8398,16.97c-.2803-.6499-.5898-1.3799-.8901-2.29-.5601-1.6799.5752-3.5372,1.2226-4.3427.1784-.222.3121-.3935.5332-.6305h0c-1.1064-1.1248-2.8092-1.4576-4.232-.7758-.5206.2494-1.0537.5443-1.5535.8891-.6104-4.5701-4.6802-5.8201-6.9199-5.8201h-2l1.1997,1.6001c.1401.1799,2.8701,3.9199,1.3599,7.6799-.96-2.53-3.2197-3.28-4.5596-3.28h-1v4c0,1.3101-.4502,2.4299-.9302,3.6301-.52,1.3101-1.0698,2.6799-1.0698,4.3699,0,1.9402.9697,3.95,2.7295,5.48.7202-.24,1.4004-.5598,2.0303-.95.4399-.27.8501-.5701,1.2402-.8999.1797-.1602.3696-.3301.54-.49.0195-.02.0396-.04.0596-.0601.2803-.3.5801-.6301.8901-1.01.2397-.29.46-.6001.6699-.9199.6499-.9402,1.3003-2.1101,1.9199-3.55l.5903-1.3501,1.04,1.04c.5195.52,1.1196,1.3301,1.5898,2.3401.0498.1199.1099.25.1602.3899.0298.0601.0498.1301.0801.2.3896,1.01.6196,2.1899.5396,3.4702,0,.0198,0,.0398-.0098.0498,0,.1301-.0103.27-.0298.4001,0,.05-.0103.0999-.0205.1499-.0195.1301-.04.25-.0698.3801.0103.0598-.0098.1099-.0298.1599-.0303.1299-.0601.27-.1001.4099,0,.02,0,.04-.0103.05-.25.8801-.6797,1.7-1.3096,2.4001-.0303.0298-.0503.0598-.0801.0798,4.7397-.9199,7.5801-4.46,7.5801-7.77,0-2.26-.54-3.55-1.1602-5.03Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,20.3972v3c-1,0-2-1.5-2-4v-3c-4,5-5,7-5,9A5.0008,5.0008,0,0,0,23.0458,30,7.5281,7.5281,0,0,1,25,26.3972,7.5281,7.5281,0,0,1,26.9542,30,5.0008,5.0008,0,0,0,30,25.3972C30,23.3972,28.875,21.8258,27,20.3972Z"}),(0,a.jsx)("path",{d:"M17,28H4V24H17V22H4a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H17Z"}),(0,a.jsx)("path",{d:"M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H17V18H7V14H28l.0011,2H30V14A2.0023,2.0023,0,0,0,28,12Z"}),(0,a.jsx)("path",{d:"M25,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H25a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,25,10ZM4,4V8H25V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,20V17a4,4,0,0,0-8,0v3a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V22A2.0023,2.0023,0,0,0,28,20Zm-6-3a2,2,0,0,1,4,0v3H22Zm6,11H20V22h8Z"}),(0,a.jsx)("path",{d:"M15,27H4a2,2,0,0,1-2-2V22a2,2,0,0,1,2-2H15v2H4v3H15Z"}),(0,a.jsx)("path",{d:"M17,18H8a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2H19v2H8v3h9Z"}),(0,a.jsx)("path",{d:"M22,9H4A2,2,0,0,1,2,7V4A2,2,0,0,1,4,2H22a2,2,0,0,1,2,2V7A2,2,0,0,1,22,9ZM4,7H22V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"24",cy:"7",r:"1"}),(0,a.jsx)("path",{d:"M26,2A16.0183,16.0183,0,0,0,10,18v2H3a1,1,0,0,0-.707,1.707l8,8A1,1,0,0,0,12,29V22h2A16.0183,16.0183,0,0,0,30,6V2ZM10,26.5857,5.4141,22H10ZM12,20V18a13.9394,13.9394,0,0,1,3.908-9.6777l7.77,7.7695A13.94,13.94,0,0,1,14,20ZM28,6a13.9163,13.9163,0,0,1-2.98,8.6055L17.3945,6.98A13.9163,13.9163,0,0,1,26,4h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,14a12.9845,12.9845,0,0,0-3.8286-9.2427L24.4143,3,23,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L22,24.5857,23.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,30,14Z"}),(0,a.jsx)("circle",{cx:"17",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M22,14a12.9845,12.9845,0,0,0-3.8286-9.2427L16.4143,3,15,4.4138l1.7573,1.7574a11.0713,11.0713,0,0,1,0,15.6572L14,24.5857,15.4143,26l2.7571-2.7573A12.9845,12.9845,0,0,0,22,14Z"}),(0,a.jsx)("circle",{cx:"25",cy:"11",r:"1"}),(0,a.jsx)("circle",{cx:"9",cy:"11",r:"1"}),(0,a.jsx)("path",{d:"M9.4141,24l.7573-.7573a13.0708,13.0708,0,0,0,0-18.4854L8,2.5857,5.8286,4.7571a13.0708,13.0708,0,0,0,0,18.4854L6.5859,24,2.293,28.2928A1,1,0,0,0,3,30H13a1,1,0,0,0,.707-1.707ZM4,14A10.9988,10.9988,0,0,1,7.2427,6.1712L8,5.4138l.7573.7574a11.0713,11.0713,0,0,1,0,15.6572L8,22.5857l-.7573-.7573A10.9988,10.9988,0,0,1,4,14ZM5.4141,28,8,25.4138,10.5859,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11 10 12.41 11.41 15 8.83 15 23.17 12.41 20.59 11 22 16 27 21 22 19.59 20.59 17 23.17 17 8.83 19.59 11.41 21 10 16 5 11 10z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 16 24 16 24 8 16 8 16 10 22 10 22 16z"}),(0,a.jsx)("path",{d:"M8 24 16 24 16 22 10 22 10 16 8 16 8 24z"}),(0,a.jsx)("path",{d:"M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22 11 20.59 12.41 23.17 15 8.83 15 11.41 12.41 10 11 5 16 10 21 11.41 19.59 8.83 17 23.17 17 20.59 19.59 22 21 27 16 22 11z"}),(0,a.jsx)("path",{d:"M28,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,30H4V2H28l-5.8,9L28,20H6ZM6,18H24.33L19.8,11l4.53-7H6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M6,30H4V2H28l-5.8,9L28,20H6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.7976,2,20.3555,8.6641A2.9941,2.9941,0,0,1,17.8594,10H12a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H17V28H13V19H11V13a1.0009,1.0009,0,0,1,1-1h5.8594a4.9881,4.9881,0,0,0,4.16-2.2266l4.4422-6.664Z"}),(0,a.jsx)("path",{d:"M11,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,11,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,13,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.13,6.89,11.8,4h8l-2,9H23l-2.49,3.25,1.43,1.43,3.87-5.07a1,1,0,0,0,.11-1A1,1,0,0,0,25,11H20.25L22,3.22a1,1,0,0,0-.2-.85A1,1,0,0,0,21,2H11a1,1,0,0,0-1,.77L9.46,5.22Z"}),(0,a.jsx)("path",{d:"M30,28.59l-9.31-9.31h0l-1.42-1.43h0L10.6,9.19h0L8.93,7.52h0L3.41,2,2,3.41,8.4,9.82,7,15.77A1,1,0,0,0,8,17h4.83L11,28.85a1,1,0,0,0,.6,1.07A1.09,1.09,0,0,0,12,30a1,1,0,0,0,.79-.39l6.68-8.73L28.59,30ZM9.26,15l.81-3.52L13.59,15Zm4.32,10.28L15,16.37,18,19.45Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,28.59,3.41,2,2,3.41,8.4,9.82,7,15.77A1,1,0,0,0,8,17h4.83L11,28.85a1,1,0,0,0,.6,1.07A1.09,1.09,0,0,0,12,30a1,1,0,0,0,.79-.39l6.68-8.73L28.59,30Z"}),(0,a.jsx)("path",{d:"M22.53,16.87l3.26-4.26a1,1,0,0,0,.11-1A1,1,0,0,0,25,11H20.25L22,3.22a1,1,0,0,0-.2-.85A1,1,0,0,0,21,2H11a1,1,0,0,0-1,.77l-.3,1.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,28a5.3257,5.3257,0,0,1-.6714-.044A21.7855,21.7855,0,0,1,12.0332,17H29.95c.0236-.3315.05-.6626.05-1A14,14,0,1,0,16,30ZM27.9492,15H21.9631A24.3247,24.3247,0,0,0,19.21,4.4492,12.0123,12.0123,0,0,1,27.9492,15ZM16.6714,4.0439A21.7855,21.7855,0,0,1,19.9668,15H12.0332A21.7855,21.7855,0,0,1,15.3286,4.0439,5.159,5.159,0,0,1,16.6714,4.0439ZM12.79,4.4492A24.3275,24.3275,0,0,0,10.0369,15H4.0508A12.0126,12.0126,0,0,1,12.79,4.4492ZM4.0508,17h5.9861A24.3275,24.3275,0,0,0,12.79,27.5508,12.0126,12.0126,0,0,1,4.0508,17Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,25l5,2V25l-5-2.5V20a1,1,0,0,0-2,0v2.5L18,25v2l5-2v3.5L21,30v1l3-1,3,1V30l-2-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M26,6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6V26a2,2,0,0,0,2,2h8V26H8V6H24v6h2Z"}),(0,a.jsx)("path",{d:"M10 18H16V20H10z"}),(0,a.jsx)("path",{d:"M10 14H22V16H10z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M22,10v2H10V10Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fillRule:"evenodd",d:"M25,23l5,2V23l-5-2.5V18a1,1,0,0,0-2,0v2.5L18,23v2l5-2v3.5L21,28v1l3-1,3,1V28l-2-1.5Z"}),(0,a.jsx)("path",{fillRule:"evenodd",d:"M26,4H22V2H20V4H12V2H10V4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H16V26H6V6h4V8h2V6h8V8h2V6h4v7h2V6A2,2,0,0,0,26,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,11a5.0083,5.0083,0,0,0-4.8989,4H11.8989a5,5,0,1,0,0,2h8.2022A5,5,0,1,0,25,11Zm0,8a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,19Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z"}),(0,a.jsx)("path",{d:"M28,13.63,29.7573,15,31,13.4282,16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6907,3.6907,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21H28Zm-6.0513,5.0532a1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.37,3.37,0,0,1-3.0021-2.19L6,12.0615l9.991-7.79L26,12.0718,26.0017,21H25A3.4376,3.4376,0,0,1,21.9487,18.6836Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,28a2.8828,2.8828,0,0,1-1-.1816v-.0059a3.7662,3.7662,0,0,1-2.0532-2.1338A.971.971,0,0,0,25,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,21,28a3.44,3.44,0,0,1-3.0532-2.3213A.9894.9894,0,0,0,17,25a1.007,1.007,0,0,0-.9487.6836A3.4376,3.4376,0,0,1,13,28a3.44,3.44,0,0,1-3.0532-2.3213,1,1,0,0,0-1.8955.0049A3.4376,3.4376,0,0,1,5,28H2v2H5a4.9316,4.9316,0,0,0,4-1.9873,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0,5.1433,5.1433,0,0,0,2.1379,1.62A4.8374,4.8374,0,0,0,29,30h1V28Z"}),(0,a.jsx)("path",{fill:"none",d:"M23.75,11h-1.5V7h1.5ZM23,12a1,1,0,1,0,1,1A1,1,0,0,0,23,12Z"}),(0,a.jsx)("path",{d:"M29.9115,14.9355,23.6284,3.3706a.7181.7181,0,0,0-1.2568,0L16.0885,14.9355A.72.72,0,0,0,16.72,16H29.28A.72.72,0,0,0,29.9115,14.9355ZM22.25,7h1.5v4h-1.5ZM23,14a1,1,0,1,1,1-1A1,1,0,0,1,23,14Z"}),(0,a.jsx)("path",{d:"M28,21V18H26v3H25a3.4376,3.4376,0,0,1-3.0513-2.3164,1,1,0,0,0-1.8955-.0049A3.44,3.44,0,0,1,17,21a3.4376,3.4376,0,0,1-3.0513-2.3164A1.007,1.007,0,0,0,13,18a.9894.9894,0,0,0-.9468.6787A3.44,3.44,0,0,1,9,21a3.3663,3.3663,0,0,1-3-2.1855v-6.753l10-7.79,2.5327,1.9756.9682-1.7818L16.6123,2.2139a1.0094,1.0094,0,0,0-1.2427,0L1,13.4194l1.2427,1.5718L4,13.6211v5.1875a3.6892,3.6892,0,0,1-2,2.0039V22.896a4.9958,4.9958,0,0,0,3-1.8833,5.0192,5.0192,0,0,0,8,0,5.0192,5.0192,0,0,0,8,0A4.9316,4.9316,0,0,0,25,23h5V21Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h15v-2c0-2.8,2.2-5,5-5v-2c-3.9,0-7,3.1-7,7h-3v-4h-2v4H4V4h8v14h2v-5h4v-2h-4V4 h14v7h-4v2h4v15h-4v2h4c1.1,0,2-0.9,2-2V4C30,2.9,29.1,2,28,2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.14V17a2,2,0,0,0-2-2H17V9.86a4,4,0,1,0-2,0V15H7a2,2,0,0,0-2,2v5.14a4,4,0,1,0,2,0V17H25v5.14a4,4,0,1,0,2,0ZM8,26a2,2,0,1,1-2-2A2,2,0,0,1,8,26ZM14,6a2,2,0,1,1,2,2A2,2,0,0,1,14,6ZM26,28a2,2,0,1,1,2-2A2,2,0,0,1,26,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,18H22a2.0023,2.0023,0,0,0-2,2v2H14.4141L10,17.5859V12h2a2.0023,2.0023,0,0,0,2-2V4a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,4v6a2.0023,2.0023,0,0,0,2,2H8v5.5859L3.293,22.293a.9994.9994,0,0,0,0,1.414l5,5a.9995.9995,0,0,0,1.414,0L14.4141,24H20v2a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V20A2.0023,2.0023,0,0,0,28,18ZM6,4h6v6H6ZM9,26.5859,5.4141,23,9,19.4141,12.5859,23ZM22,26V20h6v6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,23H11.86a4.17,4.17,0,0,0-.43-1L22,11.43A3.86,3.86,0,0,0,24,12a4,4,0,1,0-3.86-5H11.86a4,4,0,1,0,0,2h8.28a4.17,4.17,0,0,0,.43,1L10,20.57A3.86,3.86,0,0,0,8,20a4,4,0,1,0,3.86,5H20v3h8V20H20ZM8,10a2,2,0,1,1,2-2A2,2,0,0,1,8,10ZM24,6a2,2,0,1,1-2,2A2,2,0,0,1,24,6ZM8,26a2,2,0,1,1,2-2A2,2,0,0,1,8,26Zm14-4h4v4H22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,10H2V2h8ZM4,8H8V4H4Z"}),(0,a.jsx)("path",{d:"M30,30H22V22h8Zm-6-2h4V24H24Z"}),(0,a.jsx)("path",{d:"M20,27H8A6,6,0,0,1,8,15v2a4,4,0,0,0,0,8H20Z"}),(0,a.jsx)("path",{d:"M24,17V15a4,4,0,0,0,0-8H12V5H24a6,6,0,0,1,0,12Z"}),(0,a.jsx)("path",{d:"M19,11H13l-3,4,6,6,6-6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,30H22V22h8Zm-6-2h4V24H24Z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M19,11H13l-3,4,6,6,6-6Z"}),(0,a.jsx)("path",{d:"M24,17V15a4,4,0,0,0,0-8H12V5H24a6,6,0,0,1,0,12Z"}),(0,a.jsx)("path",{d:"M10,10H2V2h8ZM4,8H8V4H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,23h-8.1c0-.4-.2-.7-.4-1l10.5-10.5c.6.4,1.3.6,2,.6,2.2,0,4-1.8,4-4s-1.8-4-4-4-3.4,1.3-3.9,3h-7.1v2h7.1c0,.4.2.7.4,1l-10.5,10.5c-.6-.4-1.3-.6-2-.6-2.2,0-4,1.8-4,4s1.8,4,4,4,3.4-1.3,3.9-3h8.1v3h8v-8h-8v3ZM24,6c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM8,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM22,22h4v4h-4v-4ZM4,12V4l7,4-7,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H11.8625a4.13,4.13,0,0,0-.4284-1.02L21.98,12.4343A3.9943,3.9943,0,1,0,20.1414,8H14v2h6.1414a3.96,3.96,0,0,0,.4243,1.02L10.02,21.5656A3.9943,3.9943,0,1,0,11.8587,26H20v3h8V21H20ZM24,7a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,24,7ZM8,27a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,27Zm14-4h4v4H22Z"}),(0,a.jsx)("path",{d:"M9.6929,12.7505a5,5,0,0,1-.0005-7.5L11.0166,6.75a3,3,0,0,0-.0005,4.501Z"}),(0,a.jsx)("path",{d:"M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,24H16v2h4v3h8V21H20Zm2-1h4v4H22Z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M24,5a3.9962,3.9962,0,0,0-3.8579,3H14v2h6.1421a3.94,3.94,0,0,0,.4248,1.019L14,17.5862,15.4138,19l6.5672-6.5669A3.9521,3.9521,0,0,0,24,13a4,4,0,0,0,0-8Zm0,6a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,11Z"}),(0,a.jsx)("path",{d:"M9.6929,12.7505a5,5,0,0,1-.0005-7.5L11.0166,6.75a3,3,0,0,0-.0005,4.501Z"}),(0,a.jsx)("path",{d:"M7.0474,15.751a9,9,0,0,1,0-13.501l1.3232,1.5a7,7,0,0,0,0,10.501Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 19H30V21H18z"}),(0,a.jsx)("path",{d:"M18 23H30V25H18z"}),(0,a.jsx)("path",{d:"M18 27H26V29H18z"}),(0,a.jsx)("path",{d:"M24,4a3.9962,3.9962,0,0,0-3.8579,3H12V4H4v8h8V9h8.1421a3.94,3.94,0,0,0,.4248,1.019L10.019,20.5669A3.9521,3.9521,0,0,0,8,20a4,4,0,1,0,3.8579,5H16V23H11.8579a3.94,3.94,0,0,0-.4248-1.019L21.981,11.4331A3.9521,3.9521,0,0,0,24,12a4,4,0,0,0,0-8ZM10,10H6V6h4ZM8,26a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,8,26ZM24,10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,24,10Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24.8008,11.1382a8.9938,8.9938,0,0,0-17.6006,0A6.533,6.533,0,0,0,2,17.5H2V19a1,1,0,0,0,1,1H15a1,1,0,0,0,0-2H4v-.4966H4a4.5176,4.5176,0,0,1,4.144-4.4819l.8155-.064.0991-.812a6.9936,6.9936,0,0,1,13.8838,0l.0986.812.8154.064A4.4962,4.4962,0,0,1,23.5,22H7a1,1,0,0,0,0,2H23.5a6.4963,6.4963,0,0,0,1.3008-12.8618Z"}),(0,a.jsx)("rect",{width:"18",height:"2",x:"2",y:"26",rx:"1"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11.17,6l3.42,3.41.58.59H28V26H4V6h7.17m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26 30 24 26 24z"}),(0,a.jsx)("path",{d:"M28,8H16l-3.4-3.4C12.2,4.2,11.7,4,11.2,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h14v-2H4V6h7.2l3.4,3.4l0.6,0.6H28v8h2v-8 C30,8.9,29.1,8,28,8z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 20H30V22H16z"}),(0,a.jsx)("path",{d:"M16 24H30V26H16z"}),(0,a.jsx)("path",{d:"M16 28H23V30H16z"}),(0,a.jsx)("path",{d:"M14,26H4V6h7.17l3.42,3.41.58.59H28v8h2V10a2,2,0,0,0-2-2H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16 28H23V30H16z"}),(0,a.jsx)("path",{d:"M16 24H30V26H16z"}),(0,a.jsx)("path",{d:"M16 20H30V22H16z"}),(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28,8H16L12.5859,4.5859A2.0007,2.0007,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V18H4V6h7.1716l3.4141,3.4141L15.1716,10H28v8h2V10A2,2,0,0,0,28,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 13 16.59 14.41 19.17 17 10 17 10 19 19.17 19 16.59 21.59 18 23 23 18 18 13z"}),(0,a.jsx)("path",{d:"M11.1716,6l3.4142,3.4142L15.1716,10H28V26H4V6h7.1716m0-2H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2H16L12.5858,4.5858A2,2,0,0,0,11.1716,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H25.4141L30,3.4141,28.5859,2,2,28.5859,3.4141,30l2-2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Zm0,18H7.4141l16-16H28Z"}),(0,a.jsx)("path",{d:"M4,6h7.1716l3.4141,3.4141L15.1716,10H18V8H16L12.5859,4.5859A2.0007,2.0007,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V24H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H20.8284L17.4143,4.5859A2,2,0,0,0,16,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM8,26V14h8v6.17l-2.59-2.58L12,19l5,5,5-5-1.41-1.41L18,20.17V14a2.0025,2.0025,0,0,0-2-2H8a2.0025,2.0025,0,0,0-2,2V26H4V6H16l4,4h8v2H22v2h6V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H16L12.5857,4.5857A2,2,0,0,0,11.1716,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V16.83l2.59,2.58L22,18l-5-5-5,5,1.41,1.41L16,16.83V26H4V6h7.1716l4,4H28V26H22v2h6a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,8H16L12.59,4.59A2,2,0,0,0,11.17,4H4A2,2,0,0,0,2,6V26a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10A2,2,0,0,0,28,8ZM22,26H14V25a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm6,0H24V25a3,3,0,0,0-3-3H15a3,3,0,0,0-3,3v1H4V6h7.17l3.42,3.41.58.59H28Z"}),(0,a.jsx)("path",{d:"M14,17a4,4,0,1,0,4-4A4,4,0,0,0,14,17Zm4-2a2,2,0,1,1-2,2A2,2,0,0,1,18,15Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,15h11c.5523,0,1-.4478,1-1v-7c0-.5523-.4477-1-1-1h-5l-.72-1.45c-.1711-.3395-.5199-.5527-.9-.55h-4.38c-.5523,0-1,.4477-1,1v4H6V2h-2v22c0,1.1025.897,2,2,2h9v3c0,.5522.4477,1,1,1h11c.5523,0,1-.4478,1-1v-7c0-.5523-.4477-1-1-1h-5l-.72-1.45c-.1711-.3395-.5199-.5527-.9-.55h-4.38c-.5523,0-1,.4477-1,1v4H6v-13h9v3c0,.5522.4477,1,1,1ZM17,6h2.76l.45.89.55,1.11h5.24v5h-9v-7ZM17,21h2.76l.45.89.55,1.11h5.24v5h-9v-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,28H6a2.0021,2.0021,0,0,1-2-2V11A2.0021,2.0021,0,0,1,6,9h5.6665a2.0119,2.0119,0,0,1,1.2007.4L16.3335,12H26a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,26,28ZM11.6665,11H5.9985L6,26H26V14H15.6665Z"}),(0,a.jsx)("path",{d:"M28,9H17.6665l-4-3H6V4h7.6665a2.0119,2.0119,0,0,1,1.2007.4L18.3335,7H28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7,7h3v3h12v-3h3v8h2V7c0-1.1001-.9-2-2-2h-3v-1c0-1.1001-.9-2-2-2h-8c-1.1,0-2,.8999-2,2v1h-3c-1.1,0-2,.8999-2,2v21c0,1.1001.9,2,2,2h4v-2h-4V7ZM12,4h8v4h-8v-4ZM24.4141,18l-1.4141,1.4141,2.5859,2.5859h-7.5859c-2.2061,0-4,1.7944-4,4s1.7939,4,4,4h2v-2h-2c-1.1025,0-2-.897-2-2s.8975-2,2-2h7.5859l-2.5859,2.5859,1.4141,1.4141,5-5-5-5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23h7v7h-2v-3.3516c-1.6448,2.0405-4.1526,3.3516-7.0002,3.3516h-9.9998c-5,0-9-4-9-9v-8h2v8c0,3.8999,3.1001,7,7,7h10c2.4033,0,4.4941-1.1841,5.7517-3h-3.7517v-2ZM21,2h-9.9998c-2.8477,0-5.3555,1.311-7.0002,3.3516v-3.3516h-2v7h7v-2h-3.7517c1.2576-1.8159,3.3484-3,5.7517-3h10c3.8999,0,7,3.1001,7,7v8h2v-8c0-5-4-9-9-9ZM20.7212,12.0117v-2.0117h-7.7212v12h2.27v-5.0732h4.7461v-2.0117h-4.7461v-2.9033h5.4512Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("circle",{cx:"14.5",cy:"23.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"11.5",cy:"19.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"17.5",cy:"19.5",r:"1.5"}),(0,a.jsx)("path",{d:"M12.964 14.5H18.036V16.499H12.964z",transform:"rotate(-45 15.5 15.5)"}),(0,a.jsx)("path",{d:"M18.964 14.5H24.035999999999998V16.499H18.964z",transform:"rotate(-45 21.5 15.5)"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8.964 13.5H14.036000000000001V15.499H8.964z",transform:"rotate(-45 11.5 14.5)"}),(0,a.jsx)("path",{d:"M15.379 14.5H17.622V16.499H15.379z",transform:"rotate(-44.995 16.5 15.5)"}),(0,a.jsx)("circle",{cx:"10.5",cy:"22.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"7.5",cy:"18.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"13.5",cy:"18.5",r:"1.5"}),(0,a.jsx)("path",{d:"M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z"}),(0,a.jsx)("path",{d:"M20,20H16v2h4v2H17v2h3v2H16v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,20,20Z"}),(0,a.jsx)("path",{d:"M28,30H26a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15.67 24 13.934 23 16.221 19 12.332 19 16.325 12 18.062 13 15.778 17 19.668 17 15.67 24z"}),(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,28A10,10,0,0,1,14,8h4v5l6-6L18,1V6H14a12,12,0,0,0,0,24Z"}),(0,a.jsx)("path",{d:"M11.67 24 9.934 23 12.221 19 8.332 19 12.325 12 14.062 13 11.778 17 15.668 17 11.67 24z"}),(0,a.jsx)("path",{d:"M20,20H16v2h4v2H17v2h3v2H16v2h4a2.0027,2.0027,0,0,0,2-2V22A2.0023,2.0023,0,0,0,20,20Z"}),(0,a.jsx)("path",{d:"M28,30H26a2.0021,2.0021,0,0,1-2-2V22a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,28,30Zm-2-8v6h2V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m20,6c0,1.8584,1.2798,3.4106,3,3.8579v5.1421h-14v-5.1421c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4c0,1.8584,1.2798,3.4106,3,3.8579v5.1421c0,1.103.897,2,2,2h6v5.1421c-1.7202.4473-3,1.9995-3,3.8579,0,2.2056,1.7944,4,4,4s4-1.7944,4-4c0-1.8584-1.2798-3.4106-3-3.8579v-5.1421h6c1.103,0,2-.897,2-2v-5.1421c1.7202-.4473,3-1.9995,3-3.8579,0-2.2056-1.7944-4-4-4s-4,1.7944-4,4Zm-14,0c0-1.103.897-2,2-2s2,.897,2,2c0,1.103-.897,2-2,2s-2-.897-2-2Zm12,20c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2ZM26,6c0,1.103-.897,2-2,2s-2-.897-2-2c0-1.103.897-2,2-2s2,.897,2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M26 21H30V23H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M26 9H30V11H26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M24 11 24 9 20 9 20 4 14 4 14 28 20 28 20 23 24 23 24 21 20 21 20 11 24 11z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10.1719 15 2 15 2 17 10.1719 17 7.5859 19.5859 9 21 14 16 9 11 7.5859 12.4141 10.1719 15z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H8C6.8,6,6,6.8,6,8v14c0,1.2,0.8,2,2,2h8v-2H8V8h20v14h-7.2L16,28.8l1.6,1.2l4.2-6H28c1.2,0,2-0.8,2-2V8 C30,6.8,29.2,6,28,6z"}),(0,a.jsx)("path",{d:"M4,18H2V5c0-1.7,1.3-3,3-3h13v2H5C4.4,4,4,4.4,4,5V18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M19.63,22.13a2.84,2.84,0,0,1-1.28-.27,2.44,2.44,0,0,1-.89-.77,3.57,3.57,0,0,1-.52-1.25,7.69,7.69,0,0,1-.17-1.68,7.83,7.83,0,0,1,.17-1.68,3.65,3.65,0,0,1,.52-1.25,2.44,2.44,0,0,1,.89-.77,2.84,2.84,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.23,5.23,0,0,1,.7,2.93,5.23,5.23,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.63,22.13Zm0-1.22a1.07,1.07,0,0,0,1-.55A3.38,3.38,0,0,0,21,18.85V17.47a3.31,3.31,0,0,0-.29-1.5,1.23,1.23,0,0,0-2.06,0,3.31,3.31,0,0,0-.29,1.5v1.38a3.38,3.38,0,0,0,.29,1.51A1.06,1.06,0,0,0,19.63,20.91Z"}),(0,a.jsx)("path",{d:"M10.63,22V20.82h2V15.63l-1.86,1-.55-1.06,2.32-1.3H14v6.5h1.78V22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M19.64,22.13a2.81,2.81,0,0,1-1.28-.27,2.36,2.36,0,0,1-.89-.77A3.39,3.39,0,0,1,17,19.84a7.12,7.12,0,0,1-.17-1.68A7.24,7.24,0,0,1,17,16.48a3.46,3.46,0,0,1,.52-1.25,2.36,2.36,0,0,1,.89-.77,2.81,2.81,0,0,1,1.28-.27,2.44,2.44,0,0,1,2.16,1,5.31,5.31,0,0,1,.7,2.93,5.31,5.31,0,0,1-.7,2.93A2.44,2.44,0,0,1,19.64,22.13Zm0-1.22a1,1,0,0,0,1-.55,3.24,3.24,0,0,0,.3-1.51V17.47a3.17,3.17,0,0,0-.3-1.5,1.22,1.22,0,0,0-2.05,0,3.18,3.18,0,0,0-.29,1.5v1.38a3.25,3.25,0,0,0,.29,1.51A1,1,0,0,0,19.64,20.91Z"}),(0,a.jsx)("path",{d:"M12.62,17.42a1.46,1.46,0,0,0,1-.27.84.84,0,0,0,.31-.68v-.08a.94.94,0,0,0-.3-.74,1.2,1.2,0,0,0-.83-.27,1.65,1.65,0,0,0-.89.24,2.1,2.1,0,0,0-.68.68l-.93-.83a5.37,5.37,0,0,1,.44-.51,2.7,2.7,0,0,1,.54-.4,2.55,2.55,0,0,1,.7-.27,3.25,3.25,0,0,1,.87-.1,3.94,3.94,0,0,1,1.06.14,2.33,2.33,0,0,1,.82.4,1.91,1.91,0,0,1,.54.63,1.87,1.87,0,0,1,.18.83,2,2,0,0,1-.11.67,1.82,1.82,0,0,1-.32.52,1.79,1.79,0,0,1-.47.36,2.27,2.27,0,0,1-.57.2V18a2.34,2.34,0,0,1,.63.21,1.7,1.7,0,0,1,.51.38,1.89,1.89,0,0,1,.34.55,2.07,2.07,0,0,1,.12.73,2,2,0,0,1-.2.92,2,2,0,0,1-.58.72,2.66,2.66,0,0,1-.89.45,3.76,3.76,0,0,1-1.15.16,4.1,4.1,0,0,1-1-.11A3.1,3.1,0,0,1,11,21.7a2.76,2.76,0,0,1-.56-.45A4.22,4.22,0,0,1,10,20.7l1.07-.81a3.07,3.07,0,0,0,.28.42,1.94,1.94,0,0,0,.36.34,1.57,1.57,0,0,0,.45.22,2,2,0,0,0,.57.07,1.45,1.45,0,0,0,1-.3,1.12,1.12,0,0,0,.34-.85v-.08a1,1,0,0,0-.37-.8,1.78,1.78,0,0,0-1.06-.28h-.76V17.42Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,18A10,10,0,1,1,16,8h4v5l6-6L20,1V6H16A12,12,0,1,0,28,18Z"}),(0,a.jsx)("path",{d:"M18.58,15.58H15.13L15,18.15H15a4.83,4.83,0,0,1,.26-.45,1.59,1.59,0,0,1,.33-.35,1.53,1.53,0,0,1,.44-.23,2,2,0,0,1,.6-.08,2.54,2.54,0,0,1,.92.16,2.06,2.06,0,0,1,.74.48,2.28,2.28,0,0,1,.5.77,2.73,2.73,0,0,1,.18,1,2.87,2.87,0,0,1-.19,1.07,2.36,2.36,0,0,1-.55.84,2.44,2.44,0,0,1-.89.55,3.23,3.23,0,0,1-1.21.2,3.79,3.79,0,0,1-.94-.11,3,3,0,0,1-.74-.32,2.45,2.45,0,0,1-.55-.45,4.13,4.13,0,0,1-.41-.55l1.06-.81.27.41a1.82,1.82,0,0,0,.34.34,1.59,1.59,0,0,0,.43.22,1.52,1.52,0,0,0,.55.08,1.29,1.29,0,0,0,1-.36,1.41,1.41,0,0,0,.33-1V19.5a1.18,1.18,0,0,0-1.28-1.27,1.44,1.44,0,0,0-.77.18,1.94,1.94,0,0,0-.48.39l-1.19-.17.29-4.31h4.52Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,12V6H21v6a5,5,0,0,1-10,0V4h5.5859L14.293,6.293a.9994.9994,0,0,0,0,1.414L15.5859,9,13.293,11.293l1.414,1.414,3-3a.9994.9994,0,0,0,0-1.414L16.4141,7,19.707,3.707A1,1,0,0,0,19,2H10A1,1,0,0,0,9,3v9a7.0053,7.0053,0,0,0,6,6.92V28H10v2H22V28H17V18.92A7.0053,7.0053,0,0,0,23,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,30c-2.4146,0-4.4348-1.7206-4.8997-4h-5.1003c-1.1028,0-2-.8972-2-2v-5h1c1.6543,0,3-1.3458,3-3s-1.3457-3-3-3h-1v-5c0-1.1028.8972-2,2-2h5.1003c.4648-2.2794,2.4851-4,4.8997-4s4.4348,1.7206,4.8997,4h5.1003c1.1028,0,2,.8972,2,2v5h-1c-1.6543,0-3,1.3458-3,3s1.3457,3,3,3h1v5c0,1.1028-.8972,2-2,2h-5.1003c-.4648,2.2794-2.4851,4-4.8997,4ZM6,20.8995v3.1005h7v1c0,1.6542,1.3457,3,3,3s3-1.3458,3-3v-1h7v-3.1005c-2.2793-.4646-4-2.485-4-4.8995s1.7207-4.4349,4-4.8995v-3.1005h-7v-1c0-1.6542-1.3457-3-3-3s-3,1.3458-3,3v1h-7v3.1005c2.2793.4646,4,2.485,4,4.8995s-1.7207,4.4349-4,4.8995Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,10H7a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V16H12V28H8V19H6V13a1.0009,1.0009,0,0,1,1-1H25a1.0009,1.0009,0,0,1,1,1v6H24v9H20V16H18V28a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,25,10Z"}),(0,a.jsx)("path",{d:"M10,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,10,9Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,10,3Z"}),(0,a.jsx)("path",{d:"M22,9a4,4,0,1,1,4-4A4.0042,4.0042,0,0,1,22,9Zm0-6a2,2,0,1,0,2,2A2.0023,2.0023,0,0,0,22,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,15a6.0025,6.0025,0,0,0-3.1067-5.2529A3.9792,3.9792,0,0,0,24,7H22a2.0023,2.0023,0,0,1-2,2,6.004,6.004,0,0,0-5.9946,5.8921A7.0005,7.0005,0,0,1,12,10,3.9961,3.9961,0,0,0,9,6.1419V4H7V6.1419A3.9961,3.9961,0,0,0,4,10v5H2v1a14,14,0,0,0,28,0V15Zm-6-4a4.0045,4.0045,0,0,1,4,4H16A4.0045,4.0045,0,0,1,20,11ZM6,10a2,2,0,1,1,4,0,8.991,8.991,0,0,0,1.5322,5H6ZM16,28A12.0166,12.0166,0,0,1,4.0415,17h23.917A12.0166,12.0166,0,0,1,16,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.6262,29.5256,19.11,27.5935A12.0035,12.0035,0,0,0,25.2312,8.3323l1.5376-1.2788a14.0033,14.0033,0,0,1-7.1426,22.4721Z"}),(0,a.jsx)("path",{d:"M10,29H8V25.18l.8037-.1607C10.2617,24.728,12,23.6206,12,20V18.6182l-4-2V14.3818l4-2V12c0-5.4673,3.9253-9,10-9h2V6.82l-.8037.1607C21.7383,7.272,20,8.3794,20,12v.3818l4,2v2.2364l-4,2V20C20,25.4673,16.0747,29,10,29Zm0-2c4.9346,0,8-2.6821,8-7V17.3818L21.7642,15.5,18,13.6182V12c0-4.5781,2.3853-6.1924,4-6.76V5c-4.9346,0-8,2.6821-8,7v1.6182L10.2358,15.5,14,17.3818V20c0,4.5781-2.3853,6.1924-4,6.76Z"}),(0,a.jsx)("path",{d:"M5.2312,24.9465A14.0032,14.0032,0,0,1,12.3779,2.4734l.5161,1.9321A12.0035,12.0035,0,0,0,6.7688,23.6677Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.3,13l-1.3,13.2c-.1.9926-.9,1.8-1.9,1.8h-5.1v-2h5l1.3-13h-4.3v-2h4.5l.5-5.2c.0916-1.0019,1-1.8,2-1.8h5v2h-5l-.5,5h4.5v2h-4.7ZM16,19v7c0,1.1.9,2,2,2h2v-2h-2v-7h2v-2h-2c-1.1,0-2,.9-2,2ZM26,17h-2v2h2v7h-2v2h2c1.1,0,2-.9,2-2v-7c0-1.1-.9-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26 18 24 18 22 21.897 20 18 18 18 20.905 23 18 28 20 28 22 24.201 24 28 26 28 23.098 23 26 18z"}),(0,a.jsx)("path",{d:"M19,6V4H13.9133a1.9906,1.9906,0,0,0-1.9919,1.8188L11.2686,13H7v2h4.0867l-1,11H5v2h5.0867a1.9906,1.9906,0,0,0,1.9919-1.8188L13.0952,15H18V13H13.2769l.6364-7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,8H9c-1.1,0-2,.9-2,2v3.6c0,.5.2,1,.6,1.4l7.4,7.4v5.6c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v-5.6l7.4-7.4c.4-.4.6-.9.6-1.4v-3.6c0-1.1-.9-2-2-2ZM29,13.6l-8,8v6.4h-4v-6.4l-8-8v-3.6h20v3.6ZM4,7.6l1,1v2.8l-2.4-2.4c-.4-.4-.6-.9-.6-1.4v-3.6c0-1.1.9-2,2-2h20c1.1,0,2,.9,2,2v2h-2v-2H4v3.6h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21.4,15.6l2.6,2.6h0l2.6-2.6,1.4,1.4-4,4-4-4,1.4-1.4ZM21.4,13.4l2.6-2.6h0l2.6,2.6,1.4-1.4-4-4-4,4,1.4,1.4ZM26,4H4c-1.1,0-2,.9-2,2v3.2c0,.5.2,1,.6,1.4l7.4,7.4v8c0,1.1.9,2,2,2h4c1.1,0,2-.9,2-2v-4h-2v4h-4v-8.8l-.6-.6-7.4-7.4v-3.2h22v-2h0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,12H17V4h3V2H12V4h3v8H12a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h3v8H12v2h8V28H17V20h3a2,2,0,0,0,2-2V14A2,2,0,0,0,20,12Zm-8,6V14h8v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.51,26a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,19l2.33-8.84A5.54,5.54,0,0,1,7.11,6.73a5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,9h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.57,5.57,0,0,1,2.59,3.41L29.81,19a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,21H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,26ZM9.83,8a3.49,3.49,0,0,0-1.72.46,3.6,3.6,0,0,0-1.66,2.19L4.12,19.49A3.6,3.6,0,0,0,6.6,23.88a3.43,3.43,0,0,0,2.62-.34,3.54,3.54,0,0,0,1.66-2.19L11.5,19h9l.61,2.35a3.58,3.58,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.55,3.55,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,8Z"}),(0,a.jsx)("path",{d:"M10,16a2,2,0,1,1,2-2A2,2,0,0,1,10,16Zm0-2Z"}),(0,a.jsx)("circle",{cx:"22",cy:"12",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"20",cy:"14",r:"1"}),(0,a.jsx)("circle",{cx:"24",cy:"14",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M7.51,30a5.48,5.48,0,0,1-1.44-.19A5.6,5.6,0,0,1,2.19,23l2.33-8.84a5.54,5.54,0,0,1,2.59-3.41,5.43,5.43,0,0,1,4.15-.54A5.52,5.52,0,0,1,14.7,13h2.6a5.49,5.49,0,0,1,3.44-2.81,5.43,5.43,0,0,1,4.15.54,5.55,5.55,0,0,1,2.59,3.41L29.81,23a5.6,5.6,0,0,1-3.89,6.83,5.43,5.43,0,0,1-4.15-.54,5.54,5.54,0,0,1-2.59-3.41L19,25H13l-.23.86a5.54,5.54,0,0,1-2.59,3.41A5.46,5.46,0,0,1,7.51,30ZM9.83,12a3.49,3.49,0,0,0-1.72.46,3.58,3.58,0,0,0-1.66,2.19L4.12,23.49A3.6,3.6,0,0,0,6.6,27.88a3.43,3.43,0,0,0,2.62-.34,3.57,3.57,0,0,0,1.66-2.19L11.5,23h9l.61,2.35a3.6,3.6,0,0,0,1.66,2.19,3.46,3.46,0,0,0,2.63.34,3.58,3.58,0,0,0,2.47-4.39l-2.33-8.84a3.53,3.53,0,0,0-1.65-2.19,3.46,3.46,0,0,0-2.63-.34,3.55,3.55,0,0,0-2.37,2.22l-.24.66h-5.3l-.24-.66a3.56,3.56,0,0,0-2.38-2.22A3.48,3.48,0,0,0,9.83,12Z"}),(0,a.jsx)("path",{d:"M10,20a2,2,0,1,1,2-2A2,2,0,0,1,10,20Zm0-2Z"}),(0,a.jsx)("circle",{cx:"22",cy:"16",r:"1"}),(0,a.jsx)("circle",{cx:"22",cy:"20",r:"1"}),(0,a.jsx)("circle",{cx:"20",cy:"18",r:"1"}),(0,a.jsx)("circle",{cx:"24",cy:"18",r:"1"}),(0,a.jsx)("path",{d:"M13.75,9l-1.5-1.33a5,5,0,0,1,7.5,0L18.25,9a3,3,0,0,0-4.5,0Z"}),(0,a.jsx)("path",{d:"M21.25,6.37a7,7,0,0,0-10.5,0L9.25,5.05a9,9,0,0,1,13.5,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23,23h-.1315l.9635-1.4453A1.0008,1.0008,0,0,0,24,21V12.0005c0-9.8858-7.92-10-8-10A1,1,0,0,0,15,3l-.0005,2H14a.9956.9956,0,0,0-.581.1865l-7,5a1,1,0,0,0-.3676,1.13l1,3a.9976.9976,0,0,0,1.09.6733l4.87-.6958L9.1519,20.47a1,1,0,0,0,.0161,1.085L10.1315,23H10a3.0033,3.0033,0,0,0-3,3v4H26V26A3.0033,3.0033,0,0,0,23,23Zm-7.1519-9.47a1,1,0,0,0-.99-1.52l-6.1738.8819-.5025-1.5078L14.32,7.0005H15.999a1,1,0,0,0,1-.9995L17,4.1289C18.5013,4.4636,21.2167,5.67,21.86,10H19v2h3v2H19v2h3v2H19v2h3v.6973L20.4648,23h-7.93L11.19,20.9824ZM24,28H9V26a1.0009,1.0009,0,0,1,1-1H23a1.0006,1.0006,0,0,1,1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8 10H15V12H8z"}),(0,a.jsx)("path",{d:"M28.4142,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5644,3.5644,0,0,0,2.7654,3.5251A3.5062,3.5062,0,0,0,29,24.5V9.4144A2,2,0,0,0,28.4142,8ZM17,26H6V6H17Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{fill:"none",d:"M8 10H15V12H8z","data-icon-path":"inner-path"}),(0,a.jsx)("path",{d:"M28.4143,8l-5-5L22,4.4141l3,3V12a2.0023,2.0023,0,0,0,2,2V24.5a1.5,1.5,0,0,1-3,0V16a1,1,0,0,0-1-1H19V5a1,1,0,0,0-1-1H5A1,1,0,0,0,4,5V26H2v2H21V26H19V17h3v7.4a3.5645,3.5645,0,0,0,2.7654,3.5249A3.506,3.506,0,0,0,29,24.5V9.4146A2,2,0,0,0,28.4143,8ZM15,12H8V10h7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,16a1.9857,1.9857,0,0,0-.5859-1.4141L24.6211,8.793,27.489,5.9253a2,2,0,1,0-1.414-1.4141L23.207,7.3789l-5.7929-5.793a1.9995,1.9995,0,0,0-2.8282,0L8.793,7.3789,5.925,4.5112A2,2,0,1,0,4.511,5.9253L7.3789,8.793l-5.793,5.7929a1.9995,1.9995,0,0,0,0,2.8282l5.793,5.7929L4.511,26.0747a2,2,0,1,0,1.414,1.4141l2.868-2.8677,5.7929,5.793a1.9995,1.9995,0,0,0,2.8282,0l5.7929-5.793,2.868,2.8677a2,2,0,1,0,1.414-1.4141L24.6211,23.207l5.793-5.7929A1.9866,1.9866,0,0,0,31,16Zm-7.793,5.793L20.4141,19,19,20.4141l2.793,2.7929L16,29l-5.793-5.793L13,20.4141,11.5859,19,8.793,21.793,3,16l5.7925-5.7935L11.5859,13,13,11.5859,10.2065,8.7925,16,3l5.7935,5.7925L19,11.5859,20.4141,13l2.7934-2.7935L29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,18.1841V13.8159a3.0007,3.0007,0,1,0-2,0v4.3687a3,3,0,1,0,2,0ZM16,10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,16,10Zm0,12a1,1,0,1,1,1-1A1.0009,1.0009,0,0,1,16,22Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19.8779,12.1218a.4186.4186,0,0,0-.437-.0971l-9.1666,3.3335a.4167.4167,0,0,0-.0122.7786l4.0006,1.6,1.6,4.0007A.4168.4168,0,0,0,16.25,22h.0067a.4169.4169,0,0,0,.3849-.2743l3.3333-9.1669A.4165.4165,0,0,0,19.8779,12.1218Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,14H14V12a2,2,0,0,1,4,0h2a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A2.0023,2.0023,0,0,0,19,14Zm0,7H13V16h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,11v6.4678a5.0216,5.0216,0,0,0,2.8613,4.52L16,23l2.1387-1.0127A5.0216,5.0216,0,0,0,21,17.4678V11Zm8,6.4678a3.012,3.012,0,0,1-1.7168,2.7109L16,20.7861l-1.2832-.6074A3.012,3.012,0,0,1,13,17.4678V13h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21,22H19V20a1.0011,1.0011,0,0,0-1-1H14a1.0011,1.0011,0,0,0-1,1v2H11V20a3.0033,3.0033,0,0,1,3-3h4a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M16,16a3.5,3.5,0,1,1,3.5-3.5A3.5041,3.5041,0,0,1,16,16Zm0-5a1.5,1.5,0,1,0,1.5,1.5A1.5017,1.5017,0,0,0,16,11Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,14.2783V12a4,4,0,0,0-8,0v2.2783A1.9929,1.9929,0,0,0,11,16v5a2.0023,2.0023,0,0,0,2,2h6a2.0023,2.0023,0,0,0,2-2V16A1.9929,1.9929,0,0,0,20,14.2783ZM16,10a2.0023,2.0023,0,0,1,2,2v2H14V12A2.0023,2.0023,0,0,1,16,10Zm3,11H13V16h6Z"}),(0,a.jsx)("path",{d:"M30.4141,17.4141a1.9995,1.9995,0,0,0,0-2.8282L24.6272,8.7993l2.9006-2.8628a2.0018,2.0018,0,1,0-1.4416-1.3872L23.2129,7.3848,17.4141,1.5859a1.9995,1.9995,0,0,0-2.8282,0L8.7993,7.3726,5.9368,4.4717A2.002,2.002,0,1,0,4.55,5.9136l2.835,2.8735L1.5859,14.5859a1.9995,1.9995,0,0,0,0,2.8282l5.7989,5.7988L4.55,26.0864a1.9977,1.9977,0,1,0,1.387,1.4419l2.8625-2.9009,5.7866,5.7867a1.9995,1.9995,0,0,0,2.8282,0l5.7988-5.7989,2.8733,2.8355a1.998,1.998,0,1,0,1.4416-1.3872l-2.9006-2.8628ZM16,29,3,16,16,3,29,16Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,21.9847c0-.4595-.0568-.9053-.155-1.3354l2.155-.8273-.7167-1.8671-2.2063.8469c-.4529-.7197-1.0501-1.3392-1.7568-1.8106l.9695-2.1777-1.8271-.8135-.9706,2.1801c-.478-.123-.9761-.1954-1.492-.1954s-1.014.0724-1.492.1954l-.9706-2.1801-1.8271.8135.9695,2.1777c-.7067.4714-1.3039,1.0909-1.7568,1.8106l-2.2063-.8469-.7167,1.8671,2.155.8273c-.0983.4302-.155.8759-.155,1.3354,0,.4396.0507.8672.1408,1.2802l-2.1408.9531.8135,1.8271,2.08-.9261c.442.7173,1.0259,1.3374,1.7191,1.8134l-.9023,2.3508,1.8671.7167.856-2.2299c.5004.1357,1.0239.2146,1.5666.2146s1.0662-.0789,1.5666-.2146l.856,2.2299,1.8671-.7167-.9023-2.3508c.6932-.476,1.2772-1.0961,1.7191-1.8134l2.08.9261.8135-1.8271-2.1408-.9531c.0901-.413.1408-.8406.1408-1.2802Zm-6,4c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m13.471,14.8852l1.4788,1.4788,1.4142-1.4142-1.4788-1.4787c.5146-.7222.871-1.5616,1.0245-2.471h2.0903v-2h-2.0903c-.1535-.9094-.5098-1.7488-1.0245-2.471l1.4788-1.4788-1.4142-1.4142-1.4788,1.4788c-.7222-.5146-1.5616-.871-2.471-1.0245v-2.0903h-2v2.0903c-.9094.1535-1.7488.5099-2.471,1.0245l-1.4788-1.4788-1.4142,1.4142,1.4788,1.4788c-.5146.7222-.871,1.5616-1.0245,2.471H2v2h2.0903c.1535.9094.5098,1.7488,1.0245,2.471l-1.4788,1.4787,1.4142,1.4142,1.4788-1.4788c.7222.5146,1.5616.871,2.471,1.0245v2.0903h2v-2.0903c.9094-.1535,1.7488-.5098,2.471-1.0245Zm-7.471-4.8852c0-2.2056,1.7939-4,4-4s4,1.7944,4,4-1.7939,4-4,4-4-1.7944-4-4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.5,4H8.5L1.7158,13.0454,16,29.5269,30.2842,13.0454ZM27,12H21.5543l-3.75-6H22.5ZM10.3021,14l3.7536,10.23L5.19,14Zm2.13,0H19.568l-3.569,9.7212Zm.3725-2L16,6.8867,19.1957,12Zm8.8935,2H26.81L17.9427,24.2314ZM9.5,6h4.6957l-3.75,6H5Z"}),e)})},9249(e,t,r){r.d(t,{vg:()=>i,ww:()=>c});var h=r(428),l=r(7656),a=r(4848);l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M23.5,4H8.5L1.7158,13.0454,6.01,18l1.5114-1.31L5.19,14h5.2554L16,22.8867,21.5544,14H26.81L15.8125,26.6919,17.3242,28l12.96-14.9546ZM5,12,9.5,6h4.6958l-3.75,6ZM16,6.8867,19.1958,12H12.8042Zm0,12.2266L12.8044,14h6.3912ZM21.5542,12l-3.75-6H22.5L27,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,19.9307a8,8,0,1,0-2,0V22H10v2h5v4h2V24h5V22H17ZM10,12a6,6,0,1,1,6,6A6.0066,6.0066,0,0,1,10,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,4V6h6.5859l-7.6884,7.6885a8.028,8.028,0,1,0,1.414,1.414L26,7.4141V14h2V4ZM12,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,12,26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,24v4H8V24H6v4H6a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2h0V24Z"}),(0,a.jsx)("path",{d:"M21 21 19.586 19.586 17 22.172 17 14 15 14 15 22.172 12.414 19.586 11 21 16 26 21 21z"}),(0,a.jsx)("path",{d:"M28 4 28 2 22 2 22 12 24 12 24 8 27 8 27 6 24 6 24 4 28 4z"}),(0,a.jsx)("path",{d:"M17,12H13V2h4a3.0033,3.0033,0,0,1,3,3V9A3.0033,3.0033,0,0,1,17,12Zm-2-2h2a1.0011,1.0011,0,0,0,1-1V5a1.0011,1.0011,0,0,0-1-1H15Z"}),(0,a.jsx)("path",{d:"M9,2H4V12H6V9H9a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,9,2ZM6,7V4H9l.001,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,12v8a3,3,0,0,0,3,3h5V15H6v2H8v4H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1h5V9H5A3,3,0,0,0,2,12Z"}),(0,a.jsx)("path",{d:"M30 11 30 9 22 9 22 23 24 23 24 17 29 17 29 15 24 15 24 11 30 11z"}),(0,a.jsx)("path",{d:"M12 9 12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,10H23.2383A4.4867,4.4867,0,0,0,16,4.7065,4.4873,4.4873,0,0,0,8.7617,10H6a2.0025,2.0025,0,0,0-2,2v4a2.0025,2.0025,0,0,0,2,2V28a2.0025,2.0025,0,0,0,2,2H24a2.0025,2.0025,0,0,0,2-2V18a2.0025,2.0025,0,0,0,2-2V12A2.0025,2.0025,0,0,0,26,10ZM17,7.5A2.5,2.5,0,1,1,19.5,10H17ZM12.5,5A2.503,2.503,0,0,1,15,7.5V10H12.5a2.5,2.5,0,0,1,0-5ZM6,12h9v4H6Zm2,6h7V28H8ZM24.0012,28H17V18h7ZM17,16V12h9l.0012,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12.9,7c-.4-1.7-2-3-3.9-3s-3.4,1.3-3.9,3h-3.1v2h3.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h17.1v-2H12.9ZM9,10c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM23,12c-1.9,0-3.4,1.3-3.9,3H2v2h17.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h3.1v-2h-3.1c-.4-1.7-2-3-3.9-3ZM23,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM14,20c-1.9,0-3.4,1.3-3.9,3H2v2h8.1c.4,1.7,2,3,3.9,3s3.4-1.3,3.9-3h12.1v-2h-12.1c-.4-1.7-2-3-3.9-3ZM14,26c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m15,22l-1.4099,1.4102,2.5798,2.5898H4V8h-2v18c0,1.1025.8972,2,2,2h12.1699l-2.5798,2.5898,1.4099,1.4102,5-5-5-5Z"}),(0,a.jsx)("circle",{cx:"11",cy:"16",r:"1"}),(0,a.jsx)("path",{d:"m24,20H8c-1.1028,0-2-.8972-2-2v-4c0-1.1028.8972-2,2-2h16c1.1028,0,2,.8972,2,2v4c0,1.1028-.8972,2-2,2Zm-16-6v4h16v-4H8Z"}),(0,a.jsx)("path",{d:"m28,4h-12.1699l2.5801-2.5898L17,0l-5,5,5,5,1.4102-1.4102-2.5801-2.5898h12.1699v18h2V6c0-1.1025-.8972-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14,4a7,7,0,1,1-7,7,7,7,0,0,1,7-7m0-2a9,9,0,1,0,9,9A9,9,0,0,0,14,2Z"}),(0,a.jsx)("path",{d:"M28,11a13.9563,13.9563,0,0,0-4.1051-9.8949L22.4813,2.5187A11.9944,11.9944,0,0,1,5.5568,19.5194l-.0381-.0381L4.1051,20.8949A13.9563,13.9563,0,0,0,14,25v3H10v2H20V28H16V24.84A14.0094,14.0094,0,0,0,28,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,4H6A2.0023,2.0023,0,0,0,4,6V26a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,26,4ZM22,26V22H18v4H14V22H10V18h4V14H10V10h4V6h4v4h4V6h4V26Z"}),(0,a.jsx)("path",{d:"M14 10H18V14H14z"}),(0,a.jsx)("path",{d:"M14 18H18V22H14z"}),(0,a.jsx)("path",{d:"M18 14H22V18H18z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M3 18H5V30H3z"}),(0,a.jsx)("path",{d:"M9 24H11V30H9z"}),(0,a.jsx)("path",{d:"M15 16H17V30H15z"}),(0,a.jsx)("path",{d:"M21 20H23V30H21z"}),(0,a.jsx)("path",{d:"M27 14H29V30H27z"}),(0,a.jsx)("path",{d:"M28,2c-1.1046,0-2,.8954-2,2,0,.178.0307.3475.0743.5117l-3.5624,3.5627c-.1644-.0437-.3339-.0745-.512-.0745-.3171,0-.6129.0805-.8793.2119l-3.1332-2.0887c.0026-.0416.0125-.081.0125-.1232,0-1.1046-.8954-2-2-2s-2,.8954-2,2c0,.279.0578.5443.1609.7855l-3.9287,5.238c-.0771-.009-.1527-.0234-.2322-.0234-.178,0-.3474.0307-.5116.0743l-3.5627-3.5627c.0436-.1642.0743-.3336.0743-.5116,0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2c.178,0,.3474-.0307.5116-.0743l3.5627,3.5627c-.0436.1642-.0743.3336-.0743.5116,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.279-.0578-.5443-.1609-.7855l3.9286-5.238c.0771.009.1527.0234.2323.0234.3171,0,.6129-.0805.8793-.2119l3.1332,2.0887c-.0026.0416-.0125.081-.0125.1232,0,1.1046.8954,2,2,2s2-.8954,2-2c0-.178-.0307-.3474-.0743-.5116l3.5627-3.5627c.1642.0436.3336.0743.5116.0743,1.1046,0,2-.8954,2-2s-.8954-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H22a2.0023,2.0023,0,0,1-2-2V22a2.0023,2.0023,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v6A2.0023,2.0023,0,0,1,28,30Zm-6-8h-.0012L22,28h6V22Z"}),(0,a.jsx)("path",{d:"M18,26H12a3.0033,3.0033,0,0,1-3-3V19h2v4a1.001,1.001,0,0,0,1,1h6Z"}),(0,a.jsx)("path",{d:"M26,18H24V15a1.001,1.001,0,0,0-1-1H18V12h5a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M15,18a.9986.9986,0,0,1-.4971-.1323L10,15.2886,5.4968,17.8677a1,1,0,0,1-1.4712-1.0938l1.0618-4.572L2.269,9.1824a1,1,0,0,1,.5662-1.6687l4.2-.7019L9.1006,2.5627a1,1,0,0,1,1.7881-.0214l2.2046,4.271,4.0764.7021a1,1,0,0,1,.5613,1.668l-2.8184,3.02,1.0613,4.5718A1,1,0,0,1,15,18Zm-5-5s.343.18.4971.2686l3.01,1.7241-.7837-3.3763,2.282-2.4453-3.2331-.5569-1.7456-3.382L8.3829,8.6144l-3.3809.565,2.2745,2.437-.7841,3.3763,3.0105-1.7241C9.657,13.18,10,13,10,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M12,4H6A2,2,0,0,0,4,6v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,12,4Zm0,8H6V6h6Z"}),(0,a.jsx)("path",{d:"M26,4H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4Zm0,8H20V6h6Z"}),(0,a.jsx)("path",{d:"M12,18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,12,18Zm0,8H6V20h6Z"}),(0,a.jsx)("path",{d:"M26,18H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V20A2,2,0,0,0,26,18Zm0,8H20V20h6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31,30H29V27a3,3,0,0,0-3-3H22a3,3,0,0,0-3,3v3H17V27a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z"}),(0,a.jsx)("path",{d:"M24,12a3,3,0,1,1-3,3,3,3,0,0,1,3-3m0-2a5,5,0,1,0,5,5A5,5,0,0,0,24,10Z"}),(0,a.jsx)("path",{d:"M15,22H13V19a3,3,0,0,0-3-3H6a3,3,0,0,0-3,3v3H1V19a5,5,0,0,1,5-5h4a5,5,0,0,1,5,5Z"}),(0,a.jsx)("path",{d:"M8,4A3,3,0,1,1,5,7,3,3,0,0,1,8,4M8,2a5,5,0,1,0,5,5A5,5,0,0,0,8,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,19H6V17a3.0033,3.0033,0,0,1,3-3h5v2H9a1.0011,1.0011,0,0,0-1,1Z"}),(0,a.jsx)("path",{d:"M12,13a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,12,13Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,12,7Z"}),(0,a.jsx)("path",{d:"M20,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,20,20Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,20,14Z"}),(0,a.jsx)("path",{d:"M26,26H24V24a1.0011,1.0011,0,0,0-1-1H17a1.0011,1.0011,0,0,0-1,1v2H14V24a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,11H11a3,3,0,0,0-3,3v4h2V14a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v1h2V14A3,3,0,0,0,17,11Z"}),(0,a.jsx)("path",{d:"M10,6a4,4,0,1,0,4-4A4,4,0,0,0,10,6Zm6,0a2,2,0,1,1-2-2A2,2,0,0,1,16,6Z"}),(0,a.jsx)("path",{d:"M22,27H16a2.0021,2.0021,0,0,1-2-2V19a2.0021,2.0021,0,0,1,2-2h6a2.0021,2.0021,0,0,1,2,2v6A2.0021,2.0021,0,0,1,22,27Zm-6-8v6h6V19Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M10,30H8V27H4v3H2V27a2.0023,2.0023,0,0,1,2-2H8a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M30,30H28V27H24v3H22V27a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("path",{d:"M20,30H18V27H14v3H12V27a2.0023,2.0023,0,0,1,2-2h4a2.0023,2.0023,0,0,1,2,2Z"}),(0,a.jsx)("circle",{cx:"16",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"6",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"26",cy:"22",r:"2"}),(0,a.jsx)("circle",{cx:"21",cy:"18",r:"2"}),(0,a.jsx)("circle",{cx:"11",cy:"18",r:"2"}),(0,a.jsx)("path",{d:"M26,14H6a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,6,2H26a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,26,14ZM6,4v8H26V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,24H10a2.0021,2.0021,0,0,1-2-2V10a2.0021,2.0021,0,0,1,2-2H22a2.0021,2.0021,0,0,1,2,2V22A2.0021,2.0021,0,0,1,22,24ZM10,10V22H22V10Z"}),(0,a.jsx)("path",{d:"M8,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H8V4H4V28H8Z"}),(0,a.jsx)("path",{d:"M28,30H24V28h4V4H24V2h4a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M11,21H9V19a3.0033,3.0033,0,0,1,3-3h6v2H12a1.0011,1.0011,0,0,0-1,1Z"}),(0,a.jsx)("path",{d:"M15,15a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,15,15Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,15,9Z"}),(0,a.jsx)("path",{d:"M24,22a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,24,22Zm0-6a2,2,0,1,0,2,2A2.0021,2.0021,0,0,0,24,16Z"}),(0,a.jsx)("path",{d:"M30,28H28V26a1.0011,1.0011,0,0,0-1-1H21a1.0011,1.0011,0,0,0-1,1v2H18V26a3.0033,3.0033,0,0,1,3-3h6a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M14,27.7334l-5.2344-2.791A8.9858,8.9858,0,0,1,4,17V4H24v6h2V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V17a10.9814,10.9814,0,0,0,5.8242,9.707L14,30Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,13V9H9V19h4v4H23V13Zm-8-2h6v6H11ZM21,21H15V19h4V15h2Z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17 10 15 10 15 15 10 15 10 17 15 17 15 22 17 22 17 17 22 17 22 15 17 15 17 10z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M14 18.18 10.41 14.59 9 16 14 21 23 12 21.59 10.581 14 18.18z"}),(0,a.jsx)("path",{d:"M30,8V2H24V4H8V2H2V8H4V24H2v6H8V28H24v2h6V24H28V8ZM26,4h2V6H26ZM4,4H6V6H4ZM6,28H4V26H6Zm22,0H26V26h2Zm-2-4H24v2H8V24H6V8H8V6H24V8h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,8v2h6.5859L18,18.5859,13.707,14.293a.9994.9994,0,0,0-1.414,0L2,24.5859,3.4141,26,13,16.4141l4.293,4.2929a.9994.9994,0,0,0,1.414,0L28,11.4141V18h2V8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"20",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"23",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"26",cy:"8",r:"1"}),(0,a.jsx)("path",{d:"M28,4H4A2.0023,2.0023,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4Zm0,2v4H4V6ZM4,12h6V26H4Zm8,14V12H28V26Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,24V22H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,18.1011V16H22v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,22H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,27.8989V30h2V27.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,24Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,26Z"}),(0,a.jsx)("path",{d:"M28,4H4A2.002,2.002,0,0,0,2,6V26a2.0023,2.0023,0,0,0,2,2H14V26H4V12H28v3h2V6A2.0023,2.0023,0,0,0,28,4Zm0,6H4V6H28Z"}),(0,a.jsx)("circle",{cx:"20",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"23",cy:"8",r:"1"}),(0,a.jsx)("circle",{cx:"26",cy:"8",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18 9 18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21.5",cy:"29.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"24.5",cy:"25.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"7.5",cy:"25.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"4.5",cy:"29.5",r:"1.5"}),(0,a.jsx)("circle",{cx:"10.499",cy:"29.5",r:"1.5"}),(0,a.jsx)("path",{d:"M15.868 30.496 14.132 29.504 17.276 24 11.277 24 16.132 15.504 17.868 16.496 14.723 22 20.724 22 15.868 30.496z"}),(0,a.jsx)("path",{d:"M23.5,22H23V20h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,20H9v2H8.5A6.4973,6.4973,0,0,1,7.2,9.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,22Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26.37,20.52,17,15.41V13.86A4,4,0,1,0,12,10h2a2,2,0,1,1,4,.34A2.08,2.08,0,0,1,15.89,12h0a.89.89,0,0,0-.89.89v2.52L5.63,20.52A3.1,3.1,0,0,0,4.25,22a2.83,2.83,0,0,0,2.56,4H25.19a2.83,2.83,0,0,0,2.56-4A3.1,3.1,0,0,0,26.37,20.52ZM25.19,24H6.81A.81.81,0,0,1,6,23.19a1,1,0,0,1,.52-.88L16,17.14l9.48,5.17a1,1,0,0,1,.52.88A.81.81,0,0,1,25.19,24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,17A11.0109,11.0109,0,0,1,17,27.9492V14h6V12H17V9.8579a4,4,0,1,0-2,0V12H9v2h6V27.9492A11.0109,11.0109,0,0,1,5,17H3a13,13,0,0,0,26,0ZM14,6a2,2,0,1,1,2,2A2.0023,2.0023,0,0,1,14,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21.5",cy:"7.5",r:"1.5"}),(0,a.jsx)("path",{d:"M14.4143,20H9V14.5857l6.03-6.03A5.3518,5.3518,0,0,1,15,8a6,6,0,1,1,6,6,5.3583,5.3583,0,0,1-.5559-.03ZM11,18h2.5857l6.1706-6.1709.5174.0957A3.935,3.935,0,0,0,21,12a4.0507,4.0507,0,1,0-3.925-3.2729l.0952.5166L11,15.4143Z"}),(0,a.jsx)("path",{d:"M28,20H19v2h9v6H4V22H6V20H4a2.0024,2.0024,0,0,0-2,2v6a2.0024,2.0024,0,0,0,2,2H28a2.0024,2.0024,0,0,0,2-2V22A2.0024,2.0024,0,0,0,28,20Z"}),(0,a.jsx)("circle",{cx:"7",cy:"25",r:"1"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,12V10H22V4H20v6H12V4H10v6H4v2h6v8H4v2h6v6h2V22h8v6h2V22h6V20H22V12Zm-8,8H12V12h8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,28H3a1,1,0,0,1,0-2H19a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M15,20H3a1,1,0,0,1,0-2H15a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M24.5 23.5H28.5V25.5H24.5z",transform:"rotate(45 26.5 24.5)"}),(0,a.jsx)("path",{d:"M28 15H32V17H28z"}),(0,a.jsx)("path",{d:"M24.5 6.5H28.5V8.5H24.5z",transform:"rotate(-45 26.5 7.5)"}),(0,a.jsx)("path",{d:"M17 2H19V6H17z"}),(0,a.jsx)("path",{d:"M7.5 6.5H11.5V8.5H7.5z",transform:"rotate(225 9.5 7.5)"}),(0,a.jsx)("path",{d:"M18,8a8.0092,8.0092,0,0,0-8,8h2a6,6,0,1,1,6,6H7a1,1,0,0,0,0,2H18A8,8,0,0,0,18,8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,22H13a1,1,0,0,0,0,2h9.6772a11.0991,11.0991,0,0,1-7.5561,2.9976c-.1384,0-.2783.0048-.4177,0a11.0945,11.0945,0,0,1-3.201-21.584,15.1528,15.1528,0,0,0-.0488,6.5869h2.0457a13.15,13.15,0,0,1,.39-7.6206A1.015,1.015,0,0,0,12.98,3a.9825.9825,0,0,0-.1746.0156A13.0958,13.0958,0,0,0,14.63,28.9971c.164.0063.3281,0,.4907,0A13.04,13.04,0,0,0,25.3779,24H29a1,1,0,0,0,0-2Z"}),(0,a.jsx)("path",{d:"M27,20H17a1,1,0,0,1,0-2H27a1,1,0,0,1,0,2Z"}),(0,a.jsx)("path",{d:"M25,16H13a1,1,0,0,1,0-2H25a1,1,0,0,1,0,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,24V8H28V24Z"}),(0,a.jsx)("path",{d:"M22,11H18V21h4a3,3,0,0,0,3-3V14A3,3,0,0,0,22,11Zm1,7a1,1,0,0,1-1,1H20V13h2a1,1,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M13 11 13 15 10 15 10 11 8 11 8 21 10 21 10 17 13 17 13 21 15 21 15 11 13 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,13H20v6h2a1,1,0,0,0,1-1V14A1,1,0,0,0,22,13Z"}),(0,a.jsx)("path",{d:"M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,21H13V17H10v4H8V11h2v4h3V11h2Zm10-3a3,3,0,0,1-3,3H18V11h4a3,3,0,0,1,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,15V11a2,2,0,0,0-2-2H22V23h2V17h1.48l2.34,6H30l-2.33-6H28A2,2,0,0,0,30,15Zm-6-4h4v4H24Z"}),(0,a.jsx)("path",{d:"M16,23H12V9h4a4,4,0,0,1,4,4v6A4,4,0,0,1,16,23Zm-2-2h2a2,2,0,0,0,2-2V13a2,2,0,0,0-2-2H14Z"}),(0,a.jsx)("path",{d:"M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,7v18h-3v-6h-10v6h-3V7h3v9h10V7h3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16V15A9,9,0,0,0,7,15v1A5,5,0,0,0,7,26H9V15a7,7,0,0,1,14,0V26h2a5,5,0,0,0,0-10ZM4,21a3,3,0,0,1,3-3v6A3,3,0,0,1,4,21Zm21,3V18a3,3,0,0,1,0,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,10h-.06A9,9,0,0,0,7.06,10H7A5,5,0,0,0,7,20H9V11a7,7,0,0,1,14,0V21a4,4,0,0,1-3.17,3.91,4,4,0,1,0,.05,2A6,6,0,0,0,25,21V20a5,5,0,0,0,0-10ZM4,15a3,3,0,0,1,3-3v6A3,3,0,0,1,4,15ZM16,28a2,2,0,1,1,2-2A2,2,0,0,1,16,28Zm9-10V12a3,3,0,0,1,0,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M19,28H13a2.0023,2.0023,0,0,1-2-2V21H6a2.0023,2.0023,0,0,1-2-2V13a2.002,2.002,0,0,1,2-2h5V6a2.002,2.002,0,0,1,2-2h6a2.0023,2.0023,0,0,1,2,2v5h5a2.0023,2.0023,0,0,1,2,2v6a2.0027,2.0027,0,0,1-2,2H21v5A2.0027,2.0027,0,0,1,19,28ZM6,13v6h7v7h6V19h7V13H19V6H13v7Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M18,30V28A10.0114,10.0114,0,0,0,28,18h2A12.0134,12.0134,0,0,1,18,30Z"}),(0,a.jsx)("path",{d:"M18,26V24a6.0066,6.0066,0,0,0,6-6h2A8.0092,8.0092,0,0,1,18,26Z"}),(0,a.jsx)("path",{d:"M18,22V20a2.0023,2.0023,0,0,0,2-2h2A4.0042,4.0042,0,0,1,18,22Z"}),(0,a.jsx)("path",{d:"M10,2a9.01,9.01,0,0,0-9,9H3a7,7,0,0,1,14,0,7.09,7.09,0,0,1-3.501,6.1348L13,17.4229v3.0732a2.9354,2.9354,0,0,1-.9009,2.1514,4.1824,4.1824,0,0,1-4.6318,1.03A4.0918,4.0918,0,0,1,5,20H3a6.1156,6.1156,0,0,0,3.6694,5.5117,5.7822,5.7822,0,0,0,2.3145.4863A6.5854,6.5854,0,0,0,13.4624,24.11,4.94,4.94,0,0,0,15,20.4961V18.5537A9.1077,9.1077,0,0,0,19,11,9.01,9.01,0,0,0,10,2Z"}),(0,a.jsx)("path",{d:"M9.28,8.0825A3.0061,3.0061,0,0,1,13,11h2a4.9786,4.9786,0,0,0-1.8843-3.9111A5.0414,5.0414,0,0,0,8.835,6.1323,4.95,4.95,0,0,0,5.1323,9.835,5.0318,5.0318,0,0,0,7.436,15.2935,3.0777,3.0777,0,0,1,9,17.9229V20h2V17.9229a5.0608,5.0608,0,0,0-2.5371-4.3458A3.0016,3.0016,0,0,1,9.28,8.0825Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20 18H22V20H20z"}),(0,a.jsx)("path",{d:"M28 16H30V18H28z"}),(0,a.jsx)("path",{d:"M14 6H16V8H14z"}),(0,a.jsx)("path",{d:"M16,22H12V16a2.0023,2.0023,0,0,0-2-2H4a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2h6v4a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V24A2.0023,2.0023,0,0,0,16,22ZM4,22V16h6v6Zm8,6V24h4v4Z"}),(0,a.jsx)("path",{d:"M28,30H24a2.0021,2.0021,0,0,1-2-2V24a2.0021,2.0021,0,0,1,2-2h4a2.0021,2.0021,0,0,1,2,2v4A2.0021,2.0021,0,0,1,28,30Zm-4-6v4h4V24Z"}),(0,a.jsx)("path",{d:"M28,2H22a2.0023,2.0023,0,0,0-2,2v6H18a2.0023,2.0023,0,0,0-2,2v2a2.0023,2.0023,0,0,0,2,2h2a2.0023,2.0023,0,0,0,2-2V12h6a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2ZM18,14V12h2v2Zm4-4V4h6v6Z"}),(0,a.jsx)("path",{d:"M8,10H4A2.0021,2.0021,0,0,1,2,8V4A2.0021,2.0021,0,0,1,4,2H8a2.0021,2.0021,0,0,1,2,2V8A2.0021,2.0021,0,0,1,8,10ZM4,4V8H8V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"21",cy:"20",r:"2"}),(0,a.jsx)("circle",{cx:"14",cy:"12",r:"2"}),(0,a.jsx)("circle",{cx:"29",cy:"19",r:"1"}),(0,a.jsx)("path",{d:"M26.5,30A3.5,3.5,0,1,1,30,26.5,3.5041,3.5041,0,0,1,26.5,30Zm0-5A1.5,1.5,0,1,0,28,26.5,1.5017,1.5017,0,0,0,26.5,25Z"}),(0,a.jsx)("path",{d:"M14,30a3.958,3.958,0,0,1-2.126-.6211,6.9977,6.9977,0,1,1,4.1109-6.8384A3.9916,3.9916,0,0,1,14,30Zm-1.8843-3.0278.5391.4946a1.9915,1.9915,0,1,0,2.0039-3.343l-.6909-.2432.03-.8467a5.0085,5.0085,0,1,0-2.5166,4.3023Z"}),(0,a.jsx)("path",{d:"M24,16a6.0067,6.0067,0,0,1-6-6,5.3246,5.3246,0,0,1,.0269-.5327A3.9564,3.9564,0,0,1,16,6a4.0045,4.0045,0,0,1,4-4,3.9564,3.9564,0,0,1,3.4673,2.0271C23.6484,4.009,23.8252,4,24,4a6,6,0,0,1,0,12ZM20,4a2.0021,2.0021,0,0,0-2,2,1.9805,1.9805,0,0,0,1.43,1.9023l.9018.2706-.2153.9162A3.9938,3.9938,0,1,0,24,6a4.0064,4.0064,0,0,0-.9121.1162l-.9155.2141-.27-.9006A1.9807,1.9807,0,0,0,20,4Z"}),(0,a.jsx)("path",{d:"M6.5,11A4.5,4.5,0,1,1,11,6.5,4.5051,4.5051,0,0,1,6.5,11Zm0-7A2.5,2.5,0,1,0,9,6.5,2.503,2.503,0,0,0,6.5,4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2.0023,2.0023,0,0,0,3,5V27a2.0023,2.0023,0,0,0,2,2H27a2.0023,2.0023,0,0,0,2-2V5A2.0023,2.0023,0,0,0,27,3ZM19,9H13V5h6Zm0,2v4H13V11Zm-8,0v4H5V11Zm0,6v4H5V17Zm2,0h6v4H13Zm8-2V11h6l0,4ZM5,23h6v4H5Zm16,4V23h6v4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,3H5A2,2,0,0,0,3,5V27a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V5A2,2,0,0,0,27,3ZM9,21H5V17H9Zm2,2h4v4H11Zm6,0h4v4H17Zm0-8V11h4v4Zm4-6H17V5h4Zm2,2h4v4H23ZM15,5V15H5V5Zm8,22V17h4V27Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,8V6H8V8H18v4H4V8H2v8H4V14h6.2192l2.0533,8.2129A4.9923,4.9923,0,0,0,17.123,26H26a4.0045,4.0045,0,0,0,4-4V19.3623a2.0007,2.0007,0,0,0-.4639-1.28L25.0684,12.72A1.9968,1.9968,0,0,0,23.5317,12H20V8ZM26,24H17.123a2.9949,2.9949,0,0,1-2.91-2.2725L12.2808,14H18v6H28v2A2.0023,2.0023,0,0,1,26,24ZM23.5317,14l3.3333,4H20V14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return 16===t||"16"===t||"16px"===t?l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M8,14c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S11.3,14,8,14z"}),(0,a.jsx)("circle",{cx:"8",cy:"11.8",r:".8"}),(0,a.jsx)("path",{d:"M8.5,4H7.8C6.5,4,5.5,5,5.5,6.2c0,0,0,0,0,0v0.2h1V6.2C6.5,5.6,7.1,5,7.8,5h0.8c0.7,0,1.2,0.6,1.2,1.2S9.2,7.5,8.5,7.5h-1 v2.2h1V8.5c1.2,0,2.2-1,2.2-2.2S9.7,4,8.5,4z"}),e):l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"}),(0,a.jsx)("circle",{cx:"16",cy:"23.5",r:"1.5"}),(0,a.jsx)("path",{d:"M17,8H15.5A4.49,4.49,0,0,0,11,12.5V13h2v-.5A2.5,2.5,0,0,1,15.5,10H17a2.5,2.5,0,0,1,0,5H15v4.5h2V17a4.5,4.5,0,0,0,0-9Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,23a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z"}),(0,a.jsx)("path",{fill:"none",d:"M16,25a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,25Zm1.1421-7.754v2.5014h-2.25V15h2.125a2.3763,2.3763,0,0,0,0-4.7526h-1.5a2.3777,2.3777,0,0,0-2.375,2.375V13.26h-2.25v-.6377A4.6279,4.6279,0,0,1,15.5171,8h1.5a4.6238,4.6238,0,0,1,.125,9.246Z","data-icon-path":"inner-path"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,10H21a3.0033,3.0033,0,0,0-3,3v6a2.0023,2.0023,0,0,0,2,2v7a2.0023,2.0023,0,0,0,2,2h4a2.0023,2.0023,0,0,0,2-2V21a2.0023,2.0023,0,0,0,2-2V13A3.0033,3.0033,0,0,0,27,10Zm1,9H26v9H22V19H20V13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1Z"}),(0,a.jsx)("path",{d:"M20,5a4,4,0,1,1,4,4A4.0042,4.0042,0,0,1,20,5Zm2,0a2,2,0,1,0,2-2A2.0023,2.0023,0,0,0,22,5Z"}),(0,a.jsx)("path",{d:"M14,16V13a3.0033,3.0033,0,0,0-3-3H5a3.0033,3.0033,0,0,0-3,3v3H0v2H16V16ZM4,13a1.0009,1.0009,0,0,1,1-1h6a1.0009,1.0009,0,0,1,1,1v3H4Z"}),(0,a.jsx)("path",{d:"M4,5A4,4,0,1,1,8,9,4.0042,4.0042,0,0,1,4,5ZM6,5A2,2,0,1,0,8,3,2.0023,2.0023,0,0,0,6,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m23,29h-14c-.3555,0-.6846-.189-.8638-.4961L1.1362,16.5039c-.1816-.3113-.1816-.6965,0-1.0078L8.1362,3.4961c.1792-.3071.5083-.4961.8638-.4961h14c.3555,0,.6846.189.8638.4961l7,12c.1816.3113.1816.6965,0,1.0078l-7,12c-.1792.3071-.5083.4961-.8638.4961Zm-13.4258-2h12.8516l6.4165-11-6.4165-11h-12.8516l-6.4165,11,6.4165,11Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30.8508,15.4487l-6.9641-11.9165c-.1926-.3301-.5437-.5322-.9224-.5322h-13.9287c-.3787,0-.7297.2021-.9224.5322L1.1492,15.4487c-.199.3403-.199.7622,0,1.1025l6.9641,11.9165c.1926.3301.5437.5322.9224.5322h13.9287c.3787,0,.7297-.2021.9224-.5322l6.9641-11.9165c.199-.3403.199-.7622,0-1.1025Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m3,23v-14c0-.3555.189-.6846.4961-.8638L15.4961,1.1362c.3113-.1816.6965-.1816,1.0078,0l12,7c.3071.1792.4961.5083.4961.8638v14c0,.3555-.189.6846-.4961.8638l-12,7c-.3113.1816-.6965.1816-1.0078,0l-12-7c-.3071-.1792-.4961-.5083-.4961-.8638Zm2-13.4258v12.8516l11,6.4165,11-6.4165v-12.8516l-11-6.4165-11,6.4165Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16.5513,30.8508l11.9165-6.9641c.3301-.1926.5322-.5437.5322-.9224v-13.9287c0-.3787-.2021-.7297-.5322-.9224L16.5513,1.1492c-.3403-.199-.7622-.199-1.1025,0L3.5322,8.1133c-.3301.1926-.5322.5437-.5322.9224v13.9287c0,.3787.2021.7297.5322.9224l11.9165,6.9641c.3403.199.7622.199,1.1025,0Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2 2H6V6H2z"}),(0,a.jsx)("path",{d:"M10 2H14V6H10z"}),(0,a.jsx)("path",{d:"M18 2H22V6H18z"}),(0,a.jsx)("path",{d:"M26 2H30V6H26z"}),(0,a.jsx)("path",{d:"M2 10H6V14H2z"}),(0,a.jsx)("path",{d:"M10 10H14V14H10z"}),(0,a.jsx)("path",{d:"M18 10H22V14H18z"}),(0,a.jsx)("path",{d:"M26 10H30V14H26z"}),(0,a.jsx)("path",{d:"M2 18H6V22H2z"}),(0,a.jsx)("path",{d:"M10 18H14V22H10z"}),(0,a.jsx)("path",{d:"M18 18H22V22H18z"}),(0,a.jsx)("path",{d:"M26 18H30V22H26z"}),(0,a.jsx)("path",{d:"M2 26H6V30H2z"}),(0,a.jsx)("path",{d:"M10 26H14V30H10z"}),(0,a.jsx)("path",{d:"M18 26H22V30H18z"}),(0,a.jsx)("path",{d:"M26 26H30V30H26z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29 9 21 9 21 13 23 13 23 11 26.847 11 22 23 24.157 23 29 11 29 9z"}),(0,a.jsx)("path",{d:"M14 21 14 9 12 9 12 23 20 23 20 21 14 21z"}),(0,a.jsx)("path",{d:"M8 9 8 15 4 15 4 9 2 9 2 23 4 23 4 17 8 17 8 23 10 23 10 9 8 9z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"16",r:"5"}),(0,a.jsx)("path",{d:"M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26.0012L26,6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"19",cy:"19",r:"4"}),(0,a.jsx)("path",{d:"M28,30H10a2.0023,2.0023,0,0,1-2-2V10a2.0023,2.0023,0,0,1,2-2H28a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,28,30ZM10,10V28H28V10Z"}),(0,a.jsx)("path",{d:"M11 2 2 2 2 11 4 11 4 4 11 4 11 2z"}),e)});const c=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16.6123,2.2138a1.01,1.01,0,0,0-1.2427,0L1,13.4194l1.2427,1.5717L4,13.6209V26a2.0041,2.0041,0,0,0,2,2H26a2.0037,2.0037,0,0,0,2-2V13.63L29.7573,15,31,13.4282ZM18,26H14V18h4Zm2,0V18a2.0023,2.0023,0,0,0-2-2H14a2.002,2.002,0,0,0-2,2v8H6V12.0615l10-7.79,10,7.8005V26Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,17h-4v-2h4v2ZM22,17h-4v-2h4v2ZM14,17h-4v-2h4v2ZM6,17H2v-2h4v2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2,15h28v2H2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,30H4a2.0021,2.0021,0,0,1-2-2V20a2.0021,2.0021,0,0,1,2-2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,30ZM4,20H3.9985L4,28H28V20Z"}),(0,a.jsx)("path",{d:"M28,14H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2v8A2.0021,2.0021,0,0,1,28,14ZM4,4H3.9985L4,12H28V4Z"}),e)});const i=l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M21 10 17 10 17 6 15 6 15 10 11 10 11 12 15 12 15 16 17 16 17 12 21 12 21 10z"}),(0,a.jsx)("path",{d:"M28,10H26V4a2.0023,2.0023,0,0,0-2-2H8A2.0023,2.0023,0,0,0,6,4v6H4a2.0023,2.0023,0,0,0-2,2V30H30V12A2.0023,2.0023,0,0,0,28,10ZM14,28V22h4v6Zm6,0V21a1,1,0,0,0-1-1H13a1,1,0,0,0-1,1v7H4V12H8V4H24v8h4V28Z"}),e)});l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M25,16H17a2.0023,2.0023,0,0,0-2,2v6H4V14H2V30H4V26H28v4h2V21A5.0059,5.0059,0,0,0,25,16Zm3,8H17V18h8a3.0033,3.0033,0,0,1,3,3Z"}),(0,a.jsx)("path",{d:"M9.5,17A1.5,1.5,0,1,1,8,18.5,1.5017,1.5017,0,0,1,9.5,17m0-2A3.5,3.5,0,1,0,13,18.5,3.5,3.5,0,0,0,9.5,15Z"}),(0,a.jsx)("path",{d:"M21 6 17 6 17 2 15 2 15 6 11 6 11 8 15 8 15 12 17 12 17 8 21 8 21 6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9.5,15A1.5,1.5,0,1,1,8,16.5,1.5,1.5,0,0,1,9.5,15m0-2A3.5,3.5,0,1,0,13,16.5,3.5,3.5,0,0,0,9.5,13Z"}),(0,a.jsx)("path",{d:"M25,14H17a2,2,0,0,0-2,2v6H4V10.6L16,4.14l12.53,6.74.94-1.76-13-7a1,1,0,0,0-.94,0l-13,7A1,1,0,0,0,2,10V30H4V24H28v6h2V19A5,5,0,0,0,25,14Zm-8,8V16h8a3,3,0,0,1,3,3v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M15 19H17V21H15z"}),(0,a.jsx)("path",{d:"M15 23H17V25H15z"}),(0,a.jsx)("path",{d:"M23,11.67V4h3V2H6V4H9v7.67a2,2,0,0,0,.4,1.2L11.75,16,9.4,19.13a2,2,0,0,0-.4,1.2V28H6v2H26V28H23V20.33a2,2,0,0,0-.4-1.2L20.25,16l2.35-3.13A2,2,0,0,0,23,11.67ZM21,4v7H11V4Zm0,16.33V28H11V20.33L14.25,16,12,13h8l-2.25,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28 19 28 11 26 11 26 21 32 21 32 19 28 19z"}),(0,a.jsx)("path",{d:"M24 11 22 11 20.5 15 19 11 17 11 17 21 19 21 19 14 20.5 18 22 14 22 21 24 21 24 11z"}),(0,a.jsx)("path",{d:"M9 13 11 13 11 21 13 21 13 13 15 13 15 11 9 11 9 13z"}),(0,a.jsx)("path",{d:"M5 11 5 15 2 15 2 11 0 11 0 21 2 21 2 17 5 17 5 21 7 21 7 11 5 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"}),(0,a.jsx)("path",{d:"M28 14 28 6 26 6 26 16 32 16 32 14 28 14z"}),(0,a.jsx)("path",{d:"M24 6 22 6 20.5 10 19 6 17 6 17 16 19 16 19 9 20.5 13 22 9 22 16 24 16 24 6z"}),(0,a.jsx)("path",{d:"M9 8 11 8 11 16 13 16 13 8 15 8 15 6 9 6 9 8z"}),(0,a.jsx)("path",{d:"M5 6 5 10 2 10 2 6 0 6 0 16 2 16 2 12 5 12 5 16 7 16 7 6 5 6z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M30,11H25V21h2V18h3a2.0027,2.0027,0,0,0,2-2V13A2.0023,2.0023,0,0,0,30,11Zm-3,5V13h3l.001,3Z"}),(0,a.jsx)("path",{d:"M10 13 12 13 12 21 14 21 14 13 16 13 16 11 10 11 10 13z"}),(0,a.jsx)("path",{d:"M23 11 17 11 17 13 19 13 19 21 21 21 21 13 23 13 23 11z"}),(0,a.jsx)("path",{d:"M6 11 6 15 3 15 3 11 1 11 1 21 3 21 3 17 6 17 6 21 8 21 8 11 6 11z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M23.4761,13.9932,16.8472,3.4365a1.04,1.04,0,0,0-1.6944,0L8.4941,14.0444A9.9861,9.9861,0,0,0,7,19a9,9,0,0,0,18,0A10.0632,10.0632,0,0,0,23.4761,13.9932ZM16,26.0005a7.0089,7.0089,0,0,1-7-7,7.978,7.978,0,0,1,1.2183-3.9438l.935-1.4888L21.2271,23.6411A6.9772,6.9772,0,0,1,16,26.0005Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,12a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L25.17,2.4141a1.0381,1.0381,0,0,1,1.6592,0L29.3154,6.11A3.9693,3.9693,0,0,1,30,8.223,3.8978,3.8978,0,0,1,26,12Zm0-7.2368L24.3438,7.2257A1.89,1.89,0,0,0,24,8.223a2.0139,2.0139,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z"}),(0,a.jsx)("path",{d:"M23.5,30H8.5A6.4962,6.4962,0,0,1,7.2,17.1381a8.9938,8.9938,0,0,1,17.6006,0A6.4964,6.4964,0,0,1,23.5,30ZM16,12a7,7,0,0,0-6.9414,6.1452l-.0991.8122-.8155.064A4.4962,4.4962,0,0,0,8.5,28h15a4.4962,4.4962,0,0,0,.3564-8.9786l-.8154-.064-.0986-.8122A7.0022,7.0022,0,0,0,16,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.6521,4.1821l-2.177,2.5142L19.0713,8.3174,20.7864,9.605A7.9361,7.9361,0,0,1,23.9963,16l.0008.0576.0017.0415c.018.4317.2412,10.1113-14.6538,11.7222l2.18-2.5176,1.4039-1.6211L11.2139,22.395A7.9361,7.9361,0,0,1,8.0037,16l-.0008-.0576-.0017-.0415C7.9832,15.47,7.7605,5.8071,22.6521,4.1821M24.9978,2c-.0164,0-.0327,0-.0493.001C5.2532,2.9146,6.0037,16,6.0037,16a9.975,9.975,0,0,0,4.0095,7.9946L6.2368,28.3555A1.0044,1.0044,0,0,0,7.0022,30c.0164,0,.0327,0,.0493-.001C26.7468,29.0854,25.9963,16,25.9963,16a9.9756,9.9756,0,0,0-4.0092-7.9946l3.7761-4.3609A1.0044,1.0044,0,0,0,24.9978,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,24.1836V20H15v4.1836a3,3,0,1,0,2,0Z"}),(0,a.jsx)("path",{d:"M26,12a3.9962,3.9962,0,0,0-3.8579,3H9.8579a4,4,0,1,0,0,2H22.1421A3.9934,3.9934,0,1,0,26,12ZM6,18a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,6,18Zm20,0a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,26,18Z"}),(0,a.jsx)("path",{d:"M19,5a3,3,0,1,0-4,2.8164V12h2V7.8164A2.9917,2.9917,0,0,0,19,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,22a3.9583,3.9583,0,0,0-2.02.5659L17.4141,16,23.981,9.4331A3.9521,3.9521,0,0,0,26,10a4,4,0,1,0-4-4,3.951,3.951,0,0,0,.5669,2.019L16,14.5859,9.4343,8.02A3.9577,3.9577,0,0,0,10,6a4,4,0,1,0-4,4,3.9583,3.9583,0,0,0,2.02-.5659L14.5859,16,8.019,22.5669A3.9521,3.9521,0,0,0,6,22a4,4,0,1,0,4,4,3.951,3.951,0,0,0-.5669-2.019L16,17.4141,22.5657,23.98A3.9577,3.9577,0,0,0,22,26a4,4,0,1,0,4-4ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m28,26c-.7384,0-1.3762.4047-1.7226,1h-5.2774l7.7998-10.4004c.2275-.3027.2642-.708.0947-1.0469s-.5156-.5527-.8945-.5527h-10.1843c-.4141-1.1615-1.5138-2-2.8157-2-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c1.3019,0,2.4016-.8385,2.8157-2h8.1843l-7.7998,10.4004c-.2275.3027-.2642.708-.0947,1.0469s.5156.5527.8945.5527h7.2774c.3464.5953.9842,1,1.7226,1,1.1046,0,2-.8954,2-2s-.8954-2-2-2Zm-13-9c-.5513,0-1-.4482-1-1s.4487-1,1-1,1,.4482,1,1-.4487,1-1,1Z"}),(0,a.jsx)("path",{d:"m16,21h-2v4.5859L4.4139,16,14,6.4142v4.5858h2v-6h10v8h2V5c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2v22c0,1.1046.8954,2,2,2h12v-8ZM4,5h8.5858L4,13.5858V5Zm0,22v-8.5858l8.5858,8.5858H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5.5 23 2 30 9 30 5.5 23z"}),(0,a.jsx)("path",{d:"m26,15v2c1.1025,0,2,.8975,2,2v5c0,1.1025-.8975,2-2,2H10v2h16c2.2061,0,4-1.7939,4-4v-5c0-2.2056-1.7939-4-4-4Z"}),(0,a.jsx)("path",{d:"m14,24c-.4463,0-.8389-.2959-.9614-.7251l-1.793-6.2749h-3.2456v-2h4c.4463,0,.8389.2959.9614.7251l1.0386,3.6348,3.0386-10.6348c.1226-.4292.5151-.7251.9614-.7251s.8389.2959.9614.7251l1.793,6.2749h3.2456v2h-4c-.4463,0-.8389-.2959-.9614-.7251l-1.0386-3.6348-3.0386,10.6348c-.1226.4292-.5151.7251-.9614.7251Z"}),(0,a.jsx)("path",{d:"m4,13v-5c0-1.103.897-2,2-2h16v-2H6c-2.2056,0-4,1.7944-4,4v5c0,2.2056,1.7944,4,4,4v-2c-1.103,0-2-.897-2-2Z"}),(0,a.jsx)("circle",{cx:"27",cy:"5",r:"3"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,12c-1.1393,0-2.1624.484-2.8915,1.2505l-3.1586-1.7552c.0272-.162.05-.3257.05-.4954,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,1.0923.5928,2.0405,1.4676,2.5651l-.8963,4.4782c-1.4501.2102-2.5713,1.4492-2.5713,2.9567,0,1.6543,1.3457,3,3,3s3-1.3457,3-3c0-.0867-.0183-.1684-.0256-.2533l4.9317-2.2424c.7339.9048,1.8404,1.4957,3.0939,1.4957,2.2061,0,4-1.7939,4-4s-1.7939-4-4-4ZM12.9989,10.0002c.552,0,1.0004.4482,1.0004,1s-.4484,1-1.0004,1-1.0004-.4482-1.0004-1,.4484-1,1.0004-1ZM10.9982,22.0001c-.552,0-1.0004-.4482-1.0004-1s.4484-1,1.0004-1c.4135,0,.7687.2517.9209.6099l.0009.002c.0504.1194.0785.2505.0785.3881,0,.5518-.4484,1-1.0004,1ZM13.1545,18.9224c-.1838-.1906-.395-.3505-.6233-.4874l.8966-4.4782c.5893-.0854,1.1195-.3394,1.5463-.7159l3.1684,1.7599c-.0835.3213-.1418.6522-.1418.9993,0,.2355.0303.4633.0695.6877l-4.9158,2.2345ZM22.0022,18.0002c-1.1029,0-2.0007-.8975-2.0007-2s.8978-2,2.0007-2,2.0007.8975,2.0007,2-.8978,2-2.0007,2ZM27.0908,11.4079c.6175,1.4903.9125,3.0496.9092,4.5921-.0033,1.5629-.3128,3.1085-.9009,4.5475l1.7934.8965c.7238-1.7181,1.1039-3.5704,1.1075-5.444.0035-1.7996-.3405-3.6188-1.061-5.3572-2.2286-5.3799-7.4473-8.6357-12.939-8.6428-1.7888-.0023-3.6066.3401-5.3595,1.0661l.7655,1.8474c1.5025-.6221,3.0607-.9156,4.594-.9135,4.7072.0063,9.1801,2.7969,11.0908,7.4079ZM20.594,27.0868c-1.5026.6222-3.0607.9152-4.594.9132-4.7075-.0062-9.1802-2.797-11.0908-7.4076-.6175-1.4904-.9125-3.0498-.9092-4.5924.0033-1.5627.3128-3.1082.9009-4.5472l-1.7934-.8965c-.7237,1.718-1.1039,3.5702-1.1075,5.4437-.0035,1.7997.3404,3.619,1.061,5.3576,1.4775,3.5657,4.2683,6.1985,7.582,7.5705,1.6852.6977,3.5055,1.0695,5.357,1.0719,1.7887.0024,3.6064-.3399,5.3594-1.0658l-.7654-1.8474ZM25,23c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2ZM7,5c-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2-.88-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,19c-.2045,0-.404.0212-.597.0604l-2.5553-4.2578c.711-.7224,1.1523-1.7111,1.1523-2.8026,0-2.2061-1.7939-4-4-4s-4,1.7939-4,4c0,1.0931.4424,2.0834,1.1552,2.806l-3.111,5.1983c-.0151-.0003-.0291-.0043-.0443-.0043-1.12,0-2,.88-2,2s.88,2,2,2,2-.88,2-2c0-.3502-.0941-.6718-.2466-.9555l3.1263-5.2239c.3578.1053.7288.1794,1.1203.1794.3933,0,.7659-.0747,1.1251-.1809l2.5706,4.2833c-.428.5187-.6957,1.1741-.6957,1.8976,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3ZM14,12c0-1.1025.8975-2,2-2s2,.8975,2,2-.8975,2-2,2-2-.8975-2-2ZM22,23c-.5518,0-1-.4482-1-1s.4482-1,1-1,1,.4482,1,1-.4482,1-1,1ZM30,16.9995v-.0005h0c-.0005-7.7192-6.2805-13.999-14-13.999S2,9.2803,2,17c0,4.1558,2.0088,7.644,3.3611,8.8938,1.0293.9512,2.5835,2.1062,4.6389,2.1062,3.3086,0,6-2.6917,6-6,0-.834-.168-1.6416-.5-2.4006l-1.832.8008c.2197.5049.332,1.0432.332,1.5999,0,2.2056-1.7939,4-4,4s-4-1.7944-4-4,1.7939-4,4-4v-2c-2.5745,0-4.7689,1.6328-5.6187,3.9148-.2546-.9341-.3813-1.9031-.3813-2.9148,0-6.6167,5.3828-12,12-12s12,5.3833,12,12h.001c0,1.0518-.1367,2.0977-.4053,3.1084l1.9316.5156c.3145-1.1804.4734-2.3997.4727-3.624h0v-.0005Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9,6h-2v10h2V6ZM28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-4,2.3333c-.3071.1792-.4961.5081-.4961.8638v8.6667h2V4.9076l3-1.7499,11,6.4166v3.4257h2v-4c0-.3557-.189-.6846-.4961-.8638ZM4.9987,22.4315v-13.4315h-1.9987v14.006c0,.3559.1889.6849.4958.8642l10.4971,6.1298,1.0072-1.7282h-.0001s-10.0013-5.8403-10.0013-5.8403ZM22,26.9999h2v-9.9999h-2v9.9999ZM27,27h2v-6h-2v6ZM17,27h2v-8h-2v8Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28,11c-.75,0-1.39.4-1.73,1h-10.27c-2.21,0-4,1.79-4,4,0,.73.21,1.41.56,2h-6.83c-.34-.6-.98-1-1.73-1-1.12,0-2,.88-2,2s.88,2,2,2c.75,0,1.39-.4,1.73-1h10.27c2.21,0,4-1.79,4-4,0-.73-.21-1.41-.56-2h6.83c.34.6.98,1,1.73,1,1.12,0,2-.88,2-2s-.88-2-2-2ZM18,16c0,1.1-.9,2-2,2s-2-.9-2-2,.9-2,2-2,2,.9,2,2ZM5.05,15h-2c0-7.29,5.08-12,12.95-12h10v2h-10c-6.75,0-10.95,3.83-10.95,10ZM16.05,29H6.05v-2h10c6.14,0,10.95-4.39,10.95-10h2c0,6.73-5.69,12-12.95,12Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,26V15.8281l-3.5859,3.586L0,18l6-6,6,6-1.4141,1.4141-3.5859-3.586v10.1719h12v2H7c-1.104-.0013-1.9987-.896-2-2Z"}),(0,a.jsx)("path",{d:"M31,18h-3v-2h-2v2h-1c-1.1046,0-2,.8954-2,2v2c0,1.1046,.8954,2,2,2h4v2h-6s0,2,0,2h3v2h2v-2h1c1.1046,0,2-.8954,2-2v-2c0-1.1046-.8954-2-2-2h-4v-2h6v-2Z"}),(0,a.jsx)("path",{d:"M28,12V6c-.0012-1.104-.896-1.9988-2-2H12v2h14v6"}),(0,a.jsx)("path",{d:"M2 6H7V8H2z"}),(0,a.jsx)("path",{d:"M2 2H10V4H2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,26h5c3.86,0,7-3.14,7-7v-2h-2v2c0,2.76-2.24,5-5,5h-5v2Z"}),(0,a.jsx)("path",{d:"m20.25,14c-2.34,0-4.25-1.91-4.25-4.25,0-1.79,1.14-3.38,2.78-3.99.74-2.21,2.84-3.76,5.22-3.76s4.48,1.55,5.22,3.76c1.65.61,2.78,2.19,2.78,3.99,0,2.29-1.86,4.19-4.14,4.25h-7.61Zm3.75-10c-1.64,0-3.08,1.17-3.42,2.77l-.14.64-.64.13c-1.04.21-1.8,1.14-1.8,2.2,0,1.24,1.01,2.26,2.25,2.26h7.58c1.18-.03,2.17-1.05,2.17-2.26,0-1.06-.76-1.99-1.8-2.2l-.64-.13-.14-.64c-.34-1.6-1.78-2.77-3.42-2.77Z"}),(0,a.jsx)("path",{d:"m4,14h2v-2c0-2.76,2.24-5,5-5h4v-2h-4c-3.86,0-7,3.14-7,7v2Z"}),(0,a.jsx)("path",{d:"m10,17h-6c-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-10c0-1.1-.9-2-2-2Zm0,2v2h-6v-2h6Zm0,4v2h-6v-2h6Zm-6,6v-2h6v2H4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M26,32l-2.1387-1.0117c-1.7383-.8232-2.8613-2.5977-2.8613-4.5205v-6.4678h10v6.4678c0,1.9238-1.123,3.6973-2.8613,4.5195l-2.1387,1.0127Zm-1.2832-2.8203l1.2832,.6074,1.2832-.6074c1.043-.4932,1.7168-1.5576,1.7168-2.7119v-4.4678h-6v4.4678c0,1.1543,.6738,2.2188,1.7168,2.7119h0Z"}),(0,a.jsx)("path",{d:"M17,10.5859c-.3752-.375-.8838-.5859-1.4143-.5859h-5.5857c-1.1045,0-2,.8955-2,2v14c0,1.1045,.8955,2,2,2h9v-2H10V12h4v4c0,1.1045,.8955,2,2,2h4.2917c.6929,0,1.312-.4136,1.5771-1.0537,.2656-.6406,.1201-1.3711-.3701-1.8613l-4.4988-4.499Zm-1,5.4141v-3.5859l3.5852,3.5859h-3.5852Z"}),(0,a.jsx)("path",{d:"M28,6H16l-3.4141-3.4141c-.3752-.375-.8838-.5859-1.4143-.5859H4c-1.1045,0-2,.8955-2,2V24c0,1.1045,.8955,2,2,2h2v-2H4V4h7.1716l4,4h12.8284v10h2V8c0-1.1045-.8955-2-2-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,21c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5ZM16,13c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3ZM27,25c0-1.1046-.8954-2-2-2s-2,.8954-2,2,.8954,2,2,2,2-.8954,2-2ZM5,7c0,1.1046.8954,2,2,2s2-.8954,2-2-.8954-2-2-2-2,.8954-2,2ZM30,16c0-7.7197-6.2803-14-14-14-1.8638,0-3.6758.3623-5.3857,1.0771l.7715,1.8457c1.4644-.6123,3.0166-.9229,4.6143-.9229,6.2803,0,11.4492,4.8496,11.959,11h-4.959v2h7v-1ZM21.3857,28.9229l-.7715-1.8457c-1.4639.6123-3.0166.9229-4.6143.9229-6.2798,0-11.4487-4.8496-11.9585-11h4.9585v-2H2v1c0,7.7197,6.2803,14,14,14,1.8643,0,3.6768-.3623,5.3857-1.0771Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m24,21v2h1.7483c-2.2363,3.1196-5.8357,5-9.7483,5-6.6169,0-12-5.3833-12-12h-2c0,7.7197,6.2803,14,14,14,4.355,0,8.3743-2.001,11-5.3452v1.3452h2v-5h-5Z"}),(0,a.jsx)("path",{d:"m22.5046,11.6367l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z"}),(0,a.jsx)("path",{d:"m16,2c-4.355,0-8.3743,2.001-11,5.3452v-1.3452h-2v5h5v-2h-1.7483c2.2363-3.1196,5.8357-5,9.7483-5,6.6169,0,12,5.3833,12,12h2c0-7.7197-6.2803-14-14-14Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,20v2h5.22a11.0163,11.0163,0,0,1-11.97,4.6533l-.4986,1.937A13,13,0,0,0,26,24.293V28h2V20Z"}),(0,a.jsx)("path",{d:"M25,3a4.0045,4.0045,0,0,0-4,4,3.954,3.954,0,0,0,.5669,2.019L9.019,21.5669A3.9521,3.9521,0,0,0,7,21a4,4,0,1,0,4,4,3.954,3.954,0,0,0-.5669-2.019L22.981,10.4331A3.9518,3.9518,0,0,0,25,11a4,4,0,0,0,0-8ZM7,27a2,2,0,1,1,2-2A2.002,2.002,0,0,1,7,27ZM25,9a2,2,0,1,1,2-2A2.002,2.002,0,0,1,25,9Z"}),(0,a.jsx)("path",{d:"M16,3A13.04,13.04,0,0,0,6,7.707V4H4v8h8V10H6.78a11.0163,11.0163,0,0,1,11.97-4.6533l.4986-1.937A13.0358,13.0358,0,0,0,16,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27.69,16.37c.84.83,1.31,1.97,1.31,3.15,0,1.19-.47,2.33-1.32,3.17-.88.87-2.03,1.31-3.18,1.31s-2.31-.44-3.19-1.31c-.59-.59-7.76-7.72-10.76-10.7l-1.27-1.27c-.59-.61-1.46-.84-2.28-.66-.47.11-.91.31-1.26.66-.47.47-.73,1.1-.73,1.76s.26,1.29.73,1.76c.52.51,6.74,6.7,6.74,6.7l-1.42,1.41-6.74-6.7c-.85-.85-1.32-1.97-1.32-3.17s.47-2.32,1.32-3.17c.85-.85,1.98-1.31,3.18-1.31s2.33.47,3.18,1.31l1.27,1.27,10.76,10.7c.98.97,2.56.97,3.54,0,.47-.47.73-1.1.73-1.76s-.26-1.29-.73-1.76l-6.73-6.69,1.42-1.41,6.74,6.7h0l.01.01ZM16,2c2.21,0,4,1.79,4,4s-1.79,4-4,4h0c-2.21,0-4-1.79-4-4s1.79-4,4-4h0ZM16.02,8c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01ZM20,26c0,2.21-1.79,4-4,4s-4-1.79-4-4,1.79-4,4-4,4,1.79,4,4ZM16.02,28c1.09,0,1.98-.9,1.98-2s-.89-2-1.98-2h-.09c-1.1.03-1.96.95-1.93,2.04h0c.02,1.1.92,1.97,2.02,1.95h0v.01Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M27,22.1V13h-2v9.1c-1.4,0.4-2.5,1.5-2.9,2.9H13v2h9.1c0.4,1.7,2,3,3.9,3c2.2,0,4-1.8,4-4C30,24.1,28.7,22.6,27,22.1z M26,28c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S27.1,28,26,28z"}),(0,a.jsx)("path",{d:"M10,30H2v-8h8V30z M4,28h4v-4H4V28z"}),(0,a.jsx)("path",{d:"M9.9,7H19V5H9.9C9.4,3.3,7.9,2,6,2C3.8,2,2,3.8,2,6c0,1.9,1.3,3.4,3,3.9V19h2V9.9C8.4,9.5,9.5,8.4,9.9,7z M6,8 C4.9,8,4,7.1,4,6s0.9-2,2-2s2,0.9,2,2S7.1,8,6,8z"}),(0,a.jsx)("path",{d:"M22 2 22 4 26.6 4 11 19.6 12.4 21 28 5.4 28 10 30 10 30 2z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m16,13c-3.4207,0-6,1.5049-6,3.5v8c0,1.9951,2.5793,3.5,6,3.5s6-1.5049,6-3.5v-8c0-1.9951-2.5793-3.5-6-3.5Zm0,2c2.4814,0,4,.9712,4,1.5s-1.5186,1.5-4,1.5-4-.9712-4-1.5,1.5186-1.5,4-1.5Zm0,11c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Zm0-4c-2.4814,0-4-.9712-4-1.5v-1.3525c1.0469.5342,2.4331.8525,4,.8525s2.9531-.3184,4-.8525v1.3525c0,.5288-1.5186,1.5-4,1.5Z"}),(0,a.jsx)("path",{d:"m30,15.5c0,3.08-2.14,5.65-5.0099,6.3199v-2.0699c1.75-.62,3.0099-2.28,3.0099-4.25,0-2.33-1.83-4.29-4.15-4.4801l-.81-.0599-.1-.8099c-.43-3.5-3.42-6.15-6.94-6.15-3.53,0-6.52,2.65-6.95,6.15l-.1.8099-.81.0599c-2.32.1901-4.14,2.1501-4.14,4.4801,0,1.96,1.25,3.62,2.9901,4.24v2.08c-2.86-.6799-4.9901-3.25-4.9901-6.3199,0-3.1,2.22-5.75,5.2-6.36.86-4.1201,4.52-7.14,8.8-7.14,4.27,0,7.9301,3.0199,8.8,7.14,2.97.61,5.2,3.26,5.2,6.36Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M31.3579,22h-8.397v-2.3287l3.6545-3.1277c1.3259-1.1389,1.7849-1.8019,1.7849-2.8047v-.238c0-.9009-.7991-1.3599-1.564-1.3599-1.1218,0-1.6658,.7649-1.9038,1.6658l-2.2268-.8499c.5271-1.6488,1.9038-3.0256,4.3687-3.0256,2.5667,0,4.0457,1.5128,4.0457,3.5696,0,2.0398-1.4619,3.2806-3.1619,4.6235l-2.2097,1.7339h5.6094v2.1417Z"}),(0,a.jsx)("path",{d:"M12.8291,9.4212h2.5159v5.1505h.085c.2549-.986,1.2407-1.6998,2.3967-1.6998,2.2607,0,3.4336,1.6318,3.4336,4.6575s-1.1729,4.6746-3.4336,4.6746c-1.156,0-2.1418-.731-2.3967-1.6998h-.085v1.4958h-2.5159V9.4212Zm5.8135,8.8901v-1.5469c0-1.1218-.697-1.8528-1.6489-1.8528s-1.6487,.4929-1.6487,1.3088v2.6348c0,.8159,.6968,1.3088,1.6487,1.3088s1.6489-.731,1.6489-1.8528Z"}),(0,a.jsx)("path",{d:"M1.1163,10.1351H5.5867c3.1448,0,5.2185,1.9889,5.2185,5.9325s-2.0737,5.9324-5.2185,5.9324H1.1163V10.1351Zm4.4704,9.5687c1.53,0,2.4819-.8329,2.4819-2.7197v-1.8358c0-1.8868-.9519-2.7197-2.4819-2.7197h-1.8867v7.2753h1.8867Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m22.5039,17.6362l-6-3.5c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362l-6,3.5c-.3071.1792-.4961.5083-.4961.8638v7c0,.3555.189.6846.4961.8638l6,3.5c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l6-3.5c.3071-.1792.4961-.5083.4961-.8638v-7c0-.3555-.189-.6846-.4961-.8638Zm-1.5039,6.1978l-2.5317-1.519c.0132-.1045.0317-.207.0317-.3149,0-1.0225-.6187-1.9014-1.5-2.2881v-2.9707l4,2.333v4.7598Zm-6-7.0928v2.9707c-.8813.3867-1.5,1.2656-1.5,2.2881,0,.1079.0186.2104.0317.3149l-2.5317,1.519v-4.7598l4-2.333Zm1,11.1011l-3.9517-2.3052,2.5071-1.5039c.4087.291.9055.4668,1.4446.4668s1.0359-.1758,1.4446-.4668l2.5071,1.5039-3.9517,2.3052Z"}),(0,a.jsx)("path",{d:"m24.8,9.14c-.87-4.12-4.52-7.14-8.8-7.14s-7.93,3.02-8.8,7.14c-2.97.6-5.2,3.26-5.2,6.36,0,3.07,2.14,5.63,5,6.31v-2.11c-1.74-.62-3-2.24-3-4.2,0-2.33,1.82-4.31,4.14-4.49l.82-.06.1-.81c.43-3.5,3.41-6.14,6.94-6.14s6.51,2.64,6.94,6.14l.1.81.82.06c2.32.19,4.14,2.16,4.14,4.49,0,1.95-1.26,3.59-3,4.21v2.11c2.86-.68,5-3.26,5-6.32,0-3.11-2.23-5.76-5.2-6.36Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M29,18c-1.1,0-2-.9-2-2s.9-2,2-2,2,.9,2,2-.9,2-2,2ZM24,4c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM24,28c0-1.1-.9-2-2-2s-2,.9-2,2,.9,2,2,2,2-.9,2-2ZM25,15h-4.11c1.3-1.27,2.11-3.04,2.11-5v-2h-2v2c0,2.76-2.24,5-5,5h-7v2h7c2.76,0,5,2.24,5,5v2h2v-2c0-1.96-.81-3.73-2.11-5h4.11v-2ZM11.63,20.29l-.04.02-1.31.77-1.28.76-5-2.96v-5.76l5-2.96,1.28.76,1.31.77.04.02,1.71,1.02,1.02-1.72-1.71-1.02-.04-.02-1.33-.78-1.77-1.05c-.16-.09-.33-.14-.51-.14s-.35.05-.51.14l-6,3.55c-.3.18-.49.51-.49.86v6.9c0,.35.19.68.49.86l6,3.55c.16.09.33.14.51.14s.35-.05.51-.14l1.77-1.05,1.33-.78.04-.02,1.71-1.02-1.02-1.72-1.71,1.02Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M2.9668,20.038h12.0059v2H2.9668v-2ZM2.9668,25.038h12.0059v2H2.9668v-2ZM19,5.038h9.9668v2h-9.9668v-2ZM17,10.0345h11.9668v2h-11.9668v-2ZM26.5049,18.0883l-3.5357,3.5356-3.5356-3.5356-1.4141,1.414,3.5357,3.5357-3.5357,3.5356,1.4141,1.4141,3.5356-3.5357,3.5357,3.5357,1.414-1.4141-3.5356-3.5356,3.5356-3.5357-1.414-1.414ZM7.9667,9.213l-2.5899-2.5899-1.4099,1.41,4,4.0001,7.9998-8-1.4099-1.41-6.5901,6.5898Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"29",cy:"5",r:"2"}),(0,a.jsx)("circle",{cx:"29",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m7,13H1v6h6v-6Zm-2,4h-2v-2h2v2Z"}),(0,a.jsx)("path",{d:"m17.4999,6.6774c-1.316-1.67-3.3437-2.6774-5.4999-2.6774-2.4907,0-4.8135,1.3403-6.063,3.499l-1.1655,2.0186,1.7324,1,1.165-2.0176c.8921-1.542,2.5518-2.5,4.3311-2.5s3.439.958,4.3311,2.4995c.0048.0082.011.0154.0158.0236l-1.9328,3.348c-1.1128,1.9282-3.188,3.1274-5.415,3.1289l.001,1-.001,1c2.2271.002,4.3022,1.2002,5.415,3.1289l1.9326,3.347c-.0049.0084-.0112.0156-.0161.024-.8916,1.542-2.5513,2.5-4.3306,2.5s-3.439-.958-4.3306-2.499l-1.165-2.0186-1.7324,1,1.1655,2.0195c1.249,2.1572,3.5718,3.498,6.0625,3.498,2.1555,0,4.1829-1.0075,5.5004-2.6772,1.3154,1.6699,3.3427,2.6772,5.4996,2.6772h2v-2h-2c-1.7387,0-3.3566-.918-4.2612-2.3972.9349-1.003,2.254-1.6018,3.6547-1.6018h2.6064v-2h-2.6064c-1.7564,0-3.4199.6761-4.6906,1.824l-1.5565-2.6961c-.7776-1.3467-1.9164-2.4129-3.2465-3.1289,1.3301-.716,2.4688-1.7822,3.2465-3.1289l1.5565-2.6962c1.2706,1.1483,2.9341,1.8246,4.6906,1.8246h2.6064v-2h-2.6064c-1.4005,0-2.7194-.5986-3.6552-1.6017.9044-1.4795,2.5226-2.3978,4.2616-2.3978h2v-2h-2c-2.157,0-4.1844,1.0074-5.5001,2.6774Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m29.9467,13.9356h-2c-.7368,0-1.3748.4051-1.7218,1H6.0151l2.625-7h7.3073v-2h-7.3073c-.8291,0-1.5811.521-1.873,1.2974l-2.5137,6.7026-2.3066-.0005v2l2,.0002v9.0002c0,1.103.8975,2,2,2v3h2v-3h16v3h2v-3c1.1025,0,2-.897,2-2v-9h2v-2ZM5.9467,24.9356v-3h3v-2h-3v-3h20v3h-3v2h3v3H5.9467Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M11.979 19.941H19.979V21.941H11.979z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29.5367 2.5256 22.9467 9.1154 20.3567 6.5255 18.9467 7.9356 22.9467 11.9356 30.9467 3.9356 29.5367 2.5256z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m20,16c-.0925,0-.1792.021-.27.0273l-.8916-2.6743c.7017-.5493,1.1616-1.3945,1.1616-2.353,0-1.6543-1.3457-3-3-3s-3,1.3457-3,3c0,.3804.0784.7412.208,1.0762l-2.7224,2.333c-.4399-.2529-.9426-.4092-1.4856-.4092-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.9915,0,1.865-.4893,2.4116-1.2324l3.6038,1.0811c-.002.0513-.0154.0996-.0154.1514,0,2.2056,1.7944,4,4,4s4-1.7944,4-4-1.7944-4-4-4Zm-3-6c.5513,0,1,.4487,1,1s-.4487,1-1,1-1-.4487-1-1,.4487-1,1-1Zm-7,8c-.5513,0-1-.4487-1-1s.4487-1,1-1,1,.4487,1,1-.4487,1-1,1Zm2.9849-1.1484c-.0161-.3257-.0806-.6372-.1929-.9277l2.7224-2.333c.4243.2441.908.3936,1.4294.4033l.885,2.6553c-.5046.3281-.9229.7695-1.2363,1.2842l-3.6077-1.082Zm7.0151,5.1484c-1.103,0-2-.8975-2-2s.897-2,2-2,2,.8975,2,2-.897,2-2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27.4961,9.8638l-11.4961-6.7061-8.4961,4.9561-1.0078-1.7275L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l12,7-1.0078,1.7275Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16.5039,30.8638l-1.0078-1.7275,11.5039-6.7106v-10.4257h2v11c0,.3557-.189.6846-.4961.8638l-12,7Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12.4961,29.1138l-9-5.25c-.3071-.1792-.4961-.5081-.4961-.8638v-14h2v13.4257l8.5039,4.9606-1.0078,1.7275Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m13.76,10.463l-3.297,3.297c-.6173.6173-.6173,1.6227,0,2.24l12.0044,12h5.5326v-5.5326l-12-12.0044c-.6173-.6173-1.6226-.6173-2.2399,0h0Zm12.24,12.8328v2.7042h-2.7042l-7.4409-7.4409,2.7042-2.7042,7.4409,7.4409Zm-8.855-8.8549l-2.7041,2.7041-2.2672-2.2672,2.7042-2.7042,2.2671,2.2673Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,2v8h-8v-2h4.92c-2.25-2.53-5.46-4-8.92-4-6.61,0-12,5.38-12,12,0,6.61,5.39,12,12,12h1v2h-1c-7.72,0-14-6.28-14-14S8.28,2,16,2c3.83,0,7.4,1.5499,10,4.23V2h2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M18 26 26.1719 26 23.5859 28.5859 25 30 30 25 25 20 23.5859 21.4141 26.1719 24 18 24 18 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10 21H15V23H10z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M10 16H20V18H10z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m24.7,9.3l-7-7c-.2-.2-.4-.3-.7-.3H7c-1.1,0-2,.8999-2,2v24c0,1.103.8975,2,2,2h8v-2h-8V4h8v6c0,1.1001.9,2,2,2h6v6h2v-8c0-.3-.1-.5-.3-.7Zm-7.7.7v-5.6001l5.6,5.6001h-5.6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31,22v-2h-2.1006c-.1299-.6372-.3845-1.2285-.7322-1.7529l1.4895-1.4897-1.4141-1.4141-1.4897,1.4897c-.5244-.3477-1.1157-.6021-1.7529-.7319v-2.1011h-2v2.1011c-.6372.1299-1.2285.3843-1.7529.7319l-1.4897-1.4897-1.4141,1.4141,1.4893,1.4897c-.3477.5244-.6021,1.1157-.7319,1.7529h-2.1006v2h2.1006c.1299.6372.3843,1.2285.7319,1.7532l-1.4893,1.4895,1.4141,1.4141,1.4897-1.4897c.5244.3477,1.1157.6021,1.7529.7319v2.1011h2v-2.1011c.6372-.1299,1.2285-.3843,1.7529-.7319l1.4897,1.4897,1.4141-1.4141-1.4895-1.4895c.3479-.5247.6023-1.116.7322-1.7532h2.1006Zm-7,2c-1.6567,0-3-1.3433-3-3s1.3433-3,3-3c1.6567,0,3,1.3433,3,3s-1.3433,3-3,3Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,6c0-2.7568-2.2432-5-5-5-1.7798,0-3.439.9575-4.3306,2.4995-.3201.5535-.5259,1.146-.6289,1.7944-1.1428-.8115-2.5352-1.2939-4.0405-1.2939C3.1401,4,0,7.1401,0,11c0,2.6981,1.5368,5.0403,3.7787,6.2083-1.0787.918-1.7787,2.2679-1.7787,3.7917,0,2.7568,2.2432,5,5,5,.7344,0,1.4265-.1685,2.0552-.4539.2764,2.4973,2.375,4.4539,4.9448,4.4539,1.335,0,2.5908-.52,3.5356-1.4639l-1.4141-1.415c-.5669.5669-1.3203.8789-2.1216.8789-1.6543,0-3-1.3457-3-3s1.3457-3,3-3v-2c-.7344,0-1.4265.1685-2.0552.4539-.1435-1.2966-.7849-2.4395-1.7218-3.2463,2.241-1.1685,3.777-3.51,3.777-6.2075,0-.1472-.0139-.2911-.0229-.4363.6199.2761,1.3018.4363,2.0229.4363,2.7568,0,5-2.2432,5-5Zm-7.5991-1.4995c.5352-.9253,1.5312-1.5005,2.5991-1.5005,1.6543,0,3,1.3457,3,3s-1.3457,3-3,3-3-1.3457-3-3h-.0293c.0352-.5762.1714-1.0522.4302-1.4995Zm-3.4009,16.4995c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Zm-3-5c-2.7568,0-5-2.2432-5-5s2.2432-5,5-5,5,2.2432,5,5-2.2432,5-5,5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m28,4h-3v1.9991l3-.0005v20.0015h-3v2h3c1.103,0,2-.897,2-2V6c0-1.103-.897-2-2-2Z"}),(0,a.jsx)("circle",{cx:"16",cy:"17",r:"2",strokeWidth:"0"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m22,4v24c0,1.103-.897,2-2,2H4c-1.103,0-2-.897-2-2V4c0-1.103.897-2,2-2h16c1.103,0,2,.897,2,2ZM4,28h16s0-24.0015,0-24.0015l-16,.0015v24Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m4,10h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v4c0,1.1046.8954,2,2,2Zm0-6h4v4h-4v-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28,22h-4c-1.1046,0-2,.8954-2,2v4c0,1.1046.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2Zm0,6h-4v-4h4v4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21.414,12.586l-1.414,1.414,6,6,6-6-1.414-1.414-3.586,3.586V7c0-1.1046-.8954-2-2-2h-13v2h13v9.172l-3.586-3.586Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m7,15.828l3.586,3.586,1.414-1.414-6-6L0,18l1.414,1.414,3.586-3.586v9.172c0,1.1046.8954,2,2,2h13v-2H7v-9.172Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m27,30h-8c-2.2061,0-4-1.7939-4-4,0-1.8887,1.3164-3.4766,3.0801-3.8936.4219-2.332,2.4678-4.1064,4.9199-4.1064s4.498,1.7744,4.9199,4.1064c1.7637.417,3.0801,2.0049,3.0801,3.8936,0,2.2061-1.7939,4-4,4Zm-8-2h8c1.1025,0,2-.8975,2-2s-.8975-2-2-2h-1v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1c-1.1025,0-2,.8975-2,2s.8975,2,2,2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,27h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,15v-4c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v4h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m13,27h-3c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h3v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m25,27h-4c-1.1025,0-2-.8975-2-2v-4c0-1.1025.8975-2,2-2h4c1.1025,0,2,.8975,2,2v4c0,1.1025-.8975,2-2,2Zm-4-6h-.002l.002,4h4v-4h-4Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M25 15H27V17H25z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29 19H31V21H29z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M29 23H31V25H29z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 21H17V23H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 25H17V27H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M15 29H17V31H15z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M19 29H21V31H19z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,13v-2c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v2h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M19 24H21V26H19z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17,21h12c1.1046,0,2,.8954,2,2v4c0,1.1046-.8954,2-2,2h-12c-1.1046,0-2-.8954-2-2v-4c0-1.1046.8954-2,2-2Zm12,6v-4h-12v4h12Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m12,27h-2c-3.8599,0-7-3.1401-7-7v-2h2v2c0,2.7568,2.2432,5,5,5h2v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27,18v-7c0-3.8599-3.1401-7-7-7h-7v2h7c2.7568,0,5,2.2432,5,5v7h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m10,8V4c0-1.1046-.8954-2-2-2H2v13h2v-5h1.48l2.34,5h2.18l-2.33-5h.33c1.1046,0,2-.8954,2-2ZM4,4h4v4h-4V4Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m16,30c-7.7197,0-14-6.2803-14-14h2c0,6.6167,5.3833,12,12,12s12-5.3833,12-12h2c0,7.7197-6.2803,14-14,14Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,26c-5.5139,0-10-4.4861-10-10h2c0,4.4111,3.5889,8,8,8s8-3.5889,8-8h2c0,5.5139-4.4861,10-10,10Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,20c-2.2056,0-4-1.7944-4-4s1.7944-4,4-4,4,1.7944,4,4-1.7944,4-4,4Zm0-6c-1.103,0-2,.897-2,2s.897,2,2,2,2-.897,2-2-.897-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m16,2c-4.9719,0-9.4933,2.6113-12,6.7883v-4.7883h-2v8h8v-2h-4.3881c2.126-3.6848,6.0558-6,10.3881-6,3.2051,0,6.2188,1.248,8.4854,3.5146l1.4141-1.4141c-2.644-2.6445-6.1597-4.1006-9.8994-4.1006Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31.3242,11.2612c-2.5444-2.103-5.7671-3.2612-9.0737-3.2612h-.2505v2h.2505c2.6079,0,5.1543.8374,7.2456,2.3716-1.3672,3.3955-4.1621,5.9414-7.5483,7.0366.0347-.4028.0522-.8096.0522-1.2197,0-7.8237-6.3647-14.1885-14.1885-14.1885-.9282,0-1.8555.0903-2.7563.2681l-.6572.1299-.1299.6572c-.1777.9009-.2681,1.8281-.2681,2.7563,0,4.1244,1.7795,7.8315,4.5983,10.4264-.3759,1.2767-.5992,2.6185-.5992,4.0165l.001.0009c.0011,3.3049,1.159,6.5258,3.261,9.069l.4385.5303.6523-.2202c4.6675-1.5752,8.0962-5.4111,9.2368-10.0454,4.6343-1.1406,8.4702-4.5693,10.0454-9.2368l.2202-.6523-.5303-.4385ZM12.3716,29.4961c-1.5342-2.0913-2.3716-4.6377-2.3716-7.2456h-.0006c.0003-.9115.1136-1.7958.304-2.6512,2.2567,1.5145,4.9689,2.4008,7.8851,2.4008.4102,0,.8169-.0176,1.2197-.0522-1.0952,3.3862-3.6411,6.1812-7.0366,7.5483Zm7.5112-9.6133c-.5557.0771-1.1211.1172-1.6943.1172-2.7159,0-5.2186-.9039-7.2472-2.4116.8616-2.0793,2.2642-3.881,4.0479-5.204l-1.28-1.53c-1.8557,1.3905-3.3427,3.2305-4.3404,5.3458-2.0815-2.1875-3.3687-5.1378-3.3687-8.3887,0-.5684.0391-1.1357.1167-1.6948.5591-.0776,1.1265-.1167,1.6948-.1167,6.7207,0,12.1885,5.4678,12.1885,12.1885,0,.5732-.04,1.1387-.1172,1.6943Z"}),(0,a.jsx)("circle",{cx:"20",cy:"2",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"27",cy:"26",r:"2",strokeWidth:"0"}),(0,a.jsx)("circle",{cx:"2",cy:"20",r:"2",strokeWidth:"0"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"4",cy:"22",r:"2"}),(0,a.jsx)("path",{d:"m13.5,30c-3.0586,0-5.9485-1.4867-7.7305-3.9771l1.6265-1.1638c1.4075,1.9667,3.6892,3.1409,6.104,3.1409,3.969,0,7.2578-3.1002,7.4873-7.0579l1.9966.1157c-.2908,5.0143-4.4565,8.9421-9.4839,8.9421Z"}),(0,a.jsx)("circle",{cx:"28",cy:"23",r:"2"}),(0,a.jsx)("path",{d:"m30.6411,19.0948l-1.9243-.5449c.188-.6638.2832-1.3535.2832-2.0499,0-4.1355-3.3645-7.5-7.5-7.5-1.0769,0-2.1157.223-3.0876.6628l-.8247-1.822c1.2329-.558,2.5491-.8408,3.9124-.8408,5.2383,0,9.5,4.2617,9.5,9.5,0,.8807-.1208,1.7537-.3589,2.5948Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"16",cy:"3",r:"2"}),(0,a.jsx)("path",{d:"m8.0254,19.8821c-3.0999-1.6578-5.0254-4.8696-5.0254-8.3821C3,6.4729,6.9277,2.307,11.9421,2.0161l.1157,1.9966c-3.9578.2297-7.0579,3.5186-7.0579,7.4873,0,2.7732,1.5208,5.3092,3.9688,6.6184l-.9434,1.7637Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"29",cy:"29",r:"2"}),(0,a.jsx)("path",{d:"m25,30h-8c-1.1028,0-2-.8972-2-2v-4h2v4h8v2Z"}),(0,a.jsx)("path",{d:"m30,25h-2v-8h-5v-2h5c1.1028,0,2,.8972,2,2v8Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("path",{d:"m9,17H4c-1.1028,0-2-.8972-2-2V7h2v8h5v2Z"}),(0,a.jsx)("path",{d:"m17,8h-2V4H7v-2h8c1.1028,0,2,.8972,2,2v4Z"}),(0,a.jsx)("circle",{cx:"3",cy:"3",r:"2"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("circle",{cx:"16",cy:"29",r:"2"}),(0,a.jsx)("path",{d:"m22.5,30h-2.5v-2h2.5c3.0327,0,5.5-2.4673,5.5-5.5,0-2.5634-1.7395-4.7644-4.23-5.3528l.46-1.9465c3.3972.8026,5.77,3.8042,5.77,7.2993,0,4.1355-3.3645,7.5-7.5,7.5Z"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"16",cy:"3",r:"2"}),(0,a.jsx)("path",{d:"m7.77,16.7993c-3.3972-.8026-5.77-3.8042-5.77-7.2993C2,5.3645,5.3645,2,9.5,2h2.5v2h-2.5c-3.0327,0-5.5,2.4673-5.5,5.5,0,2.5634,1.7395,4.7645,4.23,5.3528l-.46,1.9465Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m20,27c-2.9795,0-5.7693-1.1719-7.8555-3.2998l1.4282-1.4001c1.7068,1.7411,3.9895,2.7,6.4272,2.7,4.9626,0,9-4.0374,9-9,0-2.3705-.9138-4.6079-2.5732-6.3004l1.4282-1.4001c2.0281,2.0686,3.145,4.8033,3.145,7.7006,0,6.0654-4.9346,11-11,11Z"}),(0,a.jsx)("circle",{cx:"24",cy:"5",r:"2"}),(0,a.jsx)("path",{d:"m20.4141,14.5859l-3-3c-.3774-.3779-.8799-.5859-1.4141-.5859s-1.0366.208-1.4143.5859l-2.9998,3c-.3899.3896-.5859.9019-.5859,1.4141s.196,1.0244.5859,1.4141l2.9998,3c.3777.3779.8801.5859,1.4143.5859s1.0366-.208,1.4141-.5859l3-3c.3899-.3896.5859-.9019.5859-1.4141s-.196-1.0244-.5859-1.4141Zm-4.4141,4.4141l-3-3,3-3,2.9998,3-2.9998,3Z"}),(0,a.jsx)("circle",{cx:"8",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m4.2993,23.855c-2.1277-2.0861-3.2993-4.8757-3.2993-7.855C1,9.9346,5.9346,5,12,5c2.9795,0,5.7693,1.1719,7.8555,3.2998l-1.4282,1.4001c-1.7068-1.7411-3.9895-2.7-6.4272-2.7-4.9626,0-9,4.0374-9,9,0,2.4376.9587,4.7201,2.6997,6.427l-1.4004,1.428Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M2 17 17.1719 17 13.5859 20.5859 15 22 21 16 15 10 13.5859 11.4141 17.1719 15 2 15 2 17z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3481.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v3h2v-2.4258L16,3.1577l11,6.4165v12.8516l-11,6.4165-11.7275-6.8423-1.0078,1.7275,12.2314,7.1362c.1558.0908.3298.1362.5039.1362s.3481-.0454.5039-.1362l12-7c.3071-.1792.4961-.5083.4961-.8638v-14c0-.3555-.189-.6846-.4961-.8638Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M16,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM5,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM27,26c1.1,0,2,.9,2,2s-.9,2-2,2-2-.9-2-2,.9-2,2-2ZM6,24v-3h9v3h2v-3h9v3h2v-3c0-1.1-.9-2-2-2h-9v-3h-2v3H6c-1.1,0-2,.9-2,2v3h2ZM21.7,6.1c-.8-2.4-3.1-4.1-5.7-4.1s-4.9,1.7-5.7,4.1c-1.9.3-3.3,1.9-3.3,3.9s1.8,4,4,4h10c2.2,0,4-1.8,4-4s-1.4-3.6-3.3-3.9ZM21,12h-10c-1.1,0-2-.9-2-2s.9-2,2-2h1c0-2.2,1.8-4,4-4s4,1.8,4,4h1c1.1,0,2,.9,2,2s-.9,2-2,2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M28.5039,8.1362L16.5039,1.1362c-.1558-.0908-.3298-.1362-.5039-.1362s-.3482.0454-.5039.1362L3.4961,8.1362c-.3071.1792-.4961.5083-.4961.8638v14c0,.3555.189.6846.4961.8643l12,7c.1558.0908.3296.1357.5039.1357s.3481-.0449.5039-.1357l12-7c.3076-.1797.4961-.5088.4961-.8643v-14c0-.3555-.1885-.6846-.4961-.8638ZM16,3.1577l10.0155,5.8422-2.3773,1.3867-5.6382-3.2529c-.3105-.1787-.6895-.1787-1,0l-6.4995,3.75c-.1992.115-.3417.2961-.4235.5034l-4.0925-2.3873,10.0155-5.8422h0ZM12,14.8244l3,1.75v3.8291l-3-1.7307v-3.8484ZM16,14.8423l-4-2.3333v-.1813l5.5-3.1733,4.148,2.3933-5.648,3.2947h0ZM17,16.5744l6-3.5v5.5984l-5.5,3.1729-.5-.2885v-4.9828ZM5,10.741l5,2.9167v5.5923c0,.3574.1909.6875.5005.8662l4.4995,2.5961v5.5471l-10-5.8336v-11.6848ZM17,28.2594v-4.3932c.1553.0889.3271.1338.5.1338s.3447-.0449.5-.1338l6.5-3.75c.3096-.1787.5-.5088.5-.8662v-7.3423l2-1.1667v11.6848l-10,5.8336Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"m15,24c-3.8594,0-7-3.1401-7-7s3.1406-7,7-7,7,3.1401,7,7-3.1406,7-7,7Zm0-12c-2.7568,0-5,2.2432-5,5s2.2432,5,5,5,5-2.2432,5-5-2.2432-5-5-5Z"}),(0,a.jsx)("path",{d:"m30,13h-2V4h-9v-2h9c1.1025,0,2,.897,2,2v9Z"}),(0,a.jsx)("path",{d:"m15,30c-7.168,0-13-5.8315-13-13S7.832,4,15,4v2c-6.0654,0-11,4.9346-11,11s4.9346,11,11,11,11-4.9346,11-11v-1h2v1c0,7.1685-5.832,13-13,13Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M9 13H11V19H9z"}),(0,a.jsx)("path",{d:"M21 13H23V19H21z"}),(0,a.jsx)("path",{d:"M13 11H15V24H13z"}),(0,a.jsx)("path",{d:"M17 9H19V22H17z"}),(0,a.jsx)("circle",{cx:"22",cy:"5",r:"2"}),(0,a.jsx)("circle",{cx:"10",cy:"27",r:"2"}),(0,a.jsx)("path",{d:"m22.0916,28h-8.0916v-2h8.0916l5.9082-10-2.6992-4.5679,1.7227-1.0176,2.6992,4.5679c.3701.6274.3701,1.4077,0,2.0352l-5.9092,10c-.3574.6055-1.0176.9824-1.7217.9824Z"}),(0,a.jsx)("path",{d:"m4.9768,21.5859l-2.6992-4.5684c-.3701-.6274-.3701-1.4077,0-2.0352l5.9092-10c.3584-.606,1.0176-.9824,1.7217-.9824h8.0916v2h-8.0916l-5.9082,10,2.6992,4.5684-1.7227,1.0176Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"M12 18 10 18 10 6 7 6 7 18 5 18 5 4 12 4 12 18z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M21 26 19 26 19 12 16 12 16 21.9946 14 21.9946 14 10 21 10 21 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M30 26 28 26 28 18 25 18 25 26 23 26 23 16 30 16 30 26z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M4 20 4 22 8.5859 22 2 28.5859 3.4141 30 10 23.4141 10 28 12 28 12 20 4 20z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M24,25h-3v-3h3v3ZM29,22h-3v3h3v-3ZM24,27h-3v3h3v-3ZM29,27h-3v3h3v-3ZM20,8h-8v2h8v-2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,10h-8v-2h8v2ZM17,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v15h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h11v-2ZM20,15h-8v2h8v-2ZM23.4,24.3l-3.7.5,2.7,2.6-.7,3.6,3.4-1.7,3.2,1.7-.7-3.6,2.7-2.6-3.6-.5-1.7-3.3s-1.6,3.3-1.6,3.3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M20,10h-8v-2h8v2ZM16,28H6v-4h2v-2h-2v-5h2v-2h-2v-5h2v-2h-2v-4h18v17h2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v4h-2v2h2v5h-2v2h2v5h-2v2h2v4c0,1.1.9,2,2,2h10v-2ZM20,15h-8v2h8v-2ZM23,27.2l-2.6-2.6-1.4,1.4,4,4,7-7-1.4-1.4-5.6,5.6Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m22,26v2H4V10h2v-2h-2c-1.1045,0-2,.8955-2,2v18c0,1.1045.8955,2,2,2h18c1.1045,0,2-.8955,2-2v-2h-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m30,5.9932v-1.9932c0-1.1046-.8954-2-2-2H10c-1.1046,0-2,.8954-2,2v18c0,1.1046.8954,2,2,2h18c1.1046,0,2-.8954,2-2v-3h-2v3H10V4h18v1.9932h2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m27.5,17h-9c-1.9297,0-3.5-1.5703-3.5-3.5,0-1.7935,1.3555-3.2759,3.0957-3.4766.4561-2.291,2.4814-4.0234,4.9043-4.0234s4.4482,1.7324,4.9043,4.0234c1.7402.2007,3.0957,1.6831,3.0957,3.4766,0,1.9297-1.5703,3.5-3.5,3.5Zm-9-5c-.8271,0-1.5.6729-1.5,1.5s.6729,1.5,1.5,1.5h9c.8271,0,1.5-.6729,1.5-1.5s-.6729-1.5-1.5-1.5h-1.5v-1c0-1.6543-1.3457-3-3-3s-3,1.3457-3,3v1h-1.5Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m30,30h-2v-2c0-.5513-.4482-1-1-1h-6c-.5518,0-1,.4487-1,1v2h-2v-2c0-1.6543,1.3457-3,3-3h6c1.6543,0,3,1.3457,3,3v2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m24,24c-2.2061,0-4-1.7944-4-4s1.7939-4,4-4,4,1.7944,4,4-1.7939,4-4,4Zm0-6c-1.1025,0-2,.897-2,2s.8975,2,2,2,2-.897,2-2-.8975-2-2-2Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 20H10V22H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 20H18V22H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 16H10V18H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 16H18V18H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M8 12H10V14H8z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"M12 12H18V14H12z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m21,5h-3v-1c0-1.103-.8975-2-2-2h-6c-1.1025,0-2,.897-2,2v1h-3c-1.1025,0-2,.897-2,2v19c0,1.103.8975,2,2,2h9v-2H5V7h3v2h10v-2h3v6.9999h2v-6.9999c0-1.103-.8975-2-2-2Zm-5,2h-6v-3h6v3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{strokeWidth:"0",d:"m31,29.5859l-8.5479-8.5469c-2.0986,2.5171-5.178,3.9609-8.4521,3.9609-6.0654,0-11-4.9346-11-11S7.9346,3,14,3s11,4.9346,11,11c0,1.6001-.3354,3.1416-.9968,4.583l1.8174.834c.7827-1.7041,1.1794-3.5269,1.1794-5.417,0-7.168-5.8318-13-13-13S1,6.832,1,14s5.8318,13,13,13c3.1343,0,6.1025-1.1387,8.4395-3.1465l7.1465,7.1465,1.4141-1.4141Z"}),(0,a.jsx)("path",{strokeWidth:"0",d:"m17,15c-.8066,0-1.5369.3237-2.0767.8438l-2.96-1.4805c.0146-.1201.0366-.2388.0366-.3633s-.022-.2432-.0366-.3633l2.96-1.4805c.5398.52,1.27.8438,2.0767.8438,1.6543,0,3-1.3457,3-3s-1.3457-3-3-3-3,1.3457-3,3c0,.1245.022.2432.0366.3633l-2.96,1.4805c-.5398-.52-1.27-.8438-2.0767-.8438-1.6543,0-3,1.3457-3,3s1.3457,3,3,3c.8066,0,1.5369-.3237,2.0767-.8438l2.96,1.4805c-.0146.1201-.0366.2388-.0366.3633,0,1.6543,1.3457,3,3,3s3-1.3457,3-3-1.3457-3-3-3Zm0-6c.5515,0,1,.4482,1,1s-.4485,1-1,1-1-.4482-1-1,.4485-1,1-1Zm-8,6c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Zm8,4c-.5515,0-1-.4482-1-1s.4485-1,1-1,1,.4482,1,1-.4485,1-1,1Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M17,27v-6h-2v4.6l-9.6-9.6L15,6.4v4.6h2v-6h10v8h2V5c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h12v-2ZM5,5h8.6L5,13.6V5ZM5,27v-8.6l8.6,8.6H5ZM26.6,19l-3.7-3.7c-.2-.2-.4-.3-.6-.3h-3.5c-.6-1.6-2.3-2.4-3.8-1.8-.9.3-1.6,1-1.8,1.9-.5,1.6.4,3.3,2,3.7,1.5.5,3.1-.3,3.7-1.8h3l3.8,3.8c.1.1.3.2.5.2h3.9v-2s-3.5,0-3.5,0ZM16,17c-.6,0-1-.4-1-1s.4-1,1-1,1,.4,1,1-.4,1-1,1ZM24.8,23c-.4-1.2-1.5-2-2.8-2s-3,1.3-3,3,1.4,3,3,3,2.4-.8,2.8-2h5.2v-2h-5.2ZM22,25c-.5,0-1-.5-1-1s.5-1,1-1,1,.5,1,1-.4,1-1,1ZM26,27h4v2h-4v-2ZM28,15h2v2h-2v-2Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M5,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,5,25Z"}),(0,a.jsx)("path",{d:"M16,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,25Z"}),(0,a.jsx)("path",{d:"M27,25a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,27,25Z"}),(0,a.jsx)("path",{d:"M28,23H26V11a2.0059,2.0059,0,0,0-2-2H22V7h2a4.0118,4.0118,0,0,1,4,4Z"}),(0,a.jsx)("path",{d:"M15 12H17V23H15z"}),(0,a.jsx)("path",{d:"M6,23H4V11A4.0118,4.0118,0,0,1,8,7h2V9H8a2.0059,2.0059,0,0,0-2,2Z"}),(0,a.jsx)("path",{d:"M16,2,14.7,4.6343l-2.9057.42,2.1029,2.0514L13.4,10,16,8.6343,18.6,10l-.4972-2.8943,2.1029-2.0486L17.3,4.6343Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22,3v2h-12.4258l-6.4238,11.0117,3.6408,6.5537.7783-2.5654,1.9139.5806-1.7417,5.7416-5.7416-1.7416.5806-1.9139s1.2918.3851,2.375.712l-3.8296-6.8933c-.1719-.3086-.168-.6846.0098-.9893L8.1357,3.4961c.1797-.3076.5088-.4961.8643-.4961h13ZM23,29c.3555,0,.6846-.1885.8643-.4961l7-12c.1777-.3047.1816-.6807.0098-.9893l-3.8296-6.8933c1.0832.3269,2.375.712,2.375.712l.5806-1.9139-5.7416-1.7416-1.7417,5.7416,1.9139.5806.7783-2.5654,3.6408,6.5537-6.4238,11.0117h-12.4258v2h13-.0002ZM21,16c0-2.7568-2.2432-5-5-5s-5,2.2432-5,5,2.2432,5,5,5,5-2.2432,5-5ZM19,16c0,1.6543-1.3457,3-3,3s-3-1.3457-3-3,1.3457-3,3-3,3,1.3457,3,3Z"}),e)}),l.forwardRef(function({children:e,size:t=16,...r},c){return l.createElement(h.A,{width:t,height:t,ref:c,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...r},(0,a.jsx)("path",{d:"M22.5,28.4l-0.9-1.8c4-2.1,6.5-6.2,6.5-10.6c0-6.6-5.4-12-12-12c-1.3,0-2.5,0.2-3.7,0.6l-0.6-1.9C13.1,2.2,14.5,2,16,2 c7.7,0,14,6.3,14,14C30,21.2,27.1,26,22.5,28.4z"}),(0,a.jsx)("path",{d:"M20.5,23.8l-1-1.7c2.2-1.2,3.5-3.6,3.5-6.1c0-3.9-3.1-7-7-7c-0.6,0-1.2,0.1-1.8,0.2l-0.5-1.9C14.5,7.1,15.2,7,16,7 c5,0,9,4,9,9C25,19.2,23.3,22.2,20.5,23.8z"}),(0,a.jsx)("path",{d:"M9.5,28.4C4.9,26,2,21.2,2,16c0-1.5,0.2-2.9,0.7-4.3l1.9,0.6C4.2,13.5,4,14.7,4,16c0,4.5,2.5,8.6,6.5,10.6L9.5,28.4z"}),(0,a.jsx)("path",{d:"M11.5,23.8C8.7,22.2,7,19.2,7,16c0-0.8,0.1-1.5,0.3-2.2l1.9,0.5C9.1,14.8,9,15.4,9,16c0,2.5,1.3,4.8,3.5,6.1L11.5,23.8z"}),(0,a.jsx)("path",{d:"M20,16c0-2.2-1.8-4-4-4c-0.7,0-1.4,0.2-2,0.6L8.9,7.5C9,7.3,9,7.2,9,7c0-1.1-0.9-2-2-2S5,5.9,5,7s0.9,2,2,2 c0.2,0,0.3,0,0.5-0.1l5.1,5.1c-0.4,0.6-0.6,1.3-0.6,2c0,1.9,1.3,3.4,3,3.9v7.4c-0.6,0.3-1,1-1,1.7c0,1.1,0.9,2,2,2s2-0.9,2-2 c0-0.7-0.4-1.4-1-1.7v-7.4C18.7,19.4,20,17.9,20,16z M16,18c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S17.1,18,16,18z"}),e)})}}]);