@scalar/api-reference 0.2.0 → 0.2.1

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 (466) hide show
  1. package/dist/components/ApiReference.vue.d.ts.map +1 -1
  2. package/dist/components/Content/ReferenceEndpoint/ExampleRequest.vue.d.ts.map +1 -1
  3. package/dist/components/Content/ReferenceEndpoint/ExampleResponses.vue.d.ts.map +1 -1
  4. package/dist/components/HelpfulLink.vue.d.ts +20 -0
  5. package/dist/components/HelpfulLink.vue.d.ts.map +1 -0
  6. package/dist/components/SearchModal.vue.d.ts.map +1 -1
  7. package/dist/components/SimpleTable/SimpleCell.vue.d.ts +40 -0
  8. package/dist/components/SimpleTable/SimpleCell.vue.d.ts.map +1 -0
  9. package/dist/components/SimpleTable/SimpleHeader.vue.d.ts +10 -0
  10. package/dist/components/SimpleTable/SimpleHeader.vue.d.ts.map +1 -0
  11. package/dist/components/SimpleTable/SimpleRow.vue.d.ts +10 -0
  12. package/dist/components/SimpleTable/SimpleRow.vue.d.ts.map +1 -0
  13. package/dist/components/SimpleTable/SimpleTable.vue.d.ts +10 -0
  14. package/dist/components/SimpleTable/SimpleTable.vue.d.ts.map +1 -0
  15. package/dist/components/SimpleTable/index.d.ts +5 -0
  16. package/dist/components/SimpleTable/index.d.ts.map +1 -0
  17. package/dist/index.js +32962 -37640
  18. package/package.json +10 -10
  19. package/src/components/ApiClientModal.vue +205 -0
  20. package/src/components/ApiReference.vue +754 -0
  21. package/src/components/Card/Card.vue +12 -0
  22. package/src/components/Card/CardContent.vue +45 -0
  23. package/src/components/Card/CardFooter.vue +13 -0
  24. package/src/components/Card/CardHeader.vue +37 -0
  25. package/src/components/Card/CardTab.vue +32 -0
  26. package/src/components/Card/CardTabHeader.vue +32 -0
  27. package/src/components/Card/index.ts +6 -0
  28. package/src/components/Content/Content.vue +145 -0
  29. package/src/components/Content/Introduction/BaseUrl.vue +32 -0
  30. package/src/components/Content/Introduction/Introduction.vue +141 -0
  31. package/src/components/Content/Introduction/LanguageSelector.vue +361 -0
  32. package/src/components/Content/Introduction/index.ts +1 -0
  33. package/src/components/Content/MarkdownRenderer.vue +174 -0
  34. package/src/components/Content/ReferenceEndpoint/Copy.vue +100 -0
  35. package/src/components/Content/ReferenceEndpoint/ExampleRequest.vue +317 -0
  36. package/src/components/Content/ReferenceEndpoint/ExampleResponseTab.vue +22 -0
  37. package/src/components/Content/ReferenceEndpoint/ExampleResponses.vue +168 -0
  38. package/src/components/Content/ReferenceEndpoint/ParameterItem.vue +26 -0
  39. package/src/components/Content/ReferenceEndpoint/Parameters.vue +23 -0
  40. package/src/components/Content/ReferenceEndpoint/ReferenceEndpoint.vue +29 -0
  41. package/src/components/Content/ReferenceEndpoint/RequestBody.vue +125 -0
  42. package/src/components/Content/ReferenceEndpoint/RequestBodyProperties.vue +54 -0
  43. package/src/components/Content/ReferenceEndpoint/RequestBodyPropertiesChild.vue +39 -0
  44. package/src/components/Content/ReferenceEndpoint/index.ts +1 -0
  45. package/src/components/Content/ReferenceTag.vue +99 -0
  46. package/src/components/Content/Spinner.vue +51 -0
  47. package/src/components/Content/index.ts +1 -0
  48. package/src/components/FindAnythingButton.vue +76 -0
  49. package/src/components/FlowButton.vue +184 -0
  50. package/src/components/FlowIconButton.vue +25 -0
  51. package/src/components/FlowLoader.vue +207 -0
  52. package/src/components/FlowModal.vue +133 -0
  53. package/src/components/HelpfulLink.vue +19 -0
  54. package/src/components/Icon/FlowIcon.vue +19 -0
  55. package/src/components/Icon/Icon.vue +23 -0
  56. package/src/components/Icon/SvgRenderer.ts +66 -0
  57. package/src/components/Icon/brand/brand-adobe.svg +1 -0
  58. package/src/components/Icon/brand/brand-amazon.svg +1 -0
  59. package/src/components/Icon/brand/brand-browser-firefox.svg +5 -0
  60. package/src/components/Icon/brand/brand-browser-googlechrome.svg +5 -0
  61. package/src/components/Icon/brand/brand-creative-commons.svg +1 -0
  62. package/src/components/Icon/brand/brand-ecommerce-etsy.svg +1 -0
  63. package/src/components/Icon/brand/brand-ecommerce-patreon.svg +1 -0
  64. package/src/components/Icon/brand/brand-ecommerce-shopify.svg +5 -0
  65. package/src/components/Icon/brand/brand-ecommerce-wordpress.svg +1 -0
  66. package/src/components/Icon/brand/brand-gaming-nintendo-switch.svg +5 -0
  67. package/src/components/Icon/brand/brand-gaming-playstation.svg +1 -0
  68. package/src/components/Icon/brand/brand-gaming-xbox-live.svg +5 -0
  69. package/src/components/Icon/brand/brand-google-drive.svg +5 -0
  70. package/src/components/Icon/brand/brand-google-gmail.svg +5 -0
  71. package/src/components/Icon/brand/brand-google.svg +1 -0
  72. package/src/components/Icon/brand/brand-music-itunes.svg +1 -0
  73. package/src/components/Icon/brand/brand-music-soundcloud.svg +1 -0
  74. package/src/components/Icon/brand/brand-music-spotify.svg +1 -0
  75. package/src/components/Icon/brand/brand-office-dropbox.svg +5 -0
  76. package/src/components/Icon/brand/brand-office-slack.svg +5 -0
  77. package/src/components/Icon/brand/brand-office-zoom.svg +1 -0
  78. package/src/components/Icon/brand/brand-payments-alipay.svg +1 -0
  79. package/src/components/Icon/brand/brand-payments-paypal.svg +1 -0
  80. package/src/components/Icon/brand/brand-payments-stripe.svg +1 -0
  81. package/src/components/Icon/brand/brand-platform-android.svg +1 -0
  82. package/src/components/Icon/brand/brand-platform-apple.svg +5 -0
  83. package/src/components/Icon/brand/brand-platform-linux.svg +5 -0
  84. package/src/components/Icon/brand/brand-platform-microsoft-windows.svg +4 -0
  85. package/src/components/Icon/brand/brand-social-chat-discord.svg +5 -0
  86. package/src/components/Icon/brand/brand-social-chat-kuaishou.svg +5 -0
  87. package/src/components/Icon/brand/brand-social-chat-line.svg +5 -0
  88. package/src/components/Icon/brand/brand-social-chat-messenger.svg +5 -0
  89. package/src/components/Icon/brand/brand-social-chat-signal.svg +5 -0
  90. package/src/components/Icon/brand/brand-social-chat-snapchat.svg +5 -0
  91. package/src/components/Icon/brand/brand-social-chat-telegram.svg +5 -0
  92. package/src/components/Icon/brand/brand-social-chat-wechat.svg +5 -0
  93. package/src/components/Icon/brand/brand-social-chat-whatsapp.svg +5 -0
  94. package/src/components/Icon/brand/brand-social-media-deviantart.svg +5 -0
  95. package/src/components/Icon/brand/brand-social-media-dribbble.svg +1 -0
  96. package/src/components/Icon/brand/brand-social-media-facebook.svg +1 -0
  97. package/src/components/Icon/brand/brand-social-media-instagram.svg +5 -0
  98. package/src/components/Icon/brand/brand-social-media-linkedin.svg +5 -0
  99. package/src/components/Icon/brand/brand-social-media-pinterest.svg +5 -0
  100. package/src/components/Icon/brand/brand-social-media-reddit.svg +1 -0
  101. package/src/components/Icon/brand/brand-social-media-sina-weibo.svg +5 -0
  102. package/src/components/Icon/brand/brand-social-media-threads.svg +1 -0
  103. package/src/components/Icon/brand/brand-social-media-tiktok.svg +5 -0
  104. package/src/components/Icon/brand/brand-social-media-tinder.svg +1 -0
  105. package/src/components/Icon/brand/brand-social-media-tumblr.svg +5 -0
  106. package/src/components/Icon/brand/brand-social-media-twitter.svg +5 -0
  107. package/src/components/Icon/brand/brand-software-design-figma.svg +1 -0
  108. package/src/components/Icon/brand/brand-software-development-authy.svg +1 -0
  109. package/src/components/Icon/brand/brand-software-development-digital-ocean.svg +1 -0
  110. package/src/components/Icon/brand/brand-software-development-docker.svg +5 -0
  111. package/src/components/Icon/brand/brand-software-development-github.svg +5 -0
  112. package/src/components/Icon/brand/brand-software-development-jira.svg +1 -0
  113. package/src/components/Icon/brand/brand-software-development-openai.svg +1 -0
  114. package/src/components/Icon/brand/brand-software-development-stackexchange.svg +5 -0
  115. package/src/components/Icon/brand/brand-software-development-stackoverflow.svg +1 -0
  116. package/src/components/Icon/brand/brand-video-netflix.svg +5 -0
  117. package/src/components/Icon/brand/brand-video-twitch.svg +1 -0
  118. package/src/components/Icon/brand/brand-video-vimeo.svg +5 -0
  119. package/src/components/Icon/brand/brand-video-youtube.svg +5 -0
  120. package/src/components/Icon/brand/programming-framework-angular.svg +5 -0
  121. package/src/components/Icon/brand/programming-framework-astro.svg +5 -0
  122. package/src/components/Icon/brand/programming-framework-laravel.svg +1 -0
  123. package/src/components/Icon/brand/programming-framework-nextdotjs.svg +5 -0
  124. package/src/components/Icon/brand/programming-framework-react.svg +5 -0
  125. package/src/components/Icon/brand/programming-framework-vuedotjs.svg +1 -0
  126. package/src/components/Icon/brand/programming-language-c.svg +5 -0
  127. package/src/components/Icon/brand/programming-language-clojure.svg +5 -0
  128. package/src/components/Icon/brand/programming-language-csharp.svg +4 -0
  129. package/src/components/Icon/brand/programming-language-css3.svg +4 -0
  130. package/src/components/Icon/brand/programming-language-go.svg +4 -0
  131. package/src/components/Icon/brand/programming-language-html5.svg +4 -0
  132. package/src/components/Icon/brand/programming-language-java.svg +21 -0
  133. package/src/components/Icon/brand/programming-language-javascript-js.svg +4 -0
  134. package/src/components/Icon/brand/programming-language-json.svg +8 -0
  135. package/src/components/Icon/brand/programming-language-kotlin.svg +3 -0
  136. package/src/components/Icon/brand/programming-language-node.svg +10 -0
  137. package/src/components/Icon/brand/programming-language-objc.svg +6 -0
  138. package/src/components/Icon/brand/programming-language-ocaml.svg +4 -0
  139. package/src/components/Icon/brand/programming-language-php.svg +4 -0
  140. package/src/components/Icon/brand/programming-language-powershell.svg +10 -0
  141. package/src/components/Icon/brand/programming-language-python.svg +4 -0
  142. package/src/components/Icon/brand/programming-language-r.svg +7 -0
  143. package/src/components/Icon/brand/programming-language-ruby.svg +5 -0
  144. package/src/components/Icon/brand/programming-language-scala.svg +5 -0
  145. package/src/components/Icon/brand/programming-language-shell.svg +5 -0
  146. package/src/components/Icon/brand/programming-language-swift.svg +4 -0
  147. package/src/components/Icon/brand/programming-language-typescript.svg +5 -0
  148. package/src/components/Icon/brand/programming-tool-git.svg +1 -0
  149. package/src/components/Icon/brand/programming-tool-tailwindcss.svg +5 -0
  150. package/src/components/Icon/icons/Add.svg +4 -0
  151. package/src/components/Icon/icons/ArrowDown.svg +3 -0
  152. package/src/components/Icon/icons/ArrowLeft.svg +3 -0
  153. package/src/components/Icon/icons/ArrowRight.svg +3 -0
  154. package/src/components/Icon/icons/ArrowUp.svg +3 -0
  155. package/src/components/Icon/icons/Background.svg +8 -0
  156. package/src/components/Icon/icons/CallToAction.svg +5 -0
  157. package/src/components/Icon/icons/CheckMark.svg +3 -0
  158. package/src/components/Icon/icons/ChevronDown.svg +3 -0
  159. package/src/components/Icon/icons/ChevronLeft.svg +3 -0
  160. package/src/components/Icon/icons/ChevronRight.svg +3 -0
  161. package/src/components/Icon/icons/ChevronUp.svg +3 -0
  162. package/src/components/Icon/icons/Close.svg +3 -0
  163. package/src/components/Icon/icons/DarkMode.svg +4 -0
  164. package/src/components/Icon/icons/Delete.svg +5 -0
  165. package/src/components/Icon/icons/Discord.svg +5 -0
  166. package/src/components/Icon/icons/Duplicate.svg +6 -0
  167. package/src/components/Icon/icons/Edit.svg +4 -0
  168. package/src/components/Icon/icons/EditorBold.svg +4 -0
  169. package/src/components/Icon/icons/EditorCode.svg +6 -0
  170. package/src/components/Icon/icons/EditorHighlight.svg +12 -0
  171. package/src/components/Icon/icons/EditorItalic.svg +4 -0
  172. package/src/components/Icon/icons/EditorLink.svg +8 -0
  173. package/src/components/Icon/icons/EditorStrike.svg +4 -0
  174. package/src/components/Icon/icons/EditorUnderline.svg +6 -0
  175. package/src/components/Icon/icons/Ellipses.svg +4 -0
  176. package/src/components/Icon/icons/Error.svg +4 -0
  177. package/src/components/Icon/icons/ExternalLink.svg +7 -0
  178. package/src/components/Icon/icons/Folder.svg +4 -0
  179. package/src/components/Icon/icons/GitHub.svg +4 -0
  180. package/src/components/Icon/icons/Google.svg +4 -0
  181. package/src/components/Icon/icons/Hide.svg +5 -0
  182. package/src/components/Icon/icons/Key.svg +5 -0
  183. package/src/components/Icon/icons/Leave.svg +5 -0
  184. package/src/components/Icon/icons/LightMode.svg +6 -0
  185. package/src/components/Icon/icons/Link.svg +5 -0
  186. package/src/components/Icon/icons/Lock.svg +4 -0
  187. package/src/components/Icon/icons/Logo.svg +4 -0
  188. package/src/components/Icon/icons/LogoAPI.svg +4 -0
  189. package/src/components/Icon/icons/LogoClient.svg +4 -0
  190. package/src/components/Icon/icons/LogoMarket.svg +4 -0
  191. package/src/components/Icon/icons/LogoSwagger.svg +4 -0
  192. package/src/components/Icon/icons/Magic.svg +5 -0
  193. package/src/components/Icon/icons/Menu.svg +3 -0
  194. package/src/components/Icon/icons/Page.svg +8 -0
  195. package/src/components/Icon/icons/Payment.svg +5 -0
  196. package/src/components/Icon/icons/Refresh.svg +4 -0
  197. package/src/components/Icon/icons/Search.svg +4 -0
  198. package/src/components/Icon/icons/Show.svg +5 -0
  199. package/src/components/Icon/icons/Sigma.svg +4 -0
  200. package/src/components/Icon/icons/Trash.svg +5 -0
  201. package/src/components/Icon/icons/index.ts +65 -0
  202. package/src/components/Icon/index.ts +2 -0
  203. package/src/components/Icon/line/arrow-chevron-down.svg +1 -0
  204. package/src/components/Icon/line/arrow-chevron-left.svg +1 -0
  205. package/src/components/Icon/line/arrow-chevron-right.svg +1 -0
  206. package/src/components/Icon/line/arrow-chevron-up.svg +1 -0
  207. package/src/components/Icon/line/arrow-down.svg +1 -0
  208. package/src/components/Icon/line/arrow-left.svg +1 -0
  209. package/src/components/Icon/line/arrow-right.svg +1 -0
  210. package/src/components/Icon/line/arrow-up.svg +1 -0
  211. package/src/components/Icon/line/basic-shape-diamond.svg +1 -0
  212. package/src/components/Icon/line/basic-shape-hexagon.svg +1 -0
  213. package/src/components/Icon/line/basic-shape-primary-circle-ellipse-round.svg +1 -0
  214. package/src/components/Icon/line/basic-shape-primary-square-rectangle.svg +1 -0
  215. package/src/components/Icon/line/basic-shape-shield.svg +1 -0
  216. package/src/components/Icon/line/computer-device-desktop-monitor.svg +1 -0
  217. package/src/components/Icon/line/computer-device-desktop.svg +1 -0
  218. package/src/components/Icon/line/computer-device-laptop.svg +1 -0
  219. package/src/components/Icon/line/computer-device-mobile-phone-android-samsung-back.svg +1 -0
  220. package/src/components/Icon/line/computer-device-mobile-phone-android-samsung.svg +1 -0
  221. package/src/components/Icon/line/computer-device-mobile-phone-iphone-x-back.svg +1 -0
  222. package/src/components/Icon/line/computer-device-mobile-phone-iphone-x.svg +1 -0
  223. package/src/components/Icon/line/computer-device-mobile-tablet-touch.svg +1 -0
  224. package/src/components/Icon/line/computer-device-mobile-tablet.svg +1 -0
  225. package/src/components/Icon/line/computer-device-network-ethernet-cat6.svg +1 -0
  226. package/src/components/Icon/line/computer-device-network-lan-www.svg +1 -0
  227. package/src/components/Icon/line/computer-device-network-wifi-connection.svg +1 -0
  228. package/src/components/Icon/line/computer-device-network-wifi-router.svg +1 -0
  229. package/src/components/Icon/line/computer-keyboard-alt.svg +1 -0
  230. package/src/components/Icon/line/computer-keyboard-command-cmd-control-ctrl.svg +1 -0
  231. package/src/components/Icon/line/computer-keyboard-option.svg +1 -0
  232. package/src/components/Icon/line/computer-keyboard-shift.svg +1 -0
  233. package/src/components/Icon/line/ecology-science-erlenmeyer-flask.svg +1 -0
  234. package/src/components/Icon/line/entertainment-control-button-circle-left-arrow-rewind.svg +1 -0
  235. package/src/components/Icon/line/entertainment-control-button-circle-pause.svg +1 -0
  236. package/src/components/Icon/line/entertainment-control-button-circle-right-arrow-fast-forward.svg +1 -0
  237. package/src/components/Icon/line/entertainment-control-button-circle-stop-square.svg +1 -0
  238. package/src/components/Icon/line/entertainment-control-button-play-circle.svg +1 -0
  239. package/src/components/Icon/line/entertainment-party-popper-confetti.svg +1 -0
  240. package/src/components/Icon/line/image-flash-lightning.svg +1 -0
  241. package/src/components/Icon/line/image-photo-frame.svg +1 -0
  242. package/src/components/Icon/line/image-picture-flower.svg +1 -0
  243. package/src/components/Icon/line/interface-add.svg +1 -0
  244. package/src/components/Icon/line/interface-alert-error-exclamation-block-square.svg +1 -0
  245. package/src/components/Icon/line/interface-alert-error-x-block-square.svg +1 -0
  246. package/src/components/Icon/line/interface-alert-exclamation-diamond.svg +1 -0
  247. package/src/components/Icon/line/interface-alert-exclamation-triangle-warning.svg +1 -0
  248. package/src/components/Icon/line/interface-alert-information-circle.svg +1 -0
  249. package/src/components/Icon/line/interface-award-crown.svg +1 -0
  250. package/src/components/Icon/line/interface-bookmark-tag.svg +1 -0
  251. package/src/components/Icon/line/interface-bookmark.svg +1 -0
  252. package/src/components/Icon/line/interface-calendar-date-one.svg +1 -0
  253. package/src/components/Icon/line/interface-close.svg +1 -0
  254. package/src/components/Icon/line/interface-content-book-open-pages.svg +1 -0
  255. package/src/components/Icon/line/interface-content-book-page.svg +1 -0
  256. package/src/components/Icon/line/interface-content-file.svg +8 -0
  257. package/src/components/Icon/line/interface-content-folder.svg +1 -0
  258. package/src/components/Icon/line/interface-copy-clipboard.svg +1 -0
  259. package/src/components/Icon/line/interface-delete-bin-trash.svg +1 -0
  260. package/src/components/Icon/line/interface-dots-horizontal.svg +1 -0
  261. package/src/components/Icon/line/interface-dots-vertical.svg +1 -0
  262. package/src/components/Icon/line/interface-edit-attachment.svg +1 -0
  263. package/src/components/Icon/line/interface-edit-binocular.svg +1 -0
  264. package/src/components/Icon/line/interface-edit-magic-wand.svg +1 -0
  265. package/src/components/Icon/line/interface-edit-tool-eraser.svg +1 -0
  266. package/src/components/Icon/line/interface-edit-tool-paint-brush.svg +1 -0
  267. package/src/components/Icon/line/interface-edit-tool-paint-roller.svg +1 -0
  268. package/src/components/Icon/line/interface-edit-tool-pen.svg +1 -0
  269. package/src/components/Icon/line/interface-edit-tool-pencil.svg +1 -0
  270. package/src/components/Icon/line/interface-edit-view-eye.svg +1 -0
  271. package/src/components/Icon/line/interface-favorite-award.svg +1 -0
  272. package/src/components/Icon/line/interface-favorite-flag.svg +1 -0
  273. package/src/components/Icon/line/interface-favorite-heart.svg +1 -0
  274. package/src/components/Icon/line/interface-favorite-star.svg +1 -0
  275. package/src/components/Icon/line/interface-favorite-stars-shining.svg +1 -0
  276. package/src/components/Icon/line/interface-favorite-stars-sparkles.svg +1 -0
  277. package/src/components/Icon/line/interface-hierarchy-flowchart.svg +1 -0
  278. package/src/components/Icon/line/interface-home-house.svg +1 -0
  279. package/src/components/Icon/line/interface-hyperlink.svg +1 -0
  280. package/src/components/Icon/line/interface-lighting-brightness.svg +1 -0
  281. package/src/components/Icon/line/interface-lock-closed.svg +1 -0
  282. package/src/components/Icon/line/interface-lock-open-unlock.svg +1 -0
  283. package/src/components/Icon/line/interface-login-key.svg +1 -0
  284. package/src/components/Icon/line/interface-search.svg +1 -0
  285. package/src/components/Icon/line/interface-setting-cog.svg +1 -0
  286. package/src/components/Icon/line/interface-share-megaphone-bullhorn.svg +1 -0
  287. package/src/components/Icon/line/interface-share-rocket.svg +1 -0
  288. package/src/components/Icon/line/interface-share-satellite.svg +1 -0
  289. package/src/components/Icon/line/interface-share-space-ship.svg +1 -0
  290. package/src/components/Icon/line/interface-share.svg +1 -0
  291. package/src/components/Icon/line/interface-signal-square.svg +1 -0
  292. package/src/components/Icon/line/interface-text-formatting-left-open-quote.svg +1 -0
  293. package/src/components/Icon/line/interface-text-formatting-right-close-quote.svg +1 -0
  294. package/src/components/Icon/line/interface-time-clock-circle.svg +1 -0
  295. package/src/components/Icon/line/interface-time-hour-glass.svg +1 -0
  296. package/src/components/Icon/line/interface-users-multiple.svg +1 -0
  297. package/src/components/Icon/line/interface-validation-checkbox-square.svg +1 -0
  298. package/src/components/Icon/line/interface-weather-moon.svg +1 -0
  299. package/src/components/Icon/line/legal-justice-hammer-gavel.svg +1 -0
  300. package/src/components/Icon/line/mail-chat-bubble-square.svg +1 -0
  301. package/src/components/Icon/line/mail-send-email-paper-airplane.svg +1 -0
  302. package/src/components/Icon/line/mail-send-envelope.svg +1 -0
  303. package/src/components/Icon/line/mail-sign-hashtag.svg +1 -0
  304. package/src/components/Icon/line/money-cashier-receipt.svg +1 -0
  305. package/src/components/Icon/line/money-currency-dollar-pay.svg +1 -0
  306. package/src/components/Icon/line/money-graph-arrow-increase.svg +1 -0
  307. package/src/components/Icon/line/money-graph-bar-chart-increase.svg +1 -0
  308. package/src/components/Icon/line/nature-ecology-leaf.svg +1 -0
  309. package/src/components/Icon/line/phone-telephone.svg +1 -0
  310. package/src/components/Icon/line/programming-bug.svg +1 -0
  311. package/src/components/Icon/line/programming-cloud.svg +1 -0
  312. package/src/components/Icon/line/programming-computer-database-server.svg +1 -0
  313. package/src/components/Icon/line/programming-computer-database.svg +1 -0
  314. package/src/components/Icon/line/programming-module-four-layout.svg +1 -0
  315. package/src/components/Icon/line/programming-module-three.svg +1 -0
  316. package/src/components/Icon/line/programming-module.svg +1 -0
  317. package/src/components/Icon/line/programming-script-code.svg +1 -0
  318. package/src/components/Icon/line/shopping-cart.svg +8 -0
  319. package/src/components/Icon/line/shopping-gift-present.svg +1 -0
  320. package/src/components/Icon/line/shopping-shipping-box-parcel-package.svg +1 -0
  321. package/src/components/Icon/line/tag-new-circle.svg +1 -0
  322. package/src/components/Icon/line/travel-map-earth-globe.svg +1 -0
  323. package/src/components/Icon/localIcons.ts +68 -0
  324. package/src/components/Icon/solid/arrow-chevron-down.svg +1 -0
  325. package/src/components/Icon/solid/arrow-chevron-left.svg +1 -0
  326. package/src/components/Icon/solid/arrow-chevron-right.svg +1 -0
  327. package/src/components/Icon/solid/arrow-chevron-up.svg +1 -0
  328. package/src/components/Icon/solid/arrow-down.svg +1 -0
  329. package/src/components/Icon/solid/arrow-left.svg +1 -0
  330. package/src/components/Icon/solid/arrow-right.svg +1 -0
  331. package/src/components/Icon/solid/arrow-up.svg +1 -0
  332. package/src/components/Icon/solid/basic-shape-diamond.svg +1 -0
  333. package/src/components/Icon/solid/basic-shape-hexagon.svg +1 -0
  334. package/src/components/Icon/solid/basic-shape-primary-circle-ellipse-round.svg +1 -0
  335. package/src/components/Icon/solid/basic-shape-primary-square-rectangle.svg +1 -0
  336. package/src/components/Icon/solid/basic-shape-shield.svg +1 -0
  337. package/src/components/Icon/solid/computer-device-desktop-monitor.svg +1 -0
  338. package/src/components/Icon/solid/computer-device-desktop.svg +1 -0
  339. package/src/components/Icon/solid/computer-device-laptop.svg +1 -0
  340. package/src/components/Icon/solid/computer-device-mobile-phone-android-samsung-back.svg +1 -0
  341. package/src/components/Icon/solid/computer-device-mobile-phone-android-samsung.svg +1 -0
  342. package/src/components/Icon/solid/computer-device-mobile-phone-iphone-x-back.svg +1 -0
  343. package/src/components/Icon/solid/computer-device-mobile-phone-iphone-x.svg +1 -0
  344. package/src/components/Icon/solid/computer-device-mobile-tablet-touch.svg +1 -0
  345. package/src/components/Icon/solid/computer-device-mobile-tablet.svg +1 -0
  346. package/src/components/Icon/solid/computer-device-network-ethernet-cat6.svg +1 -0
  347. package/src/components/Icon/solid/computer-device-network-lan-www.svg +1 -0
  348. package/src/components/Icon/solid/computer-device-network-wifi-connection.svg +5 -0
  349. package/src/components/Icon/solid/computer-device-network-wifi-router.svg +1 -0
  350. package/src/components/Icon/solid/computer-keyboard-alt.svg +1 -0
  351. package/src/components/Icon/solid/computer-keyboard-command-cmd-control-ctrl.svg +1 -0
  352. package/src/components/Icon/solid/computer-keyboard-option.svg +1 -0
  353. package/src/components/Icon/solid/computer-keyboard-shift.svg +1 -0
  354. package/src/components/Icon/solid/ecology-science-erlenmeyer-flask.svg +1 -0
  355. package/src/components/Icon/solid/entertainment-control-button-circle-left-arrow-rewind.svg +1 -0
  356. package/src/components/Icon/solid/entertainment-control-button-circle-pause.svg +1 -0
  357. package/src/components/Icon/solid/entertainment-control-button-circle-play.svg +5 -0
  358. package/src/components/Icon/solid/entertainment-control-button-circle-right-arrow-fast-forward.svg +1 -0
  359. package/src/components/Icon/solid/entertainment-control-button-circle-stop-square.svg +1 -0
  360. package/src/components/Icon/solid/entertainment-party-popper-confetti.svg +1 -0
  361. package/src/components/Icon/solid/image-flash-lightning.svg +5 -0
  362. package/src/components/Icon/solid/image-photo-frame.svg +11 -0
  363. package/src/components/Icon/solid/image-picture-flower.svg +5 -0
  364. package/src/components/Icon/solid/interface-add-square.svg +5 -0
  365. package/src/components/Icon/solid/interface-alert-error-exclamation-block-square.svg +1 -0
  366. package/src/components/Icon/solid/interface-alert-error-x-block-square.svg +1 -0
  367. package/src/components/Icon/solid/interface-alert-exclamation-diamond.svg +1 -0
  368. package/src/components/Icon/solid/interface-alert-exclamation-triangle-warning.svg +1 -0
  369. package/src/components/Icon/solid/interface-alert-information-circle.svg +5 -0
  370. package/src/components/Icon/solid/interface-award-crown.svg +5 -0
  371. package/src/components/Icon/solid/interface-bookmark-tag.svg +1 -0
  372. package/src/components/Icon/solid/interface-bookmark.svg +5 -0
  373. package/src/components/Icon/solid/interface-calendar-date-one.svg +5 -0
  374. package/src/components/Icon/solid/interface-close.svg +8 -0
  375. package/src/components/Icon/solid/interface-content-book-open-pages.svg +13 -0
  376. package/src/components/Icon/solid/interface-content-book-page.svg +5 -0
  377. package/src/components/Icon/solid/interface-content-file.svg +5 -0
  378. package/src/components/Icon/solid/interface-content-folder.svg +1 -0
  379. package/src/components/Icon/solid/interface-copy-clipboard.svg +5 -0
  380. package/src/components/Icon/solid/interface-delete-bin-trash.svg +1 -0
  381. package/src/components/Icon/solid/interface-dots-horizontal.svg +1 -0
  382. package/src/components/Icon/solid/interface-dots-vertical.svg +1 -0
  383. package/src/components/Icon/solid/interface-edit-attachment.svg +5 -0
  384. package/src/components/Icon/solid/interface-edit-binocular.svg +5 -0
  385. package/src/components/Icon/solid/interface-edit-magic-wand.svg +7 -0
  386. package/src/components/Icon/solid/interface-edit-tool-eraser.svg +1 -0
  387. package/src/components/Icon/solid/interface-edit-tool-paint-brush.svg +1 -0
  388. package/src/components/Icon/solid/interface-edit-tool-paint-roller.svg +5 -0
  389. package/src/components/Icon/solid/interface-edit-tool-pen.svg +5 -0
  390. package/src/components/Icon/solid/interface-edit-tool-pencil.svg +1 -0
  391. package/src/components/Icon/solid/interface-edit-view-eye.svg +7 -0
  392. package/src/components/Icon/solid/interface-favorite-award.svg +5 -0
  393. package/src/components/Icon/solid/interface-favorite-flag.svg +1 -0
  394. package/src/components/Icon/solid/interface-favorite-heart.svg +5 -0
  395. package/src/components/Icon/solid/interface-favorite-star.svg +5 -0
  396. package/src/components/Icon/solid/interface-favorite-stars-shining.svg +1 -0
  397. package/src/components/Icon/solid/interface-favorite-stars-sparkles.svg +1 -0
  398. package/src/components/Icon/solid/interface-hierarchy-flowchart.svg +5 -0
  399. package/src/components/Icon/solid/interface-home-house.svg +5 -0
  400. package/src/components/Icon/solid/interface-hyperlink.svg +5 -0
  401. package/src/components/Icon/solid/interface-lighting-brightness.svg +22 -0
  402. package/src/components/Icon/solid/interface-lock-closed.svg +5 -0
  403. package/src/components/Icon/solid/interface-lock-open-unlock.svg +1 -0
  404. package/src/components/Icon/solid/interface-login-key.svg +5 -0
  405. package/src/components/Icon/solid/interface-search.svg +5 -0
  406. package/src/components/Icon/solid/interface-setting-cog.svg +5 -0
  407. package/src/components/Icon/solid/interface-share-megaphone-bullhorn.svg +5 -0
  408. package/src/components/Icon/solid/interface-share-rocket.svg +1 -0
  409. package/src/components/Icon/solid/interface-share-satellite.svg +8 -0
  410. package/src/components/Icon/solid/interface-share-space-ship.svg +1 -0
  411. package/src/components/Icon/solid/interface-share.svg +5 -0
  412. package/src/components/Icon/solid/interface-signal-square.svg +5 -0
  413. package/src/components/Icon/solid/interface-text-formatting-left-open-quote.svg +1 -0
  414. package/src/components/Icon/solid/interface-text-formatting-right-close-quote.svg +1 -0
  415. package/src/components/Icon/solid/interface-time-clock-circle.svg +5 -0
  416. package/src/components/Icon/solid/interface-time-hour-glass.svg +1 -0
  417. package/src/components/Icon/solid/interface-users-multiple.svg +11 -0
  418. package/src/components/Icon/solid/interface-validation-checkbox-square.svg +5 -0
  419. package/src/components/Icon/solid/interface-weather-moon.svg +5 -0
  420. package/src/components/Icon/solid/legal-justice-hammer-gavel.svg +1 -0
  421. package/src/components/Icon/solid/mail-chat-bubble-square.svg +5 -0
  422. package/src/components/Icon/solid/mail-send-email-paper-airplane.svg +5 -0
  423. package/src/components/Icon/solid/mail-send-envelope.svg +1 -0
  424. package/src/components/Icon/solid/mail-sign-hashtag.svg +5 -0
  425. package/src/components/Icon/solid/money-cashier-receipt.svg +1 -0
  426. package/src/components/Icon/solid/money-currency-dollar-pay.svg +5 -0
  427. package/src/components/Icon/solid/money-graph-arrow-increase.svg +5 -0
  428. package/src/components/Icon/solid/money-graph-bar-chart-increase.svg +1 -0
  429. package/src/components/Icon/solid/nature-ecology-leaf.svg +5 -0
  430. package/src/components/Icon/solid/phone-telephone.svg +5 -0
  431. package/src/components/Icon/solid/programming-bug.svg +5 -0
  432. package/src/components/Icon/solid/programming-cloud.svg +4 -0
  433. package/src/components/Icon/solid/programming-computer-database-server.svg +5 -0
  434. package/src/components/Icon/solid/programming-computer-database.svg +5 -0
  435. package/src/components/Icon/solid/programming-module-four-layout.svg +1 -0
  436. package/src/components/Icon/solid/programming-module-three.svg +1 -0
  437. package/src/components/Icon/solid/programming-module.svg +1 -0
  438. package/src/components/Icon/solid/programming-script-code.svg +5 -0
  439. package/src/components/Icon/solid/shopping-cart.svg +1 -0
  440. package/src/components/Icon/solid/shopping-gift-present.svg +16 -0
  441. package/src/components/Icon/solid/shopping-shipping-box-parcel-package.svg +11 -0
  442. package/src/components/Icon/solid/tag-new-circle.svg +7 -0
  443. package/src/components/Icon/solid/travel-map-earth-globe.svg +5 -0
  444. package/src/components/SearchModal.vue +305 -0
  445. package/src/components/Sidebar.vue +289 -0
  446. package/src/components/SidebarElement.vue +133 -0
  447. package/src/components/SidebarGroup.vue +12 -0
  448. package/src/components/SimpleTable/SimpleCell.vue +46 -0
  449. package/src/components/SimpleTable/SimpleHeader.vue +17 -0
  450. package/src/components/SimpleTable/SimpleRow.vue +5 -0
  451. package/src/components/SimpleTable/SimpleTable.vue +13 -0
  452. package/src/components/SimpleTable/index.ts +4 -0
  453. package/src/declarations/typographic-base.d.ts +1 -0
  454. package/src/helpers/generateAxiosCodeFromRequest.ts +42 -0
  455. package/src/helpers/generateLaravelCodeFromRequest.ts +20 -0
  456. package/src/helpers/index.ts +4 -0
  457. package/src/helpers/objectMerge.ts +19 -0
  458. package/src/helpers/specHelpers.ts +62 -0
  459. package/src/helpers/transformToJson.test.ts +7 -0
  460. package/src/helpers/transformToJson.ts +22 -0
  461. package/src/hooks/useRefOnMount.ts +12 -0
  462. package/src/index.ts +11 -0
  463. package/src/standalone.ts +28 -0
  464. package/src/stores/template.ts +66 -0
  465. package/src/stores/utility.ts +23 -0
  466. package/src/types.ts +154 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><g><path d="M8.5 3.52A1.5 1.5 0 1 0 10 5a1.5 1.5 0 0 0-1.5-1.48Z" fill="currentColor"></path><path d="M12.5 5.52A1.5 1.5 0 1 0 14 7a1.5 1.5 0 0 0-1.5-1.48Z" fill="currentColor"></path><path d="M8.5 7.52A1.5 1.5 0 1 0 10 9a1.5 1.5 0 0 0-1.5-1.48Z" fill="currentColor"></path></g><path d="M17.54 0H6.46a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h11.08a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3Zm1 21a1 1 0 0 1-1 1H6.46a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h11.08a1 1 0 0 1 1 1Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.54 0H6.46a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h11.08a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3Zm1 21a1 1 0 0 1-1 1H6.46a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h1.31l.11.34A2.08 2.08 0 0 0 9.9 4h4.2a2.08 2.08 0 0 0 2-1.66l.13-.34h1.31a1 1 0 0 1 1 1Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7.52 16.82a.29.29 0 0 0 0-.22.26.26 0 0 0-.2-.1H4a1 1 0 0 1-1-1v-12a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v11.63a.24.24 0 0 0 .19.24 4.69 4.69 0 0 1 2.39 1.56.25.25 0 0 0 .27.05.25.25 0 0 0 .15-.23V2.5A2.51 2.51 0 0 0 21.5 0h-19A2.51 2.51 0 0 0 0 2.5v14A2.5 2.5 0 0 0 2.5 19h4.75a.25.25 0 0 0 .2-.09.28.28 0 0 0 0-.22 3.7 3.7 0 0 1 .07-1.87Z" fill="currentColor"></path><path d="M13.62 24a1 1 0 0 1-.77-.36l-3.5-4.22a1.5 1.5 0 1 1 2.3-1.92L14 20.32v-9.83a1.5 1.5 0 0 1 3 0V17h3a4 4 0 0 1 4 4v2a1 1 0 0 1-1 1Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.5 0h-13A2.5 2.5 0 0 0 3 2.5v19A2.5 2.5 0 0 0 5.5 24h13a2.5 2.5 0 0 0 2.5-2.5v-19A2.5 2.5 0 0 0 18.5 0Zm.5 18.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 5 18.5v-13A1.5 1.5 0 0 1 6.5 4h11A1.5 1.5 0 0 1 19 5.5Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2Zm-4.5 13a1 1 0 0 1-1 1h-3.75a.25.25 0 0 0-.25.25v2.25a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-2.25a.25.25 0 0 0-.25-.25H5.5a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h1a.25.25 0 0 1 .25.25V9a.75.75 0 0 0 1.5 0V6.25A.25.25 0 0 1 8.5 6h1a.25.25 0 0 1 .25.25V9a.75.75 0 0 0 1.5 0V6.25A.25.25 0 0 1 11.5 6h1a.25.25 0 0 1 .25.25V9a.75.75 0 0 0 1.5 0V6.25A.25.25 0 0 1 14.5 6h1a.25.25 0 0 1 .25.25V9a.75.75 0 0 0 1.5 0V6.25A.25.25 0 0 1 17.5 6h1a1 1 0 0 1 1 1Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M16.6 12.64a.24.24 0 0 0-.08-.24 2.23 2.23 0 0 1-.77-1.68 2.2 2.2 0 0 1 .08-.58.24.24 0 0 0-.09-.27A8.74 8.74 0 0 0 11 8.22h-.08a.26.26 0 0 0-.27.18 2.5 2.5 0 0 1-2.4 1.83.05.05 0 0 0-.05 0 12.53 12.53 0 0 0-.09 3.86.27.27 0 0 0 .21.22 21.21 21.21 0 0 1 6.36 2.12.26.26 0 0 0 .32-.08 10.14 10.14 0 0 0 1.6-3.71Z" fill="currentColor"></path><path d="M13.62 18a.26.26 0 0 0 .07-.22.25.25 0 0 0-.14-.19A19.76 19.76 0 0 0 8.91 16a.24.24 0 0 0-.24.08.24.24 0 0 0-.05.24 10.68 10.68 0 0 0 .55 1.33 10.37 10.37 0 0 0 1.62 2.28.26.26 0 0 0 .32.05A31.53 31.53 0 0 0 13.62 18Z" fill="currentColor"></path><path d="M6.3 14.1a.24.24 0 0 0 .2-.1.29.29 0 0 0 .07-.2 13 13 0 0 1 .2-4 .07.07 0 0 0 0-.07 2.59 2.59 0 0 1-.78-1 .24.24 0 0 0-.27-.15A11.14 11.14 0 0 0 .09 11.4a.24.24 0 0 0-.07.16v.41a11.72 11.72 0 0 0 .25 2.38.23.23 0 0 0 .11.16.21.21 0 0 0 .19 0 20.24 20.24 0 0 1 5.73-.41Z" fill="currentColor"></path><path d="M9.23 20.91a.23.23 0 0 0 .15-.17.25.25 0 0 0-.05-.22 11.26 11.26 0 0 1-1.5-2.22 11.73 11.73 0 0 1-.91-2.46.25.25 0 0 0-.22-.19A19 19 0 0 0 1 16a.27.27 0 0 0-.17.13.23.23 0 0 0 0 .2A12 12 0 0 0 5 21.67a.3.3 0 0 0 .15 0 11.46 11.46 0 0 0 4.08-.76Z" fill="currentColor"></path><path d="M18.93 13a.23.23 0 0 0-.26-.08 2.7 2.7 0 0 1-.41.08.25.25 0 0 0-.22.19c-.58 2.66-2.13 5.35-5.75 7.84a.31.31 0 0 0-.11.19.32.32 0 0 0 .08.21 28.59 28.59 0 0 0 2.67 2.12.22.22 0 0 0 .21 0 12 12 0 0 0 6.45-4.38.25.25 0 0 0 .05-.19A13.35 13.35 0 0 0 18.93 13Z" fill="currentColor"></path><path d="M5.7 7.06a.25.25 0 0 0 .2-.17A2.49 2.49 0 0 1 8 5.24a.09.09 0 0 0 .08-.06 19.55 19.55 0 0 1 3-4.74.23.23 0 0 0 0-.27.25.25 0 0 0-.18-.17A12 12 0 0 0 .5 8.59a.24.24 0 0 0 .09.27.24.24 0 0 0 .28 0 12.89 12.89 0 0 1 4.83-1.8Z" fill="currentColor"></path><path d="M10.77 22.05a.24.24 0 0 0-.28 0 13.26 13.26 0 0 1-2.36.83.25.25 0 0 0 0 .48A11.94 11.94 0 0 0 12 24h.3a.26.26 0 0 0 .23-.17.24.24 0 0 0-.09-.27c-.52-.47-1.09-.96-1.67-1.51Z" fill="currentColor"></path><path d="M18.75 8.44a.25.25 0 0 0 .15.22 2.26 2.26 0 0 1 1.35 2.06 2.23 2.23 0 0 1-.23 1 .24.24 0 0 0 0 .28 15.21 15.21 0 0 1 2.52 4.6.24.24 0 0 0 .23.17.22.22 0 0 0 .23-.15A11.76 11.76 0 0 0 24 12a12 12 0 0 0-5.78-10.29.26.26 0 0 0-.28 0 .24.24 0 0 0-.09.26 28.9 28.9 0 0 1 .9 6.47Z" fill="currentColor"></path><path d="M9.61 5.38a.26.26 0 0 0 .08.31 2.43 2.43 0 0 1 .8.94.24.24 0 0 0 .3.12H11a10.25 10.25 0 0 1 5.69 2 .24.24 0 0 0 .27 0l.14-.06a.25.25 0 0 0 .15-.23A30.38 30.38 0 0 0 16 .76a.23.23 0 0 0-.2-.16 11.66 11.66 0 0 0-2.21-.52.24.24 0 0 0-.21.08 22.27 22.27 0 0 0-3.77 5.22Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M3.91609 3.38108C4.89376 2.97597 5.94168 2.76746 6.99996 2.76746C8.05824 2.76746 9.10616 2.97597 10.0838 3.38108C11.0615 3.7862 11.9498 4.37998 12.6979 5.12849C12.9907 5.42146 13.4656 5.42158 13.7586 5.12877C14.0515 4.83595 14.0517 4.36108 13.7588 4.06811C12.8714 3.18022 11.8178 2.47589 10.658 1.99534C9.49833 1.51479 8.25529 1.26746 6.99996 1.26746C5.74463 1.26746 4.5016 1.51479 3.34188 1.99534C2.18217 2.47589 1.1285 3.18022 0.241077 4.06811C-0.0517396 4.36108 -0.0516161 4.83595 0.241353 5.12877C0.534323 5.42158 1.0092 5.42146 1.30201 5.12849C2.05014 4.37998 2.93841 3.7862 3.91609 3.38108ZM6.99999 5.60968C6.27156 5.60968 5.55032 5.75369 4.87774 6.03343C4.20516 6.31316 3.59452 6.72311 3.08094 7.23969C2.7889 7.53343 2.31403 7.53481 2.02029 7.24277C1.72654 6.95073 1.72516 6.47586 2.0172 6.18211C2.67018 5.52533 3.44656 5.00411 4.3017 4.64844C5.15683 4.29278 6.07384 4.10968 6.99999 4.10968C7.92614 4.10968 8.84315 4.29278 9.69829 4.64844C10.5534 5.00411 11.3298 5.52533 11.9828 6.18211C12.2748 6.47586 12.2734 6.95073 11.9797 7.24277C11.686 7.53481 11.2111 7.53343 10.919 7.23969C10.4055 6.72311 9.79483 6.31316 9.12225 6.03343C8.44967 5.75369 7.72843 5.60968 6.99999 5.60968ZM6.02026 8.54883C6.33942 8.41417 6.68232 8.34479 7.02872 8.34479C7.37513 8.34479 7.71803 8.41417 8.03719 8.54883C8.35635 8.68349 8.64531 8.88071 8.88702 9.12885C9.17604 9.42557 9.65087 9.43181 9.94759 9.14278C10.2443 8.85376 10.2505 8.37893 9.96152 8.08222C9.58005 7.69059 9.12401 7.37934 8.6203 7.16681C8.1166 6.95428 7.57543 6.84479 7.02872 6.84479C6.48202 6.84479 5.94085 6.95428 5.43714 7.16681C4.93344 7.37934 4.4774 7.69059 4.09593 8.08222C3.80691 8.37893 3.81314 8.85376 4.10986 9.14278C4.40657 9.43181 4.88141 9.42557 5.17043 9.12885C5.41214 8.88071 5.7011 8.68349 6.02026 8.54883ZM5.40771 11.7133C5.40771 10.8339 6.12061 10.121 7.00002 10.121C7.87942 10.121 8.59232 10.8339 8.59232 11.7133C8.59232 12.5927 7.87942 13.3056 7.00002 13.3056C6.12061 13.3056 5.40771 12.5927 5.40771 11.7133Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M20.91 13.85H17.2a.25.25 0 0 1-.25-.24V9.89a1.49 1.49 0 0 0-3 0v3.72a.25.25 0 0 1-.25.24H3.09a3 3 0 0 0-3 3v2a3 3 0 0 0 2.74 3 .25.25 0 0 1 .23.25v.5a1.49 1.49 0 1 0 3 0V22a.25.25 0 0 1 .25-.25h11.38a.25.25 0 0 1 .25.25v.49a1.49 1.49 0 1 0 3 0V22a.25.25 0 0 1 .23-.25 3 3 0 0 0 2.74-3v-2a3 3 0 0 0-3-2.9ZM8.12 16.66A1.11 1.11 0 1 1 7 17.77a1.11 1.11 0 0 1 1.12-1.11ZM4.28 19a1.13 1.13 0 0 1-.71-.26 1.18 1.18 0 0 1-.48-.93 1.2 1.2 0 1 1 2.14.69 1.17 1.17 0 0 1-.95.5Z" fill="currentColor"></path><path d="M11.26 5.69a1 1 0 0 0 0 1.4 1 1 0 0 0 1.4 0 4.07 4.07 0 0 1 5.6 0 1 1 0 0 0 .7.29.94.94 0 0 0 .7-.29 1 1 0 0 0 0-1.4 5.94 5.94 0 0 0-8.4 0Z" fill="currentColor"></path><path d="M9.87 4.29a7.93 7.93 0 0 1 11.19 0 1 1 0 0 0 .7.29.94.94 0 0 0 .7-.29 1 1 0 0 0 0-1.4 9.9 9.9 0 0 0-14 0 1 1 0 0 0 1.4 1.4Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="currentColor" d="M7.28 12.75h1.44L8 10.73l-.72 2.02z"></path><path d="M19.83 0H4.17A4.19 4.19 0 0 0 0 4.17v15.66A4.19 4.19 0 0 0 4.17 24h15.66A4.19 4.19 0 0 0 24 19.83V4.17A4.19 4.19 0 0 0 19.83 0Zm-9.08 16.21a.73.73 0 0 1-.25 0 .75.75 0 0 1-.71-.5l-.47-1.33a.26.26 0 0 0-.24-.17H6.92a.26.26 0 0 0-.24.17l-.47 1.33a.75.75 0 0 1-1.42-.5l2.5-7a.75.75 0 0 1 1.42 0l2.5 7a.75.75 0 0 1-.46 1Zm3.5-.71a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 1.5 0ZM19 11.25h-.5a.25.25 0 0 0-.25.25v3a.25.25 0 0 0 .25.25.75.75 0 0 1 0 1.5 1.76 1.76 0 0 1-1.75-1.75v-3a.25.25 0 0 0-.25-.25H16a.75.75 0 0 1 0-1.5h.5a.25.25 0 0 0 .25-.25v-1a.75.75 0 0 1 1.5 0v1a.25.25 0 0 0 .25.25h.5a.75.75 0 0 1 0 1.5Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M0 3.95A3.909 3.909 0 0 1 3.95 0h16.1C22.28 0 24 1.851 24 3.95v16.1A3.909 3.909 0 0 1 20.05 24H3.95A3.909 3.909 0 0 1 0 20.05V3.95Zm5.684 3.22c0-.86.726-1.586 1.586-1.586.86 0 1.587.726 1.587 1.587v1.586H7.27c-.86 0-1.586-.726-1.586-1.586Zm4.673 0v1.587h3.386V7.171a3.107 3.107 0 0 1 3.087-3.087 3.107 3.107 0 0 1 3.086 3.087 3.107 3.107 0 0 1-3.086 3.086h-1.587v3.386h1.587a3.107 3.107 0 0 1 3.086 3.087 3.107 3.107 0 0 1-3.086 3.086 3.107 3.107 0 0 1-3.087-3.086v-1.587h-3.386v1.587a3.107 3.107 0 0 1-3.087 3.086 3.107 3.107 0 0 1-3.086-3.086 3.107 3.107 0 0 1 3.086-3.087h1.587v-3.386H7.27a3.107 3.107 0 0 1-3.086-3.086A3.107 3.107 0 0 1 7.27 4.084a3.107 3.107 0 0 1 3.087 3.087Zm0 6.473v-3.386h3.386v3.386h-3.386Zm6.473-4.886h-1.587V7.171c0-.86.726-1.587 1.587-1.587.86 0 1.586.726 1.586 1.587 0 .86-.726 1.586-1.586 1.586Zm-1.587 7.973v-1.587h1.587c.86 0 1.586.726 1.586 1.587 0 .86-.726 1.586-1.586 1.586-.86 0-1.587-.726-1.587-1.586ZM7.27 15.143h1.587v1.587c0 .86-.726 1.586-1.587 1.586-.86 0-1.586-.726-1.586-1.586 0-.86.726-1.587 1.586-1.587Z" clip-rule="evenodd"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 4.17A4.19 4.19 0 0 0 19.83 0H4.17A4.19 4.19 0 0 0 0 4.17v15.66A4.19 4.19 0 0 0 4.17 24h15.66A4.19 4.19 0 0 0 24 19.83ZM19.41 17.5h-3.5a2 2 0 0 1-1.41-.59l-6.12-6.12a1 1 0 0 0-.71-.29H4.41a1 1 0 0 1 0-2h3.68a2 2 0 0 1 1.41.59l6.12 6.12a1 1 0 0 0 .71.29h3.08a1 1 0 0 1 0 2Zm0-7H14.5a1 1 0 0 1 0-2h4.91a1 1 0 0 1 0 2Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.83 0H4.17A4.19 4.19 0 0 0 0 4.17v15.66A4.19 4.19 0 0 0 4.17 24h15.66A4.19 4.19 0 0 0 24 19.83V4.17A4.19 4.19 0 0 0 19.83 0Zm-1.48 12.21a.49.49 0 0 1-.45.29h-3.15a.25.25 0 0 0-.25.25V19a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-6.25a.25.25 0 0 0-.25-.25H6.1a.49.49 0 0 1-.45-.29.51.51 0 0 1 .08-.54l5.89-6.74a.51.51 0 0 1 .76 0l5.89 6.74a.51.51 0 0 1 .08.54Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 19.34 16.14 12a1 1 0 0 1-.14-.51V2.5a.5.5 0 0 1 .5-.5H18a1 1 0 0 0 0-2H6a1 1 0 0 0 0 2h1.5a.5.5 0 0 1 .5.5v9a1 1 0 0 1-.14.51l-4.32 7.27A3 3 0 0 0 6 24h12a3 3 0 0 0 2.49-4.66ZM8.67 16a.5.5 0 0 1-.43-.25.5.5 0 0 1 0-.5l1.62-2.74A1 1 0 0 0 10 12V2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v2.75a.5.5 0 0 1-.5.5h-1.32a.75.75 0 0 0 0 1.5h1.32a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1.32a.75.75 0 0 0 0 1.5h1.32a.5.5 0 0 1 .5.5V12a1 1 0 0 0 .14.51l1.61 2.74a.47.47 0 0 1 0 .5.52.52 0 0 1-.44.25Zm.82 5.82a1.5 1.5 0 1 1 1.5-1.5 1.5 1.5 0 0 1-1.5 1.5Zm4.22-3a1 1 0 0 1 0-2 1 1 0 0 1 0 2Zm2.49 3.09a1 1 0 1 1 1-1 1 1 0 0 1-1 .98Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0Zm4 15.56a1 1 0 0 1-1.55.84l-2.56-1.71a.27.27 0 0 0-.26 0 .25.25 0 0 0-.13.22v.54a1 1 0 0 1-1.63.78l-4.21-3.46a1 1 0 0 1 0-1.55l4.21-3.44a1 1 0 0 1 1.63.77v.55a.26.26 0 0 0 .13.22.27.27 0 0 0 .26 0l2.56-1.72a1 1 0 0 1 1.55.83Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24A12 12 0 1 0 0 12a12 12 0 0 0 12 12Zm-4.74-7.46v-8A1.5 1.5 0 0 1 8.76 7h.48a1.5 1.5 0 0 1 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5h-.48a1.5 1.5 0 0 1-1.5-1.46Zm6-8A1.5 1.5 0 0 1 14.71 7h.53a1.5 1.5 0 0 1 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5h-.53a1.5 1.5 0 0 1-1.5-1.5Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14ZM5.765 4.076C5.61087 3.97967 5.41659 3.97457 5.25762 4.06268C5.09864 4.15079 5 4.31824 5 4.5V9.5C5 9.68176 5.09864 9.84921 5.25762 9.93732C5.41659 10.0254 5.61087 10.0203 5.765 9.924L9.765 7.424C9.91119 7.33263 10 7.17239 10 7C10 6.82761 9.91119 6.66737 9.765 6.576L5.765 4.076Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0Zm6.34 12.77-4.21 3.45a1 1 0 0 1-1.63-.78v-.54a.25.25 0 0 0-.13-.22.27.27 0 0 0-.26 0L9.55 16.4A1 1 0 0 1 8 15.56V8.43a1 1 0 0 1 1.55-.83l2.56 1.71a.27.27 0 0 0 .26 0 .26.26 0 0 0 .13-.22v-.54a1 1 0 0 1 1.63-.77l4.21 3.44a1 1 0 0 1 0 1.55Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 24A12 12 0 1 0 0 12a12 12 0 0 0 12 12ZM7.5 9A1.5 1.5 0 0 1 9 7.5h6A1.5 1.5 0 0 1 16.5 9v6a1.5 1.5 0 0 1-1.5 1.5H9A1.5 1.5 0 0 1 7.5 15Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M22.68 11.59a3.13 3.13 0 0 0-4.35 0 .75.75 0 0 1-1.06 0 .74.74 0 0 1 0-1.06 4.57 4.57 0 0 1 6.47 0 .75.75 0 1 1-1.06 1.06Z" fill="currentColor"></path><path fill="currentColor" d="M19.95 14.56a.81.81 0 1 0 1.62 0 .81.81 0 1 0-1.62 0"></path><path d="M12.41 6.73a.75.75 0 0 1 0-1.06 3.08 3.08 0 0 0 0-4.35.75.75 0 0 1 1.06-1.06 4.57 4.57 0 0 1 0 6.47.74.74 0 0 1-1.06 0Z" fill="currentColor"></path><path fill="currentColor" d="M8.63 3.24a.81.81 0 1 0 1.62 0 .81.81 0 1 0-1.62 0"></path><path fill="currentColor" d="M22.38.81a.81.81 0 1 0 1.62 0 .81.81 0 1 0-1.62 0"></path><path fill="currentColor" d="M22.11 6.47a.81.81 0 1 0 1.62 0 .81.81 0 1 0-1.62 0"></path><path d="M15.65 8.35a.75.75 0 0 1 0-1.06l5.12-5.12a.75.75 0 0 1 1.06 1.06l-5.12 5.12a.75.75 0 0 1-1.06 0Z" fill="currentColor"></path><path d="M14 10c-2.21-2.24-5.31-3.64-6.91-2a1.66 1.66 0 0 0-.36.48C6.69 8.51.28 20.52.28 20.52a2.38 2.38 0 0 0 .41 2.79 2.37 2.37 0 0 0 2.78.41l12-6.41a1.79 1.79 0 0 0 .57-.4c1.6-1.61.2-4.7-2.04-6.91Zm.49 5.4c-.35.36-2.37-.52-3.87-2s-2.37-3.52-2-3.87c.15-.15 1.77-.08 3.88 2 1.89 1.88 2.24 3.63 2.01 3.85Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M3.029,0a.5.5,0,0,0-.465.316L1.141,4.467A.385.385,0,0,0,1.5,5H3.008a.25.25,0,0,1,.241.315L2.156,9.4A.5.5,0,0,0,3,9.853L8.769,3.442A.385.385,0,0,0,8.5,2.778H6.48a.25.25,0,0,1-.232-.343l.7-1.749A.5.5,0,0,0,6.484,0Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g>
