erudit 3.0.0-dev.23 → 3.0.0-dev.26

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 (669) hide show
  1. package/app/app.vue +25 -185
  2. package/app/assets/icons/array-check.svg +3 -0
  3. package/app/assets/icons/array-lines.svg +3 -0
  4. package/app/assets/icons/array-star.svg +3 -0
  5. package/app/assets/icons/arrow/from-circle.svg +3 -0
  6. package/app/assets/icons/arrow/left.svg +3 -0
  7. package/app/assets/icons/arrow/outward-box.svg +3 -0
  8. package/app/assets/icons/arrow/outward.svg +3 -0
  9. package/app/assets/icons/arrow/to-circle.svg +3 -0
  10. package/app/assets/icons/arrow/up-to-right.svg +3 -0
  11. package/app/assets/icons/aside-open.svg +2 -2
  12. package/app/assets/icons/asterisk.svg +2 -2
  13. package/app/assets/icons/bell.svg +3 -0
  14. package/app/assets/icons/book-outline.svg +3 -0
  15. package/app/assets/icons/book-question.svg +2 -2
  16. package/app/assets/icons/book.svg +2 -2
  17. package/app/assets/icons/box.svg +3 -0
  18. package/app/assets/icons/bug.svg +2 -2
  19. package/app/assets/icons/chevron-right.svg +3 -0
  20. package/app/assets/icons/cog.svg +3 -0
  21. package/app/assets/icons/construction.svg +2 -2
  22. package/app/assets/icons/diamond.svg +2 -2
  23. package/app/assets/icons/draw.svg +2 -2
  24. package/app/assets/icons/erudit.svg +3 -0
  25. package/app/assets/icons/file-lines.svg +2 -2
  26. package/app/assets/icons/files.svg +2 -4
  27. package/app/assets/icons/flame.svg +3 -0
  28. package/app/assets/icons/folder-open.svg +2 -2
  29. package/app/assets/icons/folder.svg +2 -2
  30. package/app/assets/icons/globe.svg +2 -2
  31. package/app/assets/icons/graduation.svg +2 -2
  32. package/app/assets/icons/handshake.svg +3 -0
  33. package/app/assets/icons/house.svg +2 -2
  34. package/app/assets/icons/lines.svg +3 -0
  35. package/app/assets/icons/moon.svg +2 -2
  36. package/app/assets/icons/plus-circle.svg +2 -2
  37. package/app/assets/icons/plus.svg +2 -2
  38. package/app/assets/icons/puzzle.svg +2 -2
  39. package/app/assets/icons/question-circle.svg +3 -0
  40. package/app/assets/icons/rocket.svg +3 -1
  41. package/app/assets/icons/search/check.svg +3 -0
  42. package/app/assets/icons/search/dead.svg +3 -0
  43. package/app/assets/icons/search/glass.svg +3 -0
  44. package/app/assets/icons/search/wtf.svg +3 -0
  45. package/app/assets/icons/sun-moon.svg +2 -2
  46. package/app/assets/icons/sun.svg +2 -2
  47. package/app/assets/icons/translate.svg +3 -0
  48. package/app/assets/icons/user.svg +2 -2
  49. package/app/assets/icons/users.svg +2 -2
  50. package/app/assets/icons/warning.svg +3 -0
  51. package/app/components/EruditLink.ts +9 -0
  52. package/app/components/FancyBold.vue +17 -0
  53. package/app/components/FancyCard.vue +58 -0
  54. package/app/components/FancyCardTag.vue +16 -0
  55. package/app/components/Prose.vue +51 -0
  56. package/app/components/ScrollHolder.vue +20 -0
  57. package/app/components/SmartMedia.vue +112 -0
  58. package/app/components/ads/Ads.vue +39 -33
  59. package/app/components/ads/AdsBannerAside.vue +46 -61
  60. package/app/components/ads/AdsBannerBottom.vue +17 -22
  61. package/app/components/ads/AdsReplacer.vue +28 -73
  62. package/app/components/ads/provider/Custom.vue +19 -0
  63. package/app/components/ads/{AdsProviderYandex.vue → provider/Yandex.vue} +84 -91
  64. package/app/components/aside/AsideListItem.vue +66 -91
  65. package/app/components/aside/AsideMajor.vue +8 -56
  66. package/app/components/aside/AsideMinor.vue +76 -97
  67. package/app/components/aside/AsideSwitch.vue +67 -0
  68. package/app/components/aside/major/PaneHolder.vue +106 -0
  69. package/app/components/aside/major/PaneSwitcher.vue +73 -0
  70. package/app/components/aside/major/PaneSwitcherButton.vue +38 -0
  71. package/app/components/aside/major/PaneTemplate.vue +5 -0
  72. package/app/components/aside/major/SiteInfo.vue +68 -85
  73. package/app/components/aside/major/contentNav/PaneBookNav.vue +116 -0
  74. package/app/components/aside/major/contentNav/PaneGlobalNav.vue +24 -0
  75. package/app/components/aside/major/contentNav/items/ContentNavBook.vue +21 -0
  76. package/app/components/aside/major/contentNav/items/ContentNavFolder.vue +92 -0
  77. package/app/components/aside/major/contentNav/items/ContentNavItem.vue +33 -0
  78. package/app/components/aside/major/contentNav/items/ContentNavPage.vue +18 -0
  79. package/app/components/aside/major/contentNav/items/ContentNavSeparator.vue +62 -0
  80. package/app/components/aside/major/contentNav/items/ContentNavTopic.vue +18 -0
  81. package/app/components/aside/major/contentNav/items/Flags.vue +52 -0
  82. package/app/components/aside/major/contentNav/items/ItemTemplate.vue +27 -0
  83. package/app/components/aside/major/languages/PaneLanguages.vue +55 -0
  84. package/app/components/aside/major/pages/PanePages.vue +60 -0
  85. package/app/components/aside/major/search/PaneSearch.vue +145 -0
  86. package/app/components/aside/major/search/SearchInput.vue +104 -0
  87. package/app/components/aside/major/search/SearchResult.vue +103 -0
  88. package/app/components/aside/major/search/SearchStatus.vue +48 -0
  89. package/app/components/aside/major/search/search.worker.ts +164 -0
  90. package/app/components/aside/major/settings/BuildTime.vue +25 -0
  91. package/app/components/aside/major/settings/EngineVersion.vue +13 -0
  92. package/app/components/aside/major/settings/PaneSettings.vue +17 -0
  93. package/app/components/aside/major/settings/ThemeSwitcher.vue +53 -0
  94. package/app/components/aside/major/settings/repository/Repository.vue +33 -0
  95. package/app/components/aside/major/settings/repository/SecondaryGitHub.vue +71 -0
  96. package/app/components/aside/minor/AsideMinorPane.vue +1 -11
  97. package/app/components/aside/minor/AsideMinorPlainHeader.vue +21 -0
  98. package/app/components/aside/minor/content/AsideMinorContentContributions.vue +53 -0
  99. package/app/components/aside/minor/content/AsideMinorContentPage.vue +37 -0
  100. package/app/components/aside/minor/content/AsideMinorContentTopic.vue +66 -0
  101. package/app/components/aside/minor/content/ButtonPaneContributions.vue +116 -0
  102. package/app/components/aside/minor/content/ButtonPaneImprove.vue +121 -0
  103. package/app/components/aside/minor/content/Contribution.vue +34 -0
  104. package/app/components/aside/minor/content/Toc.vue +165 -0
  105. package/app/components/aside/minor/content/TocItem.vue +77 -0
  106. package/app/components/aside/minor/content/TopicPartButton.vue +35 -0
  107. package/app/components/aside/minor/contributor/AsideMinorContributor.vue +31 -68
  108. package/app/components/aside/minor/contributor/ItemBook.vue +39 -0
  109. package/app/components/aside/minor/contributor/ItemContent.vue +17 -0
  110. package/app/components/aside/minor/news/AsideMinorNews.vue +135 -0
  111. package/app/components/aside/minor/news/NewsItem.vue +69 -0
  112. package/app/components/aside/minor/news/RenderNewsElement.vue +42 -0
  113. package/app/components/aside/minor/news/elements/Mix.vue +11 -0
  114. package/app/components/aside/minor/news/elements/P.vue +14 -0
  115. package/app/components/aside/minor/news/elements/Ref.vue +58 -0
  116. package/app/components/aside/minor/news/elements/Text.vue +18 -0
  117. package/app/components/indexPage/IndexPagePersons.vue +117 -0
  118. package/app/components/main/MainAction.vue +20 -0
  119. package/app/components/main/MainBreadcrumbs.vue +28 -0
  120. package/app/components/main/MainContentChild.vue +48 -0
  121. package/app/components/main/MainContentChildren.vue +14 -0
  122. package/app/components/main/MainDecoration.vue +15 -0
  123. package/app/components/main/MainDescription.vue +6 -23
  124. package/app/components/main/MainFlag.vue +133 -0
  125. package/app/components/main/MainFlags.vue +17 -0
  126. package/app/components/main/MainGlow.vue +12 -0
  127. package/app/components/main/MainQuickLink.vue +76 -0
  128. package/app/components/main/MainQuickLinks.vue +42 -0
  129. package/app/components/main/MainQuote.vue +160 -0
  130. package/app/components/main/MainQuoteLoader.vue +86 -0
  131. package/app/components/main/MainSection.vue +39 -42
  132. package/app/components/main/MainSectionPreamble.vue +5 -0
  133. package/app/components/main/MainSubTitle.vue +12 -0
  134. package/app/components/main/MainTitle.vue +26 -69
  135. package/app/components/main/MainTopicPartPage.vue +88 -0
  136. package/app/components/main/MainTopicPartSwitch.vue +71 -0
  137. package/app/components/main/connections/Deps.vue +34 -0
  138. package/app/components/main/connections/Externals.vue +46 -0
  139. package/app/components/main/connections/MainConnections.vue +41 -0
  140. package/app/components/main/connections/MainConnectionsButton.vue +80 -0
  141. package/app/components/main/connections/ScrollPane.vue +11 -0
  142. package/app/components/main/contentStats/Item.vue +35 -0
  143. package/app/components/main/contentStats/ItemElement.vue +19 -0
  144. package/app/components/main/contentStats/ItemMaterials.vue +11 -0
  145. package/app/components/main/contentStats/MainContentStats.vue +50 -0
  146. package/app/components/preview/Preview.vue +173 -186
  147. package/app/components/preview/PreviewError.vue +10 -0
  148. package/app/components/preview/PreviewLoading.vue +5 -14
  149. package/app/components/preview/PreviewScreen.vue +65 -141
  150. package/app/components/preview/PreviewScreenButton.vue +39 -0
  151. package/app/components/preview/screen/ContentPage.vue +50 -0
  152. package/app/components/preview/screen/DirectLink.vue +23 -0
  153. package/app/components/preview/screen/Unique.vue +54 -0
  154. package/app/components/site/SiteAside.vue +70 -0
  155. package/app/components/site/SiteAsideOverlay.vue +21 -0
  156. package/app/components/site/SiteMain.vue +16 -0
  157. package/app/components/transition/Fade.vue +30 -19
  158. package/app/components/transition/Slide.vue +47 -0
  159. package/app/components/tree/TreeContainer.vue +5 -11
  160. package/app/components/tree/TreeItem.vue +40 -93
  161. package/app/composables/ads.ts +17 -0
  162. package/app/composables/analytics.ts +102 -0
  163. package/app/composables/appElements.ts +40 -0
  164. package/app/composables/aside.ts +28 -0
  165. package/app/composables/asideMajorPane.ts +135 -0
  166. package/app/composables/asideMinor.ts +109 -0
  167. package/app/composables/contentNav.ts +7 -0
  168. package/app/composables/favicon.ts +104 -4
  169. package/app/composables/file.ts +3 -0
  170. package/app/composables/formatText.ts +78 -81
  171. package/app/composables/loading.ts +2 -0
  172. package/app/composables/mainContent.ts +31 -0
  173. package/app/composables/og.ts +169 -0
  174. package/app/composables/phrases.ts +126 -77
  175. package/app/composables/preview.ts +53 -0
  176. package/app/composables/route.ts +4 -0
  177. package/app/composables/theme.ts +71 -50
  178. package/app/composables/url.ts +22 -43
  179. package/app/formatters/ru.ts +14 -0
  180. package/app/pages/article/[...articleId].vue +10 -1
  181. package/app/pages/book/[...bookId].vue +50 -11
  182. package/app/pages/contributor/[contributorId].vue +127 -203
  183. package/app/pages/contributors.vue +80 -164
  184. package/app/pages/group/[...groupId].vue +52 -11
  185. package/app/pages/index.vue +101 -186
  186. package/app/pages/page/[...pageId].vue +60 -0
  187. package/app/pages/practice/[...practiceId].vue +12 -0
  188. package/app/pages/sponsors.vue +66 -76
  189. package/app/pages/summary/[...summaryId].vue +10 -1
  190. package/app/plugins/appSetup/client/htmlBranding.ts +6 -0
  191. package/app/plugins/appSetup/client/welcome.ts +35 -0
  192. package/app/plugins/appSetup/config.ts +6 -0
  193. package/app/plugins/appSetup/global.ts +3 -0
  194. package/app/plugins/appSetup/index.ts +28 -0
  195. package/app/plugins/prerender.server.ts +16 -11
  196. package/app/router.options.ts +5 -0
  197. package/app/scripts/theme.js +33 -0
  198. package/app/styles/main.css +173 -0
  199. package/bin/erudit.mjs +2 -2
  200. package/modules/erudit/globals/content.ts +4 -0
  201. package/modules/erudit/globals/contributor.ts +1 -0
  202. package/modules/erudit/globals/eruditConfig.ts +10 -0
  203. package/modules/erudit/globals/problem.ts +1 -0
  204. package/modules/erudit/globals/prose.ts +1 -0
  205. package/modules/erudit/globals/public.ts +18 -0
  206. package/modules/erudit/index.ts +60 -0
  207. package/{module → modules/erudit}/logger.ts +2 -2
  208. package/modules/erudit/setup/aliases.ts +17 -0
  209. package/modules/erudit/setup/baseUrl.ts +19 -0
  210. package/modules/erudit/setup/elements/appTemplate.ts +45 -0
  211. package/modules/erudit/setup/elements/globalTemplate.ts +82 -0
  212. package/modules/erudit/setup/elements/globalTypes.ts +273 -0
  213. package/modules/erudit/setup/elements/setup.ts +167 -0
  214. package/modules/erudit/setup/elements/shared.ts +10 -0
  215. package/modules/erudit/setup/elements/tagsTable.ts +28 -0
  216. package/modules/erudit/setup/fullRestart.ts +71 -0
  217. package/modules/erudit/setup/globals.ts +196 -0
  218. package/modules/erudit/setup/nuxtConfig.ts +48 -0
  219. package/modules/erudit/setup/projectConfig.ts +114 -0
  220. package/modules/erudit/setup/publicAssets.ts +52 -0
  221. package/modules/erudit/setup/runtimeConfig.ts +58 -0
  222. package/modules/erudit/watcher.ts +27 -0
  223. package/nuxt.config.ts +66 -102
  224. package/package.json +36 -18
  225. package/proxy/prose.app.ts +1 -0
  226. package/proxy/prose.ts +1 -0
  227. package/public/favicons/default.svg +1 -0
  228. package/{app/public → public}/logotype.svg +1 -1
  229. package/public/og.png +0 -0
  230. package/server/api/aside/major/frontNav/book/[...shortId].ts +10 -0
  231. package/server/api/aside/major/frontNav/global.ts +5 -0
  232. package/server/api/aside/major/pages.ts +6 -0
  233. package/server/api/contributor/list.ts +36 -35
  234. package/server/api/contributor/page/[contributorId].ts +58 -4
  235. package/server/api/indexPage.ts +81 -0
  236. package/server/api/language/functions.ts +6 -7
  237. package/server/api/language/phrase/[phraseKey].ts +32 -0
  238. package/server/api/main/content/[...contentTypePath].ts +153 -0
  239. package/server/api/news/batch/[batchIndex].ts +5 -0
  240. package/server/api/pageSponsors.ts +56 -0
  241. package/server/api/prerender/content.ts +82 -0
  242. package/server/api/prerender/files.ts +10 -0
  243. package/server/api/prerender/frontNav.ts +13 -0
  244. package/server/api/prerender/language.ts +3 -5
  245. package/server/api/prerender/news.ts +8 -0
  246. package/server/api/prerender/quotes.ts +15 -0
  247. package/server/api/preview/contentPage/[...contentTypePath].ts +63 -0
  248. package/server/api/preview/contentUnique/[...contentTypePathUnique].ts +81 -0
  249. package/server/api/problemScript/[...problemScriptPath].ts +92 -0
  250. package/server/api/quote/data/[quoteId].ts +87 -0
  251. package/server/api/quote/ids.ts +3 -0
  252. package/server/erudit/build.ts +135 -0
  253. package/server/erudit/cameos/build.ts +111 -0
  254. package/server/erudit/config.ts +11 -0
  255. package/server/erudit/content/global/build.ts +271 -0
  256. package/server/erudit/content/global/singleton.ts +5 -0
  257. package/server/erudit/content/nav/build.ts +431 -0
  258. package/server/erudit/content/nav/front.ts +130 -0
  259. package/server/erudit/content/nav/repository/books.ts +40 -0
  260. package/server/erudit/content/nav/repository/get.ts +33 -0
  261. package/server/erudit/content/nav/repository/hasChildren.ts +5 -0
  262. package/server/erudit/content/nav/repository/hasNav.ts +3 -0
  263. package/server/erudit/content/nav/repository/hasParent.ts +5 -0
  264. package/server/erudit/content/nav/repository/id.ts +9 -0
  265. package/server/erudit/content/nav/repository/index.ts +9 -0
  266. package/server/erudit/content/nav/repository/order.ts +14 -0
  267. package/server/erudit/content/nav/repository/previousNext.ts +35 -0
  268. package/server/erudit/content/nav/repository/walk.ts +127 -0
  269. package/server/erudit/content/nav/setup.ts +13 -0
  270. package/server/erudit/content/nav/types.ts +24 -0
  271. package/server/erudit/content/repository/breadcrumbs.ts +24 -0
  272. package/server/erudit/content/repository/children.ts +47 -0
  273. package/server/erudit/content/repository/connections.ts +35 -0
  274. package/server/erudit/content/repository/contentLink.ts +16 -0
  275. package/server/erudit/content/repository/decoration.ts +23 -0
  276. package/server/erudit/content/repository/deps.ts +84 -0
  277. package/server/erudit/content/repository/description.ts +11 -0
  278. package/server/erudit/content/repository/elementSnippets.ts +64 -0
  279. package/server/erudit/content/repository/externals.ts +25 -0
  280. package/server/erudit/content/repository/flags.ts +33 -0
  281. package/server/erudit/content/repository/seo.ts +12 -0
  282. package/server/erudit/content/repository/stats.ts +97 -0
  283. package/server/erudit/content/repository/title.ts +27 -0
  284. package/server/erudit/content/repository/topicParts.ts +39 -0
  285. package/server/erudit/content/repository/unique.ts +76 -0
  286. package/server/erudit/content/resolve/book.ts +32 -0
  287. package/server/erudit/content/resolve/group.ts +39 -0
  288. package/server/erudit/content/resolve/index.ts +139 -0
  289. package/server/erudit/content/resolve/page.ts +87 -0
  290. package/server/erudit/content/resolve/topic.ts +113 -0
  291. package/server/erudit/content/resolve/utils/contentError.ts +10 -0
  292. package/server/erudit/content/resolve/utils/insertContentItem.ts +122 -0
  293. package/server/erudit/content/resolve/utils/insertContentResolved.ts +93 -0
  294. package/server/erudit/content/search.ts +135 -0
  295. package/server/erudit/contributors/build.ts +111 -0
  296. package/server/erudit/contributors/global.ts +3 -0
  297. package/server/erudit/contributors/repository/avatarUrl.ts +10 -0
  298. package/server/erudit/contributors/repository/contributions.ts +178 -0
  299. package/server/erudit/contributors/repository/count.ts +3 -0
  300. package/server/erudit/contributors/search.ts +34 -0
  301. package/server/erudit/db/repository/pushFile.ts +23 -0
  302. package/server/erudit/db/repository/pushProblemScript.ts +19 -0
  303. package/server/erudit/db/repository/pushProseLink.ts +40 -0
  304. package/server/erudit/db/schema/cameos.ts +7 -0
  305. package/server/erudit/db/schema/content.ts +18 -0
  306. package/server/erudit/db/schema/contentContributions.ts +15 -0
  307. package/server/erudit/db/schema/contentDeps.ts +21 -0
  308. package/server/erudit/db/schema/contentElementStats.ts +20 -0
  309. package/server/erudit/db/schema/contentProseLinks.ts +23 -0
  310. package/server/erudit/db/schema/contentSnippets.ts +32 -0
  311. package/server/erudit/db/schema/contentToc.ts +16 -0
  312. package/server/erudit/db/schema/contentUniques.ts +25 -0
  313. package/server/erudit/db/schema/contributors.ts +12 -0
  314. package/server/erudit/db/schema/files.ts +11 -0
  315. package/server/erudit/db/schema/groups.ts +6 -0
  316. package/server/erudit/db/schema/index.ts +17 -0
  317. package/server/erudit/db/schema/news.ts +7 -0
  318. package/server/erudit/db/schema/pages.ts +7 -0
  319. package/server/erudit/db/schema/problemScripts.ts +14 -0
  320. package/server/erudit/db/schema/sponsors.ts +9 -0
  321. package/server/erudit/db/schema/topics.ts +9 -0
  322. package/server/erudit/db/setup.ts +62 -0
  323. package/server/erudit/db/types.ts +10 -0
  324. package/server/erudit/global.ts +33 -0
  325. package/server/erudit/importer.ts +97 -0
  326. package/server/erudit/index.ts +90 -0
  327. package/server/erudit/language/list/en.ts +209 -0
  328. package/server/erudit/language/list/ru.ts +214 -0
  329. package/server/erudit/language/list.ts +6 -0
  330. package/server/erudit/language/setup.ts +36 -0
  331. package/server/erudit/language/types.ts +16 -0
  332. package/server/erudit/logger.ts +77 -0
  333. package/server/erudit/news/build.ts +77 -0
  334. package/server/erudit/news/repository/batch.ts +61 -0
  335. package/server/erudit/prose/repository/finalize.ts +68 -0
  336. package/server/erudit/prose/repository/get.ts +54 -0
  337. package/server/erudit/prose/repository/resolve.ts +17 -0
  338. package/server/erudit/prose/storage/callout.ts +14 -0
  339. package/server/erudit/prose/storage/image.ts +20 -0
  340. package/server/erudit/prose/storage/link.ts +226 -0
  341. package/server/erudit/prose/storage/problemScript.ts +21 -0
  342. package/server/erudit/prose/storage/video.ts +14 -0
  343. package/server/erudit/prose/transform/bundleProblemScript.ts +6 -0
  344. package/server/erudit/prose/transform/extensions.ts +15 -0
  345. package/server/erudit/quote/repository/ids.ts +31 -0
  346. package/server/erudit/repository.ts +96 -0
  347. package/server/erudit/sponsors/build.ts +114 -0
  348. package/server/erudit/sponsors/repository/avatarUrl.ts +10 -0
  349. package/server/erudit/sponsors/repository/count.ts +4 -0
  350. package/server/erudit/staticFile.ts +28 -0
  351. package/server/plugins/augmentCss.ts +17 -0
  352. package/server/plugins/lang.ts +7 -0
  353. package/server/plugins/metaViewport.ts +15 -0
  354. package/server/plugins/theme.ts +13 -0
  355. package/server/routes/file/[...path].ts +18 -0
  356. package/server/routes/robots.txt.ts +1 -1
  357. package/server/routes/search.json.gz.ts +72 -0
  358. package/server/routes/sitemap.xml.ts +61 -90
  359. package/shared/search/encoders.ts +20 -0
  360. package/shared/types/asideMajorPages.ts +4 -0
  361. package/shared/types/breadcrumbs.ts +9 -0
  362. package/shared/types/contentChildren.ts +10 -0
  363. package/shared/types/contentConnections.ts +27 -0
  364. package/shared/types/contentStats.ts +6 -0
  365. package/shared/types/elementSnippet.ts +8 -0
  366. package/shared/types/frontContentNav.ts +38 -0
  367. package/shared/types/indexPage.ts +20 -0
  368. package/shared/types/language.ts +189 -89
  369. package/shared/types/mainContent.ts +69 -0
  370. package/shared/types/news.ts +13 -0
  371. package/shared/types/preview.ts +28 -0
  372. package/shared/types/runtimeConfig.ts +64 -0
  373. package/shared/types/search.ts +79 -0
  374. package/shared/utils/contentTypePath.ts +63 -0
  375. package/shared/utils/icons.ts +11 -0
  376. package/shared/utils/pages.ts +24 -0
  377. package/shared/utils/slasher.ts +64 -0
  378. package/shared/utils/stringColor.ts +13 -9
  379. package/shared/utils/toStringEqual.ts +21 -0
  380. package/shared/utils/zip.ts +64 -0
  381. package/test/shared/utils/slasher.test.ts +75 -0
  382. package/test/shared/utils/zip.test.ts +8 -0
  383. package/tsconfig.json +17 -8
  384. package/app/assets/icons/alert.svg +0 -3
  385. package/app/assets/icons/angle-right.svg +0 -3
  386. package/app/assets/icons/arrow-in-text.svg +0 -3
  387. package/app/assets/icons/arrow-left.svg +0 -3
  388. package/app/assets/icons/arrow-up-to-right.svg +0 -3
  389. package/app/assets/icons/cameo-add.svg +0 -3
  390. package/app/assets/icons/chip.svg +0 -3
  391. package/app/assets/icons/circle-help.svg +0 -3
  392. package/app/assets/icons/cross.svg +0 -3
  393. package/app/assets/icons/ellipsis-vertical.svg +0 -3
  394. package/app/assets/icons/file-check.svg +0 -3
  395. package/app/assets/icons/file-star.svg +0 -3
  396. package/app/assets/icons/link-external.svg +0 -3
  397. package/app/assets/icons/link.svg +0 -3
  398. package/app/assets/icons/list-squared.svg +0 -3
  399. package/app/assets/icons/outline/book.svg +0 -3
  400. package/app/assets/icons/outline/file-lines.svg +0 -3
  401. package/app/assets/icons/pirate.svg +0 -3
  402. package/app/assets/icons/search.svg +0 -3
  403. package/app/assets/icons/shuffle.svg +0 -3
  404. package/app/assets/icons/star.svg +0 -3
  405. package/app/components/Avatar.vue +0 -118
  406. package/app/components/EruditLink.vue +0 -17
  407. package/app/components/GroupLikePage.vue +0 -70
  408. package/app/components/Loading.vue +0 -23
  409. package/app/components/QuickLinks.vue +0 -99
  410. package/app/components/SiteAside.vue +0 -393
  411. package/app/components/SiteMain.vue +0 -32
  412. package/app/components/ads/AdsProviderCustom.vue +0 -35
  413. package/app/components/aside/major/PaneContentScroll.vue +0 -23
  414. package/app/components/aside/major/PaneSwitch.vue +0 -54
  415. package/app/components/aside/major/PaneSwitchButton.vue +0 -63
  416. package/app/components/aside/major/panes/Language.vue +0 -79
  417. package/app/components/aside/major/panes/Pages.vue +0 -50
  418. package/app/components/aside/major/panes/Search.vue +0 -11
  419. package/app/components/aside/major/panes/nav/Nav.vue +0 -92
  420. package/app/components/aside/major/panes/nav/NavBook.vue +0 -95
  421. package/app/components/aside/major/panes/nav/NavBookLoading.vue +0 -24
  422. package/app/components/aside/major/panes/nav/NavGlobal.vue +0 -16
  423. package/app/components/aside/major/panes/nav/fnav/FNav.vue +0 -105
  424. package/app/components/aside/major/panes/nav/fnav/FNavBook.vue +0 -32
  425. package/app/components/aside/major/panes/nav/fnav/FNavFlags.vue +0 -40
  426. package/app/components/aside/major/panes/nav/fnav/FNavFolder.vue +0 -60
  427. package/app/components/aside/major/panes/nav/fnav/FNavItem.vue +0 -34
  428. package/app/components/aside/major/panes/nav/fnav/FNavSeparator.vue +0 -80
  429. package/app/components/aside/major/panes/nav/fnav/FNavTopic.vue +0 -24
  430. package/app/components/aside/major/panes/other/ItemContent.vue +0 -29
  431. package/app/components/aside/major/panes/other/ItemGenerator.vue +0 -13
  432. package/app/components/aside/major/panes/other/ItemTheme.vue +0 -49
  433. package/app/components/aside/major/panes/other/Other.vue +0 -16
  434. package/app/components/aside/minor/AsideMinorContribute.vue +0 -175
  435. package/app/components/aside/minor/AsideMinorNews.vue +0 -11
  436. package/app/components/aside/minor/AsideMinorTopLink.vue +0 -66
  437. package/app/components/aside/minor/content/AsideMinorContent.vue +0 -89
  438. package/app/components/aside/minor/contributor/BookContribution.vue +0 -64
  439. package/app/components/aside/minor/topic/AsideMinorTopic.vue +0 -31
  440. package/app/components/aside/minor/topic/TopicContributors.vue +0 -183
  441. package/app/components/aside/minor/topic/TopicNav.vue +0 -49
  442. package/app/components/aside/minor/topic/TopicToc.vue +0 -212
  443. package/app/components/aside/minor/topic/TopicTocItem.vue +0 -19
  444. package/app/components/aside/utils/AsideOverlayPane.vue +0 -40
  445. package/app/components/bitran/BitranContent.vue +0 -90
  446. package/app/components/bitran/RenderWrapper.vue +0 -10
  447. package/app/components/contributor/ContributorListItem.vue +0 -43
  448. package/app/components/index/IndexAvatars.vue +0 -143
  449. package/app/components/main/MainActionButton.vue +0 -53
  450. package/app/components/main/MainBitranContent.vue +0 -68
  451. package/app/components/main/MainBreadcrumb.vue +0 -63
  452. package/app/components/main/MainSectionTitle.vue +0 -50
  453. package/app/components/main/MainSourceUsages.vue +0 -119
  454. package/app/components/main/MainSourcesUsage.vue +0 -60
  455. package/app/components/main/MainToc.vue +0 -135
  456. package/app/components/main/cameo/MainCameo.vue +0 -135
  457. package/app/components/main/cameo/MainCameoData.vue +0 -232
  458. package/app/components/main/content/ContentBreadcrumb.vue +0 -28
  459. package/app/components/main/content/ContentDecoration.vue +0 -29
  460. package/app/components/main/content/ContentPopover.vue +0 -188
  461. package/app/components/main/content/ContentPopovers.vue +0 -118
  462. package/app/components/main/content/ContentReferences.vue +0 -44
  463. package/app/components/main/content/reference/ReferenceGroup.vue +0 -39
  464. package/app/components/main/content/reference/ReferenceItem.vue +0 -70
  465. package/app/components/main/content/reference/ReferenceSource.vue +0 -121
  466. package/app/components/main/topic/MainTopic.vue +0 -73
  467. package/app/components/main/topic/MainTopicQuickLinks.vue +0 -24
  468. package/app/components/main/topic/TopicPartSwitch.vue +0 -119
  469. package/app/components/preview/PreviewDisplay.vue +0 -139
  470. package/app/components/preview/PreviewFooterAction.vue +0 -73
  471. package/app/components/preview/display/Alert.vue +0 -50
  472. package/app/components/preview/display/Custom.vue +0 -18
  473. package/app/components/preview/display/GenericLink.vue +0 -48
  474. package/app/components/preview/display/PageLink.vue +0 -22
  475. package/app/components/preview/display/Unique.vue +0 -46
  476. package/app/components/sponsor/SponsorTier1.vue +0 -89
  477. package/app/components/sponsor/SponsorTier2.vue +0 -109
  478. package/app/components/stats/Stats.vue +0 -21
  479. package/app/components/stats/StatsGroupLike.vue +0 -24
  480. package/app/components/stats/StatsItem.vue +0 -33
  481. package/app/components/stats/StatsItemElement.vue +0 -13
  482. package/app/composables/adsAllowed.ts +0 -11
  483. package/app/composables/asset.ts +0 -12
  484. package/app/composables/bitran.ts +0 -108
  485. package/app/composables/bitranLocation.ts +0 -6
  486. package/app/composables/contentData.ts +0 -38
  487. package/app/composables/contentPage.ts +0 -169
  488. package/app/composables/contentRoute.ts +0 -45
  489. package/app/composables/darkMagic.ts +0 -24
  490. package/app/composables/externalApi.ts +0 -69
  491. package/app/composables/head.ts +0 -24
  492. package/app/composables/majorPane.ts +0 -62
  493. package/app/pages/_test/preview.vue +0 -110
  494. package/app/pages/practice/[...practice].vue +0 -3
  495. package/app/plugins/analytics.ts +0 -95
  496. package/app/public/favicon/article.svg +0 -10
  497. package/app/public/favicon/default.svg +0 -10
  498. package/app/public/favicon/practice.svg +0 -10
  499. package/app/public/favicon/summary.svg +0 -10
  500. package/app/public/og-default.png +0 -0
  501. package/app/scripts/_immediate.js +0 -9
  502. package/app/scripts/aside/index.ts +0 -59
  503. package/app/scripts/aside/major/nav.ts +0 -26
  504. package/app/scripts/aside/minor/state.ts +0 -37
  505. package/app/scripts/flag.ts +0 -28
  506. package/app/scripts/og.ts +0 -28
  507. package/app/scripts/preview/build.ts +0 -76
  508. package/app/scripts/preview/data/alert.ts +0 -19
  509. package/app/scripts/preview/data/custom.ts +0 -8
  510. package/app/scripts/preview/data/genericLink.ts +0 -24
  511. package/app/scripts/preview/data/pageLink.ts +0 -24
  512. package/app/scripts/preview/data/unique.ts +0 -69
  513. package/app/scripts/preview/data.ts +0 -24
  514. package/app/scripts/preview/display.ts +0 -37
  515. package/app/scripts/preview/footer.ts +0 -9
  516. package/app/scripts/preview/request.ts +0 -51
  517. package/app/scripts/preview/state.ts +0 -63
  518. package/app/styles/_immediate.css +0 -7
  519. package/app/styles/_util.scss +0 -43
  520. package/app/styles/_utils.scss +0 -44
  521. package/app/styles/app.scss +0 -91
  522. package/app/styles/def/_bp.scss +0 -27
  523. package/app/styles/def/_size.scss +0 -7
  524. package/app/styles/def/_z.scss +0 -5
  525. package/app/styles/normalize.scss +0 -49
  526. package/app/styles/partials/_darkMagic.scss +0 -5
  527. package/app/styles/partials/_fnav.scss +0 -15
  528. package/app/styles/partials/_preview.scss +0 -5
  529. package/const.ts +0 -3
  530. package/globalPath.ts +0 -21
  531. package/globals/bitran.ts +0 -1
  532. package/globals/cameo.ts +0 -5
  533. package/globals/content.ts +0 -27
  534. package/globals/contributor.ts +0 -5
  535. package/globals/erudit.ts +0 -5
  536. package/globals/register.ts +0 -23
  537. package/globals/sponsor.ts +0 -17
  538. package/languages/en.ts +0 -114
  539. package/languages/ru.ts +0 -119
  540. package/module/bitran.ts +0 -66
  541. package/module/config.ts +0 -35
  542. package/module/imports.ts +0 -74
  543. package/module/index.ts +0 -47
  544. package/module/paths.ts +0 -22
  545. package/module/restart.ts +0 -61
  546. package/server/api/aside/major/nav/bookIds.ts +0 -5
  547. package/server/api/aside/major/nav/bookNav/[...bookId].ts +0 -17
  548. package/server/api/aside/major/nav/global.ts +0 -7
  549. package/server/api/aside/minor/book/[...bookId].ts +0 -18
  550. package/server/api/aside/minor/contributor/[contributorId].ts +0 -18
  551. package/server/api/aside/minor/group/[...groupId].ts +0 -18
  552. package/server/api/aside/minor/news.ts +0 -7
  553. package/server/api/aside/minor/topic.ts +0 -36
  554. package/server/api/bitran/content/[...location].ts +0 -13
  555. package/server/api/bitran/toc/[...location].ts +0 -9
  556. package/server/api/cameo/data/[cameoId].ts +0 -42
  557. package/server/api/cameo/ids.ts +0 -5
  558. package/server/api/content/data.ts +0 -97
  559. package/server/api/contributor/count.ts +0 -6
  560. package/server/api/fake/content.ts +0 -11
  561. package/server/api/fake/shared/languages.ts +0 -12
  562. package/server/api/index/data.ts +0 -46
  563. package/server/api/language/phrase/[phraseId].ts +0 -19
  564. package/server/api/language/phraseIds.ts +0 -8
  565. package/server/api/prerender/assets/cameo.ts +0 -14
  566. package/server/api/prerender/assets/contributor.ts +0 -12
  567. package/server/api/prerender/assets/sponsor.ts +0 -13
  568. package/server/api/prerender/cameos.ts +0 -12
  569. package/server/api/preview/page/[...parts].ts +0 -78
  570. package/server/api/preview/unique/[...location].ts +0 -48
  571. package/server/api/problem/generator/[...path].ts +0 -26
  572. package/server/api/sponsor/cameo/data/[sponsorId].ts +0 -51
  573. package/server/api/sponsor/cameo/ids.ts +0 -5
  574. package/server/api/sponsor/count.ts +0 -5
  575. package/server/api/sponsor/list.ts +0 -36
  576. package/server/plugin/bitran/content.ts +0 -238
  577. package/server/plugin/bitran/elements/include.ts +0 -229
  578. package/server/plugin/bitran/location.ts +0 -40
  579. package/server/plugin/bitran/toc.ts +0 -94
  580. package/server/plugin/bitran/transpiler.ts +0 -18
  581. package/server/plugin/build/close.ts +0 -12
  582. package/server/plugin/build/jobs/content/builderArgs.ts +0 -8
  583. package/server/plugin/build/jobs/content/generic.ts +0 -191
  584. package/server/plugin/build/jobs/content/parse.ts +0 -207
  585. package/server/plugin/build/jobs/content/path.ts +0 -6
  586. package/server/plugin/build/jobs/content/type/book.ts +0 -9
  587. package/server/plugin/build/jobs/content/type/group.ts +0 -16
  588. package/server/plugin/build/jobs/content/type/topic.ts +0 -36
  589. package/server/plugin/build/jobs/contributors.ts +0 -69
  590. package/server/plugin/build/jobs/language.ts +0 -36
  591. package/server/plugin/build/jobs/nav.ts +0 -345
  592. package/server/plugin/build/process.ts +0 -34
  593. package/server/plugin/build/rebuild.ts +0 -68
  594. package/server/plugin/build/setup.ts +0 -19
  595. package/server/plugin/content/context.ts +0 -116
  596. package/server/plugin/db/entities/Book.ts +0 -7
  597. package/server/plugin/db/entities/Content.ts +0 -45
  598. package/server/plugin/db/entities/Contribution.ts +0 -10
  599. package/server/plugin/db/entities/Contributor.ts +0 -25
  600. package/server/plugin/db/entities/File.ts +0 -10
  601. package/server/plugin/db/entities/Group.ts +0 -11
  602. package/server/plugin/db/entities/Hash.ts +0 -15
  603. package/server/plugin/db/entities/QuickLink.ts +0 -19
  604. package/server/plugin/db/entities/Stat.ts +0 -13
  605. package/server/plugin/db/entities/Topic.ts +0 -20
  606. package/server/plugin/db/entities/Unique.ts +0 -21
  607. package/server/plugin/db/reset.ts +0 -12
  608. package/server/plugin/db/setup.ts +0 -53
  609. package/server/plugin/global.ts +0 -18
  610. package/server/plugin/importer.ts +0 -16
  611. package/server/plugin/index.ts +0 -9
  612. package/server/plugin/logger.ts +0 -23
  613. package/server/plugin/nav/node.ts +0 -27
  614. package/server/plugin/nav/utils.ts +0 -179
  615. package/server/plugin/repository/asideMinor.ts +0 -51
  616. package/server/plugin/repository/book.ts +0 -39
  617. package/server/plugin/repository/cameo.ts +0 -16
  618. package/server/plugin/repository/content.ts +0 -240
  619. package/server/plugin/repository/contentId.ts +0 -40
  620. package/server/plugin/repository/contentToc.ts +0 -90
  621. package/server/plugin/repository/contributor.ts +0 -129
  622. package/server/plugin/repository/elementStats.ts +0 -80
  623. package/server/plugin/repository/file.ts +0 -10
  624. package/server/plugin/repository/frontNav.ts +0 -145
  625. package/server/plugin/repository/link.ts +0 -20
  626. package/server/plugin/repository/quickLink.ts +0 -36
  627. package/server/plugin/repository/readLink.ts +0 -17
  628. package/server/plugin/repository/reference.ts +0 -78
  629. package/server/plugin/repository/topic.ts +0 -35
  630. package/server/plugin/repository/topicCount.ts +0 -19
  631. package/server/plugin/sponsor/build.ts +0 -82
  632. package/server/plugin/sponsor/index.ts +0 -5
  633. package/server/plugin/sponsor/repository.ts +0 -56
  634. package/server/routes/asset/[...assetPath].ts +0 -34
  635. package/server/tsconfig.json +0 -9
  636. package/shared/aside/minor.ts +0 -55
  637. package/shared/asset.ts +0 -17
  638. package/shared/bitran/content.ts +0 -9
  639. package/shared/bitran/contentId.ts +0 -56
  640. package/shared/bitran/toc.ts +0 -8
  641. package/shared/breadcrumb.ts +0 -7
  642. package/shared/content/bookId.ts +0 -12
  643. package/shared/content/context.ts +0 -9
  644. package/shared/content/data/base.ts +0 -32
  645. package/shared/content/data/groupLike.ts +0 -11
  646. package/shared/content/data/index.ts +0 -5
  647. package/shared/content/data/type/book.ts +0 -7
  648. package/shared/content/data/type/group.ts +0 -8
  649. package/shared/content/data/type/topic.ts +0 -13
  650. package/shared/content/previousNext.ts +0 -9
  651. package/shared/content/reference.ts +0 -18
  652. package/shared/content/toc.ts +0 -35
  653. package/shared/contributor.ts +0 -34
  654. package/shared/frontNav.ts +0 -41
  655. package/shared/icons.ts +0 -38
  656. package/shared/image.ts +0 -5
  657. package/shared/indexData.ts +0 -10
  658. package/shared/link.ts +0 -29
  659. package/shared/popover.ts +0 -8
  660. package/shared/quickLink.ts +0 -7
  661. package/shared/stat.ts +0 -23
  662. package/shared/utils/objectsEqual.ts +0 -4
  663. package/test/contentId.test.ts +0 -91
  664. package/test/utils/url.test.ts +0 -99
  665. package/utils/contentPath.ts +0 -67
  666. package/utils/ext.ts +0 -41
  667. package/utils/normalize.ts +0 -7
  668. package/utils/stress.ts +0 -9
  669. package/utils/url.ts +0 -23
