docsforge 9.7.6__py3-none-any.whl
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.
- docsforge/__init__.py +11 -0
- docsforge/__main__.py +313 -0
- docsforge/_vendor/mkdocs/__init__.py +5 -0
- docsforge/_vendor/mkdocs/__main__.py +370 -0
- docsforge/_vendor/mkdocs/commands/__init__.py +0 -0
- docsforge/_vendor/mkdocs/commands/build.py +369 -0
- docsforge/_vendor/mkdocs/commands/gh_deploy.py +169 -0
- docsforge/_vendor/mkdocs/commands/new.py +53 -0
- docsforge/_vendor/mkdocs/commands/serve.py +112 -0
- docsforge/_vendor/mkdocs/config/__init__.py +3 -0
- docsforge/_vendor/mkdocs/config/base.py +392 -0
- docsforge/_vendor/mkdocs/config/config_options.py +1226 -0
- docsforge/_vendor/mkdocs/config/defaults.py +218 -0
- docsforge/_vendor/mkdocs/contrib/__init__.py +0 -0
- docsforge/_vendor/mkdocs/contrib/search/__init__.py +120 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/_vendor/mkdocs/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/_vendor/mkdocs/contrib/search/prebuild-index.js +56 -0
- docsforge/_vendor/mkdocs/contrib/search/search_index.py +225 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/main.js +109 -0
- docsforge/_vendor/mkdocs/contrib/search/templates/search/worker.js +133 -0
- docsforge/_vendor/mkdocs/exceptions.py +41 -0
- docsforge/_vendor/mkdocs/livereload/__init__.py +381 -0
- docsforge/_vendor/mkdocs/localization.py +92 -0
- docsforge/_vendor/mkdocs/plugins.py +697 -0
- docsforge/_vendor/mkdocs/py.typed +0 -0
- docsforge/_vendor/mkdocs/structure/__init__.py +36 -0
- docsforge/_vendor/mkdocs/structure/files.py +626 -0
- docsforge/_vendor/mkdocs/structure/nav.py +251 -0
- docsforge/_vendor/mkdocs/structure/pages.py +569 -0
- docsforge/_vendor/mkdocs/structure/toc.py +80 -0
- docsforge/_vendor/mkdocs/templates/sitemap.xml +11 -0
- docsforge/_vendor/mkdocs/theme.py +166 -0
- docsforge/_vendor/mkdocs/themes/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/404.html +12 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/base.html +251 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/content.html +9 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/base.css +366 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css +12 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/bootstrap.min.css.map +1 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/brands.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/fontawesome.min.css +9 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/solid.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/css/v4-font-face.min.css +6 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/img/favicon.ico +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/img/grid.png +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/base.js +287 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js +7 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/bootstrap.bundle.min.js.map +1 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/js/darkmode.js +65 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/keyboard-modal.html +40 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/de/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/es/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/id/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/it/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nb/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/nn/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/main.html +10 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/mkdocs_theme.yml +28 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/nav-sub.html +14 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/search-modal.html +21 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/toc.html +26 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-brands-400.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-regular-400.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-solid-900.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/mkdocs/webfonts/fa-v4compatibility.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/404.html +9 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/__init__.py +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/base.html +199 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/breadcrumbs.html +44 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.eot +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.svg +2671 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.ttf +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/fontawesome-webfont.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold-italic.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-bold.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal-italic.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/fonts/lato-normal.woff2 +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/theme.css +13 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/css/theme_extra.css +197 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/footer.html +26 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/img/favicon.ico +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/html5shiv.min.js +4 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/jquery-3.6.0.min.js +2 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/theme.js +2 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/js/theme_extra.js +8 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/de/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/es/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/fa/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/fr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/id/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/it/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/ja/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/nl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/pl/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/pt_BR/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/ru/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/tr/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/uk/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_CN/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/locales/zh_TW/LC_MESSAGES/messages.mo +0 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/main.html +10 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/mkdocs_theme.yml +25 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/nav.html +22 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/search.html +16 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/searchbox.html +5 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/toc.html +12 -0
- docsforge/_vendor/mkdocs/themes/readthedocs/versions.html +27 -0
- docsforge/_vendor/mkdocs/utils/__init__.py +410 -0
- docsforge/_vendor/mkdocs/utils/babel_stub.py +29 -0
- docsforge/_vendor/mkdocs/utils/cache.py +36 -0
- docsforge/_vendor/mkdocs/utils/filters.py +1 -0
- docsforge/_vendor/mkdocs/utils/meta.py +100 -0
- docsforge/_vendor/mkdocs/utils/rendering.py +104 -0
- docsforge/_vendor/mkdocs/utils/templates.py +55 -0
- docsforge/_vendor/mkdocs/utils/yaml.py +150 -0
- docsforge/_vendor/properdocs/__init__.py +1 -0
- docsforge/_vendor/properdocs/__main__.py +382 -0
- docsforge/_vendor/properdocs/commands/__init__.py +0 -0
- docsforge/_vendor/properdocs/commands/build.py +379 -0
- docsforge/_vendor/properdocs/commands/get_deps.py +250 -0
- docsforge/_vendor/properdocs/commands/gh_deploy.py +169 -0
- docsforge/_vendor/properdocs/commands/new.py +53 -0
- docsforge/_vendor/properdocs/commands/serve.py +125 -0
- docsforge/_vendor/properdocs/config/__init__.py +3 -0
- docsforge/_vendor/properdocs/config/base.py +381 -0
- docsforge/_vendor/properdocs/config/config_options.py +1226 -0
- docsforge/_vendor/properdocs/config/defaults.py +222 -0
- docsforge/_vendor/properdocs/contrib/__init__.py +0 -0
- docsforge/_vendor/properdocs/contrib/search/__init__.py +120 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/_vendor/properdocs/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/_vendor/properdocs/contrib/search/prebuild-index.js +56 -0
- docsforge/_vendor/properdocs/contrib/search/search_index.py +225 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/main.js +109 -0
- docsforge/_vendor/properdocs/contrib/search/templates/search/worker.js +133 -0
- docsforge/_vendor/properdocs/exceptions.py +44 -0
- docsforge/_vendor/properdocs/livereload/__init__.py +382 -0
- docsforge/_vendor/properdocs/localization.py +93 -0
- docsforge/_vendor/properdocs/plugins.py +707 -0
- docsforge/_vendor/properdocs/py.typed +0 -0
- docsforge/_vendor/properdocs/replacement.py +42 -0
- docsforge/_vendor/properdocs/replacement_warning.py +91 -0
- docsforge/_vendor/properdocs/structure/__init__.py +36 -0
- docsforge/_vendor/properdocs/structure/files.py +628 -0
- docsforge/_vendor/properdocs/structure/nav.py +259 -0
- docsforge/_vendor/properdocs/structure/pages.py +582 -0
- docsforge/_vendor/properdocs/structure/toc.py +82 -0
- docsforge/_vendor/properdocs/templates/sitemap.xml +11 -0
- docsforge/_vendor/properdocs/theme.py +167 -0
- docsforge/_vendor/properdocs/themes/__init__.py +0 -0
- docsforge/_vendor/properdocs/utils/__init__.py +419 -0
- docsforge/_vendor/properdocs/utils/babel_stub.py +29 -0
- docsforge/_vendor/properdocs/utils/cache.py +75 -0
- docsforge/_vendor/properdocs/utils/filters.py +1 -0
- docsforge/_vendor/properdocs/utils/meta.py +101 -0
- docsforge/_vendor/properdocs/utils/rendering.py +104 -0
- docsforge/_vendor/properdocs/utils/templates.py +57 -0
- docsforge/_vendor/properdocs/utils/yaml.py +165 -0
- docsforge/_vendor_shims/__init__.py +5 -0
- docsforge/commands/__init__.py +0 -0
- docsforge/commands/build.py +377 -0
- docsforge/commands/get_deps.py +246 -0
- docsforge/commands/gh_deploy.py +169 -0
- docsforge/commands/new.py +53 -0
- docsforge/commands/serve.py +126 -0
- docsforge/config/__init__.py +3 -0
- docsforge/config/base.py +379 -0
- docsforge/config/config_options.py +1228 -0
- docsforge/config/defaults.py +222 -0
- docsforge/contrib/__init__.py +0 -0
- docsforge/contrib/search/__init__.py +121 -0
- docsforge/contrib/search/lunr-language/lunr.ar.js +381 -0
- docsforge/contrib/search/lunr-language/lunr.da.js +284 -0
- docsforge/contrib/search/lunr-language/lunr.de.js +384 -0
- docsforge/contrib/search/lunr-language/lunr.du.js +450 -0
- docsforge/contrib/search/lunr-language/lunr.es.js +599 -0
- docsforge/contrib/search/lunr-language/lunr.fi.js +541 -0
- docsforge/contrib/search/lunr-language/lunr.fr.js +703 -0
- docsforge/contrib/search/lunr-language/lunr.hi.js +123 -0
- docsforge/contrib/search/lunr-language/lunr.hu.js +565 -0
- docsforge/contrib/search/lunr-language/lunr.hy.js +98 -0
- docsforge/contrib/search/lunr-language/lunr.it.js +617 -0
- docsforge/contrib/search/lunr-language/lunr.ja.js +188 -0
- docsforge/contrib/search/lunr-language/lunr.jp.js +5 -0
- docsforge/contrib/search/lunr-language/lunr.kn.js +110 -0
- docsforge/contrib/search/lunr-language/lunr.ko.js +114 -0
- docsforge/contrib/search/lunr-language/lunr.multi.js +79 -0
- docsforge/contrib/search/lunr-language/lunr.nl.js +448 -0
- docsforge/contrib/search/lunr-language/lunr.no.js +258 -0
- docsforge/contrib/search/lunr-language/lunr.pt.js +570 -0
- docsforge/contrib/search/lunr-language/lunr.ro.js +558 -0
- docsforge/contrib/search/lunr-language/lunr.ru.js +391 -0
- docsforge/contrib/search/lunr-language/lunr.sa.js +110 -0
- docsforge/contrib/search/lunr-language/lunr.stemmer.support.js +304 -0
- docsforge/contrib/search/lunr-language/lunr.sv.js +256 -0
- docsforge/contrib/search/lunr-language/lunr.ta.js +123 -0
- docsforge/contrib/search/lunr-language/lunr.te.js +122 -0
- docsforge/contrib/search/lunr-language/lunr.th.js +99 -0
- docsforge/contrib/search/lunr-language/lunr.tr.js +1087 -0
- docsforge/contrib/search/lunr-language/lunr.vi.js +84 -0
- docsforge/contrib/search/lunr-language/lunr.zh.js +145 -0
- docsforge/contrib/search/lunr-language/tinyseg.js +206 -0
- docsforge/contrib/search/prebuild-index.js +56 -0
- docsforge/contrib/search/search_index.py +225 -0
- docsforge/contrib/search/templates/search/lunr.js +3475 -0
- docsforge/contrib/search/templates/search/main.js +109 -0
- docsforge/contrib/search/templates/search/worker.js +133 -0
- docsforge/exceptions.py +44 -0
- docsforge/extensions/__init__.py +30 -0
- docsforge/extensions/emoji.py +108 -0
- docsforge/extensions/preview.py +234 -0
- docsforge/livereload/__init__.py +381 -0
- docsforge/overrides/assets/javascripts/custom.f46acd93.min.js +5 -0
- docsforge/overrides/assets/javascripts/custom.f46acd93.min.js.map +7 -0
- docsforge/overrides/assets/javascripts/iconsearch_index.json +1 -0
- docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css +1 -0
- docsforge/overrides/assets/stylesheets/custom.f120bdc6.min.css.map +1 -0
- docsforge/overrides/home.html +29 -0
- docsforge/overrides/hooks/shortcodes.py +305 -0
- docsforge/overrides/hooks/translations.html +23 -0
- docsforge/overrides/hooks/translations.py +208 -0
- docsforge/overrides/main.html +27 -0
- docsforge/plugins/__init__.py +46 -0
- docsforge/plugins/blog/__init__.py +44 -0
- docsforge/plugins/blog/author.py +51 -0
- docsforge/plugins/blog/config.py +113 -0
- docsforge/plugins/blog/plugin.py +1094 -0
- docsforge/plugins/blog/readtime/__init__.py +62 -0
- docsforge/plugins/blog/readtime/parser.py +85 -0
- docsforge/plugins/blog/structure/__init__.py +348 -0
- docsforge/plugins/blog/structure/config.py +50 -0
- docsforge/plugins/blog/structure/markdown.py +72 -0
- docsforge/plugins/blog/structure/options.py +139 -0
- docsforge/plugins/group/__init__.py +30 -0
- docsforge/plugins/group/config.py +42 -0
- docsforge/plugins/group/plugin.py +172 -0
- docsforge/plugins/info/__init__.py +30 -0
- docsforge/plugins/info/config.py +46 -0
- docsforge/plugins/info/patterns.py +27 -0
- docsforge/plugins/info/plugin.py +574 -0
- docsforge/plugins/meta/__init__.py +30 -0
- docsforge/plugins/meta/config.py +44 -0
- docsforge/plugins/meta/plugin.py +133 -0
- docsforge/plugins/minify/__init__.py +0 -0
- docsforge/plugins/minify/plugin.py +240 -0
- docsforge/plugins/offline/__init__.py +30 -0
- docsforge/plugins/offline/config.py +41 -0
- docsforge/plugins/offline/plugin.py +80 -0
- docsforge/plugins/optimize/__init__.py +30 -0
- docsforge/plugins/optimize/config.py +63 -0
- docsforge/plugins/optimize/plugin.py +399 -0
- docsforge/plugins/privacy/__init__.py +30 -0
- docsforge/plugins/privacy/config.py +89 -0
- docsforge/plugins/privacy/parser.py +52 -0
- docsforge/plugins/privacy/plugin.py +691 -0
- docsforge/plugins/projects/__init__.py +30 -0
- docsforge/plugins/projects/builder/__init__.py +331 -0
- docsforge/plugins/projects/builder/log.py +111 -0
- docsforge/plugins/projects/builder/watcher/__init__.py +109 -0
- docsforge/plugins/projects/builder/watcher/handler.py +116 -0
- docsforge/plugins/projects/config.py +75 -0
- docsforge/plugins/projects/plugin.py +303 -0
- docsforge/plugins/projects/structure/__init__.py +252 -0
- docsforge/plugins/search/__init__.py +30 -0
- docsforge/plugins/search/config.py +74 -0
- docsforge/plugins/search/plugin.py +605 -0
- docsforge/plugins/social/__init__.py +30 -0
- docsforge/plugins/social/config.py +79 -0
- docsforge/plugins/social/layout.py +164 -0
- docsforge/plugins/social/plugin.py +1138 -0
- docsforge/plugins/social/templates/__init__.py +40 -0
- docsforge/plugins/social/templates/default/accent.yml +234 -0
- docsforge/plugins/social/templates/default/invert.yml +244 -0
- docsforge/plugins/social/templates/default/only/image.yml +77 -0
- docsforge/plugins/social/templates/default/variant.yml +255 -0
- docsforge/plugins/social/templates/default.yml +244 -0
- docsforge/plugins/tags/__init__.py +57 -0
- docsforge/plugins/tags/config.py +99 -0
- docsforge/plugins/tags/plugin.py +324 -0
- docsforge/plugins/tags/renderer/__init__.py +110 -0
- docsforge/plugins/tags/structure/__init__.py +30 -0
- docsforge/plugins/tags/structure/listing/__init__.py +234 -0
- docsforge/plugins/tags/structure/listing/config.py +126 -0
- docsforge/plugins/tags/structure/listing/manager/__init__.py +532 -0
- docsforge/plugins/tags/structure/listing/manager/toc.py +145 -0
- docsforge/plugins/tags/structure/listing/tree/__init__.py +176 -0
- docsforge/plugins/tags/structure/mapping/__init__.py +109 -0
- docsforge/plugins/tags/structure/mapping/manager/__init__.py +265 -0
- docsforge/plugins/tags/structure/mapping/storage/__init__.py +222 -0
- docsforge/plugins/tags/structure/tag/__init__.py +189 -0
- docsforge/plugins/tags/structure/tag/options.py +119 -0
- docsforge/plugins/tags/structure/tag/reference/__init__.py +91 -0
- docsforge/plugins/typeset/__init__.py +30 -0
- docsforge/plugins/typeset/config.py +41 -0
- docsforge/plugins/typeset/plugin.py +134 -0
- docsforge/structure/__init__.py +36 -0
- docsforge/structure/files.py +623 -0
- docsforge/structure/nav.py +260 -0
- docsforge/structure/pages.py +582 -0
- docsforge/structure/toc.py +82 -0
- docsforge/theme.py +37 -0
- docsforge/themes/material/templates/.icons/fontawesome/LICENSE.txt +165 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/11ty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/42-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/500px.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/accessible-icon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/accusoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/adn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/adversal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/affiliatetheme.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/airbnb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/algolia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/alipay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amazon-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amazon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/amilia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angellist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angrycreative.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/app-store-ios.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/app-store.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apple-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/asymmetrik.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/audible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/autoprefixer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/avianex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/aviato.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/aws.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bandcamp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/battle-net.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/behance-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/behance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bilibili.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bimobject.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/black-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blackberry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blogger-b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/blogger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth-b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/bots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/brave-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/brave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/btc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buromobelexperte.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buy-n-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/buysellads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/canadian-maple-leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cash-app.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amazon-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-amex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-apple-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-diners-club.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-discover.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-jcb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-mastercard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cc-visa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/centercode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/chrome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/chromecast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudflare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudscale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cloudversify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cmplid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/codepen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/codiepie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/confluence.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/connectdevelop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/contao.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cotton-bureau.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-by.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-eu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc-jp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-nd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-pd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-remix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-sampling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-share.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons-zero.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/creative-commons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/critical-role.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css3-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/css3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/cuttlefish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d-beyond.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/d-and-d.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dailymotion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dart-lang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dashcube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deezer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/delicious.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deploydog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deskpro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dev.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dhl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/diaspora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/digg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/digital-ocean.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/discord.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/discourse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dochub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/draft2digital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/duolingo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/dyalog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/earlybirds.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ebay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/edge-legacy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/edge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/elementor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/eleventy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ello.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ember.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/empire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/envira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/erlang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/etsy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/expeditedssl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-f.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fantasy-flight-games.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fedex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/figma.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/files-pinwheel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firefox-browser.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/first-order-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/first-order.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/firstdraft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flickr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/flutter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons-fi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fonticons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fort-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/forumbee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/foursquare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/free-code-camp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/fulcrum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-republic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/galactic-senate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/get-pocket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gg-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/git.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/github.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitkraken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/glide-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/glide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gofore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/golang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-pay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-scholar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google-wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/google.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gratipay.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/grav.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gripfire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/grunt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/guilded.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/gulp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hacker-news.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hackerrank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hashnode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hips.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hire-a-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hooli.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hornbill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hotjar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/houzz.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/html5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ideal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/imdb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/innosoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instagram-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/instalod.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/intercom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/internet-explorer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/invision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ioxhost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itch-io.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itunes-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/itunes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/java.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jedi-order.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jenkins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/joget.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/joomla.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/js-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/jxl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kaggle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kakao-talk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/keybase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/keycdn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter-k.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/korvue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lastfm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/leanpub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/less.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin-in.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linktree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lumon-drop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lumon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/lyft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/magento.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mailchimp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mandalorian.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/maxcdn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mdb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medapps.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medium-m.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medium.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/medrt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/meetup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/megaport.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mendeley.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/meta.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/microblog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/microsoft.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mintbit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mixcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mixer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/mizuni.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/modx.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/monero.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/napster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/neos.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-directional.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nfc-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nimblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/node-js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/node.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/notion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ns8.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/nutritionix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/octopus-deploy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/odysee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/old-republic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/openai.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opencart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opensuse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/optin-monster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/orcid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/osi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/padlet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/page4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pagelines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/palfed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/perbyte.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/periscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phabricator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-framework.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/phoenix-squadron.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/php.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-pp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pied-piper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-p.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pixelfed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pixiv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/product-hunt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/pushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/python.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/qq.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/quinscape.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/r-project.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/raspberry-pi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ravelry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/react.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reacteurope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/readme.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rebel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/red-river.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-alien.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rendact.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/renren.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/replyd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/researchgate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/resolving.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rev.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rocketchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rockrms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/rust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/safari.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/salesforce.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/schlix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/screenpal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/scribd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/searchengin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sellcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sellsy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/servicestack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shirtsinbulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shoelace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shopify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/shopware.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/signal-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/simplybuilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sistrix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sith.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sitrox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sketch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/skyatlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/skype.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slack-hash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/slideshare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sourcetree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/space-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/speakap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/speaker-deck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-behance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-figma.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-git.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-github.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-hacker-news.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-js.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-lastfm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-pied-piper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-threads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-x-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-xing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/square-youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/squarespace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stack-exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stack-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stackpath.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/staylinked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/sticker-mule.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/strava.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stripe-s.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stubber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/studiovinari.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/stumbleupon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/superpowers.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/supple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/suse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/swift.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/teamspeak.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/telegram-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/telegram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tencent-weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/the-red-yeti.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/themeco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/themeisle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/think-peaks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/threads.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tidal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tiktok.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/trade-federation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitter-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/typo3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uikit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uncharted.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/uniregistry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/unsplash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/untappd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ups.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/usb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/usps.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/ussunnah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vaadin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viacoin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/viber.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vine.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vnv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vsco.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/vuejs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/w3c.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/watchman-monitoring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/webflow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weebly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/weixin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/whmcs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wikipedia-w.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/windows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wirsindhandwerk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wix.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wizards-of-the-coast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wodu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wolf-pack-battalion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpbeginner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpforms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wpressr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/wsh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/x-twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xing-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/xing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/y-combinator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yahoo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yammer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yandex-international.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yandex.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yarn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yelp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/yoast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/youtube-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/brands/zhihu.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/address-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/address-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/alarm-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/arrow-alt-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bar-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bell-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/building.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-days.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/camera-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/caret-square-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/check-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clock-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/clone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/closed-captioning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/commenting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/comments.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/contact-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/contact-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/copy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/dot-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/drivers-license.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/envelope-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/eye-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/face-tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-pdf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file-zipper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/floppy-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/futbol-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/futbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/gem.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-back-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-lizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-point-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-rock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand-spock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hard-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hdd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home-lg-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/home.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/hourglass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/id-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/images.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/lemon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/life-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/list-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/map.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/message.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/minus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/money-bill-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/note-sticky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/object-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/object-ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/paper-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/paste.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/pen-to-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/question-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/rectangle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/registered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/save.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/share-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/share-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/soccer-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sticky-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/thumbs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/times-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/times-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/trash-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/vcard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/regular/xmark-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/6.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/7.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/8.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/add.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/address-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/address-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/air-freshener.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/alarm-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-justify.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/allergies.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ambulance.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/american-sign-language-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/anchor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-double-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angles-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ankh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/apple-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/apple-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/archway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/area-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-alt-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-1-9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-9-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-a-z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-short-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-across-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-up-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-wide-short.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down-z-a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-from-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right-to-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-back.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-trend-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-turn-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-1-9.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-9-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-a-z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-ground-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-from-water-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-right-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-short-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-wide-short.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up-z-a.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-down-to-people.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-spin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-split-up-and-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-to-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-turn-to-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-up-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/arrows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/asl-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/assistive-listening-systems.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/at.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/atlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/atom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/audio-description.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/austral-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/automobile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/award.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/b.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baby-carriage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baby.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward-step.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacteria.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bacterium.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bag-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bahai.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baht-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/balance-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ban-smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ban.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/band-aid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bandage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bangladeshi-taka-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bar-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/barcode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars-progress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars-staggered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball-bat-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/baseball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basket-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basketball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/basketball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bath.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bathtub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/battery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bed-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/beer-mug-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/beer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell-concierge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bezier-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/biking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/binoculars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/biohazard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/birthday-cake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bitcoin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blackboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blender-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blind.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/blog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bold.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bolt-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bomb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bong.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-atlas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-bible.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-journal-whills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-open-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-quran.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-skull.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book-tanakh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-none.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-style.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/border-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bore-hole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bottle-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-food.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowl-rice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bowling-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box-tissue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-packing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/boxes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/braille.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brazilian-real-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bread-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/briefcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broadcast-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broom-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/broom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/brush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bucket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bug-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bugs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-ngo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/building.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bullhorn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bullseye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/bus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/business-time.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/c.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cab.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cable-car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cake-candles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calculator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-day.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-days.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-week.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-retro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/campground.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/candy-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cannabis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/capsules.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-crash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car-tunnel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/car.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caravan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-square-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/carriage-baby.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/carrot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed-suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cart-shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cash-register.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cedi-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cent-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chair.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-teacher.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chalkboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/champagne-glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/charging-station.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-area.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-column.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-diagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-gantt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-pie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chart-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check-to-slot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cheese.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-board.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chess.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-combatant.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-reaching.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/child.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/children.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/church.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dollar-to-slot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-info.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-notch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-radiation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clapperboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clinic-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/closed-captioning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-meatball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-heavy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-showers-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun-rain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/clover.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cny.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cocktail.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-branch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-commit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code-pull-request.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/coffee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cogs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/coins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/colon-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment-sms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/commenting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comments-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/comments.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compact-disc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compass-drafting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress-arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/compress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/computer-mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/computer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/concierge-bell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/contact-book.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/contact-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cookie-bite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cookie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/copy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/couch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cross.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/crutch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cruzeiro-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cube.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cubes-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cubes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cut.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/cutlery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/d.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/database.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/deaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/deafness.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dedent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/delete-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/democrat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/desktop-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/desktop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dharmachakra.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagnoses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-next.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-predecessor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-project.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diagram-successor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diamond-turn-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d20.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-d6.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-five.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-four.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-one.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-six.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-three.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice-two.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/digging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/digital-tachograph.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/directions.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/disease.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/display.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/divide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dna.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dollar-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/donate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dong-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/door-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dot-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dove.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/down-left-and-up-right-to-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/down-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drafting-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dragon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/draw-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drivers-license.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/droplet-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drum-steelpan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/drumstick-bite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumbbell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dumpster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/dungeon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/e.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ear-deaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ear-listen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-africa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-america.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-americas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-asia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-europe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth-oceania.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/earth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/egg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eject.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/elevator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ellipsis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/envelopes-bulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/equals.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ethernet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eur.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/euro-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/euro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exchange-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand-arrows-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/expand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/explosion.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/external-link.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-dropper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-low-vision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/eyedropper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/f.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-dizzy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/face-tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fan.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fast-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fast-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/faucet-drip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/faucet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fax.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather-pointed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feather.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/feed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/female.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ferry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fighter-jet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-archive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-contract.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-csv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-download.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-export.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-fragment.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-half-dashed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-import.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-invoice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-pdf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-signature.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-waveform.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file-zipper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fill-drip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/film.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/filter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fingerprint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-burner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-extinguisher.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-curved.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire-flame-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/first-aid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fish-fins.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/fist-raised.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag-checkered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag-usa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flask-vial.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/floppy-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/florin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/flushed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome-logo-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/font.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/football-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/football.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward-step.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/franc-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frown-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/frown.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/funnel-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/futbol-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/futbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/g.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gamepad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gas-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-med.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple-med.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gauge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gavel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gbp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gem.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/genderless.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gift.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gifts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-cheers.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-martini.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glass-whiskey.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-africa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-americas.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-asia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-europe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe-oceania.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/globe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball-tee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/golf-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gopuram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/graduation-cap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grid-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grid-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grimace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam-sweat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-hearts.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-stars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tears.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/grip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/group-arrows-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/guarani-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/guitar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/gun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/h-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hamburger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hammer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hamsa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-back-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-fist.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-usd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-holding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-lizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-middle-finger.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-point-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-rock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand-spock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hand.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handcuffs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-american-sign-language-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-asl-interpreting.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bound.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-bubbles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-clapping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-helping.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-child.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-holding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-praying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hands.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hanukiah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hard-of-hearing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hashtag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy-side.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-cowboy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-hard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hat-wizard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/haykal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hdd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-cough.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/head-side-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/header.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heading.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/headset.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-music-camera-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heartbeat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helicopter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-safety.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/helmet-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/heptagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/highlighter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hill-avalanche.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hill-rockslide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hippo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/history.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hockey-puck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/holly-berry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-lg.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/home.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/horse-head.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/horse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital-wide.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub-person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hot-tub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hotdog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hotel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-end.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass-start.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hourglass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney-window.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-chimney.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-crack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-damage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water-circle-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-flood-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-signal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-tsunami.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house-user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hryvnia.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/hurricane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/i-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/i.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ice-cream.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/icicles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/icons.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/igloo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ils.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/image-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/image.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/images.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/inbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/indian-rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/industry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/infinity.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/info-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/info.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/inr.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/institution.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/italic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/j.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jar-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jedi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jet-fighter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/joint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/journal-whills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jpy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/jug-detergent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/k.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kaaba.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/key.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/khanda.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kip-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss-wink-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kit-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kitchen-set.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/kiwi-bird.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/krw.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/l.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ladder-water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/land-mine-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-dome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/landmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/language.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-code.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-file.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-house.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lari-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-squint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/laugh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/layer-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/left-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/legal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lemon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/less-than-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/level-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/life-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/line-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lines-leaning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/link-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/link.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-1-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-dots.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-numeric.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-ol.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-squares.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list-ul.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/litecoin-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location-pin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/locust.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-alt-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/long-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/low-vision.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/luggage-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lungs-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/lungs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/m.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magic-wand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/magnifying-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-bulk.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mail-reply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/male.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/manat-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-location-dot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-pin.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map-signs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/map.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/marker.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-and-venus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke-v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-citrus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/martini-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask-face.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask-ventilator.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mask.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/masks-theater.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mattress-pillow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/medal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/medkit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh-rolling-eyes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/memory.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/menorah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mercury.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/message.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microchip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microphone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/microscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mill-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mitten.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-retro.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mobile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-trend-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bill.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-bills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/money-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/monument.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/moon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-board.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mortar-pestle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosque.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito-net.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mosquito.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/motorcycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mound.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mountain.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mouse-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mug-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/mug-saucer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/multiply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/museum.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/music.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/n.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/naira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/navicon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/network-wired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/neuter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/notdef.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/note-sticky.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/notes-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/o.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/object-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/object-ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/oil-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/oil-well.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/om.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/otter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/outdent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/p.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pager.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paint-brush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paint-roller.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paintbrush.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/palette.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/panorama.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paper-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paperclip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/parachute-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paragraph.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/parking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pastafarianism.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paste.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pause.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/paw.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peace.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-fancy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-nib.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen-to-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pentagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-arrows.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-carry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-pulling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-robbery.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/people-roof.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pepper-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/percent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/percentage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-arrow-up-from-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-biking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-booth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-breastfeeding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-chalkboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-digging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dots-from-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-drowning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-falling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-half-dress.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-harassing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-pointing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-military-to-person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-praying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-pregnant.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-rays.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-running.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-shelter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skating.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing-nordic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-skiing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-snowboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-swimming.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-through-window.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-loop-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-dashed-line-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-luggage.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking-with-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person-walking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/person.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peseta-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/peso-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone-volume.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/photo-film.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/photo-video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pie-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/piggy-bank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pills.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ping-pong-paddle-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pizza-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/place-of-worship.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-arrival.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-departure.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plant-wilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plate-wheat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/play.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poll-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poll.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo-storm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/poop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pound-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/power-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pray.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/praying-hands.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/print.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/procedures.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/project-diagram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pump-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/pump-soap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/puzzle-piece.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/q.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/qrcode.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/question-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/question.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch-broom-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quidditch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quote-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/quran.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/r.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radiation-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radiation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/radio.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rainbow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/random.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ranking-star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/receipt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/record-vinyl.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-ad.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rectangle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/recycle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/redo-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/redo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/registered.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/remove-format.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/remove.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reorder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/repeat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/reply.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/republican.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/restroom.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/retweet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ribbon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-from-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/right-to-bracket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rmb.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-barrier.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road-spikes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/road.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/robot.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rod-asclepius.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rod-snake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-back.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rouble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/route.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rss-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rub.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruble-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruble.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rug.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-combined.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/running.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupee-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/rupiah-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/s.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sack-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sack-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sad-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sad-tear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sailboat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/satellite-dish.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/save.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-balanced.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scale-unbalanced.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-circle-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/school.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scissors.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scroll-torah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/scroll.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sd-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-dollar.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-location.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/search.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/section.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/seedling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/septagon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/server.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shapes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/share.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheet-plastic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shekel-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shekel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sheqel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-cat.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-dog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-halved.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ship.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shipping-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shoe-prints.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-basket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shopping-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shower.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shrimp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuffle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-space.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/shuttle-van.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-hanging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-in.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-language.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign-out.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal-5.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal-perfect.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signature.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/signs-post.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sim-card.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/single-quote-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sitemap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skating.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skiing-nordic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skiing.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skull-crossbones.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/skull.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sleigh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sliders-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sliders.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smile.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smoking-ban.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sms.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowman.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/snowplow.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/soap.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/soccer-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/socks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/solar-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-alpha-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-amount-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-asc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-desc.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-numeric-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sort.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spa.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/space-shuttle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spaghetti-monster-flying.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spell-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spider.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spinner.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spiral.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/splotch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/spray-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sprout.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-arrow-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-caret-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-envelope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-h.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-nfi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-parking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-person-confined.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-poll-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-root-variable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-rss.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-share-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/staff-aesculapius.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/staff-snake.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stairs.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stamp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stapler.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-and-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half-stroke.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-david.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star-of-life.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/star.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/step-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/step-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sterling-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stethoscope.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sticky-note.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stop.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch-20.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stopwatch.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/store.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stream.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/street-view.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/strikethrough.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/stroopwafel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subscript.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subtract.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/subway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase-rolling.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sun-plant-wilt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sun.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/superscript.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/surprise.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swatchbook.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/swimming-pool.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/synagogue.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sync-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/sync.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/syringe.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/t-shirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/t.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-column-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells-row-unlock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-cells.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis-paddle-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table-tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/table.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-android.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet-screen-button.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tablets.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachograph-digital.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-average.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-average.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tachometer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tags.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tanakh.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tape.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tarp-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tarp.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tasks-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tasks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/taxi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teeth-open.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teeth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/teletype.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/television.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-low.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/temperature-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tenge-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tenge.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-down-to-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrow-turn-left.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent-arrows-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tent.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tents.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/terminal.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-height.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/text-width.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th-list.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/th.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/theater-masks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-0.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-1.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-2.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-4.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-full.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-half.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer-three-quarters.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumb-tack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thumbtack.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/thunderstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket-simple.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/ticket.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tint-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tint.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tired.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toggle-on.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-paper.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toilets-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/toolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tools.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tooth.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/torah.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/torii-gate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tornado.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-broadcast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tower-observation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tractor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/traffic-light.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trailer.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train-subway.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train-tram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/train.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tram.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/transgender-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/transgender.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tree-city.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tree.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-circle-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/triangle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trophy.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trowel-bricks.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/trowel.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-droplet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field-un.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-field.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-front.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-loading.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-medical.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-monster.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-moving.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-plane.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck-ramp-box.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/try.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tshirt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turkish-lira.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turn-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/turn-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tv-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/tv.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/u.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/umbrella.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/underline.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/undo-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/undo.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/universal-access.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/university.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlink.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock-keyhole.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unlock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/unsorted.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-down-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-long.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-and-down-left-from-center.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/up-right-from-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/upload.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/usd.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-astronaut.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-doctor.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-friends.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-graduate.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-group.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-injured.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-large-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-large.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-md.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-ninja.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-nurse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-secret.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-shield.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/user.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-between-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-gear.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-line.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-rays.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users-viewfinder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/users.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/utensil-spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/utensils.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/v.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/van-shuttle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vault.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vcard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vector-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus-double.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus-mars.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/venus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vest-patches.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vest.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial-virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vial.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vials.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video-camera.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/video.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vihara.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-covid.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus-slash.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/virus.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/viruses.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/voicemail.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volcano.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volleyball.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-control-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-down.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-high.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-low.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-mute.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-off.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-times.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-up.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/volume-xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vote-yea.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/vr-cardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/w.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/walkie-talkie.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/walking.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-magic.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wand-sparkles.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/warehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/warning.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/water-ladder.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/water.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wave-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/web-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight-hanging.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/weight.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn-circle-exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheat-awn.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair-move.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/whiskey-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-3.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi-strong.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wifi.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wind.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wine-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/won-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/won.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/worm.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/x-ray.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/x.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark-square.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmark.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/xmarks-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/y.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yen-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yen.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/yin-yang.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/z.svg +1 -0
- docsforge/themes/material/templates/.icons/fontawesome/solid/zap.svg +1 -0
- docsforge/themes/material/templates/.icons/logo-monochrome.svg +3 -0
- docsforge/themes/material/templates/.icons/logo.svg +6 -0
- docsforge/themes/material/templates/.icons/material/LICENSE +20 -0
- docsforge/themes/material/templates/.icons/material/ab-testing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abacus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abjad-arabic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abjad-hebrew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abugida-devanagari.svg +1 -0
- docsforge/themes/material/templates/.icons/material/abugida-thai.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/access-point.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-convert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-convert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cowboy-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-cowboy-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-credit-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-details-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-group-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-hard-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-injury-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-injury.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-reactivate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-reactivate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-school-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-supervisor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-hat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-voice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie-woman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-voice-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-voice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/advertisements-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/advertisements.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-conditioner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-horn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-humidifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-humidifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-purifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/air-purifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airbag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airballoon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airballoon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-landing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane-takeoff.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airplane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/airport.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-bell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-panel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm-snooze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alarm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/album.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-octagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert-rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alien-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alien.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-distribute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-horizontal-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-distribute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/align-vertical-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/all-inclusive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/allergy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-a.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-b.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-c.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-e.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-f.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-h.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-i.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-j.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-k.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-m.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-n.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-o.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-p.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-q.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-r.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-s.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-t.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-u.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-v.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-w.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-x.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-y.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha-z.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alpha.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-aurebesh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-cyrillic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-greek.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-latin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-piqad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabet-tengwar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/alphabetical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/altimeter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ambulance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ammunition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ampersand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/amplifier-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/amplifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/anchor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/android-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/android.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-acute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-obtuse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/material/angularjs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/animation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ansible.svg +1 -0
- docsforge/themes/material/templates/.icons/material/antenna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/anvil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apache-kafka.svg +1 -0
- docsforge/themes/material/templates/.icons/material/api-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/api.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-finder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-icloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-ios.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-caps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-command.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-option.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-keyboard-shift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple-safari.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-array-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-braces-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-brackets-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-parentheses-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-variable-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application-variable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/application.svg +1 -0
- docsforge/themes/material/templates/.icons/material/approximately-equal-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/approximately-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apps-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/apps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/archive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arm-flex-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arm-flex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-bring-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-bring-to-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-send-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrange-send-to-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-collapse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-decision.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-horizontal-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-oscillating-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-oscillating.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-projectile-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-projectile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-split-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-split-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-down-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-left-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-top-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-right-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-u-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down-bold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-drop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-left-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-right-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thin-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up-thin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/arrow-vertical-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/artboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aspect-ratio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/asterisk-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/at.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atom-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/attachment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/atv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-rca.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-stereo-minijack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-input-xlr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-video-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/audio-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/augmented-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aurora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-fix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-mode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/auto-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/autorenew-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/autorenew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/av-timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/awning-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/awning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/aws.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axe-battle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow-info.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-x-y-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-y-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-arrow-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis-z-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/axis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/babel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-bottle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-buggy-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-buggy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-carriage-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-carriage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-face-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby-face.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-reverse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/backup-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bacteria-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bacteria.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badge-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/badminton.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-carry-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-checked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-personal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bag-suitcase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baguette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/balcony.svg +1 -0
- docsforge/themes/material/templates/.icons/material/balloon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-recount-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot-recount.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ballot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bandage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barcode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barley-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barley.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barrel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/barrel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-bat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/baseball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-fill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket-unfill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball-hoop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball-hoop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/basketball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bathtub-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bathtub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-10-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-20-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-30-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-40-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-50-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-60-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-70-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-80-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-90-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-bluetooth-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-100.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-negative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-positive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-unknown-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery-unknown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-double-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-double.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-king-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-king.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-queen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-single-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed-single.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bee-flower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beehive-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beehive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beekeeper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-ring-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-sleep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bench-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/beta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/betamax.svg +1 -0
- docsforge/themes/material/templates/.icons/material/biathlon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-basket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-cargo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle-penny-farthing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal-clipless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal-mountain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike-pedal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bike.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billiards-rack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/billiards.svg +1 -0
- docsforge/themes/material/templates/.icons/material/binoculars.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/biohazard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bird.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/black-mesa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender-software.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-horizontal-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-vertical-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blinds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/block-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blood-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-connect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-linear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur-radial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/blur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bomb-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bomb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-alphabet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-education-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-education.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-information-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-blank-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-blank-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-page-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-page-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/book.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bookshelf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boom-gate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boombox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boomerang.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-all-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-bottom-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-color.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-inside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-left-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-none-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-outside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-right-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-style.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-top-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/border-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-classic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-soda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-skull-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic-skull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-tonic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-wine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bottle-wine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bow-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bow-tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-mix-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-mix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bowling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-cutter-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-cutter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box-shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/boxing-glove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/braille.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bread-slice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bread-slice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bridge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/briefcase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brightness-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broadcast-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broadcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/broom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/brush.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bucket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bucket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/buffet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bugle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulkhead-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulldozer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulletin-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullhorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullseye-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bullseye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bulma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bunk-bed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bunk-bed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-articulated-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-articulated-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-double-decker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop-covered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop-uncovered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/bus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/butterfly-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/butterfly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/button-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/button-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cabin-a-frame.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cable-data.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cached.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cactus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-layered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calculator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-collapse-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-cursor-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-end-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-expand-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-month-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-month.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiple-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiselect-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-multiselect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-range-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-range.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-start-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-today-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-today.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-begin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-begin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-week.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-weekend-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar-weekend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/calendar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-made.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-missed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-received.svg +1 -0
- docsforge/themes/material/templates/.icons/material/call-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camcorder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camcorder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-burst.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-document-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-document.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-enhance-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-enhance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-flip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-flip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-front-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-gopro.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-iris.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-partial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-metering-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-party-mode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-rear-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-retake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-retake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/camera.svg +1 -0
- docsforge/themes/material/templates/.icons/material/campfire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candelabra-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candelabra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/candycane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cannabis-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cannabis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/caps-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-2-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-3-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-abs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-fluid-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-hold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-low-pressure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-parking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-retarder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-brake-worn-linings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-child-seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-clutch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-connected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-convertible.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-coolant-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-cruise-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-defrost-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-defrost-rear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-emergency.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-esp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-estate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-hatchback.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-info.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-lifted-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-dimmed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-fog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-light-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-limousine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-parking-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-pickup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat-cooler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat-heater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-shift-pattern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-speed-limiter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-sports.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-tire-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-traction-control.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-turbocharger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-windshield-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-windshield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/carabiner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/caravan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-mail-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-mail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-account-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-club-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-club.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-club.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing-spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-playing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-spade-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cards.svg +1 -0
- docsforge/themes/material/templates/.icons/material/carrot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/case-sensitive-alt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-100.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-refund.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-register.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cassette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-audio-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-audio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-connected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-education.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/castle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cctv-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cctv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-fan-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-fan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ceiling-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-arrow-down-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-basic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-dock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-link-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-nfc-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-screenshot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-sound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/certificate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chair-rolling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chair-school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chandelier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/charity-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/charity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-arc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-areaspline-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-areaspline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bar-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bell-curve-cumulative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bell-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-bubble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-donut-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-donut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-gantt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-histogram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line-stacked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-multiline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-pie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-pie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-ppf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-sankey-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-sankey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-scatter-plot-hexbin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-scatter-plot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline-variant-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chart-waterfall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-sleep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check-underline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-intermediate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-intermediate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/checkerboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cheese-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cheese.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chef-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chemical-weapon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-bishop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-king.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-knight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-pawn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-queen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chess-rook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-double-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-triple-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-hot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-hot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-mild-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-mild.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chili-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/church-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/church.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cigar-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cigar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-double.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-slice-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/circular-saw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/city.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-flow-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-flow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-pulse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clippy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-digital.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eight-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eleven-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-eleven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-five-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-five.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-four-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-four.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-nine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-nine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-one-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-seven-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-seven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-six-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-six.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-ten-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-ten.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-three-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-three.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-twelve-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-twelve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-two-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock-time-two.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/closed-caption-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/closed-caption.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-print-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clouds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clover-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/clover.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coach-lamp-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coach-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coat-rack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-block-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-braces-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-braces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-brackets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-greater-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-json.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-less-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-not-equal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-parentheses-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-parentheses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-string.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-tags-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/code-tags.svg +1 -0
- docsforge/themes/material/templates/.icons/material/codepen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-maker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-to-go-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee-to-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coffin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-transfer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cogs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collapse-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/collapse-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/color-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-quote-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-quote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/comment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass-rose.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/compost.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/connection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/console.svg +1 -0
- docsforge/themes/material/templates/.icons/material/consolidate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contactless-payment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contacts-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contacts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-copy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-cut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-duplicate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-paste.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/content-save.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/contrast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-classic-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/controller.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cookie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/coolant-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/copyleft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/copyright.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cordova.svg +1 -0
- docsforge/themes/material/templates/.icons/material/corn-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/corn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cosine-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/counter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/countertop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/countertop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cow-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cpu-32-bit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cpu-64-bit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cradle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cradle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/creative-commons.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-chip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refund-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-refund.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-scan-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/credit-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cricket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-free.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-landscape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-rotate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-bolnisi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-celtic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-gps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crosshairs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crowd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cryengine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/crystal-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube-unfolded.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cupcake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curling.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-bdt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-brl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-btc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-cny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eur-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-eur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-fra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-gbp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-ils.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-inr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-jpy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-krw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-kzt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-mnt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-ngn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-php.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-rupee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-thb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-try.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-twd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-uah.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-usd-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/currency-usd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/current-ac.svg +1 -0
- docsforge/themes/material/templates/.icons/material/current-dc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-gesture-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-gesture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-default.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cursor-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curtains-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/curtains.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cylinder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/cylinder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dance-ballroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dance-pole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/data-matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/database.svg +1 -0
- docsforge/themes/material/templates/.icons/material/death-star-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/death-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deathly-hallows.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-into.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/debug-step-over.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-comma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/decimal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-forever-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-forever.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-sweep-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-sweep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delete.svg +1 -0
- docsforge/themes/material/templates/.icons/material/delta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deskphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-tower-monitor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/desktop-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/details.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dev-to.svg +1 -0
- docsforge/themes/material/templates/.icons/material/developer-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/devices.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dharmachakra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diabetes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dialpad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diameter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond-stone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diamond.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diaper-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-1-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-2-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-3-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-4-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-5-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-6-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d10-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d12-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d20-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d4-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d6-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d8-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-d8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dice-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/digital-ocean.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dip-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/directions-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/directions.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc-player.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dishwasher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-horizontal-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/distribute-vertical-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diversify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-flippers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-flag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-tank-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-scuba.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving-snorkel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/diving.svg +1 -0
- docsforge/themes/material/templates/.icons/material/division-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/division.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dlna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dns-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dns.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dock-window.svg +1 -0
- docsforge/themes/material/templates/.icons/material/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doctor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-service.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-side-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dolphin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dome-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/domino-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/donkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door-sliding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doorbell-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/doorbell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dot-net.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dots-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-horizontal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drama-masks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/draw-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/draw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drawing-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drawing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dresser-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dresser.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/duck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dumbbell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/dump-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing-loop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ear-hearing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earbuds.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/earth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-easter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-fried.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/egg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eiffel-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eight-track.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eject.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electric-switch-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electric-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/electron-framework.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elephant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevation-decline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevation-rise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/elevator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ellipse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-mark-as-unread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-newsletter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-seal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-seal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/email.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ember.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-angry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-confused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-confused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cool-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-cry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-dead-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-devil-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-devil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-excited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-excited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-frown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-frown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-happy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-happy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-kiss-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-kiss.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-lol-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-lol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-neutral-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-neutral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-poop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-poop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sad-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-sick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-tongue-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-tongue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-wink-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon-wink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/emoticon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/engine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/epsilon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equal-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equalizer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/equalizer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eraser-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/escalator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eslint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/et.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-cable-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-cable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ethernet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-ccs1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-ccs2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-chademo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-tesla.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-type1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-plug-type2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ev-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/excavator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exclamation-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exclamation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exit-run.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exit-to-app.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expand-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expand-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expansion-card-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/expansion-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exponent-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/exponent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/export-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/eyedropper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-agent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-profile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-shimmer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-man.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-mask-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-recognition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-profile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-shimmer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/face-woman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-gaming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook-workplace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/factory.svg +1 -0
- docsforge/themes/material/templates/.icons/material/family-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan-speed-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-15.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-45.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fast-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/faucet-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/faucet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fax.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feather.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feature-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/feature-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fence-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fence.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fencing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ferris-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ferry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cabinet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cad-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-certificate-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-certificate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-chart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cloud-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-code-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-code.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-delimited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-delimited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-document.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-find-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-find.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-gif-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-jpg-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-link-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-pdf-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-png-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-presentation-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-replace-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-replace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-restore-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sign.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-tree-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-undo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-undo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-video-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-word.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file-xml-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/film.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filmstrip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-menu-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/finance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/find-replace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fingerprint-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fingerprint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-extinguisher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-hydrant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firebase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fireplace-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fireplace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firewire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firework-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/firework.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fish-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fishbowl-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fishbowl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-page-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-page.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-screen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fit-to-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-checkered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-red-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-triangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flashlight-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flashlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask-round-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fleur-de-lis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-to-back.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-to-front.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flip-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-dual-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-dual.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp-torchiere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floor-plan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floppy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/floppy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-pollen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-pollen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-poppy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-tulip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower-tulip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/flower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/focus-field.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-download-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-eye-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-file-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-file.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-information-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-move-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-pound-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-table-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-zip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder-zip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/folder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/font-awesome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-apple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-apple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-croissant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-drumstick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-fork-drink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-halal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-hot-dog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-kosher.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-steak-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-steak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-takeout-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-takeout-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-turkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/food.svg +1 -0
- docsforge/themes/material/templates/.icons/material/foot-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football-australian.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/football.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forest-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forklift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-dropdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textarea.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox-password.svg +1 -0
- docsforge/themes/material/templates/.icons/material/form-textbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-justify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-middle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-align-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-annotation-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-annotation-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-clear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-fill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-highlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-marker-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-color-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-columns.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-float-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font-size-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font-size-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-font.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-header-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-horizontal-align-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-indent-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-indent-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-italic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case-lower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case-upper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-case.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-ends-with.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-matches.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-spacing-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-letter-starts-with.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-style.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-line-weight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted-type.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-checkbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-checks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-group-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-numbered-rtl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-numbered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-list-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-overline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-page-break.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-page-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paragraph-spacing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-paragraph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-pilcrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-quote-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-rotate-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-section.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-size.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-strikethrough-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-strikethrough.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-subscript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-superscript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-angle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-down-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-rotation-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-clip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text-wrapping-wrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-textbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-title.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-underline-wavy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-underline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-vertical-align-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-inline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-tight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/format-wrap-top-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/forwardburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain-pen-tip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain-pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fountain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fraction-one-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/french-fries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/frequently-asked-questions.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-bottom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-industrial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fridge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-cherries-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-cherries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-citrus-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-citrus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-grapes-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-grapes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-pear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-pineapple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fruit-watermelon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuel-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fullscreen-exit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fullscreen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/function-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/function.svg +1 -0
- docsforge/themes/material/templates/.icons/material/furigana-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/furigana-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-blade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/fuse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-round.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamepad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gamma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gantry-crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-variant-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/garage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-burner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-cylinder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-in-use-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-in-use.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gas-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-and.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-nand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-nor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-not.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-or.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-xnor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate-xor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gatsby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gauge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gavel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male-female-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gender-transgender.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-mobile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-portable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/generator-stationary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gentoo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-double-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-pinch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-spread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-swipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-button.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap-hold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-two-double-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture-two-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gesture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/git.svg +1 -0
- docsforge/themes/material/templates/.icons/material/github.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-cocktail-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-cocktail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-flute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-fragile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-mug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-pint-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-stange.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-tulip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glass-wine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/glasses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/globe-model.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gmail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gnome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/go-kart-track.svg +1 -0
- docsforge/themes/material/templates/.icons/material/go-kart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf-cart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf-tee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/golf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gondola.svg +1 -0
- docsforge/themes/material/templates/.icons/material/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-ads.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-analytics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-cardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-chrome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-communities.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-extended.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-circles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-classroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-cloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-downasaur.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-earth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-fit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-glass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-hangouts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-keep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-lens.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-maps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-my-business.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-nearby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-spreadsheet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-street-view.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google-translate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/google.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gradient-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gradient-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graph-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/graphql.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grave-stone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grease-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greater-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greater-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/greenhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grill-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/grill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-acoustic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-pick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guitar-pick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/guy-fawkes-mask.svg +1 -0
- docsforge/themes/material/templates/.icons/material/gymnastics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hair-dryer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hair-dryer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/halloween.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hamburger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-sickle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hammer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-back-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-clap-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-clap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-coin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-coin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-cycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-extended-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-extended.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-front-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-okay.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-peace-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-peace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-pointing-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-saw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wave-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hand-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handcuffs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hands-pray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handshake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hanger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/harddisk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hat-fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hazard-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdmi-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdr-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hdr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-dots-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-dots-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-snowflake-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/head.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headphones.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset-dock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/headset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-broken-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-pump-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heat-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/heating-coil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/helicopter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help-rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/help.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexadecimal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon-slice-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hexagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/high-definition-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/highway.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hiking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/history.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hockey-puck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hockey-sticks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hololens.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-analytics.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-assistant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-automation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-city-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-city.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-flood.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-a.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-b.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-floor-negative-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightning-bolt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lightning-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-modern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-roof.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-silo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-silo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-in-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-in.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-out-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-sound-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hook-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hoop-house.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hops.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horizontal-rotate-clockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horizontal-rotate-counterclockwise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-human.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-variant-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/horseshoe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-building.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hospital.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hot-tub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hours-12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hours-24.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hub-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hub.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hulu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-baby-changing-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-capacity-decrease.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-capacity-increase.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-dolly.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-dance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-female-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female-girl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting-proximity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-greeting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-handsdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-handsup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-board-poll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-female-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-female.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-girl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-height-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-male-child.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-male.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-non-binary.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-pregnant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-queue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-scooter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-walker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human-white-cane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/human.svg +1 -0
- docsforge/themes/material/templates/.icons/material/humble-bundle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hvac-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hvac.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydraulic-oil-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydraulic-oil-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydro-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/hydrogen-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-cream-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-cream.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ice-pop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/id-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/identifier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ideogram-cjk-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ideogram-cjk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-album.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-area-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-area.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-auto-adjust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-broken-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-black-white.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-strong.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus-weak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-center-focus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-drama-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-drama.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-frames.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-hdr-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-hdr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-tilt-shift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-filter-vintage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-frame.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-move.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-actual.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-size-select-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-full-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/inbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-circle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/incognito.svg +1 -0
- docsforge/themes/material/templates/.icons/material/induction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/infinity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-slab-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/information.svg +1 -0
- docsforge/themes/material/templates/.icons/material/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/instrument-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/integrated-circuit-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invert-colors-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invert-colors.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-export-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-import-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/invoice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iobroker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ipod.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron-board.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/island-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/island.svg +1 -0
- docsforge/themes/material/templates/.icons/material/iv-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jabber.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jeepney.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jellyfish-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jellyfish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jquery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/jump-rope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kabaddi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kangaroo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/karate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kayaking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-pour-over.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-steam-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kettlebell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-chain-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-chain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-change.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-backspace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-caps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-close-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-esc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f11.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f12.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-f9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-return.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-space.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-tab-reverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-tab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/keyboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/khanda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kite-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kitesurfing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/klingon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knife-military.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knife.svg +1 -0
- docsforge/themes/material/templates/.icons/material/knob.svg +1 -0
- docsforge/themes/material/templates/.icons/material/koala.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kodi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/kubernetes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/label.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ladder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ladybug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lambda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamp-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamps-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lamps.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-connect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-disconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan-pending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-fields.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-circle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-plots.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-rows-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/land-rows-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/landslide-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/landslide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-c.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-cpp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-csharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-css3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-fortran.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-haskell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-html5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-java.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-javascript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-kotlin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-lua.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-markdown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-php.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-python.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-r.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-ruby-on-rails.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-ruby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-rust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-swift.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-typescript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/language-xaml.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laptop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/laser-pointer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lasso.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lastpass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/latitude.svg +1 -0
- docsforge/themes/material/templates/.icons/material/launch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lava-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-triple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers-triple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/layers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lead-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-maple-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-maple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leaf.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leak-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lectern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-strip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/led-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/leek.svg +1 -0
- docsforge/themes/material/templates/.icons/material/less-than-or-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/less-than.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library-shelves.svg +1 -0
- docsforge/themes/material/templates/.icons/material/library.svg +1 -0
- docsforge/themes/material/templates/.icons/material/license.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lifebuoy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-flood-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-flood-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-recessed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-switch-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/light-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-auto-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl-spiral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-cfl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-fluorescent-tube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-night-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-night.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-20.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-40.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-50.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-70.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-80.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-90.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-spot-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightbulb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lighthouse-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lighthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lightning-bolt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/line-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lingerie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linkedin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linux-mint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lipstick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/liquid-spot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/liquor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/list-status.svg +1 -0
- docsforge/themes/material/templates/.icons/material/litecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/loading.svg +1 -0
- docsforge/themes/material/templates/.icons/material/location-enter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/location-exit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-pattern.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-reset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock-smart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/locker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/locker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/login-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/login.svg +1 -0
- docsforge/themes/material/templates/.icons/material/logout-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/logout.svg +1 -0
- docsforge/themes/material/templates/.icons/material/longitude.svg +1 -0
- docsforge/themes/material/templates/.icons/material/looks.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lotion.svg +1 -0
- docsforge/themes/material/templates/.icons/material/loupe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lumx.svg +1 -0
- docsforge/themes/material/templates/.icons/material/lungs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magazine-pistol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magazine-rifle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magic-staff.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnet-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-expand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-remove-cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/magnify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mailbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/manjaro.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-legend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-distance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-path.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-radius-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/map.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/margin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/material-design.svg +1 -0
- docsforge/themes/material/templates/.icons/material/material-ui.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-cos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-integral-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-integral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-log.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-norm-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-norm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-sin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/math-tan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medical-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medical-cotton-swab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medication-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/medication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meditation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/memory-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/memory.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menorah-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menorah.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-swap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-swap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bookmark-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bulleted-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-bulleted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-draw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-flash-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-flash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-processing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-processing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-reply.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message-video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-gas-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/meter-gas.svg +1 -0
- docsforge/themes/material/templates/.icons/material/metronome-tick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/metronome.svg +1 -0
- docsforge/themes/material/templates/.icons/material/micro-sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-message-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microscope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-access.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-azure-devops.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-azure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-bing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-dynamics-365.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-excel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-internet-explorer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-office.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-onedrive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-onenote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-outlook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-powerpoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-sharepoint.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-teams.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-visual-studio-code.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-visual-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-windows-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-windows.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-word.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-charging.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-battery-unknown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-menu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller-view.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox-controller.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft-xbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microsoft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microwave-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/microwave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/middleware-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/middleware.svg +1 -0
- docsforge/themes/material/templates/.icons/material/midi-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/midi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minecraft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mini-sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minidisc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mirror.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mixed-martial-arts.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mixed-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule-co.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule-co2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/molecule.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-arrow-down-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-cellphone-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-screenshot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-share.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/monitor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-first-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-last-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-new.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waning-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waning-gibbous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waxing-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moon-waxing-gibbous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-electric-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/moped.svg +1 -0
- docsforge/themes/material/templates/.icons/material/more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mortar-pestle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mortar-pestle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mosque-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mosque.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mother-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mother-nurse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-sensor-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion-sensor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motion.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/motorbike.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-left-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-left-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-move-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-right-click-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-right-click.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-scroll-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/move-resize-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/move-resize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-filter-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-roll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/movie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-bag-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-bag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/muffin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multicast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multimedia.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multiplication-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/multiplication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mushroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-double-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-double-sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-natural.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-accidental-sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-alto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-bass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-clef-treble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-bluetooth-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-eighth-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-eighth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-half-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-quarter-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-sixteenth-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-sixteenth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-whole-dotted.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-eighth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-sixteenth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music-rest-whole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/mustache.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nas.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nativescript.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-people-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature-people.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/navigation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/near-me.svg +1 -0
- docsforge/themes/material/templates/.icons/material/necklace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/needle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/needle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/netflix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-pos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-1-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-2-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-3-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network-strength-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/new-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/newspaper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-search-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-tap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ninja.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-game-boy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-wii.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nintendo-wiiu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nodejs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/noodles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/not-equal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/not-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/note.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notebook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/notification-clear-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nuke.svg +1 -0
- docsforge/themes/material/templates/.icons/material/null.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-negative-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric-positive-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/numeric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nutrition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/nuxt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ocarina.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oci.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ocr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octahedron-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/octahedron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/material/offer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/office-building.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil-temperature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/oil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/om.svg +1 -0
- docsforge/themes/material/templates/.icons/material/omega.svg +1 -0
- docsforge/themes/material/templates/.icons/material/one-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/onepassword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-in-app.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-in-new.svg +1 -0
- docsforge/themes/material/templates/.icons/material/open-source-initiative.svg +1 -0
- docsforge/themes/material/templates/.icons/material/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/material/orbit-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/orbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-alphabetical-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-alphabetical-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-bool-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-numeric-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/order-numeric-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/origin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ornament-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ornament.svg +1 -0
- docsforge/themes/material/templates/.icons/material/outdoor-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/overscan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/owl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pac-man.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/package.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-first.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-last.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-body.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-footer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-header-footer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-header.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-sidebar-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-layout-sidebar-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-next-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-next.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-previous-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/page-previous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-advanced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette-swatch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palette.svg +1 -0
- docsforge/themes/material/templates/.icons/material/palm-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-bottom-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-top-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-fisheye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-horizontal-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-sphere-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-sphere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-vertical-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-wide-angle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama-wide-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/panorama.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-cut-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-roll-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paper-roll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paperclip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parachute-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parachute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paragliding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/parking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/party-popper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-biometric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pasta.svg +1 -0
- docsforge/themes/material/templates/.icons/material/patio-heater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-octagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause-octagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/paw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peace.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/peanut.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-ruler-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil-ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/penguin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pentagram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/periodic-table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/perspective-less.svg +1 -0
- docsforge/themes/material/templates/.icons/material/perspective-more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ph.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-bluetooth-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-classic-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-dial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-dial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-hangup-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-hangup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-in-talk-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-in-talk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outgoing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-incoming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-log-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-log.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-message-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-missed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-missed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outgoing-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outgoing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-paused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-paused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-return-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-return.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-ring-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-rotate-landscape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-rotate-portrait.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone-voip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/phone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi-hole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piano-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piano.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pickaxe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/picture-in-picture-top-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pier-crane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pig.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piggy-bank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piggy-bank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pillar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pine-tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinwheel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pinwheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-disconnected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-leak.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-valve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pirate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pistol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/piston.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pitchfork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pizza.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plane-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plane-train.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-protected-content.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play-speed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/playlist-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pliers.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus-thick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pocket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podcast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-bronze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-gold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium-silver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/podium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/point-of-sale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pokeball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pokemon-go.svg +1 -0
- docsforge/themes/material/templates/.icons/material/poker-chip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polaroid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/police-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/poll.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/polymer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pool-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/popcorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post-lamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/post.svg +1 -0
- docsforge/themes/material/templates/.icons/material/postage-stamp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-mix-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-mix.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-steam-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot-steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-cycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-on.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-battery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-battery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-plug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-au.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-ch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-de.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-eu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-fr.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-it.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-jp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-uk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket-us.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-socket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power-standby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/powershell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/prescription.svg +1 -0
- docsforge/themes/material/templates/.icons/material/presentation-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/presentation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pretzel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-heat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-nozzle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-pos.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/printer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/priority-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/priority-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/professional-hexagon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-download.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-pencil.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/progress-wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector-screen.svg +1 -0
- docsforge/themes/material/templates/.icons/material/projector.svg +1 -0
- docsforge/themes/material/templates/.icons/material/propane-tank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/propane-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/protocol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/publish-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/publish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pulse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pump-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pumpkin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/purse-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/purse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/puzzle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pyramid-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/pyramid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qqchat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/qrcode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quadcopter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quality-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/queue-first-in-last-out.svg +1 -0
- docsforge/themes/material/templates/.icons/material/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/racing-helmet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/racquetball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiator.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-am.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-fm.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-handheld.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radioactive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-blank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-indeterminate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiobox-marked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiology-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radiology-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radius-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/railroad-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raspberry-pi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raw-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/raw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-end-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-arrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start-vertex-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ray-vertex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/razor-double-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/razor-single-edge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/react.svg +1 -0
- docsforge/themes/material/templates/.icons/material/read.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text-send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/receipt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-player.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record-rec.svg +1 -0
- docsforge/themes/material/templates/.icons/material/record.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rectangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/recycle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/recycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redo-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/redo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reflect-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reflect-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/regex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/registered-trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reiterate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-or-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-only-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-many-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-only-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-many.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relation-zero-or-one-to-zero-or-one.svg +1 -0
- docsforge/themes/material/templates/.icons/material/relative-scale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reload-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reminder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-desktop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-tv-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote-tv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/remote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rename.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reorder-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reorder-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-once.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/repeat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/replay.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reply.svg +1 -0
- docsforge/themes/material/templates/.icons/material/reproduction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resistor-nodes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resistor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resize-bottom-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/resize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/responsive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restore-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-15.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-30.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-45.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-60.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rewind.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-split-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rhombus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ribbon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rice.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rickshaw-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rickshaw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rivet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/road-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/road.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robber.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-angry-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-angry.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-confused-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-confused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-dead-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-dead.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-excited-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-excited.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-happy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-happy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-industrial-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-industrial.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-love-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-love.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-mower-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-mower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot-vacuum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/robot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-launch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-launch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rodent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-shade-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-shade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-skate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roller-skate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollerblade-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollerblade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rollupjs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rolodex-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rolodex.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-6.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-7.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-8.svg +1 -0
- docsforge/themes/material/templates/.icons/material/roman-numeral-9.svg +1 -0
- docsforge/themes/material/templates/.icons/material/room-service-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/room-service.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-360.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-3d-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-left-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-orbit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-right-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rotate-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rounded-corner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-network-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/router.svg +1 -0
- docsforge/themes/material/templates/.icons/material/routes-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/routes.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rowing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rugby.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler-square-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ruler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/run-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/run.svg +1 -0
- docsforge/themes/material/templates/.icons/material/rv-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe-square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/safety-goggles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sail-boat-sink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sail-boat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sale-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/salesforce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite-uplink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sausage-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sausage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/saw-blade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sawtooth-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/saxophone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-balance.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-bathroom.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale-unbalanced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scale.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scan-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scanner-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scanner.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scatter-plot-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scatter-plot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scent-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/school-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/school.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scissors-cutting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scooter-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scooter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scoreboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/scoreboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screen-rotation-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screen-rotation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-flat-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-lag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-machine-flat-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-machine-round-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screw-round-top.svg +1 -0
- docsforge/themes/material/templates/.icons/material/screwdriver.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/script.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sd.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/search-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-flat-angled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-individual-suite.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-extra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-normal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-legroom-reduced.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-recline-extra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat-recline-normal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seatbelt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/security-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/security.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/seesaw.svg +1 -0
- docsforge/themes/material/templates/.icons/material/segment.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-color.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-compare.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-group.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-inverse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-multiple-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-place.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-drag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse-arrow-inside.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-multiple-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/selection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/semantic-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/send.svg +1 -0
- docsforge/themes/material/templates/.icons/material/serial-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server-security.svg +1 -0
- docsforge/themes/material/templates/.icons/material/server.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-center-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left-center.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-none.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-split.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/set-top-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/settings-helper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shaker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-circle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-oval-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-polygon-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-rectangle-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape-square-rounded-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shape.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-all-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-all.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/share.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-fin-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-fin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sheep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-airplane-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-airplane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-bug-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-bug.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-cross-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-crown-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-crown.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-home-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-home.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-key-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-link-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-link-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-moon-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-moon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sun-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sun.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sword-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ship-wheel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shipping-pallet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-ballet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-cleat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-formal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-heel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-print.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shoe-sneaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shopping.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shovel-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shovel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shower-head.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shredder.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuffle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/shuriken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sickle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sigma-lower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sigma.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-caution.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-direction.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-language-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-language.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-pole.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-real-estate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sign-yield.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-2g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-3g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-4g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-5g.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-cellular-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-distance-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-hspa-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-hspa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-freehand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/signature.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-clean.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-fork-knife.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-spoon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/silverware.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sim.svg +1 -0
- docsforge/themes/material/templates/.icons/material/simple-icons.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sina-weibo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sine-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sitemap-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sitemap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-l.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-m.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-s.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/size-xxxl.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skateboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skateboarding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skew-less.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skew-more.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski-cross-country.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ski.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-backward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-forward-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-next.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skip-previous.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-crossbones-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-crossbones.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-scan-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull-scan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skype-business.svg +1 -0
- docsforge/themes/material/templates/.icons/material/skype.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slash-forward-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slash-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sledding.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sleep-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sleep.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slope-downhill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slope-uphill.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slot-machine-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/slot-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-reader-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card-reader.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smart-card.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke-detector.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoke.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-pipe-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking-pipe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/smoking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-melt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowman.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowmobile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/snowshoeing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soccer-field.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soccer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/social-distance-2-meters.svg +1 -0
- docsforge/themes/material/templates/.icons/material/social-distance-6-feet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-single-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa-single.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sofa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-panel-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-panel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solar-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soldering-iron.svg +1 -0
- docsforge/themes/material/templates/.icons/material/solid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sony-playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-alphabetical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-bool-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-calendar-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-calendar-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-ascending-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-descending-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-clock-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-ascending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-ascending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-descending-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-descending.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-numeric-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-reverse-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sort.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soundbar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-branch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-end-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-end.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-next-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-start-next-local.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit-start.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-commit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-fork.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-merge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-pull.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-repository-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/source-repository.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soy-sauce-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/soy-sauce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spa-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spa.svg +1 -0
- docsforge/themes/material/templates/.icons/material/space-invaders.svg +1 -0
- docsforge/themes/material/templates/.icons/material/space-station.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spade.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-message.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer-slow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/speedometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spellcheck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sphere-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sphere.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-thread.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider-web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spider.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spirit-level.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spoon-sugar.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotlight-beam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spotlight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spray-bottle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/spray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprinkler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprout-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sprout.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-medium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-root-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-root.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-badge-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-badge.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-rounded.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/squeegee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ssh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stack-exchange.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stack-overflow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stackpath.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stadium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stairs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stamper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/standard-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-crescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-david.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-face.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points-small.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-four-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-half-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-half.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-shooting-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-shooting.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-three-points-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star-three-points.svg +1 -0
- docsforge/themes/material/templates/.icons/material/star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/state-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steering-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/steering.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-backward-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-backward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-forward-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/step-forward.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stethoscope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-emoji.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sticker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stocking.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stomach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stool-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stool.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storage-tank-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storage-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-24-hour.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/store.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/storefront.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/strategy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stretch-to-page-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/stretch-to-page.svg +1 -0
- docsforge/themes/material/templates/.icons/material/string-lights-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/string-lights.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subdirectory-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subdirectory-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/submarine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subtitles-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subtitles.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway-alert-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/subway.svg +1 -0
- docsforge/themes/material/templates/.icons/material/summit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-angle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-angle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-compass.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-snowflake-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sun-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sunglasses.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surfing.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-2-0.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-2-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-3-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-5-1-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-5-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound-7-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/surround-sound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/svg.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-bold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swap-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/swim.svg +1 -0
- docsforge/themes/material/templates/.icons/material/switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sword-cross.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sword.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-hangul.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-hiragana.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-katakana-halfwidth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/syllabary-katakana.svg +1 -0
- docsforge/themes/material/templates/.icons/material/symbol.svg +1 -0
- docsforge/themes/material/templates/.icons/material/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/material/synagogue-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/synagogue.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab-unselected.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-border.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-chair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-plus-after.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-plus-before.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column-width.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-column.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-filter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-furniture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-headers-eye-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-headers-eye.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-key.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-large.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-merge-cells.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-of-contents.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-picnic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-pivot.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-height.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-plus-after.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-plus-before.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-row.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-split-cell.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table-tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/table.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tablet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/taco.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-left-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-right-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-faces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-heart-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-heart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-hidden.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tag.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tailwind.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tally-mark-5.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tangram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tanker-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tape-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tape-measure.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/target.svg +1 -0
- docsforge/themes/material/templates/.icons/material/taxi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tea-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tea.svg +1 -0
- docsforge/themes/material/templates/.icons/material/teamviewer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/teddy-bear.svg +1 -0
- docsforge/themes/material/templates/.icons/material/telescope.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-ambient-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-classic-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-classic.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-guide.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-shimmer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-speaker-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-speaker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/television.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-celsius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-fahrenheit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temperature-kelvin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-buddhist-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-buddhist.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-hindu-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/temple-hindu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis-ball-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis-ball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tennis.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/terraform.svg +1 -0
- docsforge/themes/material/templates/.icons/material/terrain.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/test-tube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-long.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-recognition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-search-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text-short.svg +1 -0
- docsforge/themes/material/templates/.icons/material/text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/texture-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/texture.svg +1 -0
- docsforge/themes/material/templates/.icons/material/theater.svg +1 -0
- docsforge/themes/material/templates/.icons/material/theme-light-dark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-chevron-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-chevron-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-lines.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-probe-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-probe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer-water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-box-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thermostat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thought-bubble-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thought-bubble.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-up-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumb-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumbs-up-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/thumbs-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-confirmation-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-confirmation.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-percent-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ticket.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tie.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tilde-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tilde.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timelapse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timeline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-10.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cancel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-music-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-music.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-pause-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-pause.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-play-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-play.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-refresh-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-complete.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-empty.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand-paused.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sand.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-settings-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-star-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-stop-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-stop.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sync-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/timetable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster-oven.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toaster.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toggle-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toilet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toolbox-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tools.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-cellphone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-image-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-question-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-question.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip-text.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooltip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooth-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tooth.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush-electric.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush-paste.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toothbrush.svg +1 -0
- docsforge/themes/material/templates/.icons/material/torch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tortoise.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toslink.svg +1 -0
- docsforge/themes/material/templates/.icons/material/touch-text-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tournament.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tow-truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tower-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tower-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/town-hall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-search-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick-search.svg +1 -0
- docsforge/themes/material/templates/.icons/material/toy-brick.svg +1 -0
- docsforge/themes/material/templates/.icons/material/track-light-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/track-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trackpad-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trackpad.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tractor-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tractor.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trademark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-cone.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-light-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/traffic-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-bus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-autorack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-caboose.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-centerbeam-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-centerbeam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-container.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-gondola-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-gondola.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper-covered.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-hopper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-intermodal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-door-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-door.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car-tank.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-car.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/train.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tram-side.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transcribe-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transcribe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-connection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-detour.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-skip.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transit-transfer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transition-masked.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/translate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/transmission-tower.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trash-can-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trash-can.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-full.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tray.svg +1 -0
- docsforge/themes/material/templates/.icons/material/treasure-chest-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/treasure-chest.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tree-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tree.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-neutral.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trending-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-down-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-small-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-small-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/triforce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-award.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-broken.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trophy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-cargo-container.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-delivery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-delivery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-fast-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-fast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-flatbed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-off-road-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-off-road.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck-trailer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/truck.svg +1 -0
- docsforge/themes/material/templates/.icons/material/trumpet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-crew-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-crew.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-v-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tshirt-v.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tsunami.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tumble-dryer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-vertical-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tune.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tunnel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/tunnel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turbine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turkey.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turnstile-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turnstile.svg +1 -0
- docsforge/themes/material/templates/.icons/material/turtle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/twitter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/two-factor-authentication.svg +1 -0
- docsforge/themes/material/templates/.icons/material/typewriter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ubisoft.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ufo-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ufo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ultra-high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-beach-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-beach.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/umbrella.svg +1 -0
- docsforge/themes/material/templates/.icons/material/underwear-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/undo-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/undo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-less-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-less-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-more-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unfold-more-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/ungroup.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicode.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicorn-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unicycle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/unreal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/update.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-circle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-multiple-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-multiple.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-network-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-network.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/upload.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-c-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-flash-drive-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-flash-drive.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb-port.svg +1 -0
- docsforge/themes/material/templates/.icons/material/usb.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vacuum-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vacuum.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/valve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/van-passenger.svg +1 -0
- docsforge/themes/material/templates/.icons/material/van-utility.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanish-quarter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanish.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vanity-light.svg +1 -0
- docsforge/themes/material/templates/.icons/material/variable-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/variable.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-arrange-above.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-arrange-below.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-bezier.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-circle-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-combine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-curve.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference-ab.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference-ba.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-difference.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-ellipse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-intersection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-line.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-link.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point-select.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-point.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polygon-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-polyline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-radius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-rectangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-selection.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-square.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-triangle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vector-union.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vhs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vibrate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-2d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-3d.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-4k-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-account.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-box-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-high-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-image.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-antenna.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-component.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-hdmi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-scart.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-input-svideo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-marker-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-stabilization.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-standard-definition.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-switch-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-switch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-vintage.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-wireless-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video-wireless.svg +1 -0
- docsforge/themes/material/templates/.icons/material/video.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-agenda-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-agenda.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-array-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-array.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-carousel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-carousel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-column-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-column.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-comfy-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-comfy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-compact-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-compact.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-edit-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-edit.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-dashboard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-day-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-day.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-gallery-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-gallery.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-compact.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-grid.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-headline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-list-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-list.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-module-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-module.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-parallel-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-parallel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-quilt-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-quilt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-sequential-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-sequential.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-split-horizontal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-split-vertical.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-stream-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-stream.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-week-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/view-week.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/violin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virtual-reality.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/virus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vlc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/voicemail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volcano-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volcano.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volleyball.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-equal.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-high.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-low.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-medium.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-mute.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-source.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-variant-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/volume-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vote-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vote.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vpn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vuejs.svg +1 -0
- docsforge/themes/material/templates/.icons/material/vuetify.svg +1 -0
- docsforge/themes/material/templates/.icons/material/walk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-fire.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-flat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce-round.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall-sconce.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-bifold-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-bifold.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-giftcard.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-membership.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet-travel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallet.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wallpaper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wan.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wardrobe-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wardrobe.svg +1 -0
- docsforge/themes/material/templates/.icons/material/warehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/washing-machine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-export-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-export.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-import-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-import.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-vibrate-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch-vibrate.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watch.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-boiler.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-circle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-minus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-opacity.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-percent-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-percent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-plus-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-polo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-pump-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-pump.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-remove-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-thermometer-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-thermometer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-well-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water-well.svg +1 -0
- docsforge/themes/material/templates/.icons/material/water.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waterfall.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watering-can-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watering-can.svg +1 -0
- docsforge/themes/material/templates/.icons/material/watermark.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave-undercurrent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waveform.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waves.svg +1 -0
- docsforge/themes/material/templates/.icons/material/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-dust.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-fog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hail.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hazy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hurricane-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-hurricane.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-lightning-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-moonset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-night-partly-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-night.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-cloudy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-snowy-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-partly-snowy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-pouring.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy-heavy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy-rainy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-snowy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-sunset.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-tornado.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-windy-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weather-windy.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/web.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webcam-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webcam.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webhook.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webpack.svg +1 -0
- docsforge/themes/material/templates/.icons/material/webrtc.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wechat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-gram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-kilogram.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-lifter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight-pound.svg +1 -0
- docsforge/themes/material/templates/.icons/material/weight.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheel-barrow.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheelchair-accessibility.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wheelchair.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whistle-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/whistle.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-incandescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-iridescent.svg +1 -0
- docsforge/themes/material/templates/.icons/material/white-balance-sunny.svg +1 -0
- docsforge/themes/material/templates/.icons/material/widgets-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/widgets.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-left-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-left.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-right.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-up-down.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-arrow-up.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-cancel.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-marker.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-minus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-plus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-refresh.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-remove.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-star.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-1.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-2.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-3.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4-lock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-4.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-alert-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-lock-open-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-lock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-off-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-off.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-strength-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi-sync.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wifi.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wikipedia.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-power-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-power.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wind-turbine.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-close.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-closed-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-closed.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-maximize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-minimize.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-open-variant.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-restore.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-auto.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-open.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter-settings.svg +1 -0
- docsforge/themes/material/templates/.icons/material/window-shutter.svg +1 -0
- docsforge/themes/material/templates/.icons/material/windsock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper-wash-alert.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper-wash.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wiper.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wizard-hat.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrap-disabled.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrap.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-check-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-check.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-clock-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-clock.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-cog-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-cog.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/wrench.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xamarin.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xml.svg +1 -0
- docsforge/themes/material/templates/.icons/material/xmpp.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yahoo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yeast.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yin-yang.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yoga.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-gaming.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-studio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-subscription.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube-tv.svg +1 -0
- docsforge/themes/material/templates/.icons/material/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/material/yurt.svg +1 -0
- docsforge/themes/material/templates/.icons/material/z-wave.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zend.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zigbee.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-box-outline.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-box.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zip-disk.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-aquarius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-aries.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-cancer.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-capricorn.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-gemini.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-leo.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-libra.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-pisces.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-sagittarius.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-scorpio.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-taurus.svg +1 -0
- docsforge/themes/material/templates/.icons/material/zodiac-virgo.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/LICENSE +21 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-inset-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/accessibility-inset-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/agent-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/agent-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ai-model-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ai-model-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/alert-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/apps-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/apps-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/archive-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/archive-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-both-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-both-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-down-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-switch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-switch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/arrow-up-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/beaker-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/beaker-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bell-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/blocked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/blocked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/book-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/book-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-filled-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bookmark-slash-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-off-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-off-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-on-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/boolean-on-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/briefcase-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/briefcase-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/broadcast-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/broadcast-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/browser-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/browser-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bug-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/bug-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cache-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cache-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/calendar-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/calendar-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/check-circle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checkbox-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checklist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/checklist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/chevron-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/circle-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/clock-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-offline-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cloud-offline-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-of-conduct-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-of-conduct-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-review-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-review-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-square-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/code-square-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codescan-checkmark-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codespaces-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/codespaces-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/columns-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/columns-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/command-palette-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/command-palette-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-ai-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-ai-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-discussion-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/comment-discussion-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/compose-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/compose-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/container-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/container-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-48.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-96.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-error-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copilot-warning-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/copy-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cpu-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cpu-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/credit-card-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/credit-card-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cross-reference-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/cross-reference-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/crosshairs-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/crosshairs-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/database-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/database-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dependabot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dependabot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/desktop-download-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/desktop-download-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-video-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-camera-video-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-desktop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-desktop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-mobile-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/device-mobile-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/devices-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/devices-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diamond-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diamond-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dice-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dice-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-added-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-added-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-ignored-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-ignored-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-modified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-modified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-removed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-removed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-renamed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/diff-renamed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-duplicate-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-outdated-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/discussion-outdated-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/dot-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/download-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/download-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/duplicate-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/duplicate-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ellipsis-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ellipsis-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/exclamation-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/exclamation-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/eye-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-discussion-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-forked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-heart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-open-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-issue-reopen-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-merged-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-person-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-plus-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-public-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-pull-request-open-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-repo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-rocket-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-tag-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/feed-trophy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-added-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-added-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-badge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-badge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-binary-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-binary-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-code-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-code-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-diff-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-diff-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-open-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-directory-symlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-media-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-media-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-moved-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-moved-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-removed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-removed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-submodule-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-submodule-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-symlink-file-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-symlink-file-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-zip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/file-zip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-remove-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/filter-remove-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fiscal-host-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fiscal-host-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flame-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flame-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flowchart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/flowchart-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/focus-center-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/focus-center-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/fold-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gear-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gear-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gift-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/gift-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-branch-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-commit-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-commit-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-compare-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-compare-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-queue-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-merge-queue-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/git-pull-request-draft-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/globe-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/globe-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/goal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/goal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/grabber-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/grabber-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-horizontal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/graph-bar-vertical-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heading-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heading-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/heart-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/history-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/history-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/home-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/horizontal-rule-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/horizontal-rule-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hourglass-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hourglass-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hubot-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/hubot-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/id-badge-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/id-badge-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/image-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/image-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/inbox-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/infinity-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/infinity-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/info-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/info-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-closed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-closed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-draft-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-draft-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-opened-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-opened-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-reopened-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-reopened-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracked-by-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracks-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/issue-tracks-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/italic-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/italic-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/iterations-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/iterations-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/kebab-horizontal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-asterisk-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/key-asterisk-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/law-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/law-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/light-bulb-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/light-bulb-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-external-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/link-external-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-ordered-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-ordered-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-unordered-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/list-unordered-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/location-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/location-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/lock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/lock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/log-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/log-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-gist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-gist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-github-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/logo-github-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/loop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/loop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mail-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mail-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mark-github-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mark-github-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/markdown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/markdown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/maximize-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/maximize-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mcp-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mcp-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/megaphone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/megaphone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mention-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mention-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/meter-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/meter-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/milestone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/milestone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/minimize-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/minimize-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mirror-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mirror-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/moon-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/moon-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mortar-board-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mortar-board-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-bottom-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-bottom-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-end-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-end-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-start-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-start-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-top-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/move-to-top-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/multi-select-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/multi-select-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mute-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/mute-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/no-entry-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/node-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/node-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/north-star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/north-star-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/note-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/note-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/number-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/number-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/organization-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/organization-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependencies-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependencies-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependents-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/package-dependents-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paintbrush-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paintbrush-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paper-airplane-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paper-airplane-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paperclip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paperclip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/passkey-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/passkey-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paste-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/paste-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pause-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pause-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-ai-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pencil-ai-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/people-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/people-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-add-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-add-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/person-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pin-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pivot-column-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pivot-column-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/play-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/play-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plug-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plug-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/plus-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-roadmap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-roadmap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-symlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-symlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-template-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/project-template-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pulse-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/pulse-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/question-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/question-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/quote-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/quote-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/read-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/read-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/redo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/redo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rel-file-path-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rel-file-path-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/reply-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/reply-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-clone-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-clone-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-delete-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-deleted-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-forked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-forked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-locked-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-locked-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-pull-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-pull-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-push-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-push-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-template-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/repo-template-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/report-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/report-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rocket-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rocket-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rows-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rows-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rss-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/rss-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ruby-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/ruby-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-full-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-full-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-normal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/screen-normal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/search-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/search-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/server-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/server-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-android-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/share-android-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-check-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-check-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-lock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-lock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-slash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-slash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-x-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/shield-x-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-collapse-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-expand-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sidebar-expand-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-in-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-in-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-out-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sign-out-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/single-select-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/single-select-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/skip-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sliders-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sliders-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-frustrated-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-grin-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-grin-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-neutral-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/smiley-neutral-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-asc-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-asc-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-desc-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sort-desc-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/space-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/space-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-large-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-large-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-medium-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-medium-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-small-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/spacing-small-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkles-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sparkles-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/split-view-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/split-view-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sponsor-tiers-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/square-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/squirrel-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/squirrel-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stack-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stack-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/star-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stop-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stop-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stopwatch-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/stopwatch-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/strikethrough-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/strikethrough-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sun-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sun-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sync-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/sync-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-external-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tab-external-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/table-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/table-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tag-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tag-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tasklist-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tasklist-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/telescope-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/terminal-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/terminal-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/three-bars-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/three-bars-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsdown-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsdown-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsup-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/thumbsup-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tools-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tools-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-completed-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/tracked-by-closed-not-planned-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trash-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trash-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-down-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-down-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-left-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-left-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-right-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-right-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-up-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/triangle-up-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trophy-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/trophy-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/typography-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/typography-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/undo-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/undo-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unfold-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unfold-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlink-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlink-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlock-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unlock-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unmute-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unmute-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unread-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unread-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unverified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unverified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unwrap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/unwrap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/upload-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/upload-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/verified-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/verified-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/versions-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/versions-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/video-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/video-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-32.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/vscode-48.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/webhook-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/workflow-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/workflow-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/wrap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/wrap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-12.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/x-circle-fill-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zap-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zap-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-in-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-in-24.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-out-16.svg +1 -0
- docsforge/themes/material/templates/.icons/octicons/zoom-out-24.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1001tracklists.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1and1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1dot1dot1dot1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1panel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/1password.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/2fas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/2k.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/30secondsofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/365datascience.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/3m.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/42.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/4chan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/4d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/500px.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/7zip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/99designs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/9gag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/LICENSE.md +30 -0
- docsforge/themes/material/templates/.icons/simple/abb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abbott.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abbvie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abdownloadmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aboutdotme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abstract.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/abusedotch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/academia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accenture.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accusoft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/accuweather.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actigraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activeloop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activision.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/activitypub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/actualbudget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/acura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adafruit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adaway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adblock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adblockplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/addydotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adidas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adminer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adonisjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adroll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adventofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/adyen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aegisauthenticator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aeroflot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aeromexico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/afdian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/affine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aframe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/afterpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aftership.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/agora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aidungeon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aiohttp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aiqfome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airasia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbnb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbrake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airbyte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aircall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aircanada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airchina.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airfrance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airindia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airplayaudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airplayvideo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airserbia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/airtransat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ajv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akamai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akasaair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akaunting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/akiflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alacritty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alamy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/albertheijn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alchemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aldinord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aldisud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alfred.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/algolia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/algorand.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alibabacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alibabadotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alienware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aliexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alipay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/allegro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alliedmodders.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alltrails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/almalinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alpinedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alpinelinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alternativeto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/alwaysdata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ameba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/americanairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/americanexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/amul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anaconda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/analogue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/andela.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/android.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/androidauto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/androidstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/angular.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anilist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/animalplanet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/animedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ankermake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ansible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/answer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ansys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antena3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antennapod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anthropic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/antv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anycubic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anydesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/anytype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apache.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheairflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheavro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecassandra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecloudstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecordova.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachecouchdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedolphinscheduler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedoris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachedruid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheecharts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheflink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachefreemarker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachegroovy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheguacamole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehadoop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachehive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachejmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachekafka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachekylin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachelucene.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachemaven.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachenetbeanside.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachenifi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheopenoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacheparquet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachepulsar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apacherocketmq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachesolr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachespark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachestorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachesuperset.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apachetomcat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aparat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apifox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apmterminals.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apollographql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apostrophe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appgallery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appimage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/apple.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applearcade.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applemusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applenews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applepay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/applepodcasts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appletv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appsignal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appveyor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/appwrite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aqua.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aral.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arangodb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arcgis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archicad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archiveofourown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/archlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ardour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arduino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/argo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/argos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ariakit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arkecosystem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arlo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/armkeil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arstechnica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artifacthub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artixlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/artstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/arxiv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asahilinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asciidoctor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asciinema.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aseprite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/assemblyscript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asterisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astonmartin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astral.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/astro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/asus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atandt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atlasos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/atlassian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/auchan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audacity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiobookshelf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audioboom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiomack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/audiotechnica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/aurelia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autentique.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/auth0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/authelia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/authentik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autocad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autocannon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodeskmaya.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autodeskrevit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autohotkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autoit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/automattic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autoprefixer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/autozone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avajs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avaloniaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avianca.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avira.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/avm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awesomelists.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awesomewm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/awwwards.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/axios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/axisbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/b4x.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babelio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/babylondotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backblaze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backbone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backbonedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backendless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backstage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/backstage_casting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/badoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baidu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bakalari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bamboo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bambulab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandcamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandlab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandrautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bandsintown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bankofamerica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/barclays.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baremetrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/barmenia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/basecamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/baserow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/basicattentiontoken.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bastyon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/battledotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bazel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatport.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beats.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatsbydre.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beatstars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beekeeperstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/behance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/beijingsubway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentley.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bento.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentobox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bentoml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bereal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betfair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterauth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterdiscord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/betterstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bevy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigbasket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigbluebutton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigcartel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bigcommerce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bilibili.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/billboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/binance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bioconductor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/biolink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/biome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bisecthosting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitbucket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoincash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcoinsv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitcomet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitdefender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitrise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitsy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bittorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitwarden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bitwig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/black.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blackberry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blackmagicdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blazemeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blazor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blibli.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blockbench.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blockchaindotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blogger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bloglovin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/blueprint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluesky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluesound.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bluetooth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bmcsoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bmw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bnbchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boardgamegeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boehringeringelheim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boeing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bohemiainteractive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bombardier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookalope.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookbub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookingdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookmyshow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bookstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boosty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boots.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/borgbackup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bosch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/botblecms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boulanger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/box.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/boxysvg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/braintree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/braintrust.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brandfetch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brandfolder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brave.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/breaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brenntag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brevo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/brex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/britishairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/broadcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bruno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bspwm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/budibase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buefy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buffer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bugatti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bugcrowd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buildkite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/builtbybit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bukalapak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bulma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bungie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bunnydotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bunq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burgerking.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burpsuite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/burton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buymeacoffee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buysellads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/buzzfeed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bvg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/byjus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/bytedance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/c.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cachet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cadillac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cafepress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cairographics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cairometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caixabank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cakephp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caldotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/calendly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/calibreweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/campaignmonitor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/camunda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/canonical.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/canvas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/capacitor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caprover.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cardano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cardmarket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carlsberggroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carrd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carrefour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carthrottle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/carto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cashapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castorama.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/castro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/caterpillar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cbs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ccc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ccleaner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cdprojekt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/celery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/celestron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/centos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ceph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cesium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chainguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chainlink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chakraui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/changedetection.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/channel4.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/charles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chartdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chartmogul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chatbot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chatwoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkmarx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/checkmk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chedraui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cheerio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chef.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chemex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chessdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chevrolet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chianetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chinaeasternairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chinasouthernairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chocolatey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chromatic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chromewebstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chrysler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/chupachups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cilium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cinema4d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cinnamon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circleci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/circuitverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cirrusci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cisco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/citrix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/citroen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/civicrm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/civo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clarifai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/claris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clarivate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/claude.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clerk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clevercloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clickhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clickup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clockify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clojure.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloud66.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudbees.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudcannon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflarepages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudflareworkers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudfoundry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudinary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudnativebuild.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudsmith.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cloudways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clubforce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clubhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/clyp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cmake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cncf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cnn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cobalt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocacola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cockpit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cockroachlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocoapods.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cocos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeblocks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeceptjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codechef.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeclimate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecov.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codecrafters.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codefactor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeforces.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codefresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeigniter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codemagic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codementor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codemirror.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codenewbie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coderabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codersrank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coderwall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codesandbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codeship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codesignal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codewars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codingame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codingninjas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/codio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coffeescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coggle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coinbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coinmarketcap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/collaboraonline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comicfury.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commerzbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commitlint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commodore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commonlisp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/commonworkflowlanguage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/compilerexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/composer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comptia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/comsol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/concourse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/condaforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conekta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/confluence.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/construct3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/consul.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contabo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contactlesspayment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/containerd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contentful.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contentstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/continente.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/contributorcovenant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/conventionalcommits.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/convertio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cookiecutter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coolermaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coolify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/copaairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coppel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coreldraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coronaengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coronarenderer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/corsair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/couchbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/counterstrike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/countingworkspro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coursera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coveralls.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/coze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cplusplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cplusplusbuilder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/craftcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/craftsman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cratedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crayon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creality.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/createreactapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creativecommons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/creativetechnology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/credly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crehana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crewai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crewunited.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/criticalrole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crowdin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crowdsource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crunchbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crunchyroll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryptomator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cryptpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/crystal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/csdn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/css.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cssdesignawards.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cssmodules.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/csswizardry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cucumber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cultura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/curl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/curseforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cursor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/customink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cyberdefenders.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cycling74.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cypress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/cytoscapedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/d3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dacia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dailydotdev.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dailymotion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daisyui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dapr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/darkreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/darty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/daserste.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dash0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dashlane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dask.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dassaultsystemes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/databricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datacamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datadog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datadotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datagrip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dataiku.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datastax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datefns.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datev.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datocms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/datto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/davinciresolve.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dazhongdianping.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dazn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dbeaver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dblp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dcentertainment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/debian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/debridlink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/decapcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/decentraland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dedge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepcool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepgram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepmind.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deepnote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deliveroo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delonghi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delphi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/delta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deluge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/denon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dependabot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dependencycheck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/depositphotos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/derspiegel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschebahn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschebank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschepost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschetelekom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deutschewelle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devdotto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devexpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/deviantart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/devrant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dgraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/diagramsdotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dialogflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/diaspora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dictionarydotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digikeyelectronics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/digitalocean.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dinersclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dior.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/directus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discogs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discorddotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discourse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/discover.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/disqus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/disroot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/distrobox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/distrokid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/django.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dji.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dlib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dlna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dmm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docsdotrs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docsify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doctrine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/docusaurus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dodopayments.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dogecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolibarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dolphin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doordash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dota2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dotenv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dotnet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/douban.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doubanread.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dovecot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dovetail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/downdetector.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/doxygen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dpd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dragonframe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/draugiemdotlv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dreamstime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dribbble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drizzle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drooble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dropbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/drupal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dsautomobiles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dtube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ducati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duckdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duckduckgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dungeonsanddragons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dunked.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dunzo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duolingo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/duplicati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dvc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dwavesystems.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dwm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/dynatrace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/e.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/e3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eagle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/easyeda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/easyjet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ebay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ebox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseadoptium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipseide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsejetty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsemosquitto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eclipsevertdotx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ecosia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ecovacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edeka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edgeimpulse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/editorconfig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edotleclerc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/educative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/edx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/egghead.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/egnyte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eightsleep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ejs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elastic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticsearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elasticstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elavon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electron.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electronbuilder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/electronfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elegoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/element.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elementary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elementor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elevenlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eleventy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elgato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elixir.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/elsevier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/embarcadero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/embark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emberdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emirates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/emlakjet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/endeavouros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/enpass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ente.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/enterprisedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/envato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/envoyproxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epicgames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/epson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/equinixmetal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eraser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ericsson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/erlang.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/erpnext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esbuild.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eslgaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eslint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esotericsoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esphome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/espressif.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/esri.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etcd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethereum.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ethiopianairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etihadairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/etsy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/europeanunion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eventstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/evernote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/everydotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/excalidraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exercism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exordo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/exoscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expensify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expertsexchange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/express.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expressdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/expressvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/eyeem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/f1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/f5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebookgaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facebooklive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/faceit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/facepunch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fairphone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/falco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/falcon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fampay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fandango.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fandom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fanfou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fantom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/farcaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fareharbor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/farfetch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastapi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastlane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fastly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fathom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fauna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/favro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fcc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fdroid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fedex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fedora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/feedly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferrari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferrarinv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ferretdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ffmpeg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fiat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fidoalliance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fifa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/figma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/figshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fila.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filament.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filedotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/files.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/filezilla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fillout.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fineco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefish.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fireflyiii.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firefoxbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fireship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/firewalla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/first.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fishaudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fishshell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fitbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fivem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fiverr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fizz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flashforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flask.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flathub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flatpak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flickr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flightaware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flipboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/floatplane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/floorp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluentbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluentd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fluke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flutter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flydotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/flyway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fmod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fnac.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/folium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/folo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fonoma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontawesome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fontforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foobar2000.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foodpanda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ford.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/forgejo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formbricks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formspree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/formstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortinet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortnite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fortran.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fossa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fossilscm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foundryvirtualtabletop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foursquare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/foxtel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fozzy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/framework7.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/franprix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frappe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fraunhofergesellschaft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freebsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freecad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freecodecamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freedesktopdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freelancer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freelancermap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freenas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freenet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freepik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freetube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/freshrss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frigate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fritz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frontendmentor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/frontify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fsharp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fubo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fueler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fugacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fujifilm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fujitsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/furaffinity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/furrynetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fusionauth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/futurelearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/fyle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2a.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/g2g.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/galaxus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamebanana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamedeveloper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamejolt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gameloft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamemaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gamescience.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gandi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/garmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/garudalinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gatling.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gatsby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gdal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geeksforgeeks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/generalelectric.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/generalmotors.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/genius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gentoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geocaching.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/geopandas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gerrit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/getx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghostery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ghostty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gimp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/giphy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/git.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitbook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitconnected.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitextensions.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitforwindows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/github.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubactions.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubcopilot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubpages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/githubsponsors.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitignoredotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitkraken.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitlab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitlfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitpod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gitter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glassdoor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gldotinet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gleam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glitch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/globus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/glovo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gltf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gmail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnometerminal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnubash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuemacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuicecat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnuprivacyguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gnusocial.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/go.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gocd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/godaddy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/godotengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gofundme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gogdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gojek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goldmansachs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/goodreads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/google.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleadmob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleadsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleappsscript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleassistant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleauthenticator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlebigquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlebigtable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecalendar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecampaignmanager360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecardboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechrome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlechronicle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleclassroom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudcomposer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudspanner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecloudstorage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecolab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlecontaineroptimizedos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledataflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledataproc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledisplayandvideo360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googledrive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleearthengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlefonts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleforms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlegemini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlehome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlejules.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlekeep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlelens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemaps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemarketingplatform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemeet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlemessages.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlenearby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlenews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlepay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlephotos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleplay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlepubsub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlescholar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesearchconsole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesheets.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googleslides.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlestreetview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googlesummerofcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletagmanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletasks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/googletv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gotomeeting.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gplv3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gradleplaypublisher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grafana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grammarly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grandfrais.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grapheneos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphite_editor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graphql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grav.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gravatar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/graylog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greasyfork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greatlearning.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greenhouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greensock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/greptimedb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/griddotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gridsome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grocy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/groupme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/groupon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/grunt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gsmarenadotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gstreamer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gtk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guangzhoumetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guilded.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/guitarpro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gulp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gumroad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gumtree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gunicorn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gurobi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gusto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/gutenberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/h2database.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/h3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/habr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackaday.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackernoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackerrank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackmd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hackthebox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handlebarsdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handshake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/handshake_protocol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/happycow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/harbor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/harmonyos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashcat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashicorp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hashnode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haskell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hasura.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hatenabookmark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haveibeenpwned.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/havells.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haxe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/haystack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hbo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hbomax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hcl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hdfcbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headlessui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headphonezone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/headspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hearth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hearthisdotat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hedera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hedgedoc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hellofresh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hellyhansen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helpdesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/helpscout.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hepsiemlak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/here.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hermes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/heroicgameslauncher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/heroui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hetzner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hevy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hexlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hexo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hibernate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hibob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hilton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hiltonhotelsandresorts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hitachi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hive_blockchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hivemq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeadvisor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeassistant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homeassistantcommunitystore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homebrew.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homebridge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homepage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/homify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honeybadger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honeygain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hono.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/honor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hootsuite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hoppscotch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hostinger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotelsdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotjar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hotwire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/houdini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/houzz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hsbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htcvive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/html5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htmlacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/htop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/httpie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/huawei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hubspot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/huggingface.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hugo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/humblebundle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/humhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hungryjacks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/husqvarna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyperskill.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyperx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hypothesis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyprland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/hyundai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/i18next.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/i3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ibeacon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iberia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iced.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iceland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icicibank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icinga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icomoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconfinder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iconjar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icons8.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/icq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ieee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifixit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ifttt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/igdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iheartradio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ikea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iledefrancemobilites.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ilovepdf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagedotsc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagej.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imagetoolbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imessage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imgur.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immersivetranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/immich.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/imou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/improvmx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indeed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indiansuperleague.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indiehackers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/indigo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inductiveautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inertia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infiniti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infinityfree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/influxdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infomaniak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infoq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infosys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/infracost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ingress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inkdrop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inkscape.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inoreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inquirer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/insomnia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/inspire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/insta360.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instacart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instagram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instapaper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instatus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instructables.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/instructure.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intellijidea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interactiondesignfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interactjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/interbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intercom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intermarche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/internetarchive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/internetcomputer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intigriti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/intuit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/invidious.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/invoiceninja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iobroker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ionic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ionos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ipfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/irobot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/isc2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/isro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/issuu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/istio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itchdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iterm2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itunes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/itvx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/iveco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jabber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jaeger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jameson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jamstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/japanairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jasmine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/javascript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jbl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jcb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jdoodle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jeep.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jekyll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jellyfin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jenkins.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetblue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetbrains.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jetpackcompose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jfrog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jfrogpipelines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jhipster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jinja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jira.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jirasoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jitpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jitsi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/johndeere.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/joomla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/joplin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jordan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jouav.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jovian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jpeg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jrgroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsdelivr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsfiddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/json.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsonwebtokens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jsr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juejin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/juke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/julia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/junipernetworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/junit5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/jupyter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/just.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/justeat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/justgiving.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/k3s.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/k6.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaggle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kagi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kahoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kakao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kakaotalk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kalilinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kamailio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kando.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaniko.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/karlsruherverkehrsverbund.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kasasmart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kashflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaspersky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/katana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kaufland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kde.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdeneon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdenlive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kdeplasma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kedro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keenetic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keepachangelog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keepassxc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keeper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keeweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kenmei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kentico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keploy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keras.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keybase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keycdn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keycloak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/keystone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kfc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/khanacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/khronosgroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kibana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kicad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kickstarter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kingstontechnology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kinopoisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kinsta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kirby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kitsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kiwix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klarna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kleinanzeigen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/klook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knexdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/knowledgebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/known.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kodak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kodi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koenigsegg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kofax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kofi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/komoot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/konami.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kong.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kongregate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/konva.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koreader.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kotlin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/koyeb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kred.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/krita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ktm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ktor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuaishou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubernetes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubespray.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kucoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kueski.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kununu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kuula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/kyocera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/labex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/labview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lada.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lamborghini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langchain.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/langgraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/languagetool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lapce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravelhorizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/laravelnova.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lastdotfm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lastpass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/latex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/launchpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lazarus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lazyvim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lbry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leaderprice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leaflet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leagueoflegends.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leanpub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leetcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lefthook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/legacygames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lemmy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lemonsqueezy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lenovo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leptos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lequipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lerna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leroymerlin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/leslibraires.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/less.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/letsencrypt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/letterboxd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/levelsdotfyi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liberadotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liberapay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librariesdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librarything.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficecalc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficedraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficeimpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficemath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libreofficewriter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libretranslate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libretube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/librewolf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/libuv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lichess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lidl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lifx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lightburn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lighthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lightning.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/limesurvey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/line.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lineageos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lining.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linkerd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linkfire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linksys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linktree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linphone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lintcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxcontainers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxmint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxprofessionalinstitute.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/linuxserver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lionair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/liquibase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/listenhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/listmonk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/litecoin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/literal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/litiengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livejournal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livekit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/livewire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/llvm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lmms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lobsters.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/local.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/localsend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/localxpose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lodash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logmein.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logseq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/logstash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/looker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/loopback.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lootcrate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lospec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lotpolishairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lottiefiles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ltspice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lua.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luanti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luau.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lucide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ludwig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lufthansa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lumen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lunacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/luogu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lutris.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lvgl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lydia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/lyft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macpaw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macports.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/macys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magasinsu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/magisk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mahindra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailchimp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maildotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maildotru.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailgun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mailtrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mainwp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/majorleaguehacking.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/make.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/makerbot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/malt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/malwarebytes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mambaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/man.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/manageiq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mangacollec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mangaupdates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/manjaro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mantine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mapillary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maplibre.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maptiler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mariadb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mariadbfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/markdown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marko.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marriott.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/marvelapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maserati.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastercard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastercomfig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mastodon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialdesignicons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/materialformkdocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matillion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matomo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matrix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matterdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mattermost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/matternet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mautic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/max.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maxplanckgesellschaft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maytag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mazda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/maze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mcafee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mcdonalds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mclaren.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdblist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdbook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdnwebdocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mdx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mealie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediafire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediamarkt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediapipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mediatek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medibangpaint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/medusa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meetup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meilisearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meituan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meizu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mendeley.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mentorcruise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mercadopago.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/merck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mercurial.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mermaid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/messenger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metacritic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metafilter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metasploit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/meteor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodelaciudaddemexico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodemadrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/metrodeparis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mewe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mezmo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microdotblog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microeditor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/micropython.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/microstrategy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/midi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/migadu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mihon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mihoyo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mikrotik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/milanote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/milvus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mingww64.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mini.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minimax.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mintlify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/minutemailer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/miraheze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/miro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/misskey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mistralai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mitsubishi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mixcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mixpanel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mlb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mlflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mobx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mobxstatetree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mocha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mockserviceworker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modelcontextprotocol.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modelscope.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modrinth.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/modx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mojeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moleculer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/momenteo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moneygram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongodb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongoose.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mongoosedotws.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monkeytie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monkeytype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monogame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monoprix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/monzo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moodle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moonrepo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moqups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/morrisons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/moscowmetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/motorola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/movistar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mozilla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mpv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mqtt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/msi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/msibusiness.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mtr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mubi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/muller.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mullvad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/multisim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mumble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/muo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mural.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/musicbrainz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mxlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myanimelist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myob.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myshows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/myspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/mysql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/n26.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/n8n.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namebase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namecheap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namemc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namesilo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/namuwiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nanostores.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/napster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nasa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nationalgrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nationalrail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nativescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/natsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/naver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nbb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nbc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ndr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/near.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nebula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nederlandsespoorwegen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neo4j.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neovim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neptune.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nestjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netbsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netcup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netdata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neteasecloudmusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netflix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netgear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netlify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nette.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/netto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/neutralinojs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newbalance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newegg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newgrounds.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newjapanprowrestling.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newpipe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newrelic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/newyorktimes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nexon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextbike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextbilliondotai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdns.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdoor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nextra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nfc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nfcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nginx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nginxproxymanager.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ngrok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ngrx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nhl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nhost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nicehash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/niconico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nike.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nikon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nissan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nixos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nobaralinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodebb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodegui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodemon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nodered.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nokia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nomad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nordicsemiconductor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nordvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/normalizedotcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/norwegian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/note.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notebooklm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notepadplusplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/notist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nounproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/novu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/now.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/npm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nrwl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nsis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ntfy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nubank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nucleo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuget.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuke.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/numba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/numpy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nunjucks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nushell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nutanix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nuxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nvidia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nvm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nxp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/nzxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/o2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/observable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obsidian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obsstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/obtainium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ocaml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oclc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oclif.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octanerender.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octave.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octobercms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octoprint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/octopusdeploy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oculus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odnoklassniki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odoo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/odysee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ohdear.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okcupid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/okx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ollama.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/omadacloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oneplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onlyfans.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onlyoffice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onnx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/onstar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/open3d.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openaccess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openaigym.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openapiinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbadges.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbsd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openbugbounty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencollective.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencontainersinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencritic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opencv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openfaas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opengl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openhab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openjdk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openjsfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openlayers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openmediavault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openmined.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opennebula.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openrouter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openscad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensourcehardware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensourceinitiative.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openssl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openstreetmap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opensuse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentelemetry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opentofu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openwrt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openzeppelin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/openzfs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opera.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/operagx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opnsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oppo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opsgenie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/opslevel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/optimism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/optuna.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/orange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/orcid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oreilly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/org.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/organicmaps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/origin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osano.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osgeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oshkosh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osmand.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osmc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/osu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/otto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/outline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/overcast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/overleaf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ovh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/owasp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/owncloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oxc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oxygen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/oyo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/p5dotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packagist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/packt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddlepaddle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paddypower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/padlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagekit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagerduty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagespeedinsights.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pagseguro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/palantir.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paloaltonetworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paloaltosoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/panasonic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pandas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pandora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pantheon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperlessngx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperspace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paperswithcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paradoxinteractive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paramountplus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paritysubstrate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/parrotsecurity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/parsedotly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/passbolt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/passport.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pastebin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/patreon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payback.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paychex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payhip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payloadcms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/payoneer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paypal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paysafe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/paytm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pcgamingwiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pdm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pdq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peakdesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pearson.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peerlist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peertube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pegasusairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pelican.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peloton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/penny.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/penpot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/percy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perforce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/perplexity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/persistent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/personio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/petsathome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/peugeot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pexels.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pfsense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phabricator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/philipshue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phoenixframework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phonepe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phosphoricons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photobucket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photocrowd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/photopea.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/php.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpbb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpmyadmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/phpstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piaggiogroup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piapro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picardsurgeles.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picartodottv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picnic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picrew.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picsart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/picxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pihole.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pimcore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinboard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinetwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pingdom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pinterest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pioneerdj.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piped.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pipx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pivotaltracker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/piwigo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixabay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixelfed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixiv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pixlr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pkgsrc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plane.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/planet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/planetscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plangrid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platformdotsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platformio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/platzi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plausibleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playcanvas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playerdotme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playerfm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation4.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstation5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstationportable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/playstationvita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pleroma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plotly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pluralsight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/plurk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pm2.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pnpm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pocketbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pocketcasts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podcastaddict.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podcastindex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/podman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poetry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polars.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polestar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polkadot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/poly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polygon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polymerproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/polywork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pomerium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pond5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/popos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/porkbun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/porsche.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portableappsdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portainer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/portswigger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/posit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postgresql.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/posthog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postiz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/postmates.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/powers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prdotco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/preact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/precommit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prefect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/premid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/premierleague.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prepbytes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prestashop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/presto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prettier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pretzel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prevention.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prezi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primefaces.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primeng.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primereact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/primevue.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/printables.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prisma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prismic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/privatedivision.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/privateinternetaccess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/probot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processingfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/processwire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/producthunt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/progate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/progress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prometheus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pronounsdotpage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/prosieben.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proteus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protocolsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protodotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protoncalendar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protondb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protondrive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protonmail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protonvpn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/protractor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/proxmox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pterodactyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pubg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/publons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pubmed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pug.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pulumi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puppet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/puppeteer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purgecss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/purism.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pushbullet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pusher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pwa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pycharm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pycqa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pydantic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pypi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pypy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyscaffold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pysyft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pytest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/python.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pythonanywhere.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pytorch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/pyup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qantas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qatarairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qbittorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qemu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qgis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiita.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiskit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qiwi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qlik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qlty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qmk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qnap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qodo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quad9.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualcomm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualtrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qualys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quantcast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quantconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quarkus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quarto.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quasar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qubesos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quickbooks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicklook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicktime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quicktype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quizlet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/quora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwik.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qwiklabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/qzone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/r.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/r3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rabbitmq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/racket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radiofrance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radixui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/radstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/railway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rainmeter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rainyun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rakuten.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rakutenkobo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rancher.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rapid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rarible.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rasa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raspberrypi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ratatui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ravelry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ray.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raycast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/raylib.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/razer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/razorpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rclone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/react.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactbootstrap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reacthookform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactiveresume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactivex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactquery.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reactrouter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reacttable.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readdotcv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/readthedocs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reason.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reasonstudios.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/recoil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/red.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redbubble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redbull.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redcandlegames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reddit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redhat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redhatopenshift.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redmine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redsys.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reduxsaga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/redwoodjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reebok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/refine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/refinedgithub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rekaui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/relay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/relianceindustrieslimited.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remedyentertainment.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/remix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/removedotbg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/render.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renovate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renpy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/renren.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/replicate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/replit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/republicofgamers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rescuetime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/researchgate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resharper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/resurrectionremixos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retroachievements.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retroarch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/retropie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revanced.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revealdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revenuecat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/reverbnation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revoltdotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/revolut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rewe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rezgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rhinoceros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rich.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rider.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rimacautomobili.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riotgames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ripple.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riscv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/riseup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ritzcarlton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roadmapdotsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roamresearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robinhood.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roblox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robloxstudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roboflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/robotframework.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocketdotchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rocksdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockstargames.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockwellautomation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rockylinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roku.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roll20.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollbar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rolldown.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollsroyce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rollupdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/root.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roots.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootsbedrock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rootssage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ros.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rossmann.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rotaryinternational.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rottentomatoes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/roundcube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rsocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rstudioide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtlzwei.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rtm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubocop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ruby.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubygems.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubymine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubyonrails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rubysinatra.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ruff.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rumahweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rumble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rundeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runkeeper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runkit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/runrundotit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rust.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rustdesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rxdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ryanair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/rye.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/s7airlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sabanci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/safari.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sagemath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sahibinden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sailfishos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sailsdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/salla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saltproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsclub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsung.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/samsungpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanfranciscomunicipalrailway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sanity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saopaulometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sartorius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sass.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sat1.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/satellite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saturn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saucelabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/saudia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scalar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scaleway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scania.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/schneiderelectric.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scikitlearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scilab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scipy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scopus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scpfoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrapbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrapy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scratch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/screencastify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrimba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrollreveal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrumalliance.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scrutinizerci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/scylladb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seafile.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seagate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/searxng.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/seatgeek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/securityscorecard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sefaria.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/selenium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sellfy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticrelease.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticscholar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticuireact.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semanticweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semaphoreci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semrush.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/semver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sencha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sennheiser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sensu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sentry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sepa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sequelize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/servbay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/serverfault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/serverless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/session.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sessionize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/setapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/setuptools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sfml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shadcnui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shadow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shanghaimetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sharex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sharp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shazam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shelly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shenzhenmetro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shieldsdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shikimori.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shopware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/shortcut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showtime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/showwcase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sidekiq.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sidequest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/siemens.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sifive.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/signal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/silverairways.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/similarweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simkl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simpleanalytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simpleicons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplelocalize.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplelogin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplenote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/simplex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sinaweibo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/singaporeairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/singlestore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sitecore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sitepoint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/siyuan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skaffold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skeleton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketchfab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sketchup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skillshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skoda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sky.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/skypack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slackware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slashdot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slickpic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slides.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slideshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/slint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smart.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smartthings.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smashingmagazine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smoothcomp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smrt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/smugmug.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapcraft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snapdragon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sncf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snort.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snowflake.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snowpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/snyk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socialblade.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/society6.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/socketdotio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/softcatala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/softpedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sogou.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solidity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sololearn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/solus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubecloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubeforide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarqubeserver.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonarr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonatype.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/songkick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/songoda.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonicwall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sonos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soriana.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soundcharts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/soundcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourceengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourceforge.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourcehut.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sourcetree.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/southwestairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacemacs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spaceship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spacy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkasse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkfun.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sparkpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spdx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speakerdeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spectrum.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speedtest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/speedypage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sphinx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spigotmc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spinnaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/splunk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spoj.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spond.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spotify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spotlight.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spreadshirt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spreaker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spring_creators.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/springboot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/springsecurity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/spyderide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sqlalchemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sqlite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/square.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/squareenix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/squarespace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/srgssr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ssrn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sst.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackblitz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackedit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackexchange.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackhawk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackoverflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stackshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stadia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/staffbase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stagetimer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/standardjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/standardresume.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starbucks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stardock.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starlingbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starship.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startdotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startpage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/startrek.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/starz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statamic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statista.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statuspage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/statuspal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamdeck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steamworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steelseries.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steem.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steemit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/steinberg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stellar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stencil.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stencyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stimulus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stmicroelectronics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stockx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stopstalk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/storyblok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/storybook.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strapi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strava.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamlabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamlit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/streamrunners.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stremio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stripe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/strongswan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stryker.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stubhub.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/studio3t.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/styledcomponents.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stylelint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/styleshare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/stylus.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subaru.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sublimetext.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/substack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subtitleedit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/subversion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suckless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suitest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sumologic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suno.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sunrise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supercrease.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/supermicro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/superuser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surfshark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surrealdb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/surveymonkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/suzuki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svelte.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgdotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/svgtrace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swagger.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swarm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sway.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swift.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swiggy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swiper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swisscows.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/swr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symantec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symbolab.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symfony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/symphony.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/sympy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/syncthing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/synology.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/system76.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tabelog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tablecheck.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tacobell.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tado.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taichigraphics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taichilang.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tailscale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tailwindcss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taipy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taketwointeractivesoftware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talenthouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/talos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tamiya.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tampermonkey.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tanstack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taobao.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tapas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/target.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tarom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/task.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tasmota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tauri.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/taxbuzz.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tcs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamcity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamspeak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teamviewer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/techcrunch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ted.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teepublic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teespring.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tekton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tele5.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telefonica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telegram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telegraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telenor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/telequebec.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/temporal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tensorflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teradata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/teratail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/termius.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/terraform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tesco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tesla.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testcafe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testinglibrary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/testrail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tether.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/textpattern.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/textual.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tga.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thangs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thanos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thealgorithms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theboringcompany.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theconversation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thefinals.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theguardian.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theirishtimes.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themighty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themodelsresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/themoviedatabase.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thenorthface.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theodinproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theplanetarysociety.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theregister.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thesoundsresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thespritersresource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thestorygraph.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thewashingtonpost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/theweatherchannel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thingiverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thinkpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thirdweb.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threadless.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threads.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/threema.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thumbtack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thunderbird.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thunderstore.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thurgauerkantonalbank.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/thymeleaf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ticketmaster.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ticktick.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tidal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tiddlywiki.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tide.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tidyverse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tietoevry.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tiktok.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tildapublishing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tile.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/timescale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tina.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tindie.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinkercad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinygrad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tinyletter.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tistory.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tldraw.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tmux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/todoist.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toggl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toggltrack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tokio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tokyometro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toll.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tomorrowland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tomtom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ton.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/topcoder.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/topdotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toptal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/torproject.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toshiba.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/totvs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tourbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/toyota.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tplink.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tqdm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traccar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tradingview.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traefikmesh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/traefikproxy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trailforks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trainerroad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trakt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transifex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transmission.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transportforireland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/transportforlondon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/travisci.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/treehouse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trello.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trendmicro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tresorit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/treyarch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tricentis.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trilium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/triller.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trillertv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trimble.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tripadvisor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tripdotcom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trivago.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trivy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trove.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trpc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/truenas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trueup.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trulia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trustedshops.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/trustpilot.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tryhackme.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tryitonline.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tsnode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tubi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tui.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tumblr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turbo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turborepo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turbosquid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turkishairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/turso.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tuta.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tuxedocomputers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tv4play.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/tvtime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twenty.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twinkly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twinmotion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/twitch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typeform.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typeorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typescript.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typo3.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/typst.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubereats.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubiquiti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubisoft.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ublockorigin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ubuntumate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udacity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udemy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/udotsdotnews.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ufc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uikit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uipath.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ukca.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ultralytics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ulule.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umami.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umbraco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/umbrel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unacademy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/underarmour.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/underscoredotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/undertale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unicode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unilever.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uniqlo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uniqlo_ja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unitedairlines.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unitednations.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unlicense.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unocss.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unpkg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unraid.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unrealengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unsplash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/unstop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/untappd.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uphold.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uplabs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upptime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ups.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upstash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uptimekuma.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/upwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uservoice.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/usps.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/utorrent.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/uv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v0.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v2ex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/v8.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vaadin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vagrant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vala.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/valorant.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/valve.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vanillaextract.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vapor.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vault.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vaultwarden.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vauxhall.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vbulletin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectary.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectorlogozone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vectorworks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veeam.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veed.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veepee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vega.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vegas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/velocity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/velog.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vencord.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/venmo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vercel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/verdaccio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/veritas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/verizon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vespa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vestel.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vexxhost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vfairs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viadeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viaplay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viber.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/viblo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/victoriametrics.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/victronenergy.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vikunja.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vimeo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vimeolivestream.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vinted.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virgin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virginatlantic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virginmedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virtualbox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/virustotal.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visa.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visualparadigm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/visx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vite.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitepress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitess.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vitest.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivaldi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivawallet.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivino.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivint.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vivo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vlcmediaplayer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vmware.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vodafone.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voelkner.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voidlinux.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/voipdotms.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/volkswagen.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/volvo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vonage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vorondesign.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vowpalwabbit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vox.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vrchat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vsco.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vscodium.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vtex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vuedotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vuetify.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vueuse.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vulkan.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vultr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/vyond.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/w3schools.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wacom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wagmi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wagtail.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wails.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wakatime.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/walkman.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wallabag.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/walletconnect.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wantedly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wappalyzer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/warp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasabi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasmcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wasmer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/watchtower.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wattpad.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wayland.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/waze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wazirx.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wearos.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weasyl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/web3dotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webassembly.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webauthn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webawesome.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webcomponentsdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webdotde.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webdriverio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webex.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webgl.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webgpu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weblate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webmin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webmoney.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webpack.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webrtc.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webstorm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webtoon.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/webtrees.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wechat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wegame.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weightsandbiases.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/welcometothejungle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wellfound.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wellsfargo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wemo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/weread.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/westernunion.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wetransfer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wezterm.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wgpu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/what3words.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/whatsapp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wheniwork.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikibooks.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidata.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidotgg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikidotjs.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikimediacommons.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikimediafoundation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikipedia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikiquote.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikisource.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikiversity.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wikivoyage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/winamp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/windsurf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wipro.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wire.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wireguard.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wireshark.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wish.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wistia.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wix.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wizzair.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolfram.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolframlanguage.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wolframmathematica.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wondershare.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wondersharefilmora.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/woo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/woocommerce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wordpress.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/workplace.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/worldhealthorganization.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wpengine.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wpexplorer.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wprocket.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/writedotas.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wwe.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wwise.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wxt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wykop.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/wyze.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/x.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xampp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xcode.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xdadevelopers.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xdotorg.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xendit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xfce.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xiaohongshu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xiaomi.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xing.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xmpp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xrp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xsplit.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xstate.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xubuntu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/xyflow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yaak.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yabai.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yale.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yamahacorporation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yamahamotorcorporation.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yaml.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yandexcloud.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yarn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ycombinator.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yelp.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yeti.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yii.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yoast.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yolo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youhodler.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtube.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubegaming.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubekids.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubemusic.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubeshorts.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubestudio.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/youtubetv.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yubico.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/yunohost.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zabka.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zaim.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zalando.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zalo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zap.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zapier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zara.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zazzle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zcash.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zcool.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zdf.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zebpay.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zebratechnologies.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zedindustries.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zelle.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenbrowser.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zend.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zendesk.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenn.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zenodo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zensar.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zerodha.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zerotier.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zettlr.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zhihu.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zig.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zigbee.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zigbee2mqtt.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/ziggo.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zilch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zillow.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zincsearch.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zingat.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zod.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoho.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoiper.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zola.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zomato.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zoom.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zorin.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zotero.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zsh.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zulip.svg +1 -0
- docsforge/themes/material/templates/.icons/simple/zyte.svg +1 -0
- docsforge/themes/material/templates/404.html +7 -0
- docsforge/themes/material/templates/__init__.py +70 -0
- docsforge/themes/material/templates/assets/images/favicon.png +0 -0
- docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js +16 -0
- docsforge/themes/material/templates/assets/javascripts/bundle.79ae519e.min.js.map +7 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ar.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.da.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.de.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.du.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.el.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.es.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fi.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.fr.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.he.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hu.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.hy.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.it.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ja.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.jp.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.kn.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ko.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.multi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.nl.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.no.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.pt.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ro.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ru.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sa.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.sv.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.ta.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.te.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.th.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.tr.min.js +18 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.vi.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/min/lunr.zh.min.js +1 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/tinyseg.js +206 -0
- docsforge/themes/material/templates/assets/javascripts/lunr/wordcut.js +6708 -0
- docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js +42 -0
- docsforge/themes/material/templates/assets/javascripts/workers/search.2c215733.min.js.map +7 -0
- docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css +1 -0
- docsforge/themes/material/templates/assets/stylesheets/main.484c7ddc.min.css.map +1 -0
- docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css +1 -0
- docsforge/themes/material/templates/assets/stylesheets/palette.ab4e12ef.min.css.map +1 -0
- docsforge/themes/material/templates/base.html +259 -0
- docsforge/themes/material/templates/blog-post.html +138 -0
- docsforge/themes/material/templates/blog.html +21 -0
- docsforge/themes/material/templates/fragments/tags/default/listing.html +19 -0
- docsforge/themes/material/templates/fragments/tags/default/tag.html +16 -0
- docsforge/themes/material/templates/main.html +4 -0
- docsforge/themes/material/templates/mkdocs_theme.yml +50 -0
- docsforge/themes/material/templates/partials/actions.html +22 -0
- docsforge/themes/material/templates/partials/alternate.html +22 -0
- docsforge/themes/material/templates/partials/comments.html +3 -0
- docsforge/themes/material/templates/partials/consent.html +71 -0
- docsforge/themes/material/templates/partials/content.html +12 -0
- docsforge/themes/material/templates/partials/copyright.html +16 -0
- docsforge/themes/material/templates/partials/feedback.html +47 -0
- docsforge/themes/material/templates/partials/footer.html +56 -0
- docsforge/themes/material/templates/partials/header.html +69 -0
- docsforge/themes/material/templates/partials/icons.html +52 -0
- docsforge/themes/material/templates/partials/integrations/analytics/google.html +7 -0
- docsforge/themes/material/templates/partials/integrations/analytics.html +14 -0
- docsforge/themes/material/templates/partials/javascripts/announce.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/base.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/consent.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/content.html +7 -0
- docsforge/themes/material/templates/partials/javascripts/outdated.html +4 -0
- docsforge/themes/material/templates/partials/javascripts/palette.html +4 -0
- docsforge/themes/material/templates/partials/language.html +6 -0
- docsforge/themes/material/templates/partials/languages/af.html +56 -0
- docsforge/themes/material/templates/partials/languages/ar.html +57 -0
- docsforge/themes/material/templates/partials/languages/az.html +55 -0
- docsforge/themes/material/templates/partials/languages/be.html +57 -0
- docsforge/themes/material/templates/partials/languages/bg.html +56 -0
- docsforge/themes/material/templates/partials/languages/bn.html +56 -0
- docsforge/themes/material/templates/partials/languages/ca.html +55 -0
- docsforge/themes/material/templates/partials/languages/cs.html +55 -0
- docsforge/themes/material/templates/partials/languages/cy.html +55 -0
- docsforge/themes/material/templates/partials/languages/da.html +56 -0
- docsforge/themes/material/templates/partials/languages/de.html +57 -0
- docsforge/themes/material/templates/partials/languages/el.html +55 -0
- docsforge/themes/material/templates/partials/languages/en.html +60 -0
- docsforge/themes/material/templates/partials/languages/eo.html +56 -0
- docsforge/themes/material/templates/partials/languages/es.html +56 -0
- docsforge/themes/material/templates/partials/languages/et.html +55 -0
- docsforge/themes/material/templates/partials/languages/eu.html +55 -0
- docsforge/themes/material/templates/partials/languages/fa.html +57 -0
- docsforge/themes/material/templates/partials/languages/fi.html +56 -0
- docsforge/themes/material/templates/partials/languages/fr.html +56 -0
- docsforge/themes/material/templates/partials/languages/gl.html +56 -0
- docsforge/themes/material/templates/partials/languages/he.html +57 -0
- docsforge/themes/material/templates/partials/languages/hi.html +56 -0
- docsforge/themes/material/templates/partials/languages/hr.html +55 -0
- docsforge/themes/material/templates/partials/languages/hu.html +56 -0
- docsforge/themes/material/templates/partials/languages/hy.html +56 -0
- docsforge/themes/material/templates/partials/languages/id.html +56 -0
- docsforge/themes/material/templates/partials/languages/is.html +55 -0
- docsforge/themes/material/templates/partials/languages/it.html +56 -0
- docsforge/themes/material/templates/partials/languages/ja.html +58 -0
- docsforge/themes/material/templates/partials/languages/ka.html +48 -0
- docsforge/themes/material/templates/partials/languages/kn.html +55 -0
- docsforge/themes/material/templates/partials/languages/ko.html +56 -0
- docsforge/themes/material/templates/partials/languages/ku-IQ.html +44 -0
- docsforge/themes/material/templates/partials/languages/lb.html +56 -0
- docsforge/themes/material/templates/partials/languages/lt.html +56 -0
- docsforge/themes/material/templates/partials/languages/lv.html +55 -0
- docsforge/themes/material/templates/partials/languages/mk.html +56 -0
- docsforge/themes/material/templates/partials/languages/mn.html +55 -0
- docsforge/themes/material/templates/partials/languages/ms.html +55 -0
- docsforge/themes/material/templates/partials/languages/my.html +56 -0
- docsforge/themes/material/templates/partials/languages/nb.html +56 -0
- docsforge/themes/material/templates/partials/languages/nl.html +56 -0
- docsforge/themes/material/templates/partials/languages/nn.html +56 -0
- docsforge/themes/material/templates/partials/languages/pl.html +56 -0
- docsforge/themes/material/templates/partials/languages/pt-BR.html +56 -0
- docsforge/themes/material/templates/partials/languages/pt.html +56 -0
- docsforge/themes/material/templates/partials/languages/ro.html +56 -0
- docsforge/themes/material/templates/partials/languages/ru.html +56 -0
- docsforge/themes/material/templates/partials/languages/sa.html +55 -0
- docsforge/themes/material/templates/partials/languages/sh.html +55 -0
- docsforge/themes/material/templates/partials/languages/si.html +31 -0
- docsforge/themes/material/templates/partials/languages/sk.html +55 -0
- docsforge/themes/material/templates/partials/languages/sl.html +56 -0
- docsforge/themes/material/templates/partials/languages/sq.html +56 -0
- docsforge/themes/material/templates/partials/languages/sr.html +55 -0
- docsforge/themes/material/templates/partials/languages/sv.html +56 -0
- docsforge/themes/material/templates/partials/languages/ta.html +56 -0
- docsforge/themes/material/templates/partials/languages/te.html +55 -0
- docsforge/themes/material/templates/partials/languages/th.html +56 -0
- docsforge/themes/material/templates/partials/languages/tl.html +52 -0
- docsforge/themes/material/templates/partials/languages/tr.html +56 -0
- docsforge/themes/material/templates/partials/languages/uk.html +55 -0
- docsforge/themes/material/templates/partials/languages/ur.html +57 -0
- docsforge/themes/material/templates/partials/languages/uz.html +56 -0
- docsforge/themes/material/templates/partials/languages/vi.html +56 -0
- docsforge/themes/material/templates/partials/languages/zh-Hant.html +57 -0
- docsforge/themes/material/templates/partials/languages/zh-TW.html +57 -0
- docsforge/themes/material/templates/partials/languages/zh.html +57 -0
- docsforge/themes/material/templates/partials/logo.html +9 -0
- docsforge/themes/material/templates/partials/nav-item.html +170 -0
- docsforge/themes/material/templates/partials/nav.html +30 -0
- docsforge/themes/material/templates/partials/pagination.html +20 -0
- docsforge/themes/material/templates/partials/palette.html +16 -0
- docsforge/themes/material/templates/partials/path-item.html +29 -0
- docsforge/themes/material/templates/partials/path.html +23 -0
- docsforge/themes/material/templates/partials/post.html +68 -0
- docsforge/themes/material/templates/partials/progress.html +4 -0
- docsforge/themes/material/templates/partials/search.html +42 -0
- docsforge/themes/material/templates/partials/social.html +27 -0
- docsforge/themes/material/templates/partials/source-file.html +110 -0
- docsforge/themes/material/templates/partials/source.html +12 -0
- docsforge/themes/material/templates/partials/tabs-item.html +37 -0
- docsforge/themes/material/templates/partials/tabs.html +13 -0
- docsforge/themes/material/templates/partials/tags.html +31 -0
- docsforge/themes/material/templates/partials/toc-item.html +25 -0
- docsforge/themes/material/templates/partials/toc.html +25 -0
- docsforge/themes/material/templates/partials/top.html +8 -0
- docsforge/themes/material/templates/redirect.html +16 -0
- docsforge/utilities/__init__.py +30 -0
- docsforge/utilities/filter/__init__.py +135 -0
- docsforge/utilities/filter/config.py +58 -0
- docsforge/utils/__init__.py +403 -0
- docsforge/utils/babel_stub.py +29 -0
- docsforge/utils/cache.py +75 -0
- docsforge/utils/filters.py +1 -0
- docsforge/utils/meta.py +102 -0
- docsforge/utils/rendering.py +104 -0
- docsforge/utils/templates.py +57 -0
- docsforge/utils/yaml.py +165 -0
- docsforge-9.7.6.dist-info/METADATA +203 -0
- docsforge-9.7.6.dist-info/RECORD +14911 -0
- docsforge-9.7.6.dist-info/WHEEL +4 -0
- docsforge-9.7.6.dist-info/entry_points.txt +56 -0
- docsforge-9.7.6.dist-info/licenses/LICENSE +17 -0
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
function getSearchTerm() {
|
|
2
|
+
var sPageURL = window.location.search.substring(1);
|
|
3
|
+
var sURLVariables = sPageURL.split('&');
|
|
4
|
+
for (var i = 0; i < sURLVariables.length; i++) {
|
|
5
|
+
var sParameterName = sURLVariables[i].split('=');
|
|
6
|
+
if (sParameterName[0] == 'q') {
|
|
7
|
+
return sParameterName[1];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
function applyTopPadding() {
|
|
13
|
+
// Update various absolute positions to match where the main container
|
|
14
|
+
// starts. This is necessary for handling multi-line nav headers, since
|
|
15
|
+
// that pushes the main container down.
|
|
16
|
+
var container = document.querySelector('body > .container');
|
|
17
|
+
var offset = container.offsetTop;
|
|
18
|
+
|
|
19
|
+
document.documentElement.style.scrollPaddingTop = offset + 'px';
|
|
20
|
+
document.querySelectorAll('.bs-sidebar.affix').forEach(function(sidebar) {
|
|
21
|
+
sidebar.style.top = offset + 'px';
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
document.addEventListener("DOMContentLoaded", function () {
|
|
26
|
+
var search_term = getSearchTerm();
|
|
27
|
+
var search_modal = new bootstrap.Modal(document.getElementById('mkdocs_search_modal'));
|
|
28
|
+
var keyboard_modal = new bootstrap.Modal(document.getElementById('mkdocs_keyboard_modal'));
|
|
29
|
+
|
|
30
|
+
if (search_term) {
|
|
31
|
+
search_modal.show();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// make sure search input gets autofocus every time modal opens.
|
|
35
|
+
document.getElementById('mkdocs_search_modal').addEventListener('shown.bs.modal', function() {
|
|
36
|
+
document.getElementById('mkdocs-search-query').focus();
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
// Close search modal when result is selected
|
|
40
|
+
// The links get added later so listen to parent
|
|
41
|
+
document.getElementById('mkdocs-search-results').addEventListener('click', function(e) {
|
|
42
|
+
if (e.target.tagName === 'A') {
|
|
43
|
+
search_modal.hide();
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
// Populate keyboard modal with proper Keys
|
|
48
|
+
document.querySelector('.help.shortcut kbd').innerHTML = keyCodes[shortcuts.help];
|
|
49
|
+
document.querySelector('.prev.shortcut kbd').innerHTML = keyCodes[shortcuts.previous];
|
|
50
|
+
document.querySelector('.next.shortcut kbd').innerHTML = keyCodes[shortcuts.next];
|
|
51
|
+
document.querySelector('.search.shortcut kbd').innerHTML = keyCodes[shortcuts.search];
|
|
52
|
+
|
|
53
|
+
// Keyboard navigation
|
|
54
|
+
document.addEventListener("keydown", function(e) {
|
|
55
|
+
if (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA') return true;
|
|
56
|
+
var key = e.which || e.keyCode || window.event && window.event.keyCode;
|
|
57
|
+
var page;
|
|
58
|
+
switch (key) {
|
|
59
|
+
case shortcuts.next:
|
|
60
|
+
page = document.querySelector('.navbar a[rel="next"]');
|
|
61
|
+
break;
|
|
62
|
+
case shortcuts.previous:
|
|
63
|
+
page = document.querySelector('.navbar a[rel="prev"]');
|
|
64
|
+
break;
|
|
65
|
+
case shortcuts.search:
|
|
66
|
+
e.preventDefault();
|
|
67
|
+
keyboard_modal.hide();
|
|
68
|
+
search_modal.show();
|
|
69
|
+
document.getElementById('mkdocs-search-query').focus();
|
|
70
|
+
break;
|
|
71
|
+
case shortcuts.help:
|
|
72
|
+
search_modal.hide();
|
|
73
|
+
keyboard_modal.show();
|
|
74
|
+
break;
|
|
75
|
+
default: break;
|
|
76
|
+
}
|
|
77
|
+
if (page && page.hasAttribute('href')) {
|
|
78
|
+
keyboard_modal.hide();
|
|
79
|
+
window.location.href = page.getAttribute('href');
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
document.querySelectorAll('table').forEach(function(table) {
|
|
84
|
+
table.classList.add('table', 'table-striped', 'table-hover');
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
function showInnerDropdown(item) {
|
|
88
|
+
var popup = item.nextElementSibling;
|
|
89
|
+
popup.classList.add('show');
|
|
90
|
+
item.classList.add('open');
|
|
91
|
+
|
|
92
|
+
// First, close any sibling dropdowns.
|
|
93
|
+
var container = item.parentElement.parentElement;
|
|
94
|
+
container.querySelectorAll(':scope > .dropdown-submenu > a').forEach(function(el) {
|
|
95
|
+
if (el !== item) {
|
|
96
|
+
hideInnerDropdown(el);
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
var popupMargin = 10;
|
|
101
|
+
var maxBottom = window.innerHeight - popupMargin;
|
|
102
|
+
var bounds = item.getBoundingClientRect();
|
|
103
|
+
|
|
104
|
+
popup.style.left = bounds.right + 'px';
|
|
105
|
+
if (bounds.top + popup.clientHeight > maxBottom &&
|
|
106
|
+
bounds.top > window.innerHeight / 2) {
|
|
107
|
+
popup.style.top = (bounds.bottom - popup.clientHeight) + 'px';
|
|
108
|
+
popup.style.maxHeight = (bounds.bottom - popupMargin) + 'px';
|
|
109
|
+
} else {
|
|
110
|
+
popup.style.top = bounds.top + 'px';
|
|
111
|
+
popup.style.maxHeight = (maxBottom - bounds.top) + 'px';
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function hideInnerDropdown(item) {
|
|
116
|
+
var popup = item.nextElementSibling;
|
|
117
|
+
popup.classList.remove('show');
|
|
118
|
+
item.classList.remove('open');
|
|
119
|
+
|
|
120
|
+
popup.scrollTop = 0;
|
|
121
|
+
var menu = popup.querySelector('.dropdown-menu');
|
|
122
|
+
if (menu) {
|
|
123
|
+
menu.scrollTop = 0;
|
|
124
|
+
}
|
|
125
|
+
var dropdown = popup.querySelector('.dropdown-submenu > a');
|
|
126
|
+
if (dropdown) {
|
|
127
|
+
dropdown.classList.remove('open');
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
document.querySelectorAll('.dropdown-submenu > a').forEach(function(item) {
|
|
132
|
+
item.addEventListener('click', function(e) {
|
|
133
|
+
if (item.nextElementSibling.classList.contains('show')) {
|
|
134
|
+
hideInnerDropdown(item);
|
|
135
|
+
} else {
|
|
136
|
+
showInnerDropdown(item);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
e.stopPropagation();
|
|
140
|
+
e.preventDefault();
|
|
141
|
+
});
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
document.querySelectorAll('.dropdown-menu').forEach(function(menu) {
|
|
145
|
+
menu.parentElement.addEventListener('hide.bs.dropdown', function() {
|
|
146
|
+
menu.scrollTop = 0;
|
|
147
|
+
var dropdown = menu.querySelector('.dropdown-submenu > a');
|
|
148
|
+
if (dropdown) {
|
|
149
|
+
dropdown.classList.remove('open');
|
|
150
|
+
}
|
|
151
|
+
menu.querySelectorAll('.dropdown-menu .dropdown-menu').forEach(function(submenu) {
|
|
152
|
+
submenu.classList.remove('show');
|
|
153
|
+
});
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
applyTopPadding();
|
|
158
|
+
});
|
|
159
|
+
|
|
160
|
+
window.addEventListener('resize', applyTopPadding);
|
|
161
|
+
|
|
162
|
+
var scrollSpy = new bootstrap.ScrollSpy(document.body, {
|
|
163
|
+
target: '.bs-sidebar'
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
/* Prevent disabled links from causing a page reload */
|
|
167
|
+
document.querySelectorAll("li.disabled a").forEach(function(item) {
|
|
168
|
+
item.addEventListener("click", function(event) {
|
|
169
|
+
event.preventDefault();
|
|
170
|
+
});
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
// See https://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes
|
|
174
|
+
// We only list common keys below. Obscure keys are omitted and their use is discouraged.
|
|
175
|
+
var keyCodes = {
|
|
176
|
+
8: 'backspace',
|
|
177
|
+
9: 'tab',
|
|
178
|
+
13: 'enter',
|
|
179
|
+
16: 'shift',
|
|
180
|
+
17: 'ctrl',
|
|
181
|
+
18: 'alt',
|
|
182
|
+
19: 'pause/break',
|
|
183
|
+
20: 'caps lock',
|
|
184
|
+
27: 'escape',
|
|
185
|
+
32: 'spacebar',
|
|
186
|
+
33: 'page up',
|
|
187
|
+
34: 'page down',
|
|
188
|
+
35: 'end',
|
|
189
|
+
36: 'home',
|
|
190
|
+
37: '←',
|
|
191
|
+
38: '↑',
|
|
192
|
+
39: '→',
|
|
193
|
+
40: '↓',
|
|
194
|
+
45: 'insert',
|
|
195
|
+
46: 'delete',
|
|
196
|
+
48: '0',
|
|
197
|
+
49: '1',
|
|
198
|
+
50: '2',
|
|
199
|
+
51: '3',
|
|
200
|
+
52: '4',
|
|
201
|
+
53: '5',
|
|
202
|
+
54: '6',
|
|
203
|
+
55: '7',
|
|
204
|
+
56: '8',
|
|
205
|
+
57: '9',
|
|
206
|
+
65: 'a',
|
|
207
|
+
66: 'b',
|
|
208
|
+
67: 'c',
|
|
209
|
+
68: 'd',
|
|
210
|
+
69: 'e',
|
|
211
|
+
70: 'f',
|
|
212
|
+
71: 'g',
|
|
213
|
+
72: 'h',
|
|
214
|
+
73: 'i',
|
|
215
|
+
74: 'j',
|
|
216
|
+
75: 'k',
|
|
217
|
+
76: 'l',
|
|
218
|
+
77: 'm',
|
|
219
|
+
78: 'n',
|
|
220
|
+
79: 'o',
|
|
221
|
+
80: 'p',
|
|
222
|
+
81: 'q',
|
|
223
|
+
82: 'r',
|
|
224
|
+
83: 's',
|
|
225
|
+
84: 't',
|
|
226
|
+
85: 'u',
|
|
227
|
+
86: 'v',
|
|
228
|
+
87: 'w',
|
|
229
|
+
88: 'x',
|
|
230
|
+
89: 'y',
|
|
231
|
+
90: 'z',
|
|
232
|
+
91: 'Left Windows Key / Left ⌘',
|
|
233
|
+
92: 'Right Windows Key',
|
|
234
|
+
93: 'Windows Menu / Right ⌘',
|
|
235
|
+
96: 'numpad 0',
|
|
236
|
+
97: 'numpad 1',
|
|
237
|
+
98: 'numpad 2',
|
|
238
|
+
99: 'numpad 3',
|
|
239
|
+
100: 'numpad 4',
|
|
240
|
+
101: 'numpad 5',
|
|
241
|
+
102: 'numpad 6',
|
|
242
|
+
103: 'numpad 7',
|
|
243
|
+
104: 'numpad 8',
|
|
244
|
+
105: 'numpad 9',
|
|
245
|
+
106: 'multiply',
|
|
246
|
+
107: 'add',
|
|
247
|
+
109: 'subtract',
|
|
248
|
+
110: 'decimal point',
|
|
249
|
+
111: 'divide',
|
|
250
|
+
112: 'f1',
|
|
251
|
+
113: 'f2',
|
|
252
|
+
114: 'f3',
|
|
253
|
+
115: 'f4',
|
|
254
|
+
116: 'f5',
|
|
255
|
+
117: 'f6',
|
|
256
|
+
118: 'f7',
|
|
257
|
+
119: 'f8',
|
|
258
|
+
120: 'f9',
|
|
259
|
+
121: 'f10',
|
|
260
|
+
122: 'f11',
|
|
261
|
+
123: 'f12',
|
|
262
|
+
124: 'f13',
|
|
263
|
+
125: 'f14',
|
|
264
|
+
126: 'f15',
|
|
265
|
+
127: 'f16',
|
|
266
|
+
128: 'f17',
|
|
267
|
+
129: 'f18',
|
|
268
|
+
130: 'f19',
|
|
269
|
+
131: 'f20',
|
|
270
|
+
132: 'f21',
|
|
271
|
+
133: 'f22',
|
|
272
|
+
134: 'f23',
|
|
273
|
+
135: 'f24',
|
|
274
|
+
144: 'num lock',
|
|
275
|
+
145: 'scroll lock',
|
|
276
|
+
186: ';',
|
|
277
|
+
187: '=',
|
|
278
|
+
188: ',',
|
|
279
|
+
189: '‐',
|
|
280
|
+
190: '.',
|
|
281
|
+
191: '?',
|
|
282
|
+
192: '`',
|
|
283
|
+
219: '[',
|
|
284
|
+
220: '\',
|
|
285
|
+
221: ']',
|
|
286
|
+
222: ''',
|
|
287
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Bootstrap v5.3.2 (https://getbootstrap.com/)
|
|
3
|
+
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
5
|
+
*/
|
|
6
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function j(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${j(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${j(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${j(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.2"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?n(i.trim()):null}return e},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",Mt="collapsing",jt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(Mt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(Mt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(jt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function Me(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const je={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:Me(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:Me(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C<v.length;C++){var O=v[C],x=be(O),k=Fe(O)===Xt,L=[zt,Rt].indexOf(x)>=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==P(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],M=f?-T[$]/2:0,j=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-M-q-z-O.mainAxis:j-q-z-O.mainAxis,K=v?-E[$]/2+M+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return!e.some((function(t){return!(t&&"function"==typeof t.getBoundingClientRect)}))}function mi(t){void 0===t&&(t={});var e=t,i=e.defaultModifiers,n=void 0===i?[]:i,s=e.defaultOptions,o=void 0===s?fi:s;return function(t,e,i){void 0===i&&(i=o);var s,r,a={placement:"bottom",orderedModifiers:[],options:Object.assign({},fi,o),modifiersData:{},elements:{reference:t,popper:e},attributes:{},styles:{}},l=[],c=!1,h={state:a,setOptions:function(i){var s="function"==typeof i?i(a.options):i;d(),a.options=Object.assign({},o,a.options,s),a.scrollParents={reference:pe(t)?Je(t):t.contextElement?Je(t.contextElement):[],popper:Je(e)};var r,c,u=function(t){var e=ui(t);return de.reduce((function(t,i){return t.concat(e.filter((function(t){return t.phase===i})))}),[])}((r=[].concat(n,a.options.modifiers),c=r.reduce((function(t,e){var i=t[e.name];return t[e.name]=i?Object.assign({},i,e,{options:Object.assign({},i.options,e.options),data:Object.assign({},i.data,e.data)}):e,t}),{}),Object.keys(c).map((function(t){return c[t]}))));return a.orderedModifiers=u.filter((function(t){return t.enabled})),a.orderedModifiers.forEach((function(t){var e=t.name,i=t.options,n=void 0===i?{}:i,s=t.effect;if("function"==typeof s){var o=s({state:a,name:e,instance:h,options:n});l.push(o||function(){})}})),h.update()},forceUpdate:function(){if(!c){var t=a.elements,e=t.reference,i=t.popper;if(pi(e,i)){a.rects={reference:di(e,$e(i),"fixed"===a.options.strategy),popper:Ce(i)},a.reset=!1,a.placement=a.options.placement,a.orderedModifiers.forEach((function(t){return a.modifiersData[t.name]=Object.assign({},t.data)}));for(var n=0;n<a.orderedModifiers.length;n++)if(!0!==a.reset){var s=a.orderedModifiers[n],o=s.fn,r=s.options,l=void 0===r?{}:r,d=s.name;"function"==typeof o&&(a=o({state:a,options:l,name:d,instance:h})||a)}else a.reset=!1,n=-1}}},update:(s=function(){return new Promise((function(t){h.forceUpdate(),t(a)}))},function(){return r||(r=new Promise((function(t){Promise.resolve().then((function(){r=void 0,t(s())}))}))),r}),destroy:function(){d(),c=!0}};if(!pi(t,e))return h;function d(){l.forEach((function(t){return t()})),l=[]}return h.setOptions(i).then((function(t){!c&&i.onFirstUpdate&&i.onFirstUpdate(t)})),h}}var gi=mi(),_i=mi({defaultModifiers:[Re,ci,Be,_e]}),bi=mi({defaultModifiers:[Re,ci,Be,_e,li,si,hi,je,ai]});const vi=Object.freeze(Object.defineProperty({__proto__:null,afterMain:ae,afterRead:se,afterWrite:he,applyStyles:_e,arrow:je,auto:Kt,basePlacements:Qt,beforeMain:oe,beforeRead:ie,beforeWrite:le,bottom:Rt,clippingParents:Ut,computeStyles:Be,createPopper:bi,createPopperBase:gi,createPopperLite:_i,detectOverflow:ii,end:Yt,eventListeners:Re,flip:si,hide:ai,left:Vt,main:re,modifierPhases:de,offset:li,placements:ee,popper:Jt,popperGenerator:mi,popperOffsets:ci,preventOverflow:hi,read:ne,reference:Zt,right:qt,start:Xt,top:zt,variationPlacements:te,viewport:Gt,write:ce},Symbol.toStringTag,{value:"Module"})),yi="dropdown",wi=".bs.dropdown",Ai=".data-api",Ei="ArrowUp",Ti="ArrowDown",Ci=`hide${wi}`,Oi=`hidden${wi}`,xi=`show${wi}`,ki=`shown${wi}`,Li=`click${wi}${Ai}`,Si=`keydown${wi}${Ai}`,Di=`keyup${wi}${Ai}`,$i="show",Ii='[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled)',Ni=`${Ii}.${$i}`,Pi=".dropdown-menu",Mi=p()?"top-end":"top-start",ji=p()?"top-start":"top-end",Fi=p()?"bottom-end":"bottom-start",Hi=p()?"bottom-start":"bottom-end",Wi=p()?"left-start":"right-start",Bi=p()?"right-start":"left-start",zi={autoClose:!0,boundary:"clippingParents",display:"dynamic",offset:[0,2],popperConfig:null,reference:"toggle"},Ri={autoClose:"(boolean|string)",boundary:"(string|element)",display:"string",offset:"(array|string|function)",popperConfig:"(null|object|function)",reference:"(string|element|object)"};class qi extends W{constructor(t,e){super(t,e),this._popper=null,this._parent=this._element.parentNode,this._menu=z.next(this._element,Pi)[0]||z.prev(this._element,Pi)[0]||z.findOne(Pi,this._parent),this._inNavbar=this._detectNavbar()}static get Default(){return zi}static get DefaultType(){return Ri}static get NAME(){return yi}toggle(){return this._isShown()?this.hide():this.show()}show(){if(l(this._element)||this._isShown())return;const t={relatedTarget:this._element};if(!N.trigger(this._element,xi,t).defaultPrevented){if(this._createPopper(),"ontouchstart"in document.documentElement&&!this._parent.closest(".navbar-nav"))for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add($i),this._element.classList.add($i),N.trigger(this._element,ki,t)}}hide(){if(l(this._element)||!this._isShown())return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){if(!N.trigger(this._element,Ci,t).defaultPrevented){if("ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._popper&&this._popper.destroy(),this._menu.classList.remove($i),this._element.classList.remove($i),this._element.setAttribute("aria-expanded","false"),F.removeDataAttribute(this._menu,"popper"),N.trigger(this._element,Oi,t)}}_getConfig(t){if("object"==typeof(t=super._getConfig(t)).reference&&!o(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${yi.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(){if(void 0===vi)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let t=this._element;"parent"===this._config.reference?t=this._parent:o(this._config.reference)?t=r(this._config.reference):"object"==typeof this._config.reference&&(t=this._config.reference);const e=this._getPopperConfig();this._popper=bi(t,this._menu,e)}_isShown(){return this._menu.classList.contains($i)}_getPlacement(){const t=this._parent;if(t.classList.contains("dropend"))return Wi;if(t.classList.contains("dropstart"))return Bi;if(t.classList.contains("dropup-center"))return"top";if(t.classList.contains("dropdown-center"))return"bottom";const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ji:Mi:e?Hi:Fi}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"<div></div>"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Ws="show",Bs=".dropdown-toggle",zs=`:not(${Bs})`,Rs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',qs=`.nav-link${zs}, .list-group-item${zs}, [role="tab"]${zs}, ${Rs}`,Vs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Ks extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Ks.getOrCreateInstance(i).show())}_getChildren(){return z.find(qs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(Bs,Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(qs)?t:z.findOne(qs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Ks.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,Rs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Ks.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(Vs))Ks.getOrCreateInstance(t)})),m(Ks);const Qs=".bs.toast",Xs=`mouseover${Qs}`,Ys=`mouseout${Qs}`,Us=`focusin${Qs}`,Gs=`focusout${Qs}`,Js=`hide${Qs}`,Zs=`hidden${Qs}`,to=`show${Qs}`,eo=`shown${Qs}`,io="hide",no="show",so="showing",oo={animation:"boolean",autohide:"boolean",delay:"number"},ro={animation:!0,autohide:!0,delay:5e3};class ao extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return ro}static get DefaultType(){return oo}static get NAME(){return"toast"}show(){N.trigger(this._element,to).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(io),d(this._element),this._element.classList.add(no,so),this._queueCallback((()=>{this._element.classList.remove(so),N.trigger(this._element,eo),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Js).defaultPrevented||(this._element.classList.add(so),this._queueCallback((()=>{this._element.classList.add(io),this._element.classList.remove(so,no),N.trigger(this._element,Zs)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(no),super.dispose()}isShown(){return this._element.classList.contains(no)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Xs,(t=>this._onInteraction(t,!0))),N.on(this._element,Ys,(t=>this._onInteraction(t,!1))),N.on(this._element,Us,(t=>this._onInteraction(t,!0))),N.on(this._element,Gs,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ao.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ao),m(ao),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Ks,Toast:ao,Tooltip:cs}}));
|
|
7
|
+
//# sourceMappingURL=bootstrap.bundle.min.js.map
|