@volverjs/ui-vue 0.0.1-beta.8 → 0.0.2

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 (561) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +108 -56
  3. package/bin/icons.cjs +73 -0
  4. package/bin/icons.js +75 -0
  5. package/dist/{DesignSystem.d.ts → Volver.d.ts} +22 -18
  6. package/dist/components/VvAccordion/VvAccordion.es.js +165 -0
  7. package/dist/components/VvAccordion/VvAccordion.umd.js +1 -0
  8. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +32 -97
  9. package/dist/components/VvAccordion/index.d.ts +46 -0
  10. package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +243 -0
  11. package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -0
  12. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +77 -151
  13. package/dist/components/VvAccordionGroup/{VvAccordionGroup.d.ts → index.d.ts} +30 -13
  14. package/dist/components/VvBadge/VvBadge.es.js +62 -0
  15. package/dist/components/VvBadge/VvBadge.umd.js +1 -0
  16. package/dist/components/VvBadge/VvBadge.vue.d.ts +13 -54
  17. package/dist/components/VvBadge/{VvBadge.d.ts → index.d.ts} +1 -1
  18. package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +93 -0
  19. package/dist/components/VvBreadcrumb/VvBreadcrumb.umd.js +1 -0
  20. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +33 -107
  21. package/dist/components/VvBreadcrumb/{VvBreadcrumb.d.ts → index.d.ts} +2 -3
  22. package/dist/components/VvButton/VvButton.es.js +439 -0
  23. package/dist/components/VvButton/VvButton.umd.js +1 -0
  24. package/dist/components/VvButton/VvButton.vue.d.ts +100 -199
  25. package/dist/components/VvButton/index.d.ts +132 -0
  26. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +107 -0
  27. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -0
  28. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +92 -186
  29. package/dist/components/VvButtonGroup/index.d.ts +54 -0
  30. package/dist/components/VvCard/VvCard.es.js +77 -0
  31. package/dist/components/VvCard/VvCard.umd.js +1 -0
  32. package/dist/components/VvCard/VvCard.vue.d.ts +16 -61
  33. package/dist/components/VvCard/{VvCard.d.ts → index.d.ts} +1 -1
  34. package/dist/components/VvCheckbox/VvCheckbox.es.js +357 -0
  35. package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -0
  36. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +74 -0
  37. package/dist/components/VvCheckbox/index.d.ts +54 -0
  38. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +435 -0
  39. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -0
  40. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +82 -0
  41. package/dist/components/VvCheckboxGroup/index.d.ts +32 -0
  42. package/dist/components/VvCombobox/VvCombobox.es.js +775 -0
  43. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -0
  44. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +175 -0
  45. package/dist/components/VvCombobox/index.d.ts +108 -0
  46. package/dist/components/VvDialog/VvDialog.es.js +200 -0
  47. package/dist/components/VvDialog/VvDialog.umd.js +1 -0
  48. package/dist/components/VvDialog/VvDialog.vue.d.ts +28 -132
  49. package/dist/components/VvDialog/{VvDialog.d.ts → index.d.ts} +2 -6
  50. package/dist/components/VvDropdown/VvDropdown.es.js +227 -0
  51. package/dist/components/VvDropdown/VvDropdown.umd.js +1 -0
  52. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +59 -146
  53. package/dist/components/VvDropdown/index.d.ts +49 -0
  54. package/dist/components/VvIcon/VvIcon.es.js +124 -0
  55. package/dist/components/VvIcon/VvIcon.umd.js +1 -0
  56. package/dist/components/VvIcon/VvIcon.vue.d.ts +36 -150
  57. package/dist/components/VvIcon/{VvIcon.d.ts → index.d.ts} +9 -0
  58. package/dist/components/VvInputText/VvInputClearAction.d.ts +36 -0
  59. package/dist/components/VvInputText/VvInputPasswordAction.d.ts +56 -0
  60. package/dist/components/VvInputText/VvInputStepAction.d.ts +37 -0
  61. package/dist/components/VvInputText/VvInputText.es.js +772 -0
  62. package/dist/components/VvInputText/VvInputText.umd.js +1 -0
  63. package/dist/components/VvInputText/VvInputText.vue.d.ts +211 -288
  64. package/dist/components/VvInputText/VvInputTextActions.d.ts +1 -1
  65. package/dist/components/VvInputText/index.d.ts +182 -0
  66. package/dist/components/VvProgress/VvProgress.es.js +71 -0
  67. package/dist/components/VvProgress/VvProgress.umd.js +1 -0
  68. package/dist/components/VvProgress/VvProgress.vue.d.ts +20 -107
  69. package/dist/components/VvProgress/index.d.ts +30 -0
  70. package/dist/components/VvRadio/VvRadio.es.js +320 -0
  71. package/dist/components/VvRadio/VvRadio.umd.js +1 -0
  72. package/dist/components/VvRadio/VvRadio.vue.d.ts +55 -125
  73. package/dist/components/VvRadio/index.d.ts +40 -0
  74. package/dist/components/VvRadioGroup/VvRadioGroup.es.js +398 -0
  75. package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -0
  76. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +56 -238
  77. package/dist/components/VvRadioGroup/index.d.ts +32 -0
  78. package/dist/components/VvSelect/VvSelect.es.js +434 -0
  79. package/dist/components/VvSelect/VvSelect.umd.js +1 -0
  80. package/dist/components/VvSelect/VvSelect.vue.d.ts +125 -263
  81. package/dist/components/VvSelect/index.d.ts +89 -0
  82. package/dist/components/VvTextarea/VvTextarea.es.js +471 -0
  83. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -0
  84. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +140 -321
  85. package/dist/components/VvTextarea/index.d.ts +102 -0
  86. package/dist/components/common/HintSlot.d.ts +12 -6
  87. package/dist/components/index.d.ts +19 -12
  88. package/dist/components/index.es.js +2379 -0
  89. package/dist/components/index.umd.js +1 -0
  90. package/dist/composables/group/types/IAccordionGroupState.d.ts +3 -4
  91. package/dist/composables/group/types/IButtonGroupState.d.ts +5 -11
  92. package/dist/composables/group/types/IGroupState.d.ts +3 -6
  93. package/dist/composables/group/types/IInputGroup.d.ts +1 -4
  94. package/dist/composables/group/useInjectedGroupState.d.ts +4 -4
  95. package/dist/composables/group/useProvideGroupState.d.ts +2 -2
  96. package/dist/composables/useComponentFocus.d.ts +4 -0
  97. package/dist/composables/{icons/useComponentIcons.d.ts → useComponentIcons.d.ts} +3 -2
  98. package/dist/composables/useDebouncedInput.d.ts +2 -0
  99. package/dist/composables/useOptions.d.ts +6 -0
  100. package/dist/composables/useTextCount.d.ts +10 -0
  101. package/dist/constants.d.ts +4 -4
  102. package/dist/icons.d.ts +1881 -0
  103. package/dist/icons.es.js +12 -14
  104. package/dist/icons.umd.js +1 -1
  105. package/dist/index.d.ts +9 -4
  106. package/dist/index.es.js +2420 -0
  107. package/dist/index.umd.js +1 -0
  108. package/dist/props/index.d.ts +328 -30
  109. package/dist/resolvers/unplugin.d.ts +27 -0
  110. package/dist/resolvers/unplugin.es.js +42 -0
  111. package/dist/resolvers/unplugin.umd.js +1 -0
  112. package/dist/stories/Accordion/Accordion.settings.d.ts +63 -0
  113. package/dist/stories/Accordion/Accordion.test.d.ts +2 -0
  114. package/dist/stories/AccordionGroup/AccordionGroup.settings.d.ts +58 -0
  115. package/dist/stories/AccordionGroup/AccordionGroup.test.d.ts +2 -0
  116. package/dist/stories/Badge/Badge.settings.d.ts +32 -0
  117. package/dist/stories/Badge/Badge.test.d.ts +2 -0
  118. package/dist/stories/Breadcrumb/Breadcrumb.settings.d.ts +29 -0
  119. package/dist/stories/Breadcrumb/Breadcrumb.test.d.ts +2 -0
  120. package/dist/stories/Button/Button.settings.d.ts +198 -0
  121. package/dist/stories/Button/Button.test.d.ts +1 -10
  122. package/dist/stories/ButtonGroup/ButtonGroup.settings.d.ts +47 -0
  123. package/dist/stories/ButtonGroup/ButtonGroup.test.d.ts +2 -0
  124. package/dist/stories/Card/Card.settings.d.ts +70 -0
  125. package/dist/stories/Card/Card.test.d.ts +2 -0
  126. package/dist/stories/Checkbox/Checkbox.settings.d.ts +165 -0
  127. package/dist/stories/Checkbox/Checkbox.test.d.ts +2 -0
  128. package/dist/stories/CheckboxGroup/CheckboxGroup.settings.d.ts +164 -0
  129. package/dist/stories/CheckboxGroup/CheckboxGroup.test.d.ts +2 -0
  130. package/dist/stories/Combobox/Combobox.settings.d.ts +286 -0
  131. package/dist/stories/Combobox/Combobox.test.d.ts +2 -0
  132. package/dist/stories/Dialog/Dialog.settings.d.ts +55 -0
  133. package/dist/stories/Dialog/Dialog.test.d.ts +2 -0
  134. package/dist/stories/Dropdown/Dropdown.settings.d.ts +85 -0
  135. package/dist/stories/Dropdown/Dropdown.test.d.ts +2 -0
  136. package/dist/stories/Icon/Icon.settings.d.ts +74 -0
  137. package/dist/stories/InputText/InputText.settings.d.ts +445 -0
  138. package/dist/stories/InputText/InputText.test.d.ts +2 -0
  139. package/dist/stories/Progress/Progress.settings.d.ts +38 -0
  140. package/dist/stories/Progress/Progress.test.d.ts +2 -0
  141. package/dist/stories/Radio/Radio.settings.d.ts +139 -0
  142. package/dist/stories/Radio/Radio.test.d.ts +2 -0
  143. package/dist/stories/RadioGroup/RadioGroup.settings.d.ts +164 -0
  144. package/dist/stories/RadioGroup/RadioGroup.test.d.ts +2 -0
  145. package/dist/stories/Select/Select.settings.d.ts +284 -0
  146. package/dist/stories/Select/Select.test.d.ts +2 -0
  147. package/dist/stories/Textarea/Textarea.settings.d.ts +336 -0
  148. package/dist/stories/Textarea/Textarea.test.d.ts +2 -0
  149. package/dist/stories/argTypes.d.ts +842 -0
  150. package/dist/test/expect.d.ts +3 -0
  151. package/dist/test/options.d.ts +1 -0
  152. package/dist/test/sleep.d.ts +1 -0
  153. package/dist/utils/ObjectUtilities.d.ts +82 -95
  154. package/env.d.ts +1 -0
  155. package/package.json +199 -126
  156. package/src/{DesignSystem.ts → Volver.ts} +57 -29
  157. package/src/assets/icons/detailed.json +1 -1
  158. package/src/assets/icons/normal.json +1 -1
  159. package/src/assets/icons/simple.json +1 -1
  160. package/src/components/VvAccordion/VvAccordion.vue +94 -78
  161. package/src/components/VvAccordion/index.ts +72 -0
  162. package/src/components/VvAccordionGroup/VvAccordionGroup.vue +93 -53
  163. package/src/components/VvAccordionGroup/{VvAccordionGroup.ts → index.ts} +18 -14
  164. package/src/components/VvBadge/VvBadge.vue +17 -8
  165. package/src/components/VvBadge/index.ts +6 -0
  166. package/src/components/VvBreadcrumb/VvBreadcrumb.vue +26 -24
  167. package/src/components/VvBreadcrumb/{VvBreadcrumb.ts → index.ts} +1 -2
  168. package/src/components/VvButton/VvButton.vue +174 -153
  169. package/src/components/VvButton/index.ts +189 -0
  170. package/src/components/VvButtonGroup/VvButtonGroup.vue +76 -48
  171. package/src/components/VvButtonGroup/index.ts +16 -0
  172. package/src/components/VvCard/VvCard.vue +20 -22
  173. package/src/components/VvCard/{VvCard.ts → index.ts} +1 -1
  174. package/src/components/VvCheckbox/VvCheckbox.vue +172 -0
  175. package/src/components/VvCheckbox/index.ts +60 -0
  176. package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +85 -0
  177. package/src/components/VvCheckboxGroup/index.ts +5 -0
  178. package/src/components/VvCombobox/VvCombobox.vue +261 -0
  179. package/src/components/VvCombobox/index.ts +88 -0
  180. package/src/components/VvDialog/VvDialog.vue +69 -67
  181. package/src/components/VvDialog/index.ts +10 -0
  182. package/src/components/VvDropdown/VvDropdown.vue +115 -114
  183. package/src/components/VvDropdown/index.ts +35 -0
  184. package/src/components/VvIcon/README.md +64 -0
  185. package/src/components/VvIcon/VvIcon.vue +122 -107
  186. package/src/components/VvIcon/{VvIcon.ts → index.ts} +17 -8
  187. package/src/components/VvInputText/VvInputClearAction.ts +53 -0
  188. package/src/components/VvInputText/VvInputPasswordAction.ts +70 -0
  189. package/src/components/VvInputText/VvInputStepAction.ts +49 -0
  190. package/src/components/VvInputText/VvInputText.vue +307 -238
  191. package/src/components/VvInputText/VvInputTextActions.ts +63 -114
  192. package/src/components/VvInputText/index.ts +140 -0
  193. package/src/components/VvProgress/VvProgress.vue +29 -29
  194. package/src/components/VvProgress/index.ts +32 -0
  195. package/src/components/VvRadio/VvRadio.vue +90 -119
  196. package/src/components/VvRadio/index.ts +40 -0
  197. package/src/components/VvRadioGroup/VvRadioGroup.vue +76 -69
  198. package/src/components/VvRadioGroup/index.ts +5 -0
  199. package/src/components/VvSelect/VvSelect.vue +187 -186
  200. package/src/components/VvSelect/index.ts +71 -0
  201. package/src/components/VvTextarea/VvTextarea.vue +188 -174
  202. package/src/components/VvTextarea/index.ts +50 -0
  203. package/src/components/common/HintSlot.ts +167 -137
  204. package/src/components/index.ts +19 -12
  205. package/src/composables/group/types/IAccordionGroupState.ts +3 -4
  206. package/src/composables/group/types/IButtonGroupState.ts +5 -11
  207. package/src/composables/group/types/IGroupState.ts +4 -6
  208. package/src/composables/group/types/IInputGroup.ts +1 -4
  209. package/src/composables/group/useInjectedGroupState.ts +23 -35
  210. package/src/composables/group/useProvideGroupState.ts +5 -7
  211. package/src/composables/useComponentFocus.ts +17 -0
  212. package/src/composables/{icons/useComponentIcons.ts → useComponentIcons.ts} +29 -20
  213. package/src/composables/useDebouncedInput.ts +25 -0
  214. package/src/composables/useModifiers.ts +18 -20
  215. package/src/composables/useOptions.ts +31 -0
  216. package/src/composables/useTextCount.ts +57 -0
  217. package/src/constants.ts +5 -7
  218. package/src/directives/{.README → .gitkeep} +0 -0
  219. package/src/icons.ts +7 -0
  220. package/src/index.ts +12 -5
  221. package/src/props/index.ts +204 -36
  222. package/src/resolvers/unplugin.ts +112 -0
  223. package/src/shims.d.ts +13 -0
  224. package/src/stories/Accordion/Accordion.settings.ts +46 -0
  225. package/src/stories/Accordion/Accordion.stories.mdx +21 -21
  226. package/src/stories/Accordion/Accordion.test.ts +61 -0
  227. package/src/stories/Accordion/AccordionSlots.stories.mdx +46 -70
  228. package/src/stories/AccordionGroup/AccordionGroup.settings.ts +55 -0
  229. package/src/stories/AccordionGroup/AccordionGroup.stories.mdx +24 -27
  230. package/src/stories/AccordionGroup/AccordionGroup.test.ts +50 -0
  231. package/src/stories/AccordionGroup/AccordionGroupSlots.stories.mdx +56 -0
  232. package/src/stories/Badge/Badge.settings.ts +26 -0
  233. package/src/stories/Badge/Badge.stories.mdx +36 -24
  234. package/src/stories/Badge/Badge.test.ts +12 -0
  235. package/src/stories/Badge/BadgeSlots.stories.mdx +20 -0
  236. package/src/stories/Breadcrumb/Breadcrumb.settings.ts +41 -0
  237. package/src/stories/Breadcrumb/Breadcrumb.stories.mdx +32 -29
  238. package/src/stories/Breadcrumb/Breadcrumb.test.ts +50 -0
  239. package/src/stories/Breadcrumb/BreadcrumbSlots.stories.mdx +43 -0
  240. package/src/stories/Button/Button.settings.ts +145 -0
  241. package/src/stories/Button/Button.stories.mdx +20 -54
  242. package/src/stories/Button/Button.test.ts +35 -46
  243. package/src/stories/Button/ButtonIcon.stories.mdx +139 -29
  244. package/src/stories/Button/ButtonLink.stories.mdx +58 -111
  245. package/src/stories/Button/ButtonLoading.stories.mdx +89 -62
  246. package/src/stories/Button/ButtonModifiers.stories.mdx +198 -121
  247. package/src/stories/Button/ButtonSlots.stories.mdx +83 -95
  248. package/src/stories/Button/ButtonState.stories.mdx +75 -0
  249. package/src/stories/Button/ButtonToggle.stories.mdx +50 -0
  250. package/src/stories/ButtonGroup/ButtonGroup.settings.ts +33 -0
  251. package/src/stories/ButtonGroup/ButtonGroup.stories.mdx +16 -18
  252. package/src/stories/ButtonGroup/ButtonGroup.test.ts +35 -0
  253. package/src/stories/ButtonGroup/ButtonGroupModifiers.stories.mdx +52 -0
  254. package/src/stories/ButtonGroup/ButtonGroupSlots.stories.mdx +37 -0
  255. package/src/stories/ButtonGroup/ButtonGroupToggle.stories.mdx +52 -110
  256. package/src/stories/Card/Card.settings.ts +55 -0
  257. package/src/stories/Card/Card.stories.mdx +27 -11
  258. package/src/stories/Card/Card.test.ts +23 -0
  259. package/src/stories/Card/CardSlots.stories.mdx +80 -24
  260. package/src/stories/Checkbox/Checkbox.settings.ts +43 -0
  261. package/src/stories/Checkbox/Checkbox.stories.mdx +163 -0
  262. package/src/stories/Checkbox/Checkbox.test.ts +81 -0
  263. package/src/stories/Checkbox/CheckboxBinary.stories.mdx +68 -0
  264. package/src/stories/Checkbox/CheckboxSlots.stories.mdx +46 -0
  265. package/src/stories/CheckboxGroup/CheckboxGroup.settings.ts +15 -0
  266. package/src/stories/CheckboxGroup/CheckboxGroup.stories.mdx +134 -0
  267. package/src/stories/CheckboxGroup/CheckboxGroup.test.ts +83 -0
  268. package/src/stories/CheckboxGroup/CheckboxGroupOptions.stories.mdx +100 -0
  269. package/src/stories/CheckboxGroup/CheckboxGroupSlots.stories.mdx +67 -0
  270. package/src/stories/Combobox/Combobox.settings.ts +127 -0
  271. package/src/stories/Combobox/Combobox.stories.mdx +204 -0
  272. package/src/stories/Combobox/Combobox.test.ts +103 -0
  273. package/src/stories/Combobox/ComboboxMultiple.stories.mdx +74 -0
  274. package/src/stories/Combobox/ComboboxOptions.stories.mdx +100 -0
  275. package/src/stories/Combobox/ComboboxSlots.stories.mdx +48 -0
  276. package/src/stories/Dialog/Dialog.settings.ts +45 -0
  277. package/src/stories/Dialog/Dialog.stories.mdx +42 -16
  278. package/src/stories/Dialog/Dialog.test.ts +69 -0
  279. package/src/stories/Dialog/DialogSlots.stories.mdx +63 -0
  280. package/src/stories/Dropdown/Dropdown.settings.ts +51 -0
  281. package/src/stories/Dropdown/Dropdown.stories.mdx +102 -29
  282. package/src/stories/Dropdown/Dropdown.test.ts +43 -0
  283. package/src/stories/Dropdown/DropdownOptions.stories.mdx +87 -67
  284. package/src/stories/Icon/Icon.settings.ts +72 -0
  285. package/src/stories/Icon/Icon.stories.mdx +76 -59
  286. package/src/stories/Icon/IconsCollection.stories.mdx +68 -0
  287. package/src/stories/InputText/InputText.settings.ts +221 -0
  288. package/src/stories/InputText/InputText.stories.mdx +142 -69
  289. package/src/stories/InputText/InputText.test.ts +125 -0
  290. package/src/stories/InputText/InputTextIconPosition.stories.mdx +63 -16
  291. package/src/stories/InputText/InputTextLength.stories.mdx +110 -0
  292. package/src/stories/InputText/InputTextMinMax.stories.mdx +112 -0
  293. package/src/stories/InputText/InputTextSlots.stories.mdx +61 -22
  294. package/src/stories/InputText/InputTextType.stories.mdx +207 -29
  295. package/src/stories/Progress/Progress.settings.ts +33 -0
  296. package/src/stories/Progress/Progress.stories.mdx +12 -14
  297. package/src/stories/Progress/Progress.test.ts +9 -0
  298. package/src/stories/Radio/Radio.settings.ts +15 -0
  299. package/src/stories/Radio/Radio.stories.mdx +102 -42
  300. package/src/stories/Radio/Radio.test.ts +70 -0
  301. package/src/stories/Radio/RadioSlots.stories.mdx +39 -22
  302. package/src/stories/RadioGroup/RadioGroup.settings.ts +15 -0
  303. package/src/stories/RadioGroup/RadioGroup.stories.mdx +115 -54
  304. package/src/stories/RadioGroup/RadioGroup.test.ts +83 -0
  305. package/src/stories/RadioGroup/RadioGroupOptions.stories.mdx +83 -41
  306. package/src/stories/RadioGroup/RadioGroupSlots.stories.mdx +49 -144
  307. package/src/stories/Select/Select.settings.ts +86 -0
  308. package/src/stories/Select/Select.stories.mdx +173 -33
  309. package/src/stories/Select/Select.test.ts +82 -0
  310. package/src/stories/Select/SelectOptions.stories.mdx +91 -69
  311. package/src/stories/Select/SelectSlots.stories.mdx +48 -0
  312. package/src/stories/Textarea/Textarea.settings.ts +96 -0
  313. package/src/stories/Textarea/Textarea.stories.mdx +167 -47
  314. package/src/stories/Textarea/Textarea.test.ts +90 -0
  315. package/src/stories/Textarea/TextareaLength.stories.mdx +110 -0
  316. package/src/stories/Textarea/TextareaSlots.stories.mdx +61 -23
  317. package/src/stories/Textarea/TextareatIconPosition.stories.mdx +78 -0
  318. package/src/stories/argTypes.ts +457 -0
  319. package/src/test/expect.ts +27 -6
  320. package/src/test/options.ts +17 -0
  321. package/src/test/sleep.ts +2 -0
  322. package/src/test/types.d.ts +14 -0
  323. package/src/types/generic.d.ts +5 -0
  324. package/src/utils/ObjectUtilities.ts +253 -244
  325. package/dist/components/VvAccordion/VvAccordion.d.ts +0 -32
  326. package/dist/components/VvAccordion/useAccordionProps.d.ts +0 -16
  327. package/dist/components/VvAccordion/vv-accordion.es.js +0 -262
  328. package/dist/components/VvAccordion/vv-accordion.umd.js +0 -1
  329. package/dist/components/VvAccordionGroup/vv-accordion-group.es.js +0 -315
  330. package/dist/components/VvAccordionGroup/vv-accordion-group.umd.js +0 -1
  331. package/dist/components/VvBadge/vv-badge.es.js +0 -18
  332. package/dist/components/VvBadge/vv-badge.umd.js +0 -1
  333. package/dist/components/VvBreadcrumb/vv-breadcrumb.es.js +0 -206
  334. package/dist/components/VvBreadcrumb/vv-breadcrumb.umd.js +0 -1
  335. package/dist/components/VvButton/VvButton.d.ts +0 -115
  336. package/dist/components/VvButton/useButtonGroupProps.d.ts +0 -23
  337. package/dist/components/VvButton/vv-button.es.js +0 -422
  338. package/dist/components/VvButton/vv-button.umd.js +0 -1
  339. package/dist/components/VvButtonGroup/VvButtonGroup.d.ts +0 -57
  340. package/dist/components/VvButtonGroup/vv-button-group.es.js +0 -210
  341. package/dist/components/VvButtonGroup/vv-button-group.umd.js +0 -1
  342. package/dist/components/VvCard/vv-card.es.js +0 -188
  343. package/dist/components/VvCard/vv-card.umd.js +0 -1
  344. package/dist/components/VvCheck/VvCheck.d.ts +0 -47
  345. package/dist/components/VvCheck/VvCheck.vue.d.ts +0 -165
  346. package/dist/components/VvCheck/useCheckProps.d.ts +0 -16
  347. package/dist/components/VvCheck/vv-check.es.js +0 -321
  348. package/dist/components/VvCheck/vv-check.umd.js +0 -1
  349. package/dist/components/VvCheckGroup/VvCheckGroup.d.ts +0 -65
  350. package/dist/components/VvCheckGroup/VvCheckGroup.vue.d.ts +0 -272
  351. package/dist/components/VvCheckGroup/vv-check-group.es.js +0 -452
  352. package/dist/components/VvCheckGroup/vv-check-group.umd.js +0 -2
  353. package/dist/components/VvDialog/constants.d.ts +0 -5
  354. package/dist/components/VvDialog/vv-dialog.es.js +0 -315
  355. package/dist/components/VvDialog/vv-dialog.umd.js +0 -1
  356. package/dist/components/VvDropdown/VvDropdown.d.ts +0 -52
  357. package/dist/components/VvDropdown/vv-dropdown.es.js +0 -236
  358. package/dist/components/VvDropdown/vv-dropdown.umd.js +0 -1
  359. package/dist/components/VvIcon/vv-icon.es.js +0 -229
  360. package/dist/components/VvIcon/vv-icon.umd.js +0 -1
  361. package/dist/components/VvInputText/VvInputText.d.ts +0 -73
  362. package/dist/components/VvInputText/constants.d.ts +0 -55
  363. package/dist/components/VvInputText/vv-input-text.es.js +0 -725
  364. package/dist/components/VvInputText/vv-input-text.umd.js +0 -2
  365. package/dist/components/VvNativeSelect/VvNativeSelect.d.ts +0 -70
  366. package/dist/components/VvNativeSelect/VvNativeSelect.vue.d.ts +0 -228
  367. package/dist/components/VvNativeSelect/vv-native-select.es.js +0 -414
  368. package/dist/components/VvNativeSelect/vv-native-select.umd.js +0 -2
  369. package/dist/components/VvProgress/VvProgress.d.ts +0 -29
  370. package/dist/components/VvProgress/vv-progress.es.js +0 -185
  371. package/dist/components/VvProgress/vv-progress.umd.js +0 -1
  372. package/dist/components/VvRadio/VvRadio.d.ts +0 -22
  373. package/dist/components/VvRadio/useRadioProps.d.ts +0 -15
  374. package/dist/components/VvRadio/vv-radio.es.js +0 -309
  375. package/dist/components/VvRadio/vv-radio.umd.js +0 -1
  376. package/dist/components/VvRadioGroup/VvRadioGroup.d.ts +0 -54
  377. package/dist/components/VvRadioGroup/vv-radio-group.es.js +0 -441
  378. package/dist/components/VvRadioGroup/vv-radio-group.umd.js +0 -2
  379. package/dist/components/VvSelect/VvSelect.d.ts +0 -99
  380. package/dist/components/VvSelect/vv-select.es.js +0 -445
  381. package/dist/components/VvSelect/vv-select.umd.js +0 -2
  382. package/dist/components/VvTextarea/VvTextarea.d.ts +0 -88
  383. package/dist/components/VvTextarea/constants.d.ts +0 -19
  384. package/dist/components/VvTextarea/vv-textarea.es.js +0 -548
  385. package/dist/components/VvTextarea/vv-textarea.umd.js +0 -2
  386. package/dist/composables/debouncedInput/useDebouncedInput.d.ts +0 -2
  387. package/dist/composables/focus/useComponentFocus.d.ts +0 -7
  388. package/dist/composables/options/useOptions.d.ts +0 -5
  389. package/dist/composables/textLimit/useTextLimit.d.ts +0 -14
  390. package/dist/stories/Icon/IconList.vue.d.ts +0 -44
  391. package/dist/stories/utils.d.ts +0 -5
  392. package/dist/ui-vue.es.js +0 -3001
  393. package/dist/ui-vue.umd.js +0 -2
  394. package/src/assets/icons/index.js +0 -7
  395. package/src/components/VvAccordion/VvAccordion.ts +0 -34
  396. package/src/components/VvAccordion/useAccordionProps.ts +0 -45
  397. package/src/components/VvBadge/VvBadge.ts +0 -4
  398. package/src/components/VvButton/VvButton.ts +0 -117
  399. package/src/components/VvButton/useButtonGroupProps.ts +0 -51
  400. package/src/components/VvButtonGroup/VvButtonGroup.ts +0 -37
  401. package/src/components/VvCheck/VvCheck.ts +0 -48
  402. package/src/components/VvCheck/VvCheck.vue +0 -149
  403. package/src/components/VvCheck/useCheckProps.ts +0 -41
  404. package/src/components/VvCheckGroup/VvCheckGroup.ts +0 -34
  405. package/src/components/VvCheckGroup/VvCheckGroup.vue +0 -84
  406. package/src/components/VvDialog/VvDialog.ts +0 -17
  407. package/src/components/VvDialog/constants.ts +0 -5
  408. package/src/components/VvDropdown/VvDropdown.ts +0 -46
  409. package/src/components/VvInputText/VvInputText.ts +0 -66
  410. package/src/components/VvInputText/constants.ts +0 -34
  411. package/src/components/VvNativeSelect/VvNativeSelect.ts +0 -70
  412. package/src/components/VvNativeSelect/VvNativeSelect.vue +0 -106
  413. package/src/components/VvProgress/VvProgress.ts +0 -28
  414. package/src/components/VvRadio/VvRadio.ts +0 -25
  415. package/src/components/VvRadio/useRadioProps.ts +0 -40
  416. package/src/components/VvRadioGroup/VvRadioGroup.ts +0 -25
  417. package/src/components/VvSelect/VvSelect.ts +0 -91
  418. package/src/components/VvTextarea/VvTextarea.ts +0 -64
  419. package/src/components/VvTextarea/constants.ts +0 -14
  420. package/src/composables/debouncedInput/useDebouncedInput.ts +0 -19
  421. package/src/composables/focus/useComponentFocus.ts +0 -22
  422. package/src/composables/options/useOptions.ts +0 -27
  423. package/src/composables/textLimit/useTextLimit.ts +0 -44
  424. package/src/stories/Accordion/AccordionBordered.stories.mdx +0 -26
  425. package/src/stories/Accordion/AccordionIconRight.stories.mdx +0 -32
  426. package/src/stories/Accordion/accordionTest.js +0 -36
  427. package/src/stories/AccordionGroup/Accordion.stories.mdx +0 -42
  428. package/src/stories/AccordionGroup/AccordionItems.stories.mdx +0 -51
  429. package/src/stories/AccordionGroup/accordionGroupTest.js +0 -51
  430. package/src/stories/Badge/BadgeColor.stories.mdx +0 -54
  431. package/src/stories/Badge/BadgeDot.stories.mdx +0 -20
  432. package/src/stories/Badge/BadgeTest.js +0 -21
  433. package/src/stories/Breadcrumb/BreadcrumbMultiline.stories.mdx +0 -41
  434. package/src/stories/Button/ButtonBadge.stories.mdx +0 -34
  435. package/src/stories/Button/ButtonIconPosition.stories.mdx +0 -106
  436. package/src/stories/Button/ButtonVariant.stories.mdx +0 -205
  437. package/src/stories/Button/test.js +0 -41
  438. package/src/stories/ButtonGroup/ButtonGroupAction.stories.mdx +0 -83
  439. package/src/stories/ButtonGroup/ButtonGroupActionQuiet.stories.mdx +0 -50
  440. package/src/stories/ButtonGroup/ButtonGroupBlock.stories.mdx +0 -40
  441. package/src/stories/ButtonGroup/ButtonGroupCompact.stories.mdx +0 -38
  442. package/src/stories/ButtonGroup/ButtonGroupRounded.stories.mdx +0 -77
  443. package/src/stories/ButtonGroup/ButtonGroupTest.js +0 -61
  444. package/src/stories/ButtonGroup/ButtonGroupVertical.stories.mdx +0 -38
  445. package/src/stories/Card/CardVariant.stories.mdx +0 -37
  446. package/src/stories/Check/Check.stories.mdx +0 -62
  447. package/src/stories/Check/CheckBinary.stories.mdx +0 -80
  448. package/src/stories/Check/CheckDisabled.stories.mdx +0 -30
  449. package/src/stories/Check/CheckError.stories.mdx +0 -64
  450. package/src/stories/Check/CheckErrorTests.js +0 -72
  451. package/src/stories/Check/CheckHintLabel.stories.mdx +0 -30
  452. package/src/stories/Check/CheckPropertyTest.js +0 -101
  453. package/src/stories/Check/CheckReadonly.stories.mdx +0 -30
  454. package/src/stories/Check/CheckSlots.stories.mdx +0 -51
  455. package/src/stories/Check/CheckSwitch.stories.mdx +0 -30
  456. package/src/stories/CheckGroup/CheckGroup.stories.mdx +0 -69
  457. package/src/stories/CheckGroup/CheckGroupDisabled.stories.mdx +0 -26
  458. package/src/stories/CheckGroup/CheckGroupError.stories.mdx +0 -28
  459. package/src/stories/CheckGroup/CheckGroupHintLabel.stories.mdx +0 -27
  460. package/src/stories/CheckGroup/CheckGroupLabel.stories.mdx +0 -26
  461. package/src/stories/CheckGroup/CheckGroupOptionLabel.stories.mdx +0 -48
  462. package/src/stories/CheckGroup/CheckGroupOptionValue.stories.mdx +0 -48
  463. package/src/stories/CheckGroup/CheckGroupOptions.stories.mdx +0 -40
  464. package/src/stories/CheckGroup/CheckGroupReadonly.stories.mdx +0 -26
  465. package/src/stories/CheckGroup/CheckGroupSlots.stories.mdx +0 -152
  466. package/src/stories/CheckGroup/CheckGroupValid.stories.mdx +0 -28
  467. package/src/stories/CheckGroup/CheckGroupVertical.stories.mdx +0 -26
  468. package/src/stories/Dialog/DialogAutoClose.stories.mdx +0 -18
  469. package/src/stories/Dialog/DialogSize.stories.mdx +0 -36
  470. package/src/stories/Dropdown/DropdownDisabled.stories.mdx +0 -25
  471. package/src/stories/Dropdown/DropdownLabelNoResults.stories.mdx +0 -25
  472. package/src/stories/Dropdown/DropdownMaxValues.stories.mdx +0 -26
  473. package/src/stories/Dropdown/DropdownMultiple.stories.mdx +0 -56
  474. package/src/stories/Dropdown/DropdownUseObject.stories.mdx +0 -58
  475. package/src/stories/Icon/IconList.vue +0 -34
  476. package/src/stories/Icon/IconPrefix.stories.mdx +0 -79
  477. package/src/stories/Icon/IconRemote.stories.mdx +0 -39
  478. package/src/stories/Icon/IconTest.js +0 -27
  479. package/src/stories/Icon/IconsList.stories.mdx +0 -35
  480. package/src/stories/InputText/InputTextAutocomplete.stories.mdx +0 -15
  481. package/src/stories/InputText/InputTextAutofocus.stories.mdx +0 -20
  482. package/src/stories/InputText/InputTextDisabled.stories.mdx +0 -19
  483. package/src/stories/InputText/InputTextError.stories.mdx +0 -19
  484. package/src/stories/InputText/InputTextFloating.stories.mdx +0 -20
  485. package/src/stories/InputText/InputTextHintLabel.stories.mdx +0 -18
  486. package/src/stories/InputText/InputTextIcon.stories.mdx +0 -18
  487. package/src/stories/InputText/InputTextLabel.stories.mdx +0 -15
  488. package/src/stories/InputText/InputTextLoading.stories.mdx +0 -19
  489. package/src/stories/InputText/InputTextMax.stories.mdx +0 -31
  490. package/src/stories/InputText/InputTextMaxLength.stories.mdx +0 -36
  491. package/src/stories/InputText/InputTextMin.stories.mdx +0 -31
  492. package/src/stories/InputText/InputTextMinLength.stories.mdx +0 -15
  493. package/src/stories/InputText/InputTextPlaceholder.stories.mdx +0 -15
  494. package/src/stories/InputText/InputTextReadonly.stories.mdx +0 -19
  495. package/src/stories/InputText/InputTextStep.stories.mdx +0 -31
  496. package/src/stories/InputText/InputTextValid.stories.mdx +0 -19
  497. package/src/stories/NativeSelect/NativeSelect.stories.mdx +0 -53
  498. package/src/stories/NativeSelect/NativeSelectDisabled.stories.mdx +0 -32
  499. package/src/stories/NativeSelect/NativeSelectError.stories.mdx +0 -36
  500. package/src/stories/NativeSelect/NativeSelectHintLabel.stories.mdx +0 -34
  501. package/src/stories/NativeSelect/NativeSelectIconLeftRight.stories.mdx +0 -42
  502. package/src/stories/NativeSelect/NativeSelectLoading.stories.mdx +0 -27
  503. package/src/stories/NativeSelect/NativeSelectOptions.stories.mdx +0 -78
  504. package/src/stories/NativeSelect/NativeSelectReadonly.stories.mdx +0 -34
  505. package/src/stories/NativeSelect/NativeSelectUseObject.stories.mdx +0 -66
  506. package/src/stories/NativeSelect/NativeSelectValid.stories.mdx +0 -36
  507. package/src/stories/NativeSelect/NativeSelectValueKey.stories.mdx +0 -66
  508. package/src/stories/Progress/ProgressDeterminate.stories.mdx +0 -19
  509. package/src/stories/Radio/RadioDisabled.stories.mdx +0 -30
  510. package/src/stories/Radio/RadioError.stories.mdx +0 -64
  511. package/src/stories/Radio/RadioHintLabel.stories.mdx +0 -30
  512. package/src/stories/Radio/RadioTest.js +0 -89
  513. package/src/stories/RadioGroup/RadioGroupDisabled.stories.mdx +0 -29
  514. package/src/stories/RadioGroup/RadioGroupError.stories.mdx +0 -31
  515. package/src/stories/RadioGroup/RadioGroupHintLabel.stories.mdx +0 -28
  516. package/src/stories/RadioGroup/RadioGroupLabel.stories.mdx +0 -29
  517. package/src/stories/RadioGroup/RadioGroupOptionLabel.stories.mdx +0 -65
  518. package/src/stories/RadioGroup/RadioGroupOptionValue.stories.mdx +0 -65
  519. package/src/stories/RadioGroup/RadioGroupReadonly.stories.mdx +0 -29
  520. package/src/stories/RadioGroup/RadioGroupValid.stories.mdx +0 -31
  521. package/src/stories/RadioGroup/RadioGroupVertical.stories.mdx +0 -29
  522. package/src/stories/RadioGroup/RadioOptionsTest.js +0 -78
  523. package/src/stories/RadioGroup/RadioPropertyTest.js +0 -131
  524. package/src/stories/RadioGroup/RadioSlotsTest.js +0 -20
  525. package/src/stories/Select/SelectDisabled.stories.mdx +0 -32
  526. package/src/stories/Select/SelectMaxValues.stories.mdx +0 -33
  527. package/src/stories/Select/SelectMultiple.stories.mdx +0 -64
  528. package/src/stories/Select/SelectSearchable.stories.mdx +0 -80
  529. package/src/stories/Select/SelectSeparator.stories.mdx +0 -64
  530. package/src/stories/Select/SelectUseObject.stories.mdx +0 -66
  531. package/src/stories/Textarea/TextareaAutoclear.stories.mdx +0 -23
  532. package/src/stories/Textarea/TextareaAutocomplete.stories.mdx +0 -23
  533. package/src/stories/Textarea/TextareaAutofocus.stories.mdx +0 -24
  534. package/src/stories/Textarea/TextareaDebounce.stories.mdx +0 -23
  535. package/src/stories/Textarea/TextareaDisabled.stories.mdx +0 -23
  536. package/src/stories/Textarea/TextareaError.stories.mdx +0 -22
  537. package/src/stories/Textarea/TextareaErrorLabel.stories.mdx +0 -37
  538. package/src/stories/Textarea/TextareaFloating.stories.mdx +0 -25
  539. package/src/stories/Textarea/TextareaHintLabel.stories.mdx +0 -22
  540. package/src/stories/Textarea/TextareaIcon.stories.mdx +0 -22
  541. package/src/stories/Textarea/TextareaIconPosition.stories.mdx +0 -39
  542. package/src/stories/Textarea/TextareaId.stories.mdx +0 -19
  543. package/src/stories/Textarea/TextareaLabel.stories.mdx +0 -19
  544. package/src/stories/Textarea/TextareaLimit.stories.mdx +0 -50
  545. package/src/stories/Textarea/TextareaLoading.stories.mdx +0 -22
  546. package/src/stories/Textarea/TextareaLoadingLabel.stories.mdx +0 -23
  547. package/src/stories/Textarea/TextareaMaxLength.stories.mdx +0 -19
  548. package/src/stories/Textarea/TextareaMinLength.stories.mdx +0 -19
  549. package/src/stories/Textarea/TextareaModifiers.stories.mdx +0 -24
  550. package/src/stories/Textarea/TextareaName.stories.mdx +0 -23
  551. package/src/stories/Textarea/TextareaPlaceholder.stories.mdx +0 -19
  552. package/src/stories/Textarea/TextareaReadonly.stories.mdx +0 -23
  553. package/src/stories/Textarea/TextareaRequired.stories.mdx +0 -22
  554. package/src/stories/Textarea/TextareaResizable.stories.mdx +0 -22
  555. package/src/stories/Textarea/TextareaRowsCols.stories.mdx +0 -39
  556. package/src/stories/Textarea/TextareaValid.stories.mdx +0 -22
  557. package/src/stories/Textarea/TextareaValidLabel.stories.mdx +0 -35
  558. package/src/stories/stories.scss +0 -35
  559. package/src/stories/utils.ts +0 -12
  560. package/src/stories/volver-ui-vue.stories.mdx +0 -77
  561. package/src/types/.README +0 -0