package/app/app.vue CHANGED
@@ -1,195 +1,35 @@
1
1
  <script lang="ts" setup>
2
- import { brandLogotype, brandColors } from '@erudit-js/cog/utils/brand';
2
+ initFavicon();
3
+ initOgImage();
4
+ initAnalytics();
3
5
 
4
- import eruditConfig from '#erudit/config';
5
- import { version } from '@erudit/package.json';
6
- import { AsideType } from '@app/scripts/aside';
7
- import { createOgImageTags, defaultOgImage } from '@app/scripts/og';
6
+ // Watching and setting theme
7
+ initThemeWatcher();
8
8
 
9
- const route = useRoute();
10
- const favicon = useFavicon();
11
- const siteUrl = useSiteUrl();
12
- const pageUrl = usePageUrl();
13
- const baseUrlPath = useBaseUrlPath();
9
+ // Fetching and setting global navigation variable
10
+ await initGlobalContentNav();
14
11
 
15
- const faviconHref = computed(() => {
16
- const href = baseUrlPath(favicon.value);
12
+ await initFormatText();
13
+ await initAppElements();
17
14
 
18
- setTimeout(() => {
19
- if (import.meta.client)
20
- document
21
- .querySelector('link[rel="icon"]')
22
- ?.setAttribute('href', href); // Force update favicon
23
- }, 200);
24
-
25
- return href;
26
- });
27
-
28
- const phrase = await usePhrases('site_info_title');
29
-
30
- useHead({
31
- htmlAttrs: {
32
- lang: eruditConfig.language || 'en',
33
- style: {
34
- '--brand': eruditConfig.site?.style?.brandColor || undefined,
35
- '--transitionSpeed': eruditConfig.debug?.slowTransition
36
- ? '.5s'
37
- : undefined,
38
- } as any,
39
- },
40
- link: [
41
- { rel: 'icon', href: faviconHref },
42
- { rel: 'canonical', href: pageUrl },
43
- ],
44
- script: [
45
- {
46
- key: 'immediate-js',
47
- tagPriority: 'critical',
48
- innerHTML: (await import('@app/scripts/_immediate.js?raw')).default,
49
- },
50
- ],
51
- style: [
52
- {
53
- key: 'immediate-css',
54
- tagPriority: 'critical',
55
- innerHTML: (await import('$/_immediate.css?raw')).default,
56
- },
57
- ],
58
- meta: [
59
- {
60
- name: 'viewport',
61
- content:
62
- 'width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no',
63
- },
64
- ...createOgImageTags(siteUrl, defaultOgImage),
65
- ],
66
- });
67
-
68
- useSeoMeta({
69
- ogUrl: usePageUrl(),
70
- ogSiteName:
71
- eruditConfig.seo?.title ||
72
- eruditConfig.site?.title ||
73
- phrase.site_info_title,
74
- });
75
-
76
- // @ts-ignore
77
- if (!eruditConfig?.repository?.sharedUrl) delete majorPanes.language;
78
-
79
- const { activePane } = useMajorPane();
80
-
81
- //
82
- // Swtiching major pane to match the new route
83
- //
84
-
85
- watch(route, () => {
86
- if (route.path === '/') return (activePane.value = 'index');
87
-
88
- const pathType = route.path.split('/')[1];
89
- if (['book', 'group', 'article', 'summary', 'practice'].includes(pathType!))
90
- return (activePane.value = 'index');
91
-
92
- return (activePane.value = 'pages');
93
- });
94
-
95
- if (import.meta.client) {
96
- //
97
- // Theme Switch Watcher
98
- //
99
-
100
- const { theme, binaryTheme } = useTheme();
101
-
102
- watch(theme, (newTheme) => {
103
- localStorage.setItem('theme', newTheme);
104
- document.documentElement.setAttribute('data-theme', binaryTheme.value);
105
- });
106
-
107
- //
108
- // Welcome
109
- //
110
-
111
- const comment = document.createComment(` ${brandLogotype} `);
112
- document.insertBefore(comment, document.firstChild);
113
-
114
- const emojies = [
115
- '😂',
116
- '❤️',
117
- '🤣',
118
- '🎉',
119
- '🔥',
120
- '💖',
121
- '👀',
122
- '✨',
123
- '💗',
124
- '💚',
125
- '💙',
126
- '🎁',
127
- '🌈',
128
- ];
129
- const emoji = emojies[Math.floor(Math.random() * emojies.length)];
130
-
131
- console.log(
132
- '%c' +
133
- brandLogotype +
134
- '\n%cv' +
135
- version +
136
- ' ' +
137
- emoji +
138
- ' %cBeating heart of modern educational sites!\n\n%cLearn more: https://github.com/erudit-js/erudit\n ',
139
- `color: transparent; background: linear-gradient(to right, ${brandColors[0]}, ${brandColors[1]}); background-clip: text; -webkit-background-clip: text;`,
140
- 'color: inherit;',
141
- 'font-style: italic; color: #888;',
142
- 'color: inherit;',
143
- );
144
- }
15
+ // Watching route changes and set corresponsing aside major pane
16
+ initAsideMajorPaneWatcher();
145
17
  </script>