3
+ <path
4
+ d="M24,22.21,19.82,2a2.51,2.51,0,0,0-2.45-2H1.5A1.5,1.5,0,0,0,0,1.79L2.46,13.63a.24.24,0,0,1,0,.12L.06,22A1,1,0,0,0,2,22.56l1.07-3.69a.24.24,0,0,1,.25-.18.23.23,0,0,1,.23.2L4.18,22a2.51,2.51,0,0,0,2.45,2H22.5A1.5,1.5,0,0,0,24,22.21ZM3.72,4a.39.39,0,0,1,.4-.49H16.39A.63.63,0,0,1,17,4l3.29,16a.39.39,0,0,1-.4.49H7.61A.63.63,0,0,1,7,20Z"
5
+ fill="currentColor"></path>
6
+ <path
7
+ d="M9,17h8a.51.51,0,0,0,.46-.71L15,10.79a.5.5,0,0,0-.89,0l-1.61,2.8a.22.22,0,0,1-.15.12.24.24,0,0,1-.2,0l-.83-.56a.51.51,0,0,0-.7.14l-2,3A.5.5,0,0,0,9,17Z"
8
+ fill="currentColor"></path>
9
+ <path d="M10,10.5A1.5,1.5,0,1,0,8.5,9,1.5,1.5,0,0,0,10,10.5Z" fill="currentColor"></path>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.25,0H1.75A1.752,1.752,0,0,0,0,1.75v6.5A1.752,1.752,0,0,0,1.75,10h6.5A1.752,1.752,0,0,0,10,8.25V1.75A1.752,1.752,0,0,0,8.25,0ZM8.5,8.25a.25.25,0,0,1-.25.25H6.375l1-.75a.625.625,0,0,0-.75-1l-1,.75V5.908A1.867,1.867,0,0,0,7,4.155V2.808a.333.333,0,0,0-.482-.275L5,3.233l-1.518-.7A.333.333,0,0,0,3,2.808V4.155A1.867,1.867,0,0,0,4.375,5.908V7.5l-1-.75a.625.625,0,1,0-.75,1l1,.75H1.75a.25.25,0,0,1-.25-.25V1.75a.25.25,0,0,1,.25-.25h6.5a.25.25,0,0,1,.25.25Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M0 3.5C0 1.567 1.567 0 3.5 0H10.5C12.433 0 14 1.567 14 3.5V10.5C14 12.433 12.433 14 10.5 14H3.5C1.567 14 0 12.433 0 10.5V3.5ZM7 3.25C7.41421 3.25 7.75 3.58579 7.75 4V6.25H10C10.4142 6.25 10.75 6.58579 10.75 7C10.75 7.41421 10.4142 7.75 10 7.75H7.75V10C7.75 10.4142 7.41421 10.75 7 10.75C6.58579 10.75 6.25 10.4142 6.25 10V7.75H4C3.58579 7.75 3.25 7.41421 3.25 7C3.25 6.58579 3.58579 6.25 4 6.25H6.25V4C6.25 3.58579 6.58579 3.25 7 3.25Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M21.5 2.5h-19A2.5 2.5 0 0 0 0 5v14a2.5 2.5 0 0 0 2.5 2.5h19A2.5 2.5 0 0 0 24 19V5a2.5 2.5 0 0 0-2.5-2.5ZM11.25 6.92a.75.75 0 0 1 1.5 0v5.5a.75.75 0 1 1-1.5 0Zm.75 11a1.5 1.5 0 1 1 1.5-1.5 1.5 1.5 0 0 1-1.5 1.5Z" fill="currentColor"></path><path fill="currentColor" d="M12 16.42h.75H12z"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 2.5h-19A2.5 2.5 0 0 0 0 5v14a2.5 2.5 0 0 0 2.5 2.5h19A2.5 2.5 0 0 0 24 19V5a2.5 2.5 0 0 0-2.5-2.5ZM16.53 16a.75.75 0 0 1 0 1.06.75.75 0 0 1-1.06 0l-3.54-3.54L8.4 17a.74.74 0 0 1-.53.22.73.73 0 0 1-.53-.22.75.75 0 0 1 0-1.06l3.53-3.54-3.53-3.5a.75.75 0 0 1 0-1.06.74.74 0 0 1 1.06 0l3.53 3.53 3.54-3.53a.74.74 0 0 1 1.06 0 .75.75 0 0 1 0 1.06L13 12.43Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.39 10.53 13.46.6a2.07 2.07 0 0 0-2.92 0L.61 10.54a2.06 2.06 0 0 0 0 2.92l9.93 9.92A2 2 0 0 0 12 24a2.07 2.07 0 0 0 1.47-.61l9.92-9.92a2.08 2.08 0 0 0 0-2.94ZM11 6.42a1 1 0 0 1 2 0v6a1 1 0 1 1-2 0Zm1.05 11.51a1.54 1.54 0 0 1-1.52-1.47A1.47 1.47 0 0 1 12 14.93a1.53 1.53 0 0 1 1.5 1.47 1.48 1.48 0 0 1-1.45 1.53Z" fill="currentColor"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m23.77 20.57-10-19A2 2 0 0 0 12 .5a2 2 0 0 0-1.77 1.07l-10 19a2 2 0 0 0 .06 2A2 2 0 0 0 2 23.5h20a2 2 0 0 0 1.77-2.93ZM11 8.5a1 1 0 0 1 2 0v6a1 1 0 0 1-2 0ZM12.05 20a1.53 1.53 0 0 1-1.52-1.47A1.48 1.48 0 0 1 12 17a1.53 1.53 0 0 1 1.52 1.47A1.48 1.48 0 0 1 12.05 20Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14ZM5.5 9.375C5.15482 9.375 4.875 9.65482 4.875 10C4.875 10.3452 5.15482 10.625 5.5 10.625H7H8.5C8.84518 10.625 9.125 10.3452 9.125 10C9.125 9.65482 8.84518 9.375 8.5 9.375H7.625V6.5C7.625 6.15482 7.34518 5.875 7 5.875H6C5.65482 5.875 5.375 6.15482 5.375 6.5C5.375 6.84518 5.65482 7.125 6 7.125H6.375V9.375H5.5ZM8 4C8 4.55228 7.55228 5 7 5C6.44772 5 6 4.55228 6 4C6 3.44772 6.44772 3 7 3C7.55228 3 8 3.44772 8 4Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.678,2.651a.5.5,0,0,0-.552.136L7.751,4.334a.252.252,0,0,1-.391-.021L5.407,1.578a.52.52,0,0,0-.814,0L2.64,4.313a.252.252,0,0,1-.391.021L.874,2.787A.5.5,0,0,0,0,3.119v5a.5.5,0,0,0,.5.5h9a.5.5,0,0,0,.5-.5v-5A.5.5,0,0,0,9.678,2.651Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.38 11.38 13.16 23a2 2 0 0 0 1.39.56A2 2 0 0 0 16 23l7.06-7.07A2 2 0 0 0 23 13L11.3 1.5l-.05-.06a3.78 3.78 0 0 0-2.39-1h-6.5a2 2 0 0 0-2 2V9a3.78 3.78 0 0 0 1.02 2.38Zm3.48-4.92A1.5 1.5 0 1 1 6.36 8a1.5 1.5 0 0 1-1.5-1.54Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M7.5,0h-5A1.5,1.5,0,0,0,1,1.5v8a.5.5,0,0,0,.791.407L4.855,7.718a.249.249,0,0,1,.29,0L8.209,9.907A.5.5,0,0,0,9,9.5v-8A1.5,1.5,0,0,0,7.5,0Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M4.5 1C4.5 0.447715 4.05228 0 3.5 0C2.94772 0 2.5 0.447715 2.5 1V2H1.5C0.671573 2 0 2.67157 0 3.5V12.5C0 13.3284 0.671573 14 1.5 14H12.5C13.3284 14 14 13.3284 14 12.5V3.5C14 2.67157 13.3284 2 12.5 2H11.5001V1C11.5001 0.447715 11.0524 0 10.5001 0C9.94784 0 9.50012 0.447715 9.50012 1V2H4.5V1ZM7.62492 6.00037C7.62492 5.65519 7.3451 5.37537 6.99992 5.37537C6.65474 5.37537 6.37492 5.65519 6.37492 6.00037C6.37492 6.27647 6.15109 6.50031 5.87498 6.50031H5.5C5.15482 6.50031 4.875 6.78013 4.875 7.12531C4.875 7.47048 5.15482 7.75031 5.5 7.75031H5.87498C6.0487 7.75031 6.21651 7.72499 6.37492 7.67785V9.87512H5.50008C5.1549 9.87512 4.87508 10.1549 4.87508 10.5001C4.87508 10.8453 5.1549 11.1251 5.50008 11.1251H8.49992C8.8451 11.1251 9.12492 10.8453 9.12492 10.5001C9.12492 10.1549 8.8451 9.87512 8.49992 9.87512H7.62492V6.00037Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg stroke-width="2" viewBox="-0.5 -0.5 15 15" xmlns="http://www.w3.org/2000/svg">
2
+ <g>
3
+ <line fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" x1="13.5" x2="0.5" y1="0.5"
4
+ y2="13.5" />
5
+ <line fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" x1="0.5" x2="13.5" y1="0.5"
6
+ y2="13.5" />
7
+ </g>
8
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g>
3
+ <path
4
+ d="M11.28,6.13a.24.24,0,0,0-.12-.24C9.9,5.1,7,3.86,1.51,3.79a.47.47,0,0,0-.36.14A.48.48,0,0,0,1,4.29V20.05a.49.49,0,0,0,.49.5c5.15.07,8,1.15,9.39,1.93a.23.23,0,0,0,.25,0,.26.26,0,0,0,.12-.21S11.24,6.43,11.28,6.13Z"
5
+ fill="currentColor"></path>
6
+ <path
7
+ d="M19.25,17.45a.76.76,0,0,1-.62.74,8.34,8.34,0,0,0-4.3,2.25,8.28,8.28,0,0,0-1,1.43.26.26,0,0,0,0,.3.26.26,0,0,0,.29,0,21.05,21.05,0,0,1,8.88-1.67.49.49,0,0,0,.49-.5V4.29a.48.48,0,0,0-.15-.36.47.47,0,0,0-.36-.14c-1.11,0-2.11.08-3,.17a.26.26,0,0,0-.22.25Z"
8
+ fill="currentColor"></path>
9
+ <path
10
+ d="M17.57,16.9a.25.25,0,0,0,.18-.24V1.73a.24.24,0,0,0-.11-.2.23.23,0,0,0-.23,0,7.74,7.74,0,0,0-3.08,1.94,5.49,5.49,0,0,0-1.58,3V19.31a.24.24,0,0,0,.16.23.26.26,0,0,0,.28-.06l0,0A9.31,9.31,0,0,1,17.57,16.9Z"
11
+ fill="currentColor"></path>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M1.62482 0.258331C1.51043 0.389983 1.44119 0.561906 1.44119 0.750001V10.3676L1.4412 10.3699C1.44215 10.686 1.53063 10.9957 1.6968 11.2646C1.86298 11.5335 2.10037 11.7511 2.38267 11.8934L2.38475 11.8944L6.22971 13.8169L6.56721 13.1471L6.2318 13.8179L6.23097 13.8175C6.49123 13.9484 6.78058 14.0107 7.07165 13.9985C7.36319 13.9863 7.64677 13.8997 7.89545 13.7471C8.14414 13.5945 8.34968 13.3808 8.49255 13.1264C8.63542 12.8719 8.71088 12.5852 8.71176 12.2934L8.71177 12.2911V12.0794H10.8471C11.301 12.0794 11.7364 11.899 12.0575 11.578C12.3785 11.257 12.5588 10.8216 12.5588 10.3676V1.71176C12.5588 1.25778 12.3785 0.822382 12.0575 0.501364C11.7364 0.180347 11.301 0 10.8471 0H2.19143H2.19119C2.00431 0 1.83339 0.0683517 1.70208 0.181419C1.67435 0.205263 1.64855 0.230985 1.62482 0.258331ZM8.71177 10.5794H10.8471C10.9032 10.5794 10.9571 10.5571 10.9968 10.5174C11.0365 10.4776 11.0588 10.4238 11.0588 10.3676V1.71176C11.0588 1.6556 11.0365 1.60174 10.9968 1.56202C10.9571 1.52231 10.9032 1.5 10.8471 1.5H5.37347L7.76771 2.69493L7.77028 2.69621L7.77028 2.69621C8.05518 2.83976 8.29429 3.06007 8.46064 3.33229C8.62648 3.60366 8.71343 3.91584 8.71177 4.23382L8.71175 4.2368L7.96177 4.23158H8.71177V4.23382V10.5794Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M6.875 0H2.5C2.10218 0 1.72064 0.158035 1.43934 0.43934C1.15804 0.720644 1 1.10218 1 1.5V12.5C1 12.8978 1.15804 13.2794 1.43934 13.5607C1.72064 13.842 2.10217 14 2.5 14H11.5C11.8978 14 12.2794 13.842 12.5607 13.5607C12.842 13.2794 13 12.8978 13 12.5V6.125H7.5C7.15482 6.125 6.875 5.84518 6.875 5.5V0ZM12.5821 4.875L8.125 0.417893V4.875H12.5821Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6.5h-9.5a.51.51 0 0 1-.36-.15L8.8 5a1.52 1.52 0 0 0-1.08-.5H4.29A1.79 1.79 0 0 0 2.5 6.29v11.42a1.79 1.79 0 0 0 1.79 1.79h15.42a1.79 1.79 0 0 0 1.79-1.79V8A1.5 1.5 0 0 0 20 6.5Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 12 16" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M4 5h4c1.7 0 2-1.3 2-3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2 0 1.7.3 3 2 3Zm0-3V1c0-.6.5-1 1-1h2c.5 0 1 .4 1 1v1.3c0 .6-.4.7-1 .7H5a1 1 0 0 1-1-1Z"
4
+ fill="currentColor" fill-rule="nonzero" />
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M19.5 7.5h-15A.5.5 0 0 0 4 8v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8a.5.5 0 0 0-.5-.5Zm-9.25 13a.75.75 0 0 1-1.5 0v-9a.75.75 0 0 1 1.5 0Zm5 0a.75.75 0 0 1-1.5 0v-9a.75.75 0 0 1 1.5 0Z" fill="currentColor"></path><path d="M22 4h-4.75a.25.25 0 0 1-.25-.25V2.5A2.5 2.5 0 0 0 14.5 0h-5A2.5 2.5 0 0 0 7 2.5v1.25a.25.25 0 0 1-.25.25H2a1 1 0 0 0 0 2h20a1 1 0 0 0 0-2ZM9 3.75V2.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v1.25a.25.25 0 0 1-.25.25h-5.5A.25.25 0 0 1 9 3.75Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="currentColor" d="M0 12a3.25 3.25 0 1 0 6.5 0A3.25 3.25 0 1 0 0 12"></path><path fill="currentColor" d="M8.75 12a3.25 3.25 0 1 0 6.5 0 3.25 3.25 0 1 0-6.5 0"></path><path fill="currentColor" d="M17.5 12a3.25 3.25 0 1 0 6.5 0 3.25 3.25 0 1 0-6.5 0"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path fill="currentColor" d="M8.75 3.25a3.25 3.25 0 1 0 6.5 0 3.25 3.25 0 1 0-6.5 0"></path><path fill="currentColor" d="M8.75 12a3.25 3.25 0 1 0 6.5 0 3.25 3.25 0 1 0-6.5 0"></path><path fill="currentColor" d="M8.75 20.75a3.25 3.25 0 1 0 6.5 0 3.25 3.25 0 1 0-6.5 0"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M9.38287 1.5C9.22907 1.5 9.0768 1.53045 8.93482 1.5896C8.79285 1.64875 8.664 1.73542 8.55569 1.84462L8.55435 1.84596L2.48546 7.934C2.17833 8.24673 2.00623 8.66755 2.00623 9.10593C2.00623 9.545 2.17888 9.96647 2.48693 10.2793L4.19162 12.0128C4.34286 12.1669 4.52384 12.2898 4.72293 12.3734C4.92203 12.457 5.13578 12.5 5.3517 12.5C5.56762 12.5 5.78137 12.457 5.98046 12.3734C6.17956 12.2898 6.35999 12.1674 6.51123 12.0133L6.51396 12.0105L12.2112 6.2654C12.5029 5.97128 12.9778 5.9693 13.2719 6.26096C13.566 6.55263 13.568 7.0275 13.2763 7.32161L7.5818 13.064C7.58132 13.0645 7.58084 13.065 7.58036 13.0654C7.28978 13.3611 6.94326 13.5961 6.56098 13.7565C6.17807 13.9172 5.76697 14 5.3517 14C4.93643 14 4.52532 13.9172 4.14241 13.7565C3.75955 13.5958 3.41255 13.3604 3.1217 13.0641C3.12167 13.0641 3.12174 13.0641 3.1217 13.0641L1.41805 11.3317C0.83373 10.7382 0.506226 9.93878 0.506226 9.10593C0.506226 8.27307 0.83373 7.47362 1.41805 6.88014L1.42131 6.87682L7.49069 0.788317C7.49095 0.788054 7.49121 0.787792 7.49147 0.787529C7.73906 0.538109 8.03354 0.340119 8.35796 0.204961C8.68272 0.0696598 9.03106 0 9.38287 0C9.73469 0 10.083 0.0696596 10.4078 0.204961C10.732 0.340052 11.0264 0.537911 11.2739 0.787154C11.2743 0.787542 11.2747 0.787929 11.2751 0.788317L11.9506 1.46381C11.9509 1.4642 11.9513 1.46458 11.9517 1.46497C12.201 1.71248 12.3988 2.00682 12.5339 2.33108C12.6692 2.65584 12.7389 3.00418 12.7389 3.35599C12.7389 3.70781 12.6692 4.05615 12.5339 4.38091C12.3989 4.70496 12.2012 4.99914 11.9522 5.24655C11.9516 5.2471 11.9511 5.24764 11.9506 5.24818L6.57362 10.6443C6.57334 10.6445 6.57307 10.6448 6.5728 10.6451C6.41423 10.8047 6.22567 10.9315 6.01795 11.018C5.80987 11.1047 5.58669 11.1493 5.36127 11.1493C5.13586 11.1493 4.91268 11.1047 4.7046 11.018C4.49652 10.9313 4.30767 10.8043 4.14893 10.6443L4.14366 10.6389L3.81262 10.2984C3.65518 10.1408 3.53007 9.95392 3.44438 9.74824C3.3577 9.54016 3.31306 9.31698 3.31306 9.09156C3.31306 8.86615 3.35769 8.64297 3.44438 8.43489C3.53106 8.22684 3.65807 8.038 3.81809 7.87928C3.81811 7.87926 3.81807 7.8793 3.81809 7.87928L7.42794 4.29812C7.722 4.0064 8.19687 4.0083 8.48859 4.30236C8.78031 4.59642 8.77842 5.07129 8.48436 5.36301L4.87451 8.94416C4.85506 8.96346 4.83956 8.98647 4.82902 9.01175C4.81849 9.03704 4.81306 9.06417 4.81306 9.09156C4.81306 9.11896 4.81849 9.14608 4.82902 9.17137C4.83956 9.19666 4.855 9.21961 4.87445 9.23891L4.88413 9.24851L5.21562 9.58964C5.23455 9.6083 5.25691 9.62316 5.28146 9.63339C5.30675 9.64392 5.33388 9.64935 5.36127 9.64935C5.38867 9.64935 5.41579 9.64392 5.44108 9.63339C5.46637 9.62285 5.48932 9.60741 5.50862 9.58796L5.50984 9.58673L10.8911 4.18629L10.8942 4.18318C11.0034 4.07487 11.0901 3.94601 11.1493 3.80404C11.2084 3.66207 11.2389 3.5098 11.2389 3.35599C11.2389 3.20219 11.2084 3.04991 11.1493 2.90794C11.0901 2.76597 11.0034 2.63712 10.8942 2.52881L10.8921 2.52664L10.2122 1.8468L10.2101 1.84462C10.1018 1.73542 9.9729 1.64875 9.83093 1.5896C9.68895 1.53045 9.53667 1.5 9.38287 1.5Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M0.21833 9.57647L1.69597 1.63418C1.8722 0.686948 2.69874 0 3.66223 0H4.09086C5.1593 0 6.03906 0.839791 6.0887 1.90708L6.16277 3.49951H7.83723L7.9113 1.90708C7.96094 0.839791 8.8407 0 9.90914 0H10.3378C11.3013 0 12.1278 0.686948 12.304 1.63418L13.7817 9.57647C13.9227 9.94048 14 10.3362 14 10.75C14 12.5449 12.5449 14 10.75 14C8.95507 14 7.5 12.5449 7.5 10.75C7.5 10.6467 7.50482 10.5445 7.51425 10.4437L7.65119 7.49951H6.34881L6.48575 10.4437C6.49518 10.5445 6.5 10.6467 6.5 10.75C6.5 12.5449 5.04493 14 3.25 14C1.45507 14 0 12.5449 0 10.75C0 10.3362 0.0773314 9.94048 0.21833 9.57647ZM3.25 9C2.2835 9 1.5 9.7835 1.5 10.75C1.5 11.7165 2.2835 12.5 3.25 12.5C4.2165 12.5 5 11.7165 5 10.75C5 9.7835 4.2165 9 3.25 9ZM10.75 9C9.7835 9 9 9.7835 9 10.75C9 11.7165 9.7835 12.5 10.75 12.5C11.7165 12.5 12.5 11.7165 12.5 10.75C12.5 9.7835 11.7165 9 10.75 9Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.743,6.193.243,8.7a.75.75,0,0,0,1.062,1.06l2.5-2.5A.75.75,0,0,0,2.743,6.193Z" fill="currentColor"
3
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
4
+ <path
5
+ d="M9.831,4.146l-.884-1.2.526-1.463A.744.744,0,0,0,8.518.527l-1.463.525L5.855.17A.748.748,0,0,0,5.073.105a.765.765,0,0,0-.426.678L4.631,2.326l-1.285.923A.76.76,0,0,0,3.036,4a.735.735,0,0,0,.524.586L5,5,5.416,6.44A.735.735,0,0,0,6,6.964a.761.761,0,0,0,.749-.31l.923-1.285,1.542-.016A.765.765,0,0,0,9.9,4.927.746.746,0,0,0,9.831,4.146Z"
6
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
7
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M11 21.66H1a1 1 0 0 0 0 2h10a1 1 0 0 0 0-2Z" fill="currentColor"></path><path d="M20.51 6.43 14.86.78a1.49 1.49 0 0 0-2.12 0L5 8.54A1 1 0 0 0 5 10l6.36 6.37a1 1 0 0 0 1.41 0l7.76-7.76a1.5 1.5 0 0 0-.02-2.18Z" fill="currentColor"></path><path d="M1.8 19.11a1.75 1.75 0 0 0 1.2.55h4.66a1.84 1.84 0 0 0 1.22-.53l1-1.13a.5.5 0 0 0 0-.69L4.1 11.59a.52.52 0 0 0-.71 0l-2.65 2.7a2.59 2.59 0 0 0 0 3.6Z" fill="currentColor"></path><path d="M16.5 21.66h-2a1 1 0 1 0 0 2h2a1 1 0 0 0 0-2Z" fill="currentColor"></path><path d="M23 21.66h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M23.06.87a3.07 3.07 0 0 0-4.56.35l-9.93 13a.25.25 0 0 0 .09.37 5.08 5.08 0 0 1 2.4 2.46.26.26 0 0 0 .41.07L23.1 5.26a3.08 3.08 0 0 0-.04-4.39Z" fill="currentColor"></path><path d="M7.88 15.88a3.66 3.66 0 0 0-4.83 1.83c-.19.43-.33.83-.47 1.2C2.19 20 2 20.53 1 20.79a1.34 1.34 0 0 0-.22 2.51 7.47 7.47 0 0 0 3.14.7 7 7 0 0 0 2.47-.45 6 6 0 0 0 3.32-2.85 3.65 3.65 0 0 0-1.83-4.82Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M3 1.5C3 0.671573 3.67157 0 4.5 0H12.5C13.3284 0 14 0.671573 14 1.5V3.5C14 4.32843 13.3284 5 12.5 5H4.5C3.67157 5 3 4.32843 3 3.5V3.25H2.25C1.83579 3.25 1.5 3.58579 1.5 4V5C1.5 5.69036 2.05964 6.25 2.75 6.25H6C7.51878 6.25 8.75 7.48122 8.75 9V9.02074C9.45943 9.13976 10 9.75675 10 10.5V13.5C10 13.7761 9.77614 14 9.5 14H6.5C6.22386 14 6 13.7761 6 13.5V10.5C6 9.75675 6.54057 9.13976 7.25 9.02074V9C7.25 8.30964 6.69036 7.75 6 7.75H2.75C1.23122 7.75 0 6.51878 0 5V4C0 2.75736 1.00736 1.75 2.25 1.75H3V1.5Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.584,2.9A1.772,1.772,0,0,0,7.093.425L3.628,3.17a.51.51,0,0,0-.144.185L2.851,4.741a.25.25,0,0,1-.232.146,2.515,2.515,0,0,0-1.831.731c-.653.654-.724,2.8-.724,3.69a.625.625,0,0,0,.625.625c.891,0,3.036-.07,3.69-.724A2.518,2.518,0,0,0,5.11,7.38a.249.249,0,0,1,.147-.232l1.388-.631a.487.487,0,0,0,.186-.144ZM3.5,8.32a5.4,5.4,0,0,1-1.892.334.249.249,0,0,1-.265-.265A5.449,5.449,0,0,1,1.672,6.5,1.289,1.289,0,0,1,3.5,8.32Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M2.65 16.4a.5.5 0 0 0-.49-.13.52.52 0 0 0-.35.38L.39 23a.51.51 0 0 0 .6.6l6.36-1.42a.52.52 0 0 0 .38-.35.5.5 0 0 0-.13-.49Z" fill="currentColor"></path><path d="m17.85 7.21-11 11a.24.24 0 0 0 0 .35l1.77 1.77a.5.5 0 0 0 .71 0L20 9.68A.48.48 0 0 0 20 9l-1.79-1.79a.25.25 0 0 0-.36 0Z" fill="currentColor"></path><path d="M16.79 5.79 15 4a.48.48 0 0 0-.7 0L3.71 14.63a.51.51 0 0 0 0 .71l1.77 1.77a.24.24 0 0 0 .35 0l11-11a.25.25 0 0 0-.04-.32Z" fill="currentColor"></path><path d="M22.45 1.55a4 4 0 0 0-5.66 0l-.71.71a.51.51 0 0 0 0 .71l5 4.95a.52.52 0 0 0 .71 0l.71-.71a4 4 0 0 0-.05-5.66Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5,8.5C2.744,8.5,1.15,6.779.384,5.952a1.419,1.419,0,0,1,0-1.943C1.08,3.259,2.708,1.5,5,1.5S8.92,3.258,9.616,4.009h0a1.419,1.419,0,0,1,0,1.943C8.85,6.779,7.256,8.5,5,8.5ZM5,3A4.948,4.948,0,0,0,1.654,4.847a.25.25,0,0,0,.009.352A5.18,5.18,0,0,0,5,7,4.9,4.9,0,0,0,8.31,5.153a.251.251,0,0,0,0-.344A4.9,4.9,0,0,0,5,3Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ <path d="M3.750 5.000 A1.250 1.250 0 1 0 6.250 5.000 A1.250 1.250 0 1 0 3.750 5.000 Z" fill="currentColor"
6
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.938,9.26,8.083,5.876A3.748,3.748,0,1,0,1.25,3.75a3.72,3.72,0,0,0,.667,2.126L.062,9.26A.5.5,0,0,0,.5,10a.44.44,0,0,0,.089-.008l2.75-.5A.5.5,0,0,0,3.72,9.17l.628-1.736A3.686,3.686,0,0,0,5,7.5a3.686,3.686,0,0,0,.652-.066L6.28,9.17a.5.5,0,0,0,.381.322l2.75.5A.44.44,0,0,0,9.5,10a.5.5,0,0,0,.438-.74ZM5,6A2.25,2.25,0,1,1,7.25,3.75,2.252,2.252,0,0,1,5,6Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M3 1.5v21a1.5 1.5 0 0 0 3 0v-21a1.5 1.5 0 0 0-3 0Z" fill="currentColor"></path><path d="M8 14.85a1 1 0 0 0 .5.15 1 1 0 0 0 .5-.11l11.5-6a1 1 0 0 0 0-1.78L9 1.11A1 1 0 0 0 7.5 2v12a1 1 0 0 0 .5.85Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M4.0238 1.085C5.00432 1.15605 6.02603 1.63403 7.00407 2.60139C7.98187 1.6343 9.00267 1.15723 9.9823 1.08776C11.0879 1.00934 12.0653 1.4562 12.7725 2.16121C14.1628 3.54735 14.5994 6.05556 12.8742 7.78081C12.8684 7.78663 12.8624 7.7923 12.8563 7.79783L7.33974 12.7947C7.14923 12.9673 6.85891 12.9673 6.6684 12.7947L1.15183 7.79783C1.14573 7.7923 1.13976 7.78663 1.13394 7.78081C-0.600286 6.04658 -0.166014 3.53807 1.22889 2.153C1.93778 1.44911 2.91716 1.00482 4.0238 1.085Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7 0.276855C6.80157 0.276855 6.60728 0.333623 6.44007 0.440458C6.27499 0.545928 6.1431 0.695846 6.05952 0.872901L4.47196 4.07799C4.46884 4.08429 4.46585 4.09065 4.463 4.09708C4.46229 4.09867 4.46117 4.10006 4.45976 4.10109C4.45835 4.10212 4.4567 4.10277 4.45496 4.10296C4.44887 4.10363 4.44279 4.10442 4.43673 4.10532L0.941149 4.62318C0.747945 4.64197 0.563705 4.71447 0.40939 4.83267C0.249718 4.95498 0.128936 5.12096 0.0616758 5.31051C-0.00558436 5.50006 -0.0164375 5.70505 0.0304316 5.90065C0.0771192 6.09548 0.179088 6.27267 0.324054 6.41092L2.88283 8.87974L2.88279 8.87979L2.88866 8.88527C2.89231 8.88869 2.89506 8.89296 2.89664 8.89771C2.89822 8.90245 2.89859 8.90752 2.89771 8.91244L2.89715 8.91571L2.28741 12.4841L2.28726 12.485C2.25376 12.6784 2.27512 12.8773 2.34893 13.0591C2.42284 13.2413 2.5464 13.399 2.70553 13.5144C2.86467 13.6297 3.05299 13.6981 3.24907 13.7117C3.44476 13.7253 3.64034 13.6838 3.81364 13.592L3.8137 13.5919L3.81469 13.5914L6.96417 11.9269C6.97546 11.922 6.98767 11.9194 7.00002 11.9194C7.01237 11.9194 7.02457 11.922 7.03587 11.9269L10.1853 13.5914L10.1859 13.5917C10.3593 13.6838 10.5551 13.7254 10.7509 13.7117C10.947 13.6981 11.1353 13.6297 11.2945 13.5144C11.4536 13.399 11.5772 13.2413 11.6511 13.0591C11.7249 12.8773 11.7462 12.6785 11.7128 12.4852L11.7126 12.4841L11.1029 8.9157L11.1023 8.91244C11.1014 8.90752 11.1018 8.90245 11.1034 8.89771C11.1049 8.89297 11.1077 8.88869 11.1113 8.88527L11.1114 8.88532L11.1172 8.87974L13.676 6.41089C13.8209 6.27264 13.9229 6.09547 13.9696 5.90065C14.0164 5.70505 14.0056 5.50006 13.9383 5.31051C13.8711 5.12096 13.7503 4.95498 13.5906 4.83267C13.4363 4.71447 13.2521 4.64197 13.0589 4.62318L9.56328 4.10532C9.55722 4.10442 9.55114 4.10363 9.54505 4.10296C9.54331 4.10277 9.54165 4.10212 9.54024 4.10109C9.53883 4.10006 9.53772 4.09867 9.53701 4.09708C9.53416 4.09065 9.53117 4.08429 9.52805 4.07799L7.94048 0.872887C7.8569 0.695838 7.72501 0.545925 7.55994 0.440458C7.39272 0.333623 7.19843 0.276855 7 0.276855Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M13 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0V1Zm0 19.234a1 1 0 1 0-2 0V23a1 1 0 1 0 2 0v-2.766ZM4.719 12a1 1 0 0 1-1 1H1a1 1 0 1 1 0-2h2.719a1 1 0 0 1 1 1ZM23 13a1 1 0 1 0 0-2h-2.719a1 1 0 0 0 0 2H23ZM3.339 21.95a1 1 0 0 1 0-1.415l2.016-2.016a1 1 0 0 1 1.415 1.414l-2.017 2.016a1 1 0 0 1-1.414 0ZM20.661 3.73a1 1 0 0 0-1.414-1.414L17.23 4.333a1 1 0 0 0 1.415 1.414L20.66 3.73ZM3.339 2.317a1 1 0 0 0 0 1.415l2.016 2.016A1 1 0 1 0 6.77 4.333L4.753 2.316a1 1 0 0 0-1.414 0ZM20.661 20.27a1 1 0 0 1-1.414 1.415l-2.017-2.017a1 1 0 0 1 1.415-1.414l2.016 2.017ZM11.103 4.537c.138-.275.418-.594.897-.594.48 0 .758.32.896.594l1.76 3.52 3.364.336c.307.03.652.186.824.566.191.42.05.842-.218 1.11l-2.803 2.803 1.041 3.814a.973.973 0 0 1-.278.994.974.974 0 0 1-1.105.141L12 16.08l-3.452 1.728c-.31.154-.754.21-1.125-.118-.362-.32-.357-.746-.276-1.043l1.03-3.776-2.79-2.79c-.225-.226-.414-.59-.271-1.024.148-.452.538-.634.874-.668l3.353-.336 1.76-3.517Z" clip-rule="evenodd"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M17.66 1.143a.75.75 0 0 1 1.451 0c.33 1.262.693 2.037 1.235 2.61.546.577 1.344 1.027 2.705 1.484a.75.75 0 0 1 0 1.422c-1.36.457-2.16.907-2.705 1.484-.542.574-.904 1.348-1.235 2.61a.75.75 0 0 1-1.45 0c-.331-1.262-.694-2.036-1.236-2.61-.545-.577-1.344-1.027-2.705-1.484a.75.75 0 0 1 0-1.422c1.361-.457 2.16-.907 2.705-1.483.542-.574.905-1.35 1.235-2.61ZM8.052 5.322a.75.75 0 0 1 1.451 0c.595 2.283 1.27 3.774 2.33 4.9 1.062 1.129 2.584 1.967 5.031 2.792a.75.75 0 0 1 0 1.422c-2.447.824-3.969 1.663-5.031 2.792-1.06 1.126-1.735 2.617-2.33 4.9a.75.75 0 0 1-1.451 0c-.596-2.283-1.27-3.774-2.33-4.9C4.659 16.099 3.138 15.26.69 14.436a.75.75 0 0 1 0-1.422c2.448-.825 3.97-1.663 5.032-2.792 1.06-1.126 1.734-2.617 2.33-4.9Zm11.85 10.147a.75.75 0 0 0-.725.556c-.24.9-.497 1.421-.863 1.8-.37.384-.926.698-1.923 1.026a.75.75 0 0 0 0 1.425c.997.327 1.553.641 1.923 1.025.366.38.623.9.863 1.8a.75.75 0 0 0 1.45 0c.24-.9.496-1.42.862-1.8.37-.384.926-.698 1.923-1.025a.75.75 0 0 0 0-1.425c-.997-.328-1.553-.642-1.923-1.026-.366-.379-.622-.9-.863-1.8a.75.75 0 0 0-.724-.556Z" clip-rule="evenodd"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M9.25 2.25C9.25 3.22966 8.62389 4.06309 7.75 4.37197V4.75C7.75 5.14782 7.90804 5.52936 8.18934 5.81066C8.47064 6.09196 8.85218 6.25 9.25 6.25C10.0456 6.25 10.8087 6.56607 11.3713 7.12868C11.9339 7.69129 12.25 8.45435 12.25 9.25V9.62803C13.1239 9.93691 13.75 10.7703 13.75 11.75C13.75 12.9926 12.7426 14 11.5 14C10.2574 14 9.25 12.9926 9.25 11.75C9.25 10.7703 9.87611 9.93691 10.75 9.62803V9.25C10.75 8.85217 10.592 8.47064 10.3107 8.18934C10.0294 7.90803 9.64782 7.75 9.25 7.75C8.45435 7.75 7.69129 7.43393 7.12868 6.87132C7.08424 6.82688 7.04133 6.78118 7 6.73432C6.95867 6.78118 6.91576 6.82688 6.87132 6.87132C6.30871 7.43393 5.54565 7.75 4.75 7.75C4.35218 7.75 3.97064 7.90803 3.68934 8.18934C3.40804 8.47064 3.25 8.85217 3.25 9.25V9.62803C4.12389 9.93691 4.75 10.7703 4.75 11.75C4.75 12.9926 3.74264 14 2.5 14C1.25736 14 0.25 12.9926 0.25 11.75C0.25 10.7703 0.876106 9.93691 1.75 9.62803V9.25C1.75 8.45435 2.06607 7.69129 2.62868 7.12868C3.19129 6.56607 3.95435 6.25 4.75 6.25C5.14782 6.25 5.52936 6.09196 5.81066 5.81066C6.09196 5.52936 6.25 5.14782 6.25 4.75V4.37197C5.37611 4.06309 4.75 3.22966 4.75 2.25C4.75 1.00736 5.75736 0 7 0C8.24264 0 9.25 1.00736 9.25 2.25Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7.70711 1.29289C7.31658 0.902369 6.68342 0.902369 6.29289 1.29289L0.292893 7.29289C-0.0976311 7.68342 -0.0976311 8.31658 0.292893 8.70711C0.683417 9.09763 1.31658 9.09763 1.70711 8.70711L2 8.41421V13C2 13.5523 2.44772 14 3 14H6V11C6 10.4477 6.44772 10 7 10C7.55228 10 8 10.4477 8 11V14H11C11.5523 14 12 13.5523 12 13V8.41421L12.2929 8.70711C12.6834 9.09763 13.3166 9.09763 13.7071 8.70711C14.0976 8.31658 14.0976 7.68342 13.7071 7.29289L7.70711 1.29289Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M8.63507 0.153814C8.87878 0.0522763 9.1402 0 9.40422 0C9.66824 0 9.92965 0.0522763 10.1734 0.153814C10.4171 0.255351 10.6383 0.40414 10.8242 0.591597L10.8254 0.592774L13.4125 3.20984C13.598 3.39493 13.7454 3.61469 13.8462 3.85664C13.9477 4.10036 14 4.36177 14 4.6258C14 4.88982 13.9477 5.15123 13.8462 5.39495C13.745 5.63793 13.5968 5.85853 13.4101 6.0441L11.1113 8.34291C10.7208 8.73343 10.0876 8.73343 9.69711 8.34291C9.30658 7.95238 9.30658 7.31921 9.69711 6.92869L11.9971 4.62869L12 4.62579L11.993 4.61886L11.9931 4.61882L9.40422 2L9.40133 2.00291L9.40133 2.00291L7.07132 4.33291C6.68079 4.72343 6.04763 4.72343 5.6571 4.3329C5.26658 3.94238 5.26658 3.30921 5.65711 2.91869L7.9859 0.589901C8.17148 0.403243 8.39208 0.255045 8.63507 0.153814ZM4.3329 5.62699C4.72343 6.01752 4.72343 6.65068 4.33291 7.04121L2.00291 9.37125L2.00001 9.37415L2.00291 9.37703L2.00291 9.37704L4.6229 11.997L4.6258 11.9999L4.62869 11.997L4.62869 11.997L6.95869 9.66706C7.34922 9.27654 7.98239 9.27654 8.37291 9.66706C8.76343 10.0576 8.76343 10.6908 8.3729 11.0813L6.0441 13.4101C5.85852 13.5967 5.63793 13.7449 5.39495 13.8461C5.15123 13.9477 4.88982 13.9999 4.6258 13.9999C4.36177 13.9999 4.10036 13.9477 3.85664 13.8461C3.61365 13.7449 3.39304 13.5967 3.20746 13.41L0.589943 10.7925C0.403265 10.6069 0.255053 10.3863 0.153814 10.1433C0.0522763 9.89958 0 9.63817 0 9.37414C0 9.11012 0.0522763 8.84871 0.153814 8.60499C0.255046 8.36201 0.403244 8.1414 0.589904 7.95583L2.91869 5.62701C3.30921 5.23648 3.94237 5.23647 4.3329 5.62699ZM9.20711 6.20717C9.59763 5.81664 9.59763 5.18348 9.20711 4.79295C8.81658 4.40243 8.18342 4.40243 7.79289 4.79295L4.79289 7.79295C4.40237 8.18348 4.40237 8.81664 4.79289 9.20717C5.18342 9.59769 5.81658 9.59769 6.20711 9.20717L9.20711 6.20717Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.500 5.000 A1.500 1.500 0 1 0 6.500 5.000 A1.500 1.500 0 1 0 3.500 5.000 Z" fill="currentColor"
3
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
4
+ <path d="M5,2.25a.625.625,0,0,1-.625-.625v-1a.625.625,0,0,1,1.25,0v1A.625.625,0,0,1,5,2.25Z" fill="currentColor"
5
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
6
+ <path d="M6.945,3.055a.623.623,0,0,1,0-.883l.707-.708a.625.625,0,0,1,.884.884l-.708.707A.623.623,0,0,1,6.945,3.055Z"
7
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
8
+ <path d="M7.75,5a.625.625,0,0,1,.625-.625h1a.625.625,0,0,1,0,1.25h-1A.625.625,0,0,1,7.75,5Z" fill="currentColor"
9
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
10
+ <path d="M6.945,6.945a.623.623,0,0,1,.883,0l.708.707a.625.625,0,0,1-.884.884l-.707-.708A.623.623,0,0,1,6.945,6.945Z"
11
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
12
+ <path d="M5,7.75a.625.625,0,0,1,.625.625v1a.625.625,0,0,1-1.25,0v-1A.625.625,0,0,1,5,7.75Z" fill="currentColor"
13
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
14
+ <path
15
+ d="M3.055,6.945a.623.623,0,0,1,0,.883l-.707.708a.625.625,0,0,1-.884-.884l.708-.707A.623.623,0,0,1,3.055,6.945Z"
16
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
17
+ <path d="M2.25,5a.625.625,0,0,1-.625.625h-1a.625.625,0,0,1,0-1.25h1A.625.625,0,0,1,2.25,5Z" fill="currentColor"
18
+ stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
19
+ <path
20
+ d="M3.055,3.055a.623.623,0,0,1-.883,0l-.708-.707a.625.625,0,0,1,.884-.884l.707.708A.623.623,0,0,1,3.055,3.055Z"
21
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
22
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7 2C5.89543 2 5 2.89543 5 4V5H9V4C9 2.89543 8.10457 2 7 2ZM3 4V5C2.17159 5.00002 1.50003 5.67158 1.50003 6.5V12.5C1.50003 13.3284 2.1716 14 3.00003 14H11C11.8285 14 12.5 13.3284 12.5 12.5V6.5C12.5 5.67157 11.8285 5 11 5H11V4C11 1.79086 9.20914 0 7 0C4.79086 0 3 1.79086 3 4ZM7.00003 10.75C7.69039 10.75 8.25003 10.1904 8.25003 9.5C8.25003 8.80964 7.69039 8.25 7.00003 8.25C6.30967 8.25 5.75003 8.80964 5.75003 9.5C5.75003 10.1904 6.30967 10.75 7.00003 10.75Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 9.5h-.75V6.75A6.75 6.75 0 0 0 5.53 4.81a1.25 1.25 0 0 0 2.4.72 4.25 4.25 0 0 1 8.32 1.22V9a.5.5 0 0 1-.5.5H4.5a2 2 0 0 0-2 2V22a2 2 0 0 0 2 2h15a2 2 0 0 0 2-2V11.5a2 2 0 0 0-2-2Zm-7.5 9a2 2 0 1 1 2-2 2 2 0 0 1-2 2Z" fill="currentColor"></path></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M10.2929 1.29289C10.6834 0.902369 11.3166 0.902369 11.7071 1.29289L13.7071 3.29289C14.0976 3.68342 14.0976 4.31658 13.7071 4.70711C13.3166 5.09763 12.6834 5.09763 12.2929 4.70711L11 3.41421L9.91422 4.50001L11.2071 5.79289C11.5976 6.18342 11.5976 6.81658 11.2071 7.20711C10.8166 7.59763 10.1834 7.59763 9.79289 7.20711L8.50001 5.91422L7.44619 6.96804C7.79807 7.56355 8 8.2582 8 9C8 11.2091 6.20914 13 4 13C1.79086 13 0 11.2091 0 9C0 6.79086 1.79086 5 4 5C4.74181 5 5.43646 5.20193 6.03198 5.55383L7.78929 3.79651L7.79289 3.79289L7.79651 3.78929L10.2929 1.29289ZM2 9C2 7.89543 2.89543 7 4 7C5.10457 7 6 7.89543 6 9C6 10.1046 5.10457 11 4 11C2.89543 11 2 10.1046 2 9Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M2 6C2 3.79086 3.79086 2 6 2C8.20914 2 10 3.79086 10 6C10 8.20914 8.20914 10 6 10C3.79086 10 2 8.20914 2 6ZM6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12C7.29578 12 8.49562 11.5892 9.47642 10.8908L12.2929 13.7073C12.6834 14.0978 13.3166 14.0978 13.7071 13.7073C14.0976 13.3168 14.0976 12.6836 13.7071 12.2931L10.8907 9.47665C11.5892 8.49581 12 7.29588 12 6C12 2.68629 9.31371 0 6 0Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M5.55693 0.689231L5.09385 1.88462L3.50001 2.78923L2.22924 2.59538C2.01764 2.56666 1.80228 2.6015 1.61053 2.69546C1.41877 2.78942 1.25928 2.93826 1.15232 3.12308L0.721546 3.87692C0.611163 4.06468 0.560306 4.2815 0.575687 4.49876C0.591069 4.71602 0.671965 4.92351 0.8077 5.09385L1.61539 6.09538V7.90462L0.829238 8.90615C0.693503 9.07649 0.612607 9.28398 0.597226 9.50124C0.581845 9.7185 0.632702 9.93532 0.743085 10.1231L1.17385 10.8769C1.28082 11.0617 1.44031 11.2106 1.63207 11.3045C1.82382 11.3985 2.03918 11.4333 2.25078 11.4046L3.52155 11.2108L5.09385 12.1154L5.55693 13.3108C5.63503 13.5132 5.77243 13.6873 5.95114 13.8102C6.12985 13.9332 6.34153 13.9994 6.55847 14H7.46308C7.68002 13.9994 7.89171 13.9332 8.07042 13.8102C8.24913 13.6873 8.38653 13.5132 8.46462 13.3108L8.9277 12.1154L10.5 11.2108L11.7708 11.4046C11.9824 11.4333 12.1977 11.3985 12.3895 11.3045C12.5812 11.2106 12.7407 11.0617 12.8477 10.8769L13.2785 10.1231C13.3889 9.93532 13.4397 9.7185 13.4243 9.50124C13.4089 9.28398 13.3281 9.07649 13.1923 8.90615L12.3846 7.90462V6.09538L13.1708 5.09385C13.3065 4.92351 13.3874 4.71602 13.4028 4.49876C13.4182 4.2815 13.3673 4.06468 13.2569 3.87692L12.8262 3.12308C12.7192 2.93826 12.5597 2.78942 12.368 2.69546C12.1762 2.6015 11.9608 2.56666 11.7492 2.59538L10.4785 2.78923L8.90616 1.88462L8.44309 0.689231C8.36499 0.486838 8.22759 0.31275 8.04888 0.189767C7.87017 0.0667842 7.65848 0.00064083 7.44155 0H6.55847C6.34153 0.00064083 6.12985 0.0667842 5.95114 0.189767C5.77243 0.31275 5.63503 0.486838 5.55693 0.689231ZM7.00002 9.25C8.24266 9.25 9.25002 8.24264 9.25002 7C9.25002 5.75736 8.24266 4.75 7.00002 4.75C5.75737 4.75 4.75002 5.75736 4.75002 7C4.75002 8.24264 5.75737 9.25 7.00002 9.25Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M12.6386 0.0985955C12.7874 0.0483473 12.9459 0.0341004 13.1012 0.0570248C13.2566 0.0799495 13.4042 0.139392 13.5321 0.230469C13.66 0.321547 13.7645 0.441663 13.837 0.580955C13.9094 0.720246 13.9478 0.874739 13.949 1.03175L13.949 1.03542L13.949 11.0953C13.9478 11.2523 13.9094 11.4068 13.837 11.5461C13.7645 11.6854 13.66 11.8055 13.5321 11.8966C13.4042 11.9877 13.2566 12.0471 13.1012 12.07C12.9459 12.0929 12.7874 12.0787 12.6386 12.0285L12.634 12.0269L1.04902 7.98652C0.765478 7.8876 0.518418 7.70524 0.340369 7.46341C0.162321 7.22159 0.0615508 6.93158 0.051285 6.63145L0.0509949 6.61448V5.53045C0.0522212 5.22263 0.148816 4.92276 0.32748 4.67209C0.506144 4.42143 0.7581 4.2323 1.04868 4.13072L12.6386 0.0985955ZM2.02914 10.7685V9.6398L8.2278 11.8021C7.79859 13.0539 6.61147 13.9536 5.2142 13.9536C3.45514 13.9536 2.02914 12.5276 2.02914 10.7685Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M11 19a1.48 1.48 0 0 1-.7.41.27.27 0 0 0-.19.23L9.9 21.7a1.1 1.1 0 0 0 1.87.91l2.86-2.86a8.38 8.38 0 0 0 1.74-2.62 13.34 13.34 0 0 0 .39-3.22.26.26 0 0 0-.16-.25.28.28 0 0 0-.3.05Z" fill="currentColor"></path><path d="M5 13s2.52-2.54 5.3-5.32a.26.26 0 0 0 .05-.29.25.25 0 0 0-.25-.16 13.29 13.29 0 0 0-3.3.37 8.19 8.19 0 0 0-2.56 1.76l-2.85 2.85a1.1 1.1 0 0 0 .78 1.88l2.24-.27a.26.26 0 0 0 .22-.18A1.58 1.58 0 0 1 5 13Z" fill="currentColor"></path><path d="M5.62 16.85c-.9-.9-2.27-.75-3.41.38-.8.77-1.62 3.39-2.21 5.42a1.08 1.08 0 0 0 .27 1 1.1 1.1 0 0 0 1 .27c2-.56 4.6-1.39 5.4-2.19 1.14-1.13 1.29-2.5.38-3.4Z" fill="currentColor"></path><path d="M23.36 0c-1.33.27-4 .9-4.85 1.73L6.35 13.93a.28.28 0 0 0 0 .38l3.36 3.35a.25.25 0 0 0 .37 0L22.26 5.49C23.09 4.65 23.72 2 24 .63a.52.52 0 0 0-.15-.47.53.53 0 0 0-.49-.16Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M4.828,8.274a.248.248,0,0,0-.128-.1A5.474,5.474,0,0,1,2.616,6.883,3.122,3.122,0,0,1,2.4,6.647a.25.25,0,0,0-.413.037L.571,9.249a.5.5,0,0,0,.438.742h4a.5.5,0,0,0,.422-.768Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ <path
6
+ d="M9.262,6.605a.57.57,0,0,0,.062-.861L6.982,3.4,8.2,2.183A.625.625,0,0,0,7.317,1.3L6.1,2.518,3.756.176a.57.57,0,0,0-.4-.167l-.041,0A.569.569,0,0,0,2.9.238,4.549,4.549,0,0,0,9.262,6.605Z"
7
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
8
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M20 4a7.73 7.73 0 0 0-9.7-1L6.9 5.28a1 1 0 0 1-.56.16h-2A4.94 4.94 0 0 0 .83 6.91l-.24.24a2 2 0 0 0 0 2.85l1 1a.93.93 0 0 1 .29.64 3 3 0 0 0 .88 1.94l7.77 7.77a3 3 0 0 0 1.94.88.93.93 0 0 1 .64.29l1 1a2 2 0 0 0 2.83 0l.24-.25a4.94 4.94 0 0 0 1.47-3.53v-2a1 1 0 0 1 .16-.56L21 13.7A7.73 7.73 0 0 0 20 4Zm-4.21 13.4-2.48 2.48a1 1 0 0 1-1.41 0L4.12 12.1a1 1 0 0 1-.29-.71 1 1 0 0 1 .29-.7l2.47-2.48A.54.54 0 0 1 7 8.07a.5.5 0 0 1 .35.14l8.49 8.49a.51.51 0 0 1 0 .7Zm1.41-7.07a2.5 2.5 0 1 1 0-3.53 2.49 2.49 0 0 1 0 3.53Z" fill="currentColor"></path><path d="M2.75 2.5a.25.25 0 0 1 .25.25.75.75 0 0 0 1.5 0 .25.25 0 0 1 .25-.25.75.75 0 0 0 0-1.5.25.25 0 0 1-.25-.25.75.75 0 0 0-1.5 0 .25.25 0 0 1-.25.25.75.75 0 0 0 0 1.5Z" fill="currentColor"></path><path d="M5.75 21.5a.25.25 0 0 1-.25-.25.75.75 0 0 0-1.5 0 .25.25 0 0 1-.25.25.75.75 0 0 0 0 1.5.25.25 0 0 1 .25.25.75.75 0 0 0 1.5 0 .25.25 0 0 1 .25-.25.75.75 0 0 0 0-1.5Z" fill="currentColor"></path><path d="M23.25 16.5a.25.25 0 0 1-.25-.25.75.75 0 0 0-1.5 0 .25.25 0 0 1-.25.25.75.75 0 0 0 0 1.5.25.25 0 0 1 .25.25.75.75 0 0 0 1.5 0 .25.25 0 0 1 .25-.25.75.75 0 0 0 0-1.5Z" fill="currentColor"></path><path fill="currentColor" d="M2.5 17.25a.75.75 0 1 0 1.5 0 .75.75 0 1 0-1.5 0"></path><path fill="currentColor" d="M8.5 1.75a.75.75 0 1 0 1.5 0 .75.75 0 1 0-1.5 0"></path><path fill="currentColor" d="M21.5 21.75a.75.75 0 1 0 1.5 0 .75.75 0 1 0-1.5 0"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M11.5 5C12.8807 5 14 3.88071 14 2.5C14 1.11929 12.8807 0 11.5 0C10.1193 0 9 1.11929 9 2.5C9 2.63472 9.01066 2.76695 9.03117 2.89589L4.29735 5.2628C3.8428 4.79275 3.20553 4.50049 2.5 4.50049C1.11929 4.50049 0 5.61978 0 7.00049C0 8.3812 1.11929 9.50049 2.5 9.50049C3.20586 9.50049 3.84339 9.20796 4.29798 8.73752L9.03117 11.1041C9.01066 11.2331 9 11.3653 9 11.5C9 12.8807 10.1193 14 11.5 14C12.8807 14 14 12.8807 14 11.5C14 10.1193 12.8807 9 11.5 9C10.7943 9 10.1569 9.29239 9.70234 9.76264L4.9689 7.39593C4.98937 7.26713 5 7.13505 5 7.00049C5 6.86561 4.98932 6.73323 4.96876 6.60415L9.70234 4.23736C10.1569 4.70761 10.7943 5 11.5 5Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M3.5 0C1.567 0 0 1.567 0 3.5V10.5C0 12.433 1.567 14 3.5 14H10.5C12.433 14 14 12.433 14 10.5V3.5C14 1.567 12.433 0 10.5 0H3.5ZM6.60298 4.34532C6.53705 4.10358 6.33311 3.92458 6.08486 3.89055C5.83661 3.85653 5.59204 3.97406 5.4635 4.18915L4.1454 6.39477H2.5C2.15482 6.39477 1.875 6.67459 1.875 7.01977C1.875 7.36494 2.15482 7.64477 2.5 7.64477H4.5C4.71993 7.64477 4.92368 7.52917 5.0365 7.34038L5.78333 6.09068L6.89702 10.1742C6.96143 10.4104 7.1578 10.5872 7.39941 10.6266C7.64102 10.666 7.88339 10.5607 8.0195 10.3573L9.83387 7.64477H11.5C11.8452 7.64477 12.125 7.36494 12.125 7.01977C12.125 6.67459 11.8452 6.39477 11.5 6.39477H9.5C9.29137 6.39477 9.0965 6.49887 8.9805 6.67228L7.74241 8.52323L6.60298 4.34532Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M9.93 3.93a9.71 9.71 0 0 0-9.43 10v1.24a4.94 4.94 0 1 0 4.94-4.94 4.5 4.5 0 0 0-1.11.14.24.24 0 0 1-.26-.09.26.26 0 0 1 0-.28 6.83 6.83 0 0 1 5.86-3.57 1.25 1.25 0 1 0 0-2.5Z" fill="currentColor"></path><path d="M22.25 6.43a1.25 1.25 0 1 0 0-2.5 9.71 9.71 0 0 0-9.43 10v1.24a4.95 4.95 0 1 0 4.94-4.94 4.56 4.56 0 0 0-1.11.14.24.24 0 0 1-.26-.09.26.26 0 0 1 0-.28 6.83 6.83 0 0 1 5.86-3.57Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M18.56 3.93a4.94 4.94 0 1 0 0 9.88 4.5 4.5 0 0 0 1.11-.14.26.26 0 0 1 .26.1.24.24 0 0 1 .07.23 6.83 6.83 0 0 1-5.88 3.52 1.25 1.25 0 1 0 0 2.5 9.71 9.71 0 0 0 9.43-9.94V8.87a5 5 0 0 0-4.99-4.94Z" fill="currentColor"></path><path d="M6.24 3.93a4.94 4.94 0 1 0 0 9.88 4.56 4.56 0 0 0 1.11-.14.26.26 0 0 1 .26.1.24.24 0 0 1 0 .27 6.84 6.84 0 0 1-5.88 3.52 1.25 1.25 0 0 0 0 2.5 9.71 9.71 0 0 0 9.43-9.94V8.87a5 5 0 0 0-4.92-4.94Z" fill="currentColor"></path></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14ZM7.625 4.5C7.625 4.15482 7.34518 3.875 7 3.875C6.65482 3.875 6.375 4.15482 6.375 4.5V7C6.375 7.14621 6.42626 7.28779 6.51986 7.40012L9.01986 10.4001C9.24084 10.6653 9.63494 10.7011 9.90012 10.4801C10.1653 10.2592 10.2011 9.86506 9.98014 9.59988L7.625 6.77372V4.5Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.5 22H19v-3.5a7 7 0 0 0-4.4-6.5A7 7 0 0 0 19 5.5V2h1.5a1 1 0 0 0 0-2h-17a1 1 0 0 0 0 2H5v3.5A7 7 0 0 0 9.4 12 7 7 0 0 0 5 18.5V22H3.5a1 1 0 0 0 0 2h17a1 1 0 0 0 0-2ZM8.19 6.92a1 1 0 0 1 .89-.54h5.84A1 1 0 0 1 15.73 8a4.58 4.58 0 0 1-7.46 0 1 1 0 0 1-.08-1.08Zm-.27 11.71 3-2.94a1.55 1.55 0 0 1 2.07 0l3 2.94a1.36 1.36 0 0 1 .27 1.6A1.46 1.46 0 0 1 15 21H9a1.44 1.44 0 0 1-1.3-.76 1.35 1.35 0 0 1 .22-1.61Z" fill="currentColor"></path></svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor"
3
+ d="M5 7.50003C6.65685 7.50003 8 6.15688 8 4.50003C8 2.84318 6.65685 1.50003 5 1.50003C3.34315 1.50003 2 2.84318 2 4.50003C2 6.15688 3.34315 7.50003 5 7.50003Z">
4
+ </path>
5
+ <path fill="currentColor"
6
+ d="M0 13.5C0 10.7386 2.23858 8.5 5 8.5C7.76142 8.5 10 10.7386 10 13.5C10 13.7761 9.77614 14 9.5 14H0.5C0.223858 14 0 13.7761 0 13.5Z">
7
+ </path>
8
+ <path fill="currentColor" fill-rule="evenodd"
9
+ d="M11.1775 14H13.5C13.7761 14 14 13.7761 14 13.5C14 10.7386 11.7614 8.5 9 8.5C8.91895 8.5 8.83835 8.50193 8.75824 8.50574C10.2716 9.64637 11.25 11.4589 11.25 13.5C11.25 13.6737 11.2247 13.8416 11.1775 14ZM8.13225 7.37261C8.40695 7.45548 8.69827 7.50003 9 7.50003C10.6569 7.50003 12 6.15688 12 4.50003C12 2.84318 10.6569 1.50003 9 1.50003C8.69827 1.50003 8.40695 1.54457 8.13225 1.62744C8.82634 2.38388 9.25 3.39248 9.25 4.50003C9.25 5.60758 8.82634 6.61618 8.13225 7.37261Z"
10
+ clip-rule="evenodd"></path>
11
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M3.5 0C1.567 0 0 1.567 0 3.5V10.5C0 12.433 1.567 14 3.5 14H10.5C12.433 14 14 12.433 14 10.5V3.5C14 1.567 12.433 0 10.5 0H3.5ZM10.5398 4.31514C10.7138 4.01702 10.6132 3.6343 10.315 3.46031C10.0169 3.28632 9.6342 3.38694 9.46021 3.68506L6.3239 9.05882L4.39046 7.51206C4.12092 7.29643 3.72761 7.34013 3.51198 7.60967C3.29635 7.8792 3.34005 8.27251 3.60959 8.48814L5.65683 10.1259C5.78266 10.2286 5.92958 10.3022 6.08714 10.3416C6.24507 10.3811 6.40975 10.3852 6.56941 10.3536C6.72668 10.3235 6.87574 10.2601 7.00659 10.1678C7.13847 10.0747 7.24901 9.95387 7.33024 9.81439L10.5398 4.31514Z"
4
+ clip-rule="evenodd"></path>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.557,7.243A.456.456,0,0,0,9.1,6.991C9.023,7,8.951,7,8.877,7A4,4,0,0,1,5.546.781.5.5,0,0,0,5.564.256.476.476,0,0,0,5.1,0,5,5,0,1,0,9.539,7.767.5.5,0,0,0,9.557,7.243Z"
4
+ fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M3 21h8a1 1 0 0 0 1-1v-1.5a1.5 1.5 0 0 0-1.5-1.5h-7A1.5 1.5 0 0 0 2 18.5V20a1 1 0 0 0 1 1Z" fill="currentColor"></path><path d="M23 18a1.61 1.61 0 0 0 0-2.33l-6.81-6.14a.28.28 0 0 1-.09-.18.25.25 0 0 1 .08-.18l1.76-1.76a.26.26 0 0 1 .33 0 1.48 1.48 0 0 0 .9.3 1.53 1.53 0 0 0 1.06-.44 1.51 1.51 0 0 0 0-2.12L15.54.44a1.49 1.49 0 0 0-2.12 0 1.51 1.51 0 0 0-.14 2 .23.23 0 0 1 0 .32l-5.56 5.5a.23.23 0 0 1-.32 0 1.51 1.51 0 0 0-2 .14 1.49 1.49 0 0 0 0 2.12l4.68 4.69a1.5 1.5 0 0 0 2.26-2 .26.26 0 0 1 0-.33l1.76-1.76a.25.25 0 0 1 .18-.08.21.21 0 0 1 .18.09L20.67 18A1.61 1.61 0 0 0 23 18Z" fill="currentColor"></path><path d="M12.5 22h-11a1 1 0 0 0 0 2h11a1 1 0 0 0 0-2Z" fill="currentColor"></path></g></svg>