@@ -1 +1 @@
1
- {"prefix":"detailed","lastModified":1668188662,"icons":{"add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 15.999h24m-12-12v24\"/>"},"add-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/><path stroke-linecap=\"round\" d=\"M9 14h10m-5-5v10\"/></g>"},"align-center":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M23 13H9m18-6H5m22 12H5m18 6H9\"/>"},"align-justify":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M27 13H5m22-6H5m22 12H5m22 6H5\"/>"},"align-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 13H5m22-6H5m22 12H5m16 6H5\"/>"},"align-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26.999 13h-16M27 7H5m22 12H5m21.999 6h-16\"/>"},"analysis":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 16)\"><rect width=\"7\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(12 6)\"><rect width=\"8\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(23 12)\"><rect width=\"7\" height=\"16\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"14\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"analysis-2":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M17.657 6.001a.674.674 0 00-.473.2.671.671 0 00-.2.474l.012 10.331H6.665a.673.673 0 00-.473.2.67.67 0 00-.2.473 12.284 12.284 0 0012 12.328 12 12 0 0012-12A12.3 12.3 0 0017.657 6.001Z\"/><path fill=\"currentColor\" d=\"M18.99 8.087 19.004 19l-10.916.004a10.572 10.572 0 002.868 5.93c1.906 1.978 4.408 3.067 7.045 3.067a9.934 9.934 0 007.072-2.93A9.936 9.936 0 0028 18.002c0-2.637-1.091-5.14-3.072-7.045a10.596 10.596 0 00-5.937-2.869m-1.334-2.086C24.287 6 30 11.37 30 18c0 6.627-5.37 12-12 12-6.627 0-12-5.7-12-12.328a.67.67 0 01.67-.668L17 17l-.01-10.33a.671.671 0 01.668-.67Z\"/><path d=\"M14.8 14.8a.7.7 0 00.2-.488V3.692a.7.7 0 00-.2-.489.7.7 0 00-.488-.2A11.312 11.312 0 003 14.311a.7.7 0 00.2.488.7.7 0 00.488.2h10.62a.7.7 0 00.492-.199Z\"/><path fill=\"currentColor\" d=\"M13 13V5.092A9.333 9.333 0 005.092 13H13m1.31 2H3.69a.695.695 0 01-.69-.69C3.001 8.065 8.064 3 14.31 3c.182 0 .36.074.488.202a.698.698 0 01.202.489v10.62c0 .181-.074.36-.202.487a.695.695 0 01-.487.202Z\"/></g>"},"analysis-3":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m4 24 10-10 4 4 7-6\"/><path stroke-miterlimit=\"10\" d=\"M29 24.999H3v-18\"/></g>"},"apple":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M16.017 28.843a6.762 6.762 0 011.364.164 7.462 7.462 0 011.364.532l.032.015c.168.079.342.161.521.236a2.332 2.332 0 00.924.211 3.513 3.513 0 001.429-.42 6.044 6.044 0 002.269-1.911 18.881 18.881 0 002.5-4.141c.132-.292.232-.533.318-.755a14.883 14.883 0 00.907-9.257 7.167 7.167 0 00-2.9-4.254.662.662 0 01-.063-.044 4.959 4.959 0 00-1-.614 6.1 6.1 0 00-2.607-.6h-.148a8.727 8.727 0 00-2.967.768l-.586.223c-.255.1-.849.3-.855.3a.694.694 0 01-.234.04h-.22a.25.25 0 00-.043 0h-.032a.388.388 0 00-.045.005h-.221a.7.7 0 01-.232-.039s-.6-.205-.857-.3l-.579-.22A8.794 8.794 0 0011.077 8h-.16a6.174 6.174 0 00-2.593.6 5 5 0 00-1 .615.581.581 0 01-.06.043 7.289 7.289 0 00-2.887 4.186 14.879 14.879 0 00.867 9.273c.125.325.238.58.342.808a18.805 18.805 0 002.5 4.141 6 6 0 002.188 1.877 3.823 3.823 0 001.517.453 2.339 2.339 0 00.917-.209c.176-.073.347-.153.512-.231l.031-.015a7.634 7.634 0 011.376-.536 6.433 6.433 0 011.372-.164h.025Z\"/><path fill=\"currentColor\" d=\"M20.222 27.999c.106-.022.403-.153.625-.251.488-.214.9-.577 1.52-1.34.83-1.022 1.578-2.268 2.226-3.704.11-.245.198-.451.275-.65l.018-.049.021-.047c1.815-4.068.815-7.88.804-7.918l-.014-.055-.012-.056c-.388-1.835-1.9-2.897-2.02-2.98a2.538 2.538 0 01-.184-.127l-.063-.049a3.006 3.006 0 00-.604-.365 4.091 4.091 0 00-1.746-.407h-.1c-.689.017-1.398.29-2.296.636l-.008.003-.597.227c-.26.097-.786.277-.897.315a2.69 2.69 0 01-.89.151h-.561c-.307 0-.608-.05-.894-.151l-.05-.018a49.59 49.59 0 01-.843-.298l-.015-.005-.585-.223c-.935-.36-1.612-.619-2.303-.636L10.917 10c-.556 0-1.187.149-1.737.41a3.053 3.053 0 00-.603.365 2.59 2.59 0 01-.215.156c-.107.075-1.667 1.187-2.03 2.925l-.01.054-.015.054c-.043.16-1.022 3.942.761 7.94l.021.048.019.048c.11.284.206.503.295.698l.004.009c.645 1.432 1.393 2.677 2.224 3.7.612.754 1.016 1.12 1.438 1.306l.008.004c.262.114.585.256.704.28a.998.998 0 00.148-.053c.136-.057.282-.125.42-.19l.065-.03c.486-.228 1.037-.485 1.717-.656.516-.13 1.105-.204 1.802-.224l.118-.001.034.001c.444.015 1.112.055 1.784.224.688.173 1.264.443 1.727.661l.064.03c.144.068.28.132.407.184l.01.004a.93.93 0 00.145.052M20.221 30c-.29 0-.584-.067-.924-.21-.179-.075-.352-.157-.52-.236l-.032-.015c-.426-.2-.866-.407-1.364-.532-.487-.122-1.018-.152-1.364-.164h-.025c-.547.016-.995.07-1.372.164-.502.127-.943.334-1.376.536l-.031.015c-.165.078-.336.158-.512.231-.338.142-.63.209-.917.209-.486 0-.915-.19-1.517-.453-.856-.377-1.495-1.023-2.188-1.876-.94-1.157-1.78-2.551-2.495-4.141a14.05 14.05 0 01-.342-.808c-2.03-4.55-.99-8.813-.867-9.273.544-2.608 2.782-4.117 2.887-4.186a.58.58 0 00.06-.043 5 5 0 011.002-.615 6.173 6.173 0 012.753-.6c1.037.025 1.935.37 2.974.768l.578.22c.262.098.855.302.857.303a.7.7 0 00.233.04h.22c.017-.004.033-.005.046-.006h.032a.25.25 0 01.043.005h.22a.692.692 0 00.233-.04c.006-.002.6-.205.855-.3l.586-.223c1.038-.4 1.935-.743 2.967-.768h.147c.878 0 1.78.207 2.607.6.387.184.715.385.999.614.02.016.04.032.063.045.023.015 2.314 1.463 2.904 4.254.077.28 1.178 4.584-.907 9.258-.086.222-.186.463-.318.755-.718 1.591-1.558 2.985-2.497 4.14-.693.854-1.342 1.506-2.269 1.912-.554.244-.954.42-1.43.42Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.173 10.001s-1.01-4.452 1.825-6m1.999 9.998a4.786 4.786 0 012 4\"/></g>"},"arrow-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 18.002 10 10 10-10m-10 8v-22\"/>"},"arrow-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m14.001 6-10 10 10 10m-8-10h22\"/>"},"arrow-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m18.001 26 10-10-10-10m8 10h-22\"/>"},"arrow-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m26.001 13.999-10-10-10 10m9.999-8v22\"/>"},"attachment":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m28.003 15.251-11.347 10.7a7.732 7.732 0 01-10.484 0 6.714 6.714 0 010-9.886l11.348-10.7a5.156 5.156 0 016.989 0 4.477 4.477 0 010 6.592l-11.361 10.7a2.574 2.574 0 01-3.493 0 2.235 2.235 0 010-3.295l10.483-9.875\"/>"},"back-to-front":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m24 3-4 4 4 4\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4\"/><g stroke-miterlimit=\"10\"><path d=\"M11.795 25h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406H12.21c-.85 0-1.436-.726-1.134-1.4Z\"/><path fill=\"currentColor\" d=\"M11.795 25H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.404L11.795 25Z\"/></g></g>"},"bell":{"body":"<path fill=\"currentColor\" d=\"M13 26.161a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M18.018 3.277a7.483 7.483 0 015.876 7.128v3.959a9.094 9.094 0 003.538 7.261c.057.046.114.094.171.139a1.268 1.268 0 01.4.915 1.371 1.371 0 01-1.416 1.322H5.418a1.371 1.371 0 01-1.416-1.322 1.269 1.269 0 01.4-.915c.057-.045.114-.093.171-.139a9.1 9.1 0 003.538-7.261v-3.963a7.464 7.464 0 015.667-7.073 7.909 7.909 0 014.24-.051Z\"/><path fill=\"currentColor\" d=\"M16.123 5.001a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.069-.017-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z\"/></g>"},"bell-active":{"body":"<g fill=\"currentColor\"><path d=\"M13 26.16a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z\"/><g stroke-miterlimit=\"10\"><path d=\"M26.584 23H5.416C5.19 23 5 22.852 5 22.678c0-.073.034-.132.07-.173l.064-.052.062-.05c2.558-2.073 3.91-4.853 3.91-8.04v-3.959c0-1.392.478-2.714 1.381-3.824.886-1.088 2.147-1.9 3.55-2.284l.02-.005.018-.006A7.726 7.726 0 0116.123 4c.586 0 1.12.077 1.588.227l.034.011.034.009c3.012.742 5.115 3.274 5.115 6.157v3.96c0 3.186 1.352 5.966 3.909 8.037l.06.05.067.054c.036.041.07.1.07.173 0 .174-.19.322-.416.322Z\"/><path d=\"M16.123 5a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.07-.018-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z\"/></g></g>"},"bold":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5h10a5.525 5.525 0 010 11H8Zm0 11h11.076a5.534 5.534 0 010 11H8Z\"/>"},"bookmark":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M10 5.206v23.461a.3.3 0 00.527.23l5.323-6.285a.191.191 0 01.3 0l5.324 6.285a.3.3 0 00.526-.23V5.206A2.109 2.109 0 0020 3h-8a2.109 2.109 0 00-2 2.206Z\"/><path fill=\"currentColor\" d=\"M12.058 5a.347.347 0 00-.058.206V24.06l2.32-2.74a2.192 2.192 0 013.355-.004L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.189.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z\"/></g>"},"bookmark-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"m21 26.787-4.088-4.826a1.193 1.193 0 00-1.827.002L11 26.787V5.207C11 4.54 11.447 4 11.997 4h8.006c.55 0 .997.541.997 1.206v21.581Z\"/><path d=\"M12.058 5a.347.347 0 00-.058.206V24.06l2.324-2.744a2.192 2.192 0 013.351 0L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.19.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z\"/></g>"},"building":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 29.001h24M18 4V3h-4v1\"/><path stroke-linecap=\"round\" d=\"M16 28.001v-3m-5-15h2m-2 4h2m-2 4h2m6-8h2m-2 4h2m-2 4h2\"/><g transform=\"translate(6 4.001)\"><rect width=\"20\" height=\"26\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"24\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"bullet-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M12 22h6m-6-6h15m-15-6h10\"/><g transform=\"translate(4 8.334) translate(0 -.334)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g><g transform=\"translate(4 8.334) translate(0 5.666)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g><g transform=\"translate(4 8.334) translate(0 11.666)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g>"},"calendar":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 5)\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M8-1v4m12-4v4M1 6h26M6 11h2m5 0h2m-9 7h2m5 0h2m5-7h2m-2 7h2\"/><rect width=\"28\" height=\"24\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"22\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"camera-off":{"body":"<path fill=\"currentColor\" d=\"M27.198 27H9.243l2-2h15.955a.927.927 0 00.8-.752V10.504a.929.929 0 00-.8-.756h-.7l1.768-1.768a2.9 2.9 0 011.739 2.518v13.75A2.9 2.9 0 0127.198 27ZM2.311 25.445A2.54 2.54 0 012 24.252v-13.75a2.884 2.884 0 012.8-2.75h2.8L10.4 5h8.4l2.392 1.566-1.445 1.445-1.543-1.012H11.22l-2.8 2.752H4.806a.925.925 0 00-.8.75v13.258l-1.687 1.686Z\"/><path fill=\"currentColor\" d=\"M14.998 23.002a6.021 6.021 0 01-1.552-.2l1.8-1.8a4.007 4.007 0 003.738-3.74l1.809-1.809a6 6 0 01-5.8 7.557Zm-5.8-4.447a6 6 0 017.353-7.35l-1.8 1.8a4 4 0 00-3.744 3.744l-1.8 1.8Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"camera-on":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M27.2 7.75H23L18.8 5h-8.4L7.6 7.75H4.8A2.9 2.9 0 002 10.5v13.75A2.9 2.9 0 004.8 27h22.4a2.9 2.9 0 002.8-2.75V10.5a2.9 2.9 0 00-2.8-2.75Z\"/><path fill=\"currentColor\" d=\"m11.218 7-2.8 2.75H4.803c-.352 0-.802.423-.803.75v13.747c0 .33.451.753.8.753h22.397c.352 0 .803-.423.803-.75V10.503c0-.33-.45-.752-.8-.753h-4.796L18.204 7h-6.986M10.4 5h8.4L23 7.75h4.2c1.448.003 2.798 1.304 2.8 2.75v13.75c-.002 1.446-1.352 2.748-2.8 2.75H4.8c-1.448-.002-2.798-1.304-2.8-2.75V10.5c.002-1.446 1.352-2.747 2.8-2.75h2.8L10.4 5Z\"/><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(9 11)\"><circle cx=\"6\" cy=\"6\" r=\"6\" stroke=\"none\"/><circle cx=\"6\" cy=\"6\" r=\"5\"/></g></g>"},"catalog":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\"><path d=\"M8 2h16a1 1 0 011 1v26a1 1 0 01-1 1H8a3 3 0 01-3-3V5a3 3 0 013-3Z\" stroke=\"none\"/><path d=\"M8 3h16v26H8a2 2 0 01-2-2V5a2 2 0 012-2Z\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M10 13h10m-10 4h10m-10 4h5\"/><path d=\"M6 8h18\"/></g>"},"certificate":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"22.926\" d=\"M16.001 3.998a8 8 0 11-8 8 8 8 0 018-8Z\"/><path stroke-miterlimit=\"22.926\" d=\"M16 9.001a3 3 0 11-3 3 3 3 0 013-3Z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m9 18-4 4h3v3h3v3l5-5 5 5v-3h3v-3h3l-4-4\"/></g>"},"chat":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M14.998 23.002h-3c-4.9 0-9-3.238-9-8 0-4.738 4.1-8 9-8h8c4.9 0 9 3.262 9 8 0 4.762-4.7 8-9 8l-1 4Z\"/>"},"check":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m7 15.001 7 7 12-12\"/>"},"check-badge":{"body":"<path fill=\"currentColor\" d=\"m16.873 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.37 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.327 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.746 0l-2.152 1.828a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.37-1.968l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.98l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.746-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m11 16.999 3 3 7-7\"/>"},"check-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m12 16 3 3 6-6\"/></g>"},"checkbox":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><rect width=\"28\" height=\"28\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"26\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"chevron-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 11 10 10 10-10\"/>"},"chevron-down-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m11 14 5 5 5-5\"/></g>"},"chevron-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 6 11 16l10 10\"/>"},"chevron-left-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m18.001 11-5 5 5 5\"/></g>"},"chevron-right-circle":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 26 10-10L12 6\"/>"},"chevron-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26 20 16 10 6 20\"/>"},"chevron-up-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m11.001 18 5-5 5 5\"/></g>"},"classroom":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 14h24M4 28h24\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 13a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M8 5.999a3 3 0 11.879 2.121A2.994 2.994 0 018 5.999Z\"/><path fill=\"currentColor\" d=\"M11 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0012 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0111 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 2.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 27a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M13 19.999a3 3 0 11.879 2.121A2.994 2.994 0 0113 19.999Z\"/><path fill=\"currentColor\" d=\"M16 18.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293a.981.981 0 00.293-.707.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 19.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 16.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 13a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M18 5.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 5.999Z\"/><path fill=\"currentColor\" d=\"M21 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0022 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0121 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 2.999Z\"/></g></g>"},"clear-field":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 3)\"><circle cx=\"13\" cy=\"13\" r=\"13\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"13\" cy=\"13\" r=\"12\" fill=\"none\"/></g><path fill=\"none\" stroke-linecap=\"round\" d=\"m12 20 8-8m-8 0 8 8\"/></g>"},"clear-style":{"body":"<path fill=\"currentColor\" d=\"M18 28h-4a1 1 0 010-2h1v-4.76l2-2V26h1a1 1 0 110 2Zm-3-15.244V8H8v1a1 1 0 01-2 0V5a.99.99 0 011-1 1 1 0 011 1v1h13.75l-2 2H17v2.754l-2 2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 27 27 5\"/>"},"close":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 24 24 8M8 8l16 16\"/>"},"close-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" d=\"m11 21.001 10-10m-10 0 10 10\"/></g>"},"close-loader":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m12 20 8-8m-8 0 8 8\"/>"},"coffee":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-linejoin=\"round\"><path d=\"M7 10.999h16a1 1 0 011 1v7a8 8 0 01-8 8h-2a8 8 0 01-8-8v-7a1 1 0 011-1Z\" stroke=\"none\"/><path d=\"M7 11.999h16v7a7 7 0 01-7 7h-2a7 7 0 01-7-7v-7Z\"/></g><g stroke-linejoin=\"round\"><path d=\"M22.001 18.999v-8h3a3 3 0 013 3v2a3 3 0 01-3 3h-3Z\" stroke=\"none\"/><path d=\"M23.001 17.999v-6h2a2 2 0 012 2v2a2 2 0 01-2 2h-2Z\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 26.999h22\"/><path stroke-linecap=\"round\" d=\"M10 7.999v-2m5 2v-2m5 2v-2\"/></g>"},"color":{"body":"<defs><radialGradient id=\"svgIDa\" cx=\".5\" cy=\".5\" r=\".5\" gradientUnits=\"objectBoundingBox\"><stop offset=\"0\" stop-color=\"currentColor\"/><stop offset=\".148\" stop-color=\"currentColor\"/><stop offset=\".32\" stop-color=\"currentColor\"/><stop offset=\".493\" stop-color=\"currentColor\"/><stop offset=\".66\" stop-color=\"currentColor\"/><stop offset=\".833\" stop-color=\"currentColor\"/><stop offset=\"1\" stop-color=\"currentColor\"/></radialGradient></defs><g fill=\"url(#svgIDa)\" stroke=\"currentColor\" transform=\"translate(4 4)\"><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"none\"/><circle cx=\"12\" cy=\"12\" r=\"11.5\" fill=\"none\"/></g>"},"contact-us":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M24 16.001v-3.808c0-3.934-3.513-8.192-8-8.192s-8 4.257-8 8.192v1.8\"/><path d=\"M21 12.001v3.912a7.6 7.6 0 01-2 5.588m-9.001-14.5c0 2.143 7.7 5 11 5M13 10.5c-.862.606-1.949 3.279-2 4.889v1.222a6.65 6.65 0 002 4.889m5.999 5.501a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm.002-.003h.469c2.493.021 4.522-4.31 4.531-9.671v-.328\"/><path d=\"M25 14h-1v4h1a.95.95 0 001-.889v-2.223A.951.951 0 0025 14Zm-18 .002h1v4H7a.949.949 0 01-1-.887v-2.223a.949.949 0 011-.89h0Z\"/></g>"},"copy":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(10.001 3)\"><rect width=\"16\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M19 28h-9a2.665 2.665 0 01-3-3V10\"/></g>"},"courses":{"body":"<path fill=\"currentColor\" d=\"M28 13h2v7a1 1 0 01-1 1 1 1 0 01-1-1v-7Z\"/><g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M22 25.996H10a2.003 2.003 0 01-2.001-2v-8.344l-.524-.283-4.387-2.373L16 6.012l12.913 6.984-4.387 2.373-.524.283v8.344c0 1.103-.897 2-2 2Z\"/><path fill=\"currentColor\" d=\"M22 24.996c.552 0 1.001-.45 1.001-1v-8.94l1.049-.568 2.76-1.492-10.811-5.848-10.81 5.848 3.809 2.06v8.94c0 .55.449 1 1 1H22m0 2H10a3 3 0 01-3.001-3v-7.748l-4.523-2.445a.92.92 0 010-1.612L15.584 5.1a.892.892 0 01.83 0l13.11 7.092a.92.92 0 010 1.612L25 16.248v7.748c0 1.656-1.344 3-3 3Z\"/></g><g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M16 19.98 3.088 12.996l12.914-6.983 12.913 6.983-12.913 6.982Z\"/><path fill=\"currentColor\" d=\"m16 18.842 10.812-5.845L16 7.15 5.19 12.997 16 18.842m0 2.155a.874.874 0 01-.416-.106L2.476 13.803c-.634-.343-.634-1.27 0-1.613l13.108-7.088c.26-.14.573-.14.833 0l13.109 7.088c.633.343.633 1.27 0 1.613L16.417 20.89a.874.874 0 01-.416.106Z\"/></g>"},"dashboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(5 3)\"><rect width=\"10\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 19)\"><rect width=\"10\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 3)\"><rect width=\"10\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(5 15)\"><rect width=\"10\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"download":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 15 4 4 4-4m-4 4V5m12 18.001v4H4v-4\"/>"},"drag":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M21 3.999v24m-5-24v24m-5-24v24\"/>"},"duplicate":{"body":"<g stroke-miterlimit=\"10\"><g fill=\"rgba(0,0,0,0)\"><path d=\"M16.998 29H5a2 2 0 01-1.999-2V14.997c0-1.103.896-2 1.999-2h8.001V5.003a2 2 0 011.999-2h11.998c1.103 0 2 .896 2 2v11.998a2.002 2.002 0 01-2 1.998h-8v8.002a2.002 2.002 0 01-2 1.998Z\"/><path fill=\"currentColor\" d=\"M16.998 28a1 1 0 001-.999v-9.002h9a1 1 0 001-.998V5.003c0-.55-.448-1-1-1H15c-.55 0-.999.45-.999 1v8.994H5c-.55 0-.999.45-.999 1v12.004a1 1 0 00.999.998h11.998m0 2H5a2.998 2.998 0 01-2.999-2.998V14.997c0-1.652 1.343-3 2.999-3h7.001V5.003c0-1.658 1.343-3 2.999-3h11.998a3 3 0 013 3v11.998a2.998 2.998 0 01-3 2.998h-7v7.002a2.998 2.998 0 01-3 2.998Z\"/></g><g fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 2.001)\"><rect width=\"18\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"16\" height=\"16\" x=\"1\" y=\"1\" fill=\"none\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M18 11.001h6m-3-3v6\"/></g>"},"edit":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"m25.129 3.672 3.175 3.169a2.371 2.371 0 01.008 3.348l-16.735 16.88a2.369 2.369 0 01-1.2.654l-6 1.254a1.143 1.143 0 01-1.354-1.354l1.3-6.114a2.37 2.37 0 01.656-1.2L21.89 3.659a2.3 2.3 0 013.239.013Z\"/><path fill=\"currentColor\" d=\"M23.506 5a.295.295 0 00-.21.086L6.385 21.736a.37.37 0 00-.103.188l-1.027 4.825 4.712-.985a.37.37 0 00.19-.104L26.891 8.78a.372.372 0 000-.524l-3.176-3.169a.292.292 0 00-.21-.087m0-2a2.29 2.29 0 011.623.672l3.175 3.169a2.37 2.37 0 01.008 3.347l-16.734 16.88a2.369 2.369 0 01-1.202.654L4.38 28.976a1.143 1.143 0 01-1.355-1.356l1.3-6.113a2.37 2.37 0 01.656-1.198L21.892 3.66A2.296 2.296 0 0123.506 3Z\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m20 8 4 4M8 19l5 5\"/></g>"},"elearning":{"body":"<g transform=\"translate(4.001 5.332)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-2 -3.332)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M-.001 20.668h24\"/><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" transform=\"translate(3 17.668)\"/><path fill=\"currentColor\" d=\"M15.21 4.775a1 1 0 010 1.789l-4.764 2.381a1 1 0 01-1.447-.894V3.287a1 1 0 011.447-.894Z\"/></g>"},"email":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 12 18.001)\"><rect width=\"20\" height=\"28\" rx=\"3\" stroke=\"none\"/><rect width=\"18\" height=\"26\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m4 8.001 12 9 12-9\"/></g>"},"error":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16 9v7m0 5v2\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g></g>"},"error-2":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16 5v13m0 6v3\"/>"},"exercise":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M9.879 29.572a1.115 1.115 0 01-1.758 0C6.944 28.11 5 25.558 5 24.633V4.404a2.347 2.347 0 012.287-2.4h3.425A2.347 2.347 0 0113 4.404v20.229c0 .925-1.944 3.477-3.121 4.939Z\"/><path fill=\"currentColor\" d=\"M9 27.457c1.308-1.694 1.86-2.645 2-2.993V4.404c0-.238-.152-.404-.288-.404H7.287c-.136.001-.287.166-.287.404v20.06c.14.348.692 1.3 2 2.993M9 30c-.325 0-.649-.142-.879-.428C6.944 28.11 5 25.558 5 24.632V4.405C5 3.076 6.024 2 7.287 2h3.425C11.976 2 13 3.075 13 4.403v20.229c0 .925-1.944 3.477-3.121 4.939a1.125 1.125 0 01-.88.428Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M6 9h6\"/><path d=\"M17 2h10v28H17Z\"/><path fill=\"currentColor\" d=\"M19 4v24h6V4h-6m-2-2h10v28H17V2Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M18 9h3m-3 7h3m-3 7h3\"/></g>"},"external-link":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24 19.433v5.71A3 3 0 0121.143 28H6.857A3 3 0 014 25.143V10.857A3 3 0 016.857 8h5.714M19 5h8v8m-13 5L26 6\"/>"},"extract":{"body":"<g transform=\"translate(5.833 7.166)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.667 6.334h14m-14 6h8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M22.668 5.334v-7h-7m0 21.997h7v-7m-17-14.996h-7v7m-.001 8.003v7h7\"/><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" transform=\"translate(18.667 17.334)\"/></g>","width":33,"height":33},"eye-off":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M19 8.168a16.765 16.765 0 00-2.277-.167h-.017a15.052 15.052 0 00-6.112 1.207 12.771 12.771 0 00-5.132 4.093 10.707 10.707 0 00-1.424 2.492.64.64 0 000 .423 11.254 11.254 0 002.441 3.785M13 23.833a17.331 17.331 0 002.32.167 15.265 15.265 0 006.188-1.207 12.343 12.343 0 005.093-4.1 10.208 10.208 0 001.366-2.511.652.652 0 000-.424A11.887 11.887 0 0025.473 12\"/><path stroke-linecap=\"round\" d=\"m5 26.999 22-22\"/></g>"},"eye-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(3 7.333)\"><path d=\"M25.961 8.42a13.5 13.5 0 00-2.712-4.4 13.06 13.06 0 00-3.993-3 14.206 14.206 0 00-6.26-1.354 14.2 14.2 0 00-6.257 1.356 13.386 13.386 0 00-5.243 4.596 12.391 12.391 0 00-1.455 2.8.793.793 0 00-.006.475 12.89 12.89 0 002.634 4.415 12.747 12.747 0 003.987 3 14.5 14.5 0 006.34 1.358 14.5 14.5 0 006.345-1.355 12.986 12.986 0 005.221-4.6 11.871 11.871 0 001.4-2.812.793.793 0 00-.001-.479Z\"/><circle cx=\"5\" cy=\"5\" r=\"5\" transform=\"translate(8 3.667)\"/></g>"},"fail":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(4 4)\"><rect width=\"6\" height=\"14\" rx=\"2.005\" transform=\"translate(18)\"/><path stroke-linecap=\"round\" d=\"M1.64 11.42h1.226l-.1.678h-1.13a1.677 1.677 0 000 3.354h2.715l3.951.083s-.855 6.084 2.775 8.125c2.33 1.177 2.764-1.065 2.764-1.065v-4.237l1.385-1.412s2.771-2.62 2.771-4.264V2.825a2.622 2.622 0 00-2.768-2.828H3.896a1.678 1.678 0 000 3.354h.111l-.1.679H2.769a1.677 1.677 0 000 3.353h.668l-.1.679h-1.7a1.677 1.677 0 000 3.354Z\"/></g>"},"fast-back":{"body":"<g fill=\"none\"><path d=\"M18.999 22.074V21.2l6 3.448a2.728 2.728 0 004-2.574V9.926a2.732 2.732 0 00-4-2.578l-6 3.452v-.873a2.731 2.731 0 00-4-2.578L4.436 13.425a3.031 3.031 0 000 5.152l10.563 6.071a2.566 2.566 0 001.28.352 2.825 2.825 0 002.72-2.926Z\"/><path fill=\"currentColor\" d=\"M16.279 23c.302 0 .72-.322.72-.926v-4.33l8.995 5.172a.56.56 0 00.283.083c.303 0 .722-.321.722-.925V9.926c0-.605-.421-.927-.725-.927a.558.558 0 00-.281.082l-8.994 5.176V9.926c0-.605-.42-.927-.724-.927a.564.564 0 00-.283.082l-10.56 6.074c-.403.234-.434.706-.434.845 0 .14.03.611.43.842l10.562 6.072a.576.576 0 00.289.086m0 2c-.427 0-.866-.111-1.284-.352L4.432 18.576c-1.912-1.105-1.912-4.047 0-5.152l10.563-6.076c1.813-1.04 4.004.369 4.004 2.578v.873l5.996-3.451C26.804 6.308 29 7.717 29 9.926v12.148c0 2.211-2.195 3.617-4.004 2.574L19 21.201v.873C19 23.775 17.703 25 16.28 25Z\"/><path d=\"M14.435 13.425a3.027 3.027 0 000 5.149l10.564 6.076a2.729 2.729 0 004-2.575V9.925a2.729 2.729 0 00-4-2.575Z\"/><path fill=\"currentColor\" d=\"M14.999 16c0 .139.031.61.433.841l10.56 6.075a.534.534 0 00.573 0c.102-.058.434-.293.434-.841V9.925c0-.548-.332-.783-.434-.842a.534.534 0 00-.573 0l-10.56 6.076c-.402.23-.433.702-.433.841m-2 0c0-1.012.479-2.024 1.436-2.575l10.56-6.075c1.812-1.042 4.004.368 4.004 2.575v12.15c0 2.207-2.192 3.617-4.004 2.575l-10.56-6.075c-.957-.55-1.436-1.563-1.436-2.575Z\"/></g>"},"fast-forward":{"body":"<g fill=\"none\"><path d=\"M13 22.074v-.873l-6 3.447a2.728 2.728 0 01-4-2.574V9.926a2.732 2.732 0 014-2.578l6 3.451v-.873a2.731 2.731 0 014-2.578l10.563 6.076a3.031 3.031 0 010 5.152L17 24.648a2.566 2.566 0 01-1.284.352A2.825 2.825 0 0113 22.074Z\"/><path fill=\"currentColor\" d=\"M15.72 23a.563.563 0 00.287-.086l10.559-6.07c.403-.233.435-.706.435-.844 0-.14-.032-.612-.432-.842L16.01 9.082A.582.582 0 0015.723 9c-.303 0-.723.32-.723.925v4.332L6.007 9.082A.55.55 0 005.725 9c-.305 0-.726.32-.726.925v12.149c0 .361.144.584.264.709.133.136.3.217.457.217a.558.558 0 00.286-.086L15 17.744v4.33c0 .603.418.926.72.926m0 2C14.295 25 13 23.775 13 22.074V21.2l-5.997 3.447c-1.809 1.043-4.004-.363-4.004-2.574V9.925C3 7.716 5.193 6.31 7.003 7.347L13 10.798v-.873c0-2.21 2.191-3.615 4.003-2.578l10.563 6.076c1.913 1.106 1.913 4.047 0 5.153l-10.563 6.072c-.418.24-.856.352-1.284.352Z\"/><path d=\"M17.564 13.426a3.027 3.027 0 010 5.149L7 24.651a2.729 2.729 0 01-4-2.575V9.926a2.729 2.729 0 014-2.575Z\"/><path fill=\"currentColor\" d=\"M17 16.001c0-.139-.031-.61-.433-.841L6.007 9.085a.534.534 0 00-.573 0c-.102.058-.434.293-.434.841v12.15c0 .548.332.783.434.842.285.165.502.04.573 0l10.56-6.076c.402-.23.433-.702.433-.841m2 0c0 1.012-.479 2.024-1.436 2.575L7.004 24.65C5.192 25.693 3 24.283 3 22.076V9.926c0-2.207 2.192-3.617 4.004-2.575l10.56 6.075c.957.55 1.436 1.563 1.436 2.575Z\"/></g>"},"file":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g>"},"file-add":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 17.999h6\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16 15v6\"/>"},"file-duplicate":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 28c-.489 0-1-.117-1-1V11c0-.885.506-1 1-1h7V5c0-.885.506-1 1-1h8.016l4.982 5v12c0 .881-.506 1-1 1h-7v5c0 .885-.507 1-1 1Z\"/><g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path fill=\"rgba(0,0,0,0)\" d=\"M18 28H6c-.495 0-1-.119-1-1V11c0-.881.505-1 1-1h8.013L19 15v12c0 .881-.505 1-1 1Z\"/><path fill=\"currentColor\" d=\"M18 14.999h-4v-4ZM25.999 9h-4V5Z\"/></g>"},"file-remove":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 18h6\"/>"},"file-required":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M21 11.172v15.161A2.431 2.431 0 0118.429 29H5.572a2.431 2.431 0 01-2.571-2.667V7.667A2.431 2.431 0 015.572 5h9.2Z\"/><path fill=\"currentColor\" d=\"M5.572 7c-.25 0-.392.054-.441.105-.06.062-.13.246-.13.562v18.666c0 .316.07.5.13.562.05.05.191.105.44.105H18.43c.25 0 .392-.054.441-.105.06-.062.13-.246.13-.562V12.006L13.952 7h-8.38m0-2h9.203L21 11.172v15.161C21 27.99 20.003 29 18.43 29H5.572C3.998 29 3 27.99 3 26.333V7.667C3 6.01 3.998 5 5.572 5Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M19 11.002h-4v-4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M26 3v8m3-6-6 4m6 0-6-4\"/>"},"filter":{"body":"<g fill=\"none\" stroke-linejoin=\"round\"><path d=\"M8.29 3.004h15.419a2.154 2.154 0 011.955 3.271l-5.4 8.737a1.636 1.636 0 00-.265.89V27.64a1.455 1.455 0 01-2.364 1.051l-4.583-3.81a2.66 2.66 0 01-1.052-2.1v-6.88a2.589 2.589 0 00-.262-1.139l-5.4-8.487A2.154 2.154 0 018.29 3.004Z\"/><path fill=\"currentColor\" d=\"m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z\"/></g>"},"filter-2":{"body":"<g stroke=\"currentColor\"><path fill=\"none\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 7.999h22m-22 8h22m-22 8h22\"/><g transform=\"translate(6.667 5.333) translate(.333 -.334)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g><g transform=\"translate(6.667 5.333) translate(12.333 7.666)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g><g transform=\"translate(6.667 5.333) translate(7.333 15.666)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g></g>"},"filter-active":{"body":"<g fill=\"currentColor\" stroke-linejoin=\"round\"><path d=\"M18.547 28a.476.476 0 01-.289-.096l-4.566-3.796-.014-.011-.013-.01a1.658 1.658 0 01-.665-1.31v-6.88c0-.354-.088-1.16-.42-1.677L7.177 5.734a1.022 1.022 0 01-.044-1.08c.222-.407.655-.65 1.157-.65L23.71 4c.503 0 .936.243 1.158.651a1.02 1.02 0 01-.044 1.078l-.005.008-.006.009-5.394 8.729c-.274.428-.419.92-.419 1.423v11.739c0 .247-.27.363-.453.363Z\"/><path d=\"m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z\"/></g>"},"flag":{"body":"<g transform=\"translate(6.667 5.333)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15.158 13.666c3.925.769 6.176 2.506 6.176 4.769 0 2.933-5.271 5.231-12 5.231s-12-2.3-12-5.231c0-2.263 2.252-4 6.176-4.769\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.333 13.666v-16h10l-4 4 4 4h-10\"/><ellipse cx=\"3\" cy=\"1.5\" fill=\"currentColor\" rx=\"3\" ry=\"1.5\" transform=\"translate(6.333 16.666)\"/></g>"},"folder":{"body":"<g fill=\"none\"><path d=\"M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m3.999 23.999 5-9h20\"/></g>"},"full-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M20 8v16\"/><path d=\"M2 6h28v20H2z\" stroke=\"none\"/><path d=\"M3 7h26v18H3z\"/></g>"},"go-to-back":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4\"/><g stroke-miterlimit=\"10\"><path d=\"M11.794 24.999h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.4Z\"/><path fill=\"currentColor\" d=\"M11.794 24.999H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.573c-.85 0-1.436-.726-1.134-1.404L11.794 25Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 14.667 4 4 4-4m-4 2.331v-9\"/></g>"},"grid":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 2.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(3 16.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 2.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 16.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"group":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(3 7.001)\"><rect width=\"12\" height=\"12\" rx=\"6\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"5\"/></g><path stroke-linejoin=\"round\" d=\"M3.001 25.999a6 6 0 016-6 6 6 0 016 6M19 25.998a5 5 0 015-5 5 5 0 015 5\"/><g transform=\"translate(19 10.001)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g></g>"},"group-add":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(3 14)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g><path stroke-linejoin=\"round\" d=\"M3 30a5 5 0 015-5 5 5 0 015 5\"/><g transform=\"translate(14 17)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g><path stroke-linejoin=\"round\" d=\"M14 30a4 4 0 014-4 4 4 0 014 4\"/></g>"},"heart":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M22.184 4a7.837 7.837 0 00-5.527 2.249l-.658.646-.658-.646A7.836 7.836 0 009.815 4a7.836 7.836 0 00-5.527 2.249A7.563 7.563 0 002 11.679a7.561 7.561 0 002.289 5.43l10.645 10.46a1.518 1.518 0 001.066.434 1.523 1.523 0 001.068-.434l10.644-10.457A7.563 7.563 0 0030 11.679a7.561 7.561 0 00-2.289-5.43A7.837 7.837 0 0022.184 4Z\"/><path fill=\"currentColor\" d=\"M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.675L16 9.7l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.43A7.836 7.836 0 019.816 4Z\"/></g>"},"heart-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 27a.521.521 0 01-.364-.146L4.99 16.395A6.569 6.569 0 013 11.68c0-1.781.707-3.456 1.99-4.717A6.84 6.84 0 019.816 5a6.84 6.84 0 014.825 1.962l.658.647.701.688.7-.688.659-.647A6.84 6.84 0 0122.184 5c1.824 0 3.538.697 4.826 1.962A6.57 6.57 0 0129 11.68a6.57 6.57 0 01-1.99 4.716L16.367 26.852A.526.526 0 0116 27Z\"/><path d=\"M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.676L16 9.699l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.429A7.836 7.836 0 019.816 4Z\"/></g>"},"highlighter":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\"><path fill=\"none\" stroke-width=\"2\" d=\"m8 16.624 7.368 7.377L28 11.337l-7.368-7.336Zm.8 2.378 4.2 4.2-2.8 2.8H7.4l-1.4-1.4v-2.8Z\"/><path fill=\"currentColor\" d=\"m6 25.002-2 2 2 1 2-2Z\"/></g>"},"home":{"body":"<g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M14 28h-4c-.715-.002-1.467-.344-2.062-.939C7.343 26.466 7 25.714 7 25v-9.872H3.693a1.54 1.54 0 01-.486-.063c-.13-.045-.16-.089-.174-.11a.143.143 0 01-.015-.05V14.9c0-.027 0-.099.087-.234.076-.117.183-.233.336-.363l.005-.005.005-.004 11.225-9.831A2.047 2.047 0 0116.002 4c.5 0 .971.166 1.327.465l11.237 9.705.002.002.003.002c.148.126.258.246.337.365.075.119.085.188.086.235a.13.13 0 01-.015.053.202.202 0 01-.079.067c-.102.054-.244.103-.585.106l-2.32-.003-1.003-.001.001 1.002L25 25c0 .714-.342 1.466-.937 2.061-.596.595-1.348.937-2.065.938h-3.997V21h-1l-2-.001h-1v7Z\"/><path fill=\"currentColor\" d=\"M13 27v-7.002l6.001.003v6.998h2.996c.954-.001 2.002-1.048 2.003-1.998l-.008-11.006 2.845.003-10.156-8.772A1.067 1.067 0 0016 5c-.263 0-.502.08-.677.223L5.16 14.127H8v10.87c0 .954 1.048 2 2 2.002h3m2 2h-5c-2.055-.003-3.999-1.946-4-4v-8.872H3.693a2.52 2.52 0 01-.807-.116 1.286 1.286 0 01-.683-.5 1.121 1.121 0 01-.185-.618c.002-.262.082-.513.246-.769.13-.202.298-.388.528-.583l11.232-9.838A3.064 3.064 0 0116 3a3.06 3.06 0 011.978.704l11.242 9.709c.223.19.396.381.528.583.163.255.243.506.246.769a1.12 1.12 0 01-.186.62 1.2 1.2 0 01-.437.391c-.29.154-.605.22-1.052.224l-2.326-.003L26 25c-.001 2.053-1.946 3.996-4 4h-5v-7l-2-.001v7Z\"/></g>"},"hourglass":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\"><path fill=\"none\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" d=\"M18.999 15.999c0-.572 1.967-1.785 3-2.889a10.728 10.728 0 003-7.222V2.999h-18v2.889a10.723 10.723 0 003 7.222c1.033 1.1 3 2.317 3 2.889s-1.967 1.785-3 2.889a10.724 10.724 0 00-3 7.222v2.889h18V26.11a10.734 10.734 0 00-3-7.222c-1.033-1.105-3-2.315-3-2.889Z\"/><path fill=\"none\" stroke-miterlimit=\"10\" d=\"M24 9.999H8\"/><path fill=\"currentColor\" d=\"M9.999 27.999c0-1.657 2.686-3 6-3s6 1.343 6 3\"/></g>"},"image":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2.667 5.333)\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 13.333 14)\"><rect width=\"20\" height=\"28\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"26\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m4.333 19.667 13-13 9 9\"/><circle cx=\"2\" cy=\"2\" r=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(4.333 5.666)\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m12.334 11.666 4 4 5-5\"/></g>"},"info-badge":{"body":"<g transform=\"translate(3.2 3.2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"currentColor\" transform=\"translate(-1.2 -1.199)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.8 21.801v-10m0-6v-2\"/></g>"},"information":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16 9v2m0 5v7\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g></g>"},"italic":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26 5.001H12m8 22H6M20 5l-8 22\"/>"},"key":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 29v-5l10.419-10.424a8 8 0 115.026 5.01l-1.218 1.242-.228.174h-2v2h-2l-1 1v2h-2v2l-2 2Z\"/><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(20 7)\"/>"},"language":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-miterlimit=\"10\" d=\"M4 11h24M4 21h24\"/><path d=\"M15 29s-5-6.5-5-13 5-13 5-13m2 26s5-6.5 5-13-5-13-5-13\"/></g>"},"learning-path":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m4 24.167 1.765-6.548a.282.282 0 01.507-.081 3.125 3.125 0 101.223-4.53.28.28 0 01-.4-.322l1.765-6.55 6.59 1.756a.281.281 0 00.324-.4 3.084 3.084 0 01-.216-2.184 3.135 3.135 0 016.084 1.51 3.1 3.1 0 01-1.311 1.888.279.279 0 00.082.5l6.588 1.756L22.14 29Z\"/>"},"light-off":{"body":"<path fill=\"currentColor\" d=\"M16 29a4.968 4.968 0 01-3.277-1.2 3.99 3.99 0 01-1.406-2.875l2-2v1.863a2.006 2.006 0 00.728 1.5 3.084 3.084 0 003.92 0 2.032 2.032 0 00.723-1.5v-3.605l.465-.559a18.957 18.957 0 002.718-4.15 12.184 12.184 0 00.97-3.072l2.158-2.158v.245a13.8 13.8 0 01-1.314 5.826 21.077 21.077 0 01-3 4.6v2.883a4.02 4.02 0 01-1.409 3.01A4.968 4.968 0 0116 29ZM9.052 18.7a16.34 16.34 0 01-.732-1.4 13.785 13.785 0 01-1.319-5.816 8.21 8.21 0 012.653-6.02 9.4 9.4 0 0112.664-.029l-1.416 1.416a7.4 7.4 0 00-9.882.074 6.219 6.219 0 00-2.019 4.559 11.622 11.622 0 001.136 4.977c.122.262.251.521.386.77l-1.469 1.467Z\"/><path fill=\"currentColor\" d=\"M20 23h-6.756l2-2H20v2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"light-on":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M25 11.489a8.232 8.232 0 00-2.653-6.018A9.255 9.255 0 0016 3.001a9.256 9.256 0 00-6.347 2.47A8.232 8.232 0 007 11.489a13.682 13.682 0 001.321 5.817 21.257 21.257 0 002.994 4.584v2.9a4 4 0 001.407 3.007A4.96 4.96 0 0016 29.001a4.96 4.96 0 003.278-1.2 4 4 0 001.407-3.007v-2.882a21.054 21.054 0 003-4.6A13.746 13.746 0 0025 11.489Z\"/><path fill=\"currentColor\" d=\"M16 5.001c-1.885 0-3.653.685-4.98 1.93C9.717 8.151 9 9.771 9 11.491c0 1.697.37 3.324 1.135 4.974.618 1.332 1.507 2.689 2.718 4.148l.461.556v3.628c0 .753.453 1.262.727 1.502.516.453 1.212.702 1.959.702.747 0 1.443-.25 1.962-.705.27-.237.724-.746.724-1.501v-3.606l.462-.556c1.214-1.458 2.104-2.817 2.722-4.154.761-1.65 1.131-3.281 1.13-4.99 0-1.718-.717-3.337-2.021-4.56C19.653 5.686 17.885 5.001 16 5.001m0-2c2.47 0 4.716.94 6.347 2.47 1.632 1.528 2.654 3.663 2.653 6.018.001 2.125-.498 4.061-1.314 5.828-.77 1.665-1.821 3.179-3 4.595v2.883c0 1.19-.554 2.26-1.408 3.007-.854.75-2.012 1.199-3.278 1.199s-2.424-.45-3.278-1.2c-.854-.745-1.409-1.816-1.408-3.006v-2.904c-1.174-1.416-2.224-2.926-2.993-4.584-.82-1.767-1.322-3.701-1.321-5.818-.001-2.355 1.022-4.49 2.653-6.018 1.631-1.53 3.878-2.47 6.347-2.47Z\"/></g><path stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 22.001h8\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m19 13.001-3 4m-3-3.997 3 4v4\"/></g>"},"link":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M13 17.521a6.344 6.344 0 008.79 1.248 6.17 6.17 0 00.68-.579l3.767-3.71a6.115 6.115 0 00-.154-8.743 6.351 6.351 0 00-8.725 0l-2.16 2.114\"/><path d=\"M19 14.479a6.344 6.344 0 00-8.79-1.248 6.186 6.186 0 00-.68.579l-3.767 3.71a6.115 6.115 0 00.155 8.743 6.351 6.351 0 008.725 0l2.148-2.114\"/></g>"},"lock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 18.999v4\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 11.999)\"><rect width=\"24\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"22\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M11.005 11.999V8.535a4.785 4.785 0 015-4.536h0a4.784 4.784 0 015 4.536v3.464\"/></g>"},"login":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M20 4h5.333A3.208 3.208 0 0128 6.667v18.666A3.213 3.213 0 0125.333 28H20\"/><path d=\"m16 21.999 6-6-6-6M20 16H4\"/></g>"},"logout":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 4H6.667A3.208 3.208 0 004 6.667v18.666A3.213 3.213 0 006.667 28H12m10-6.001 6-6-6-6M26 16H10\"/>"},"maximaze":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><rect width=\"28\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M7 17v4h4m14-6v-4h-4\"/></g>"},"menu":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 20h18M5 16h14M5 12h22\"/>"},"merge":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(5.333 5.334) translate(-.333 15.666)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(5.333 5.334) translate(13.666 15.666)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linejoin=\"round\" d=\"m20 8.334-4-4-4 4M16 6v11\"/><path stroke-miterlimit=\"10\" d=\"m11 22.001 5-5 5 5\"/></g>"},"minimize":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><g transform=\"translate(3 17.001)\"><rect width=\"11\" height=\"9\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h9v7H1z\"/></g><path stroke-linecap=\"round\" d=\"M28 10.999v-4h-6m0 18.002h6v-4m-18-14H4v4\"/></g>"},"mixed-class":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 30a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z\"/><path d=\"M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z\"/></g><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 17a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M8 9.999a3 3 0 11.879 2.121A2.994 2.994 0 018 9.999Z\"/><path fill=\"currentColor\" d=\"M11 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0011 11c.341 0 .574-.16.707-.293A.981.981 0 0012 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 6.999Z\"/></g></g><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 17a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M18 9.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 9.999Z\"/><path fill=\"currentColor\" d=\"M21 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0021 11c.341 0 .574-.16.707-.293A.981.981 0 0022 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 6.999Z\"/></g></g>"},"more-horizontal":{"body":"<g fill=\"currentColor\" transform=\"rotate(90 8.9 22.767)\"><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 3.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 12.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 21.667)\"/></g>"},"more-vertical":{"body":"<g fill=\"currentColor\" transform=\"translate(13.333 5.333)\"><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 -1.334)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 7.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 16.666)\"/></g>"},"news":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"m9 12-5 .055V25c0 1.879.845 3 2.5 3S9 26.879 9 25V6h19v19a2.94 2.94 0 01-3 3H7\"/><path stroke-linecap=\"round\" d=\"M14 22h5m-5-10h9m-9 5h9\"/></g>"},"no-prerequisites":{"body":"<g transform=\"translate(8.883 9)\"><rect width=\"10\" height=\"5.002\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 -1)\"/><rect width=\"10\" height=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 10)\"/><path fill=\"currentColor\" d=\"M-3.765 3.728h1.258V-.285l-1.376.353v-1.365l2.887-.7v5.728H.118v1.272h-3.882Zm-.102 10.798a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.157-.455.522v.747h-1.235v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224H.121v1.3h-3.984Z\"/></g>"},"notes":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 9h16M8 15h9\"/><g transform=\"translate(2 2)\"><rect width=\"28\" height=\"28\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"26\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 29c4.543 0 6.857-7 6.857-7L28 28.9 4 29Z\"/></g>"},"number-code":{"body":"<defs><path id=\"svgIDa\" d=\"M2 0v5m2-3.75-4 2.5m4 0-4-2.5\"/></defs><g fill=\"none\" stroke=\"currentColor\"><g stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(8 9)\"><rect width=\"16\" height=\"11\" rx=\"3\" stroke=\"none\"/><rect width=\"14\" height=\"9\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12.005 9V6.835c0-1.565 1.791-2.835 4-2.835h0c2.209 0 4 1.269 4 2.835V9\"/></g><use xlink:href=\"#svgIDa\" stroke-linecap=\"round\" transform=\"translate(6 23)\"/><use xlink:href=\"#svgIDa\" stroke-linecap=\"round\" transform=\"translate(14 23)\"/><use xlink:href=\"#svgIDa\" stroke-linecap=\"round\" transform=\"translate(22 23)\"/></g>"},"numbered-list":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 22h6m-6-5.999h15M12 10h10\"/><path fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" d=\"M6.059 11.275h.629V8.981l-.688.2V8.4L7.443 8v3.273H8V12H6.059Zm-.054 5.884a1.1 1.1 0 01.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154 0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569 0 .878.367.878 1.094v.211a1.087 1.087 0 01-.571 1.095l-.6.366a.369.369 0 00-.186.365v.128h1.38v.741h-2ZM8 22.793v.12c0 .727-.3 1.089-.865 1.089h-.269c-.566 0-.866-.361-.866-1.074v-.323h.608v.364c0 .186.076.28.225.28h.326c.148 0 .227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143 0 .209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143 0-.217.091-.217.274v.335h-.611v-.287c0-.711.3-1.07.864-1.07h.21c.564 0 .863.359.863 1.089v.1c0 .418-.157.707-.459.786.331.062.496.385.496.819Z\"/>"},"on-site":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 16 4-4h6l4-4\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 30a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z\"/><path d=\"M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z\"/></g>"},"order-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 7h22M5 13h16M5 19h10M5 25h4\"/>"},"order-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 25h22M5 19h16M5 13h10M5 7h4\"/>"},"paste":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(10.001 3)\"><rect width=\"16\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 28h-9a2.665 2.665 0 01-3-3V10\"/><path stroke-linecap=\"round\" d=\"M15 10h6m-6 5h6\"/></g>"},"pausa":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 6v20m8-20v20\"/>"},"pdf":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M29 10H16m13 6H16m13 7H3\"/><path stroke-linejoin=\"round\" d=\"M3 9h8v8H3z\"/></g>"},"phone":{"body":"<g transform=\"translate(8.666 2.667)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-1.665 -.666)\"><rect width=\"18\" height=\"28\" rx=\"2.999\" stroke=\"none\"/><rect width=\"16\" height=\"26\" x=\"1\" y=\"1\" rx=\"1.999\"/></g><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" transform=\"translate(5.334 19.334)\"/><rect width=\"6\" height=\"3\" fill=\"currentColor\" rx=\"1\" transform=\"translate(4.334 .334)\"/></g>"},"pin":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 7.999)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path d=\"M16 2.001a9.9 9.9 0 0110 9.8c0 8.412-10 18.2-10 18.2s-10-9.793-10-18.2a9.9 9.9 0 0110-9.8Z\"/><path fill=\"currentColor\" d=\"M16 4.001c-4.411 0-8 3.5-8 7.8 0 3.005 1.587 6.822 4.59 11.038A49.357 49.357 0 0016 27.086a49.281 49.281 0 003.373-4.193C22.4 18.657 24 14.82 24 11.8 24 7.5 20.411 4 16 4m0-2c5.523 0 10 4.388 10 9.8C26 20.212 16 30 16 30S6 20.207 6 11.8C6 6.388 10.477 2 16 2Z\"/></g>"},"pin-map":{"body":"<g fill=\"currentColor\"><path d=\"M16 28.56a51.066 51.066 0 01-4.186-5.088c-1.413-1.977-2.536-3.89-3.338-5.688-.979-2.193-1.475-4.206-1.475-5.982 0-4.852 4.037-8.8 8.999-8.8 4.961 0 8.998 3.948 8.998 8.8 0 1.777-.496 3.79-1.475 5.984-.803 1.798-1.925 3.711-3.338 5.688A51.036 51.036 0 0116 28.56ZM16 7a5.006 5.006 0 00-4.999 5c0 2.758 2.243 5 5 5 2.756 0 5-2.242 5-5 0-2.756-2.244-5-5-5Z\"/><path d=\"M16 27.08a49.525 49.525 0 003.372-4.188c1.373-1.922 2.463-3.777 3.237-5.513.922-2.065 1.389-3.941 1.389-5.577 0-4.3-3.588-7.8-7.998-7.8s-8 3.5-8 7.8c0 1.635.468 3.51 1.39 5.575.774 1.736 1.864 3.591 3.238 5.514A49.566 49.566 0 0016 27.08M16 6c3.309 0 6 2.691 6 6 0 3.308-2.691 6-6 6a6.007 6.007 0 01-5.999-6c0-3.309 2.692-6 6-6M16 30c-.026-.026-2.547-2.514-5-5.947-1.451-2.03-2.607-4.003-3.437-5.861-1.037-2.323-1.562-4.473-1.562-6.39 0-5.403 4.485-9.8 9.999-9.8 5.513 0 9.998 4.397 9.998 9.8 0 1.919-.526 4.07-1.562 6.392-.83 1.858-1.986 3.83-3.437 5.861-2.451 3.43-4.973 5.92-4.998 5.944H16Zm0-22a4.004 4.004 0 00-3.999 4c0 2.206 1.794 4 4 4 2.205 0 4-1.794 4-4 0-2.205-1.795-4-4-4Z\"/></g>"},"pizza":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.349 3 29 29 3.05 20.333S1.182 3 20.349 3Z\"/><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M6.093 21a15.119 15.119 0 01.023-3.338 14.759 14.759 0 011.449-3.019 15.007 15.007 0 011.5-2.994 15.465 15.465 0 012.637-2.1 15.242 15.242 0 012.671-2.061 15.667 15.667 0 013.306-.77A15.224 15.224 0 0121 6\"/><path fill=\"currentColor\" d=\"M18.546 10.324a2.356 2.356 0 00-3.223 3.225.784.784 0 00.581.38.8.8 0 00.674-.23l.18-.154L17.772 15l2.225-2.229-1.455-1.041.154-.158a.806.806 0 00.23-.675.783.783 0 00-.38-.58Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.335 22.135s-.3-4.227 4.7-2.865S16.856 25 16.856 25m10.154-2.117s-1.859 2.126-3.428-.727a2.637 2.637 0 011.455-3.947\"/>"},"play":{"body":"<g fill=\"none\"><path d=\"M26.753 14.241a2 2 0 010 3.517L8.953 27.4A2 2 0 016 25.642V6.358A2 2 0 018.953 4.6Z\"/><path fill=\"currentColor\" d=\"M25.8 16 8 6.358v19.284L25.8 16m2 0c0 .69-.348 1.38-1.047 1.759L8.953 27.4C7.62 28.123 6 27.158 6 25.642V6.358c0-1.516 1.62-2.48 2.953-1.759l17.8 9.642A1.98 1.98 0 0127.801 16Z\"/></g>"},"plug-in":{"body":"<g fill=\"none\"><path d=\"M4 26.002a2 2 0 01-2-2v-12a2 2 0 012-2h1v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24.002v-12h-3v-4h-5v4h-8v-4H7v4H4.003v12H28m0 2H4.003a2 2 0 01-2-2v-12a2 2 0 012-2H5v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z\"/></g>"},"pointer":{"body":"<g stroke=\"currentColor\"><g fill=\"none\" stroke-width=\"2\" transform=\"translate(4 3.999)\"><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"none\"/><circle cx=\"12\" cy=\"12\" r=\"11\"/></g><g transform=\"translate(12 11.999)\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3.5\" fill=\"none\"/></g></g>"},"printer":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M28 8.999H4a1.836 1.836 0 00-2 2v11a1.812 1.812 0 002 2h3v3a1.843 1.843 0 002 2h14a1.843 1.843 0 002-2v-3h3a1.836 1.836 0 002-2v-11a1.836 1.836 0 00-2-2Z\"/><path fill=\"currentColor\" d=\"M4 11v11h5v5h14v-5h5V11H4m0-2h24c1.243 0 2 .734 2 2v11c0 1.265-.757 2-2 2h-3v3c0 1.257-.764 2-2 2H9c-1.236 0-2-.743-2-2v-3H4c-1.299-.004-2-.735-2-2V11c0-1.266.757-2 2-2Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M21 15h3\"/><g stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"M21.001 5.998h-2v-2Z\"/><path stroke-miterlimit=\"10\" d=\"M11 10V6a1.8 1.8 0 012-2h6l2 2v4\"/></g><g stroke-miterlimit=\"10\"><path d=\"M7 20h18v7a2.3 2.3 0 01-2.25 2H9.25A2.3 2.3 0 017 27Z\"/><path fill=\"currentColor\" d=\"M9 22v4.852c.067.07.186.143.25.148h13.497a.537.537 0 00.253-.15V22H9m-2-2h18v7c0 .997-1.125 2-2.25 2H9.25C8.125 29 7 28.003 7 27v-7Z\"/></g></g>"},"profile":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 5.334)\"><path fill=\"rgba(0,0,0,0)\" d=\"M2.2 10.588a4 4 0 010-7.84 7.005 7.005 0 0111.6 0 4 4 0 010 7.84 7 7 0 01-11.6 0Z\"/><path fill=\"none\" stroke-linejoin=\"round\" d=\"M-1 24.666a9 9 0 019-9 9 9 0 019 9\"/><rect width=\"8\" height=\"8\" fill=\"none\" rx=\"4\" transform=\"translate(-1 2.666)\"/><rect width=\"8\" height=\"8\" fill=\"none\" rx=\"4\" transform=\"translate(9 2.666)\"/></g>"},"profile-add":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\"><path fill=\"none\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(4 5.332)\"><path fill=\"rgba(0,0,0,0)\" d=\"M1.624 11.334a3 3 0 010-5.328 6 6 0 0110.761 0 3 3 0 010 5.328 6 6 0 01-10.752 0Z\"/><path fill=\"none\" stroke-linejoin=\"round\" d=\"M-1 24.666a8 8 0 018-8 8 8 0 018 8\"/><rect width=\"6\" height=\"6\" fill=\"rgba(0,0,0,0)\" rx=\"3\" transform=\"translate(0 5.668)\"/><rect width=\"6\" height=\"6\" fill=\"rgba(0,0,0,0)\" rx=\"3\" transform=\"translate(8 5.668)\"/></g></g>"},"push-pin-off":{"body":"<path fill=\"currentColor\" d=\"M15.982 29.004a2.22 2.22 0 01-1.7-.791 11.534 11.534 0 01-2.264-3.984l1.664-1.664c.011.074.021.146.036.23a8.977 8.977 0 002.095 4.131.216.216 0 00.173.076.239.239 0 00.165-.066l10.788-10.789a.22.22 0 00.066-.172.228.228 0 00-.08-.164 8.88 8.88 0 00-4.362-2.127l1.665-1.664a11.609 11.609 0 013.984 2.26 2.23 2.23 0 01.138 3.283L17.566 28.352a2.239 2.239 0 01-1.584.652Zm-5.938-11.289L6.255 13.93a.215.215 0 00-.155-.066l-1.509-.008a1.6 1.6 0 01-1.123-2.725l7.655-7.66a1.6 1.6 0 012.729 1.123l.009 1.508a.219.219 0 00.066.16l3.786 3.785-1.414 1.414-3.787-3.783a2.244 2.244 0 01-.652-1.566v-.541l-6.292 6.293h.545a2.217 2.217 0 011.563.652l3.788 3.787-1.414 1.412Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m23 23 5 5\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"push-pin-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M27.567 15.045c-3.424-2.88-6.319-2.55-7.566-2.2a1.227 1.227 0 01-1.209-.309l-5.573-5.571a1.224 1.224 0 01-.359-.86l-.007-1.509a.6.6 0 00-1.02-.418l-7.657 7.656a.6.6 0 00.418 1.02l1.509.007a1.224 1.224 0 01.86.359l5.572 5.572a1.227 1.227 0 01.309 1.209c-.352 1.248-.682 4.142 2.2 7.566a1.235 1.235 0 001.811.074l10.786-10.785a1.235 1.235 0 00-.074-1.811Z\"/><path stroke-linecap=\"round\" d=\"m23 23 5 5\"/></g>"},"qrcode":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(2 20.999)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(21 2.001)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3 16h12v3m1-15.999v7m13 4v8m-13.999 4.333V29h5v-8M20 16h5v3m1 10h3v-3\"/></g>"},"question-badge":{"body":"<g transform=\"translate(2.667 2.667)\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"currentColor\" transform=\"translate(-.667 -.666)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.333 7.531a5.2 5.2 0 016.557-2.916 4.5 4.5 0 013.442 4.859c0 3.236-5 4.859-5 4.859\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M13.333 22.334v-2\"/></g>"},"radio":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g>"},"redo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M26 12H11c-4.37 0-7 2.68-7 5.984V18c0 3.305 2.629 6 7 6h5.1\"/><path stroke-linejoin=\"round\" d=\"m21.999 6 6 6-6 6\"/></g>"},"relations":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4.267 7.534)\"><path d=\"m2.733 3.467 3 3\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-1.267 -.533)\"/></g><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(14.934 5.334)\"><path d=\"M1.066 2.666v4\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.934 -1.334)\"/></g><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(21.4 6.534)\"><path d=\"m3.6 4.467-3 3\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(3.6 .467)\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 29a4 4 0 014-4 4 4 0 014 4\"/><g stroke-miterlimit=\"10\"><path d=\"M12 19.999a4 4 0 111.172 2.828A3.992 3.992 0 0112 19.999Z\"/><path fill=\"currentColor\" d=\"M16 17.999a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414A1.993 1.993 0 0016 18m0-2c1.106 0 2.102.446 2.828 1.17A3.984 3.984 0 0120 19.999a3.98 3.98 0 01-1.172 2.828A3.987 3.987 0 0116 23.999a3.988 3.988 0 01-2.828-1.172A3.988 3.988 0 0112 19.999c0-1.106.448-2.104 1.172-2.83A3.986 3.986 0 0116 15.999Z\"/></g></g>"},"reload":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M23 22.791A9.7 9.7 0 0115.804 26a9.9 9.9 0 01-9.8-10M9 8.6A10.225 10.225 0 0115.837 6 10.083 10.083 0 0126 16\"/><path stroke-linejoin=\"round\" d=\"m9 17-3-3-3 3m20-1.999 3 3 3-3\"/></g>"},"remove":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 16h24\"/>"},"remove-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" d=\"M11 16.001h10\"/></g>"},"reorder":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M4 18h24M4 14h24\"/><path stroke-linejoin=\"round\" d=\"m20 8-4-4-4 4m0 16 4 4 4-4\"/></g>"},"repeat":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"m22.999 4.999 4 4-4 4M9 27l-4-4 4-4\"/><path d=\"M5 14.999v-3a3.177 3.177 0 013.331-3H25m2 8v3a3.177 3.177 0 01-3.331 3H7\"/></g>"},"repository":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m24 16.001-3-3-3 3m2.999-1v6\"/><path d=\"M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z\"/></g>"},"request-form":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4 4)\"><path d=\"M18 14.001a5.461 5.461 0 01-4 4m0-12a5.459 5.459 0 014 4m-12 0a5.46 5.46 0 014-4m0 12a5.454 5.454 0 01-4-4m16.994 1.142c-.814 5.444-3.307 7.016-7.856 7.856m0-22c4.456.92 7.018 3.384 7.856 7.856m-22 0C1.914 4.404 4.382 1.839 8.85.999m0 22c-4.55-.846-7-3.308-7.856-7.856\"/><rect width=\"6\" height=\"8\" rx=\"1.333\" transform=\"translate(9 17)\"/><rect width=\"8\" height=\"6\" rx=\"1.333\" transform=\"translate(17 9)\"/><rect width=\"8\" height=\"6\" rx=\"1.333\" transform=\"translate(-1 9)\"/><rect width=\"6\" height=\"8\" rx=\"1.333\" transform=\"translate(9 -1)\"/></g>"},"resize-100":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M29 11V5h-6m0 22.001h6v-6M9 4.999H3v6m-.001 10.003v6h6\"/><path fill=\"currentColor\" d=\"M6.999 21h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018Zm11.998 0h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018ZM15 14.999h2v-2h-2Zm0 4h2v-2h-2Z\"/>"},"resize-height":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m20 11.001-4-4-4 4m0 10.003 4 4 4-4\"/><path d=\"M5 3h22M5 29h22\"/></g>"},"resize-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m21 20.001 4-4-4-4M10.999 12l-4 4 4 4\"/><path d=\"M29 5v22M3 5v22\"/></g>"},"search":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g>"},"sequential-prerequisites":{"body":"<g transform=\"translate(4.333 5.333)\"><rect width=\"10\" height=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(11.667 .666)\"/><path fill=\"currentColor\" d=\"M.785 5.394h1.258V1.381l-1.376.353V.369l2.887-.7v5.728h1.114v1.272H.786Zm-.101 14.8a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.156-.455.522v.747H.672v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224h2.751v1.3H.688Z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(11.667 13.667)\"><rect width=\"10\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M14.672 13.668v-1.3a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7v1.3\"/></g></g>"},"settings":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(4 4.001)\"><path d=\"M10.478 24h3.044l.372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.269 2.378 1.856 2.156-2.156-1.856-2.378.271-.468a9.139 9.139 0 00.892-2.153l.142-.515L24 13.522v-3.045l-2.987-.371-.142-.516a9.123 9.123 0 00-.893-2.155l-.269-.467 1.856-2.378-2.157-2.155-2.378 1.857-.467-.271a9.131 9.131 0 00-2.153-.892l-.516-.145-.372-2.987h-3.044l-.372 2.987-.516.142a9.131 9.131 0 00-2.153.892l-.467.271-2.378-1.854-2.156 2.156 1.856 2.378-.269.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516a9.106 9.106 0 00.893 2.152l.269.468-1.855 2.378 2.156 2.156 2.378-1.856.467.269a9.131 9.131 0 002.153.892l.516.142Z\"/><path fill=\"currentColor\" d=\"m13.522 24 .372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.27 2.378 1.856 2.156-2.156-1.856-2.378.27-.468a9.14 9.14 0 00.893-2.153l.142-.515L24 13.522v-3.045l-2.987-.37-.142-.517a9.123 9.123 0 00-.893-2.154l-.27-.467 1.856-2.378-2.156-2.156-2.378 1.857-.467-.27a9.13 9.13 0 00-2.153-.893l-.516-.142L13.522 0h-3.044l-.372 2.987-.516.142a9.13 9.13 0 00-2.153.892l-.467.27-2.378-1.856L2.436 4.59l1.856 2.378-.27.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516c.21.768.511 1.492.893 2.152l.27.468-1.856 2.378 2.156 2.156 2.378-1.856.467.27a9.13 9.13 0 002.153.892l.516.142.372 2.988h3.044m0 2h-3.044a2 2 0 01-1.985-1.753l-.21-1.691a11.24 11.24 0 01-1.119-.463l-1.342 1.048a2 2 0 01-2.645-.163l-2.155-2.155a2 2 0 01-.163-2.645l1.048-1.342a11.113 11.113 0 01-.464-1.119l-1.69-.21A2 2 0 01-2 13.521v-3.045A2 2 0 01-.246 8.492l1.689-.21c.135-.383.29-.757.464-1.119L.859 5.821a2 2 0 01.163-2.645l2.155-2.155A2 2 0 015.822.858l1.342 1.048c.362-.174.735-.328 1.119-.463l.21-1.69A2 2 0 0110.479-2h3.044a2 2 0 011.984 1.753l.211 1.69c.384.135.758.29 1.12.463l1.34-1.048a2 2 0 012.646.163l2.155 2.155a2 2 0 01.163 2.645l-1.047 1.342c.173.362.328.736.463 1.12l1.69.21A2 2 0 0126 10.476v3.045a2 2 0 01-1.753 1.984l-1.69.211c-.135.383-.29.757-.463 1.119l1.047 1.342a2 2 0 01-.163 2.645l-2.155 2.155a2 2 0 01-2.645.163l-1.342-1.047c-.36.172-.735.327-1.119.462l-.21 1.691A2 2 0 0113.522 26Z\"/><circle cx=\"5\" cy=\"5\" r=\"5\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(7 6.999)\"/></g>"},"share":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(-.333 8)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(14.667 17)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(14.667 -1)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m20 24-9-7m9-8-9 6\"/></g>"},"sketch":{"body":"<g fill=\"none\"><path d=\"M21.309 4.002a2 2 0 011.759 1.047l5.417 10a2 2 0 010 1.905l-5.417 10a2 2 0 01-1.759 1.048H10.691a2 2 0 01-1.759-1.047l-5.417-10a2 2 0 010-1.905l5.417-10a2 2 0 011.759-1.048Z\"/><path fill=\"currentColor\" d=\"m10.691 6.002-5.416 10 5.416 10H21.31l5.416-10-5.416-10H10.69m0-2h10.62a2 2 0 011.758 1.047l5.417 10a2 2 0 010 1.906l-5.417 10a2 2 0 01-1.758 1.047H10.69a2 2 0 01-1.758-1.047l-5.417-10a2 2 0 010-1.906l5.417-10a2 2 0 011.758-1.047Z\"/></g>"},"skills":{"body":"<g transform=\"translate(2.667 1.666)\"><rect width=\"6\" height=\"6\" fill=\"currentColor\" rx=\"1\" transform=\"translate(1.333 6.334)\"/><path fill=\"currentColor\" d=\"M21.465 6.853a1 1 0 011.736 0l2.277 3.981a1 1 0 01-.868 1.5h-4.554a1 1 0 01-.868-1.5Zm-8.739-5.055a1 1 0 011.214 0l1.839 1.4a1 1 0 01.348 1.09l-.722 2.346a1 1 0 01-.955.7h-2.233a1 1 0 01-.955-.7l-.723-2.342a1 1 0 01.348-1.09Z\"/><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.333 27.334a4 4 0 014-4 4 4 0 014 4\"/><g stroke-miterlimit=\"10\"><path d=\"M9.333 18.333a4 4 0 111.172 2.828 3.992 3.992 0 01-1.172-2.828Z\"/><path fill=\"currentColor\" d=\"M13.333 16.333a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414a1.993 1.993 0 00-1.416-.586m0-2c1.106 0 2.102.446 2.828 1.17a3.984 3.984 0 011.172 2.83 3.98 3.98 0 01-1.172 2.828 3.987 3.987 0 01-2.828 1.172 3.988 3.988 0 01-2.828-1.172 3.988 3.988 0 01-1.172-2.828c0-1.106.448-2.104 1.172-2.83a3.986 3.986 0 012.828-1.17Z\"/></g></g></g>"},"skip-back":{"body":"<g fill=\"none\"><path d=\"M6.186 18.752a2 2 0 010-3.5l13.85-7.617A2 2 0 0123 9.383v15.234a2 2 0 01-2.964 1.753Z\"/><path fill=\"currentColor\" d=\"M7.15 17 21 24.617V9.383L7.15 17m-2 0a1.98 1.98 0 011.036-1.752l13.85-7.618C21.37 6.897 23 7.861 23 9.383v15.234c0 1.522-1.63 2.486-2.964 1.753l-13.85-7.618A1.98 1.98 0 015.15 17Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M26 8v18\"/></g>"},"skip-forward":{"body":"<g fill=\"none\"><path d=\"M25.814 14.248a2 2 0 010 3.5l-13.85 7.617A2 2 0 019 23.617V8.383a2 2 0 012.964-1.753Z\"/><path fill=\"currentColor\" d=\"M24.85 16 11 8.383v15.234L24.85 16m2 0a1.98 1.98 0 01-1.036 1.752l-13.85 7.618C10.631 26.103 9 25.139 9 23.617V8.383c0-1.522 1.63-2.486 2.964-1.753l13.85 7.618A1.98 1.98 0 0126.85 16Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M6 6.999v18\"/></g>"},"sms":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 6.001)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 13h16M8 17.001h10\"/><path d=\"M8 23h5l-5 5Z\"/><path fill=\"currentColor\" d=\"M8 23h5l-5 5v-5Z\"/></g>"},"sso-access":{"body":"<g fill=\"none\"><path d=\"M24 24H8.757a3.207 3.207 0 01-.322-.017c-.144.011-.29.017-.437.017a6 6 0 01-1.951-11.676 5 5 0 016.516-4.073A8 8 0 0126.997 12.8a6 6 0 01-2.692 11.192c-.073 0-.146.008-.221.008Z\"/><path fill=\"currentColor\" d=\"m24.083 21.999.088-.003.033-.002a3.995 3.995 0 003.798-3.993 4.018 4.018 0 00-2.006-3.47l-.972-.561-.027-1.121a5.968 5.968 0 00-1.807-4.143A5.96 5.96 0 0019 6.998a5.95 5.95 0 00-4.83 2.44l-.857 1.163-1.374-.45a3.005 3.005 0 00-3.91 2.44l-.166 1.222-1.165.4a4.003 4.003 0 001.587 7.774l.176-.012.175.017c.042.005.083.007.12.007h15.327m0 2H8.757c-.109 0-.216-.006-.322-.017A5.998 5.998 0 012 18.001a6.007 6.007 0 014.047-5.678 4.998 4.998 0 016.516-4.073A7.987 7.987 0 0119 4.998a8 8 0 017.996 7.8A6.002 6.002 0 0124.083 24Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 14v5\"/><g transform=\"translate(14 13)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g>"},"star":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z\"/>"},"star-active":{"body":"<path fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z\"/>"},"success":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(3.001 4.005)\"><rect width=\"6\" height=\"14\" rx=\"2.005\" transform=\"translate(.999 9.995)\"/><path stroke-linecap=\"round\" d=\"M23.359 12.575h-1.226l.1-.678h1.13a1.678 1.678 0 000-3.354h-2.719l-3.951-.083s.855-6.084-2.775-8.125C11.588-.842 11.154 1.4 11.154 1.4v4.237L9.769 7.049s-2.771 2.62-2.771 4.264v9.857a2.622 2.622 0 002.772 2.82h11.333a1.678 1.678 0 000-3.354h-.111l.1-.679h1.143a1.677 1.677 0 000-3.353h-.668l.1-.679h1.7a1.678 1.678 0 000-3.354Z\"/></g>"},"sun":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(8 8)\"><circle cx=\"8\" cy=\"8\" r=\"8\" stroke=\"none\"/><circle cx=\"8\" cy=\"8\" r=\"7\"/></g><path stroke-linecap=\"round\" d=\"M16 5V3m0 26v-2m11-11h2M3 16h2m20 9 1 1M6 6l1 1m18 0 1-1M6 26l1-1\"/></g>"},"sunrise":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M8 23a8 8 0 018-8 8 8 0 018 8Z\"/><path fill=\"currentColor\" d=\"M21.658 21A6.01 6.01 0 0016 17a6.01 6.01 0 00-5.657 4h11.315m2.343 2H8a8 8 0 018-8 8 8 0 018 8Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M16 11.999v-3m-13 13h26m-23-10 2 2m16 0 2-2\"/></g>"},"support":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\" transform=\"translate(5.333 4.335)\"><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.667 6.666c0-3.314 3.134-6 7-6s7 2.686 7 6\"/><g fill=\"none\" stroke-width=\"2\" transform=\"translate(-.333 6.666)\"><rect width=\"8\" height=\"10\" rx=\"2.004\" stroke=\"none\"/><rect width=\"6\" height=\"8\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><g fill=\"none\" stroke-width=\"2\" transform=\"translate(13.667 6.666)\"><rect width=\"8\" height=\"10\" rx=\"2.004\" stroke=\"none\"/><rect width=\"6\" height=\"8\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M17.667 15.666v2.4a3.5 3.5 0 01-3.363 3.6h-.633\"/><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(9.667 19.666)\"/></g>"},"survey":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M27 3.193H12c-1.5 0-2 .5-2 2v8c0 1.5.5 2 2 2h2l.465 2.389c.261 1 1.242-.071 1.535-.389l2-2h9c1.5 0 2-.5 2-2v-8c0-1.503-.5-2-2-2Z\"/><path fill=\"currentColor\" d=\"M12 5.193v8h2a2 2 0 011.873 1.299l.713-.713A2 2 0 0118 13.193h9v-8H12m0-2h15c1.496 0 2 .497 2 2v8c0 1.5-.504 2-2 2h-9l-2 2c-.293.318-1.274 1.393-1.535.39L14 15.192h-2c-1.5 0-2-.504-2-2v-8c0-1.504.5-2 2-2Z\"/></g><path fill=\"currentColor\" d=\"M17.982 8.112a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Zm6 0a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.001 30a4 4 0 014-4 4 4 0 014 4\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 17)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g>"},"table":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><rect width=\"28\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path d=\"M11 6v20M3 13h26M3 19h26\"/></g>"},"tematic-channels":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M16 4v24m6 0H10\"/><path d=\"M16 6.999h8.816L27 9.291l-2.184 2.708H16ZM15.999 16H7.183l-2.184-2.292L7.183 11h8.816Z\"/></g>"},"test":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4 4)\"><rect width=\"10\" height=\"10\" rx=\"1.996\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\".996\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4 18)\"><rect width=\"10\" height=\"10\" rx=\"1.996\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\".996\"/></g><path stroke-linejoin=\"round\" d=\"M22.657 5.008 18.19 21.704l1.196 5.202 3.634-3.91L27.487 6.3Z\"/></g>"},"text-body":{"body":"<path fill=\"currentColor\" d=\"M4.363 23.427h4.06V9.565L4 10.888V8.124l7.434-2.122v17.425H15v2.575H4.363Zm12.999 0h4.06V9.565l-4.423 1.323V8.124l7.434-2.122v17.425h3.566v2.575H17.362Z\"/>"},"text-edit":{"body":"<path fill=\"currentColor\" d=\"M11.645 19.27H7.362l-.795 2.731H4l3.721-12h3.565l3.714 12h-2.567Zm-.522-1.8-.758-2.614c-.288-1.013-.553-1.945-.866-3.121-.3 1.175-.577 2.108-.858 3.121l-.756 2.614Zm12.878-2.977v7.358h-1.708l-.208-.883-1.351.586a4.976 4.976 0 01-1.961.448c-1.692 0-2.773-1.143-2.773-3.135v-.177c0-1.85 1.135-2.917 3.676-2.917h2.072V14.23c0-.8-.278-1.253-1.151-1.253h-.749c-.742 0-1.143.246-1.143.948v.772h-2.287v-.632c0-1.957 1.274-3.059 3.459-3.059h.68c2.131-.004 3.444.937 3.444 3.487Zm-2.253 3.009h-2.125c-.889 0-1.3.272-1.3.942v.634c0 .67.331 1 .9 1a2.62 2.62 0 001.027-.23l1.5-.467ZM26 4h2v24h-2Z\"/>"},"text-style":{"body":"<path fill=\"currentColor\" d=\"M13.731 20.358H8.28L7.268 24H4L8.736 8h4.538L18 24h-3.265Zm-.666-2.4-.965-3.486c-.367-1.351-.7-2.594-1.1-4.161-.387 1.567-.734 2.81-1.092 4.161l-.963 3.486Zm14.932-2.832v8.695H26.08l-.234-1.043-1.52.692a5.358 5.358 0 01-2.207.53c-1.9 0-3.118-1.351-3.118-3.7v-.21c0-2.184 1.277-3.447 4.135-3.447h2.328v-1.828c0-.951-.312-1.482-1.294-1.482h-.843c-.835 0-1.286.291-1.286 1.121v.911H19.47v-.749c0-2.314 1.434-3.616 3.892-3.616h.763c2.399 0 3.872 1.113 3.872 4.126Zm-2.537 3.557h-2.385c-1 0-1.468.32-1.468 1.112v.751c0 .792.373 1.183 1.007 1.183a2.821 2.821 0 001.155-.271l1.685-.55Z\"/>"},"time":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m19.001 13-3 3 5 5\"/></g>"},"toilet-piper":{"body":"<g transform=\"translate(4 5.333)\"><ellipse cx=\"4\" cy=\"9\" fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" rx=\"4\" ry=\"9\" transform=\"translate(17 -2.334)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21-2.333H4.4Q0-2.333 0 2.255v21.412h17.067V8.374\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 13.666h1m-6 0h1m-6 0h1\"/><ellipse cx=\"1\" cy=\"2\" fill=\"currentColor\" rx=\"1\" ry=\"2\" transform=\"translate(20 4.666)\"/></g>"},"training-points":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2.667 4) translate(-.667 4)\"><circle cx=\"11\" cy=\"11\" r=\"11\" stroke=\"none\"/><circle cx=\"11\" cy=\"11\" r=\"10\"/></g><g transform=\"translate(2.667 4) translate(4.333 9)\"><circle cx=\"6\" cy=\"6\" r=\"6\" stroke=\"none\"/><circle cx=\"6\" cy=\"6\" r=\"5\"/></g><path stroke-linecap=\"round\" d=\"M13 19 23 9\"/><path stroke-linejoin=\"round\" d=\"m26.001 3-3 3v3h3l3-3Z\"/></g>"},"trash":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M7 4.999h18v21a3 3 0 01-3 3H10a3 3 0 01-3-3v-21Z\" stroke=\"none\"/><path d=\"M9 5.999h14a1 1 0 011 1v19a2 2 0 01-2 2H10a2 2 0 01-2-2v-19a1 1 0 011-1Z\"/><path stroke-linecap=\"round\" d=\"M5 6h22\"/><path d=\"M18.999 6h-6V4a1 1 0 011-1h4a1 1 0 011 1v2Z\" stroke=\"none\"/><path d=\"M17.999 5h-4V4h4v1Z\"/><path stroke-linecap=\"round\" d=\"M13 13v8m6-8v8\"/></g>"},"underline":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5v10c0 5.1 3.583 8 8 8s8-2.9 8-8V5M6 27h20\"/>"},"undo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M6 12.001h15c4.37 0 7 2.68 7 5.984v.016c0 3.305-2.629 6-7 6h-5.1\"/><path stroke-linejoin=\"round\" d=\"m10 6.001-6 6 6 6\"/></g>"},"unlock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m10.614 13-1.277-1.277a4.48 4.48 0 010-6.385h0a4.479 4.479 0 016.386 0l1.273 1.276\"/><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 19v4\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 12.001)\"><rect width=\"24\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"22\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g></g>"},"upload":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m19.999 9-4-4-4 4M16 5v14m12 4.001v4H4v-4\"/>"},"user":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 5.333)\"><rect width=\"14\" height=\"14\" rx=\"7\" transform=\"translate(1 -.334)\"/><path stroke-linejoin=\"round\" d=\"M-1 24.666a9 9 0 019-9 9 9 0 019 9\"/></g>"},"user-add":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(4 7)\"><rect width=\"14\" height=\"14\" rx=\"7\" stroke=\"none\"/><rect width=\"12\" height=\"12\" x=\"1\" y=\"1\" rx=\"6\"/></g><path stroke-linejoin=\"round\" d=\"M3 30a8 8 0 1116 0\"/></g>"},"user-badge":{"body":"<path fill=\"currentColor\" d=\"m16.874 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.369 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.326 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.747 0l-2.153 1.831a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.369-1.97l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.981l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.747-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 9a4 4 0 11-4 4 4 4 0 014-4Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11 23.001a5 5 0 015-5 5 5 0 015 5\"/>"},"video-off":{"body":"<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m28 19.886-5.819-3.888 5.82-3.887v7.775Z\"/><path d=\"m27 13.982-3.019 2.016 3.02 2.017v-4.033m1.134-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><path fill=\"currentColor\" d=\"M20 22.998h-6.759l2-2H20v-4.76l2-2v6.76a2 2 0 01-2 2Zm-14.983-.256A2 2 0 014 20.998v-10a2 2 0 012-2h12.759l-2 2H6v10h.759l-1.741 1.74Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"video-on":{"body":"<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m28 19.887-5.819-3.888 5.82-3.887v7.775Z\"/><path d=\"m27 13.983-3.019 2.016 3.02 2.017v-4.033m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 9.001)\"><rect width=\"18\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g>"},"video-rec":{"body":"<g transform=\"translate(7.709 9.695)\"><g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m20.291 10.19-5.819-3.887 5.82-3.887v7.775Z\"/><path d=\"m19.291 4.287-3.019 2.016 3.02 2.017V4.287m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(-3.709 -.695)\"><rect width=\"18\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(-4.709 -1.695)\"/></g>"},"view":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 5.667)\"><path d=\"M21 19.334H7a3 3 0 01-3-3v-1h13a3 3 0 003-3v-7h1a3 3 0 013 3v8a3 3 0 01-3 3Z\"/><rect width=\"20\" height=\"14\" rx=\"3\" transform=\"translate(0 1.334)\"/></g>"},"view-card":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 9.999)\"><rect width=\"16\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(20 13.999)\"><rect width=\"10\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"view-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 9) translate(0 -2)\"><rect width=\"8\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(2 9) translate(0 8)\"><rect width=\"8\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M13 13h8m-8 10h8M13 9h16M13 19h16\"/></g>"},"voice-off":{"body":"<path fill=\"none\" d=\"M.001 0h32v32h-32z\"/><path fill=\"currentColor\" d=\"m16.253 19.99 3.737-3.736a4 4 0 01-3.736 3.738Zm-4.251-4.234V6a4 4 0 118 0v1.76l-2 2V6a2 2 0 00-4 0v7.758l-2 2Z\"/><path fill=\"currentColor\" d=\"M16.001 24a8.711 8.711 0 01-3.174-.588l1.6-1.594a6.866 6.866 0 001.578.182c3.309 0 6-2.334 6-5.205V15a1 1 0 112 0v1.795a6.807 6.807 0 01-2.389 5.135A8.42 8.42 0 0116.001 24Zm-7.52-4.725a6.559 6.559 0 01-.482-2.479V15a1 1 0 112 0v1.795a4.508 4.508 0 00.086.879l-1.6 1.6Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16.001 23v6\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.001 29h8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"m4.001 28 24-24\"/>","width":32.001},"voice-on":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(12 1.999)\"><rect width=\"8\" height=\"18\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"16\" x=\"1\" y=\"1\" rx=\"3\"/></g><path stroke-linecap=\"round\" d=\"M22.999 15v1.8c0 3.426-3.134 6.2-7 6.2h0c-3.866 0-7-2.777-7-6.2V15\"/><path d=\"M16 23v6\"/><path stroke-linecap=\"round\" d=\"M12 28.999h8\"/></g>"},"volume-down":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M26.003 13.001a5.075 5.075 0 010 6\"/><g stroke-linejoin=\"round\"><path d=\"M3.999 19.999a2.193 2.193 0 002 2h7a1.421 1.421 0 011 .35l5.025 3.254a1.828 1.828 0 002.975-1.321V7.717a1.828 1.828 0 00-2.975-1.321l-5.025 3.3a1.383 1.383 0 01-1 .3h-7a2.193 2.193 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M19.999 23.851V8.15l-4.844 3.185c-.787.585-1.53.665-2.156.665H6.102a.51.51 0 00-.103.107v7.786a.51.51 0 00.103.107H13c.826 0 1.494.22 2.152.713L20 23.852M20.173 26c-.395 0-.798-.124-1.149-.397L14 22.349c-.326-.255-.576-.35-1-.35H6c-1.003 0-2-1.053-2-2v-8c0-.946.997-2 2-2h7c.424 0 .674-.043 1-.298l5.025-3.305C20.21 5.471 22 6.266 22 7.717v16.565C22 25.303 21.113 26 20.174 26Z\"/></g></g>"},"volume-off":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m21 19 6-6m-6 0 6 6\"/><g stroke-linejoin=\"round\"><path d=\"M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z\"/></g></g>"},"volume-up":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M22.001 11.999a8.593 8.593 0 010 8m4-8.999a13.111 13.111 0 010 10\"/><g stroke-linejoin=\"round\"><path d=\"M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z\"/></g></g>"},"warning":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 11v6m0 6v-2\"/><path d=\"M14.008 5.111a2.343 2.343 0 013.985 0l5.848 9.78 5.849 9.779a2.223 2.223 0 01-1.992 3.332H4.3a2.223 2.223 0 01-1.992-3.332l5.849-9.779Z\"/><path fill=\"currentColor\" d=\"M16 6.001c-.089 0-.208.024-.276.137L4.028 25.695c-.022.037-.05.083-.003.165.037.065.115.142.279.142h23.392c.164 0 .242-.077.279-.142.046-.082.019-.128-.003-.164L16.277 6.138C16.207 6.025 16.087 6 16 6m0-2c.775 0 1.55.37 1.992 1.11l11.697 19.56c.885 1.481-.222 3.332-1.993 3.332H4.304c-1.77 0-2.878-1.85-1.993-3.332L14.008 5.11C14.45 4.37 15.225 4 16 4Z\"/></g>"},"webinar":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M3.001 19V5.814c0-1.992.2-2.811 2-2.811h21.11c1.8 0 2.889 1.208 2.889 3.2v12.8\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M6 15.999a2 2 0 11.586 1.414A2 2 0 016 15.999Z\"/><path fill=\"currentColor\" d=\"M8 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 17.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 13.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 29.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M10 24.999a2 2 0 11.586 1.414A2 2 0 0110 24.999Z\"/><path fill=\"currentColor\" d=\"M12 22.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 22.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 29.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M18 24.999a2 2 0 11.586 1.414A2 2 0 0118 24.999Z\"/><path fill=\"currentColor\" d=\"M20 22.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0120 22.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M14 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M14 15.999a2 2 0 11.586 1.414A2 2 0 0114 15.999Z\"/><path fill=\"currentColor\" d=\"M16 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 13.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M22 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M22 15.999a2 2 0 11.586 1.414A2 2 0 0122 15.999Z\"/><path fill=\"currentColor\" d=\"M24 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0124 13.999Z\"/></g></g>"},"whiteboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"m4 29 7-9m5 9v-9m12 9-7-9\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 3)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path d=\"M9 13.769c1.995-1.507 4.428-4.772 8.4-4.772-1.689 5.643 3.537 7.475 5.6 4.772\"/></g>"},"wine":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M23.226 21.973c4.09-1.922 2.45-9.973 2.45-9.973h-7.351s-1.64 8.05 2.45 9.973a2.123 2.123 0 00.539.02h1.411a1.82 1.82 0 00.501-.02ZM22 23v5m3 0h-6\"/><path d=\"M7.266 29a1.624 1.624 0 01-.869-.4 1.335 1.335 0 01-.4-.933C6.02 13.576 6.006 13 5.997 13l2-4V3h3.994v6l2 4c.014.012-.021.576 0 14.667a1.335 1.335 0 01-.4.933 1.133 1.133 0 01-.933.4Z\"/><path d=\"M6 16.001h4v8H6z\"/></g>"},"zip":{"body":"<path fill=\"currentColor\" d=\"M25.001 23.999a1 1 0 101 1 1 1 0 00-1-1Z\"/><path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 6v6m6-6v6m6-6v6\"/><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(21 5)\"><rect width=\"8\" height=\"8\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h6v6H1z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24.883 29c-4.239 0-3.876-5-3.876-5l.985-7h6l1 7s.349 5-3.89 5Z\"/>"},"zoom-in":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"none\" stroke-linecap=\"round\" d=\"M9 12h6m-3-3v6\"/><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g>"},"zoom-out":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9 11.999h6\"/>"}},"width":32,"height":32}
1
+ {"prefix":"detailed","lastModified":1674122148,"icons":{"add":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 15.999h24m-12-12v24\"/>"},"add-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/><path stroke-linecap=\"round\" d=\"M9 14h10m-5-5v10\"/></g>"},"align-center":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M23 13H9m18-6H5m22 12H5m18 6H9\"/>"},"align-justify":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M27 13H5m22-6H5m22 12H5m22 6H5\"/>"},"align-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 13H5m22-6H5m22 12H5m16 6H5\"/>"},"align-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26.999 13h-16M27 7H5m22 12H5m21.999 6h-16\"/>"},"analysis":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 16)\"><rect width=\"7\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(12 6)\"><rect width=\"8\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(23 12)\"><rect width=\"7\" height=\"16\" rx=\"2\" stroke=\"none\"/><rect width=\"5\" height=\"14\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"analysis-2":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M17.657 6.001a.674.674 0 00-.473.2.671.671 0 00-.2.474l.012 10.331H6.665a.673.673 0 00-.473.2.67.67 0 00-.2.473 12.284 12.284 0 0012 12.328 12 12 0 0012-12A12.3 12.3 0 0017.657 6.001Z\"/><path fill=\"currentColor\" d=\"M18.99 8.087 19.004 19l-10.916.004a10.572 10.572 0 002.868 5.93c1.906 1.978 4.408 3.067 7.045 3.067a9.934 9.934 0 007.072-2.93A9.936 9.936 0 0028 18.002c0-2.637-1.091-5.14-3.072-7.045a10.596 10.596 0 00-5.937-2.869m-1.334-2.086C24.287 6 30 11.37 30 18c0 6.627-5.37 12-12 12-6.627 0-12-5.7-12-12.328a.67.67 0 01.67-.668L17 17l-.01-10.33a.671.671 0 01.668-.67Z\"/><path d=\"M14.8 14.8a.7.7 0 00.2-.488V3.692a.7.7 0 00-.2-.489.7.7 0 00-.488-.2A11.312 11.312 0 003 14.311a.7.7 0 00.2.488.7.7 0 00.488.2h10.62a.7.7 0 00.492-.199Z\"/><path fill=\"currentColor\" d=\"M13 13V5.092A9.333 9.333 0 005.092 13H13m1.31 2H3.69a.695.695 0 01-.69-.69C3.001 8.065 8.064 3 14.31 3c.182 0 .36.074.488.202a.698.698 0 01.202.489v10.62c0 .181-.074.36-.202.487a.695.695 0 01-.487.202Z\"/></g>"},"analysis-3":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m4 24 10-10 4 4 7-6\"/><path stroke-miterlimit=\"10\" d=\"M29 24.999H3v-18\"/></g>"},"apple":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M16.017 28.843a6.762 6.762 0 011.364.164 7.462 7.462 0 011.364.532l.032.015c.168.079.342.161.521.236a2.332 2.332 0 00.924.211 3.513 3.513 0 001.429-.42 6.044 6.044 0 002.269-1.911 18.881 18.881 0 002.5-4.141c.132-.292.232-.533.318-.755a14.883 14.883 0 00.907-9.257 7.167 7.167 0 00-2.9-4.254.662.662 0 01-.063-.044 4.959 4.959 0 00-1-.614 6.1 6.1 0 00-2.607-.6h-.148a8.727 8.727 0 00-2.967.768l-.586.223c-.255.1-.849.3-.855.3a.694.694 0 01-.234.04h-.22a.25.25 0 00-.043 0h-.032a.388.388 0 00-.045.005h-.221a.7.7 0 01-.232-.039s-.6-.205-.857-.3l-.579-.22A8.794 8.794 0 0011.077 8h-.16a6.174 6.174 0 00-2.593.6 5 5 0 00-1 .615.581.581 0 01-.06.043 7.289 7.289 0 00-2.887 4.186 14.879 14.879 0 00.867 9.273c.125.325.238.58.342.808a18.805 18.805 0 002.5 4.141 6 6 0 002.188 1.877 3.823 3.823 0 001.517.453 2.339 2.339 0 00.917-.209c.176-.073.347-.153.512-.231l.031-.015a7.634 7.634 0 011.376-.536 6.433 6.433 0 011.372-.164h.025Z\"/><path fill=\"currentColor\" d=\"M20.222 27.999c.106-.022.403-.153.625-.251.488-.214.9-.577 1.52-1.34.83-1.022 1.578-2.268 2.226-3.704.11-.245.198-.451.275-.65l.018-.049.021-.047c1.815-4.068.815-7.88.804-7.918l-.014-.055-.012-.056c-.388-1.835-1.9-2.897-2.02-2.98a2.538 2.538 0 01-.184-.127l-.063-.049a3.006 3.006 0 00-.604-.365 4.091 4.091 0 00-1.746-.407h-.1c-.689.017-1.398.29-2.296.636l-.008.003-.597.227c-.26.097-.786.277-.897.315a2.69 2.69 0 01-.89.151h-.561c-.307 0-.608-.05-.894-.151l-.05-.018a49.59 49.59 0 01-.843-.298l-.015-.005-.585-.223c-.935-.36-1.612-.619-2.303-.636L10.917 10c-.556 0-1.187.149-1.737.41a3.053 3.053 0 00-.603.365 2.59 2.59 0 01-.215.156c-.107.075-1.667 1.187-2.03 2.925l-.01.054-.015.054c-.043.16-1.022 3.942.761 7.94l.021.048.019.048c.11.284.206.503.295.698l.004.009c.645 1.432 1.393 2.677 2.224 3.7.612.754 1.016 1.12 1.438 1.306l.008.004c.262.114.585.256.704.28a.998.998 0 00.148-.053c.136-.057.282-.125.42-.19l.065-.03c.486-.228 1.037-.485 1.717-.656.516-.13 1.105-.204 1.802-.224l.118-.001.034.001c.444.015 1.112.055 1.784.224.688.173 1.264.443 1.727.661l.064.03c.144.068.28.132.407.184l.01.004a.93.93 0 00.145.052M20.221 30c-.29 0-.584-.067-.924-.21-.179-.075-.352-.157-.52-.236l-.032-.015c-.426-.2-.866-.407-1.364-.532-.487-.122-1.018-.152-1.364-.164h-.025c-.547.016-.995.07-1.372.164-.502.127-.943.334-1.376.536l-.031.015c-.165.078-.336.158-.512.231-.338.142-.63.209-.917.209-.486 0-.915-.19-1.517-.453-.856-.377-1.495-1.023-2.188-1.876-.94-1.157-1.78-2.551-2.495-4.141a14.05 14.05 0 01-.342-.808c-2.03-4.55-.99-8.813-.867-9.273.544-2.608 2.782-4.117 2.887-4.186a.58.58 0 00.06-.043 5 5 0 011.002-.615 6.173 6.173 0 012.753-.6c1.037.025 1.935.37 2.974.768l.578.22c.262.098.855.302.857.303a.7.7 0 00.233.04h.22c.017-.004.033-.005.046-.006h.032a.25.25 0 01.043.005h.22a.692.692 0 00.233-.04c.006-.002.6-.205.855-.3l.586-.223c1.038-.4 1.935-.743 2.967-.768h.147c.878 0 1.78.207 2.607.6.387.184.715.385.999.614.02.016.04.032.063.045.023.015 2.314 1.463 2.904 4.254.077.28 1.178 4.584-.907 9.258-.086.222-.186.463-.318.755-.718 1.591-1.558 2.985-2.497 4.14-.693.854-1.342 1.506-2.269 1.912-.554.244-.954.42-1.43.42Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16.173 10.001s-1.01-4.452 1.825-6m1.999 9.998a4.786 4.786 0 012 4\"/></g>"},"arrow-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 18.002 10 10 10-10m-10 8v-22\"/>"},"arrow-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m14.001 6-10 10 10 10m-8-10h22\"/>"},"arrow-right":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m18.001 26 10-10-10-10m8 10h-22\"/>"},"arrow-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m26.001 13.999-10-10-10 10m9.999-8v22\"/>"},"attachment":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m28.003 15.251-11.347 10.7a7.732 7.732 0 01-10.484 0 6.714 6.714 0 010-9.886l11.348-10.7a5.156 5.156 0 016.989 0 4.477 4.477 0 010 6.592l-11.361 10.7a2.574 2.574 0 01-3.493 0 2.235 2.235 0 010-3.295l10.483-9.875\"/>"},"back-to-front":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m24 3-4 4 4 4\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4\"/><g stroke-miterlimit=\"10\"><path d=\"M11.795 25h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406H12.21c-.85 0-1.436-.726-1.134-1.4Z\"/><path fill=\"currentColor\" d=\"M11.795 25H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.404L11.795 25Z\"/></g></g>"},"bell":{"body":"<path fill=\"currentColor\" d=\"M13 26.161a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M18.018 3.277a7.483 7.483 0 015.876 7.128v3.959a9.094 9.094 0 003.538 7.261c.057.046.114.094.171.139a1.268 1.268 0 01.4.915 1.371 1.371 0 01-1.416 1.322H5.418a1.371 1.371 0 01-1.416-1.322 1.269 1.269 0 01.4-.915c.057-.045.114-.093.171-.139a9.1 9.1 0 003.538-7.261v-3.963a7.464 7.464 0 015.667-7.073 7.909 7.909 0 014.24-.051Z\"/><path fill=\"currentColor\" d=\"M16.123 5.001a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.069-.017-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z\"/></g>"},"bell-active":{"body":"<g fill=\"currentColor\"><path d=\"M13 26.16a2.924 2.924 0 003 2.841 2.924 2.924 0 003-2.841v-.159h-6Z\"/><g stroke-miterlimit=\"10\"><path d=\"M26.584 23H5.416C5.19 23 5 22.852 5 22.678c0-.073.034-.132.07-.173l.064-.052.062-.05c2.558-2.073 3.91-4.853 3.91-8.04v-3.959c0-1.392.478-2.714 1.381-3.824.886-1.088 2.147-1.9 3.55-2.284l.02-.005.018-.006A7.726 7.726 0 0116.123 4c.586 0 1.12.077 1.588.227l.034.011.034.009c3.012.742 5.115 3.274 5.115 6.157v3.96c0 3.186 1.352 5.966 3.909 8.037l.06.05.067.054c.036.041.07.1.07.173 0 .174-.19.322-.416.322Z\"/><path d=\"M16.123 5a6.77 6.77 0 00-1.75.24l-.022.007-.05.013c-1.203.33-2.283 1.024-3.038 1.952-.757.929-1.157 2.033-1.157 3.192v3.96c0 1.744-.373 3.391-1.109 4.896A11.202 11.202 0 017.096 22h17.808a11.203 11.203 0 01-1.9-2.74c-.737-1.505-1.11-3.152-1.11-4.897v-3.959c0-2.422-1.79-4.554-4.354-5.186l-.07-.018-.067-.022A4.19 4.19 0 0016.123 5m0-2c.602 0 1.259.07 1.895.276 3.382.834 5.876 3.708 5.876 7.128v3.96c0 2.897 1.236 5.395 3.538 7.26l.171.14c.245.236.397.558.397.914 0 .73-.634 1.322-1.416 1.322H5.416C4.634 24 4 23.408 4 22.678c0-.356.152-.678.397-.915.057-.045.113-.092.17-.139 2.303-1.865 3.54-4.363 3.54-7.26v-3.96c0-3.348 2.392-6.175 5.666-7.072 0 0 1.044-.332 2.35-.332Z\"/></g></g>"},"bold":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5h10a5.525 5.525 0 010 11H8Zm0 11h11.076a5.534 5.534 0 010 11H8Z\"/>"},"bookmark":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M10 5.206v23.461a.3.3 0 00.527.23l5.323-6.285a.191.191 0 01.3 0l5.324 6.285a.3.3 0 00.526-.23V5.206A2.109 2.109 0 0020 3h-8a2.109 2.109 0 00-2 2.206Z\"/><path fill=\"currentColor\" d=\"M12.058 5a.347.347 0 00-.058.206V24.06l2.32-2.74a2.192 2.192 0 013.355-.004L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.189.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z\"/></g>"},"bookmark-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"m21 26.787-4.088-4.826a1.193 1.193 0 00-1.827.002L11 26.787V5.207C11 4.54 11.447 4 11.997 4h8.006c.55 0 .997.541.997 1.206v21.581Z\"/><path d=\"M12.058 5a.347.347 0 00-.058.206V24.06l2.324-2.744a2.192 2.192 0 013.351 0L20 24.059V5.206A.347.347 0 0019.942 5h-7.884m-.061-2h8.006C21.106 3 22 3.988 22 5.206v23.457c0 .305-.338.453-.527.23l-5.324-6.285a.191.191 0 00-.299 0l-5.323 6.285c-.19.223-.527.075-.527-.23V5.206C10 3.988 10.894 3 11.997 3Z\"/></g>"},"building":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 29.001h24M18 4V3h-4v1\"/><path stroke-linecap=\"round\" d=\"M16 28.001v-3m-5-15h2m-2 4h2m-2 4h2m6-8h2m-2 4h2m-2 4h2\"/><g transform=\"translate(6 4.001)\"><rect width=\"20\" height=\"26\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"24\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"bullet-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M12 22h6m-6-6h15m-15-6h10\"/><g transform=\"translate(4 8.334) translate(0 -.334)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g><g transform=\"translate(4 8.334) translate(0 5.666)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g><g transform=\"translate(4 8.334) translate(0 11.666)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g>"},"calendar":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 5)\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M8-1v4m12-4v4M1 6h26M6 11h2m5 0h2m-9 7h2m5 0h2m5-7h2m-2 7h2\"/><rect width=\"28\" height=\"24\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"22\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"camera-off":{"body":"<path fill=\"currentColor\" d=\"M27.198 27H9.243l2-2h15.955a.927.927 0 00.8-.752V10.504a.929.929 0 00-.8-.756h-.7l1.768-1.768a2.9 2.9 0 011.739 2.518v13.75A2.9 2.9 0 0127.198 27ZM2.311 25.445A2.54 2.54 0 012 24.252v-13.75a2.884 2.884 0 012.8-2.75h2.8L10.4 5h8.4l2.392 1.566-1.445 1.445-1.543-1.012H11.22l-2.8 2.752H4.806a.925.925 0 00-.8.75v13.258l-1.687 1.686Z\"/><path fill=\"currentColor\" d=\"M14.998 23.002a6.021 6.021 0 01-1.552-.2l1.8-1.8a4.007 4.007 0 003.738-3.74l1.809-1.809a6 6 0 01-5.8 7.557Zm-5.8-4.447a6 6 0 017.353-7.35l-1.8 1.8a4 4 0 00-3.744 3.744l-1.8 1.8Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"camera-on":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M27.2 7.75H23L18.8 5h-8.4L7.6 7.75H4.8A2.9 2.9 0 002 10.5v13.75A2.9 2.9 0 004.8 27h22.4a2.9 2.9 0 002.8-2.75V10.5a2.9 2.9 0 00-2.8-2.75Z\"/><path fill=\"currentColor\" d=\"m11.218 7-2.8 2.75H4.803c-.352 0-.802.423-.803.75v13.747c0 .33.451.753.8.753h22.397c.352 0 .803-.423.803-.75V10.503c0-.33-.45-.752-.8-.753h-4.796L18.204 7h-6.986M10.4 5h8.4L23 7.75h4.2c1.448.003 2.798 1.304 2.8 2.75v13.75c-.002 1.446-1.352 2.748-2.8 2.75H4.8c-1.448-.002-2.798-1.304-2.8-2.75V10.5c.002-1.446 1.352-2.747 2.8-2.75h2.8L10.4 5Z\"/><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(9 11)\"><circle cx=\"6\" cy=\"6\" r=\"6\" stroke=\"none\"/><circle cx=\"6\" cy=\"6\" r=\"5\"/></g></g>"},"catalog":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\"><path d=\"M8 2h16a1 1 0 011 1v26a1 1 0 01-1 1H8a3 3 0 01-3-3V5a3 3 0 013-3Z\" stroke=\"none\"/><path d=\"M8 3h16v26H8a2 2 0 01-2-2V5a2 2 0 012-2Z\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M10 13h10m-10 4h10m-10 4h5\"/><path d=\"M6 8h18\"/></g>"},"certificate":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"22.926\" d=\"M16.001 3.998a8 8 0 11-8 8 8 8 0 018-8Z\"/><path stroke-miterlimit=\"22.926\" d=\"M16 9.001a3 3 0 11-3 3 3 3 0 013-3Z\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m9 18-4 4h3v3h3v3l5-5 5 5v-3h3v-3h3l-4-4\"/></g>"},"chat":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M14.998 23.002h-3c-4.9 0-9-3.238-9-8 0-4.738 4.1-8 9-8h8c4.9 0 9 3.262 9 8 0 4.762-4.7 8-9 8l-1 4Z\"/>"},"check":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m7 15.001 7 7 12-12\"/>"},"check-badge":{"body":"<path fill=\"currentColor\" d=\"m16.873 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.37 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.327 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.746 0l-2.152 1.828a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.37-1.968l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.98l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.746-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m11 16.999 3 3 7-7\"/>"},"check-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m12 16 3 3 6-6\"/></g>"},"checkbox":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><rect width=\"28\" height=\"28\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"26\" x=\"1\" y=\"1\" rx=\"2\"/></g>"},"chevron-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m6 11 10 10 10-10\"/>"},"chevron-down-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m11 14 5 5 5-5\"/></g>"},"chevron-left":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21 6 11 16l10 10\"/>"},"chevron-left-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m18.001 11-5 5 5 5\"/></g>"},"chevron-right-circle":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 26 10-10L12 6\"/>"},"chevron-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26 20 16 10 6 20\"/>"},"chevron-up-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m11.001 18 5-5 5 5\"/></g>"},"classroom":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 14h24M4 28h24\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 13a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M8 5.999a3 3 0 11.879 2.121A2.994 2.994 0 018 5.999Z\"/><path fill=\"currentColor\" d=\"M11 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0012 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0111 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 2.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 27a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M13 19.999a3 3 0 11.879 2.121A2.994 2.994 0 0113 19.999Z\"/><path fill=\"currentColor\" d=\"M16 18.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293a.981.981 0 00.293-.707.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 19.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 16.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 13a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M18 5.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 5.999Z\"/><path fill=\"currentColor\" d=\"M21 4.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415.987.987 0 00.707.293c.341 0 .574-.16.707-.293A.981.981 0 0022 5.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0121 8.999a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 5.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 2.999Z\"/></g></g>"},"clear-field":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 3)\"><circle cx=\"13\" cy=\"13\" r=\"13\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"13\" cy=\"13\" r=\"12\" fill=\"none\"/></g><path fill=\"none\" stroke-linecap=\"round\" d=\"m12 20 8-8m-8 0 8 8\"/></g>"},"clear-style":{"body":"<path fill=\"currentColor\" d=\"M18 28h-4a1 1 0 010-2h1v-4.76l2-2V26h1a1 1 0 110 2Zm-3-15.244V8H8v1a1 1 0 01-2 0V5a.99.99 0 011-1 1 1 0 011 1v1h13.75l-2 2H17v2.754l-2 2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 27 27 5\"/>"},"close":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M8 24 24 8M8 8l16 16\"/>"},"close-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" d=\"m11 21.001 10-10m-10 0 10 10\"/></g>"},"close-loader":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m12 20 8-8m-8 0 8 8\"/>"},"coffee":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-linejoin=\"round\"><path d=\"M7 10.999h16a1 1 0 011 1v7a8 8 0 01-8 8h-2a8 8 0 01-8-8v-7a1 1 0 011-1Z\" stroke=\"none\"/><path d=\"M7 11.999h16v7a7 7 0 01-7 7h-2a7 7 0 01-7-7v-7Z\"/></g><g stroke-linejoin=\"round\"><path d=\"M22.001 18.999v-8h3a3 3 0 013 3v2a3 3 0 01-3 3h-3Z\" stroke=\"none\"/><path d=\"M23.001 17.999v-6h2a2 2 0 012 2v2a2 2 0 01-2 2h-2Z\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 26.999h22\"/><path stroke-linecap=\"round\" d=\"M10 7.999v-2m5 2v-2m5 2v-2\"/></g>"},"color":{"body":"<defs><radialGradient id=\"svgID0\" cx=\".5\" cy=\".5\" r=\".5\" gradientUnits=\"objectBoundingBox\"><stop offset=\"0\" stop-color=\"currentColor\"/><stop offset=\".148\" stop-color=\"currentColor\"/><stop offset=\".32\" stop-color=\"currentColor\"/><stop offset=\".493\" stop-color=\"currentColor\"/><stop offset=\".66\" stop-color=\"currentColor\"/><stop offset=\".833\" stop-color=\"currentColor\"/><stop offset=\"1\" stop-color=\"currentColor\"/></radialGradient></defs><g fill=\"url(#svgID0)\" stroke=\"currentColor\" transform=\"translate(4 4)\"><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"none\"/><circle cx=\"12\" cy=\"12\" r=\"11.5\" fill=\"none\"/></g>"},"contact-us":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M24 16.001v-3.808c0-3.934-3.513-8.192-8-8.192s-8 4.257-8 8.192v1.8\"/><path d=\"M21 12.001v3.912a7.6 7.6 0 01-2 5.588m-9.001-14.5c0 2.143 7.7 5 11 5M13 10.5c-.862.606-1.949 3.279-2 4.889v1.222a6.65 6.65 0 002 4.889m5.999 5.501a1.113 1.113 0 01-1.2 1h-.6a1.113 1.113 0 01-1.2-1h0a1.112 1.112 0 011.2-1h.6a1.114 1.114 0 011.2 1Zm.002-.003h.469c2.493.021 4.522-4.31 4.531-9.671v-.328\"/><path d=\"M25 14h-1v4h1a.95.95 0 001-.889v-2.223A.951.951 0 0025 14Zm-18 .002h1v4H7a.949.949 0 01-1-.887v-2.223a.949.949 0 011-.89h0Z\"/></g>"},"copy":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(10.001 3)\"><rect width=\"16\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M19 28h-9a2.665 2.665 0 01-3-3V10\"/></g>"},"courses":{"body":"<path fill=\"currentColor\" d=\"M28 13h2v7a1 1 0 01-1 1 1 1 0 01-1-1v-7Z\"/><g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M22 25.996H10a2.003 2.003 0 01-2.001-2v-8.344l-.524-.283-4.387-2.373L16 6.012l12.913 6.984-4.387 2.373-.524.283v8.344c0 1.103-.897 2-2 2Z\"/><path fill=\"currentColor\" d=\"M22 24.996c.552 0 1.001-.45 1.001-1v-8.94l1.049-.568 2.76-1.492-10.811-5.848-10.81 5.848 3.809 2.06v8.94c0 .55.449 1 1 1H22m0 2H10a3 3 0 01-3.001-3v-7.748l-4.523-2.445a.92.92 0 010-1.612L15.584 5.1a.892.892 0 01.83 0l13.11 7.092a.92.92 0 010 1.612L25 16.248v7.748c0 1.656-1.344 3-3 3Z\"/></g><g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M16 19.98 3.088 12.996l12.914-6.983 12.913 6.983-12.913 6.982Z\"/><path fill=\"currentColor\" d=\"m16 18.842 10.812-5.845L16 7.15 5.19 12.997 16 18.842m0 2.155a.874.874 0 01-.416-.106L2.476 13.803c-.634-.343-.634-1.27 0-1.613l13.108-7.088c.26-.14.573-.14.833 0l13.109 7.088c.633.343.633 1.27 0 1.613L16.417 20.89a.874.874 0 01-.416.106Z\"/></g>"},"dashboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(5 3)\"><rect width=\"10\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 19)\"><rect width=\"10\" height=\"10\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 3)\"><rect width=\"10\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(5 15)\"><rect width=\"10\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"download":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 15 4 4 4-4m-4 4V5m12 18.001v4H4v-4\"/>"},"drag":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M21 3.999v24m-5-24v24m-5-24v24\"/>"},"duplicate":{"body":"<g stroke-miterlimit=\"10\"><g fill=\"rgba(0,0,0,0)\"><path d=\"M16.998 29H5a2 2 0 01-1.999-2V14.997c0-1.103.896-2 1.999-2h8.001V5.003a2 2 0 011.999-2h11.998c1.103 0 2 .896 2 2v11.998a2.002 2.002 0 01-2 1.998h-8v8.002a2.002 2.002 0 01-2 1.998Z\"/><path fill=\"currentColor\" d=\"M16.998 28a1 1 0 001-.999v-9.002h9a1 1 0 001-.998V5.003c0-.55-.448-1-1-1H15c-.55 0-.999.45-.999 1v8.994H5c-.55 0-.999.45-.999 1v12.004a1 1 0 00.999.998h11.998m0 2H5a2.998 2.998 0 01-2.999-2.998V14.997c0-1.652 1.343-3 2.999-3h7.001V5.003c0-1.658 1.343-3 2.999-3h11.998a3 3 0 013 3v11.998a2.998 2.998 0 01-3 2.998h-7v7.002a2.998 2.998 0 01-3 2.998Z\"/></g><g fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 2.001)\"><rect width=\"18\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"16\" height=\"16\" x=\"1\" y=\"1\" fill=\"none\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M18 11.001h6m-3-3v6\"/></g>"},"edit":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"m25.129 3.672 3.175 3.169a2.371 2.371 0 01.008 3.348l-16.735 16.88a2.369 2.369 0 01-1.2.654l-6 1.254a1.143 1.143 0 01-1.354-1.354l1.3-6.114a2.37 2.37 0 01.656-1.2L21.89 3.659a2.3 2.3 0 013.239.013Z\"/><path fill=\"currentColor\" d=\"M23.506 5a.295.295 0 00-.21.086L6.385 21.736a.37.37 0 00-.103.188l-1.027 4.825 4.712-.985a.37.37 0 00.19-.104L26.891 8.78a.372.372 0 000-.524l-3.176-3.169a.292.292 0 00-.21-.087m0-2a2.29 2.29 0 011.623.672l3.175 3.169a2.37 2.37 0 01.008 3.347l-16.734 16.88a2.369 2.369 0 01-1.202.654L4.38 28.976a1.143 1.143 0 01-1.355-1.356l1.3-6.113a2.37 2.37 0 01.656-1.198L21.892 3.66A2.296 2.296 0 0123.506 3Z\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"m20 8 4 4M8 19l5 5\"/></g>"},"elearning":{"body":"<g transform=\"translate(4.001 5.332)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-2 -3.332)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M-.001 20.668h24\"/><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" transform=\"translate(3 17.668)\"/><path fill=\"currentColor\" d=\"M15.21 4.775a1 1 0 010 1.789l-4.764 2.381a1 1 0 01-1.447-.894V3.287a1 1 0 011.447-.894Z\"/></g>"},"email":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 12 18.001)\"><rect width=\"20\" height=\"28\" rx=\"3\" stroke=\"none\"/><rect width=\"18\" height=\"26\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m4 8.001 12 9 12-9\"/></g>"},"error":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16 9v7m0 5v2\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g></g>"},"error-2":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M16 5v13m0 6v3\"/>"},"exercise":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M9.879 29.572a1.115 1.115 0 01-1.758 0C6.944 28.11 5 25.558 5 24.633V4.404a2.347 2.347 0 012.287-2.4h3.425A2.347 2.347 0 0113 4.404v20.229c0 .925-1.944 3.477-3.121 4.939Z\"/><path fill=\"currentColor\" d=\"M9 27.457c1.308-1.694 1.86-2.645 2-2.993V4.404c0-.238-.152-.404-.288-.404H7.287c-.136.001-.287.166-.287.404v20.06c.14.348.692 1.3 2 2.993M9 30c-.325 0-.649-.142-.879-.428C6.944 28.11 5 25.558 5 24.632V4.405C5 3.076 6.024 2 7.287 2h3.425C11.976 2 13 3.075 13 4.403v20.229c0 .925-1.944 3.477-3.121 4.939a1.125 1.125 0 01-.88.428Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M6 9h6\"/><path d=\"M17 2h10v28H17Z\"/><path fill=\"currentColor\" d=\"M19 4v24h6V4h-6m-2-2h10v28H17V2Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M18 9h3m-3 7h3m-3 7h3\"/></g>"},"external-link":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24 19.433v5.71A3 3 0 0121.143 28H6.857A3 3 0 014 25.143V10.857A3 3 0 016.857 8h5.714M19 5h8v8m-13 5L26 6\"/>"},"extract":{"body":"<g transform=\"translate(5.833 7.166)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.667 6.334h14m-14 6h8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M22.668 5.334v-7h-7m0 21.997h7v-7m-17-14.996h-7v7m-.001 8.003v7h7\"/><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" transform=\"translate(18.667 17.334)\"/></g>","width":33,"height":33},"eye-off":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M19 8.168a16.765 16.765 0 00-2.277-.167h-.017a15.052 15.052 0 00-6.112 1.207 12.771 12.771 0 00-5.132 4.093 10.707 10.707 0 00-1.424 2.492.64.64 0 000 .423 11.254 11.254 0 002.441 3.785M13 23.833a17.331 17.331 0 002.32.167 15.265 15.265 0 006.188-1.207 12.343 12.343 0 005.093-4.1 10.208 10.208 0 001.366-2.511.652.652 0 000-.424A11.887 11.887 0 0025.473 12\"/><path stroke-linecap=\"round\" d=\"m5 26.999 22-22\"/></g>"},"eye-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(3 7.333)\"><path d=\"M25.961 8.42a13.5 13.5 0 00-2.712-4.4 13.06 13.06 0 00-3.993-3 14.206 14.206 0 00-6.26-1.354 14.2 14.2 0 00-6.257 1.356 13.386 13.386 0 00-5.243 4.596 12.391 12.391 0 00-1.455 2.8.793.793 0 00-.006.475 12.89 12.89 0 002.634 4.415 12.747 12.747 0 003.987 3 14.5 14.5 0 006.34 1.358 14.5 14.5 0 006.345-1.355 12.986 12.986 0 005.221-4.6 11.871 11.871 0 001.4-2.812.793.793 0 00-.001-.479Z\"/><circle cx=\"5\" cy=\"5\" r=\"5\" transform=\"translate(8 3.667)\"/></g>"},"fail":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(4 4)\"><rect width=\"6\" height=\"14\" rx=\"2.005\" transform=\"translate(18)\"/><path stroke-linecap=\"round\" d=\"M1.64 11.42h1.226l-.1.678h-1.13a1.677 1.677 0 000 3.354h2.715l3.951.083s-.855 6.084 2.775 8.125c2.33 1.177 2.764-1.065 2.764-1.065v-4.237l1.385-1.412s2.771-2.62 2.771-4.264V2.825a2.622 2.622 0 00-2.768-2.828H3.896a1.678 1.678 0 000 3.354h.111l-.1.679H2.769a1.677 1.677 0 000 3.353h.668l-.1.679h-1.7a1.677 1.677 0 000 3.354Z\"/></g>"},"fast-back":{"body":"<g fill=\"none\"><path d=\"M18.999 22.074V21.2l6 3.448a2.728 2.728 0 004-2.574V9.926a2.732 2.732 0 00-4-2.578l-6 3.452v-.873a2.731 2.731 0 00-4-2.578L4.436 13.425a3.031 3.031 0 000 5.152l10.563 6.071a2.566 2.566 0 001.28.352 2.825 2.825 0 002.72-2.926Z\"/><path fill=\"currentColor\" d=\"M16.279 23c.302 0 .72-.322.72-.926v-4.33l8.995 5.172a.56.56 0 00.283.083c.303 0 .722-.321.722-.925V9.926c0-.605-.421-.927-.725-.927a.558.558 0 00-.281.082l-8.994 5.176V9.926c0-.605-.42-.927-.724-.927a.564.564 0 00-.283.082l-10.56 6.074c-.403.234-.434.706-.434.845 0 .14.03.611.43.842l10.562 6.072a.576.576 0 00.289.086m0 2c-.427 0-.866-.111-1.284-.352L4.432 18.576c-1.912-1.105-1.912-4.047 0-5.152l10.563-6.076c1.813-1.04 4.004.369 4.004 2.578v.873l5.996-3.451C26.804 6.308 29 7.717 29 9.926v12.148c0 2.211-2.195 3.617-4.004 2.574L19 21.201v.873C19 23.775 17.703 25 16.28 25Z\"/><path d=\"M14.435 13.425a3.027 3.027 0 000 5.149l10.564 6.076a2.729 2.729 0 004-2.575V9.925a2.729 2.729 0 00-4-2.575Z\"/><path fill=\"currentColor\" d=\"M14.999 16c0 .139.031.61.433.841l10.56 6.075a.534.534 0 00.573 0c.102-.058.434-.293.434-.841V9.925c0-.548-.332-.783-.434-.842a.534.534 0 00-.573 0l-10.56 6.076c-.402.23-.433.702-.433.841m-2 0c0-1.012.479-2.024 1.436-2.575l10.56-6.075c1.812-1.042 4.004.368 4.004 2.575v12.15c0 2.207-2.192 3.617-4.004 2.575l-10.56-6.075c-.957-.55-1.436-1.563-1.436-2.575Z\"/></g>"},"fast-forward":{"body":"<g fill=\"none\"><path d=\"M13 22.074v-.873l-6 3.447a2.728 2.728 0 01-4-2.574V9.926a2.732 2.732 0 014-2.578l6 3.451v-.873a2.731 2.731 0 014-2.578l10.563 6.076a3.031 3.031 0 010 5.152L17 24.648a2.566 2.566 0 01-1.284.352A2.825 2.825 0 0113 22.074Z\"/><path fill=\"currentColor\" d=\"M15.72 23a.563.563 0 00.287-.086l10.559-6.07c.403-.233.435-.706.435-.844 0-.14-.032-.612-.432-.842L16.01 9.082A.582.582 0 0015.723 9c-.303 0-.723.32-.723.925v4.332L6.007 9.082A.55.55 0 005.725 9c-.305 0-.726.32-.726.925v12.149c0 .361.144.584.264.709.133.136.3.217.457.217a.558.558 0 00.286-.086L15 17.744v4.33c0 .603.418.926.72.926m0 2C14.295 25 13 23.775 13 22.074V21.2l-5.997 3.447c-1.809 1.043-4.004-.363-4.004-2.574V9.925C3 7.716 5.193 6.31 7.003 7.347L13 10.798v-.873c0-2.21 2.191-3.615 4.003-2.578l10.563 6.076c1.913 1.106 1.913 4.047 0 5.153l-10.563 6.072c-.418.24-.856.352-1.284.352Z\"/><path d=\"M17.564 13.426a3.027 3.027 0 010 5.149L7 24.651a2.729 2.729 0 01-4-2.575V9.926a2.729 2.729 0 014-2.575Z\"/><path fill=\"currentColor\" d=\"M17 16.001c0-.139-.031-.61-.433-.841L6.007 9.085a.534.534 0 00-.573 0c-.102.058-.434.293-.434.841v12.15c0 .548.332.783.434.842.285.165.502.04.573 0l10.56-6.076c.402-.23.433-.702.433-.841m2 0c0 1.012-.479 2.024-1.436 2.575L7.004 24.65C5.192 25.693 3 24.283 3 22.076V9.926c0-2.207 2.192-3.617 4.004-2.575l10.56 6.075c.957.55 1.436 1.563 1.436 2.575Z\"/></g>"},"file":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g>"},"file-add":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 17.999h6\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16 15v6\"/>"},"file-duplicate":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M6 28c-.489 0-1-.117-1-1V11c0-.885.506-1 1-1h7V5c0-.885.506-1 1-1h8.016l4.982 5v12c0 .881-.506 1-1 1h-7v5c0 .885-.507 1-1 1Z\"/><g stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path fill=\"rgba(0,0,0,0)\" d=\"M18 28H6c-.495 0-1-.119-1-1V11c0-.881.505-1 1-1h8.013L19 15v12c0 .881-.505 1-1 1Z\"/><path fill=\"currentColor\" d=\"M18 14.999h-4v-4ZM25.999 9h-4V5Z\"/></g>"},"file-remove":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M26 10v16a2.864 2.864 0 01-3 3H9a2.864 2.864 0 01-3-3V6a2.864 2.864 0 013-3h10Z\"/><path fill=\"currentColor\" d=\"M9 5c-.663 0-1 .336-1 1v20c0 .664.337 1 1 1h14c.664 0 1-.336 1-1V10.828L18.172 5H9m0-2h10l7 7v16c0 1.795-1.25 3-3 3H9c-1.748 0-3-1.205-3-3V6c0-1.795 1.252-3 3-3Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M24.999 10h-6V4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 18h6\"/>"},"file-required":{"body":"<g stroke-linejoin=\"round\"><g fill=\"none\"><path d=\"M21 11.172v15.161A2.431 2.431 0 0118.429 29H5.572a2.431 2.431 0 01-2.571-2.667V7.667A2.431 2.431 0 015.572 5h9.2Z\"/><path fill=\"currentColor\" d=\"M5.572 7c-.25 0-.392.054-.441.105-.06.062-.13.246-.13.562v18.666c0 .316.07.5.13.562.05.05.191.105.44.105H18.43c.25 0 .392-.054.441-.105.06-.062.13-.246.13-.562V12.006L13.952 7h-8.38m0-2h9.203L21 11.172v15.161C21 27.99 20.003 29 18.43 29H5.572C3.998 29 3 27.99 3 26.333V7.667C3 6.01 3.998 5 5.572 5Z\"/></g><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M19 11.002h-4v-4Z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M26 3v8m3-6-6 4m6 0-6-4\"/>"},"filter":{"body":"<g fill=\"none\" stroke-linejoin=\"round\"><path d=\"M8.29 3.004h15.419a2.154 2.154 0 011.955 3.271l-5.4 8.737a1.636 1.636 0 00-.265.89V27.64a1.455 1.455 0 01-2.364 1.051l-4.583-3.81a2.66 2.66 0 01-1.052-2.1v-6.88a2.589 2.589 0 00-.262-1.139l-5.4-8.487A2.154 2.154 0 018.29 3.004Z\"/><path fill=\"currentColor\" d=\"m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z\"/></g>"},"filter-2":{"body":"<g stroke=\"currentColor\"><path fill=\"none\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 7.999h22m-22 8h22m-22 8h22\"/><g transform=\"translate(6.667 5.333) translate(.333 -.334)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g><g transform=\"translate(6.667 5.333) translate(12.333 7.666)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g><g transform=\"translate(6.667 5.333) translate(7.333 15.666)\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"3\" cy=\"3\" r=\"2.5\" fill=\"none\"/></g></g>"},"filter-active":{"body":"<g fill=\"currentColor\" stroke-linejoin=\"round\"><path d=\"M18.547 28a.476.476 0 01-.289-.096l-4.566-3.796-.014-.011-.013-.01a1.658 1.658 0 01-.665-1.31v-6.88c0-.354-.088-1.16-.42-1.677L7.177 5.734a1.022 1.022 0 01-.044-1.08c.222-.407.655-.65 1.157-.65L23.71 4c.503 0 .936.243 1.158.651a1.02 1.02 0 01-.044 1.078l-.005.008-.006.009-5.394 8.729c-.274.428-.419.92-.419 1.423v11.739c0 .247-.27.363-.453.363Z\"/><path d=\"m23.71 5-15.42.004c-.248 0-.29.154-.29.154a.133.133 0 00.02.039l5.402 8.483c.562.876.578 2.083.578 2.218v6.88c0 .192.101.381.278.518l.053.043L18 26.389V15.898c0-.692.198-1.367.572-1.955l5.39-8.723.022-.034c.012-.018.016-.03.016-.028 0-.001-.04-.158-.29-.158m0-2c1.783 0 2.88 1.837 1.954 3.271l-5.4 8.737a1.636 1.636 0 00-.264.89v11.739c0 1.15-1.422 1.78-2.364 1.05l-4.584-3.81a2.66 2.66 0 01-1.052-2.1v-6.88c0-.312-.09-.872-.262-1.139L6.333 6.271c-.92-1.435.176-3.267 1.957-3.267L23.71 3Z\"/></g>"},"flag":{"body":"<g transform=\"translate(6.667 5.333)\"><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M15.158 13.666c3.925.769 6.176 2.506 6.176 4.769 0 2.933-5.271 5.231-12 5.231s-12-2.3-12-5.231c0-2.263 2.252-4 6.176-4.769\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M9.333 13.666v-16h10l-4 4 4 4h-10\"/><ellipse cx=\"3\" cy=\"1.5\" fill=\"currentColor\" rx=\"3\" ry=\"1.5\" transform=\"translate(6.333 16.666)\"/></g>"},"folder":{"body":"<g fill=\"none\"><path d=\"M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z\"/><path stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m3.999 23.999 5-9h20\"/></g>"},"full-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M20 8v16\"/><path d=\"M2 6h28v20H2z\" stroke=\"none\"/><path d=\"M3 7h26v18H3z\"/></g>"},"go-to-back":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M10 7H6a3.008 3.008 0 00-2.278.709A2.636 2.636 0 003 9.834v11.334a2.64 2.64 0 00.722 2.125A3.007 3.007 0 006 24h20a3.007 3.007 0 002.278-.707A2.634 2.634 0 0029 21.168V9.834a2.634 2.634 0 00-.722-2.125A3.008 3.008 0 0026 7h-4\"/><g stroke-miterlimit=\"10\"><path d=\"M11.794 24.999h8.4l.719 1.594c.306.678-.28 1.406-1.132 1.406h-7.572c-.85 0-1.436-.726-1.134-1.4Z\"/><path fill=\"currentColor\" d=\"M11.794 24.999H20.2l.719 1.594c.305.677-.28 1.406-1.132 1.406h-7.573c-.85 0-1.436-.726-1.134-1.404L11.794 25Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m12 14.667 4 4 4-4m-4 2.331v-9\"/></g>"},"grid":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(3 2.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(3 16.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 2.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(17 16.999)\"><rect width=\"12\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"group":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(3 7.001)\"><rect width=\"12\" height=\"12\" rx=\"6\" stroke=\"none\"/><rect width=\"10\" height=\"10\" x=\"1\" y=\"1\" rx=\"5\"/></g><path stroke-linejoin=\"round\" d=\"M3.001 25.999a6 6 0 016-6 6 6 0 016 6M19 25.998a5 5 0 015-5 5 5 0 015 5\"/><g transform=\"translate(19 10.001)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g></g>"},"group-add":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(3 14)\"><rect width=\"10\" height=\"10\" rx=\"5\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\"4\"/></g><path stroke-linejoin=\"round\" d=\"M3 30a5 5 0 015-5 5 5 0 015 5\"/><g transform=\"translate(14 17)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g><path stroke-linejoin=\"round\" d=\"M14 30a4 4 0 014-4 4 4 0 014 4\"/></g>"},"heart":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M22.184 4a7.837 7.837 0 00-5.527 2.249l-.658.646-.658-.646A7.836 7.836 0 009.815 4a7.836 7.836 0 00-5.527 2.249A7.563 7.563 0 002 11.679a7.561 7.561 0 002.289 5.43l10.645 10.46a1.518 1.518 0 001.066.434 1.523 1.523 0 001.068-.434l10.644-10.457A7.563 7.563 0 0030 11.679a7.561 7.561 0 00-2.289-5.43A7.837 7.837 0 0022.184 4Z\"/><path fill=\"currentColor\" d=\"M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.675L16 9.7l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.43A7.836 7.836 0 019.816 4Z\"/></g>"},"heart-active":{"body":"<g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 27a.521.521 0 01-.364-.146L4.99 16.395A6.569 6.569 0 013 11.68c0-1.781.707-3.456 1.99-4.717A6.84 6.84 0 019.816 5a6.84 6.84 0 014.825 1.962l.658.647.701.688.7-.688.659-.647A6.84 6.84 0 0122.184 5c1.824 0 3.538.697 4.826 1.962A6.57 6.57 0 0129 11.68a6.57 6.57 0 01-1.99 4.716L16.367 26.852A.526.526 0 0116 27Z\"/><path d=\"M9.816 6c-1.56 0-3.026.595-4.125 1.676A5.576 5.576 0 004 11.679c0 1.51.6 2.932 1.69 4.003L16 25.81l10.31-10.128A5.577 5.577 0 0028 11.679c0-1.51-.6-2.932-1.69-4.003A5.847 5.847 0 0022.183 6c-1.56 0-3.025.595-4.124 1.676L16 9.699l-2.06-2.023A5.846 5.846 0 009.816 6m0-2c2.087 0 4.05.799 5.526 2.249l.658.646.658-.646A7.837 7.837 0 0122.184 4c2.088 0 4.051.799 5.527 2.249A7.561 7.561 0 0130 11.679c0 2.05-.813 3.98-2.289 5.43L17.068 27.565A1.523 1.523 0 0116 28c-.4 0-.784-.156-1.066-.434L4.289 17.108A7.561 7.561 0 012 11.678c0-2.05.813-3.98 2.289-5.429A7.836 7.836 0 019.816 4Z\"/></g>"},"highlighter":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\"><path fill=\"none\" stroke-width=\"2\" d=\"m8 16.624 7.368 7.377L28 11.337l-7.368-7.336Zm.8 2.378 4.2 4.2-2.8 2.8H7.4l-1.4-1.4v-2.8Z\"/><path fill=\"currentColor\" d=\"m6 25.002-2 2 2 1 2-2Z\"/></g>"},"home":{"body":"<g fill=\"rgba(0,0,0,0)\" stroke-miterlimit=\"10\"><path d=\"M14 28h-4c-.715-.002-1.467-.344-2.062-.939C7.343 26.466 7 25.714 7 25v-9.872H3.693a1.54 1.54 0 01-.486-.063c-.13-.045-.16-.089-.174-.11a.143.143 0 01-.015-.05V14.9c0-.027 0-.099.087-.234.076-.117.183-.233.336-.363l.005-.005.005-.004 11.225-9.831A2.047 2.047 0 0116.002 4c.5 0 .971.166 1.327.465l11.237 9.705.002.002.003.002c.148.126.258.246.337.365.075.119.085.188.086.235a.13.13 0 01-.015.053.202.202 0 01-.079.067c-.102.054-.244.103-.585.106l-2.32-.003-1.003-.001.001 1.002L25 25c0 .714-.342 1.466-.937 2.061-.596.595-1.348.937-2.065.938h-3.997V21h-1l-2-.001h-1v7Z\"/><path fill=\"currentColor\" d=\"M13 27v-7.002l6.001.003v6.998h2.996c.954-.001 2.002-1.048 2.003-1.998l-.008-11.006 2.845.003-10.156-8.772A1.067 1.067 0 0016 5c-.263 0-.502.08-.677.223L5.16 14.127H8v10.87c0 .954 1.048 2 2 2.002h3m2 2h-5c-2.055-.003-3.999-1.946-4-4v-8.872H3.693a2.52 2.52 0 01-.807-.116 1.286 1.286 0 01-.683-.5 1.121 1.121 0 01-.185-.618c.002-.262.082-.513.246-.769.13-.202.298-.388.528-.583l11.232-9.838A3.064 3.064 0 0116 3a3.06 3.06 0 011.978.704l11.242 9.709c.223.19.396.381.528.583.163.255.243.506.246.769a1.12 1.12 0 01-.186.62 1.2 1.2 0 01-.437.391c-.29.154-.605.22-1.052.224l-2.326-.003L26 25c-.001 2.053-1.946 3.996-4 4h-5v-7l-2-.001v7Z\"/></g>"},"hourglass":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\"><path fill=\"none\" stroke-linejoin=\"round\" stroke-miterlimit=\"10\" d=\"M18.999 15.999c0-.572 1.967-1.785 3-2.889a10.728 10.728 0 003-7.222V2.999h-18v2.889a10.723 10.723 0 003 7.222c1.033 1.1 3 2.317 3 2.889s-1.967 1.785-3 2.889a10.724 10.724 0 00-3 7.222v2.889h18V26.11a10.734 10.734 0 00-3-7.222c-1.033-1.105-3-2.315-3-2.889Z\"/><path fill=\"none\" stroke-miterlimit=\"10\" d=\"M24 9.999H8\"/><path fill=\"currentColor\" d=\"M9.999 27.999c0-1.657 2.686-3 6-3s6 1.343 6 3\"/></g>"},"image":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2.667 5.333)\"><g stroke-miterlimit=\"10\" transform=\"rotate(90 13.333 14)\"><rect width=\"20\" height=\"28\" rx=\"2\" stroke=\"none\"/><rect width=\"18\" height=\"26\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m4.333 19.667 13-13 9 9\"/><circle cx=\"2\" cy=\"2\" r=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(4.333 5.666)\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m12.334 11.666 4 4 5-5\"/></g>"},"info-badge":{"body":"<g transform=\"translate(3.2 3.2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"currentColor\" transform=\"translate(-1.2 -1.199)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.8 21.801v-10m0-6v-2\"/></g>"},"information":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16 9v2m0 5v7\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g></g>"},"italic":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M26 5.001H12m8 22H6M20 5l-8 22\"/>"},"key":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M3 29v-5l10.419-10.424a8 8 0 115.026 5.01l-1.218 1.242-.228.174h-2v2h-2l-1 1v2h-2v2l-2 2Z\"/><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(20 7)\"/>"},"language":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-miterlimit=\"10\" d=\"M4 11h24M4 21h24\"/><path d=\"M15 29s-5-6.5-5-13 5-13 5-13m2 26s5-6.5 5-13-5-13-5-13\"/></g>"},"learning-path":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m4 24.167 1.765-6.548a.282.282 0 01.507-.081 3.125 3.125 0 101.223-4.53.28.28 0 01-.4-.322l1.765-6.55 6.59 1.756a.281.281 0 00.324-.4 3.084 3.084 0 01-.216-2.184 3.135 3.135 0 016.084 1.51 3.1 3.1 0 01-1.311 1.888.279.279 0 00.082.5l6.588 1.756L22.14 29Z\"/>"},"light-off":{"body":"<path fill=\"currentColor\" d=\"M16 29a4.968 4.968 0 01-3.277-1.2 3.99 3.99 0 01-1.406-2.875l2-2v1.863a2.006 2.006 0 00.728 1.5 3.084 3.084 0 003.92 0 2.032 2.032 0 00.723-1.5v-3.605l.465-.559a18.957 18.957 0 002.718-4.15 12.184 12.184 0 00.97-3.072l2.158-2.158v.245a13.8 13.8 0 01-1.314 5.826 21.077 21.077 0 01-3 4.6v2.883a4.02 4.02 0 01-1.409 3.01A4.968 4.968 0 0116 29ZM9.052 18.7a16.34 16.34 0 01-.732-1.4 13.785 13.785 0 01-1.319-5.816 8.21 8.21 0 012.653-6.02 9.4 9.4 0 0112.664-.029l-1.416 1.416a7.4 7.4 0 00-9.882.074 6.219 6.219 0 00-2.019 4.559 11.622 11.622 0 001.136 4.977c.122.262.251.521.386.77l-1.469 1.467Z\"/><path fill=\"currentColor\" d=\"M20 23h-6.756l2-2H20v2Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"light-on":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M25 11.489a8.232 8.232 0 00-2.653-6.018A9.255 9.255 0 0016 3.001a9.256 9.256 0 00-6.347 2.47A8.232 8.232 0 007 11.489a13.682 13.682 0 001.321 5.817 21.257 21.257 0 002.994 4.584v2.9a4 4 0 001.407 3.007A4.96 4.96 0 0016 29.001a4.96 4.96 0 003.278-1.2 4 4 0 001.407-3.007v-2.882a21.054 21.054 0 003-4.6A13.746 13.746 0 0025 11.489Z\"/><path fill=\"currentColor\" d=\"M16 5.001c-1.885 0-3.653.685-4.98 1.93C9.717 8.151 9 9.771 9 11.491c0 1.697.37 3.324 1.135 4.974.618 1.332 1.507 2.689 2.718 4.148l.461.556v3.628c0 .753.453 1.262.727 1.502.516.453 1.212.702 1.959.702.747 0 1.443-.25 1.962-.705.27-.237.724-.746.724-1.501v-3.606l.462-.556c1.214-1.458 2.104-2.817 2.722-4.154.761-1.65 1.131-3.281 1.13-4.99 0-1.718-.717-3.337-2.021-4.56C19.653 5.686 17.885 5.001 16 5.001m0-2c2.47 0 4.716.94 6.347 2.47 1.632 1.528 2.654 3.663 2.653 6.018.001 2.125-.498 4.061-1.314 5.828-.77 1.665-1.821 3.179-3 4.595v2.883c0 1.19-.554 2.26-1.408 3.007-.854.75-2.012 1.199-3.278 1.199s-2.424-.45-3.278-1.2c-.854-.745-1.409-1.816-1.408-3.006v-2.904c-1.174-1.416-2.224-2.926-2.993-4.584-.82-1.767-1.322-3.701-1.321-5.818-.001-2.355 1.022-4.49 2.653-6.018 1.631-1.53 3.878-2.47 6.347-2.47Z\"/></g><path stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 22.001h8\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m19 13.001-3 4m-3-3.997 3 4v4\"/></g>"},"link":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M13 17.521a6.344 6.344 0 008.79 1.248 6.17 6.17 0 00.68-.579l3.767-3.71a6.115 6.115 0 00-.154-8.743 6.351 6.351 0 00-8.725 0l-2.16 2.114\"/><path d=\"M19 14.479a6.344 6.344 0 00-8.79-1.248 6.186 6.186 0 00-.68.579l-3.767 3.71a6.115 6.115 0 00.155 8.743 6.351 6.351 0 008.725 0l2.148-2.114\"/></g>"},"lock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 18.999v4\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 11.999)\"><rect width=\"24\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"22\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M11.005 11.999V8.535a4.785 4.785 0 015-4.536h0a4.784 4.784 0 015 4.536v3.464\"/></g>"},"login":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M20 4h5.333A3.208 3.208 0 0128 6.667v18.666A3.213 3.213 0 0125.333 28H20\"/><path d=\"m16 21.999 6-6-6-6M20 16H4\"/></g>"},"logout":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M12 4H6.667A3.208 3.208 0 004 6.667v18.666A3.213 3.213 0 006.667 28H12m10-6.001 6-6-6-6M26 16H10\"/>"},"maximaze":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><rect width=\"28\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M7 17v4h4m14-6v-4h-4\"/></g>"},"menu":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 20h18M5 16h14M5 12h22\"/>"},"merge":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(5.333 5.334) translate(-.333 15.666)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(5.333 5.334) translate(13.666 15.666)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linejoin=\"round\" d=\"m20 8.334-4-4-4 4M16 6v11\"/><path stroke-miterlimit=\"10\" d=\"m11 22.001 5-5 5 5\"/></g>"},"minimize":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><g transform=\"translate(3 17.001)\"><rect width=\"11\" height=\"9\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h9v7H1z\"/></g><path stroke-linecap=\"round\" d=\"M28 10.999v-4h-6m0 18.002h6v-4m-18-14H4v4\"/></g>"},"mixed-class":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 30a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z\"/><path d=\"M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z\"/></g><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M8 17a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M8 9.999a3 3 0 11.879 2.121A2.994 2.994 0 018 9.999Z\"/><path fill=\"currentColor\" d=\"M11 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0011 11c.341 0 .574-.16.707-.293A.981.981 0 0012 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 018 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0111 6.999Z\"/></g></g><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 17a3 3 0 013-3 3 3 0 013 3\"/><g stroke-miterlimit=\"10\"><path d=\"M18 9.999a3 3 0 11.879 2.121A2.994 2.994 0 0118 9.999Z\"/><path fill=\"currentColor\" d=\"M21 8.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0021 11c.341 0 .574-.16.707-.293A.981.981 0 0022 9.999a.981.981 0 00-.291-.706.986.986 0 00-.709-.294m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121a2.99 2.99 0 01-2.121.879 2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0118 9.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0121 6.999Z\"/></g></g>"},"more-horizontal":{"body":"<g fill=\"currentColor\" transform=\"rotate(90 8.9 22.767)\"><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 3.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 12.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.867 21.667)\"/></g>"},"more-vertical":{"body":"<g fill=\"currentColor\" transform=\"translate(13.333 5.333)\"><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 -1.334)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 7.666)\"/><circle cx=\"3\" cy=\"3\" r=\"3\" transform=\"translate(-.333 16.666)\"/></g>"},"news":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path d=\"m9 12-5 .055V25c0 1.879.845 3 2.5 3S9 26.879 9 25V6h19v19a2.94 2.94 0 01-3 3H7\"/><path stroke-linecap=\"round\" d=\"M14 22h5m-5-10h9m-9 5h9\"/></g>"},"no-prerequisites":{"body":"<g transform=\"translate(8.883 9)\"><rect width=\"10\" height=\"5.002\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 -1)\"/><rect width=\"10\" height=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(7.117 10)\"/><path fill=\"currentColor\" d=\"M-3.765 3.728h1.258V-.285l-1.376.353v-1.365l2.887-.7v5.728H.118v1.272h-3.882Zm-.102 10.798a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.157-.455.522v.747h-1.235v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224H.121v1.3h-3.984Z\"/></g>"},"notes":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 9h16M8 15h9\"/><g transform=\"translate(2 2)\"><rect width=\"28\" height=\"28\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"26\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4 29c4.543 0 6.857-7 6.857-7L28 28.9 4 29Z\"/></g>"},"number-code":{"body":"<defs><path id=\"svgID0\" d=\"M2 0v5m2-3.75-4 2.5m4 0-4-2.5\"/></defs><g fill=\"none\" stroke=\"currentColor\"><g stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(8 9)\"><rect width=\"16\" height=\"11\" rx=\"3\" stroke=\"none\"/><rect width=\"14\" height=\"9\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12.005 9V6.835c0-1.565 1.791-2.835 4-2.835h0c2.209 0 4 1.269 4 2.835V9\"/></g><use href=\"#svgID0\" stroke-linecap=\"round\" transform=\"translate(6 23)\"/><use href=\"#svgID0\" stroke-linecap=\"round\" transform=\"translate(14 23)\"/><use href=\"#svgID0\" stroke-linecap=\"round\" transform=\"translate(22 23)\"/></g>"},"numbered-list":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 22h6m-6-5.999h15M12 10h10\"/><path fill=\"currentColor\" stroke=\"rgba(0,0,0,0)\" d=\"M6.059 11.275h.629V8.981l-.688.2V8.4L7.443 8v3.273H8V12H6.059Zm-.054 5.884a1.1 1.1 0 01.572-1.108l.606-.365c.134-.085.181-.187.181-.411v-.21c0-.205-.073-.3-.226-.3h-.293c-.154 0-.227.089-.227.3v.427h-.62v-.383c0-.744.313-1.107.879-1.107h.227c.569 0 .878.367.878 1.094v.211a1.087 1.087 0 01-.571 1.095l-.6.366a.369.369 0 00-.186.365v.128h1.38v.741h-2ZM8 22.793v.12c0 .727-.3 1.089-.865 1.089h-.269c-.566 0-.866-.361-.866-1.074v-.323h.608v.364c0 .186.076.28.225.28h.326c.148 0 .227-.1.227-.293v-.343c0-.189-.066-.287-.211-.287h-.484v-.692h.449c.143 0 .209-.093.209-.286v-.314c0-.194-.075-.287-.22-.287h-.275c-.143 0-.217.091-.217.274v.335h-.611v-.287c0-.711.3-1.07.864-1.07h.21c.564 0 .863.359.863 1.089v.1c0 .418-.157.707-.459.786.331.062.496.385.496.819Z\"/>"},"on-site":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5.888 21.001a2.717 2.717 0 01-2.889-3v-12a2.717 2.717 0 012.889-3h20.223a2.717 2.717 0 012.889 3v12a2.717 2.717 0 01-2.889 3\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m9 16 4-4h6l4-4\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M13 30a3 3 0 013-3 3 3 0 013 3\"/><g fill=\"currentColor\" stroke-miterlimit=\"10\"><path d=\"M16 24.999a1.992 1.992 0 01-1.415-.587A1.99 1.99 0 0114 22.999c0-.534.209-1.037.587-1.416A1.99 1.99 0 0116 20.999a1.99 1.99 0 011.415.586c.377.377.585.88.585 1.414 0 .534-.208 1.036-.586 1.414a1.991 1.991 0 01-1.414.586Z\"/><path d=\"M16 21.999a.986.986 0 00-.707.292 1.003 1.003 0 000 1.415A.987.987 0 0016 24c.341 0 .574-.16.707-.293A.981.981 0 0017 23a.981.981 0 00-.291-.706A.986.986 0 0016 22m0-2c.83 0 1.577.335 2.121.878.544.544.879 1.293.879 2.122 0 .83-.335 1.576-.879 2.121A2.99 2.99 0 0116 26a2.99 2.99 0 01-2.121-.879A2.99 2.99 0 0113 22.999c0-.83.336-1.578.879-2.122A2.99 2.99 0 0116 19.999Z\"/></g>"},"order-down":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 7h22M5 13h16M5 19h10M5 25h4\"/>"},"order-up":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M5 25h22M5 19h16M5 13h10M5 7h4\"/>"},"paste":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(10.001 3)\"><rect width=\"16\" height=\"22\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"20\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 28h-9a2.665 2.665 0 01-3-3V10\"/><path stroke-linecap=\"round\" d=\"M15 10h6m-6 5h6\"/></g>"},"pausa":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12 6v20m8-20v20\"/>"},"pdf":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M29 10H16m13 6H16m13 7H3\"/><path stroke-linejoin=\"round\" d=\"M3 9h8v8H3z\"/></g>"},"phone":{"body":"<g transform=\"translate(8.666 2.667)\"><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(-1.665 -.666)\"><rect width=\"18\" height=\"28\" rx=\"2.999\" stroke=\"none\"/><rect width=\"16\" height=\"26\" x=\"1\" y=\"1\" rx=\"1.999\"/></g><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" transform=\"translate(5.334 19.334)\"/><rect width=\"6\" height=\"3\" fill=\"currentColor\" rx=\"1\" transform=\"translate(4.334 .334)\"/></g>"},"pin":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(12 7.999)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path d=\"M16 2.001a9.9 9.9 0 0110 9.8c0 8.412-10 18.2-10 18.2s-10-9.793-10-18.2a9.9 9.9 0 0110-9.8Z\"/><path fill=\"currentColor\" d=\"M16 4.001c-4.411 0-8 3.5-8 7.8 0 3.005 1.587 6.822 4.59 11.038A49.357 49.357 0 0016 27.086a49.281 49.281 0 003.373-4.193C22.4 18.657 24 14.82 24 11.8 24 7.5 20.411 4 16 4m0-2c5.523 0 10 4.388 10 9.8C26 20.212 16 30 16 30S6 20.207 6 11.8C6 6.388 10.477 2 16 2Z\"/></g>"},"pin-map":{"body":"<g fill=\"currentColor\"><path d=\"M16 28.56a51.066 51.066 0 01-4.186-5.088c-1.413-1.977-2.536-3.89-3.338-5.688-.979-2.193-1.475-4.206-1.475-5.982 0-4.852 4.037-8.8 8.999-8.8 4.961 0 8.998 3.948 8.998 8.8 0 1.777-.496 3.79-1.475 5.984-.803 1.798-1.925 3.711-3.338 5.688A51.036 51.036 0 0116 28.56ZM16 7a5.006 5.006 0 00-4.999 5c0 2.758 2.243 5 5 5 2.756 0 5-2.242 5-5 0-2.756-2.244-5-5-5Z\"/><path d=\"M16 27.08a49.525 49.525 0 003.372-4.188c1.373-1.922 2.463-3.777 3.237-5.513.922-2.065 1.389-3.941 1.389-5.577 0-4.3-3.588-7.8-7.998-7.8s-8 3.5-8 7.8c0 1.635.468 3.51 1.39 5.575.774 1.736 1.864 3.591 3.238 5.514A49.566 49.566 0 0016 27.08M16 6c3.309 0 6 2.691 6 6 0 3.308-2.691 6-6 6a6.007 6.007 0 01-5.999-6c0-3.309 2.692-6 6-6M16 30c-.026-.026-2.547-2.514-5-5.947-1.451-2.03-2.607-4.003-3.437-5.861-1.037-2.323-1.562-4.473-1.562-6.39 0-5.403 4.485-9.8 9.999-9.8 5.513 0 9.998 4.397 9.998 9.8 0 1.919-.526 4.07-1.562 6.392-.83 1.858-1.986 3.83-3.437 5.861-2.451 3.43-4.973 5.92-4.998 5.944H16Zm0-22a4.004 4.004 0 00-3.999 4c0 2.206 1.794 4 4 4 2.205 0 4-1.794 4-4 0-2.205-1.795-4-4-4Z\"/></g>"},"pizza":{"body":"<path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M20.349 3 29 29 3.05 20.333S1.182 3 20.349 3Z\"/><path fill=\"rgba(0,0,0,0)\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"1.5\" d=\"M6.093 21a15.119 15.119 0 01.023-3.338 14.759 14.759 0 011.449-3.019 15.007 15.007 0 011.5-2.994 15.465 15.465 0 012.637-2.1 15.242 15.242 0 012.671-2.061 15.667 15.667 0 013.306-.77A15.224 15.224 0 0121 6\"/><path fill=\"currentColor\" d=\"M18.546 10.324a2.356 2.356 0 00-3.223 3.225.784.784 0 00.581.38.8.8 0 00.674-.23l.18-.154L17.772 15l2.225-2.229-1.455-1.041.154-.158a.806.806 0 00.23-.675.783.783 0 00-.38-.58Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.335 22.135s-.3-4.227 4.7-2.865S16.856 25 16.856 25m10.154-2.117s-1.859 2.126-3.428-.727a2.637 2.637 0 011.455-3.947\"/>"},"play":{"body":"<g fill=\"none\"><path d=\"M26.753 14.241a2 2 0 010 3.517L8.953 27.4A2 2 0 016 25.642V6.358A2 2 0 018.953 4.6Z\"/><path fill=\"currentColor\" d=\"M25.8 16 8 6.358v19.284L25.8 16m2 0c0 .69-.348 1.38-1.047 1.759L8.953 27.4C7.62 28.123 6 27.158 6 25.642V6.358c0-1.516 1.62-2.48 2.953-1.759l17.8 9.642A1.98 1.98 0 0127.801 16Z\"/></g>"},"plug-in":{"body":"<g fill=\"none\"><path d=\"M4 26.002a2 2 0 01-2-2v-12a2 2 0 012-2h1v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24.002v-12h-3v-4h-5v4h-8v-4H7v4H4.003v12H28m0 2H4.003a2 2 0 01-2-2v-12a2 2 0 012-2H5v-2a2 2 0 012-2h5a2 2 0 012 2v2h4v-2a2 2 0 012-2h5a2 2 0 012 2v2h1a2 2 0 012 2v12a2 2 0 01-2 2Z\"/></g>"},"pointer":{"body":"<g stroke=\"currentColor\"><g fill=\"none\" stroke-width=\"2\" transform=\"translate(4 3.999)\"><circle cx=\"12\" cy=\"12\" r=\"12\" stroke=\"none\"/><circle cx=\"12\" cy=\"12\" r=\"11\"/></g><g transform=\"translate(12 11.999)\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"currentColor\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3.5\" fill=\"none\"/></g></g>"},"printer":{"body":"<g fill=\"none\"><g stroke-miterlimit=\"10\"><path d=\"M28 8.999H4a1.836 1.836 0 00-2 2v11a1.812 1.812 0 002 2h3v3a1.843 1.843 0 002 2h14a1.843 1.843 0 002-2v-3h3a1.836 1.836 0 002-2v-11a1.836 1.836 0 00-2-2Z\"/><path fill=\"currentColor\" d=\"M4 11v11h5v5h14v-5h5V11H4m0-2h24c1.243 0 2 .734 2 2v11c0 1.265-.757 2-2 2h-3v3c0 1.257-.764 2-2 2H9c-1.236 0-2-.743-2-2v-3H4c-1.299-.004-2-.735-2-2V11c0-1.266.757-2 2-2Z\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M21 15h3\"/><g stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"M21.001 5.998h-2v-2Z\"/><path stroke-miterlimit=\"10\" d=\"M11 10V6a1.8 1.8 0 012-2h6l2 2v4\"/></g><g stroke-miterlimit=\"10\"><path d=\"M7 20h18v7a2.3 2.3 0 01-2.25 2H9.25A2.3 2.3 0 017 27Z\"/><path fill=\"currentColor\" d=\"M9 22v4.852c.067.07.186.143.25.148h13.497a.537.537 0 00.253-.15V22H9m-2-2h18v7c0 .997-1.125 2-2.25 2H9.25C8.125 29 7 28.003 7 27v-7Z\"/></g></g>"},"profile":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 5.334)\"><path fill=\"rgba(0,0,0,0)\" d=\"M2.2 10.588a4 4 0 010-7.84 7.005 7.005 0 0111.6 0 4 4 0 010 7.84 7 7 0 01-11.6 0Z\"/><path fill=\"none\" stroke-linejoin=\"round\" d=\"M-1 24.666a9 9 0 019-9 9 9 0 019 9\"/><rect width=\"8\" height=\"8\" fill=\"none\" rx=\"4\" transform=\"translate(-1 2.666)\"/><rect width=\"8\" height=\"8\" fill=\"none\" rx=\"4\" transform=\"translate(9 2.666)\"/></g>"},"profile-add":{"body":"<g stroke=\"currentColor\" stroke-width=\"2\"><path fill=\"none\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(4 5.332)\"><path fill=\"rgba(0,0,0,0)\" d=\"M1.624 11.334a3 3 0 010-5.328 6 6 0 0110.761 0 3 3 0 010 5.328 6 6 0 01-10.752 0Z\"/><path fill=\"none\" stroke-linejoin=\"round\" d=\"M-1 24.666a8 8 0 018-8 8 8 0 018 8\"/><rect width=\"6\" height=\"6\" fill=\"rgba(0,0,0,0)\" rx=\"3\" transform=\"translate(0 5.668)\"/><rect width=\"6\" height=\"6\" fill=\"rgba(0,0,0,0)\" rx=\"3\" transform=\"translate(8 5.668)\"/></g></g>"},"push-pin-off":{"body":"<path fill=\"currentColor\" d=\"M15.982 29.004a2.22 2.22 0 01-1.7-.791 11.534 11.534 0 01-2.264-3.984l1.664-1.664c.011.074.021.146.036.23a8.977 8.977 0 002.095 4.131.216.216 0 00.173.076.239.239 0 00.165-.066l10.788-10.789a.22.22 0 00.066-.172.228.228 0 00-.08-.164 8.88 8.88 0 00-4.362-2.127l1.665-1.664a11.609 11.609 0 013.984 2.26 2.23 2.23 0 01.138 3.283L17.566 28.352a2.239 2.239 0 01-1.584.652Zm-5.938-11.289L6.255 13.93a.215.215 0 00-.155-.066l-1.509-.008a1.6 1.6 0 01-1.123-2.725l7.655-7.66a1.6 1.6 0 012.729 1.123l.009 1.508a.219.219 0 00.066.16l3.786 3.785-1.414 1.414-3.787-3.783a2.244 2.244 0 01-.652-1.566v-.541l-6.292 6.293h.545a2.217 2.217 0 011.563.652l3.788 3.787-1.414 1.412Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m23 23 5 5\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"push-pin-on":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M27.567 15.045c-3.424-2.88-6.319-2.55-7.566-2.2a1.227 1.227 0 01-1.209-.309l-5.573-5.571a1.224 1.224 0 01-.359-.86l-.007-1.509a.6.6 0 00-1.02-.418l-7.657 7.656a.6.6 0 00.418 1.02l1.509.007a1.224 1.224 0 01.86.359l5.572 5.572a1.227 1.227 0 01.309 1.209c-.352 1.248-.682 4.142 2.2 7.566a1.235 1.235 0 001.811.074l10.786-10.785a1.235 1.235 0 00-.074-1.811Z\"/><path stroke-linecap=\"round\" d=\"m23 23 5 5\"/></g>"},"qrcode":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(2 20.999)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(21 2.001)\"><rect width=\"9\" height=\"9\" rx=\"2\" stroke=\"none\"/><rect width=\"7\" height=\"7\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M3 16h12v3m1-15.999v7m13 4v8m-13.999 4.333V29h5v-8M20 16h5v3m1 10h3v-3\"/></g>"},"question-badge":{"body":"<g transform=\"translate(2.667 2.667)\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"currentColor\" transform=\"translate(-.667 -.666)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8.333 7.531a5.2 5.2 0 016.557-2.916 4.5 4.5 0 013.442 4.859c0 3.236-5 4.859-5 4.859\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M13.333 22.334v-2\"/></g>"},"radio":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(2 2)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g>"},"redo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M26 12H11c-4.37 0-7 2.68-7 5.984V18c0 3.305 2.629 6 7 6h5.1\"/><path stroke-linejoin=\"round\" d=\"m21.999 6 6 6-6 6\"/></g>"},"relations":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4.267 7.534)\"><path d=\"m2.733 3.467 3 3\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-1.267 -.533)\"/></g><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(14.934 5.334)\"><path d=\"M1.066 2.666v4\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(-.934 -1.334)\"/></g><g stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(21.4 6.534)\"><path d=\"m3.6 4.467-3 3\"/><circle cx=\"2\" cy=\"2\" r=\"2\" transform=\"translate(3.6 .467)\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M12 29a4 4 0 014-4 4 4 0 014 4\"/><g stroke-miterlimit=\"10\"><path d=\"M12 19.999a4 4 0 111.172 2.828A3.992 3.992 0 0112 19.999Z\"/><path fill=\"currentColor\" d=\"M16 17.999a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414A1.993 1.993 0 0016 18m0-2c1.106 0 2.102.446 2.828 1.17A3.984 3.984 0 0120 19.999a3.98 3.98 0 01-1.172 2.828A3.987 3.987 0 0116 23.999a3.988 3.988 0 01-2.828-1.172A3.988 3.988 0 0112 19.999c0-1.106.448-2.104 1.172-2.83A3.986 3.986 0 0116 15.999Z\"/></g></g>"},"reload":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M23 22.791A9.7 9.7 0 0115.804 26a9.9 9.9 0 01-9.8-10M9 8.6A10.225 10.225 0 0115.837 6 10.083 10.083 0 0126 16\"/><path stroke-linejoin=\"round\" d=\"m9 17-3-3-3 3m20-1.999 3 3 3-3\"/></g>"},"remove":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 16h24\"/>"},"remove-circle":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" d=\"M11 16.001h10\"/></g>"},"reorder":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M4 18h24M4 14h24\"/><path stroke-linejoin=\"round\" d=\"m20 8-4-4-4 4m0 16 4 4 4-4\"/></g>"},"repeat":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"m22.999 4.999 4 4-4 4M9 27l-4-4 4-4\"/><path d=\"M5 14.999v-3a3.177 3.177 0 013.331-3H25m2 8v3a3.177 3.177 0 01-3.331 3H7\"/></g>"},"repository":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m24 16.001-3-3-3 3m2.999-1v6\"/><path d=\"M4 26a2 2 0 01-2-2V7.407a2.53 2.53 0 012.287-2.401H13.4L15.7 8H28a2 2 0 012 2v14a2 2 0 01-2 2Z\"/><path fill=\"currentColor\" d=\"M28 24V9.999H14.71l-2.3-2.997h-.127l-7.946.004c-.131.053-.322.279-.337.405V24h24m0 2H4a2 2 0 01-2-2.001V7.407c0-1.2 1.145-2.393 2.287-2.4l7.998-.005 1.114.004L15.696 8H28a2 2 0 012 2v13.999a2 2 0 01-2 2Z\"/></g>"},"request-form":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(4 4)\"><path d=\"M18 14.001a5.461 5.461 0 01-4 4m0-12a5.459 5.459 0 014 4m-12 0a5.46 5.46 0 014-4m0 12a5.454 5.454 0 01-4-4m16.994 1.142c-.814 5.444-3.307 7.016-7.856 7.856m0-22c4.456.92 7.018 3.384 7.856 7.856m-22 0C1.914 4.404 4.382 1.839 8.85.999m0 22c-4.55-.846-7-3.308-7.856-7.856\"/><rect width=\"6\" height=\"8\" rx=\"1.333\" transform=\"translate(9 17)\"/><rect width=\"8\" height=\"6\" rx=\"1.333\" transform=\"translate(17 9)\"/><rect width=\"8\" height=\"6\" rx=\"1.333\" transform=\"translate(-1 9)\"/><rect width=\"6\" height=\"8\" rx=\"1.333\" transform=\"translate(9 -1)\"/></g>"},"resize-100":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M29 11V5h-6m0 22.001h6v-6M9 4.999H3v6m-.001 10.003v6h6\"/><path fill=\"currentColor\" d=\"M6.999 21h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018Zm11.998 0h6v-2h-2v-8l-4 1v2l2-.65v5.668l-2-.018ZM15 14.999h2v-2h-2Zm0 4h2v-2h-2Z\"/>"},"resize-height":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m20 11.001-4-4-4 4m0 10.003 4 4 4-4\"/><path d=\"M5 3h22M5 29h22\"/></g>"},"resize-width":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-linejoin=\"round\" d=\"m21 20.001 4-4-4-4M10.999 12l-4 4 4 4\"/><path d=\"M29 5v22M3 5v22\"/></g>"},"search":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g>"},"sequential-prerequisites":{"body":"<g transform=\"translate(4.333 5.333)\"><rect width=\"10\" height=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" rx=\".5\" transform=\"translate(11.667 .666)\"/><path fill=\"currentColor\" d=\"M.785 5.394h1.258V1.381l-1.376.353V.369l2.887-.7v5.728h1.114v1.272H.786Zm-.101 14.8a1.875 1.875 0 011.144-1.939l1.211-.639a.681.681 0 00.361-.719v-.368c0-.359-.146-.522-.451-.522h-.587c-.309 0-.455.156-.455.522v.747H.672v-.67c0-1.3.626-1.937 1.758-1.937h.455c1.139 0 1.756.643 1.756 1.914v.37a1.859 1.859 0 01-1.142 1.916l-1.206.641a.629.629 0 00-.372.639v.224h2.751v1.3H.688Z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(11.667 13.667)\"><rect width=\"10\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M14.672 13.668v-1.3a1.869 1.869 0 012-1.7h0a1.869 1.869 0 012 1.7v1.3\"/></g></g>"},"settings":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(4 4.001)\"><path d=\"M10.478 24h3.044l.372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.269 2.378 1.856 2.156-2.156-1.856-2.378.271-.468a9.139 9.139 0 00.892-2.153l.142-.515L24 13.522v-3.045l-2.987-.371-.142-.516a9.123 9.123 0 00-.893-2.155l-.269-.467 1.856-2.378-2.157-2.155-2.378 1.857-.467-.271a9.131 9.131 0 00-2.153-.892l-.516-.145-.372-2.987h-3.044l-.372 2.987-.516.142a9.131 9.131 0 00-2.153.892l-.467.271-2.378-1.854-2.156 2.156 1.856 2.378-.269.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516a9.106 9.106 0 00.893 2.152l.269.468-1.855 2.378 2.156 2.156 2.378-1.856.467.269a9.131 9.131 0 002.153.892l.516.142Z\"/><path fill=\"currentColor\" d=\"m13.522 24 .372-2.988.516-.142a9.112 9.112 0 002.153-.892l.467-.27 2.378 1.856 2.156-2.156-1.856-2.378.27-.468a9.14 9.14 0 00.893-2.153l.142-.515L24 13.522v-3.045l-2.987-.37-.142-.517a9.123 9.123 0 00-.893-2.154l-.27-.467 1.856-2.378-2.156-2.156-2.378 1.857-.467-.27a9.13 9.13 0 00-2.153-.893l-.516-.142L13.522 0h-3.044l-.372 2.987-.516.142a9.13 9.13 0 00-2.153.892l-.467.27-2.378-1.856L2.436 4.59l1.856 2.378-.27.468a9.106 9.106 0 00-.893 2.152l-.142.517L0 10.477v3.045l2.987.372.142.516c.21.768.511 1.492.893 2.152l.27.468-1.856 2.378 2.156 2.156 2.378-1.856.467.27a9.13 9.13 0 002.153.892l.516.142.372 2.988h3.044m0 2h-3.044a2 2 0 01-1.985-1.753l-.21-1.691a11.24 11.24 0 01-1.119-.463l-1.342 1.048a2 2 0 01-2.645-.163l-2.155-2.155a2 2 0 01-.163-2.645l1.048-1.342a11.113 11.113 0 01-.464-1.119l-1.69-.21A2 2 0 01-2 13.521v-3.045A2 2 0 01-.246 8.492l1.689-.21c.135-.383.29-.757.464-1.119L.859 5.821a2 2 0 01.163-2.645l2.155-2.155A2 2 0 015.822.858l1.342 1.048c.362-.174.735-.328 1.119-.463l.21-1.69A2 2 0 0110.479-2h3.044a2 2 0 011.984 1.753l.211 1.69c.384.135.758.29 1.12.463l1.34-1.048a2 2 0 012.646.163l2.155 2.155a2 2 0 01.163 2.645l-1.047 1.342c.173.362.328.736.463 1.12l1.69.21A2 2 0 0126 10.476v3.045a2 2 0 01-1.753 1.984l-1.69.211c-.135.383-.29.757-.463 1.119l1.047 1.342a2 2 0 01-.163 2.645l-2.155 2.155a2 2 0 01-2.645.163l-1.342-1.047c-.36.172-.735.327-1.119.462l-.21 1.691A2 2 0 0113.522 26Z\"/><circle cx=\"5\" cy=\"5\" r=\"5\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(7 6.999)\"/></g>"},"share":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(-.333 8)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(14.667 17)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4.333 4) translate(14.667 -1)\"><circle cx=\"4\" cy=\"4\" r=\"4\" stroke=\"none\"/><circle cx=\"4\" cy=\"4\" r=\"3\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m20 24-9-7m9-8-9 6\"/></g>"},"sketch":{"body":"<g fill=\"none\"><path d=\"M21.309 4.002a2 2 0 011.759 1.047l5.417 10a2 2 0 010 1.905l-5.417 10a2 2 0 01-1.759 1.048H10.691a2 2 0 01-1.759-1.047l-5.417-10a2 2 0 010-1.905l5.417-10a2 2 0 011.759-1.048Z\"/><path fill=\"currentColor\" d=\"m10.691 6.002-5.416 10 5.416 10H21.31l5.416-10-5.416-10H10.69m0-2h10.62a2 2 0 011.758 1.047l5.417 10a2 2 0 010 1.906l-5.417 10a2 2 0 01-1.758 1.047H10.69a2 2 0 01-1.758-1.047l-5.417-10a2 2 0 010-1.906l5.417-10a2 2 0 011.758-1.047Z\"/></g>"},"skills":{"body":"<g transform=\"translate(2.667 1.666)\"><rect width=\"6\" height=\"6\" fill=\"currentColor\" rx=\"1\" transform=\"translate(1.333 6.334)\"/><path fill=\"currentColor\" d=\"M21.465 6.853a1 1 0 011.736 0l2.277 3.981a1 1 0 01-.868 1.5h-4.554a1 1 0 01-.868-1.5Zm-8.739-5.055a1 1 0 011.214 0l1.839 1.4a1 1 0 01.348 1.09l-.722 2.346a1 1 0 01-.955.7h-2.233a1 1 0 01-.955-.7l-.723-2.342a1 1 0 01.348-1.09Z\"/><g fill=\"none\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M9.333 27.334a4 4 0 014-4 4 4 0 014 4\"/><g stroke-miterlimit=\"10\"><path d=\"M9.333 18.333a4 4 0 111.172 2.828 3.992 3.992 0 01-1.172-2.828Z\"/><path fill=\"currentColor\" d=\"M13.333 16.333a1.996 1.996 0 00-2 2c0 .532.208 1.034.586 1.414.38.378.882.586 1.414.586.533 0 1.035-.209 1.414-.586.378-.378.586-.88.586-1.414 0-.535-.208-1.038-.584-1.414a1.993 1.993 0 00-1.416-.586m0-2c1.106 0 2.102.446 2.828 1.17a3.984 3.984 0 011.172 2.83 3.98 3.98 0 01-1.172 2.828 3.987 3.987 0 01-2.828 1.172 3.988 3.988 0 01-2.828-1.172 3.988 3.988 0 01-1.172-2.828c0-1.106.448-2.104 1.172-2.83a3.986 3.986 0 012.828-1.17Z\"/></g></g></g>"},"skip-back":{"body":"<g fill=\"none\"><path d=\"M6.186 18.752a2 2 0 010-3.5l13.85-7.617A2 2 0 0123 9.383v15.234a2 2 0 01-2.964 1.753Z\"/><path fill=\"currentColor\" d=\"M7.15 17 21 24.617V9.383L7.15 17m-2 0a1.98 1.98 0 011.036-1.752l13.85-7.618C21.37 6.897 23 7.861 23 9.383v15.234c0 1.522-1.63 2.486-2.964 1.753l-13.85-7.618A1.98 1.98 0 015.15 17Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M26 8v18\"/></g>"},"skip-forward":{"body":"<g fill=\"none\"><path d=\"M25.814 14.248a2 2 0 010 3.5l-13.85 7.617A2 2 0 019 23.617V8.383a2 2 0 012.964-1.753Z\"/><path fill=\"currentColor\" d=\"M24.85 16 11 8.383v15.234L24.85 16m2 0a1.98 1.98 0 01-1.036 1.752l-13.85 7.618C10.631 26.103 9 25.139 9 23.617V8.383c0-1.522 1.63-2.486 2.964-1.753l13.85 7.618A1.98 1.98 0 0126.85 16Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M6 6.999v18\"/></g>"},"sms":{"body":"<g fill=\"none\"><g stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(2 6.001)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 13h16M8 17.001h10\"/><path d=\"M8 23h5l-5 5Z\"/><path fill=\"currentColor\" d=\"M8 23h5l-5 5v-5Z\"/></g>"},"sso-access":{"body":"<g fill=\"none\"><path d=\"M24 24H8.757a3.207 3.207 0 01-.322-.017c-.144.011-.29.017-.437.017a6 6 0 01-1.951-11.676 5 5 0 016.516-4.073A8 8 0 0126.997 12.8a6 6 0 01-2.692 11.192c-.073 0-.146.008-.221.008Z\"/><path fill=\"currentColor\" d=\"m24.083 21.999.088-.003.033-.002a3.995 3.995 0 003.798-3.993 4.018 4.018 0 00-2.006-3.47l-.972-.561-.027-1.121a5.968 5.968 0 00-1.807-4.143A5.96 5.96 0 0019 6.998a5.95 5.95 0 00-4.83 2.44l-.857 1.163-1.374-.45a3.005 3.005 0 00-3.91 2.44l-.166 1.222-1.165.4a4.003 4.003 0 001.587 7.774l.176-.012.175.017c.042.005.083.007.12.007h15.327m0 2H8.757c-.109 0-.216-.006-.322-.017A5.998 5.998 0 012 18.001a6.007 6.007 0 014.047-5.678 4.998 4.998 0 016.516-4.073A7.987 7.987 0 0119 4.998a8 8 0 017.996 7.8A6.002 6.002 0 0124.083 24Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 14v5\"/><g transform=\"translate(14 13)\"><circle cx=\"2\" cy=\"2\" r=\"2\" stroke=\"none\"/><circle cx=\"2\" cy=\"2\" r=\"1\"/></g></g>"},"star":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z\"/>"},"star-active":{"body":"<path fill=\"currentColor\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m16 3 3.069 9.931H29l-8.034 6.138L24.034 29 16 22.862 7.966 29l3.069-9.931L3 12.931h9.931Z\"/>"},"success":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" transform=\"translate(3.001 4.005)\"><rect width=\"6\" height=\"14\" rx=\"2.005\" transform=\"translate(.999 9.995)\"/><path stroke-linecap=\"round\" d=\"M23.359 12.575h-1.226l.1-.678h1.13a1.678 1.678 0 000-3.354h-2.719l-3.951-.083s.855-6.084-2.775-8.125C11.588-.842 11.154 1.4 11.154 1.4v4.237L9.769 7.049s-2.771 2.62-2.771 4.264v9.857a2.622 2.622 0 002.772 2.82h11.333a1.678 1.678 0 000-3.354h-.111l.1-.679h1.143a1.677 1.677 0 000-3.353h-.668l.1-.679h1.7a1.678 1.678 0 000-3.354Z\"/></g>"},"sun":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(8 8)\"><circle cx=\"8\" cy=\"8\" r=\"8\" stroke=\"none\"/><circle cx=\"8\" cy=\"8\" r=\"7\"/></g><path stroke-linecap=\"round\" d=\"M16 5V3m0 26v-2m11-11h2M3 16h2m20 9 1 1M6 6l1 1m18 0 1-1M6 26l1-1\"/></g>"},"sunrise":{"body":"<g fill=\"none\" stroke-miterlimit=\"10\"><path d=\"M8 23a8 8 0 018-8 8 8 0 018 8Z\"/><path fill=\"currentColor\" d=\"M21.658 21A6.01 6.01 0 0016 17a6.01 6.01 0 00-5.657 4h11.315m2.343 2H8a8 8 0 018-8 8 8 0 018 8Z\"/><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M16 11.999v-3m-13 13h26m-23-10 2 2m16 0 2-2\"/></g>"},"support":{"body":"<g stroke=\"currentColor\" stroke-linejoin=\"round\" transform=\"translate(5.333 4.335)\"><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M3.667 6.666c0-3.314 3.134-6 7-6s7 2.686 7 6\"/><g fill=\"none\" stroke-width=\"2\" transform=\"translate(-.333 6.666)\"><rect width=\"8\" height=\"10\" rx=\"2.004\" stroke=\"none\"/><rect width=\"6\" height=\"8\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><g fill=\"none\" stroke-width=\"2\" transform=\"translate(13.667 6.666)\"><rect width=\"8\" height=\"10\" rx=\"2.004\" stroke=\"none\"/><rect width=\"6\" height=\"8\" x=\"1\" y=\"1\" rx=\"1.004\"/></g><path fill=\"none\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M17.667 15.666v2.4a3.5 3.5 0 01-3.363 3.6h-.633\"/><circle cx=\"2\" cy=\"2\" r=\"2\" fill=\"currentColor\" stroke-linecap=\"round\" transform=\"translate(9.667 19.666)\"/></g>"},"survey":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M27 3.193H12c-1.5 0-2 .5-2 2v8c0 1.5.5 2 2 2h2l.465 2.389c.261 1 1.242-.071 1.535-.389l2-2h9c1.5 0 2-.5 2-2v-8c0-1.503-.5-2-2-2Z\"/><path fill=\"currentColor\" d=\"M12 5.193v8h2a2 2 0 011.873 1.299l.713-.713A2 2 0 0118 13.193h9v-8H12m0-2h15c1.496 0 2 .497 2 2v8c0 1.5-.504 2-2 2h-9l-2 2c-.293.318-1.274 1.393-1.535.39L14 15.192h-2c-1.5 0-2-.504-2-2v-8c0-1.504.5-2 2-2Z\"/></g><path fill=\"currentColor\" d=\"M17.982 8.112a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Zm6 0a.185.185 0 00-.073-.079.263.263 0 00-.1-.033l-.632-.1a.3.3 0 01-.127-.06.317.317 0 01-.094-.108l-.282-.6a.277.277 0 00-.068-.093.168.168 0 00-.11-.043.168.168 0 00-.11.043.277.277 0 00-.068.093l-.282.6a.317.317 0 01-.094.108.3.3 0 01-.127.06l-.632.1a.243.243 0 00-.125.054.178.178 0 00-.045.059.175.175 0 00-.017.075.206.206 0 00.023.092.292.292 0 00.054.074l.457.466a.308.308 0 01.061.1.391.391 0 01.025.132.217.217 0 010 .035l-.108.657a.322.322 0 000 .055.215.215 0 00.043.137.162.162 0 00.06.046.168.168 0 00.07.015.248.248 0 00.119-.034l.565-.31a.3.3 0 01.137-.03.3.3 0 01.137.03l.565.31a.247.247 0 00.119.034.169.169 0 00.071-.015.169.169 0 00.08-.078.233.233 0 00.023-.1.336.336 0 000-.055l-.108-.658a.214.214 0 010-.035.393.393 0 01.026-.132.3.3 0 01.062-.1l.457-.466a.293.293 0 00.054-.074.206.206 0 00.023-.092.178.178 0 00-.029-.08Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M4.001 30a4 4 0 014-4 4 4 0 014 4\"/><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 17)\"><rect width=\"8\" height=\"8\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"3\"/></g>"},"table":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2 6)\"><rect width=\"28\" height=\"20\" rx=\"2\" stroke=\"none\"/><rect width=\"26\" height=\"18\" x=\"1\" y=\"1\" rx=\"1\"/></g><path d=\"M11 6v20M3 13h26M3 19h26\"/></g>"},"tematic-channels":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M16 4v24m6 0H10\"/><path d=\"M16 6.999h8.816L27 9.291l-2.184 2.708H16ZM15.999 16H7.183l-2.184-2.292L7.183 11h8.816Z\"/></g>"},"test":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(4 4)\"><rect width=\"10\" height=\"10\" rx=\"1.996\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\".996\"/></g><g stroke-miterlimit=\"10\" transform=\"translate(4 18)\"><rect width=\"10\" height=\"10\" rx=\"1.996\" stroke=\"none\"/><rect width=\"8\" height=\"8\" x=\"1\" y=\"1\" rx=\".996\"/></g><path stroke-linejoin=\"round\" d=\"M22.657 5.008 18.19 21.704l1.196 5.202 3.634-3.91L27.487 6.3Z\"/></g>"},"text-body":{"body":"<path fill=\"currentColor\" d=\"M4.363 23.427h4.06V9.565L4 10.888V8.124l7.434-2.122v17.425H15v2.575H4.363Zm12.999 0h4.06V9.565l-4.423 1.323V8.124l7.434-2.122v17.425h3.566v2.575H17.362Z\"/>"},"text-edit":{"body":"<path fill=\"currentColor\" d=\"M11.645 19.27H7.362l-.795 2.731H4l3.721-12h3.565l3.714 12h-2.567Zm-.522-1.8-.758-2.614c-.288-1.013-.553-1.945-.866-3.121-.3 1.175-.577 2.108-.858 3.121l-.756 2.614Zm12.878-2.977v7.358h-1.708l-.208-.883-1.351.586a4.976 4.976 0 01-1.961.448c-1.692 0-2.773-1.143-2.773-3.135v-.177c0-1.85 1.135-2.917 3.676-2.917h2.072V14.23c0-.8-.278-1.253-1.151-1.253h-.749c-.742 0-1.143.246-1.143.948v.772h-2.287v-.632c0-1.957 1.274-3.059 3.459-3.059h.68c2.131-.004 3.444.937 3.444 3.487Zm-2.253 3.009h-2.125c-.889 0-1.3.272-1.3.942v.634c0 .67.331 1 .9 1a2.62 2.62 0 001.027-.23l1.5-.467ZM26 4h2v24h-2Z\"/>"},"text-style":{"body":"<path fill=\"currentColor\" d=\"M13.731 20.358H8.28L7.268 24H4L8.736 8h4.538L18 24h-3.265Zm-.666-2.4-.965-3.486c-.367-1.351-.7-2.594-1.1-4.161-.387 1.567-.734 2.81-1.092 4.161l-.963 3.486Zm14.932-2.832v8.695H26.08l-.234-1.043-1.52.692a5.358 5.358 0 01-2.207.53c-1.9 0-3.118-1.351-3.118-3.7v-.21c0-2.184 1.277-3.447 4.135-3.447h2.328v-1.828c0-.951-.312-1.482-1.294-1.482h-.843c-.835 0-1.286.291-1.286 1.121v.911H19.47v-.749c0-2.314 1.434-3.616 3.892-3.616h.763c2.399 0 3.872 1.113 3.872 4.126Zm-2.537 3.557h-2.385c-1 0-1.468.32-1.468 1.112v.751c0 .792.373 1.183 1.007 1.183a2.821 2.821 0 001.155-.271l1.685-.55Z\"/>"},"time":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g stroke-miterlimit=\"10\" transform=\"translate(2 2.001)\"><circle cx=\"14\" cy=\"14\" r=\"14\" stroke=\"none\"/><circle cx=\"14\" cy=\"14\" r=\"13\"/></g><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m19.001 13-3 3 5 5\"/></g>"},"toilet-piper":{"body":"<g transform=\"translate(4 5.333)\"><ellipse cx=\"4\" cy=\"9\" fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" rx=\"4\" ry=\"9\" transform=\"translate(17 -2.334)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M21-2.333H4.4Q0-2.333 0 2.255v21.412h17.067V8.374\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M13 13.666h1m-6 0h1m-6 0h1\"/><ellipse cx=\"1\" cy=\"2\" fill=\"currentColor\" rx=\"1\" ry=\"2\" transform=\"translate(20 4.666)\"/></g>"},"training-points":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><g transform=\"translate(2.667 4) translate(-.667 4)\"><circle cx=\"11\" cy=\"11\" r=\"11\" stroke=\"none\"/><circle cx=\"11\" cy=\"11\" r=\"10\"/></g><g transform=\"translate(2.667 4) translate(4.333 9)\"><circle cx=\"6\" cy=\"6\" r=\"6\" stroke=\"none\"/><circle cx=\"6\" cy=\"6\" r=\"5\"/></g><path stroke-linecap=\"round\" d=\"M13 19 23 9\"/><path stroke-linejoin=\"round\" d=\"m26.001 3-3 3v3h3l3-3Z\"/></g>"},"trash":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path d=\"M7 4.999h18v21a3 3 0 01-3 3H10a3 3 0 01-3-3v-21Z\" stroke=\"none\"/><path d=\"M9 5.999h14a1 1 0 011 1v19a2 2 0 01-2 2H10a2 2 0 01-2-2v-19a1 1 0 011-1Z\"/><path stroke-linecap=\"round\" d=\"M5 6h22\"/><path d=\"M18.999 6h-6V4a1 1 0 011-1h4a1 1 0 011 1v2Z\" stroke=\"none\"/><path d=\"M17.999 5h-4V4h4v1Z\"/><path stroke-linecap=\"round\" d=\"M13 13v8m6-8v8\"/></g>"},"underline":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M8 5v10c0 5.1 3.583 8 8 8s8-2.9 8-8V5M6 27h20\"/>"},"undo":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\"><path stroke-miterlimit=\"10\" d=\"M6 12.001h15c4.37 0 7 2.68 7 5.984v.016c0 3.305-2.629 6-7 6h-5.1\"/><path stroke-linejoin=\"round\" d=\"m10 6.001-6 6 6 6\"/></g>"},"unlock":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"m10.614 13-1.277-1.277a4.48 4.48 0 010-6.385h0a4.479 4.479 0 016.386 0l1.273 1.276\"/><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M16 19v4\"/><g stroke-miterlimit=\"10\" transform=\"translate(4 12.001)\"><rect width=\"24\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"22\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g></g>"},"upload":{"body":"<path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"m19.999 9-4-4-4 4M16 5v14m12 4.001v4H4v-4\"/>"},"user":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(8 5.333)\"><rect width=\"14\" height=\"14\" rx=\"7\" transform=\"translate(1 -.334)\"/><path stroke-linejoin=\"round\" d=\"M-1 24.666a9 9 0 019-9 9 9 0 019 9\"/></g>"},"user-add":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" stroke-miterlimit=\"10\" d=\"M19 8h10m-5-5v10\"/><g transform=\"translate(4 7)\"><rect width=\"14\" height=\"14\" rx=\"7\" stroke=\"none\"/><rect width=\"12\" height=\"12\" x=\"1\" y=\"1\" rx=\"6\"/></g><path stroke-linejoin=\"round\" d=\"M3 30a8 8 0 1116 0\"/></g>"},"user-badge":{"body":"<path fill=\"currentColor\" d=\"m16.874 4.154 2.151-1.828a1.365 1.365 0 012.212.752l.713 2.8a1.394 1.394 0 001.413 1.075l2.768-.157a1.439 1.439 0 011.369 1.97l-1 2.7a1.485 1.485 0 00.54 1.738l2.327 1.575a1.486 1.486 0 010 2.433l-2.326 1.584a1.485 1.485 0 00-.54 1.738l1 2.7a1.439 1.439 0 01-1.368 1.969l-2.768-.157a1.394 1.394 0 00-1.413 1.075l-.713 2.8a1.365 1.365 0 01-2.212.752l-2.152-1.828a1.337 1.337 0 00-1.747 0l-2.153 1.831a1.365 1.365 0 01-2.212-.752l-.713-2.8a1.394 1.394 0 00-1.413-1.075l-2.768.157a1.439 1.439 0 01-1.369-1.97l1-2.7a1.485 1.485 0 00-.54-1.738l-2.327-1.575a1.486 1.486 0 010-2.433l2.327-1.575a1.485 1.485 0 00.54-1.738l-1-2.7a1.439 1.439 0 011.369-1.981l2.768.157a1.394 1.394 0 001.413-1.074l.713-2.8a1.365 1.365 0 012.212-.752l2.152 1.828a1.337 1.337 0 001.747-.001Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 9a4 4 0 11-4 4 4 4 0 014-4Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M11 23.001a5 5 0 015-5 5 5 0 015 5\"/>"},"video-off":{"body":"<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m28 19.886-5.819-3.888 5.82-3.887v7.775Z\"/><path d=\"m27 13.982-3.019 2.016 3.02 2.017v-4.033m1.134-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><path fill=\"currentColor\" d=\"M20 22.998h-6.759l2-2H20v-4.76l2-2v6.76a2 2 0 01-2 2Zm-14.983-.256A2 2 0 014 20.998v-10a2 2 0 012-2h12.759l-2 2H6v10h.759l-1.741 1.74Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M4 28 28 4\"/>"},"video-on":{"body":"<g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m28 19.887-5.819-3.888 5.82-3.887v7.775Z\"/><path d=\"m27 13.983-3.019 2.016 3.02 2.017v-4.033m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 9.001)\"><rect width=\"18\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g>"},"video-rec":{"body":"<g transform=\"translate(7.709 9.695)\"><g fill=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m20.291 10.19-5.819-3.887 5.82-3.887v7.775Z\"/><path d=\"m19.291 4.287-3.019 2.016 3.02 2.017V4.287m1.135-2.984c.447 0 .864.332.864.807v8.387c0 .654-.79 1.036-1.36.655l-6.28-4.194a.774.774 0 010-1.309l6.28-4.195a.89.89 0 01.496-.15Z\"/></g><g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(-3.709 -.695)\"><rect width=\"18\" height=\"14\" rx=\"2\" stroke=\"none\"/><rect width=\"16\" height=\"12\" x=\"1\" y=\"1\" rx=\"1\"/></g><circle cx=\"2.5\" cy=\"2.5\" r=\"2.5\" fill=\"currentColor\" transform=\"translate(-4.709 -1.695)\"/></g>"},"view":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" transform=\"translate(4 5.667)\"><path d=\"M21 19.334H7a3 3 0 01-3-3v-1h13a3 3 0 003-3v-7h1a3 3 0 013 3v8a3 3 0 01-3 3Z\"/><rect width=\"20\" height=\"14\" rx=\"3\" transform=\"translate(0 1.334)\"/></g>"},"view-card":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 9.999)\"><rect width=\"16\" height=\"12\" rx=\"2\" stroke=\"none\"/><rect width=\"14\" height=\"10\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(20 13.999)\"><rect width=\"10\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"8\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g></g>"},"view-list":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(2 9) translate(0 -2)\"><rect width=\"8\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><g transform=\"translate(2 9) translate(0 8)\"><rect width=\"8\" height=\"8\" rx=\"2\" stroke=\"none\"/><rect width=\"6\" height=\"6\" x=\"1\" y=\"1\" rx=\"1\"/></g><path stroke-linecap=\"round\" d=\"M13 13h8m-8 10h8M13 9h16M13 19h16\"/></g>"},"voice-off":{"body":"<path fill=\"none\" d=\"M.001 0h32v32h-32z\"/><path fill=\"currentColor\" d=\"m16.253 19.99 3.737-3.736a4 4 0 01-3.736 3.738Zm-4.251-4.234V6a4 4 0 118 0v1.76l-2 2V6a2 2 0 00-4 0v7.758l-2 2Z\"/><path fill=\"currentColor\" d=\"M16.001 24a8.711 8.711 0 01-3.174-.588l1.6-1.594a6.866 6.866 0 001.578.182c3.309 0 6-2.334 6-5.205V15a1 1 0 112 0v1.795a6.807 6.807 0 01-2.389 5.135A8.42 8.42 0 0116.001 24Zm-7.52-4.725a6.559 6.559 0 01-.482-2.479V15a1 1 0 112 0v1.795a4.508 4.508 0 00.086.879l-1.6 1.6Z\"/><path fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M16.001 23v6\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M12.001 29h8\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"m4.001 28 24-24\"/>","width":32.001},"voice-on":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><g transform=\"translate(12 1.999)\"><rect width=\"8\" height=\"18\" rx=\"4\" stroke=\"none\"/><rect width=\"6\" height=\"16\" x=\"1\" y=\"1\" rx=\"3\"/></g><path stroke-linecap=\"round\" d=\"M22.999 15v1.8c0 3.426-3.134 6.2-7 6.2h0c-3.866 0-7-2.777-7-6.2V15\"/><path d=\"M16 23v6\"/><path stroke-linecap=\"round\" d=\"M12 28.999h8\"/></g>"},"volume-down":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M26.003 13.001a5.075 5.075 0 010 6\"/><g stroke-linejoin=\"round\"><path d=\"M3.999 19.999a2.193 2.193 0 002 2h7a1.421 1.421 0 011 .35l5.025 3.254a1.828 1.828 0 002.975-1.321V7.717a1.828 1.828 0 00-2.975-1.321l-5.025 3.3a1.383 1.383 0 01-1 .3h-7a2.193 2.193 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M19.999 23.851V8.15l-4.844 3.185c-.787.585-1.53.665-2.156.665H6.102a.51.51 0 00-.103.107v7.786a.51.51 0 00.103.107H13c.826 0 1.494.22 2.152.713L20 23.852M20.173 26c-.395 0-.798-.124-1.149-.397L14 22.349c-.326-.255-.576-.35-1-.35H6c-1.003 0-2-1.053-2-2v-8c0-.946.997-2 2-2h7c.424 0 .674-.043 1-.298l5.025-3.305C20.21 5.471 22 6.266 22 7.717v16.565C22 25.303 21.113 26 20.174 26Z\"/></g></g>"},"volume-off":{"body":"<path fill=\"none\" d=\"M0 0h32v32H0z\"/><g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"m21 19 6-6m-6 0 6 6\"/><g stroke-linejoin=\"round\"><path d=\"M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z\"/></g></g>"},"volume-up":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M22.001 11.999a8.593 8.593 0 010 8m4-8.999a13.111 13.111 0 010 10\"/><g stroke-linejoin=\"round\"><path d=\"M4 18.999a2.177 2.177 0 002 2h5a2.085 2.085 0 011 .5l3.454 3.207c.921.684 2.546.114 2.546-.958V8.262c0-1.073-1.624-1.652-2.546-.968L12 10.5a2.088 2.088 0 01-1 .5H6a2.151 2.151 0 00-2 2Z\"/><path fill=\"currentColor\" d=\"M16 22.48V9.517l-2.64 2.45a1.85 1.85 0 01-.166.139c-.42.312-1.2.893-2.194.893H6.085a.403.403 0 00-.085.085v5.819a.468.468 0 00.098.096H11c.996 0 1.775.58 2.194.892a2 2 0 01.167.139L16 22.48m.41 2.52c-.34 0-.68-.093-.956-.298L12 21.495c-.254-.188-.67-.496-1-.496H6c-.97 0-2-1-2-2v-6c0-1 1-2 2-2h5c.33 0 .746-.31 1-.498l3.454-3.206C16.376 6.61 18 7.19 18 8.262v15.482c0 .751-.797 1.255-1.59 1.255Z\"/></g></g>"},"warning":{"body":"<g fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M16 11v6m0 6v-2\"/><path d=\"M14.008 5.111a2.343 2.343 0 013.985 0l5.848 9.78 5.849 9.779a2.223 2.223 0 01-1.992 3.332H4.3a2.223 2.223 0 01-1.992-3.332l5.849-9.779Z\"/><path fill=\"currentColor\" d=\"M16 6.001c-.089 0-.208.024-.276.137L4.028 25.695c-.022.037-.05.083-.003.165.037.065.115.142.279.142h23.392c.164 0 .242-.077.279-.142.046-.082.019-.128-.003-.164L16.277 6.138C16.207 6.025 16.087 6 16 6m0-2c.775 0 1.55.37 1.992 1.11l11.697 19.56c.885 1.481-.222 3.332-1.993 3.332H4.304c-1.77 0-2.878-1.85-1.993-3.332L14.008 5.11C14.45 4.37 15.225 4 16 4Z\"/></g>"},"webinar":{"body":"<g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M3.001 19V5.814c0-1.992.2-2.811 2-2.811h21.11c1.8 0 2.889 1.208 2.889 3.2v12.8\"/><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M6 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M6 15.999a2 2 0 11.586 1.414A2 2 0 016 15.999Z\"/><path fill=\"currentColor\" d=\"M8 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414A1.994 1.994 0 018 17.999a1.994 1.994 0 01-1.414-.586A1.996 1.996 0 018 13.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M10 29.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M10 24.999a2 2 0 11.586 1.414A2 2 0 0110 24.999Z\"/><path fill=\"currentColor\" d=\"M12 22.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0112 22.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M18 29.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M18 24.999a2 2 0 11.586 1.414A2 2 0 0118 24.999Z\"/><path fill=\"currentColor\" d=\"M20 22.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0120 22.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M14 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M14 15.999a2 2 0 11.586 1.414A2 2 0 0114 15.999Z\"/><path fill=\"currentColor\" d=\"M16 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0116 13.999Z\"/></g><path stroke=\"currentColor\" stroke-width=\"2\" d=\"M22 20.999a2 2 0 012-2 2 2 0 012 2\"/><g stroke-miterlimit=\"10\"><path d=\"M22 15.999a2 2 0 11.586 1.414A2 2 0 0122 15.999Z\"/><path fill=\"currentColor\" d=\"M24 13.999c.553 0 1.051.223 1.414.585.363.363.586.862.586 1.415a1.99 1.99 0 01-.586 1.414 1.994 1.994 0 01-1.414.586 1.994 1.994 0 01-1.414-.586A1.996 1.996 0 0124 13.999Z\"/></g></g>"},"whiteboard":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"m4 29 7-9m5 9v-9m12 9-7-9\"/><g stroke-miterlimit=\"10\" transform=\"translate(2 3)\"><rect width=\"28\" height=\"18\" rx=\"3\" stroke=\"none\"/><rect width=\"26\" height=\"16\" x=\"1\" y=\"1\" rx=\"2\"/></g><path d=\"M9 13.769c1.995-1.507 4.428-4.772 8.4-4.772-1.689 5.643 3.537 7.475 5.6 4.772\"/></g>"},"wine":{"body":"<g fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\"><path stroke-linecap=\"round\" d=\"M23.226 21.973c4.09-1.922 2.45-9.973 2.45-9.973h-7.351s-1.64 8.05 2.45 9.973a2.123 2.123 0 00.539.02h1.411a1.82 1.82 0 00.501-.02ZM22 23v5m3 0h-6\"/><path d=\"M7.266 29a1.624 1.624 0 01-.869-.4 1.335 1.335 0 01-.4-.933C6.02 13.576 6.006 13 5.997 13l2-4V3h3.994v6l2 4c.014.012-.021.576 0 14.667a1.335 1.335 0 01-.4.933 1.133 1.133 0 01-.933.4Z\"/><path d=\"M6 16.001h4v8H6z\"/></g>"},"zip":{"body":"<path fill=\"currentColor\" d=\"M25.001 23.999a1 1 0 101 1 1 1 0 00-1-1Z\"/><path fill=\"currentColor\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M4 6v6m6-6v6m6-6v6\"/><g fill=\"none\" stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\" transform=\"translate(21 5)\"><rect width=\"8\" height=\"8\" rx=\"1\" stroke=\"none\"/><path d=\"M1 1h6v6H1z\"/></g><path fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M24.883 29c-4.239 0-3.876-5-3.876-5l.985-7h6l1 7s.349 5-3.89 5Z\"/>"},"zoom-in":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"none\" stroke-linecap=\"round\" d=\"M9 12h6m-3-3v6\"/><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g>"},"zoom-out":{"body":"<g stroke=\"currentColor\" stroke-miterlimit=\"10\" stroke-width=\"2\"><path fill=\"currentColor\" stroke-linecap=\"round\" d=\"m18 18 10 10\"/><g fill=\"none\" transform=\"translate(3 3)\"><circle cx=\"9\" cy=\"9\" r=\"9\" stroke=\"none\"/><circle cx=\"9\" cy=\"9\" r=\"8\"/></g></g><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-width=\"2\" d=\"M9 11.999h6\"/>"}},"width":32,"height":32}