146
18
 
147
19
  <template>
148
- <NuxtLoadingIndicator color="var(--brand)" />
149
-
150
- <SiteAside :type="AsideType.Major"><AsideMajor /></SiteAside>
151
- <SiteAside :type="AsideType.Minor"><AsideMinor /></SiteAside>
152
-
153
- <div :class="$style.mainContainer">
154
- <div><!-- Phantom aside major --></div>
155
- <SiteMain><NuxtPage /></SiteMain>
156
- <div><!-- Phantom aside minor --></div>
20
+ <NuxtLoadingIndicator color="var(--color-brand)" />
21
+ <div
22
+ class="relative m-auto min-h-dvh max-w-(--w-max-content) overflow-clip
23
+ border-x
24
+ border-[light-dark(var(--color-neutral-300),var(--color-neutral-800))]
25
+ shadow-[0_0_3px_0px_light-dark(rgba(0,0,0,0.05),rgba(0,0,0,0.18))]
26
+ transition-[border]"
27
+ >
28
+ <SiteMain>
29
+ <NuxtPage></NuxtPage>
30
+ </SiteMain>
31
+ <SiteAsideOverlay />
32
+ <SiteAside :type="AsideType.Major" />
33
+ <SiteAside :type="AsideType.Minor" />
157
34
  </div>
