erudit 3.0.0-dev.3 → 3.0.0-dev.30
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.
- package/app/app.vue +35 -172
- package/app/assets/icons/array-check.svg +3 -0
- package/app/assets/icons/array-lines.svg +3 -0
- package/app/assets/icons/array-star.svg +3 -0
- package/app/assets/icons/arrow/from-circle.svg +3 -0
- package/app/assets/icons/arrow/left.svg +3 -0
- package/app/assets/icons/arrow/outward-box.svg +3 -0
- package/app/assets/icons/arrow/outward.svg +3 -0
- package/app/assets/icons/arrow/to-circle.svg +3 -0
- package/app/assets/icons/arrow/up-to-right.svg +3 -0
- package/app/assets/icons/aside-open.svg +2 -2
- package/app/assets/icons/asterisk.svg +2 -2
- package/app/assets/icons/bell.svg +3 -0
- package/app/assets/icons/book-outline.svg +3 -0
- package/app/assets/icons/book-question.svg +2 -2
- package/app/assets/icons/book.svg +2 -2
- package/app/assets/icons/box.svg +3 -0
- package/app/assets/icons/bug.svg +2 -2
- package/app/assets/icons/chevron-right.svg +3 -0
- package/app/assets/icons/cog.svg +3 -0
- package/app/assets/icons/construction.svg +2 -2
- package/app/assets/icons/diamond.svg +3 -0
- package/app/assets/icons/draw.svg +2 -2
- package/app/assets/icons/erudit.svg +3 -0
- package/app/assets/icons/file-lines.svg +2 -2
- package/app/assets/icons/files.svg +3 -0
- package/app/assets/icons/flame.svg +3 -0
- package/app/assets/icons/folder-open.svg +2 -2
- package/app/assets/icons/folder.svg +2 -2
- package/app/assets/icons/globe.svg +2 -2
- package/app/assets/icons/graduation.svg +3 -0
- package/app/assets/icons/handshake.svg +3 -0
- package/app/assets/icons/house.svg +2 -2
- package/app/assets/icons/lines.svg +3 -0
- package/app/assets/icons/moon.svg +2 -2
- package/app/assets/icons/plus-circle.svg +2 -2
- package/app/assets/icons/plus.svg +2 -2
- package/app/assets/icons/puzzle.svg +2 -2
- package/app/assets/icons/question-circle.svg +3 -0
- package/app/assets/icons/rocket.svg +3 -0
- package/app/assets/icons/search/check.svg +3 -0
- package/app/assets/icons/search/dead.svg +3 -0
- package/app/assets/icons/search/glass.svg +3 -0
- package/app/assets/icons/search/wtf.svg +3 -0
- package/app/assets/icons/sun-moon.svg +2 -2
- package/app/assets/icons/sun.svg +2 -2
- package/app/assets/icons/translate.svg +3 -0
- package/app/assets/icons/user.svg +2 -2
- package/app/assets/icons/users.svg +2 -2
- package/app/assets/icons/warning.svg +3 -0
- package/app/components/EruditLink.ts +9 -0
- package/app/components/FancyBold.vue +17 -0
- package/app/components/FancyCard.vue +58 -0
- package/app/components/FancyCardTag.vue +16 -0
- package/app/components/Prose.vue +51 -0
- package/app/components/ScrollHolder.vue +20 -0
- package/app/components/SmartMedia.vue +112 -0
- package/app/components/ads/Ads.vue +39 -0
- package/app/components/ads/AdsBannerAside.vue +46 -0
- package/app/components/ads/AdsBannerBottom.vue +17 -0
- package/app/components/ads/AdsReplacer.vue +28 -0
- package/app/components/ads/provider/Custom.vue +19 -0
- package/app/components/ads/provider/Yandex.vue +84 -0
- package/app/components/aside/AsideListItem.vue +52 -60
- package/app/components/aside/AsideMajor.vue +4 -52
- package/app/components/aside/AsideMinor.vue +65 -60
- package/app/components/aside/AsideSwitch.vue +67 -0
- package/app/components/aside/major/PaneHolder.vue +106 -0
- package/app/components/aside/major/PaneSwitcher.vue +73 -0
- package/app/components/aside/major/PaneSwitcherButton.vue +38 -0
- package/app/components/aside/major/PaneTemplate.vue +5 -0
- package/app/components/aside/major/SiteInfo.vue +54 -71
- package/app/components/aside/major/contentNav/PaneBookNav.vue +116 -0
- package/app/components/aside/major/contentNav/PaneGlobalNav.vue +24 -0
- package/app/components/aside/major/contentNav/items/ContentNavBook.vue +21 -0
- package/app/components/aside/major/contentNav/items/ContentNavFolder.vue +92 -0
- package/app/components/aside/major/contentNav/items/ContentNavItem.vue +33 -0
- package/app/components/aside/major/contentNav/items/ContentNavPage.vue +18 -0
- package/app/components/aside/major/contentNav/items/ContentNavSeparator.vue +62 -0
- package/app/components/aside/major/contentNav/items/ContentNavTopic.vue +18 -0
- package/app/components/aside/major/contentNav/items/Flags.vue +52 -0
- package/app/components/aside/major/contentNav/items/ItemTemplate.vue +27 -0
- package/app/components/aside/major/languages/PaneLanguages.vue +55 -0
- package/app/components/aside/major/pages/PanePages.vue +60 -0
- package/app/components/aside/major/search/PaneSearch.vue +145 -0
- package/app/components/aside/major/search/SearchInput.vue +104 -0
- package/app/components/aside/major/search/SearchResult.vue +103 -0
- package/app/components/aside/major/search/SearchStatus.vue +48 -0
- package/app/components/aside/major/search/search.worker.ts +164 -0
- package/app/components/aside/major/settings/BuildTime.vue +25 -0
- package/app/components/aside/major/settings/EngineVersion.vue +13 -0
- package/app/components/aside/major/settings/PaneSettings.vue +17 -0
- package/app/components/aside/major/settings/ThemeSwitcher.vue +53 -0
- package/app/components/aside/major/settings/repository/Repository.vue +33 -0
- package/app/components/aside/major/settings/repository/SecondaryGitHub.vue +71 -0
- package/app/components/aside/minor/AsideMinorPane.vue +5 -15
- package/app/components/aside/minor/AsideMinorPlainHeader.vue +21 -0
- package/app/components/aside/minor/content/AsideMinorContentContributions.vue +53 -0
- package/app/components/aside/minor/content/AsideMinorContentPage.vue +37 -0
- package/app/components/aside/minor/content/AsideMinorContentTopic.vue +66 -0
- package/app/components/aside/minor/content/ButtonPaneContributions.vue +116 -0
- package/app/components/aside/minor/content/ButtonPaneImprove.vue +121 -0
- package/app/components/aside/minor/content/Contribution.vue +34 -0
- package/app/components/aside/minor/content/Toc.vue +165 -0
- package/app/components/aside/minor/content/TocItem.vue +77 -0
- package/app/components/aside/minor/content/TopicPartButton.vue +35 -0
- package/app/components/aside/minor/contributor/AsideMinorContributor.vue +41 -0
- package/app/components/aside/minor/contributor/ItemBook.vue +39 -0
- package/app/components/aside/minor/contributor/ItemContent.vue +17 -0
- package/app/components/aside/minor/news/AsideMinorNews.vue +135 -0
- package/app/components/aside/minor/news/NewsItem.vue +69 -0
- package/app/components/aside/minor/news/RenderNewsElement.vue +42 -0
- package/app/components/aside/minor/news/elements/Mix.vue +11 -0
- package/app/components/aside/minor/news/elements/P.vue +14 -0
- package/app/components/aside/minor/news/elements/Ref.vue +58 -0
- package/app/components/aside/minor/news/elements/Text.vue +18 -0
- package/app/components/indexPage/IndexPagePersons.vue +117 -0
- package/app/components/main/MainAction.vue +20 -0
- package/app/components/main/MainBreadcrumbs.vue +28 -0
- package/app/components/main/MainContentChild.vue +48 -0
- package/app/components/main/MainContentChildren.vue +14 -0
- package/app/components/main/MainDecoration.vue +15 -0
- package/app/components/main/MainDescription.vue +13 -0
- package/app/components/main/MainFlag.vue +133 -0
- package/app/components/main/MainFlags.vue +17 -0
- package/app/components/main/MainGlow.vue +12 -0
- package/app/components/main/MainQuickLink.vue +76 -0
- package/app/components/main/MainQuickLinks.vue +42 -0
- package/app/components/main/MainQuote.vue +160 -0
- package/app/components/main/MainQuoteLoader.vue +86 -0
- package/app/components/main/MainSection.vue +55 -0
- package/app/components/main/MainSectionPreamble.vue +5 -0
- package/app/components/main/MainSubTitle.vue +12 -0
- package/app/components/main/MainTitle.vue +33 -0
- package/app/components/main/MainTopicPartPage.vue +88 -0
- package/app/components/main/MainTopicPartSwitch.vue +71 -0
- package/app/components/main/connections/Deps.vue +34 -0
- package/app/components/main/connections/Externals.vue +46 -0
- package/app/components/main/connections/MainConnections.vue +41 -0
- package/app/components/main/connections/MainConnectionsButton.vue +80 -0
- package/app/components/main/connections/ScrollPane.vue +11 -0
- package/app/components/main/contentStats/Item.vue +35 -0
- package/app/components/main/contentStats/ItemElement.vue +19 -0
- package/app/components/main/contentStats/ItemMaterials.vue +11 -0
- package/app/components/main/contentStats/MainContentStats.vue +50 -0
- package/app/components/preview/Preview.vue +155 -159
- package/app/components/preview/PreviewError.vue +10 -0
- package/app/components/preview/PreviewLoading.vue +2 -11
- package/app/components/preview/PreviewScreen.vue +56 -90
- package/app/components/preview/PreviewScreenButton.vue +39 -0
- package/app/components/preview/screen/ContentPage.vue +50 -0
- package/app/components/preview/screen/DirectLink.vue +23 -0
- package/app/components/preview/screen/Unique.vue +54 -0
- package/app/components/site/SiteAside.vue +70 -0
- package/app/components/site/SiteAsideOverlay.vue +21 -0
- package/app/components/site/SiteMain.vue +16 -0
- package/app/components/transition/Fade.vue +23 -12
- package/app/components/transition/Slide.vue +47 -0
- package/app/components/tree/TreeContainer.vue +1 -7
- package/app/components/tree/TreeItem.vue +30 -79
- package/app/composables/ads.ts +17 -0
- package/app/composables/analytics.ts +102 -0
- package/app/composables/appElements.ts +40 -0
- package/app/composables/aside.ts +28 -0
- package/app/composables/asideMajorPane.ts +135 -0
- package/app/composables/asideMinor.ts +109 -0
- package/app/composables/contentNav.ts +7 -0
- package/app/composables/favicon.ts +108 -8
- package/app/composables/file.ts +3 -0
- package/app/composables/formatText.ts +96 -86
- package/app/composables/loading.ts +2 -0
- package/app/composables/mainContent.ts +31 -0
- package/app/composables/og.ts +169 -0
- package/app/composables/phrases.ts +110 -64
- package/app/composables/preview.ts +53 -0
- package/app/composables/route.ts +4 -0
- package/app/composables/theme.ts +64 -22
- package/app/composables/url.ts +16 -27
- package/app/formatters/ru.ts +14 -0
- package/app/pages/article/[...articleId].vue +12 -3
- package/app/pages/book/[...bookId].vue +56 -47
- package/app/pages/contributor/[contributorId].vue +151 -0
- package/app/pages/contributors.vue +100 -0
- package/app/pages/group/[...groupId].vue +58 -65
- package/app/pages/index.vue +120 -32
- package/app/pages/page/[...pageId].vue +60 -0
- package/app/pages/practice/[...practiceId].vue +12 -0
- package/app/pages/sponsors.vue +85 -0
- package/app/pages/summary/[...summaryId].vue +12 -3
- package/app/plugins/appSetup/client/htmlBranding.ts +6 -0
- package/app/plugins/appSetup/client/welcome.ts +35 -0
- package/app/plugins/appSetup/config.ts +6 -0
- package/app/plugins/appSetup/global.ts +3 -0
- package/app/plugins/appSetup/index.ts +28 -0
- package/app/plugins/prerender.server.ts +39 -0
- package/app/router.options.ts +5 -0
- package/app/scripts/theme.js +33 -0
- package/app/styles/main.css +173 -0
- package/bin/erudit.mjs +2 -0
- package/modules/erudit/globals/content.ts +4 -0
- package/modules/erudit/globals/contributor.ts +1 -0
- package/modules/erudit/globals/eruditConfig.ts +10 -0
- package/modules/erudit/globals/problem.ts +1 -0
- package/modules/erudit/globals/prose.ts +1 -0
- package/modules/erudit/globals/public.ts +18 -0
- package/modules/erudit/index.ts +60 -0
- package/{module → modules/erudit}/logger.ts +10 -10
- package/modules/erudit/setup/aliases.ts +17 -0
- package/modules/erudit/setup/baseUrl.ts +19 -0
- package/modules/erudit/setup/elements/appTemplate.ts +45 -0
- package/modules/erudit/setup/elements/globalTemplate.ts +82 -0
- package/modules/erudit/setup/elements/globalTypes.ts +273 -0
- package/modules/erudit/setup/elements/setup.ts +167 -0
- package/modules/erudit/setup/elements/shared.ts +10 -0
- package/modules/erudit/setup/elements/tagsTable.ts +28 -0
- package/modules/erudit/setup/fullRestart.ts +71 -0
- package/modules/erudit/setup/globals.ts +196 -0
- package/modules/erudit/setup/nuxtConfig.ts +48 -0
- package/modules/erudit/setup/projectConfig.ts +114 -0
- package/modules/erudit/setup/publicAssets.ts +52 -0
- package/modules/erudit/setup/runtimeConfig.ts +58 -0
- package/modules/erudit/watcher.ts +27 -0
- package/nuxt.config.ts +84 -112
- package/package.json +43 -18
- package/proxy/prose.app.ts +1 -0
- package/proxy/prose.ts +1 -0
- package/public/favicons/default.svg +1 -0
- package/{app/public → public}/logotype.svg +3 -3
- package/public/og.png +0 -0
- package/server/api/aside/major/frontNav/book/[...shortId].ts +10 -0
- package/server/api/aside/major/frontNav/global.ts +5 -0
- package/server/api/aside/major/pages.ts +6 -0
- package/server/api/contributor/list.ts +45 -0
- package/server/api/contributor/page/[contributorId].ts +68 -0
- package/server/api/indexPage.ts +81 -0
- package/server/api/language/functions.ts +11 -12
- package/server/api/language/phrase/[phraseKey].ts +32 -0
- package/server/api/main/content/[...contentTypePath].ts +153 -0
- package/server/api/news/batch/[batchIndex].ts +5 -0
- package/server/api/pageSponsors.ts +56 -0
- package/server/api/prerender/content.ts +82 -0
- package/server/api/prerender/files.ts +10 -0
- package/server/api/prerender/frontNav.ts +13 -0
- package/server/api/prerender/language.ts +7 -0
- package/server/api/prerender/news.ts +8 -0
- package/server/api/prerender/quotes.ts +15 -0
- package/server/api/preview/contentPage/[...contentTypePath].ts +63 -0
- package/server/api/preview/contentUnique/[...contentTypePathUnique].ts +81 -0
- package/server/api/problemScript/[...problemScriptPath].ts +92 -0
- package/server/api/quote/data/[quoteId].ts +87 -0
- package/server/api/quote/ids.ts +3 -0
- package/server/erudit/build.ts +135 -0
- package/server/erudit/cameos/build.ts +111 -0
- package/server/erudit/config.ts +11 -0
- package/server/erudit/content/global/build.ts +271 -0
- package/server/erudit/content/global/singleton.ts +5 -0
- package/server/erudit/content/nav/build.ts +431 -0
- package/server/erudit/content/nav/front.ts +127 -0
- package/server/erudit/content/nav/repository/books.ts +40 -0
- package/server/erudit/content/nav/repository/get.ts +33 -0
- package/server/erudit/content/nav/repository/hasChildren.ts +5 -0
- package/server/erudit/content/nav/repository/hasNav.ts +3 -0
- package/server/erudit/content/nav/repository/hasParent.ts +5 -0
- package/server/erudit/content/nav/repository/id.ts +9 -0
- package/server/erudit/content/nav/repository/index.ts +9 -0
- package/server/erudit/content/nav/repository/order.ts +14 -0
- package/server/erudit/content/nav/repository/previousNext.ts +35 -0
- package/server/erudit/content/nav/repository/walk.ts +127 -0
- package/server/erudit/content/nav/setup.ts +13 -0
- package/server/erudit/content/nav/types.ts +24 -0
- package/server/erudit/content/repository/breadcrumbs.ts +24 -0
- package/server/erudit/content/repository/children.ts +47 -0
- package/server/erudit/content/repository/connections.ts +35 -0
- package/server/erudit/content/repository/contentLink.ts +16 -0
- package/server/erudit/content/repository/decoration.ts +23 -0
- package/server/erudit/content/repository/deps.ts +84 -0
- package/server/erudit/content/repository/description.ts +11 -0
- package/server/erudit/content/repository/elementSnippets.ts +64 -0
- package/server/erudit/content/repository/externals.ts +25 -0
- package/server/erudit/content/repository/flags.ts +33 -0
- package/server/erudit/content/repository/seo.ts +12 -0
- package/server/erudit/content/repository/stats.ts +97 -0
- package/server/erudit/content/repository/title.ts +27 -0
- package/server/erudit/content/repository/topicParts.ts +39 -0
- package/server/erudit/content/repository/unique.ts +76 -0
- package/server/erudit/content/resolve/book.ts +32 -0
- package/server/erudit/content/resolve/group.ts +39 -0
- package/server/erudit/content/resolve/index.ts +139 -0
- package/server/erudit/content/resolve/page.ts +87 -0
- package/server/erudit/content/resolve/topic.ts +113 -0
- package/server/erudit/content/resolve/utils/contentError.ts +10 -0
- package/server/erudit/content/resolve/utils/insertContentItem.ts +122 -0
- package/server/erudit/content/resolve/utils/insertContentResolved.ts +93 -0
- package/server/erudit/content/search.ts +135 -0
- package/server/erudit/contributors/build.ts +111 -0
- package/server/erudit/contributors/global.ts +3 -0
- package/server/erudit/contributors/repository/avatarUrl.ts +10 -0
- package/server/erudit/contributors/repository/contributions.ts +178 -0
- package/server/erudit/contributors/repository/count.ts +3 -0
- package/server/erudit/contributors/search.ts +34 -0
- package/server/erudit/db/repository/pushFile.ts +23 -0
- package/server/erudit/db/repository/pushProblemScript.ts +19 -0
- package/server/erudit/db/repository/pushProseLink.ts +40 -0
- package/server/erudit/db/schema/cameos.ts +7 -0
- package/server/erudit/db/schema/content.ts +18 -0
- package/server/erudit/db/schema/contentContributions.ts +15 -0
- package/server/erudit/db/schema/contentDeps.ts +21 -0
- package/server/erudit/db/schema/contentElementStats.ts +20 -0
- package/server/erudit/db/schema/contentProseLinks.ts +23 -0
- package/server/erudit/db/schema/contentSnippets.ts +32 -0
- package/server/erudit/db/schema/contentToc.ts +16 -0
- package/server/erudit/db/schema/contentUniques.ts +25 -0
- package/server/erudit/db/schema/contributors.ts +12 -0
- package/server/erudit/db/schema/files.ts +11 -0
- package/server/erudit/db/schema/groups.ts +6 -0
- package/server/erudit/db/schema/index.ts +17 -0
- package/server/erudit/db/schema/news.ts +7 -0
- package/server/erudit/db/schema/pages.ts +7 -0
- package/server/erudit/db/schema/problemScripts.ts +14 -0
- package/server/erudit/db/schema/sponsors.ts +9 -0
- package/server/erudit/db/schema/topics.ts +9 -0
- package/server/erudit/db/setup.ts +62 -0
- package/server/erudit/db/types.ts +10 -0
- package/server/erudit/global.ts +33 -0
- package/server/erudit/importer.ts +97 -0
- package/server/erudit/index.ts +90 -0
- package/server/erudit/language/list/en.ts +209 -0
- package/server/erudit/language/list/ru.ts +214 -0
- package/server/erudit/language/list.ts +6 -0
- package/server/erudit/language/setup.ts +36 -0
- package/server/erudit/language/types.ts +16 -0
- package/server/erudit/logger.ts +77 -0
- package/server/erudit/news/build.ts +77 -0
- package/server/erudit/news/repository/batch.ts +61 -0
- package/server/erudit/prose/repository/finalize.ts +68 -0
- package/server/erudit/prose/repository/get.ts +54 -0
- package/server/erudit/prose/repository/resolve.ts +17 -0
- package/server/erudit/prose/storage/callout.ts +14 -0
- package/server/erudit/prose/storage/image.ts +20 -0
- package/server/erudit/prose/storage/link.ts +226 -0
- package/server/erudit/prose/storage/problemScript.ts +21 -0
- package/server/erudit/prose/storage/video.ts +14 -0
- package/server/erudit/prose/transform/bundleProblemScript.ts +6 -0
- package/server/erudit/prose/transform/extensions.ts +15 -0
- package/server/erudit/quote/repository/ids.ts +31 -0
- package/server/erudit/repository.ts +96 -0
- package/server/erudit/sponsors/build.ts +114 -0
- package/server/erudit/sponsors/repository/avatarUrl.ts +10 -0
- package/server/erudit/sponsors/repository/count.ts +4 -0
- package/server/erudit/staticFile.ts +28 -0
- package/server/plugins/augmentCss.ts +17 -0
- package/server/plugins/lang.ts +7 -0
- package/server/plugins/metaViewport.ts +15 -0
- package/server/plugins/theme.ts +13 -0
- package/server/routes/file/[...path].ts +18 -0
- package/server/routes/robots.txt.ts +9 -0
- package/server/routes/search.json.gz.ts +72 -0
- package/server/routes/sitemap.xml.ts +74 -0
- package/shared/search/encoders.ts +20 -0
- package/shared/types/asideMajorPages.ts +4 -0
- package/shared/types/breadcrumbs.ts +9 -0
- package/shared/types/contentChildren.ts +10 -0
- package/shared/types/contentConnections.ts +27 -0
- package/shared/types/contentStats.ts +6 -0
- package/shared/types/elementSnippet.ts +8 -0
- package/shared/types/frontContentNav.ts +38 -0
- package/shared/types/indexPage.ts +20 -0
- package/shared/types/language.ts +169 -55
- package/shared/types/mainContent.ts +69 -0
- package/shared/types/news.ts +13 -0
- package/shared/types/preview.ts +28 -0
- package/shared/types/runtimeConfig.ts +64 -0
- package/shared/types/search.ts +79 -0
- package/shared/utils/contentTypePath.ts +63 -0
- package/shared/utils/icons.ts +11 -0
- package/shared/utils/pages.ts +24 -0
- package/shared/utils/slasher.ts +64 -0
- package/shared/utils/stringColor.ts +5 -1
- package/shared/utils/toStringEqual.ts +21 -0
- package/shared/utils/zip.ts +64 -0
- package/test/shared/utils/slasher.test.ts +75 -0
- package/test/shared/utils/zip.test.ts +8 -0
- package/tsconfig.json +15 -6
- package/app/assets/icons/alert.svg +0 -3
- package/app/assets/icons/angle-right.svg +0 -3
- package/app/assets/icons/arrow-in-text.svg +0 -3
- package/app/assets/icons/arrow-left.svg +0 -3
- package/app/assets/icons/arrow-up-to-right.svg +0 -3
- package/app/assets/icons/chip.svg +0 -3
- package/app/assets/icons/circle-help.svg +0 -3
- package/app/assets/icons/cross.svg +0 -3
- package/app/assets/icons/ellipsis-vertical.svg +0 -3
- package/app/assets/icons/file-check.svg +0 -3
- package/app/assets/icons/file-star.svg +0 -3
- package/app/assets/icons/link-external.svg +0 -3
- package/app/assets/icons/link.svg +0 -3
- package/app/assets/icons/outline/book.svg +0 -3
- package/app/assets/icons/outline/file-lines.svg +0 -3
- package/app/assets/icons/pirate.svg +0 -3
- package/app/assets/icons/search.svg +0 -3
- package/app/assets/icons/shuffle.svg +0 -3
- package/app/assets/icons/star.svg +0 -3
- package/app/components/Loading.vue +0 -23
- package/app/components/SiteAside.vue +0 -382
- package/app/components/SiteMain.vue +0 -35
- package/app/components/ads/BannerTemplate.vue +0 -51
- package/app/components/ads/BottomBanner.vue +0 -45
- package/app/components/ads/LeftBanner.vue +0 -50
- package/app/components/aside/major/PaneContentScroll.vue +0 -23
- package/app/components/aside/major/PaneSwitch.vue +0 -54
- package/app/components/aside/major/PaneSwitchButton.vue +0 -63
- package/app/components/aside/major/panes/Language.vue +0 -79
- package/app/components/aside/major/panes/Pages.vue +0 -34
- package/app/components/aside/major/panes/Search.vue +0 -11
- package/app/components/aside/major/panes/nav/Nav.vue +0 -91
- package/app/components/aside/major/panes/nav/NavBook.vue +0 -86
- package/app/components/aside/major/panes/nav/NavBookLoading.vue +0 -24
- package/app/components/aside/major/panes/nav/NavGlobal.vue +0 -16
- package/app/components/aside/major/panes/nav/fnav/FNav.vue +0 -105
- package/app/components/aside/major/panes/nav/fnav/FNavBook.vue +0 -32
- package/app/components/aside/major/panes/nav/fnav/FNavFlags.vue +0 -40
- package/app/components/aside/major/panes/nav/fnav/FNavFolder.vue +0 -60
- package/app/components/aside/major/panes/nav/fnav/FNavItem.vue +0 -34
- package/app/components/aside/major/panes/nav/fnav/FNavSeparator.vue +0 -80
- package/app/components/aside/major/panes/nav/fnav/FNavTopic.vue +0 -24
- package/app/components/aside/major/panes/other/ItemContent.vue +0 -29
- package/app/components/aside/major/panes/other/ItemGenerator.vue +0 -15
- package/app/components/aside/major/panes/other/ItemTheme.vue +0 -54
- package/app/components/aside/major/panes/other/Other.vue +0 -16
- package/app/components/aside/minor/AsideMinorContributor.vue +0 -5
- package/app/components/aside/minor/AsideMinorNews.vue +0 -11
- package/app/components/aside/minor/AsideMinorTopLink.vue +0 -67
- package/app/components/aside/minor/Contribute.vue +0 -145
- package/app/components/aside/minor/content/AsideMinorContent.vue +0 -92
- package/app/components/aside/minor/topic/AsideMinorTopic.vue +0 -32
- package/app/components/aside/minor/topic/TopicContributors.vue +0 -177
- package/app/components/aside/minor/topic/TopicNav.vue +0 -49
- package/app/components/aside/minor/topic/TopicToc.vue +0 -203
- package/app/components/aside/minor/topic/TopicTocItem.vue +0 -31
- package/app/components/aside/utils/AsideOverlayPane.vue +0 -40
- package/app/components/bitran/BitranContent.vue +0 -63
- package/app/components/bitran/RenderWrapper.vue +0 -10
- package/app/components/contributor/ContributorAvatar.vue +0 -43
- package/app/components/contributor/ContributorListItem.vue +0 -35
- package/app/components/main/topic/MainTopic.vue +0 -79
- package/app/components/main/topic/TopicPartSwitch.vue +0 -118
- package/app/components/main/utils/Breadcrumb.vue +0 -75
- package/app/components/main/utils/ContentDecoration.vue +0 -29
- package/app/components/main/utils/ContentDescription.vue +0 -19
- package/app/components/main/utils/ContentFlag.vue +0 -15
- package/app/components/main/utils/ContentPopover.vue +0 -176
- package/app/components/main/utils/ContentPopovers.vue +0 -105
- package/app/components/main/utils/ContentReferences.vue +0 -70
- package/app/components/main/utils/ContentSection.vue +0 -45
- package/app/components/main/utils/ContentTitle.vue +0 -39
- package/app/components/main/utils/reference/ReferenceGroup.vue +0 -38
- package/app/components/main/utils/reference/ReferenceItem.vue +0 -68
- package/app/components/main/utils/reference/ReferenceSource.vue +0 -116
- package/app/components/preview/PreviewDisplay.vue +0 -139
- package/app/components/preview/PreviewFooterAction.vue +0 -73
- package/app/components/preview/display/Alert.vue +0 -50
- package/app/components/preview/display/Custom.vue +0 -18
- package/app/components/preview/display/GenericLink.vue +0 -48
- package/app/components/preview/display/PageLink.vue +0 -20
- package/app/components/preview/display/Unique.vue +0 -49
- package/app/composables/bitran.ts +0 -127
- package/app/composables/bitranContent.ts +0 -39
- package/app/composables/bitranLocation.ts +0 -7
- package/app/composables/contentData.ts +0 -36
- package/app/composables/contentPage.ts +0 -156
- package/app/composables/contentRoute.ts +0 -45
- package/app/composables/darkMagic.ts +0 -24
- package/app/composables/externalApi.ts +0 -63
- package/app/composables/majorPane.ts +0 -60
- package/app/pages/_test/preview.vue +0 -110
- package/app/pages/members.vue +0 -6
- package/app/pages/practice/[...practice].vue +0 -3
- package/app/public/favicon/article.svg +0 -10
- package/app/public/favicon/default.svg +0 -10
- package/app/public/favicon/practice.svg +0 -10
- package/app/public/favicon/summary.svg +0 -10
- package/app/public/og-default.png +0 -0
- package/app/public/user.svg +0 -10
- package/app/scripts/_immediate.js +0 -9
- package/app/scripts/aside/index.ts +0 -59
- package/app/scripts/aside/major/nav.ts +0 -26
- package/app/scripts/aside/minor/state.ts +0 -37
- package/app/scripts/aside/minor/topic.ts +0 -3
- package/app/scripts/flag.ts +0 -28
- package/app/scripts/og.ts +0 -27
- package/app/scripts/preview/build.ts +0 -73
- package/app/scripts/preview/data/alert.ts +0 -19
- package/app/scripts/preview/data/custom.ts +0 -8
- package/app/scripts/preview/data/genericLink.ts +0 -24
- package/app/scripts/preview/data/pageLink.ts +0 -20
- package/app/scripts/preview/data/unique.ts +0 -71
- package/app/scripts/preview/data.ts +0 -24
- package/app/scripts/preview/display.ts +0 -37
- package/app/scripts/preview/footer.ts +0 -9
- package/app/scripts/preview/request.ts +0 -51
- package/app/scripts/preview/state.ts +0 -63
- package/app/styles/_immediate.css +0 -7
- package/app/styles/_util.scss +0 -43
- package/app/styles/_utils.scss +0 -44
- package/app/styles/app.scss +0 -91
- package/app/styles/def/_bp.scss +0 -27
- package/app/styles/def/_size.scss +0 -7
- package/app/styles/def/_z.scss +0 -5
- package/app/styles/default.scss +0 -83
- package/app/styles/normalize.scss +0 -63
- package/app/styles/partials/_darkMagic.scss +0 -5
- package/app/styles/partials/_fnav.scss +0 -15
- package/app/styles/partials/_preview.scss +0 -5
- package/globalPath.ts +0 -21
- package/globals/bitran.ts +0 -47
- package/globals/content.ts +0 -22
- package/globals/contributor.ts +0 -5
- package/globals/erudit.ts +0 -5
- package/globals/register.ts +0 -18
- package/languages/en.ts +0 -95
- package/languages/ru.ts +0 -99
- package/module/bitran.ts +0 -34
- package/module/config.ts +0 -34
- package/module/imports.ts +0 -46
- package/module/index.ts +0 -47
- package/module/paths.ts +0 -22
- package/module/restart.ts +0 -61
- package/server/api/aside/major/nav/bookIds.ts +0 -5
- package/server/api/aside/major/nav/bookNav/[...bookId].ts +0 -20
- package/server/api/aside/major/nav/global.ts +0 -7
- package/server/api/aside/minor/news.ts +0 -7
- package/server/api/aside/minor/path.ts +0 -78
- package/server/api/bitran/content/[location].ts +0 -8
- package/server/api/bitran/toc/[location].ts +0 -7
- package/server/api/content/data.ts +0 -72
- package/server/api/contributor/count.ts +0 -6
- package/server/api/fake/content.ts +0 -11
- package/server/api/fake/shared/languages.ts +0 -12
- package/server/api/language/phrase/[phraseId].ts +0 -19
- package/server/api/language/phraseIds.ts +0 -8
- package/server/api/preview/page/[...parts].ts +0 -51
- package/server/api/preview/unique/[location].ts +0 -57
- package/server/plugin/bitran/content.ts +0 -187
- package/server/plugin/bitran/location.ts +0 -25
- package/server/plugin/bitran/products/include.ts +0 -230
- package/server/plugin/bitran/products/link.ts +0 -116
- package/server/plugin/bitran/setup.ts +0 -9
- package/server/plugin/bitran/toc.ts +0 -83
- package/server/plugin/bitran/transpiler.ts +0 -46
- package/server/plugin/build/close.ts +0 -10
- package/server/plugin/build/jobs/content/builderArgs.ts +0 -8
- package/server/plugin/build/jobs/content/generic.ts +0 -176
- package/server/plugin/build/jobs/content/parse.ts +0 -100
- package/server/plugin/build/jobs/content/path.ts +0 -6
- package/server/plugin/build/jobs/content/type/book.ts +0 -9
- package/server/plugin/build/jobs/content/type/group.ts +0 -37
- package/server/plugin/build/jobs/content/type/topic.ts +0 -36
- package/server/plugin/build/jobs/contributors.ts +0 -66
- package/server/plugin/build/jobs/language.ts +0 -36
- package/server/plugin/build/jobs/nav.ts +0 -210
- package/server/plugin/build/process.ts +0 -25
- package/server/plugin/build/rebuild.ts +0 -55
- package/server/plugin/build/setup.ts +0 -21
- package/server/plugin/content/absoluteId.ts +0 -94
- package/server/plugin/content/context.ts +0 -112
- package/server/plugin/db/entities/Book.ts +0 -7
- package/server/plugin/db/entities/Content.ts +0 -49
- package/server/plugin/db/entities/Contribution.ts +0 -10
- package/server/plugin/db/entities/Contributor.ts +0 -16
- package/server/plugin/db/entities/Group.ts +0 -14
- package/server/plugin/db/entities/Hash.ts +0 -15
- package/server/plugin/db/entities/Topic.ts +0 -20
- package/server/plugin/db/entities/Unique.ts +0 -21
- package/server/plugin/db/setup.ts +0 -34
- package/server/plugin/global.ts +0 -18
- package/server/plugin/importer.ts +0 -12
- package/server/plugin/index.ts +0 -9
- package/server/plugin/logger.ts +0 -23
- package/server/plugin/nav/node.ts +0 -26
- package/server/plugin/nav/utils.ts +0 -129
- package/server/plugin/repository/book.ts +0 -21
- package/server/plugin/repository/content.ts +0 -238
- package/server/plugin/repository/contributor.ts +0 -8
- package/server/plugin/repository/frontNav.ts +0 -148
- package/server/plugin/repository/topic.ts +0 -32
- package/server/tsconfig.json +0 -9
- package/shared/aside/minor.ts +0 -50
- package/shared/asset.ts +0 -15
- package/shared/bitran/context.ts +0 -8
- package/shared/bitran/default.ts +0 -46
- package/shared/bitran/link/Link.vue +0 -167
- package/shared/bitran/link/factory.ts +0 -24
- package/shared/bitran/link/icon.svg +0 -3
- package/shared/bitran/link/languages/en.ts +0 -7
- package/shared/bitran/link/languages/ru.ts +0 -7
- package/shared/bitran/link/renderer.ts +0 -21
- package/shared/bitran/link/shared.ts +0 -17
- package/shared/bitran/link/target.ts +0 -134
- package/shared/bitran/link/transpiler.ts +0 -10
- package/shared/bitran/location.ts +0 -166
- package/shared/bitran/toc.ts +0 -8
- package/shared/content/context.ts +0 -9
- package/shared/content/data/base.ts +0 -32
- package/shared/content/data/index.ts +0 -5
- package/shared/content/data/type/book.ts +0 -5
- package/shared/content/data/type/group.ts +0 -6
- package/shared/content/data/type/topic.ts +0 -11
- package/shared/content/previousNext.ts +0 -9
- package/shared/contributor.ts +0 -5
- package/shared/frontNav.ts +0 -41
- package/shared/icons.ts +0 -38
- package/shared/image.ts +0 -5
- package/shared/link.ts +0 -25
- package/shared/utils/objectsEqual.ts +0 -4
- package/test/bitran/link/target.test.ts +0 -141
- package/test/bitran/location.test.ts +0 -143
- package/utils/stress.ts +0 -9
package/app/app.vue
CHANGED
|
@@ -1,172 +1,35 @@
|
|
|
1
|
-
<script lang="ts" setup>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
},
|
|
37
|
-
link: [
|
|
38
|
-
{ rel: 'icon', href: faviconHref },
|
|
39
|
-
{ rel: 'canonical', href: pageUrl },
|
|
40
|
-
],
|
|
41
|
-
script: [
|
|
42
|
-
{
|
|
43
|
-
key: 'immediate-js',
|
|
44
|
-
tagPriority: 'critical',
|
|
45
|
-
innerHTML: (await import('@app/scripts/_immediate.js?raw')).default,
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
style: [
|
|
49
|
-
{
|
|
50
|
-
key: 'immediate-css',
|
|
51
|
-
tagPriority: 'critical',
|
|
52
|
-
innerHTML: (await import('$/_immediate.css?raw')).default,
|
|
53
|
-
},
|
|
54
|
-
],
|
|
55
|
-
meta: [...createOgImageTags(siteUrl, defaultOgImage)],
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
useSeoMeta({
|
|
59
|
-
ogUrl: usePageUrl(),
|
|
60
|
-
ogSiteName:
|
|
61
|
-
eruditConfig.seo?.title ||
|
|
62
|
-
eruditConfig.site?.title ||
|
|
63
|
-
phrase.site_info_title,
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
// @ts-ignore
|
|
67
|
-
if (!eruditConfig?.repository?.sharedUrl) delete majorPanes.language;
|
|
68
|
-
|
|
69
|
-
const { activePane } = useMajorPane();
|
|
70
|
-
|
|
71
|
-
//
|
|
72
|
-
// Swtiching major pane to match the new route
|
|
73
|
-
//
|
|
74
|
-
|
|
75
|
-
watch(route, () => {
|
|
76
|
-
if (route.path === '/') return (activePane.value = 'index');
|
|
77
|
-
|
|
78
|
-
const pathType = route.path.split('/')[1];
|
|
79
|
-
if (['book', 'group', 'article', 'summary', 'practice'].includes(pathType!))
|
|
80
|
-
return (activePane.value = 'index');
|
|
81
|
-
|
|
82
|
-
return (activePane.value = 'pages');
|
|
83
|
-
});
|
|
84
|
-
|
|
85
|
-
if (import.meta.client) {
|
|
86
|
-
//
|
|
87
|
-
// Theme Switch Watcher
|
|
88
|
-
//
|
|
89
|
-
|
|
90
|
-
const { theme, binaryTheme } = useTheme();
|
|
91
|
-
|
|
92
|
-
watch(theme, (newTheme) => {
|
|
93
|
-
localStorage.setItem('theme', newTheme);
|
|
94
|
-
document.documentElement.setAttribute('data-theme', binaryTheme.value);
|
|
95
|
-
});
|
|
96
|
-
|
|
97
|
-
//
|
|
98
|
-
// Welcome
|
|
99
|
-
//
|
|
100
|
-
|
|
101
|
-
document.documentElement.before(document.createComment(brandLogotype));
|
|
102
|
-
const emojies = [
|
|
103
|
-
'😂',
|
|
104
|
-
'❤️',
|
|
105
|
-
'🤣',
|
|
106
|
-
'🎉',
|
|
107
|
-
'🔥',
|
|
108
|
-
'💖',
|
|
109
|
-
'👀',
|
|
110
|
-
'✨',
|
|
111
|
-
'💗',
|
|
112
|
-
'💚',
|
|
113
|
-
'💙',
|
|
114
|
-
'🎁',
|
|
115
|
-
'🌈',
|
|
116
|
-
];
|
|
117
|
-
const emoji = emojies[Math.floor(Math.random() * emojies.length)];
|
|
118
|
-
console.log(
|
|
119
|
-
brandColorLogotype +
|
|
120
|
-
`\nv${version} ${emoji} %cBeating heart of modern educational sites!\x1B[m\n\nLearn more: https://github.com/Gwynerva/erudit\n `,
|
|
121
|
-
'font-style: italic; color: color-mix(in srgb, currentColor, transparent 50%)',
|
|
122
|
-
);
|
|
123
|
-
}
|
|
124
|
-
</script>
|
|
125
|
-
|
|
126
|
-
<template>
|
|
127
|
-
<SiteAside :type="AsideType.Major"><AsideMajor /></SiteAside>
|
|
128
|
-
<SiteAside :type="AsideType.Minor"><AsideMinor /></SiteAside>
|
|
129
|
-
|
|
130
|
-
<div :class="$style.mainContainer">
|
|
131
|
-
<div><!-- Phantom aside major --></div>
|
|
132
|
-
<SiteMain><NuxtPage /></SiteMain>
|
|
133
|
-
<div><!-- Phantom aside minor --></div>
|
|
134
|
-
</div>
|
|
135
|
-
</template>
|
|
136
|
-
|
|
137
|
-
<style lang="scss">
|
|
138
|
-
@use '$/normalize';
|
|
139
|
-
@use '$/app';
|
|
140
|
-
</style>
|
|
141
|
-
|
|
142
|
-
<style lang="scss" module>
|
|
143
|
-
@use '$/def/bp';
|
|
144
|
-
@use '$/def/z';
|
|
145
|
-
|
|
146
|
-
.mainContainer {
|
|
147
|
-
--w_asideMajor: 0;
|
|
148
|
-
--w_asideMinor: 0;
|
|
149
|
-
--w_main: minmax(0, 1fr);
|
|
150
|
-
|
|
151
|
-
position: relative;
|
|
152
|
-
z-index: z.$main;
|
|
153
|
-
|
|
154
|
-
display: grid;
|
|
155
|
-
grid-template-columns: var(--w_asideMajor) var(--w_main) var(--w_asideMinor);
|
|
156
|
-
|
|
157
|
-
margin: auto;
|
|
158
|
-
max-width: calc(2 * var(--wAside) + var(--wMainMax));
|
|
159
|
-
|
|
160
|
-
@include transition(grid);
|
|
161
|
-
|
|
162
|
-
@include bp.above('aside1') {
|
|
163
|
-
--w_asideMajor: var(--wAside);
|
|
164
|
-
--w_asideMinor: 0;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
@include bp.above('aside2') {
|
|
168
|
-
--w_asideMajor: var(--wAside);
|
|
169
|
-
--w_asideMinor: var(--wAside);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
</style>
|
|
1
|
+
<script lang="ts" setup>
|
|
2
|
+
initFavicon();
|
|
3
|
+
initOgImage();
|
|
4
|
+
initAnalytics();
|
|
5
|
+
|
|
6
|
+
// Watching and setting theme
|
|
7
|
+
initThemeWatcher();
|
|
8
|
+
|
|
9
|
+
// Fetching and setting global navigation variable
|
|
10
|
+
await initGlobalContentNav();
|
|
11
|
+
|
|
12
|
+
await initFormatText();
|
|
13
|
+
await initAppElements();
|
|
14
|
+
|
|
15
|
+
// Watching route changes and set corresponsing aside major pane
|
|
16
|
+
initAsideMajorPaneWatcher();
|
|
17
|
+
</script>
|
|
18
|
+
|
|
19
|
+
<template>
|
|
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" />
|
|
34
|
+
</div>
|
|
35
|
+
</template>
|
|
@@ -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
|
|
2
|
-
|
|
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
|
|
2
|
-
|
|
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
|
-
|
|
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
|
|
2
|
-
<path d="
|
|
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>
|
package/app/assets/icons/bug.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
2
|
-
<path d="
|
|
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 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
|
|
2
|
-
|
|
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>
|
|
@@ -0,0 +1,3 @@
|
|
|
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
|
+
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
|
|
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
|
|
2
|
-
|
|
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>
|
|
@@ -0,0 +1,3 @@
|
|
|
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"/>
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
2
|
-
<path d="
|
|
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>
|
|
@@ -0,0 +1,3 @@
|
|
|
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
|
+
</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
|
|
2
|
-
<path d="
|
|
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
|
|
2
|
-
<path d="
|
|
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
|
-
|
|
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
|
|
2
|
-
|
|
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
|
|
2
|
-
|
|
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>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M6.07,11.88c.43-1.1.95-2.16,1.56-3.18s1.3-1.98,2.06-2.88l-1.3-.28c-.33-.07-.66-.05-.98.05s-.59.27-.83.5l-3.15,3.15c-.25.25-.35.55-.29.9.06.35.25.59.59.73l2.33,1ZM20.77,2.13c-1.77-.08-3.45.26-5.04,1.03s-3.01,1.78-4.26,3.03c-.8.8-1.5,1.67-2.11,2.6s-1.14,1.92-1.59,2.95c-.08.22-.13.44-.13.66s.08.42.25.59l3.13,3.13c.17.17.36.25.59.25s.45-.04.66-.13c1.03-.45,2.02-.98,2.95-1.59s1.8-1.31,2.6-2.11c1.25-1.25,2.26-2.67,3.03-4.26s1.11-3.27,1.03-5.04c0-.13-.03-.27-.1-.4s-.15-.25-.25-.35-.22-.18-.35-.25-.27-.1-.4-.1ZM14.42,9.58c-.38-.38-.58-.85-.58-1.41s.19-1.03.58-1.41.85-.58,1.41-.58,1.03.19,1.41.58.58.85.58,1.41-.19,1.03-.58,1.41-.85.58-1.41.58-1.03-.19-1.41-.58ZM12.12,17.93l1,2.33c.13.33.38.53.73.6s.65-.03.9-.28l3.15-3.15c.23-.23.4-.51.5-.84s.12-.65.05-.99l-.25-1.3c-.92.77-1.88,1.45-2.89,2.06s-2.07,1.13-3.19,1.56ZM3.99,15.78c.58-.58,1.29-.88,2.13-.89.83,0,1.54.28,2.13.86s.88,1.29.88,2.13-.29,1.54-.88,2.13c-.8.8-1.75,1.28-2.84,1.43-1.09.15-2.19.3-3.29.45.15-1.1.3-2.2.46-3.29s.63-2.03,1.41-2.81Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M13.15,7.33l.91.91-5.22,5.22-2.92-2.92.91-.91,2,2,4.3-4.3h0ZM20.6,20.6c-.44.44-1.14.44-1.58,0l-4.41-4.42c-1.2.88-2.68,1.39-4.28,1.39-4,0-7.25-3.24-7.25-7.25s3.24-7.25,7.25-7.25,7.25,3.24,7.25,7.25c0,1.6-.52,3.08-1.39,4.28l4.41,4.42c.44.44.44,1.14,0,1.58ZM15.35,10.33c0-2.77-2.25-5.02-5.02-5.02s-5.02,2.25-5.02,5.02,2.25,5.02,5.02,5.02,5.02-2.25,5.02-5.02Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M20.6,19.02l-4.41-4.42c.87-1.2,1.39-2.68,1.39-4.28,0-4-3.24-7.25-7.25-7.25s-7.25,3.24-7.25,7.25,3.24,7.25,7.25,7.25c1.6,0,3.08-.52,4.28-1.39l4.41,4.42c.44.44,1.14.44,1.58,0,.44-.44.44-1.14,0-1.58h0ZM10.33,15.34c-2.77,0-5.02-2.25-5.02-5.02s2.25-5.02,5.02-5.02,5.02,2.25,5.02,5.02-2.25,5.02-5.02,5.02ZM6.93,9.53l.69-.69-.69-.69.69-.69.69.69.69-.69.69.69-.69.69.69.69-.69.69-.69-.69-.69.69s-.69-.69-.69-.69ZM13.64,13.79h-6.63c.52-1.32,1.8-2.27,3.31-2.27s2.8.95,3.31,2.27ZM13.73,8.16l-.69.69.69.69-.69.69-.69-.69-.69.69-.69-.69.69-.69-.69-.69.69-.69.69.69.69-.69.69.69Z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M17.58,10.33c0,1.6-.52,3.08-1.39,4.28l4.41,4.42c.44.44.44,1.14,0,1.58-.44.44-1.14.44-1.58,0l-4.41-4.42c-1.2.88-2.68,1.39-4.28,1.39-4,0-7.25-3.24-7.25-7.25s3.24-7.25,7.25-7.25,7.25,3.24,7.25,7.25ZM10.33,15.34c2.77,0,5.02-2.25,5.02-5.02s-2.25-5.02-5.02-5.02-5.02,2.25-5.02,5.02,2.25,5.02,5.02,5.02Z"/>
|
|
3
|
+
</svg>
|