158
35
  </template>
159
-
160
- <style lang="scss">
161
- @use '$/normalize';
162
- @use '$/app';
163
- </style>
164
-
165
- <style lang="scss" module>
166
- @use '$/def/bp';
167
- @use '$/def/z';
168
-
169
- .mainContainer {
170
- --w_asideMajor: 0;
171
- --w_asideMinor: 0;
172
- --w_main: minmax(0, 1fr);
173
-
174
- position: relative;
175
- z-index: z.$main;
176
-
177
- display: grid;
178
- grid-template-columns: var(--w_asideMajor) var(--w_main) var(--w_asideMinor);
179
-
180
- margin: auto;
181
- max-width: calc(2 * var(--wAside) + var(--wMainMax));
182
-
183
- @include transition(grid);
184
-
185
- @include bp.above('aside1') {
186
- --w_asideMajor: var(--wAside);
187
- --w_asideMinor: 0;
188
- }
189
-
190
- @include bp.above('aside2') {
191
- --w_asideMajor: var(--wAside);
192
- --w_asideMinor: var(--wAside);
193
- }
194
- }
195
- </style>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M4,22c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V7c0-.28.1-.52.29-.71s.43-.29.71-.29.52.1.71.29.29.43.29.71v13h13c.28,0,.52.1.71.29s.29.43.29.71-.1.52-.29.71-.43.29-.71.29H4ZM8,4v12V4ZM21.41,2.59c-.39-.39-.86-.59-1.41-.59h-12c-.55,0-1.02.19-1.41.59-.39.39-.59.86-.59,1.41v12c0,.55.19,1.02.59,1.41.39.39.86.59,1.41.59h12c.55,0,1.02-.2,1.41-.6.39-.39.59-.86.59-1.41V4c0-.55-.2-1.02-.59-1.41ZM20,15.99h-12V4h12v12ZM18.84,7.29c0,.24-.09.45-.26.63l-5.4,5.41c-.18.17-.39.26-.62.26s-.44-.09-.62-.26l-2.53-2.53c-.18-.18-.26-.39-.25-.64,0-.24.1-.44.27-.62.34-.34.91-.34,1.25,0l1.88,1.9,4.78-4.78c.34-.34.9-.34,1.24,0,.17.18.26.39.26.63h0Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M11,14h2c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71-.43-.29-.71-.29h-2c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71.43.29.71.29ZM11,11h6c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71-.43-.29-.71-.29h-6c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71.43.29.71.29ZM11,8h6c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71-.43-.29-.71-.29h-6c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71.43.29.71.29ZM8,18c-.55,0-1.02-.2-1.41-.59-.39-.39-.59-.86-.59-1.41V4c0-.55.2-1.02.59-1.41.39-.39.86-.59,1.41-.59h12c.55,0,1.02.2,1.41.59s.59.86.59,1.41v12c0,.55-.2,1.02-.59,1.41-.39.39-.86.59-1.41.59H8ZM8,16h12V4H8v12ZM4,22c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V7c0-.28.1-.52.29-.71s.43-.29.71-.29.52.1.71.29.29.43.29.71v13h13c.28,0,.52.1.71.29s.29.43.29.71-.1.52-.29.71-.43.29-.71.29H4ZM8,4v12V4Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M4,22c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V7c0-.28.1-.52.29-.71s.43-.29.71-.29.52.1.71.29.29.43.29.71v13h13c.28,0,.52.1.71.29s.29.43.29.71-.1.52-.29.71-.43.29-.71.29H4ZM21.41,2.59c-.39-.39-.86-.59-1.41-.59h-12c-.55,0-1.02.19-1.41.59-.39.39-.59.86-.59,1.41v12c0,.55.19,1.02.59,1.41.39.39.86.59,1.41.59h12c.55,0,1.02-.2,1.41-.6.39-.39.59-.86.59-1.41V4c0-.55-.2-1.02-.59-1.41ZM20,15.99h-12V4h12v12ZM14,13.04l-2.28,1.38c-.1.07-.21.09-.32.08s-.21-.04-.29-.11-.14-.14-.19-.24c-.04-.09-.06-.2-.03-.33l.6-2.6-2.02-1.75c-.09-.08-.15-.18-.17-.29s-.02-.21.02-.31.09-.18.17-.25.18-.11.3-.13l2.67-.24,1.03-2.45c.04-.11.12-.19.21-.25s.19-.08.29-.08.2.03.29.08.17.13.21.25l1.03,2.45,2.67.24c.13.02.23.06.3.13s.13.14.17.25.04.2.02.31-.08.2-.17.29l-2.02,1.75.6,2.6c.03.12.02.23-.03.33s-.11.18-.19.24-.18.1-.29.11-.22-.02-.32-.08c0,0-2.28-1.38-2.28-1.38Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M5.2,12c0,1.77.58,3.31,1.73,4.63,1.15,1.32,2.6,2.09,4.35,2.33.27.03.49.15.66.35s.26.43.26.7c0,.28-.12.52-.36.7-.24.18-.51.26-.81.23-2.25-.28-4.12-1.27-5.6-2.96-1.48-1.69-2.23-3.68-2.23-5.96s.74-4.25,2.21-5.94,3.34-2.69,5.59-2.99c.32-.03.6.04.84.21s.36.41.36.71c0,.27-.09.5-.26.7s-.4.32-.66.35c-1.75.23-3.2,1.01-4.35,2.33s-1.73,2.86-1.73,4.63ZM17.38,13h-7.18c-.28,0-.52-.1-.71-.29s-.29-.43-.29-.71.1-.52.29-.71c.19-.19.43-.29.71-.29h7.18l-1.88-1.88c-.2-.2-.3-.44-.3-.71s.1-.51.3-.71.43-.3.7-.3.5.1.7.3l3.6,3.6c.2.2.3.43.3.7s-.1.5-.3.7l-3.6,3.6c-.2.2-.43.3-.7.29s-.5-.11-.7-.31-.3-.43-.3-.7.1-.5.3-.7l1.88-1.88Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M7.61,12.99l4.9,4.9c.2.2.3.43.29.7s-.11.5-.31.7c-.2.18-.43.28-.7.29s-.5-.09-.7-.29l-6.6-6.6c-.1-.1-.17-.21-.21-.33s-.06-.24-.06-.38.02-.26.06-.38.11-.23.21-.33l6.6-6.6c.18-.18.41-.28.69-.28s.51.09.71.28c.2.2.3.44.3.71s-.1.51-.3.71l-4.88,4.88h11.18c.28,0,.52.1.71.29.19.19.29.43.29.71s-.1.52-.29.71-.43.29-.71.29H7.61Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M384 64C366.3 64 352 78.3 352 96C352 113.7 366.3 128 384 128L466.7 128L265.3 329.4C252.8 341.9 252.8 362.2 265.3 374.7C277.8 387.2 298.1 387.2 310.6 374.7L512 173.3L512 256C512 273.7 526.3 288 544 288C561.7 288 576 273.7 576 256L576 96C576 78.3 561.7 64 544 64L384 64zM144 160C99.8 160 64 195.8 64 240L64 496C64 540.2 99.8 576 144 576L400 576C444.2 576 480 540.2 480 496L480 416C480 398.3 465.7 384 448 384C430.3 384 416 398.3 416 416L416 496C416 504.8 408.8 512 400 512L144 512C135.2 512 128 504.8 128 496L128 240C128 231.2 135.2 224 144 224L224 224C241.7 224 256 209.7 256 192C256 174.3 241.7 160 224 160L144 160z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M16.29,9.11l-8.9,8.9c-.18.18-.42.28-.7.28s-.52-.09-.7-.28-.28-.42-.28-.7.09-.52.28-.7L14.89,7.71h-7.6c-.28,0-.52-.1-.71-.29-.19-.19-.29-.43-.29-.71s.1-.52.29-.71c.19-.19.43-.29.71-.29h10c.28,0,.52.1.71.29s.29.43.29.71v10c0,.28-.1.52-.29.71s-.43.29-.71.29-.52-.1-.71-.29-.29-.43-.29-.71v-7.6Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M17.08,7.38c-1.15-1.32-2.6-2.09-4.35-2.33-.27-.03-.49-.15-.66-.35s-.26-.43-.26-.7c0-.3.12-.54.36-.71s.52-.25.84-.21c2.25.3,4.11,1.3,5.59,2.99s2.21,3.67,2.21,5.94-.74,4.27-2.23,5.96c-1.48,1.69-3.35,2.68-5.6,2.96-.3.03-.57-.04-.81-.23-.24-.18-.36-.42-.36-.7,0-.27.09-.5.26-.7s.4-.32.66-.35c1.75-.23,3.2-1.01,4.35-2.33,1.15-1.32,1.73-2.86,1.73-4.63s-.58-3.31-1.73-4.63ZM11.37,13h-7.18c-.28,0-.52-.1-.71-.29s-.29-.43-.29-.71.1-.52.29-.71c.19-.19.43-.29.71-.29h7.18l-1.88-1.88c-.2-.2-.3-.44-.3-.71s.1-.51.3-.71.43-.3.7-.3.5.1.7.3l3.6,3.6c.2.2.3.43.3.7s-.1.5-.3.7l-3.6,3.6c-.2.2-.43.3-.7.29s-.5-.11-.7-.31-.3-.43-.3-.7.1-.5.3-.7l1.88-1.88Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M17.38,12.21l-2.9-2.9c-.2-.2-.3-.43-.29-.7s.11-.5.31-.7c.2-.18.43-.28.7-.29s.5.09.7.29l4.6,4.6c.2.2.3.43.3.7,0,.27-.1.5-.3.7l-4.6,4.6c-.18.18-.41.28-.69.28s-.51-.09-.71-.28c-.2-.2-.3-.44-.3-.71,0-.28.1-.51.3-.71l2.88-2.88h-9.18c-1.38,0-2.56-.49-3.54-1.46s-1.46-2.15-1.46-3.54v-3c0-.28.1-.52.29-.71s.43-.29.71-.29.52.1.71.29.29.43.29.71v3c0,.83.29,1.54.88,2.13s1.29.88,2.13.88h9.18Z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
- <path d="M500-640v320l160-160-160-160ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm120-80v-560H200v560h120Zm80 0h360v-560H400v560Zm-80 0H200h120Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M12.8,15.28c.2.08.38.04.55-.13l2.45-2.45c.2-.2.3-.43.3-.7s-.1-.5-.3-.7l-2.45-2.45c-.17-.17-.35-.21-.55-.13s-.3.24-.3.48v5.6c0,.23.1.39.3.48ZM5,21c-.55,0-1.02-.2-1.41-.59-.39-.39-.59-.86-.59-1.41V5c0-.55.2-1.02.59-1.41s.86-.59,1.41-.59h14c.55,0,1.02.2,1.41.59.39.39.59.86.59,1.41v14c0,.55-.2,1.02-.59,1.41-.39.39-.86.59-1.41.59H5ZM8,5h-3s0,14,0,14h3s0-14,0-14ZM19,19V5s-9,0-9,0v14s9,0,9,0ZM5,19h3s-3,0-3,0Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
- <path d="M208 32c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 140.9 122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L352 256l122 70.4c15.3 8.8 20.6 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7L304 339.1 304 480c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-140.9L86 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7c-8.8-15.3-3.6-34.9 11.7-43.7L160 256 38 185.6c-15.3-8.8-20.5-28.4-11.7-43.7l16-27.7C51.1 98.8 70.7 93.6 86 102.4l122 70.4L208 32z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M10.25,19.25v-4.2l-3.65,2.1c-.42.23-.86.29-1.33.18s-.82-.39-1.05-.83c-.23-.42-.29-.86-.18-1.33s.38-.82.8-1.05l3.65-2.13-3.65-2.1c-.42-.23-.68-.59-.8-1.06s-.06-.92.18-1.34.58-.68,1.05-.8.91-.06,1.33.18l3.65,2.1v-4.23c0-.48.17-.9.51-1.24s.75-.51,1.24-.51.9.17,1.24.51.51.75.51,1.24v4.23l3.65-2.1c.42-.23.86-.29,1.33-.18s.82.38,1.05.8.29.86.16,1.34-.4.83-.81,1.06l-3.63,2.1,3.65,2.13c.42.23.68.58.8,1.05s.06.92-.18,1.35c-.23.42-.58.68-1.05.8s-.91.06-1.33-.18l-3.65-2.1v4.2c0,.48-.17.9-.51,1.24-.34.34-.75.51-1.24.51s-.9-.17-1.24-.51c-.34-.34-.51-.75-.51-1.24Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M200-200q-17 0-28.5-11.5T160-240q0-17 11.5-28.5T200-280h40v-280q0-83 50-147.5T420-792v-28q0-25 17.5-42.5T480-880q25 0 42.5 17.5T540-820v28q80 20 130 84.5T720-560v280h40q17 0 28.5 11.5T800-240q0 17-11.5 28.5T760-200H200Zm280-300Zm0 420q-33 0-56.5-23.5T400-160h160q0 33-23.5 56.5T480-80ZM320-280h320v-280q0-66-47-113t-113-47q-66 0-113 47t-47 113v280ZM120-560q-17 0-28.5-13T82-603q8-75 42-139.5T211-855q13-11 29.5-10t26.5 15q10 14 8 30t-15 28q-39 37-64 86t-33 106q-2 17-14 28.5T120-560Zm720 0q-17 0-29-11.5T797-600q-8-57-33-106t-64-86q-13-12-15-28t8-30q10-14 26.5-15t29.5 10q53 48 87 112.5T878-603q2 17-9.5 30T840-560Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M240-347q14-7 29-10t31-3h20v-440h-20q-25 0-42.5 17.5T240-740v393Zm160-13h320v-440H400v440Zm-160 13v-453 453Zm60 267q-58 0-99-41t-41-99v-520q0-58 41-99t99-41h420q33 0 56.5 23.5T800-800v501q0 8-6.5 14.5T770-270q-14 7-22 20t-8 30q0 17 8 30.5t22 19.5q14 6 22 16.5t8 22.5v10q0 17-11.5 29T760-80H300Zm0-80h373q-6-14-9.5-28.5T660-220q0-16 3-31t10-29H300q-26 0-43 17.5T240-220q0 26 17 43t43 17Z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path d="M21.6,18V0H6.6c-1.2,0-2.2.4-3,1.2s-1.2,1.8-1.2,3v15.6c0,1.2.4,2.2,1.2,3s1.8,1.2,3,1.2h15v-2.4c-.5,0-.9-.2-1.3-.5-.3-.3-.5-.8-.5-1.3s.2-.9.5-1.3c.3-.4.8-.5,1.3-.5ZM17.5,20.7c0,.3.2.6.3.9H6.6c-.5,0-.9-.2-1.3-.5-.3-.3-.5-.8-.5-1.3s.2-.9.5-1.3c.3-.4.8-.5,1.3-.5h11.2c-.1.3-.2.6-.3.9s0,.6,0,.9,0,.7.1.9ZM19.2,15.6H6.6c-.3,0-.7,0-.9,0-.3,0-.6.2-.9.3V4.2c0-.5.2-.9.5-1.3.3-.3.8-.5,1.3-.5h12.6v13.2ZM13.1,10.9h-2.6v-.3c0-.4,0-.8.1-1.1s.2-.5.4-.7c.2-.2.6-.6,1.3-1.2.4-.3.5-.6.5-.8s0-.4-.2-.6c-.1-.1-.4-.2-.7-.2s-.6.1-.8.3c-.2.2-.3.6-.4,1.1l-2.6-.3c0-1,.4-1.7,1-2.3.6-.6,1.5-.9,2.8-.9s1.8.2,2.4.6c.8.6,1.2,1.3,1.2,2.2s-.1.8-.3,1.1c-.2.4-.6.8-1.3,1.3-.5.4-.7.6-.9.9-.1.2-.2.5-.2.9ZM10.4,11.6h2.7v2.4h-2.7v-2.4Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M19.25,17.25c.28-.13.48-.25.59-.36s.16-.23.16-.36V4c0-.55-.2-1.02-.59-1.41s-.86-.59-1.41-.59H7.5c-.97,0-1.79.34-2.47,1.03-.68.68-1.03,1.51-1.03,2.47v13c0,.97.34,1.79,1.03,2.47.68.68,1.51,1.03,2.47,1.03h11.5c.28,0,.52-.1.71-.3.19-.2.29-.44.29-.73v-.25c0-.2-.07-.39-.2-.56-.13-.17-.32-.31-.55-.41s-.42-.26-.55-.49c-.13-.23-.2-.48-.2-.76s.07-.53.2-.75c.13-.22.32-.38.55-.5ZM16.59,19.29c.06.24.14.48.24.71H7.5c-.43,0-.79-.14-1.08-.42s-.42-.64-.42-1.08.14-.77.42-1.06.64-.44,1.08-.44h9.33c-.12.23-.2.47-.25.72s-.08.51-.08.78c0,.28.03.55.09.79ZM18,15H7.5c-.27,0-.53.03-.78.08s-.49.13-.72.25V5.5c0-.42.15-.77.44-1.06s.65-.44,1.06-.44h10.5v11ZM10.77,7.52h-1.54c0-.75.25-1.37.77-1.86.52-.49,1.21-.74,2.07-.74.55,0,1.02.1,1.41.3s.7.5.93.88.35.79.35,1.21c0,.23-.04.46-.11.68s-.19.45-.35.69c-.09.14-.32.37-.67.69-.34.31-.55.53-.64.65s-.16.3-.22.51c-.06.21-.1.5-.11.88h-1.59v-.26c0-.52.09-1,.28-1.43s.5-.83.93-1.2c.41-.36.66-.61.75-.75s.13-.3.13-.48c0-.25-.1-.46-.31-.64-.21-.17-.49-.26-.84-.26s-.65.11-.88.32c-.23.21-.35.48-.35.82ZM11.89,12.08c.29,0,.53.1.73.29.2.2.3.43.3.71s-.1.51-.3.71c-.2.2-.44.3-.72.3s-.52-.1-.72-.3-.3-.43-.3-.71.1-.51.29-.71.43-.29.71-.29Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
2
- <path d="M96 0C43 0 0 43 0 96L0 416c0 53 43 96 96 96l288 0 32 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l0-64c17.7 0 32-14.3 32-32l0-320c0-17.7-14.3-32-32-32L384 0 96 0zm0 384l256 0 0 64L96 448c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16l192 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-192 0c-8.8 0-16-7.2-16-16zm16 48l192 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-192 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M300-80q-58 0-99-41t-41-99v-520q0-58 41-99t99-41h420q33 0 56.5 23.5T800-800v501q0 8-6.5 14.5T770-270q-14 7-22 20t-8 30q0 17 8 30.5t22 19.5q14 6 22 16.5t8 22.5v10q0 17-11.5 29T760-80H300Zm60-280q17 0 28.5-11.5T400-400v-360q0-17-11.5-28.5T360-800q-17 0-28.5 11.5T320-760v360q0 17 11.5 28.5T360-360Zm-60 200h373q-6-14-9.5-28.5T660-220q0-16 3-31t10-29H300q-26 0-43 17.5T240-220q0 26 17 43t43 17Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M440-91v-366L120-642v321q0 22 10.5 40t29.5 29L440-91Zm80 0 280-161q19-11 29.5-29t10.5-40v-321L520-457v366Zm159-550 118-69-277-159q-19-11-40-11t-40 11l-79 45 318 183ZM480-526l119-68-317-184-120 69 318 183Z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
- <path d="M256 0c53 0 96 43 96 96l0 3.6c0 15.7-12.7 28.4-28.4 28.4l-135.1 0c-15.7 0-28.4-12.7-28.4-28.4l0-3.6c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4l112 0c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5l64.3 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6L272 240c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 239.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.3 0c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M224 160C224 107 267 64 320 64C373 64 416 107 416 160L416 163.6C416 179.3 403.3 192 387.6 192L252.5 192C236.8 192 224.1 179.3 224.1 163.6L224.1 160zM569.6 172.8C580.2 186.9 577.3 207 563.2 217.6L465.4 290.9C470.7 299.8 474.7 309.6 477.2 320L576 320C593.7 320 608 334.3 608 352C608 369.7 593.7 384 576 384L480 384L480 416C480 418.6 479.9 421.3 479.8 423.9L563.2 486.4C577.3 497 580.2 517.1 569.6 531.2C559 545.3 538.9 548.2 524.8 537.6L461.7 490.3C438.5 534.5 395.2 566.5 344 574.2L344 344C344 330.7 333.3 320 320 320C306.7 320 296 330.7 296 344L296 574.2C244.8 566.5 201.5 534.5 178.3 490.3L115.2 537.6C101.1 548.2 81 545.3 70.4 531.2C59.8 517.1 62.7 497 76.8 486.4L160.2 423.9C160.1 421.3 160 418.7 160 416L160 384L64 384C46.3 384 32 369.7 32 352C32 334.3 46.3 320 64 320L162.8 320C165.3 309.6 169.3 299.8 174.6 290.9L76.8 217.6C62.7 207 59.8 186.9 70.4 172.8C81 158.7 101.1 155.8 115.2 166.4L224 248C236.3 242.9 249.8 240 264 240L376 240C390.2 240 403.7 242.8 416 248L524.8 166.4C538.9 155.8 559 158.7 569.6 172.8z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M579-480 285-774q-15-15-14.5-35.5T286-845q15-15 35.5-15t35.5 15l307 308q12 12 18 27t6 30q0 15-6 30t-18 27L356-115q-15 15-35 14.5T286-116q-15-15-15-35.5t15-35.5l293-293Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M259.1 73.5C262.1 58.7 275.2 48 290.4 48L350.2 48C365.4 48 378.5 58.7 381.5 73.5L396 143.5C410.1 149.5 423.3 157.2 435.3 166.3L503.1 143.8C517.5 139 533.3 145 540.9 158.2L570.8 210C578.4 223.2 575.7 239.8 564.3 249.9L511 297.3C511.9 304.7 512.3 312.3 512.3 320C512.3 327.7 511.8 335.3 511 342.7L564.4 390.2C575.8 400.3 578.4 417 570.9 430.1L541 481.9C533.4 495 517.6 501.1 503.2 496.3L435.4 473.8C423.3 482.9 410.1 490.5 396.1 496.6L381.7 566.5C378.6 581.4 365.5 592 350.4 592L290.6 592C275.4 592 262.3 581.3 259.3 566.5L244.9 496.6C230.8 490.6 217.7 482.9 205.6 473.8L137.5 496.3C123.1 501.1 107.3 495.1 99.7 481.9L69.8 430.1C62.2 416.9 64.9 400.3 76.3 390.2L129.7 342.7C128.8 335.3 128.4 327.7 128.4 320C128.4 312.3 128.9 304.7 129.7 297.3L76.3 249.8C64.9 239.7 62.3 223 69.8 209.9L99.7 158.1C107.3 144.9 123.1 138.9 137.5 143.7L205.3 166.2C217.4 157.1 230.6 149.5 244.6 143.4L259.1 73.5zM320.3 400C364.5 399.8 400.2 363.9 400 319.7C399.8 275.5 363.9 239.8 319.7 240C275.5 240.2 239.8 276.1 240 320.3C240.2 364.5 276.1 400.2 320.3 400z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
- <path d="M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4l54.1 0 109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109 0-54.1c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7L352 176c-8.8 0-16-7.2-16-16l0-57.4c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M102.33,56.93c5.4-5.4,13.8-6.2,20.2-2l118.9,79.2c8.9,5.9,14.2,15.9,14.2,26.6v49.6l90.8,90.8c33.3-15,73.9-8.9,101.2,18.5l126.1,126.1c18.7,18.7,18.7,49.1,0,67.9l-60.1,60.1c-18.7,18.7-49.1,18.7-67.9,0l-126.1-126.1c-27.4-27.4-33.5-67.9-18.5-101.2l-90.8-90.8h-49.6c-10.7,0-20.7-5.3-26.6-14.2L54.93,122.53c-4.2-6.3-3.4-14.8,2-20.2l45.4-45.4ZM247.33,360.43c-6.3,36.9,2.3,75.9,26.2,107.2l-94.9,95c-28.1,28.1-73.7,28.1-101.8,0-28.1-28.1-28.1-73.7,0-101.8l135.4-135.5,35.2,35.1h-.1ZM415.63,63.63c20.1,0,39.4,3.7,57.1,10.5,10,3.8,11.8,16.5,4.3,24.1l-56.7,56.7c-3,3-4.7,7.1-4.7,11.3v41.4c0,8.8,7.2,16,16,16h41.4c4.2,0,8.3-1.7,11.3-4.7l56.7-56.7c7.6-7.5,20.3-5.7,24.1,4.3,6.8,17.7,10.5,37,10.5,57.1,0,43.2-17.2,82.3-45,111.1l-49.1-49.1c-33.1-33-78.5-45.7-121.1-38.4l-56.8-56.8v-29.7l-.2-5c-.8-12.4-4.4-24.3-10.5-34.9,29.4-35,73.4-57.2,122.7-57.3v.1Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
2
- <path class="cls-1" d="M12,22.5L.3,8.5,3.8,1.5h16.4l3.5,7-11.7,14.1ZM9.2,7.3h5.6l-1.8-3.5h-2l-1.8,3.5ZM10.8,17.5v-7.8h-6.5l6.5,7.8ZM13.2,17.5l6.5-7.8h-6.5v7.8ZM17.4,7.3h3.1l-1.8-3.5h-3.1l1.8,3.5ZM3.5,7.3h3.1l1.8-3.5h-3.1l-1.8,3.5Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M480-165q-17 0-33-7.5T419-194L113-560q-9-11-13.5-24T95-611q0-9 1.5-18.5T103-647l75-149q11-20 29.5-32t41.5-12h462q23 0 41.5 12t29.5 32l75 149q5 8 6.5 17.5T865-611q0 14-4.5 27T847-560L541-194q-12 14-28 21.5t-33 7.5Zm-95-475h190l-60-120h-70l-60 120Zm55 347v-267H218l222 267Zm80 0 222-267H520v267Zm144-347h106l-60-120H604l60 120Zm-474 0h106l60-120H250l-60 120Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24">
2
- <path d="M1.6,23v-5.2L17.7,1.8c.2-.2.5-.4.8-.5s.6-.2.9-.2.6,0,.9.2.6.3.8.5l1.7,1.7c.2.2.4.5.5.8s.2.6.2.9,0,.6-.2.9-.3.6-.5.8L6.8,23H1.6ZM19.5,6.8l1.6-1.6-1.7-1.7-1.6,1.6,1.7,1.7ZM13.8,23c1.5,0,2.9-.4,4.2-1.1s1.9-1.8,1.9-3.1-.2-1.4-.6-1.9-.9-1-1.6-1.4l-1.8,1.8c.5.2.8.4,1.1.7s.4.5.4.8c0,.5-.4.9-1.1,1.3s-1.6.6-2.5.6-.6.1-.9.4-.4.5-.4.9.1.6.4.9c.2.2.5.4.9.4ZM2.3,13.6l1.8-1.8c-.4-.2-.7-.3-1-.5s-.4-.4-.4-.5.2-.5.5-.7,1.1-.6,2.3-1.1c1.8-.8,3-1.5,3.6-2.1s.9-1.3.9-2.1-.4-2-1.3-2.7-2.1-1-3.5-1-1.7.2-2.5.5-1.3.7-1.7,1.2c-.2.3-.3.6-.3.9s.2.6.5.8c.3.2.6.3.9.3s.6-.2.8-.4c.3-.3.6-.5.9-.6s.8-.2,1.3-.2c.8,0,1.4.1,1.8.4s.6.5.6.9-.2.5-.5.8-1.2.6-2.5,1.2c-1.6.7-2.8,1.4-3.4,1.9s-.9,1.3-.9,2.1.2,1.2.5,1.7c.3.5.8.9,1.4,1.2Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M4.5,21c-.28,0-.52-.1-.71-.29-.19-.19-.29-.43-.29-.71v-2.43c0-.27.05-.52.15-.76s.24-.45.43-.64L16.68,3.6c.2-.2.43-.35.68-.45s.5-.15.75-.15c.27,0,.52.05.76.15s.45.25.64.45l1.4,1.4c.2.18.35.4.45.64s.15.5.15.76c0,.25-.05.5-.15.75s-.25.48-.45.68l-12.58,12.6c-.18.18-.4.33-.64.43s-.5.15-.76.15h-2.43ZM18.15,7.77l1.35-1.35-1.43-1.43-1.35,1.35,1.43,1.43ZM13.5,21c1.23,0,2.38-.31,3.43-.93s1.58-1.48,1.58-2.58c0-.53-.13-1-.4-1.39s-.62-.75-1.05-1.09c-.23-.17-.48-.25-.75-.25s-.49.1-.68.3-.28.45-.28.74.12.52.35.69c.23.18.43.35.58.5s.23.32.23.5c0,.38-.3.73-.91,1.04s-1.3.46-2.09.46c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71c.19.19.43.29.71.29ZM8.5,6c0,.23-.15.45-.44.64s-.96.53-2.01,1.01c-1.33.58-2.26,1.11-2.78,1.59s-.78,1.06-.78,1.76c0,.43.1.82.3,1.15s.46.63.78.88c.22.18.46.26.73.24s.49-.15.68-.36.27-.46.25-.73-.13-.49-.35-.68c-.12-.08-.21-.17-.28-.25-.07-.08-.1-.17-.1-.25,0-.2.15-.4.45-.6s.93-.51,1.9-.93c1.47-.63,2.44-1.21,2.93-1.73s.73-1.1.73-1.75c0-.92-.37-1.65-1.1-2.19s-1.7-.81-2.9-.81c-.75,0-1.42.13-2.01.4s-1.05.59-1.36.98c-.18.22-.26.46-.23.73s.16.48.38.65c.22.18.46.26.73.23s.49-.14.68-.33c.23-.23.49-.4.78-.5s.63-.15,1.05-.15c.68,0,1.19.1,1.51.3s.49.43.49.7Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 135 135">
2
+ <path d="M67.5,11.35c-31.01,0-56.15,25.14-56.15,56.15s25.14,56.15,56.15,56.15,56.15-25.14,56.15-56.15S98.51,11.35,67.5,11.35ZM88.75,81.41c0,1.56-.42,3.04-1.26,4.4-.85,1.36-1.95,2.38-3.35,3.09l-15.24,7.65c-.62.35-1.27.59-1.93.7-.67.12-1.32.18-2,.18s-1.32-.06-2-.18c-.67-.12-1.31-.36-1.93-.7h.02l-15.24-7.65c-1.4-.7-2.5-1.73-3.35-3.09s-1.26-2.82-1.26-4.4v-8.51l19.85,10.01c1.24.64,2.55.97,3.93.97s2.69-.32,3.91-.97l19.85-10.01v8.51h.02ZM104.75,81.31c0,1.13-.4,2.1-1.2,2.9s-1.76,1.2-2.9,1.2-2.1-.41-2.92-1.21c-.82-.82-1.23-1.78-1.23-2.91h0v-20.44l-27.59,13.88c-1.24.63-2.55.96-3.93.96s-2.69-.32-3.91-.96l-28.39-14.35c-.74-.39-1.33-.92-1.77-1.58-.44-.67-.67-1.37-.67-2.15s.22-1.49.65-2.15c.44-.67,1.03-1.2,1.77-1.61l28.39-14.34c.62-.33,1.27-.58,1.93-.74.67-.15,1.32-.23,2-.23s1.32.08,2,.23c.67.15,1.31.4,1.93.74l33.48,16.87c.7.39,1.26.91,1.7,1.55.42.64.65,1.37.65,2.19v22.15h0Z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
2
- <path d="M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM112 256l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64l160 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-160 0c-8.8 0-16-7.2-16-16s7.2-16 16-16z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M9,18h6c.28,0,.52-.1.71-.29.19-.19.29-.43.29-.71s-.1-.52-.29-.71-.43-.29-.71-.29h-6c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71c.19.19.43.29.71.29ZM9,14h6c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71-.43-.29-.71-.29h-6c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71.43.29.71.29ZM6,22c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V4c0-.55.2-1.02.59-1.41s.86-.59,1.41-.59h7.18c.27,0,.52.05.76.15s.45.24.64.43l4.85,4.85c.18.18.33.4.43.64s.15.5.15.76v11.18c0,.55-.2,1.02-.59,1.41s-.86.59-1.41.59H6ZM13,8c0,.28.1.52.29.71s.43.29.71.29h4l-5-5v4Z"/>
3
3
  </svg>
@@ -1,5 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
2
- <path d="M18.29,23.19c-.15-.15-.32-.28-.48-.36l-7.7-.04c-.36,0-.72.12-1.13.4-.29.29-.4.79-.4,1.13,0,.4.14.78.4,1.03.33.33.7.49,1.13.49h7.06c.25,0,.47-.05.65-.14.15-.07.3-.18.44-.32.13-.08.31-.26.33-.59.07-.16.1-.32.1-.47,0-.22-.03-.41-.1-.57-.02-.2-.12-.38-.29-.55Z"/>
3
- <path d="M9.03,18.41l-.1.1c-.23.35-.35.71-.35,1.07s.12.72.35,1.07l.1.1c.35.23.71.35,1.07.35h7.06c.25,0,.46-.05.65-.14l.39-.19.09-.07c.18-.18.28-.37.3-.58.07-.21.1-.39.1-.55s-.03-.34-.1-.55c-.02-.2-.12-.4-.3-.58l-.48-.26c-.18-.09-.4-.13-.64-.13h-7.06c-.36,0-.72.12-1.07.35Z"/>
4
- <path d="M28.92,6.66L23.03.76l-.25-.3h-.15s-.16-.05-.28-.08c-.3-.09-.37-.11-.45-.11h-11.8c-.38,0-.73.08-1,.22-.37.15-.67.34-.9.56-.28.28-.5.58-.65.87l-.03.09c-.07.34-.1.69-.1,1.04v1.96h-2.05c-.38,0-.72.08-1,.22-.37.15-.67.34-.9.56-.3.3-.5.62-.56.9-.15.36-.22.73-.22,1.1v21.17c0,.37.07.74.2,1.05.08.32.28.64.58.94.23.23.53.42.87.55.31.15.66.23,1.03.23h16.53c.38,0,.72-.08,1.01-.22.37-.15.67-.34.9-.56.28-.28.5-.58.65-.87l.03-.09c.07-.34.1-.69.1-1.04v-1.96h2.05c.38,0,.73-.08,1-.22.37-.15.67-.34.9-.56.3-.3.5-.62.56-.9.15-.36.22-.74.22-1.1V7.49c0-.2-.3-.74-.4-.84ZM21.53,13.06v15.54H5.73V8.14h10.8l5.01,4.91ZM24.57,11.89l-.09-.1s-.07-.09-.11-.15c-.07-.1-.14-.2-.18-.24l-5.9-5.9-.25-.3h-.15c-.05-.01-.17-.05-.28-.08-.29-.09-.37-.11-.45-.11h-6.7v-1.6h10.8l5.01,5.01v15.54h-1.69v-12.06Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
2
+ <path d="M146,184c0,5.51-4.49,10-10,10h-48c-5.51,0-10-4.49-10-10s4.49-10,10-10h48c5.51,0,10,4.49,10,10ZM78,152c0,5.51,4.49,10,10,10h48c5.51,0,10-4.49,10-10s-4.49-10-10-10h-48c-5.51,0-10,4.49-10,10ZM218,72v112c0,9.92-8.08,18-18,18h-14v14c0,9.92-8.08,18-18,18H56c-9.93,0-18-8.08-18-18V72c0-9.93,8.07-18,18-18h14v-14c0-9.93,8.07-18,18-18h80.01c2.67,0,5.18,1.04,7.07,2.92l40,40c1.89,1.89,2.93,4.4,2.92,7.08ZM131.86,74H58v140h108v-105.86l-34.14-34.14ZM186,104v78h12v-105.86l-34.14-34.14h-73.86v12h46.01c2.67,0,5.18,1.04,7.07,2.92l40,40c1.89,1.89,2.93,4.4,2.93,7.08Z"/>
5
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M281.6 93.9L297.6 72.6C301.6 67.2 308 64 314.7 64C326.4 64 336 73.6 336 85.3L336 107.4C336 120.5 341.4 133.1 350.9 142.1L435.6 223C484.4 269.6 512 334.2 512 401.7C512 498 434 576 337.7 576L320 576C214 576 128 490 128 384L128 380.2C128 331.4 147.4 284.6 181.9 250.1L185.4 246.6C189.6 242.4 195.4 240 201.4 240C213.9 240 224 250.1 224 262.6L224 352C224 387.3 252.7 416 288 416C323.3 416 352 387.3 352 352L352 348.1C352 330.1 344.8 312.8 332.1 300.1L293.5 261.5C269.5 237.5 256 204.8 256 170.8C256 143.1 265 116 281.6 93.9z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path d="M2.3,21.2c-.6,0-1.2-.2-1.6-.7s-.7-1-.7-1.6V5.1c0-.6.2-1.2.7-1.6s1-.7,1.6-.7h6c.3,0,.6,0,.9.2s.5.3.7.5l1.6,1.6h10.4c.3,0,.6.1.8.3s.3.5.3.8-.1.6-.3.8-.5.3-.8.3h-11.3l-2.3-2.3H2.3v13.8l2.3-7.6c.2-.5.4-.9.9-1.2.4-.3.9-.4,1.4-.4h14.9c.8,0,1.4.3,1.9.9.5.6.6,1.3.4,2l-2.1,6.9c-.2.5-.4.9-.9,1.2s-.9.4-1.4.4H2.3ZM4.7,18.9h14.9l2.1-6.9H6.8l-2.1,6.9ZM2.3,11.4v-6.3,6.3ZM4.7,18.9l2.1-6.9-2.1,6.9Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M3.59,20c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V6c0-.55.2-1.02.59-1.41s.86-.59,1.41-.59h5.18c.27,0,.52.05.76.15s.45.24.64.43l1.43,1.43h9c.28,0,.52.1.71.29s.29.43.29.71-.1.52-.29.71-.43.29-.71.29h-9.83l-2-2H3.59v12l1.98-6.58c.13-.43.38-.78.74-1.04.36-.26.75-.39,1.19-.39h12.9c.68,0,1.22.27,1.61.81.39.54.5,1.13.31,1.76l-1.8,6c-.13.43-.38.78-.74,1.04s-.75.39-1.19.39H3.59ZM5.69,18h12.9l1.8-6H7.49l-1.8,6ZM3.59,11.45v-5.45,5.45ZM5.69,18l1.8-6-1.8,6Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path d="M2.4,21.6c-.7,0-1.2-.2-1.7-.7S0,19.9,0,19.2V4.8C0,4.1.2,3.6.7,3.1s1-.7,1.7-.7h6.2c.3,0,.6,0,.9.2s.5.3.8.5l1.7,1.7h9.6c.7,0,1.2.2,1.7.7s.7,1,.7,1.7v12c0,.7-.2,1.2-.7,1.7s-1,.7-1.7.7H2.4ZM2.4,19.2h19.2V7.2h-10.6l-2.4-2.4H2.4v14.4ZM2.4,19.2V4.8v14.4Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M4,20c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V6c0-.55.2-1.02.59-1.41s.86-.59,1.41-.59h5.18c.27,0,.52.05.76.15s.45.24.64.43l1.43,1.43h8c.55,0,1.02.2,1.41.59s.59.86.59,1.41v10c0,.55-.2,1.02-.59,1.41s-.86.59-1.41.59H4ZM4,18h16V8h-8.83l-2-2H4v12ZM4,18V6v12Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
- <path d="M352 256c0 22.2-1.2 43.6-3.3 64l-185.3 0c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64l185.3 0c2.2 20.4 3.3 41.8 3.3 64zm28.8-64l123.1 0c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64l-123.1 0c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32l-116.7 0c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0l-176.6 0c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0L18.6 160C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192l123.1 0c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64L8.1 320C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6l176.6 0c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352l116.7 0zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6l116.7 0z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q83 0 155.5 31.5t127 86q54.5 54.5 86 127T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Zm0-82q26-36 45-75t31-83H404q12 44 31 83t45 75Zm-104-16q-18-33-31.5-68.5T322-320H204q29 50 72.5 87t99.5 55Zm208 0q56-18 99.5-55t72.5-87H638q-9 38-22.5 73.5T584-178ZM170-400h136q-3-20-4.5-39.5T300-480q0-21 1.5-40.5T306-560H170q-5 20-7.5 39.5T160-480q0 21 2.5 40.5T170-400Zm216 0h188q3-20 4.5-39.5T580-480q0-21-1.5-40.5T574-560H386q-3 20-4.5 39.5T380-480q0 21 1.5 40.5T386-400Zm268 0h136q5-20 7.5-39.5T800-480q0-21-2.5-40.5T790-560H654q3 20 4.5 39.5T660-480q0 21-1.5 40.5T654-400Zm-16-240h118q-29-50-72.5-87T584-782q18 33 31.5 68.5T638-640Zm-234 0h152q-12-44-31-83t-45-75q-26 36-45 75t-31 83Zm-200 0h118q9-38 22.5-73.5T376-782q-56 18-99.5 55T204-640Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path d="m5.2 18.2q-0.6-0.3-0.9-0.8-0.2-0.5-0.2-1.1v-5l-2.6-1.4q-0.2-0.2-0.4-0.4-0.1-0.2-0.1-0.5 0-0.3 0.1-0.5 0.2-0.3 0.4-0.4l8.9-4.8q0.2-0.2 0.5-0.2 0.2-0.1 0.5-0.1 0.2 0 0.5 0.1 0.2 0 0.5 0.2l9.9 5.4q0.3 0.1 0.4 0.4 0.2 0.2 0.2 0.5v6.7q0 0.4-0.3 0.7-0.3 0.3-0.8 0.3-0.4 0-0.7-0.3-0.3-0.3-0.3-0.7v-6.2l-2.1 1.2v5q0 0.6-0.3 1.1-0.3 0.5-0.8 0.8l-5.2 2.8q-0.3 0.1-0.5 0.2-0.3 0-0.5 0-0.3 0-0.5 0-0.3-0.1-0.5-0.2zm6.2-5.3l7.2-3.9-7.2-3.9-7.2 3.9zm0 6.3l5.3-2.8v-4l-4.2 2.4q-0.3 0.1-0.5 0.2-0.3 0-0.6 0-0.2 0-0.5 0-0.2-0.1-0.5-0.2l-4.2-2.4v4z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M5.51,17.78c-.33-.18-.59-.43-.78-.74s-.28-.65-.28-1.04v-4.8l-2.4-1.33c-.18-.1-.32-.23-.4-.38s-.13-.32-.13-.5.04-.35.13-.5.22-.28.4-.38L10.51,3.52c.15-.08.3-.15.46-.19s.32-.06.49-.06.33.02.49.06.31.1.46.19l9.53,5.2c.17.08.3.2.39.36s.14.33.14.51v6.4c0,.28-.1.52-.29.71s-.43.29-.71.29-.52-.1-.71-.29-.29-.43-.29-.71v-5.9l-2,1.1v4.8c0,.38-.09.73-.28,1.04s-.44.55-.78.74l-5,2.7c-.15.08-.3.15-.46.19s-.32.06-.49.06-.33-.02-.49-.06-.31-.1-.46-.19l-5-2.7ZM11.46,12.7l6.85-3.7-6.85-3.7-6.85,3.7,6.85,3.7ZM11.46,18.73l5-2.7v-3.78l-4.03,2.23c-.15.08-.31.15-.48.19s-.33.06-.5.06-.33-.02-.5-.06-.33-.1-.48-.19l-4.03-2.23v3.78l5,2.7Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M12.13,21.04c-.28,0-.52-.1-.71-.29-.19-.19-.29-.43-.29-.71,0-.12.03-.24.08-.36s.13-.24.23-.34l4.28-4.28c.1-.1.15-.22.15-.36s-.05-.26-.15-.36-.22-.15-.36-.14-.26.06-.36.16l-4.25,4.25c-.1.1-.21.18-.33.23s-.24.08-.38.08c-.28,0-.52-.1-.71-.29s-.29-.43-.29-.71c0-.17.03-.3.08-.41s.12-.2.2-.29l4.28-4.28c.1-.1.15-.22.15-.35s-.05-.25-.15-.35-.22-.15-.35-.15-.25.05-.35.15l-4.28,4.25c-.1.1-.21.18-.33.23s-.25.08-.4.08c-.27,0-.5-.1-.7-.3s-.3-.43-.3-.7c0-.13.03-.26.08-.38s.13-.23.23-.33l4.25-4.25c.1-.1.15-.22.15-.36s-.05-.26-.15-.36-.22-.15-.35-.15-.25.05-.35.15l-4.25,4.28c-.08.08-.18.15-.3.2s-.26.08-.43.08c-.28,0-.52-.1-.71-.29s-.29-.43-.29-.71c0-.13.03-.26.08-.38s.13-.23.23-.33l4.9-4.9c.18-.18.41-.27.69-.25s.5.12.69.3l3.05,3.05c.18.18.4.33.65.44s.5.16.75.16c.53,0,1-.19,1.4-.56s.6-.85.6-1.44c0-.23-.04-.48-.13-.73s-.23-.48-.45-.7l-3.43-3.43c-.18-.18-.3-.38-.36-.6s-.03-.43.09-.63c.15-.25.34-.43.58-.55s.49-.18.78-.18c.35,0,.71.08,1.08.25s.7.4,1,.7l4.23,4.25c.3.3.52.63.66,1s.21.79.21,1.28c0,.33-.08.67-.23,1.01-.15.34-.37.65-.65.94l-8.33,8.35c-.13.13-.25.22-.35.25s-.22.05-.35.05ZM2.92,12.16c-.32-.23-.55-.51-.71-.84s-.24-.67-.24-1.04.08-.76.24-1.13.39-.7.69-1L7.12,3.91c.28-.28.6-.5.94-.65s.7-.23,1.09-.23c.42,0,.82.08,1.21.23s.73.37,1.01.65l5.13,5.13c.08.08.15.19.21.31s.09.25.09.39c0,.28-.1.52-.29.71s-.43.29-.71.29c-.13,0-.26-.03-.39-.09s-.23-.13-.31-.21l-3.08-3.05c-.38-.38-.85-.58-1.41-.58s-1.03.19-1.41.58l-4.7,4.7c-.22.22-.47.33-.76.34s-.56-.08-.81-.26Z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
2
- <path d="M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185l0-121c0-17.7-14.3-32-32-32l-32 0c-17.7 0-32 14.3-32 32l0 36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1l32 0 0 69.7c-.1 .9-.1 1.8-.1 2.8l0 112c0 22.1 17.9 40 40 40l16 0c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2l31.9 0 24 0c22.1 0 40-17.9 40-40l0-24 0-64c0-17.7 14.3-32 32-32l64 0c17.7 0 32 14.3 32 32l0 64 0 24c0 22.1 17.9 40 40 40l24 0 32.5 0c1.4 0 2.8 0 4.2-.1c1.1 .1 2.2 .1 3.3 .1l16 0c22.1 0 40-17.9 40-40l0-16.2c.3-2.6 .5-5.3 .5-8.1l-.7-160.2 32 0z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M341.8 72.6C329.5 61.2 310.5 61.2 298.3 72.6L74.3 280.6C64.7 289.6 61.5 303.5 66.3 315.7C71.1 327.9 82.8 336 96 336L112 336L112 512C112 547.3 140.7 576 176 576L464 576C499.3 576 528 547.3 528 512L528 336L544 336C557.2 336 569 327.9 573.8 315.7C578.6 303.5 575.4 289.5 565.8 280.6L341.8 72.6zM304 384L336 384C362.5 384 384 405.5 384 432L384 528L256 528L256 432C256 405.5 277.5 384 304 384z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M5,21c-.55,0-1.02-.2-1.41-.59-.39-.39-.59-.86-.59-1.41V5c0-.55.2-1.02.59-1.41.39-.39.86-.59,1.41-.59h14c.55,0,1.02.2,1.41.59s.59.86.59,1.41v14c0,.55-.2,1.02-.59,1.41-.39.39-.86.59-1.41.59H5ZM5,19h14V5H5v14ZM5,5v14V5ZM8,17h5c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71-.43-.29-.71-.29h-5c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71.43.29.71.29ZM8,13h8c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71c-.19-.19-.43-.29-.71-.29H8c-.28,0-.52.1-.71.29-.19.19-.29.43-.29.71s.1.52.29.71.43.29.71.29ZM8,9h8c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71-.43-.29-.71-.29H8c-.28,0-.52.1-.71.29s-.29.43-.29.71.1.52.29.71.43.29.71.29Z"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
2
- <path d="M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576C388.8 576 451.3 548.8 497.3 504.6C504.6 497.6 506.7 486.7 502.6 477.5C498.5 468.3 488.9 462.6 478.8 463.4C473.9 463.8 469 464 464 464C362.4 464 280 381.6 280 280C280 207.9 321.5 145.4 382.1 115.2C391.2 110.7 396.4 100.9 395.2 90.8C394 80.7 386.6 72.5 376.7 70.3C358.4 66.2 339.4 64 320 64z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path d="M10.8,17.9h2.4v-4.7h4.7v-2.4h-4.7v-4.7h-2.4v4.7h-4.7v2.4h4.7v4.7ZM12,23.8c-1.6,0-3.2-.3-4.6-.9s-2.7-1.5-3.7-2.5-1.9-2.3-2.5-3.7S.2,13.6.2,12s.3-3.2.9-4.6,1.5-2.7,2.5-3.7,2.3-1.9,3.7-2.5S10.4.2,12,.2s3.2.3,4.6.9,2.7,1.5,3.7,2.5,1.9,2.3,2.5,3.7.9,3,.9,4.6-.3,3.2-.9,4.6-1.5,2.7-2.5,3.7-2.3,1.9-3.7,2.5-3,.9-4.6.9ZM12,21.4c2.6,0,4.9-.9,6.7-2.7s2.7-4.1,2.7-6.7-.9-4.9-2.7-6.7-4.1-2.7-6.7-2.7-4.9.9-6.7,2.7-2.7,4.1-2.7,6.7.9,4.9,2.7,6.7,4.1,2.7,6.7,2.7Z"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M11,13v3c0,.28.1.52.29.71s.43.29.71.29.52-.1.71-.29c.19-.19.29-.43.29-.71v-3h3c.28,0,.52-.1.71-.29s.29-.43.29-.71-.1-.52-.29-.71c-.19-.19-.43-.29-.71-.29h-3v-3c0-.28-.1-.52-.29-.71-.19-.19-.43-.29-.71-.29s-.52.1-.71.29-.29.43-.29.71v3h-3c-.28,0-.52.1-.71.29-.19.19-.29.43-.29.71s.1.52.29.71.43.29.71.29h3ZM12,22c-1.38,0-2.68-.26-3.9-.79s-2.28-1.24-3.18-2.14-1.61-1.96-2.14-3.18-.79-2.52-.79-3.9.26-2.68.79-3.9,1.24-2.28,2.14-3.18,1.96-1.61,3.18-2.14,2.52-.79,3.9-.79,2.68.26,3.9.79,2.28,1.24,3.18,2.14,1.61,1.96,2.14,3.18.79,2.52.79,3.9-.26,2.68-.79,3.9-1.24,2.28-2.14,3.18-1.96,1.61-3.18,2.14-2.52.79-3.9.79ZM12,20c2.23,0,4.13-.78,5.68-2.33s2.33-3.44,2.33-5.68-.78-4.13-2.33-5.68-3.44-2.33-5.68-2.33-4.13.78-5.68,2.33-2.33,3.44-2.33,5.68.78,4.13,2.33,5.68,3.44,2.33,5.68,2.33Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
2
- <path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M10.76,13.24h-6.18c-.35,0-.64-.12-.88-.36s-.36-.53-.36-.88.12-.64.36-.88.53-.36.88-.36h6.18v-6.18c0-.35.12-.64.36-.88s.53-.36.88-.36.64.12.88.36.36.53.36.88v6.18h6.18c.35,0,.64.12.88.36.23.23.36.53.36.88s-.12.64-.36.88-.53.36-.88.36h-6.18v6.18c0,.35-.12.64-.36.88-.23.23-.53.36-.88.36s-.64-.12-.88-.36-.36-.53-.36-.88v-6.18Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
2
- <path d="M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2l56.8 0c26.5 0 48 21.5 48 48l0 56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2L384 464c0 26.5-21.5 48-48 48l-56.8 0c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2L48 512c-26.5 0-48-21.5-48-48L0 343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8L0 176c0-26.5 21.5-48 48-48l120.8 0c12.8 0 23.2-10.4 23.2-23.2z" />
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
2
+ <path d="M288,64c35.3,0,64,21.5,64,48,0,10.4-4.4,20-12,27.9-6.6,6.9-12,15.3-12,24.9,0,15,12.2,27.2,27.2,27.2h44.8c26.5,0,48,21.5,48,48v44.8c0,15,12.2,27.2,27.2,27.2,9.5,0,18-5.4,24.9-12,7.9-7.5,17.5-12,27.9-12,26.5,0,48,28.7,48,64s-21.5,64-48,64c-10.4,0-20.1-4.4-27.9-12-6.9-6.6-15.3-12-24.9-12-15,0-27.2,12.2-27.2,27.2v108.8c0,26.5-21.5,48-48,48h-56.8c-12.8,0-23.2-10.4-23.2-23.2,0-9.2,5.8-17.3,13.2-22.8,11.6-8.7,18.8-20.7,18.8-34,0-26.5-28.7-48-64-48s-64,21.5-64,48c0,13.3,7.2,25.3,18.8,34,7.4,5.5,13.2,13.5,13.2,22.8,0,12.8-10.4,23.2-23.2,23.2h-120.8c-26.5,0-48-21.5-48-48v-120.8c0-12.8,10.4-23.2,23.2-23.2,9.2,0,17.3,5.8,22.8,13.2,8.7,11.6,20.7,18.8,34,18.8,26.5,0,48-28.7,48-64s-21.5-64-48-64c-13.3,0-25.3,7.2-34,18.8-5.5,7.4-13.5,13.2-22.8,13.2-12.8,0-23.2-10.4-23.2-23.2v-56.8c0-26.5,21.5-48,48-48h108.8c15,0,27.2-12.2,27.2-27.2,0-9.5-5.4-18-12-24.9-7.5-7.9-12-17.5-12-27.9,0-26.5,28.7-48,64-48h0Z"/>
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
2
+ <path d="M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm-36-154h74q0-33 7.5-52t42.5-52q26-26 41-49.5t15-56.5q0-56-41-86t-97-30q-57 0-92.5 30T342-618l66 26q5-18 22.5-39t53.5-21q32 0 48 17.5t16 38.5q0 20-12 37.5T506-526q-44 39-54 59t-10 73Zm38 314q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/>
3
+ </svg>