diff --git a/.github/workflows/depoly.yml b/.github/workflows/depoly.yml index 99932fc..068ff3c 100644 --- a/.github/workflows/depoly.yml +++ b/.github/workflows/depoly.yml @@ -16,17 +16,17 @@ jobs: name: Setup Pnpm with: version: 8 - + - name: Setup Node uses: actions/setup-node@v3 with: node-version: "18" cache: pnpm cache-dependency-path: '**/pnpm-lock.yaml' - + - name: Install Dependencies run: pnpm install - + # Deploy hexo blog website. - name: Deploy id: deploy diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cfe2b4c --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hexo-theme-buck"] + path = themes/hexo-theme-buck + url = git@github.com:thislight/hexo-theme-buck.git diff --git a/package.json b/package.json index 79cb367..9227574 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "build": "hexo generate", "clean": "hexo clean", "deploy": "hexo deploy", - "server": "hexo server" + "server": "hexo server", + "postinstall": "cd themes/hexo-theme-buck && pnpm install && pnpm build" }, "hexo": { "version": "6.3.0" diff --git a/themes/buck/.editorconfig b/themes/buck/.editorconfig deleted file mode 100644 index beffa30..0000000 --- a/themes/buck/.editorconfig +++ /dev/null @@ -1,11 +0,0 @@ -root = true - -[*] -indent_style = space -indent_size = 2 -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true - -[*.md] -trim_trailing_whitespace = false diff --git a/themes/buck/_config.yml b/themes/buck/_config.yml deleted file mode 100644 index e69de29..0000000 diff --git a/themes/buck/build.ts b/themes/buck/build.ts deleted file mode 100644 index 2afa1cd..0000000 --- a/themes/buck/build.ts +++ /dev/null @@ -1,4 +0,0 @@ -import * as esbuild from 'esbuild' -import options from "./config.js" - -await esbuild.build(options) diff --git a/themes/buck/config.ts b/themes/buck/config.ts deleted file mode 100644 index 080b2e6..0000000 --- a/themes/buck/config.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { BuildOptions } from "esbuild"; - -export default { - target: [ - "chrome109", - "ios14.5", - "safari15.6", - "edge114", - "firefox114", - "opera99", - ], - entryPoints: [ - "src/index.css", - "src/index.ts", - "src/page.css", - "src/page.ts", - "src/styles/materialdesignicons.min.css", - "src/archive.css" - ], - outdir: "source", - bundle: true, - splitting: true, - format: "esm", - treeShaking: true, - loader: { - ".woff": "copy", - ".woff2": "copy", - ".ttf": "copy", - ".eot": "copy", - ".svg": "file", - }, - sourcemap: "linked", - jsx: "preserve", - jsxImportSource: "solid-js", - minify: true, -} as BuildOptions; diff --git a/themes/buck/languages/zh-Hans.yml b/themes/buck/languages/zh-Hans.yml deleted file mode 100644 index 6bb7e8a..0000000 --- a/themes/buck/languages/zh-Hans.yml +++ /dev/null @@ -1,19 +0,0 @@ - -index: - archive_title: - yearly: "%s年的归档" - tags_title: - all: "所有标签" - yearly: "%s年的标签" - tag_title: '标记为"%s"的文章' - prev_page: "上一页" - next_page: "下一页" - -page: - created: "创建" - updated: "更新" - created_by: "由%s创建" - not_published: "这是一篇草稿" - -archives: - title: "归档" diff --git a/themes/buck/layout/archive.njk b/themes/buck/layout/archive.njk deleted file mode 100644 index b18bd75..0000000 --- a/themes/buck/layout/archive.njk +++ /dev/null @@ -1,22 +0,0 @@ -{% import "includes/shared.njk" as shared with context %} -{% if (page.archive and page.year) or page.tag or page.category %} - {% include "./index.njk" %} -{% else %} - - - - - - {{ __('archives.title') }} - - - - {{ shared.sitenav(__('archives.title')) }} -
- {{ list_archives({ - type: 'yearly' - }) }} -
- - -{% endif %} diff --git a/themes/buck/layout/includes/shared.njk b/themes/buck/layout/includes/shared.njk deleted file mode 100644 index 4e61fbe..0000000 --- a/themes/buck/layout/includes/shared.njk +++ /dev/null @@ -1,16 +0,0 @@ -{% set theme = site.data.theme %} - -{% macro sitenav(title = config.title) %} - -{% endmacro %} diff --git a/themes/buck/layout/index.njk b/themes/buck/layout/index.njk deleted file mode 100644 index 672b918..0000000 --- a/themes/buck/layout/index.njk +++ /dev/null @@ -1,85 +0,0 @@ - -{% import "includes/shared.njk" as shared with context %} -{% if page.archive %} - {% set title = __('index.archive_title.yearly', page.year) %} -{% elif page.tag %} - {% set title = __('index.tag_title', page.tag) %} -{% else %} - {% set title = page.title or config.title or "Page" %} -{% endif %} - - - - - {{ title }} - - - - - - {{ shared.sitenav(title) }} -
-
- -
-
- {{ paginator({ - prev_text: '', - next_text: '', - escape: false - }) }} -
-
-
-
-
-
- - {{ config.author }} -
- {{ config.description }} -
-
-
- -
-
- {% if page.archive %} - {% set tags = tags_of_year(page.year) %} - {% else %} - {% set tags = site.tags.sort('name', 1).toArray() %} - {% endif %} -
-
{{ __('index.tags_title.yearly', page.year) if page.archive else __('index.tags_title.all') }}
- -
-
-
- - diff --git a/themes/buck/layout/page.njk b/themes/buck/layout/page.njk deleted file mode 100644 index 4fc8756..0000000 --- a/themes/buck/layout/page.njk +++ /dev/null @@ -1,33 +0,0 @@ - -{% import "includes/shared.njk" as shared with context %} - - - - - {{ page.title or config.title or "Page" }} - - - - - {{ shared.sitenav(page.title) }} -
-
-
-

{{ page.title }}

- - {{ page.content }} -
-
-
- - diff --git a/themes/buck/layout/post.njk b/themes/buck/layout/post.njk deleted file mode 100644 index 48a4ef1..0000000 --- a/themes/buck/layout/post.njk +++ /dev/null @@ -1 +0,0 @@ -{% include "page.njk" %} diff --git a/themes/buck/package.json b/themes/buck/package.json deleted file mode 100644 index 5739c87..0000000 --- a/themes/buck/package.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "buck", - "version": "1.0.0", - "description": "", - "private": true, - "type": "module", - "scripts": { - "build": "node --no-warnings --loader ts-node/esm build.ts", - "dev": "node --no-warnings --loader ts-node/esm watch.ts" - }, - "keywords": [], - "author": "", - "license": "ISC", - "devDependencies": { - "esbuild": "^0.19.11", - "ts-node": "^10.9.2", - "typescript": "^5.3.3" - }, - "dependencies": { - "@fontsource/roboto": "^5.0.8", - "date-fns": "^3.1.0", - "solid-js": "^1.8.8" - } -} diff --git a/themes/buck/pnpm-lock.yaml b/themes/buck/pnpm-lock.yaml deleted file mode 100644 index 3871b30..0000000 --- a/themes/buck/pnpm-lock.yaml +++ /dev/null @@ -1,414 +0,0 @@ -lockfileVersion: '6.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -dependencies: - '@fontsource/roboto': - specifier: ^5.0.8 - version: 5.0.8 - date-fns: - specifier: ^3.1.0 - version: 3.1.0 - solid-js: - specifier: ^1.8.8 - version: 1.8.8 - -devDependencies: - esbuild: - specifier: ^0.19.11 - version: 0.19.11 - ts-node: - specifier: ^10.9.2 - version: 10.9.2(@types/node@20.10.6)(typescript@5.3.3) - typescript: - specifier: ^5.3.3 - version: 5.3.3 - -packages: - - /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - dependencies: - '@jridgewell/trace-mapping': 0.3.9 - dev: true - - /@esbuild/aix-ppc64@0.19.11: - resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm64@0.19.11: - resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.19.11: - resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.19.11: - resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64@0.19.11: - resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64@0.19.11: - resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64@0.19.11: - resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64@0.19.11: - resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64@0.19.11: - resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm@0.19.11: - resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32@0.19.11: - resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64@0.19.11: - resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el@0.19.11: - resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.19.11: - resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.19.11: - resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.19.11: - resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.19.11: - resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.19.11: - resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.19.11: - resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.19.11: - resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.19.11: - resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.19.11: - resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.19.11: - resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@fontsource/roboto@5.0.8: - resolution: {integrity: sha512-XxPltXs5R31D6UZeLIV1td3wTXU3jzd3f2DLsXI8tytMGBkIsGcc9sIyiupRtA8y73HAhuSCeweOoBqf6DbWCA==} - dev: false - - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - dev: true - - /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true - - /@tsconfig/node10@1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} - dev: true - - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true - - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true - - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - dev: true - - /@types/node@20.10.6: - resolution: {integrity: sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==} - dependencies: - undici-types: 5.26.5 - dev: true - - /acorn-walk@8.3.1: - resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==} - engines: {node: '>=0.4.0'} - dev: true - - /acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true - - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true - - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - dev: false - - /date-fns@3.1.0: - resolution: {integrity: sha512-ZO7yefXV/wCWzd3I9haCHmfzlfA3i1a2HHO7ZXjtJrRjXt8FULKJ2Vl8wji3XYF4dQ0ZJ/tokXDZeYlFvgms9Q==} - dev: false - - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true - - /esbuild@0.19.11: - resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/aix-ppc64': 0.19.11 - '@esbuild/android-arm': 0.19.11 - '@esbuild/android-arm64': 0.19.11 - '@esbuild/android-x64': 0.19.11 - '@esbuild/darwin-arm64': 0.19.11 - '@esbuild/darwin-x64': 0.19.11 - '@esbuild/freebsd-arm64': 0.19.11 - '@esbuild/freebsd-x64': 0.19.11 - '@esbuild/linux-arm': 0.19.11 - '@esbuild/linux-arm64': 0.19.11 - '@esbuild/linux-ia32': 0.19.11 - '@esbuild/linux-loong64': 0.19.11 - '@esbuild/linux-mips64el': 0.19.11 - '@esbuild/linux-ppc64': 0.19.11 - '@esbuild/linux-riscv64': 0.19.11 - '@esbuild/linux-s390x': 0.19.11 - '@esbuild/linux-x64': 0.19.11 - '@esbuild/netbsd-x64': 0.19.11 - '@esbuild/openbsd-x64': 0.19.11 - '@esbuild/sunos-x64': 0.19.11 - '@esbuild/win32-arm64': 0.19.11 - '@esbuild/win32-ia32': 0.19.11 - '@esbuild/win32-x64': 0.19.11 - dev: true - - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true - - /seroval@1.0.2: - resolution: {integrity: sha512-buswWxRzf65ZGUk8MAf3qVtBJHbe5gq6hZyPeqlJCKEIl/tEhUZze0YJg7vB7tFRGgPeneRaP083OB/vDiYLvA==} - engines: {node: '>=10'} - dev: false - - /solid-js@1.8.8: - resolution: {integrity: sha512-9CtL5xWTYX1WWjQKqht3Tl0AJzgz4YWVQk8hoscO9TzRCgzlpAauEOexXa6bPG30W+fWLnFVE7XUiAzQFNeUKw==} - dependencies: - csstype: 3.1.3 - seroval: 1.0.2 - dev: false - - /ts-node@10.9.2(@types/node@20.10.6)(typescript@5.3.3): - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.10.6 - acorn: 8.11.3 - acorn-walk: 8.3.1 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.3.3 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: true - - /typescript@5.3.3: - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} - engines: {node: '>=14.17'} - hasBin: true - dev: true - - /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - dev: true - - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true - - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true diff --git a/themes/buck/scripts/tags.js b/themes/buck/scripts/tags.js deleted file mode 100644 index 376887a..0000000 --- a/themes/buck/scripts/tags.js +++ /dev/null @@ -1,13 +0,0 @@ -hexo.extend.helper.register("tags_of_year", function (year) { - const yearNumber = Number(year) - const tags = this.site.posts - .filter((post) => post.date.year() === yearNumber) - .map((x) => x.tags) - .reduce((p, c) => { - for (const t of c.toArray()) { - p.add(t) - } - return p - }, new Set()) - return Array.from(tags); -}) diff --git a/themes/buck/source/archive.css b/themes/buck/source/archive.css deleted file mode 100644 index cd8bede..0000000 --- a/themes/buck/source/archive.css +++ /dev/null @@ -1,2 +0,0 @@ -:root{--palette-black: #000000;--palette-white: #ffffff;--palette-blue-50: #e3f2fd;--palette-blue-50-fg: var(--palette-black);--palette-blue-100: #bbdefb;--palette-blue-100-fg: var(--palette-black);--palette-blue-200: #90caf9;--palette-blue-200-fg: var(--palette-black);--palette-blue-400: #42a5f5;--palette-blue-400-fg: var(--palette-black);--palette-blue-500: #2196f3;--palette-blue-500-fg: var(--palette-black);--palette-blue-600: #1e88e5;--palette-blue-600-fg: var(--palette-white);--palette-blue-700: #1976d2;--palette-blue-700-fg: var(--palette-white);--palette-blue-800: #1565c0;--palette-blue-800-fg: var(--palette-white);--palette-blue-900: #0d47a1;--palette-blue-900-fg: var(--palette-white);--palette-blue-a100: #82b1ff;--palette-blue-a100-fg: var(--palette-black);--palette-blue-a200: #448aff;--palette-blue-a200-fg: var(--palette-white);--palette-blue-a400: #2979ff;--palette-blue-a400-fg: var(--palette-white);--palette-blue-a700: #2962ff;--palette-blue-a700-fg: var(--palette-white);--palette-grey-50: #fafafa;--palette-grey-50-fg: var(--palette-black);--palette-grey-100: #f5f5f5;--palette-grey-100-fg: var(--palette-black);--palette-grey-200: #eeeeee;--palette-grey-200-fg: var(--palette-black);--palette-grey-300: #e0e0e0;--palette-grey-300-fg: var(--palette-black);--palette-grey-400: #bdbdbd;--palette-grey-400-fg: var(--palette-black);--palette-grey-500: #9e9e9e;--palette-grey-500-fg: var(--palette-black);--palette-grey-600: #757575;--palette-grey-600-fg: white;--palette-grey-700: #616161;--palette-grey-700-fg: white;--palette-pink-500: #e91e63;--palette-pink-500-fg: var(--palette-white)}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-cyrillic-ext-400-normal-26BHVYZO.woff2") format("woff2"),url("./roboto-cyrillic-ext-400-normal-ALQYG4VR.woff") format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-cyrillic-400-normal-FWOJ2YEY.woff2") format("woff2"),url("./roboto-cyrillic-400-normal-DH4TKATE.woff") format("woff");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-greek-ext-400-normal-FNKH33MZ.woff2") format("woff2"),url("./roboto-greek-ext-400-normal-2F7V6K4G.woff") format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-greek-400-normal-MPTNYGBL.woff2") format("woff2"),url("./roboto-greek-400-normal-4O2YO26M.woff") format("woff");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-vietnamese-400-normal-ZFP4AYPR.woff2") format("woff2"),url("./roboto-vietnamese-400-normal-WM45SJXN.woff") format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-latin-ext-400-normal-EGV4RSGY.woff2") format("woff2"),url("./roboto-latin-ext-400-normal-SYALJJTN.woff") format("woff");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-latin-400-normal-6KEU5XHX.woff2") format("woff2"),url("./roboto-latin-400-normal-23KM663I.woff") format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-cyrillic-ext-100-normal-GB4EOHW3.woff2") format("woff2"),url("./roboto-cyrillic-ext-100-normal-JVQUE5YG.woff") format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-cyrillic-100-normal-BCJFGWFF.woff2") format("woff2"),url("./roboto-cyrillic-100-normal-SJKZD3PH.woff") format("woff");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-greek-ext-100-normal-IU4AEIW2.woff2") format("woff2"),url("./roboto-greek-ext-100-normal-WGDKWHRF.woff") format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-greek-100-normal-S3FDCEDH.woff2") format("woff2"),url("./roboto-greek-100-normal-HAPQGQT7.woff") format("woff");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-vietnamese-100-normal-VC33Q5KS.woff2") format("woff2"),url("./roboto-vietnamese-100-normal-RG3VSYYM.woff") format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-latin-ext-100-normal-S6APGXBJ.woff2") format("woff2"),url("./roboto-latin-ext-100-normal-G4DULEH7.woff") format("woff");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-latin-100-normal-H6TJBNRU.woff2") format("woff2"),url("./roboto-latin-100-normal-PKD3V7F6.woff") format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}*{margin:0;box-sizing:border-box;font-family:var(--font-family-sans)}:root{--font-family-sans: Roboto, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;--p-primary: var(--palette-blue-500);--p-primary-fg: var(--palette-blue-500-fg);--p-secondary: var(--palette-pink-500);--p-secondary-fg: var(--palette-pink-500-fg);--typ-r-display4: lighter 7rem / 7rem var(--font-family-sans);--typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans);--typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans);--typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans);--typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans);--typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans);--typ-r-subheading: normal 1rem / 1rem var(--font-family-sans);--typ-r-body2: bold .875rem / .875rem var(--font-family-sans);--typ-r-body1: normal .875rem / .875rem var(--font-family-sans);--typ-r-caption: normal .75rem / .75rem var(--font-family-sans);--typ-r-button: bold .875rem / .875rem var(--font-family-sans);--typ-d-display4: var(--typ-r-display4);--typ-d-display3: var(--typ-r-display3);--typ-d-display2: var(--typ-r-display2);--typ-d-display1: var(--typ-r-display1);--typ-d-headline: var(--typ-r-headline);--typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans);--typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans);--typ-d-body2: bold .9375rem / .9375rem var(--font-family-sans);--typ-d-body1: normal .9375rem / .9375rem var(--font-family-sans);--typ-d-caption: normal .8125rem / .8125rem var(--font-family-sans);--typ-d-button: bold .9375rem / .9375rem var(--font-family-sans);--elevation-0: 0px;--elevation-1: 1px;--elevation-2: 2px;--elevation-3: 3px;--elevation-4: 4px;--elevation-5: 6px;--elevation-6: 8px;--elevation-7: 9px;--elevation-8: 12px;--elevation-9: 16px;--elevation-10: 24px;--box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, .15);--box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, .15);--box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, .15);--box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, .15);--link-bg: var(--palette-blue-50);--link-color: var(--palette-blue-50-fg);--link-bg-hover: var(--palette-blue-100);--link-color-hover: var(--palette-blue-100-fg);--typ-display4: var(--typ-r-display4);--typ-display3: var(--typ-r-display3);--typ-display2: var(--typ-r-display2);--typ-display1: var(--typ-r-display1);--typ-headline: var(--typ-r-display1);--typ-title: var(--typ-r-title);--typ-subheading: var(--typ-r-subheading);--typ-body2: var(--typ-r-body2);--typ-body1: var(--typ-r-body1);--typ-caption: var(--typ-r-caption);--typ-button: var(--typ-r-button)}:root:is([lang~=zh],[lang~=ja],[lang~=kr]){--typ-title: var(--typ-d-headline);--typ-subheading: var(--typ-d-subheading);--typ-body2: var(--typ-d-body2);--typ-body1: var(--typ-d-body1);--typ-caption: var(--typ-d-caption);--typ-button: var(--typ-d-button)}table{--table-header-color: rgba(0, 0, 0, .54);--table-content-color: rgba(0, 0, 0, .87);--table-background-color: white}:root{font:var(--typ-body1)}h1{font:var(--typ-display4)}h2{font:var(--typ-display3)}h3{font:var(--typ-display2)}h4{font:var(--typ-display1)}h5{font:var(--typ-headline)}h6{font:var(--typ-title)}.container{width:80%;margin:auto}@media (max-width: 600px){.container{width:100%}}.nav-wrapper{background-color:var(--p-primary);box-shadow:var(--box-shadow-4)}nav.site{--nav-site-height: 4rem;display:flex;flex-wrap:wrap-reverse;justify-content:space-between;white-space:nowrap;min-height:var(--nav-site-height);color:var(--palette-white);width:80%;margin:auto;padding-inline:8px}nav.site>*{display:flex;align-items:center}@media (max-width: 1280px){nav.site{width:90%}}@media (max-width: 600px){nav.site{width:100%}}nav.site a{font:var(--typ-button);display:inline-block;line-height:var(--nav-site-height);padding:0 16px;transition:background-color .2s ease-in-out;background-color:transparent;color:var(--palette-white)}nav.site a:hover{color:inherit;background-color:#0000001a}:where(a):not([href^="#"]){display:inline-block;color:var(--link-color);text-decoration:none;background-color:var(--link-bg);border-radius:4px;padding:4px 8px;transition:background-color .2s ease-in-out,color .2s ease-in-out;min-width:44px}:where(a):not([href^="#"]):hover{background-color:var(--link-bg-hover);color:var(--link-color-hover)}:where(a):not([href^="#"])[target=_blank]:after{content:url('data:image/svg+xml,open-in-new');display:inline-block;width:1rem;height:1rem}nav.site .textinput-lg{background-color:#ffffff40;border:none;outline:none;border-radius:2px;font-size:1rem;line-height:2rem;vertical-align:middle;flex-grow:1;transition:background-color .2s ease-in-out,width .2s ease-in-out,box-shadow .2s ease-in-out;padding-inline:1rem}nav.site .textinput-lg::placeholder{color:#fff}nav.site .textinput-lg:focus{background-color:#fff;box-shadow:var(--box-shadow-9)}nav.site .textinput-lg:focus::placeholder{color:transparent;text-align:center}@media (max-width: 600px){nav.site .textinput-lg{width:100%}}nav.site>*:first-child>*:first-child{padding-left:16px}nav.site :where(h1,h2,h3,h4,h5,h6){text-overflow:ellipsis;overflow:hidden;line-height:var(--nav-site-height)}.circle{border-radius:50%}#_layout{display:grid;margin-inline:60px;padding-block:24px}@media (max-width: 720px){#_layout{margin-inline:8px}}#_layout>:first-child{max-width:560px}.archive-list{display:flex;flex-flow:column nowrap;gap:12px;padding:0}.archive-list-item{display:flex;flex-flow:row wrap;justify-content:space-between;align-items:center;border-bottom:1px solid var(--palette-grey-500)}a.archive-list-link{font:var(--typ-title);line-height:2;padding-right:48px;padding-left:16px;text-align:start} -/*# sourceMappingURL=archive.css.map */ diff --git a/themes/buck/source/archive.css.map b/themes/buck/source/archive.css.map deleted file mode 100644 index 67ae0c6..0000000 --- a/themes/buck/source/archive.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../src/styles/palette.css", "../node_modules/.pnpm/@fontsource+roboto@5.0.8/node_modules/@fontsource/roboto/400.css", "../node_modules/.pnpm/@fontsource+roboto@5.0.8/node_modules/@fontsource/roboto/100.css", "../src/styles/material.css", "../src/archive.css"], - "sourcesContent": [":root {\n --palette-black: #000000;\n --palette-white: #ffffff;\n\n --palette-blue-50: #e3f2fd;\n --palette-blue-50-fg: var(--palette-black);\n --palette-blue-100: #bbdefb;\n --palette-blue-100-fg: var(--palette-black);\n --palette-blue-200: #90caf9;\n --palette-blue-200-fg: var(--palette-black);\n --palette-blue-400: #42a5f5;\n --palette-blue-400-fg: var(--palette-black);\n --palette-blue-500: #2196f3;\n --palette-blue-500-fg: var(--palette-black);\n --palette-blue-600: #1e88e5;\n --palette-blue-600-fg: var(--palette-white);\n --palette-blue-700: #1976d2;\n --palette-blue-700-fg: var(--palette-white);\n --palette-blue-800: #1565c0;\n --palette-blue-800-fg: var(--palette-white);\n --palette-blue-900: #0d47a1;\n --palette-blue-900-fg: var(--palette-white);\n --palette-blue-a100: #82b1ff;\n --palette-blue-a100-fg: var(--palette-black);\n --palette-blue-a200: #448aff;\n --palette-blue-a200-fg: var(--palette-white);\n --palette-blue-a400: #2979ff;\n --palette-blue-a400-fg: var(--palette-white);\n --palette-blue-a700: #2962ff;\n --palette-blue-a700-fg: var(--palette-white);\n\n --palette-grey-50: #fafafa;\n --palette-grey-50-fg: var(--palette-black);\n --palette-grey-100: #f5f5f5;\n --palette-grey-100-fg: var(--palette-black);\n --palette-grey-200: #eeeeee;\n --palette-grey-200-fg: var(--palette-black);\n --palette-grey-300: #e0e0e0;\n --palette-grey-300-fg: var(--palette-black);\n --palette-grey-400: #bdbdbd;\n --palette-grey-400-fg: var(--palette-black);\n --palette-grey-500: #9e9e9e;\n --palette-grey-500-fg: var(--palette-black);\n --palette-grey-600: #757575;\n --palette-grey-600-fg: white;\n --palette-grey-700: #616161;\n --palette-grey-700-fg: white;\n\n --palette-pink-500: #e91e63;\n --palette-pink-500-fg: var(--palette-white);\n}\n", "/* roboto-cyrillic-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-ext-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-400-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-400-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-ext-400-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-400-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-400-normal.woff2) format('woff2'), url(./files/roboto-greek-400-normal.woff) format('woff');\n unicode-range: U+0370-03FF;\n}\n\n/* roboto-vietnamese-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-vietnamese-400-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-400-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-ext-400-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-400-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-400-normal.woff2) format('woff2'), url(./files/roboto-latin-400-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}", "/* roboto-cyrillic-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-cyrillic-ext-100-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-100-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-cyrillic-100-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-100-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-greek-ext-100-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-100-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-greek-100-normal.woff2) format('woff2'), url(./files/roboto-greek-100-normal.woff) format('woff');\n unicode-range: U+0370-03FF;\n}\n\n/* roboto-vietnamese-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-vietnamese-100-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-100-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-latin-ext-100-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-100-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-latin-100-normal.woff2) format('woff2'), url(./files/roboto-latin-100-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}", "@import \"./palette.css\";\n@import \"@fontsource/roboto/400.css\";\n@import \"@fontsource/roboto/100.css\";\n\n* {\n margin: 0;\n box-sizing: border-box;\n font-family: var(--font-family-sans);\n}\n\n:root {\n --font-family-sans: Roboto, \"Noto Sans\", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;\n --p-primary: var(--palette-blue-500);\n --p-primary-fg: var(--palette-blue-500-fg);\n --p-secondary: var(--palette-pink-500);\n --p-secondary-fg: var(--palette-pink-500-fg);\n\n --typ-r-display4: lighter 7rem / 7rem var(--font-family-sans);\n --typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans);\n --typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans);\n --typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans);\n --typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans);\n --typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans);\n --typ-r-subheading: normal 1rem / 1rem var(--font-family-sans);\n --typ-r-body2: bold 0.875rem / 0.875rem var(--font-family-sans);\n --typ-r-body1: normal 0.875rem / 0.875rem var(--font-family-sans);\n --typ-r-caption: normal 0.75rem / 0.75rem var(--font-family-sans);\n --typ-r-button: bold 0.875rem / 0.875rem var(--font-family-sans);\n\n --typ-d-display4: var(--typ-r-display4);\n --typ-d-display3: var(--typ-r-display3);\n --typ-d-display2: var(--typ-r-display2);\n --typ-d-display1: var(--typ-r-display1);\n --typ-d-headline: var(--typ-r-headline);\n --typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans);\n --typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans);\n --typ-d-body2: bold 0.9375rem / 0.9375rem var(--font-family-sans);\n --typ-d-body1: normal 0.9375rem / 0.9375rem var(--font-family-sans);\n --typ-d-caption: normal 0.8125rem / 0.8125rem var(--font-family-sans);\n --typ-d-button: bold 0.9375rem / 0.9375rem var(--font-family-sans);\n\n & {\n --typ-display4: var(--typ-r-display4);\n --typ-display3: var(--typ-r-display3);\n --typ-display2: var(--typ-r-display2);\n --typ-display1: var(--typ-r-display1);\n --typ-headline: var(--typ-r-display1);\n --typ-title: var(--typ-r-title);\n --typ-subheading: var(--typ-r-subheading);\n --typ-body2: var(--typ-r-body2);\n --typ-body1: var(--typ-r-body1);\n --typ-caption: var(--typ-r-caption);\n --typ-button: var(--typ-r-button);\n }\n\n &[lang~=\"zh\"],\n &[lang~=\"ja\"],\n &[lang~=\"kr\"] {\n --typ-title: var(--typ-d-headline);\n --typ-subheading: var(--typ-d-subheading);\n --typ-body2: var(--typ-d-body2);\n --typ-body1: var(--typ-d-body1);\n --typ-caption: var(--typ-d-caption);\n --typ-button: var(--typ-d-button);\n }\n\n --elevation-0: 0px;\n --elevation-1: 1px;\n --elevation-2: 2px;\n --elevation-3: 3px;\n --elevation-4: 4px;\n --elevation-5: 6px;\n --elevation-6: 8px;\n --elevation-7: 9px;\n --elevation-8: 12px;\n --elevation-9: 16px;\n --elevation-10: 24px;\n\n --box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, 0.15);\n --box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, 0.15);\n --box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, 0.15);\n --box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, 0.15);\n\n --link-bg: var(--palette-blue-50);\n --link-color: var(--palette-blue-50-fg);\n --link-bg-hover: var(--palette-blue-100);\n --link-color-hover: var(--palette-blue-100-fg);\n}\n\ntable {\n --table-header-color: rgba(0, 0, 0, 0.54);\n --table-content-color: rgba(0, 0, 0, 0.87);\n --table-background-color: white;\n}\n\n:root {\n font: var(--typ-body1);\n}\n\nh1 {\n font: var(--typ-display4);\n}\n\nh2 {\n font: var(--typ-display3);\n}\n\nh3 {\n font: var(--typ-display2);\n}\n\nh4 {\n font: var(--typ-display1);\n}\n\nh5 {\n font: var(--typ-headline);\n}\n\nh6 {\n font: var(--typ-title);\n}\n\n.container {\n width: 80%;\n margin: auto;\n}\n\n@media (max-width: 600px) {\n .container {\n width: 100%;\n }\n}\n\n.nav-wrapper {\n background-color: var(--p-primary);\n box-shadow: var(--box-shadow-4);\n}\n\nnav.site {\n --nav-site-height: 4rem;\n\n display: flex;\n flex-wrap: wrap-reverse;\n justify-content: space-between;\n white-space: nowrap;\n\n min-height: var(--nav-site-height);\n color: var(--palette-white);\n width: 80%;\n margin: auto;\n padding-inline: 8px;\n\n >* {\n display: flex;\n align-items: center;\n }\n}\n\n@media (max-width: 1280px) {\n nav.site {\n width: 90%;\n }\n}\n\n@media (max-width: 600px) {\n nav.site {\n width: 100%;\n }\n}\n\nnav.site a {\n font: var(--typ-button);\n display: inline-block;\n line-height: var(--nav-site-height);\n padding: 0 16px;\n transition: background-color .2s ease-in-out;\n background-color: transparent;\n color: var(--palette-white);\n\n &:hover {\n color: inherit;\n background-color: rgba(0, 0, 0, 0.1);\n }\n}\n\n:where(a):not([href^=\"#\"]) {\n display: inline-block;\n color: var(--link-color);\n text-decoration: none;\n background-color: var(--link-bg);\n border-radius: 4px;\n padding: 4px 8px;\n transition: background-color .2s ease-in-out, color .2s ease-in-out;\n min-width: 44px;\n\n &:hover {\n background-color: var(--link-bg-hover);\n color: var(--link-color-hover);\n }\n\n &[target=\"_blank\"]::after {\n content: url('data:image/svg+xml,open-in-new');\n display: inline-block;\n width: 1rem;\n height: 1rem;\n }\n\n}\n\nnav.site .textinput-lg {\n background-color: rgba(255, 255, 255, 0.25);\n border: none;\n outline: none;\n border-radius: 2px;\n font-size: 1rem;\n line-height: 2rem;\n vertical-align: middle;\n flex-grow: 1;\n transition: background-color .2s ease-in-out, width .2s ease-in-out, box-shadow .2s ease-in-out;\n padding-inline: 1rem;\n\n &::placeholder {\n color: white;\n }\n\n &:focus {\n background-color: white;\n box-shadow: var(--box-shadow-9);\n\n &::placeholder {\n color: transparent;\n text-align: center;\n }\n }\n}\n\n@media (max-width: 600px) {\n nav.site .textinput-lg {\n width: 100%;\n }\n}\n\nnav.site > *:first-child > *:first-child {\n padding-left: 16px;\n}\n\nnav.site :where(h1, h2, h3, h4, h5, h6) {\n text-overflow: ellipsis;\n overflow: hidden;\n line-height: var(--nav-site-height);\n}\n\n.circle {\n border-radius: 50% 50%;\n}\n", "@import \"./styles/material.css\";\n\n#_layout {\n display: grid;\n margin-inline: 60px;\n padding-block: 24px;\n}\n\n@media (max-width: 720px) {\n #_layout {\n margin-inline: 8px;\n }\n}\n\n#_layout> :first-child {\n max-width: 560px;\n}\n\n.archive-list {\n display: flex;\n flex-flow: column nowrap;\n gap: 12px;\n padding: 0;\n}\n\n.archive-list-item {\n display: flex;\n flex-flow: row wrap;\n justify-content: space-between;\n align-items: center;\n border-bottom: 1px solid var(--palette-grey-500);\n}\n\na.archive-list-link {\n font: var(--typ-title);\n line-height: 2;\n padding-right: 48px;\n padding-left: 16px;\n text-align: start;\n}\n"], - "mappings": "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", - "names": [] -} diff --git a/themes/buck/source/chunk-Q4ALCKUU.js b/themes/buck/source/chunk-Q4ALCKUU.js deleted file mode 100644 index d9acaf5..0000000 --- a/themes/buck/source/chunk-Q4ALCKUU.js +++ /dev/null @@ -1,2 +0,0 @@ -var lr=(n,e)=>n===e,vn=Symbol("solid-proxy"),In=Symbol("solid-track"),Nn=Symbol("solid-dev-component"),oe={equals:lr},yt=null,fr=vt,N=1,K=2,Pt={owned:null,cleanups:null,context:null,owner:null};var g=null,a=null,ee=null,S=null,b=null,k=null,O=null,ie=0;function Yn(n,e){let r=b,t=g,o=n.length===0,s=e===void 0?t:e,i=o?Pt:{owned:null,cleanups:null,context:s?s.context:null,owner:s},c=o?n:()=>n(()=>re(()=>q(i)));g=i,b=null;try{return E(c,!0)}finally{b=r,g=t}}function te(n,e){e=e?Object.assign({},oe,e):oe;let r={value:n,observers:null,observerSlots:null,comparator:e.equals||void 0},t=o=>(typeof o=="function"&&(a&&a.running&&a.sources.has(r)?o=o(r.tValue):o=o(r.value)),Ot(r,o));return[Tt.bind(r),t]}function V(n,e,r){let t=Mt(n,e,!1,N);ee&&a&&a.running?k.push(t):ae(t)}function Q(n,e,r){r=r?Object.assign({},oe,r):oe;let t=Mt(n,e,!0,0);return t.observers=null,t.observerSlots=null,t.comparator=r.equals||void 0,ee&&a&&a.running?(t.tState=N,k.push(t)):ae(t),Tt.bind(t)}function re(n){if(!S&&b===null)return n();let e=b;b=null;try{return S?S.untrack(n):n()}finally{b=e}}function rt(n){return g===null||(g.cleanups===null?g.cleanups=[n]:g.cleanups.push(n)),n}function dr(n){if(a&&a.running)return n(),a.done;let e=b,r=g;return Promise.resolve().then(()=>{b=e,g=r;let t;return(ee||hr)&&(t=a||(a={sources:new Set,effects:[],promises:new Set,disposed:new Set,queue:new Set,running:!0}),t.done||(t.done=new Promise(o=>t.resolve=o)),t.running=!0),E(n,!1),b=g=null,t?t.done:void 0})}var[Wn,bt]=te(!1);function mr(n,e){let r=Symbol("context");return{id:r,Provider:yr(r),defaultValue:n}}function pr(n){let e=Q(n),r=Q(()=>tt(e()));return r.toArray=()=>{let t=r();return Array.isArray(t)?t:t!=null?[t]:[]},r}var hr;function Tt(){let n=a&&a.running;if(this.sources&&(n?this.tState:this.state))if((n?this.tState:this.state)===N)ae(this);else{let e=k;k=null,E(()=>se(this),!1),k=e}if(b){let e=this.observers?this.observers.length:0;b.sources?(b.sources.push(this),b.sourceSlots.push(e)):(b.sources=[this],b.sourceSlots=[e]),this.observers?(this.observers.push(b),this.observerSlots.push(b.sources.length-1)):(this.observers=[b],this.observerSlots=[b.sources.length-1])}return n&&a.sources.has(this)?this.tValue:this.value}function Ot(n,e,r){let t=a&&a.running&&a.sources.has(n)?n.tValue:n.value;if(!n.comparator||!n.comparator(t,e)){if(a){let o=a.running;(o||!r&&a.sources.has(n))&&(a.sources.add(n),n.tValue=e),o||(n.value=e)}else n.value=e;n.observers&&n.observers.length&&E(()=>{for(let o=0;o1e6)throw k=[],new Error},!1)}return e}function ae(n){if(!n.fn)return;q(n);let e=ie;Dt(n,a&&a.running&&a.sources.has(n)?n.tValue:n.value,e),a&&!a.running&&a.sources.has(n)&&queueMicrotask(()=>{E(()=>{a&&(a.running=!0),b=g=n,Dt(n,n.tValue,e),b=g=null},!1)})}function Dt(n,e,r){let t,o=g,s=b;b=g=n;try{t=n.fn(e)}catch(i){return n.pure&&(a&&a.running?(n.tState=N,n.tOwned&&n.tOwned.forEach(q),n.tOwned=void 0):(n.state=N,n.owned&&n.owned.forEach(q),n.owned=null)),n.updatedAt=r+1,ot(i)}finally{b=s,g=o}(!n.updatedAt||n.updatedAt<=r)&&(n.updatedAt!=null&&"observers"in n?Ot(n,t,!0):a&&a.running&&n.pure?(a.sources.add(n),n.tValue=t):n.value=t,n.updatedAt=r)}function Mt(n,e,r,t=N,o){let s={fn:n,state:t,updatedAt:null,owned:null,sources:null,sourceSlots:null,cleanups:null,value:e,owner:g,context:g?g.context:null,pure:r};if(a&&a.running&&(s.state=0,s.tState=t),g===null||g!==Pt&&(a&&a.running&&g.pure?g.tOwned?g.tOwned.push(s):g.tOwned=[s]:g.owned?g.owned.push(s):g.owned=[s]),S&&s.fn){let[i,c]=te(void 0,{equals:!1}),f=S.factory(s.fn,c);rt(()=>f.dispose());let x=()=>dr(c).then(()=>I.dispose()),I=S.factory(s.fn,x);s.fn=P=>(i(),a&&a.running?I.track(P):f.track(P))}return s}function nt(n){let e=a&&a.running;if((e?n.tState:n.state)===0)return;if((e?n.tState:n.state)===K)return se(n);if(n.suspense&&re(n.suspense.inFallback))return n.suspense.effects.push(n);let r=[n];for(;(n=n.owner)&&(!n.updatedAt||n.updatedAt=0;t--){if(n=r[t],e){let o=n,s=r[t+1];for(;(o=o.owner)&&o!==s;)if(a.disposed.has(o))return}if((e?n.tState:n.state)===N)ae(n);else if((e?n.tState:n.state)===K){let o=k;k=null,E(()=>se(n,r[0]),!1),k=o}}}function E(n,e){if(k)return n();let r=!1;e||(k=[]),O?r=!0:O=[],ie++;try{let t=n();return wr(r),t}catch(t){r||(O=null),k=null,ot(t)}}function wr(n){if(k&&(ee&&a&&a.running?gr(k):vt(k),k=null),n)return;let e;if(a){if(!a.promises.size&&!a.queue.size){let t=a.sources,o=a.disposed;O.push.apply(O,a.effects),e=a.resolve;for(let s of O)"tState"in s&&(s.state=s.tState),delete s.tState;a=null,E(()=>{for(let s of o)q(s);for(let s of t){if(s.value=s.tValue,s.owned)for(let i=0,c=s.owned.length;ifr(r),!1),e&&e()}function vt(n){for(let e=0;e{t.delete(r),E(()=>{a.running=!0,nt(r)},!1),a&&(a.running=!1)}))}}function se(n,e){let r=a&&a.running;r?n.tState=0:n.state=0;for(let t=0;t=0;e--)q(n.tOwned[e]);delete n.tOwned}Nt(n,!0)}else if(n.owned){for(e=n.owned.length-1;e>=0;e--)q(n.owned[e]);n.owned=null}if(n.cleanups){for(e=n.cleanups.length-1;e>=0;e--)n.cleanups[e]();n.cleanups=null}a&&a.running?n.tState=0:n.state=0}function Nt(n,e){if(e||(n.tState=0,a.disposed.add(n)),n.owned)for(let r=0;ro=re(()=>(g.context={...g.context,[n]:t.value},pr(()=>t.children))),void 0),o}}var Cn=Symbol("fallback");var Fn=mr();function l(n){let e=Object.prototype.toString.call(n);return n instanceof Date||typeof n=="object"&&e==="[object Date]"?new n.constructor(+n):typeof n=="number"||e==="[object Number]"||typeof n=="string"||e==="[object String]"?new Date(n):new Date(NaN)}function h(n,e){return n instanceof Date?new n.constructor(e):new Date(e)}function ue(n,e){let r=l(n);return isNaN(e)?h(n,NaN):(e&&r.setDate(r.getDate()+e),r)}var br=Math.pow(10,8)*24*60*60*1e3,Ln=-br,j=6048e5,Yt=864e5,A=6e4,L=36e5,Wt=1e3;var st=3600,Ct=60,ce=st*24,Ft=ce*7,it=ce*365.2425,at=it/12,Et=at*3;var Dr={};function C(){return Dr}function T(n,e){let r=C(),t=e?.weekStartsOn??e?.locale?.options?.weekStartsOn??r.weekStartsOn??r.locale?.options?.weekStartsOn??0,o=l(n),s=o.getDay(),i=(s=o.getTime()?r+1:e.getTime()>=i.getTime()?r:r-1}function z(n){let e=l(n);return e.setHours(0,0,0,0),e}function F(n){let e=new Date(Date.UTC(n.getFullYear(),n.getMonth(),n.getDate(),n.getHours(),n.getMinutes(),n.getSeconds(),n.getMilliseconds()));return e.setUTCFullYear(n.getFullYear()),n.getTime()-e.getTime()}function le(n,e){let r=z(n),t=z(e),o=r.getTime()-F(r),s=t.getTime()-F(t);return Math.round((o-s)/Yt)}function Rt(n){let e=_t(n),r=h(n,0);return r.setFullYear(e,0,4),r.setHours(0,0,0,0),Y(r)}function qt(n,e){let r=z(n),t=z(e);return+r==+t}function ut(n,e){let r=l(n),t=l(e),o=r.getFullYear()-t.getFullYear(),s=r.getMonth()-t.getMonth();return o*12+s}function ct(n){let e=l(n);return Math.floor(e.getMonth()/3)+1}function fe(n,e){let r=l(n),t=l(e),o=r.getFullYear()-t.getFullYear(),s=ct(r)-ct(t);return o*4+s}function lt(n,e,r){let t=T(n,r),o=T(e,r),s=t.getTime()-F(t),i=o.getTime()-F(o);return Math.round((s-i)/j)}function de(n,e){let r=l(n),t=l(e);return r.getFullYear()-t.getFullYear()}function H(n,e){return l(n).getTime()-l(e).getTime()}function $(n){return n?Math[n]:Math.trunc}function ft(n,e,r){let t=H(n,e)/L;return $(r?.roundingMethod)(t)}function dt(n,e,r){let t=H(n,e)/A;return $(r?.roundingMethod)(t)}function U(n,e,r){let t=H(n,e)/1e3;return $(r?.roundingMethod)(t)}var kr={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},Ht=(n,e,r)=>{let t,o=kr[n];return typeof o=="string"?t=o:e===1?t=o.one:t=o.other.replace("{{count}}",e.toString()),r?.addSuffix?r.comparison&&r.comparison>0?"in "+t:t+" ago":t};function me(n){return(e={})=>{let r=e.width?String(e.width):n.defaultWidth;return n.formats[r]||n.formats[n.defaultWidth]}}var Pr={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},Tr={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},Or={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},At={date:me({formats:Pr,defaultWidth:"full"}),time:me({formats:Tr,defaultWidth:"full"}),dateTime:me({formats:Or,defaultWidth:"full"})};var Mr={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},Lt=(n,e,r,t)=>Mr[n];function X(n){return(e,r)=>{let t=r?.context?String(r.context):"standalone",o;if(t==="formatting"&&n.formattingValues){let i=n.defaultFormattingWidth||n.defaultWidth,c=r?.width?String(r.width):i;o=n.formattingValues[c]||n.formattingValues[i]}else{let i=n.defaultWidth,c=r?.width?String(r.width):n.defaultWidth;o=n.values[c]||n.values[i]}let s=n.argumentCallback?n.argumentCallback(e):e;return o[s]}}var vr={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},Ir={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},Nr={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},Yr={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},Wr={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},Cr={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},Fr=(n,e)=>{let r=Number(n),t=r%100;if(t>20||t<10)switch(t%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},St={ordinalNumber:Fr,era:X({values:vr,defaultWidth:"wide"}),quarter:X({values:Ir,defaultWidth:"wide",argumentCallback:n=>n-1}),month:X({values:Nr,defaultWidth:"wide"}),day:X({values:Yr,defaultWidth:"wide"}),dayPeriod:X({values:Wr,defaultWidth:"wide",formattingValues:Cr,defaultFormattingWidth:"wide"})};function B(n){return(e,r={})=>{let t=r.width,o=t&&n.matchPatterns[t]||n.matchPatterns[n.defaultMatchWidth],s=e.match(o);if(!s)return null;let i=s[0],c=t&&n.parsePatterns[t]||n.parsePatterns[n.defaultParseWidth],f=Array.isArray(c)?_r(c,P=>P.test(i)):Er(c,P=>P.test(i)),x;x=n.valueCallback?n.valueCallback(f):f,x=r.valueCallback?r.valueCallback(x):x;let I=e.slice(i.length);return{value:x,rest:I}}}function Er(n,e){for(let r in n)if(Object.prototype.hasOwnProperty.call(n,r)&&e(n[r]))return r}function _r(n,e){for(let r=0;r{let t=e.match(n.matchPattern);if(!t)return null;let o=t[0],s=e.match(n.parsePattern);if(!s)return null;let i=n.valueCallback?n.valueCallback(s[0]):s[0];i=r.valueCallback?r.valueCallback(i):i;let c=e.slice(o.length);return{value:i,rest:c}}}var Rr=/^(\d+)(th|st|nd|rd)?/i,qr=/\d+/i,Hr={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},Ar={any:[/^b/i,/^(a|c)/i]},Lr={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},Sr={any:[/1/i,/2/i,/3/i,/4/i]},Qr={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},Vr={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},jr={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},zr={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},$r={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},Ur={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},Vt={ordinalNumber:Qt({matchPattern:Rr,parsePattern:qr,valueCallback:n=>parseInt(n,10)}),era:B({matchPatterns:Hr,defaultMatchWidth:"wide",parsePatterns:Ar,defaultParseWidth:"any"}),quarter:B({matchPatterns:Lr,defaultMatchWidth:"wide",parsePatterns:Sr,defaultParseWidth:"any",valueCallback:n=>n+1}),month:B({matchPatterns:Qr,defaultMatchWidth:"wide",parsePatterns:Vr,defaultParseWidth:"any"}),day:B({matchPatterns:jr,defaultMatchWidth:"wide",parsePatterns:zr,defaultParseWidth:"any"}),dayPeriod:B({matchPatterns:$r,defaultMatchWidth:"any",parsePatterns:Ur,defaultParseWidth:"any"})};var jt={code:"en-US",formatDistance:Ht,formatLong:At,formatRelative:Lt,localize:St,match:Vt,options:{weekStartsOn:0,firstWeekContainsDate:1}};function zt(n){let e=l(n),r=Y(e).getTime()-Rt(e).getTime();return Math.round(r/j)+1}function pe(n,e){let r=l(n),t=r.getFullYear(),o=C(),s=e?.firstWeekContainsDate??e?.locale?.options?.firstWeekContainsDate??o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,i=h(n,0);i.setFullYear(t+1,0,s),i.setHours(0,0,0,0);let c=T(i,e),f=h(n,0);f.setFullYear(t,0,s),f.setHours(0,0,0,0);let x=T(f,e);return r.getTime()>=c.getTime()?t+1:r.getTime()>=x.getTime()?t:t-1}function $t(n,e){let r=C(),t=e?.firstWeekContainsDate??e?.locale?.options?.firstWeekContainsDate??r.firstWeekContainsDate??r.locale?.options?.firstWeekContainsDate??1,o=pe(n,e),s=h(n,0);return s.setFullYear(o,0,t),s.setHours(0,0,0,0),T(s,e)}function Ut(n,e){let r=l(n),t=T(r,e).getTime()-$t(r,e).getTime();return Math.round(t/j)+1}var Xt=(n,e)=>{switch(n){case"P":return e.date({width:"short"});case"PP":return e.date({width:"medium"});case"PPP":return e.date({width:"long"});case"PPPP":default:return e.date({width:"full"})}},Bt=(n,e)=>{switch(n){case"p":return e.time({width:"short"});case"pp":return e.time({width:"medium"});case"ppp":return e.time({width:"long"});case"pppp":default:return e.time({width:"full"})}},Xr=(n,e)=>{let r=n.match(/(P+)(p+)?/)||[],t=r[1],o=r[2];if(!o)return Xt(n,e);let s;switch(t){case"P":s=e.dateTime({width:"short"});break;case"PP":s=e.dateTime({width:"medium"});break;case"PPP":s=e.dateTime({width:"long"});break;case"PPPP":default:s=e.dateTime({width:"full"});break}return s.replace("{{date}}",Xt(t,e)).replace("{{time}}",Bt(o,e))},mt={p:Bt,P:Xr};var Br=/^D+$/,Gr=/^Y+$/,Zr=["D","DD","YY","YYYY"];function Gt(n){return Br.test(n)}function Zt(n){return Gr.test(n)}function pt(n,e,r){let t=Jr(n,e,r);if(console.warn(t),Zr.includes(n))throw new RangeError(t)}function Jr(n,e,r){let t=n[0]==="Y"?"years":"days of the month";return`Use \`${n.toLowerCase()}\` instead of \`${n}\` (in \`${e}\`) for formatting ${t} to the input \`${r}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}function Jt(){return Object.assign({},C())}function Kt(n){let r=l(n).getDay();return r===0&&(r=7),r}function er(n,e,r){let t;return Kr(e)?t=e:r=e,new Intl.DateTimeFormat(r?.locale,t).format(l(n))}function Kr(n){return n!==void 0&&!("locale"in n)}function tr(n,e,r){let t=0,o,s=l(n),i=l(e);if(r?.unit)o=r?.unit,o==="second"?t=U(s,i):o==="minute"?t=dt(s,i):o==="hour"?t=ft(s,i):o==="day"?t=le(s,i):o==="week"?t=lt(s,i):o==="month"?t=ut(s,i):o==="quarter"?t=fe(s,i):o==="year"&&(t=de(s,i));else{let f=U(s,i);Math.abs(f)0,t=r?e:1-e,o;if(t<=50)o=n||100;else{let s=t+50,i=Math.floor(s/100)*100,c=n>=s%100;o=n+i-(c?100:0)}return r?o:1-o}function De(n){return n%400===0||n%4===0&&n%100!==0}var ke=class extends u{priority=130;incompatibleTokens=["Y","R","u","w","I","i","e","c","t","T"];parse(e,r,t){let o=s=>({year:s,isTwoDigitYear:r==="yy"});switch(r){case"y":return y(d(4,e),o);case"yo":return y(t.ordinalNumber(e,{unit:"year"}),o);default:return y(d(r.length,e),o)}}validate(e,r){return r.isTwoDigitYear||r.year>0}set(e,r,t){let o=e.getFullYear();if(t.isTwoDigitYear){let i=be(t.year,o);return e.setFullYear(i,0,1),e.setHours(0,0,0,0),e}let s=!("era"in r)||r.era===1?t.year:1-t.year;return e.setFullYear(s,0,1),e.setHours(0,0,0,0),e}};var Pe=class extends u{priority=130;parse(e,r,t){let o=s=>({year:s,isTwoDigitYear:r==="YY"});switch(r){case"Y":return y(d(4,e),o);case"Yo":return y(t.ordinalNumber(e,{unit:"year"}),o);default:return y(d(r.length,e),o)}}validate(e,r){return r.isTwoDigitYear||r.year>0}set(e,r,t,o){let s=pe(e,o);if(t.isTwoDigitYear){let c=be(t.year,s);return e.setFullYear(c,0,o.firstWeekContainsDate),e.setHours(0,0,0,0),T(e,o)}let i=!("era"in r)||r.era===1?t.year:1-t.year;return e.setFullYear(i,0,o.firstWeekContainsDate),e.setHours(0,0,0,0),T(e,o)}incompatibleTokens=["y","R","u","Q","q","M","L","I","d","D","i","t","T"]};var Te=class extends u{priority=130;parse(e,r){return r==="R"?G(4,e):G(r.length,e)}set(e,r,t){let o=h(e,0);return o.setFullYear(t,0,4),o.setHours(0,0,0,0),Y(o)}incompatibleTokens=["G","y","Y","u","Q","q","M","L","w","d","D","e","c","t","T"]};var Oe=class extends u{priority=130;parse(e,r){return r==="u"?G(4,e):G(r.length,e)}set(e,r,t){return e.setFullYear(t,0,1),e.setHours(0,0,0,0),e}incompatibleTokens=["G","y","Y","R","w","I","i","e","c","t","T"]};var Me=class extends u{priority=120;parse(e,r,t){switch(r){case"Q":case"QQ":return d(r.length,e);case"Qo":return t.ordinalNumber(e,{unit:"quarter"});case"QQQ":return t.quarter(e,{width:"abbreviated",context:"formatting"})||t.quarter(e,{width:"narrow",context:"formatting"});case"QQQQQ":return t.quarter(e,{width:"narrow",context:"formatting"});case"QQQQ":default:return t.quarter(e,{width:"wide",context:"formatting"})||t.quarter(e,{width:"abbreviated",context:"formatting"})||t.quarter(e,{width:"narrow",context:"formatting"})}}validate(e,r){return r>=1&&r<=4}set(e,r,t){return e.setMonth((t-1)*3,1),e.setHours(0,0,0,0),e}incompatibleTokens=["Y","R","q","M","L","w","I","d","D","i","e","c","t","T"]};var ve=class extends u{priority=120;parse(e,r,t){switch(r){case"q":case"qq":return d(r.length,e);case"qo":return t.ordinalNumber(e,{unit:"quarter"});case"qqq":return t.quarter(e,{width:"abbreviated",context:"standalone"})||t.quarter(e,{width:"narrow",context:"standalone"});case"qqqqq":return t.quarter(e,{width:"narrow",context:"standalone"});case"qqqq":default:return t.quarter(e,{width:"wide",context:"standalone"})||t.quarter(e,{width:"abbreviated",context:"standalone"})||t.quarter(e,{width:"narrow",context:"standalone"})}}validate(e,r){return r>=1&&r<=4}set(e,r,t){return e.setMonth((t-1)*3,1),e.setHours(0,0,0,0),e}incompatibleTokens=["Y","R","Q","M","L","w","I","d","D","i","e","c","t","T"]};var Ie=class extends u{incompatibleTokens=["Y","R","q","Q","L","w","I","D","i","e","c","t","T"];priority=110;parse(e,r,t){let o=s=>s-1;switch(r){case"M":return y(p(w.month,e),o);case"MM":return y(d(2,e),o);case"Mo":return y(t.ordinalNumber(e,{unit:"month"}),o);case"MMM":return t.month(e,{width:"abbreviated",context:"formatting"})||t.month(e,{width:"narrow",context:"formatting"});case"MMMMM":return t.month(e,{width:"narrow",context:"formatting"});case"MMMM":default:return t.month(e,{width:"wide",context:"formatting"})||t.month(e,{width:"abbreviated",context:"formatting"})||t.month(e,{width:"narrow",context:"formatting"})}}validate(e,r){return r>=0&&r<=11}set(e,r,t){return e.setMonth(t,1),e.setHours(0,0,0,0),e}};var Ne=class extends u{priority=110;parse(e,r,t){let o=s=>s-1;switch(r){case"L":return y(p(w.month,e),o);case"LL":return y(d(2,e),o);case"Lo":return y(t.ordinalNumber(e,{unit:"month"}),o);case"LLL":return t.month(e,{width:"abbreviated",context:"standalone"})||t.month(e,{width:"narrow",context:"standalone"});case"LLLLL":return t.month(e,{width:"narrow",context:"standalone"});case"LLLL":default:return t.month(e,{width:"wide",context:"standalone"})||t.month(e,{width:"abbreviated",context:"standalone"})||t.month(e,{width:"narrow",context:"standalone"})}}validate(e,r){return r>=0&&r<=11}set(e,r,t){return e.setMonth(t,1),e.setHours(0,0,0,0),e}incompatibleTokens=["Y","R","q","Q","M","w","I","D","i","e","c","t","T"]};function nr(n,e,r){let t=l(n),o=Ut(t,r)-e;return t.setDate(t.getDate()-o*7),t}var Ye=class extends u{priority=100;parse(e,r,t){switch(r){case"w":return p(w.week,e);case"wo":return t.ordinalNumber(e,{unit:"week"});default:return d(r.length,e)}}validate(e,r){return r>=1&&r<=53}set(e,r,t,o){return T(nr(e,t,o),o)}incompatibleTokens=["y","R","u","q","Q","M","L","I","d","D","i","t","T"]};function or(n,e){let r=l(n),t=zt(r)-e;return r.setDate(r.getDate()-t*7),r}var We=class extends u{priority=100;parse(e,r,t){switch(r){case"I":return p(w.week,e);case"Io":return t.ordinalNumber(e,{unit:"week"});default:return d(r.length,e)}}validate(e,r){return r>=1&&r<=53}set(e,r,t){return Y(or(e,t))}incompatibleTokens=["y","Y","u","q","Q","M","L","w","d","D","e","c","t","T"]};var tn=[31,28,31,30,31,30,31,31,30,31,30,31],rn=[31,29,31,30,31,30,31,31,30,31,30,31],Ce=class extends u{priority=90;subPriority=1;parse(e,r,t){switch(r){case"d":return p(w.date,e);case"do":return t.ordinalNumber(e,{unit:"date"});default:return d(r.length,e)}}validate(e,r){let t=e.getFullYear(),o=De(t),s=e.getMonth();return o?r>=1&&r<=rn[s]:r>=1&&r<=tn[s]}set(e,r,t){return e.setDate(t),e.setHours(0,0,0,0),e}incompatibleTokens=["Y","R","q","Q","w","I","D","i","e","c","t","T"]};var Fe=class extends u{priority=90;subpriority=1;parse(e,r,t){switch(r){case"D":case"DD":return p(w.dayOfYear,e);case"Do":return t.ordinalNumber(e,{unit:"date"});default:return d(r.length,e)}}validate(e,r){let t=e.getFullYear();return De(t)?r>=1&&r<=366:r>=1&&r<=365}set(e,r,t){return e.setMonth(0,t),e.setHours(0,0,0,0),e}incompatibleTokens=["Y","R","q","Q","M","L","w","I","d","E","i","e","c","t","T"]};function J(n,e,r){let t=C(),o=r?.weekStartsOn??r?.locale?.options?.weekStartsOn??t.weekStartsOn??t.locale?.options?.weekStartsOn??0,s=l(n),i=s.getDay(),f=(e%7+7)%7,x=7-o,I=e<0||e>6?e-(i+x)%7:(f+x)%7-(i+x)%7;return ue(s,I)}var Ee=class extends u{priority=90;parse(e,r,t){switch(r){case"E":case"EE":case"EEE":return t.day(e,{width:"abbreviated",context:"formatting"})||t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"});case"EEEEE":return t.day(e,{width:"narrow",context:"formatting"});case"EEEEEE":return t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"});case"EEEE":default:return t.day(e,{width:"wide",context:"formatting"})||t.day(e,{width:"abbreviated",context:"formatting"})||t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"})}}validate(e,r){return r>=0&&r<=6}set(e,r,t,o){return e=J(e,t,o),e.setHours(0,0,0,0),e}incompatibleTokens=["D","i","e","c","t","T"]};var _e=class extends u{priority=90;parse(e,r,t,o){let s=i=>{let c=Math.floor((i-1)/7)*7;return(i+o.weekStartsOn+6)%7+c};switch(r){case"e":case"ee":return y(d(r.length,e),s);case"eo":return y(t.ordinalNumber(e,{unit:"day"}),s);case"eee":return t.day(e,{width:"abbreviated",context:"formatting"})||t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"});case"eeeee":return t.day(e,{width:"narrow",context:"formatting"});case"eeeeee":return t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"});case"eeee":default:return t.day(e,{width:"wide",context:"formatting"})||t.day(e,{width:"abbreviated",context:"formatting"})||t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"})}}validate(e,r){return r>=0&&r<=6}set(e,r,t,o){return e=J(e,t,o),e.setHours(0,0,0,0),e}incompatibleTokens=["y","R","u","q","Q","M","L","I","d","D","E","i","c","t","T"]};var Re=class extends u{priority=90;parse(e,r,t,o){let s=i=>{let c=Math.floor((i-1)/7)*7;return(i+o.weekStartsOn+6)%7+c};switch(r){case"c":case"cc":return y(d(r.length,e),s);case"co":return y(t.ordinalNumber(e,{unit:"day"}),s);case"ccc":return t.day(e,{width:"abbreviated",context:"standalone"})||t.day(e,{width:"short",context:"standalone"})||t.day(e,{width:"narrow",context:"standalone"});case"ccccc":return t.day(e,{width:"narrow",context:"standalone"});case"cccccc":return t.day(e,{width:"short",context:"standalone"})||t.day(e,{width:"narrow",context:"standalone"});case"cccc":default:return t.day(e,{width:"wide",context:"standalone"})||t.day(e,{width:"abbreviated",context:"standalone"})||t.day(e,{width:"short",context:"standalone"})||t.day(e,{width:"narrow",context:"standalone"})}}validate(e,r){return r>=0&&r<=6}set(e,r,t,o){return e=J(e,t,o),e.setHours(0,0,0,0),e}incompatibleTokens=["y","R","u","q","Q","M","L","I","d","D","E","i","e","t","T"]};function sr(n,e){let r=l(n),t=Kt(r),o=e-t;return ue(r,o)}var qe=class extends u{priority=90;parse(e,r,t){let o=s=>s===0?7:s;switch(r){case"i":case"ii":return d(r.length,e);case"io":return t.ordinalNumber(e,{unit:"day"});case"iii":return y(t.day(e,{width:"abbreviated",context:"formatting"})||t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"}),o);case"iiiii":return y(t.day(e,{width:"narrow",context:"formatting"}),o);case"iiiiii":return y(t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"}),o);case"iiii":default:return y(t.day(e,{width:"wide",context:"formatting"})||t.day(e,{width:"abbreviated",context:"formatting"})||t.day(e,{width:"short",context:"formatting"})||t.day(e,{width:"narrow",context:"formatting"}),o)}}validate(e,r){return r>=1&&r<=7}set(e,r,t){return e=sr(e,t),e.setHours(0,0,0,0),e}incompatibleTokens=["y","Y","u","q","Q","M","L","w","d","D","E","e","c","t","T"]};var He=class extends u{priority=80;parse(e,r,t){switch(r){case"a":case"aa":case"aaa":return t.dayPeriod(e,{width:"abbreviated",context:"formatting"})||t.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaaa":return t.dayPeriod(e,{width:"narrow",context:"formatting"});case"aaaa":default:return t.dayPeriod(e,{width:"wide",context:"formatting"})||t.dayPeriod(e,{width:"abbreviated",context:"formatting"})||t.dayPeriod(e,{width:"narrow",context:"formatting"})}}set(e,r,t){return e.setHours(Z(t),0,0,0),e}incompatibleTokens=["b","B","H","k","t","T"]};var Ae=class extends u{priority=80;parse(e,r,t){switch(r){case"b":case"bb":case"bbb":return t.dayPeriod(e,{width:"abbreviated",context:"formatting"})||t.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbbb":return t.dayPeriod(e,{width:"narrow",context:"formatting"});case"bbbb":default:return t.dayPeriod(e,{width:"wide",context:"formatting"})||t.dayPeriod(e,{width:"abbreviated",context:"formatting"})||t.dayPeriod(e,{width:"narrow",context:"formatting"})}}set(e,r,t){return e.setHours(Z(t),0,0,0),e}incompatibleTokens=["a","B","H","k","t","T"]};var Le=class extends u{priority=80;parse(e,r,t){switch(r){case"B":case"BB":case"BBB":return t.dayPeriod(e,{width:"abbreviated",context:"formatting"})||t.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBBB":return t.dayPeriod(e,{width:"narrow",context:"formatting"});case"BBBB":default:return t.dayPeriod(e,{width:"wide",context:"formatting"})||t.dayPeriod(e,{width:"abbreviated",context:"formatting"})||t.dayPeriod(e,{width:"narrow",context:"formatting"})}}set(e,r,t){return e.setHours(Z(t),0,0,0),e}incompatibleTokens=["a","b","t","T"]};var Se=class extends u{priority=70;parse(e,r,t){switch(r){case"h":return p(w.hour12h,e);case"ho":return t.ordinalNumber(e,{unit:"hour"});default:return d(r.length,e)}}validate(e,r){return r>=1&&r<=12}set(e,r,t){let o=e.getHours()>=12;return o&&t<12?e.setHours(t+12,0,0,0):!o&&t===12?e.setHours(0,0,0,0):e.setHours(t,0,0,0),e}incompatibleTokens=["H","K","k","t","T"]};var Qe=class extends u{priority=70;parse(e,r,t){switch(r){case"H":return p(w.hour23h,e);case"Ho":return t.ordinalNumber(e,{unit:"hour"});default:return d(r.length,e)}}validate(e,r){return r>=0&&r<=23}set(e,r,t){return e.setHours(t,0,0,0),e}incompatibleTokens=["a","b","h","K","k","t","T"]};var Ve=class extends u{priority=70;parse(e,r,t){switch(r){case"K":return p(w.hour11h,e);case"Ko":return t.ordinalNumber(e,{unit:"hour"});default:return d(r.length,e)}}validate(e,r){return r>=0&&r<=11}set(e,r,t){return e.getHours()>=12&&t<12?e.setHours(t+12,0,0,0):e.setHours(t,0,0,0),e}incompatibleTokens=["h","H","k","t","T"]};var je=class extends u{priority=70;parse(e,r,t){switch(r){case"k":return p(w.hour24h,e);case"ko":return t.ordinalNumber(e,{unit:"hour"});default:return d(r.length,e)}}validate(e,r){return r>=1&&r<=24}set(e,r,t){let o=t<=24?t%24:t;return e.setHours(o,0,0,0),e}incompatibleTokens=["a","b","h","H","K","t","T"]};var ze=class extends u{priority=60;parse(e,r,t){switch(r){case"m":return p(w.minute,e);case"mo":return t.ordinalNumber(e,{unit:"minute"});default:return d(r.length,e)}}validate(e,r){return r>=0&&r<=59}set(e,r,t){return e.setMinutes(t,0,0),e}incompatibleTokens=["t","T"]};var $e=class extends u{priority=50;parse(e,r,t){switch(r){case"s":return p(w.second,e);case"so":return t.ordinalNumber(e,{unit:"second"});default:return d(r.length,e)}}validate(e,r){return r>=0&&r<=59}set(e,r,t){return e.setSeconds(t,0),e}incompatibleTokens=["t","T"]};var Ue=class extends u{priority=30;parse(e,r){let t=o=>Math.floor(o*Math.pow(10,-r.length+3));return y(d(r.length,e),t)}set(e,r,t){return e.setMilliseconds(t),e}incompatibleTokens=["t","T"]};var Xe=class extends u{priority=10;parse(e,r){switch(r){case"X":return v(M.basicOptionalMinutes,e);case"XX":return v(M.basic,e);case"XXXX":return v(M.basicOptionalSeconds,e);case"XXXXX":return v(M.extendedOptionalSeconds,e);case"XXX":default:return v(M.extended,e)}}set(e,r,t){return r.timestampIsSet?e:h(e,e.getTime()-F(e)-t)}incompatibleTokens=["t","T","x"]};var Be=class extends u{priority=10;parse(e,r){switch(r){case"x":return v(M.basicOptionalMinutes,e);case"xx":return v(M.basic,e);case"xxxx":return v(M.basicOptionalSeconds,e);case"xxxxx":return v(M.extendedOptionalSeconds,e);case"xxx":default:return v(M.extended,e)}}set(e,r,t){return r.timestampIsSet?e:h(e,e.getTime()-F(e)-t)}incompatibleTokens=["t","T","X"]};var Ge=class extends u{priority=40;parse(e){return ye(e)}set(e,r,t){return[h(e,t*1e3),{timestampIsSet:!0}]}incompatibleTokens="*"};var Ze=class extends u{priority=20;parse(e){return ye(e)}set(e,r,t){return[h(e,t),{timestampIsSet:!0}]}incompatibleTokens="*"};var ir={G:new xe,y:new ke,Y:new Pe,R:new Te,u:new Oe,Q:new Me,q:new ve,M:new Ie,L:new Ne,w:new Ye,I:new We,d:new Ce,D:new Fe,E:new Ee,e:new _e,c:new Re,i:new qe,a:new He,b:new Ae,B:new Le,h:new Se,H:new Qe,K:new Ve,k:new je,m:new ze,s:new $e,S:new Ue,X:new Xe,x:new Be,t:new Ge,T:new Ze};var nn=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,on=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,sn=/^'([^]*?)'?$/,an=/''/g,un=/\S/,cn=/[a-zA-Z]/;function ar(n,e,r,t){let o=Jt(),s=t?.locale??o.locale??jt,i=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,c=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0;if(e==="")return n===""?l(r):h(r,NaN);let f={firstWeekContainsDate:i,weekStartsOn:c,locale:s},x=[new ge],I=e.match(on).map(m=>{let D=m[0];if(D in mt){let W=mt[D];return W(m,s.formatLong)}return m}).join("").match(nn),P=[];for(let m of I){!t?.useAdditionalWeekYearTokens&&Zt(m)&&pt(m,e,n),!t?.useAdditionalDayOfYearTokens&&Gt(m)&&pt(m,e,n);let D=m[0],W=ir[D];if(W){let{incompatibleTokens:wt}=W;if(Array.isArray(wt)){let gt=P.find(xt=>wt.includes(xt.token)||xt.token===D);if(gt)throw new RangeError(`The format string mustn't contain \`${gt.fullToken}\` and \`${m}\` at the same time`)}else if(W.incompatibleTokens==="*"&&P.length>0)throw new RangeError(`The format string mustn't contain \`${m}\` and any other token at the same time`);P.push({token:D,fullToken:m});let et=W.run(n,m,s.match,f);if(!et)return h(r,NaN);x.push(et.setter),n=et.rest}else{if(D.match(cn))throw new RangeError("Format string contains an unescaped latin alphabet character `"+D+"`");if(m==="''"?m="'":D==="'"&&(m=ln(m)),n.indexOf(m)===0)n=n.slice(m.length);else return h(r,NaN)}}if(n.length>0&&un.test(n))return h(r,NaN);let Ke=x.map(m=>m.priority).sort((m,D)=>D-m).filter((m,D,W)=>W.indexOf(m)===D).map(m=>x.filter(D=>D.priority===m).sort((D,W)=>W.subPriority-D.subPriority)).map(m=>m[0]),_=l(r);if(isNaN(_.getTime()))return h(r,NaN);let R={};for(let m of Ke){if(!m.validate(_,f))return h(r,NaN);let D=m.set(_,R,f);Array.isArray(D)?(_=D[0],Object.assign(R,D[1])):_=D}return h(r,_)}function ln(n){return n.match(sn)[1].replace(an,"'")}function ur(n,e){let r=e?.additionalDigits??2,t=pn(n),o;if(t.date){let f=hn(t.date,r);o=wn(f.restDateString,f.year)}if(!o||isNaN(o.getTime()))return new Date(NaN);let s=o.getTime(),i=0,c;if(t.time&&(i=gn(t.time),isNaN(i)))return new Date(NaN);if(t.timezone){if(c=xn(t.timezone),isNaN(c))return new Date(NaN)}else{let f=new Date(s+i),x=new Date(0);return x.setFullYear(f.getUTCFullYear(),f.getUTCMonth(),f.getUTCDate()),x.setHours(f.getUTCHours(),f.getUTCMinutes(),f.getUTCSeconds(),f.getUTCMilliseconds()),x}return new Date(s+i+c)}var Je={dateTimeDelimiter:/[T ]/,timeZoneDelimiter:/[Z ]/i,timezone:/([Z+-].*)$/},fn=/^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/,dn=/^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/,mn=/^([+-])(\d{2})(?::?(\d{2}))?$/;function pn(n){let e={},r=n.split(Je.dateTimeDelimiter),t;if(r.length>2)return e;if(/:/.test(r[0])?t=r[0]:(e.date=r[0],t=r[1],Je.timeZoneDelimiter.test(e.date)&&(e.date=n.split(Je.timeZoneDelimiter)[0],t=n.substr(e.date.length,n.length))),t){let o=Je.timezone.exec(t);o?(e.time=t.replace(o[1],""),e.timezone=o[1]):e.time=t}return e}function hn(n,e){let r=new RegExp("^(?:(\\d{4}|[+-]\\d{"+(4+e)+"})|(\\d{2}|[+-]\\d{"+(2+e)+"})$)"),t=n.match(r);if(!t)return{year:NaN,restDateString:""};let o=t[1]?parseInt(t[1]):null,s=t[2]?parseInt(t[2]):null;return{year:s===null?o:s*100,restDateString:n.slice((t[1]||t[2]).length)}}function wn(n,e){if(e===null)return new Date(NaN);let r=n.match(fn);if(!r)return new Date(NaN);let t=!!r[4],o=ne(r[1]),s=ne(r[2])-1,i=ne(r[3]),c=ne(r[4]),f=ne(r[5])-1;if(t)return Pn(e,c,f)?yn(e,c,f):new Date(NaN);{let x=new Date(0);return!Dn(e,s,i)||!kn(e,o)?new Date(NaN):(x.setUTCFullYear(e,s,Math.max(o,i)),x)}}function ne(n){return n?parseInt(n):1}function gn(n){let e=n.match(dn);if(!e)return NaN;let r=ht(e[1]),t=ht(e[2]),o=ht(e[3]);return Tn(r,t,o)?r*L+t*A+o*1e3:NaN}function ht(n){return n&&parseFloat(n.replace(",","."))||0}function xn(n){if(n==="Z")return 0;let e=n.match(mn);if(!e)return 0;let r=e[1]==="+"?-1:1,t=parseInt(e[2]),o=e[3]&&parseInt(e[3])||0;return On(t,o)?r*(t*L+o*A):NaN}function yn(n,e,r){let t=new Date(0);t.setUTCFullYear(n,0,4);let o=t.getUTCDay()||7,s=(e-1)*7+r+1-o;return t.setUTCDate(t.getUTCDate()+s),t}var bn=[31,null,31,30,31,30,31,31,30,31,30,31];function cr(n){return n%400===0||n%4===0&&n%100!==0}function Dn(n,e,r){return e>=0&&e<=11&&r>=1&&r<=(bn[e]||(cr(n)?29:28))}function kn(n,e){return e>=1&&e<=(cr(n)?366:365)}function Pn(n,e,r){return e>=1&&e<=53&&r>=0&&r<=6}function Tn(n,e,r){return n===24?e===0&&r===0:r>=0&&r<60&&e>=0&&e<60&&n>=0&&n<25}function On(n,e){return e>=0&&e<=59}function Mn(n=1){let[e,r]=te(new Date),t=()=>{switch(typeof n=="function"?n():n){case 0:return 1e3;case 1:return 15*1e3;case 2:return 60*1e3;case 3:return 60*60*1e3}},o,s=()=>r(new Date);return V(()=>{typeof o<"u"&&(window.clearInterval(o),o=void 0);let i=t();H(new Date,re(e))<=i&&s(),o=window.setInterval(s,i)}),rt(()=>{typeof o<"u"&&(window.clearInterval(o),o=void 0)}),e}function bc(n){let[e,r]=te([],{equals:!1}),t=Q(()=>{let c=e();return c.length<1?2:c.reduce((f,x)=>f{let R=U(o(),P);return R<60?0:R<60*60?1:R<60*60*24?2:3}),_=Q(()=>qt(P,o())?tr(P,o()):er(P));V(()=>{c.hasAttribute("datetime")||c.setAttribute("datetime",P.toISOString())}),V(()=>{c.textContent=_()}),V(()=>{let R=Ke();r(m=>(m[x]=R,m))})}}export{Yn as a,V as b,rt as c,bc as d}; -//# sourceMappingURL=chunk-Q4ALCKUU.js.map diff --git a/themes/buck/source/chunk-Q4ALCKUU.js.map b/themes/buck/source/chunk-Q4ALCKUU.js.map deleted file mode 100644 index a923aa8..0000000 --- a/themes/buck/source/chunk-Q4ALCKUU.js.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../node_modules/.pnpm/solid-js@1.8.8/node_modules/solid-js/dist/solid.js", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/toDate.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/constructFrom.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/addDays.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/constants.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/_lib/defaultOptions.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/startOfWeek.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/startOfISOWeek.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getISOWeekYear.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/startOfDay.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInCalendarDays.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/startOfISOWeekYear.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/isSameDay.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInCalendarMonths.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getQuarter.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInCalendarQuarters.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInCalendarWeeks.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInCalendarYears.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInMilliseconds.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/_lib/roundingMethods.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInHours.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInMinutes.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/differenceInSeconds.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/en-US/_lib/formatDistance.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/en-US/_lib/formatLong.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/en-US/_lib/formatRelative.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/_lib/buildLocalizeFn.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/en-US/_lib/localize.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/_lib/buildMatchFn.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/_lib/buildMatchPatternFn.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/en-US/_lib/match.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/locale/en-US.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getISOWeek.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getWeekYear.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/startOfWeekYear.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getWeek.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/_lib/format/longFormatters.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/_lib/protectedTokens.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getDefaultOptions.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/getISODay.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/intlFormat.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/intlFormatDistance.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/transpose.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/Setter.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/Parser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/EraParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/constants.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/utils.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/YearParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/QuarterParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/MonthParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/setWeek.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/setISOWeek.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/DateParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/setDay.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/DayParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/setISODay.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/ISODayParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/MinuteParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/SecondParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse/_lib/parsers.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parse.mjs", "../node_modules/.pnpm/date-fns@3.1.0/node_modules/date-fns/parseISO.mjs", "../src/uxaddon/time.ts"], - "sourcesContent": ["let taskIdCounter = 1,\n isCallbackScheduled = false,\n isPerformingWork = false,\n taskQueue = [],\n currentTask = null,\n shouldYieldToHost = null,\n yieldInterval = 5,\n deadline = 0,\n maxYieldInterval = 300,\n scheduleCallback = null,\n scheduledCallback = null;\nconst maxSigned31BitInt = 1073741823;\nfunction setupScheduler() {\n const channel = new MessageChannel(),\n port = channel.port2;\n scheduleCallback = () => port.postMessage(null);\n channel.port1.onmessage = () => {\n if (scheduledCallback !== null) {\n const currentTime = performance.now();\n deadline = currentTime + yieldInterval;\n const hasTimeRemaining = true;\n try {\n const hasMoreWork = scheduledCallback(hasTimeRemaining, currentTime);\n if (!hasMoreWork) {\n scheduledCallback = null;\n } else port.postMessage(null);\n } catch (error) {\n port.postMessage(null);\n throw error;\n }\n }\n };\n if (navigator && navigator.scheduling && navigator.scheduling.isInputPending) {\n const scheduling = navigator.scheduling;\n shouldYieldToHost = () => {\n const currentTime = performance.now();\n if (currentTime >= deadline) {\n if (scheduling.isInputPending()) {\n return true;\n }\n return currentTime >= maxYieldInterval;\n } else {\n return false;\n }\n };\n } else {\n shouldYieldToHost = () => performance.now() >= deadline;\n }\n}\nfunction enqueue(taskQueue, task) {\n function findIndex() {\n let m = 0;\n let n = taskQueue.length - 1;\n while (m <= n) {\n const k = n + m >> 1;\n const cmp = task.expirationTime - taskQueue[k].expirationTime;\n if (cmp > 0) m = k + 1;else if (cmp < 0) n = k - 1;else return k;\n }\n return m;\n }\n taskQueue.splice(findIndex(), 0, task);\n}\nfunction requestCallback(fn, options) {\n if (!scheduleCallback) setupScheduler();\n let startTime = performance.now(),\n timeout = maxSigned31BitInt;\n if (options && options.timeout) timeout = options.timeout;\n const newTask = {\n id: taskIdCounter++,\n fn,\n startTime,\n expirationTime: startTime + timeout\n };\n enqueue(taskQueue, newTask);\n if (!isCallbackScheduled && !isPerformingWork) {\n isCallbackScheduled = true;\n scheduledCallback = flushWork;\n scheduleCallback();\n }\n return newTask;\n}\nfunction cancelCallback(task) {\n task.fn = null;\n}\nfunction flushWork(hasTimeRemaining, initialTime) {\n isCallbackScheduled = false;\n isPerformingWork = true;\n try {\n return workLoop(hasTimeRemaining, initialTime);\n } finally {\n currentTask = null;\n isPerformingWork = false;\n }\n}\nfunction workLoop(hasTimeRemaining, initialTime) {\n let currentTime = initialTime;\n currentTask = taskQueue[0] || null;\n while (currentTask !== null) {\n if (currentTask.expirationTime > currentTime && (!hasTimeRemaining || shouldYieldToHost())) {\n break;\n }\n const callback = currentTask.fn;\n if (callback !== null) {\n currentTask.fn = null;\n const didUserCallbackTimeout = currentTask.expirationTime <= currentTime;\n callback(didUserCallbackTimeout);\n currentTime = performance.now();\n if (currentTask === taskQueue[0]) {\n taskQueue.shift();\n }\n } else taskQueue.shift();\n currentTask = taskQueue[0] || null;\n }\n return currentTask !== null;\n}\n\nconst sharedConfig = {\n context: undefined,\n registry: undefined\n};\nfunction setHydrateContext(context) {\n sharedConfig.context = context;\n}\nfunction nextHydrateContext() {\n return {\n ...sharedConfig.context,\n id: `${sharedConfig.context.id}${sharedConfig.context.count++}-`,\n count: 0\n };\n}\n\nconst equalFn = (a, b) => a === b;\nconst $PROXY = Symbol(\"solid-proxy\");\nconst $TRACK = Symbol(\"solid-track\");\nconst $DEVCOMP = Symbol(\"solid-dev-component\");\nconst signalOptions = {\n equals: equalFn\n};\nlet ERROR = null;\nlet runEffects = runQueue;\nconst STALE = 1;\nconst PENDING = 2;\nconst UNOWNED = {\n owned: null,\n cleanups: null,\n context: null,\n owner: null\n};\nconst NO_INIT = {};\nvar Owner = null;\nlet Transition = null;\nlet Scheduler = null;\nlet ExternalSourceConfig = null;\nlet Listener = null;\nlet Updates = null;\nlet Effects = null;\nlet ExecCount = 0;\nfunction createRoot(fn, detachedOwner) {\n const listener = Listener,\n owner = Owner,\n unowned = fn.length === 0,\n current = detachedOwner === undefined ? owner : detachedOwner,\n root = unowned ? UNOWNED : {\n owned: null,\n cleanups: null,\n context: current ? current.context : null,\n owner: current\n },\n updateFn = unowned ? fn : () => fn(() => untrack(() => cleanNode(root)));\n Owner = root;\n Listener = null;\n try {\n return runUpdates(updateFn, true);\n } finally {\n Listener = listener;\n Owner = owner;\n }\n}\nfunction createSignal(value, options) {\n options = options ? Object.assign({}, signalOptions, options) : signalOptions;\n const s = {\n value,\n observers: null,\n observerSlots: null,\n comparator: options.equals || undefined\n };\n const setter = value => {\n if (typeof value === \"function\") {\n if (Transition && Transition.running && Transition.sources.has(s)) value = value(s.tValue);else value = value(s.value);\n }\n return writeSignal(s, value);\n };\n return [readSignal.bind(s), setter];\n}\nfunction createComputed(fn, value, options) {\n const c = createComputation(fn, value, true, STALE);\n if (Scheduler && Transition && Transition.running) Updates.push(c);else updateComputation(c);\n}\nfunction createRenderEffect(fn, value, options) {\n const c = createComputation(fn, value, false, STALE);\n if (Scheduler && Transition && Transition.running) Updates.push(c);else updateComputation(c);\n}\nfunction createEffect(fn, value, options) {\n runEffects = runUserEffects;\n const c = createComputation(fn, value, false, STALE),\n s = SuspenseContext && useContext(SuspenseContext);\n if (s) c.suspense = s;\n if (!options || !options.render) c.user = true;\n Effects ? Effects.push(c) : updateComputation(c);\n}\nfunction createReaction(onInvalidate, options) {\n let fn;\n const c = createComputation(() => {\n fn ? fn() : untrack(onInvalidate);\n fn = undefined;\n }, undefined, false, 0),\n s = SuspenseContext && useContext(SuspenseContext);\n if (s) c.suspense = s;\n c.user = true;\n return tracking => {\n fn = tracking;\n updateComputation(c);\n };\n}\nfunction createMemo(fn, value, options) {\n options = options ? Object.assign({}, signalOptions, options) : signalOptions;\n const c = createComputation(fn, value, true, 0);\n c.observers = null;\n c.observerSlots = null;\n c.comparator = options.equals || undefined;\n if (Scheduler && Transition && Transition.running) {\n c.tState = STALE;\n Updates.push(c);\n } else updateComputation(c);\n return readSignal.bind(c);\n}\nfunction isPromise(v) {\n return v && typeof v === \"object\" && \"then\" in v;\n}\nfunction createResource(pSource, pFetcher, pOptions) {\n let source;\n let fetcher;\n let options;\n if (arguments.length === 2 && typeof pFetcher === \"object\" || arguments.length === 1) {\n source = true;\n fetcher = pSource;\n options = pFetcher || {};\n } else {\n source = pSource;\n fetcher = pFetcher;\n options = pOptions || {};\n }\n let pr = null,\n initP = NO_INIT,\n id = null,\n loadedUnderTransition = false,\n scheduled = false,\n resolved = (\"initialValue\" in options),\n dynamic = typeof source === \"function\" && createMemo(source);\n const contexts = new Set(),\n [value, setValue] = (options.storage || createSignal)(options.initialValue),\n [error, setError] = createSignal(undefined),\n [track, trigger] = createSignal(undefined, {\n equals: false\n }),\n [state, setState] = createSignal(resolved ? \"ready\" : \"unresolved\");\n if (sharedConfig.context) {\n id = `${sharedConfig.context.id}${sharedConfig.context.count++}`;\n let v;\n if (options.ssrLoadFrom === \"initial\") initP = options.initialValue;else if (sharedConfig.load && (v = sharedConfig.load(id))) initP = v;\n }\n function loadEnd(p, v, error, key) {\n if (pr === p) {\n pr = null;\n key !== undefined && (resolved = true);\n if ((p === initP || v === initP) && options.onHydrated) queueMicrotask(() => options.onHydrated(key, {\n value: v\n }));\n initP = NO_INIT;\n if (Transition && p && loadedUnderTransition) {\n Transition.promises.delete(p);\n loadedUnderTransition = false;\n runUpdates(() => {\n Transition.running = true;\n completeLoad(v, error);\n }, false);\n } else completeLoad(v, error);\n }\n return v;\n }\n function completeLoad(v, err) {\n runUpdates(() => {\n if (err === undefined) setValue(() => v);\n setState(err !== undefined ? \"errored\" : resolved ? \"ready\" : \"unresolved\");\n setError(err);\n for (const c of contexts.keys()) c.decrement();\n contexts.clear();\n }, false);\n }\n function read() {\n const c = SuspenseContext && useContext(SuspenseContext),\n v = value(),\n err = error();\n if (err !== undefined && !pr) throw err;\n if (Listener && !Listener.user && c) {\n createComputed(() => {\n track();\n if (pr) {\n if (c.resolved && Transition && loadedUnderTransition) Transition.promises.add(pr);else if (!contexts.has(c)) {\n c.increment();\n contexts.add(c);\n }\n }\n });\n }\n return v;\n }\n function load(refetching = true) {\n if (refetching !== false && scheduled) return;\n scheduled = false;\n const lookup = dynamic ? dynamic() : source;\n loadedUnderTransition = Transition && Transition.running;\n if (lookup == null || lookup === false) {\n loadEnd(pr, untrack(value));\n return;\n }\n if (Transition && pr) Transition.promises.delete(pr);\n const p = initP !== NO_INIT ? initP : untrack(() => fetcher(lookup, {\n value: value(),\n refetching\n }));\n if (!isPromise(p)) {\n loadEnd(pr, p, undefined, lookup);\n return p;\n }\n pr = p;\n if (\"value\" in p) {\n if (p.status === \"success\") loadEnd(pr, p.value, undefined, lookup);else loadEnd(pr, undefined, undefined, lookup);\n return p;\n }\n scheduled = true;\n queueMicrotask(() => scheduled = false);\n runUpdates(() => {\n setState(resolved ? \"refreshing\" : \"pending\");\n trigger();\n }, false);\n return p.then(v => loadEnd(p, v, undefined, lookup), e => loadEnd(p, undefined, castError(e), lookup));\n }\n Object.defineProperties(read, {\n state: {\n get: () => state()\n },\n error: {\n get: () => error()\n },\n loading: {\n get() {\n const s = state();\n return s === \"pending\" || s === \"refreshing\";\n }\n },\n latest: {\n get() {\n if (!resolved) return read();\n const err = error();\n if (err && !pr) throw err;\n return value();\n }\n }\n });\n if (dynamic) createComputed(() => load(false));else load(false);\n return [read, {\n refetch: load,\n mutate: setValue\n }];\n}\nfunction createDeferred(source, options) {\n let t,\n timeout = options ? options.timeoutMs : undefined;\n const node = createComputation(() => {\n if (!t || !t.fn) t = requestCallback(() => setDeferred(() => node.value), timeout !== undefined ? {\n timeout\n } : undefined);\n return source();\n }, undefined, true);\n const [deferred, setDeferred] = createSignal(Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value, options);\n updateComputation(node);\n setDeferred(() => Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value);\n return deferred;\n}\nfunction createSelector(source, fn = equalFn, options) {\n const subs = new Map();\n const node = createComputation(p => {\n const v = source();\n for (const [key, val] of subs.entries()) if (fn(key, v) !== fn(key, p)) {\n for (const c of val.values()) {\n c.state = STALE;\n if (c.pure) Updates.push(c);else Effects.push(c);\n }\n }\n return v;\n }, undefined, true, STALE);\n updateComputation(node);\n return key => {\n const listener = Listener;\n if (listener) {\n let l;\n if (l = subs.get(key)) l.add(listener);else subs.set(key, l = new Set([listener]));\n onCleanup(() => {\n l.delete(listener);\n !l.size && subs.delete(key);\n });\n }\n return fn(key, Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value);\n };\n}\nfunction batch(fn) {\n return runUpdates(fn, false);\n}\nfunction untrack(fn) {\n if (!ExternalSourceConfig && Listener === null) return fn();\n const listener = Listener;\n Listener = null;\n try {\n if (ExternalSourceConfig) return ExternalSourceConfig.untrack(fn);\n return fn();\n } finally {\n Listener = listener;\n }\n}\nfunction on(deps, fn, options) {\n const isArray = Array.isArray(deps);\n let prevInput;\n let defer = options && options.defer;\n return prevValue => {\n let input;\n if (isArray) {\n input = Array(deps.length);\n for (let i = 0; i < deps.length; i++) input[i] = deps[i]();\n } else input = deps();\n if (defer) {\n defer = false;\n return undefined;\n }\n const result = untrack(() => fn(input, prevInput, prevValue));\n prevInput = input;\n return result;\n };\n}\nfunction onMount(fn) {\n createEffect(() => untrack(fn));\n}\nfunction onCleanup(fn) {\n if (Owner === null) ;else if (Owner.cleanups === null) Owner.cleanups = [fn];else Owner.cleanups.push(fn);\n return fn;\n}\nfunction catchError(fn, handler) {\n ERROR || (ERROR = Symbol(\"error\"));\n Owner = createComputation(undefined, undefined, true);\n Owner.context = {\n ...Owner.context,\n [ERROR]: [handler]\n };\n if (Transition && Transition.running) Transition.sources.add(Owner);\n try {\n return fn();\n } catch (err) {\n handleError(err);\n } finally {\n Owner = Owner.owner;\n }\n}\nfunction getListener() {\n return Listener;\n}\nfunction getOwner() {\n return Owner;\n}\nfunction runWithOwner(o, fn) {\n const prev = Owner;\n const prevListener = Listener;\n Owner = o;\n Listener = null;\n try {\n return runUpdates(fn, true);\n } catch (err) {\n handleError(err);\n } finally {\n Owner = prev;\n Listener = prevListener;\n }\n}\nfunction enableScheduling(scheduler = requestCallback) {\n Scheduler = scheduler;\n}\nfunction startTransition(fn) {\n if (Transition && Transition.running) {\n fn();\n return Transition.done;\n }\n const l = Listener;\n const o = Owner;\n return Promise.resolve().then(() => {\n Listener = l;\n Owner = o;\n let t;\n if (Scheduler || SuspenseContext) {\n t = Transition || (Transition = {\n sources: new Set(),\n effects: [],\n promises: new Set(),\n disposed: new Set(),\n queue: new Set(),\n running: true\n });\n t.done || (t.done = new Promise(res => t.resolve = res));\n t.running = true;\n }\n runUpdates(fn, false);\n Listener = Owner = null;\n return t ? t.done : undefined;\n });\n}\nconst [transPending, setTransPending] = /*@__PURE__*/createSignal(false);\nfunction useTransition() {\n return [transPending, startTransition];\n}\nfunction resumeEffects(e) {\n Effects.push.apply(Effects, e);\n e.length = 0;\n}\nfunction createContext(defaultValue, options) {\n const id = Symbol(\"context\");\n return {\n id,\n Provider: createProvider(id),\n defaultValue\n };\n}\nfunction useContext(context) {\n return Owner && Owner.context && Owner.context[context.id] !== undefined ? Owner.context[context.id] : context.defaultValue;\n}\nfunction children(fn) {\n const children = createMemo(fn);\n const memo = createMemo(() => resolveChildren(children()));\n memo.toArray = () => {\n const c = memo();\n return Array.isArray(c) ? c : c != null ? [c] : [];\n };\n return memo;\n}\nlet SuspenseContext;\nfunction getSuspenseContext() {\n return SuspenseContext || (SuspenseContext = createContext());\n}\nfunction enableExternalSource(factory, untrack = fn => fn()) {\n if (ExternalSourceConfig) {\n const {\n factory: oldFactory,\n untrack: oldUntrack\n } = ExternalSourceConfig;\n ExternalSourceConfig = {\n factory: (fn, trigger) => {\n const oldSource = oldFactory(fn, trigger);\n const source = factory(x => oldSource.track(x), trigger);\n return {\n track: x => source.track(x),\n dispose() {\n source.dispose();\n oldSource.dispose();\n }\n };\n },\n untrack: fn => oldUntrack(() => untrack(fn))\n };\n } else {\n ExternalSourceConfig = {\n factory,\n untrack\n };\n }\n}\nfunction readSignal() {\n const runningTransition = Transition && Transition.running;\n if (this.sources && (runningTransition ? this.tState : this.state)) {\n if ((runningTransition ? this.tState : this.state) === STALE) updateComputation(this);else {\n const updates = Updates;\n Updates = null;\n runUpdates(() => lookUpstream(this), false);\n Updates = updates;\n }\n }\n if (Listener) {\n const sSlot = this.observers ? this.observers.length : 0;\n if (!Listener.sources) {\n Listener.sources = [this];\n Listener.sourceSlots = [sSlot];\n } else {\n Listener.sources.push(this);\n Listener.sourceSlots.push(sSlot);\n }\n if (!this.observers) {\n this.observers = [Listener];\n this.observerSlots = [Listener.sources.length - 1];\n } else {\n this.observers.push(Listener);\n this.observerSlots.push(Listener.sources.length - 1);\n }\n }\n if (runningTransition && Transition.sources.has(this)) return this.tValue;\n return this.value;\n}\nfunction writeSignal(node, value, isComp) {\n let current = Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value;\n if (!node.comparator || !node.comparator(current, value)) {\n if (Transition) {\n const TransitionRunning = Transition.running;\n if (TransitionRunning || !isComp && Transition.sources.has(node)) {\n Transition.sources.add(node);\n node.tValue = value;\n }\n if (!TransitionRunning) node.value = value;\n } else node.value = value;\n if (node.observers && node.observers.length) {\n runUpdates(() => {\n for (let i = 0; i < node.observers.length; i += 1) {\n const o = node.observers[i];\n const TransitionRunning = Transition && Transition.running;\n if (TransitionRunning && Transition.disposed.has(o)) continue;\n if (TransitionRunning ? !o.tState : !o.state) {\n if (o.pure) Updates.push(o);else Effects.push(o);\n if (o.observers) markDownstream(o);\n }\n if (!TransitionRunning) o.state = STALE;else o.tState = STALE;\n }\n if (Updates.length > 10e5) {\n Updates = [];\n if (false) ;\n throw new Error();\n }\n }, false);\n }\n }\n return value;\n}\nfunction updateComputation(node) {\n if (!node.fn) return;\n cleanNode(node);\n const time = ExecCount;\n runComputation(node, Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value, time);\n if (Transition && !Transition.running && Transition.sources.has(node)) {\n queueMicrotask(() => {\n runUpdates(() => {\n Transition && (Transition.running = true);\n Listener = Owner = node;\n runComputation(node, node.tValue, time);\n Listener = Owner = null;\n }, false);\n });\n }\n}\nfunction runComputation(node, value, time) {\n let nextValue;\n const owner = Owner,\n listener = Listener;\n Listener = Owner = node;\n try {\n nextValue = node.fn(value);\n } catch (err) {\n if (node.pure) {\n if (Transition && Transition.running) {\n node.tState = STALE;\n node.tOwned && node.tOwned.forEach(cleanNode);\n node.tOwned = undefined;\n } else {\n node.state = STALE;\n node.owned && node.owned.forEach(cleanNode);\n node.owned = null;\n }\n }\n node.updatedAt = time + 1;\n return handleError(err);\n } finally {\n Listener = listener;\n Owner = owner;\n }\n if (!node.updatedAt || node.updatedAt <= time) {\n if (node.updatedAt != null && \"observers\" in node) {\n writeSignal(node, nextValue, true);\n } else if (Transition && Transition.running && node.pure) {\n Transition.sources.add(node);\n node.tValue = nextValue;\n } else node.value = nextValue;\n node.updatedAt = time;\n }\n}\nfunction createComputation(fn, init, pure, state = STALE, options) {\n const c = {\n fn,\n state: state,\n updatedAt: null,\n owned: null,\n sources: null,\n sourceSlots: null,\n cleanups: null,\n value: init,\n owner: Owner,\n context: Owner ? Owner.context : null,\n pure\n };\n if (Transition && Transition.running) {\n c.state = 0;\n c.tState = state;\n }\n if (Owner === null) ;else if (Owner !== UNOWNED) {\n if (Transition && Transition.running && Owner.pure) {\n if (!Owner.tOwned) Owner.tOwned = [c];else Owner.tOwned.push(c);\n } else {\n if (!Owner.owned) Owner.owned = [c];else Owner.owned.push(c);\n }\n }\n if (ExternalSourceConfig && c.fn) {\n const [track, trigger] = createSignal(undefined, {\n equals: false\n });\n const ordinary = ExternalSourceConfig.factory(c.fn, trigger);\n onCleanup(() => ordinary.dispose());\n const triggerInTransition = () => startTransition(trigger).then(() => inTransition.dispose());\n const inTransition = ExternalSourceConfig.factory(c.fn, triggerInTransition);\n c.fn = x => {\n track();\n return Transition && Transition.running ? inTransition.track(x) : ordinary.track(x);\n };\n }\n return c;\n}\nfunction runTop(node) {\n const runningTransition = Transition && Transition.running;\n if ((runningTransition ? node.tState : node.state) === 0) return;\n if ((runningTransition ? node.tState : node.state) === PENDING) return lookUpstream(node);\n if (node.suspense && untrack(node.suspense.inFallback)) return node.suspense.effects.push(node);\n const ancestors = [node];\n while ((node = node.owner) && (!node.updatedAt || node.updatedAt < ExecCount)) {\n if (runningTransition && Transition.disposed.has(node)) return;\n if (runningTransition ? node.tState : node.state) ancestors.push(node);\n }\n for (let i = ancestors.length - 1; i >= 0; i--) {\n node = ancestors[i];\n if (runningTransition) {\n let top = node,\n prev = ancestors[i + 1];\n while ((top = top.owner) && top !== prev) {\n if (Transition.disposed.has(top)) return;\n }\n }\n if ((runningTransition ? node.tState : node.state) === STALE) {\n updateComputation(node);\n } else if ((runningTransition ? node.tState : node.state) === PENDING) {\n const updates = Updates;\n Updates = null;\n runUpdates(() => lookUpstream(node, ancestors[0]), false);\n Updates = updates;\n }\n }\n}\nfunction runUpdates(fn, init) {\n if (Updates) return fn();\n let wait = false;\n if (!init) Updates = [];\n if (Effects) wait = true;else Effects = [];\n ExecCount++;\n try {\n const res = fn();\n completeUpdates(wait);\n return res;\n } catch (err) {\n if (!wait) Effects = null;\n Updates = null;\n handleError(err);\n }\n}\nfunction completeUpdates(wait) {\n if (Updates) {\n if (Scheduler && Transition && Transition.running) scheduleQueue(Updates);else runQueue(Updates);\n Updates = null;\n }\n if (wait) return;\n let res;\n if (Transition) {\n if (!Transition.promises.size && !Transition.queue.size) {\n const sources = Transition.sources;\n const disposed = Transition.disposed;\n Effects.push.apply(Effects, Transition.effects);\n res = Transition.resolve;\n for (const e of Effects) {\n \"tState\" in e && (e.state = e.tState);\n delete e.tState;\n }\n Transition = null;\n runUpdates(() => {\n for (const d of disposed) cleanNode(d);\n for (const v of sources) {\n v.value = v.tValue;\n if (v.owned) {\n for (let i = 0, len = v.owned.length; i < len; i++) cleanNode(v.owned[i]);\n }\n if (v.tOwned) v.owned = v.tOwned;\n delete v.tValue;\n delete v.tOwned;\n v.tState = 0;\n }\n setTransPending(false);\n }, false);\n } else if (Transition.running) {\n Transition.running = false;\n Transition.effects.push.apply(Transition.effects, Effects);\n Effects = null;\n setTransPending(true);\n return;\n }\n }\n const e = Effects;\n Effects = null;\n if (e.length) runUpdates(() => runEffects(e), false);\n if (res) res();\n}\nfunction runQueue(queue) {\n for (let i = 0; i < queue.length; i++) runTop(queue[i]);\n}\nfunction scheduleQueue(queue) {\n for (let i = 0; i < queue.length; i++) {\n const item = queue[i];\n const tasks = Transition.queue;\n if (!tasks.has(item)) {\n tasks.add(item);\n Scheduler(() => {\n tasks.delete(item);\n runUpdates(() => {\n Transition.running = true;\n runTop(item);\n }, false);\n Transition && (Transition.running = false);\n });\n }\n }\n}\nfunction runUserEffects(queue) {\n let i,\n userLength = 0;\n for (i = 0; i < queue.length; i++) {\n const e = queue[i];\n if (!e.user) runTop(e);else queue[userLength++] = e;\n }\n if (sharedConfig.context) {\n if (sharedConfig.count) {\n sharedConfig.effects || (sharedConfig.effects = []);\n sharedConfig.effects.push(...queue.slice(0, userLength));\n return;\n } else if (sharedConfig.effects) {\n queue = [...sharedConfig.effects, ...queue];\n userLength += sharedConfig.effects.length;\n delete sharedConfig.effects;\n }\n setHydrateContext();\n }\n for (i = 0; i < userLength; i++) runTop(queue[i]);\n}\nfunction lookUpstream(node, ignore) {\n const runningTransition = Transition && Transition.running;\n if (runningTransition) node.tState = 0;else node.state = 0;\n for (let i = 0; i < node.sources.length; i += 1) {\n const source = node.sources[i];\n if (source.sources) {\n const state = runningTransition ? source.tState : source.state;\n if (state === STALE) {\n if (source !== ignore && (!source.updatedAt || source.updatedAt < ExecCount)) runTop(source);\n } else if (state === PENDING) lookUpstream(source, ignore);\n }\n }\n}\nfunction markDownstream(node) {\n const runningTransition = Transition && Transition.running;\n for (let i = 0; i < node.observers.length; i += 1) {\n const o = node.observers[i];\n if (runningTransition ? !o.tState : !o.state) {\n if (runningTransition) o.tState = PENDING;else o.state = PENDING;\n if (o.pure) Updates.push(o);else Effects.push(o);\n o.observers && markDownstream(o);\n }\n }\n}\nfunction cleanNode(node) {\n let i;\n if (node.sources) {\n while (node.sources.length) {\n const source = node.sources.pop(),\n index = node.sourceSlots.pop(),\n obs = source.observers;\n if (obs && obs.length) {\n const n = obs.pop(),\n s = source.observerSlots.pop();\n if (index < obs.length) {\n n.sourceSlots[s] = index;\n obs[index] = n;\n source.observerSlots[index] = s;\n }\n }\n }\n }\n if (Transition && Transition.running && node.pure) {\n if (node.tOwned) {\n for (i = node.tOwned.length - 1; i >= 0; i--) cleanNode(node.tOwned[i]);\n delete node.tOwned;\n }\n reset(node, true);\n } else if (node.owned) {\n for (i = node.owned.length - 1; i >= 0; i--) cleanNode(node.owned[i]);\n node.owned = null;\n }\n if (node.cleanups) {\n for (i = node.cleanups.length - 1; i >= 0; i--) node.cleanups[i]();\n node.cleanups = null;\n }\n if (Transition && Transition.running) node.tState = 0;else node.state = 0;\n}\nfunction reset(node, top) {\n if (!top) {\n node.tState = 0;\n Transition.disposed.add(node);\n }\n if (node.owned) {\n for (let i = 0; i < node.owned.length; i++) reset(node.owned[i]);\n }\n}\nfunction castError(err) {\n if (err instanceof Error) return err;\n return new Error(typeof err === \"string\" ? err : \"Unknown error\", {\n cause: err\n });\n}\nfunction runErrors(err, fns, owner) {\n try {\n for (const f of fns) f(err);\n } catch (e) {\n handleError(e, owner && owner.owner || null);\n }\n}\nfunction handleError(err, owner = Owner) {\n const fns = ERROR && owner && owner.context && owner.context[ERROR];\n const error = castError(err);\n if (!fns) throw error;\n if (Effects) Effects.push({\n fn() {\n runErrors(error, fns, owner);\n },\n state: STALE\n });else runErrors(error, fns, owner);\n}\nfunction resolveChildren(children) {\n if (typeof children === \"function\" && !children.length) return resolveChildren(children());\n if (Array.isArray(children)) {\n const results = [];\n for (let i = 0; i < children.length; i++) {\n const result = resolveChildren(children[i]);\n Array.isArray(result) ? results.push.apply(results, result) : results.push(result);\n }\n return results;\n }\n return children;\n}\nfunction createProvider(id, options) {\n return function provider(props) {\n let res;\n createRenderEffect(() => res = untrack(() => {\n Owner.context = {\n ...Owner.context,\n [id]: props.value\n };\n return children(() => props.children);\n }), undefined);\n return res;\n };\n}\nfunction onError(fn) {\n ERROR || (ERROR = Symbol(\"error\"));\n if (Owner === null) ;else if (Owner.context === null || !Owner.context[ERROR]) {\n Owner.context = {\n ...Owner.context,\n [ERROR]: [fn]\n };\n mutateContext(Owner, ERROR, [fn]);\n } else Owner.context[ERROR].push(fn);\n}\nfunction mutateContext(o, key, value) {\n if (o.owned) {\n for (let i = 0; i < o.owned.length; i++) {\n if (o.owned[i].context === o.context) mutateContext(o.owned[i], key, value);\n if (!o.owned[i].context) {\n o.owned[i].context = o.context;\n mutateContext(o.owned[i], key, value);\n } else if (!o.owned[i].context[key]) {\n o.owned[i].context[key] = value;\n mutateContext(o.owned[i], key, value);\n }\n }\n }\n}\n\nfunction observable(input) {\n return {\n subscribe(observer) {\n if (!(observer instanceof Object) || observer == null) {\n throw new TypeError(\"Expected the observer to be an object.\");\n }\n const handler = typeof observer === \"function\" ? observer : observer.next && observer.next.bind(observer);\n if (!handler) {\n return {\n unsubscribe() {}\n };\n }\n const dispose = createRoot(disposer => {\n createEffect(() => {\n const v = input();\n untrack(() => handler(v));\n });\n return disposer;\n });\n if (getOwner()) onCleanup(dispose);\n return {\n unsubscribe() {\n dispose();\n }\n };\n },\n [Symbol.observable || \"@@observable\"]() {\n return this;\n }\n };\n}\nfunction from(producer) {\n const [s, set] = createSignal(undefined, {\n equals: false\n });\n if (\"subscribe\" in producer) {\n const unsub = producer.subscribe(v => set(() => v));\n onCleanup(() => \"unsubscribe\" in unsub ? unsub.unsubscribe() : unsub());\n } else {\n const clean = producer(set);\n onCleanup(clean);\n }\n return s;\n}\n\nconst FALLBACK = Symbol(\"fallback\");\nfunction dispose(d) {\n for (let i = 0; i < d.length; i++) d[i]();\n}\nfunction mapArray(list, mapFn, options = {}) {\n let items = [],\n mapped = [],\n disposers = [],\n len = 0,\n indexes = mapFn.length > 1 ? [] : null;\n onCleanup(() => dispose(disposers));\n return () => {\n let newItems = list() || [],\n i,\n j;\n newItems[$TRACK];\n return untrack(() => {\n let newLen = newItems.length,\n newIndices,\n newIndicesNext,\n temp,\n tempdisposers,\n tempIndexes,\n start,\n end,\n newEnd,\n item;\n if (newLen === 0) {\n if (len !== 0) {\n dispose(disposers);\n disposers = [];\n items = [];\n mapped = [];\n len = 0;\n indexes && (indexes = []);\n }\n if (options.fallback) {\n items = [FALLBACK];\n mapped[0] = createRoot(disposer => {\n disposers[0] = disposer;\n return options.fallback();\n });\n len = 1;\n }\n }\n else if (len === 0) {\n mapped = new Array(newLen);\n for (j = 0; j < newLen; j++) {\n items[j] = newItems[j];\n mapped[j] = createRoot(mapper);\n }\n len = newLen;\n } else {\n temp = new Array(newLen);\n tempdisposers = new Array(newLen);\n indexes && (tempIndexes = new Array(newLen));\n for (start = 0, end = Math.min(len, newLen); start < end && items[start] === newItems[start]; start++);\n for (end = len - 1, newEnd = newLen - 1; end >= start && newEnd >= start && items[end] === newItems[newEnd]; end--, newEnd--) {\n temp[newEnd] = mapped[end];\n tempdisposers[newEnd] = disposers[end];\n indexes && (tempIndexes[newEnd] = indexes[end]);\n }\n newIndices = new Map();\n newIndicesNext = new Array(newEnd + 1);\n for (j = newEnd; j >= start; j--) {\n item = newItems[j];\n i = newIndices.get(item);\n newIndicesNext[j] = i === undefined ? -1 : i;\n newIndices.set(item, j);\n }\n for (i = start; i <= end; i++) {\n item = items[i];\n j = newIndices.get(item);\n if (j !== undefined && j !== -1) {\n temp[j] = mapped[i];\n tempdisposers[j] = disposers[i];\n indexes && (tempIndexes[j] = indexes[i]);\n j = newIndicesNext[j];\n newIndices.set(item, j);\n } else disposers[i]();\n }\n for (j = start; j < newLen; j++) {\n if (j in temp) {\n mapped[j] = temp[j];\n disposers[j] = tempdisposers[j];\n if (indexes) {\n indexes[j] = tempIndexes[j];\n indexes[j](j);\n }\n } else mapped[j] = createRoot(mapper);\n }\n mapped = mapped.slice(0, len = newLen);\n items = newItems.slice(0);\n }\n return mapped;\n });\n function mapper(disposer) {\n disposers[j] = disposer;\n if (indexes) {\n const [s, set] = createSignal(j);\n indexes[j] = set;\n return mapFn(newItems[j], s);\n }\n return mapFn(newItems[j]);\n }\n };\n}\nfunction indexArray(list, mapFn, options = {}) {\n let items = [],\n mapped = [],\n disposers = [],\n signals = [],\n len = 0,\n i;\n onCleanup(() => dispose(disposers));\n return () => {\n const newItems = list() || [];\n newItems[$TRACK];\n return untrack(() => {\n if (newItems.length === 0) {\n if (len !== 0) {\n dispose(disposers);\n disposers = [];\n items = [];\n mapped = [];\n len = 0;\n signals = [];\n }\n if (options.fallback) {\n items = [FALLBACK];\n mapped[0] = createRoot(disposer => {\n disposers[0] = disposer;\n return options.fallback();\n });\n len = 1;\n }\n return mapped;\n }\n if (items[0] === FALLBACK) {\n disposers[0]();\n disposers = [];\n items = [];\n mapped = [];\n len = 0;\n }\n for (i = 0; i < newItems.length; i++) {\n if (i < items.length && items[i] !== newItems[i]) {\n signals[i](() => newItems[i]);\n } else if (i >= items.length) {\n mapped[i] = createRoot(mapper);\n }\n }\n for (; i < items.length; i++) {\n disposers[i]();\n }\n len = signals.length = disposers.length = newItems.length;\n items = newItems.slice(0);\n return mapped = mapped.slice(0, len);\n });\n function mapper(disposer) {\n disposers[i] = disposer;\n const [s, set] = createSignal(newItems[i]);\n signals[i] = set;\n return mapFn(s, i);\n }\n };\n}\n\nlet hydrationEnabled = false;\nfunction enableHydration() {\n hydrationEnabled = true;\n}\nfunction createComponent(Comp, props) {\n if (hydrationEnabled) {\n if (sharedConfig.context) {\n const c = sharedConfig.context;\n setHydrateContext(nextHydrateContext());\n const r = untrack(() => Comp(props || {}));\n setHydrateContext(c);\n return r;\n }\n }\n return untrack(() => Comp(props || {}));\n}\nfunction trueFn() {\n return true;\n}\nconst propTraps = {\n get(_, property, receiver) {\n if (property === $PROXY) return receiver;\n return _.get(property);\n },\n has(_, property) {\n if (property === $PROXY) return true;\n return _.has(property);\n },\n set: trueFn,\n deleteProperty: trueFn,\n getOwnPropertyDescriptor(_, property) {\n return {\n configurable: true,\n enumerable: true,\n get() {\n return _.get(property);\n },\n set: trueFn,\n deleteProperty: trueFn\n };\n },\n ownKeys(_) {\n return _.keys();\n }\n};\nfunction resolveSource(s) {\n return !(s = typeof s === \"function\" ? s() : s) ? {} : s;\n}\nfunction resolveSources() {\n for (let i = 0, length = this.length; i < length; ++i) {\n const v = this[i]();\n if (v !== undefined) return v;\n }\n}\nfunction mergeProps(...sources) {\n let proxy = false;\n for (let i = 0; i < sources.length; i++) {\n const s = sources[i];\n proxy = proxy || !!s && $PROXY in s;\n sources[i] = typeof s === \"function\" ? (proxy = true, createMemo(s)) : s;\n }\n if (proxy) {\n return new Proxy({\n get(property) {\n for (let i = sources.length - 1; i >= 0; i--) {\n const v = resolveSource(sources[i])[property];\n if (v !== undefined) return v;\n }\n },\n has(property) {\n for (let i = sources.length - 1; i >= 0; i--) {\n if (property in resolveSource(sources[i])) return true;\n }\n return false;\n },\n keys() {\n const keys = [];\n for (let i = 0; i < sources.length; i++) keys.push(...Object.keys(resolveSource(sources[i])));\n return [...new Set(keys)];\n }\n }, propTraps);\n }\n const target = {};\n const sourcesMap = {};\n const defined = new Set();\n for (let i = sources.length - 1; i >= 0; i--) {\n const source = sources[i];\n if (!source) continue;\n const sourceKeys = Object.getOwnPropertyNames(source);\n for (let i = 0, length = sourceKeys.length; i < length; i++) {\n const key = sourceKeys[i];\n if (key === \"__proto__\" || key === \"constructor\") continue;\n const desc = Object.getOwnPropertyDescriptor(source, key);\n if (!defined.has(key)) {\n if (desc.get) {\n defined.add(key);\n Object.defineProperty(target, key, {\n enumerable: true,\n configurable: true,\n get: resolveSources.bind(sourcesMap[key] = [desc.get.bind(source)])\n });\n } else {\n if (desc.value !== undefined) defined.add(key);\n target[key] = desc.value;\n }\n } else {\n const sources = sourcesMap[key];\n if (sources) {\n if (desc.get) {\n sources.push(desc.get.bind(source));\n } else if (desc.value !== undefined) {\n sources.push(() => desc.value);\n }\n } else if (target[key] === undefined) target[key] = desc.value;\n }\n }\n }\n return target;\n}\nfunction splitProps(props, ...keys) {\n if ($PROXY in props) {\n const blocked = new Set(keys.length > 1 ? keys.flat() : keys[0]);\n const res = keys.map(k => {\n return new Proxy({\n get(property) {\n return k.includes(property) ? props[property] : undefined;\n },\n has(property) {\n return k.includes(property) && property in props;\n },\n keys() {\n return k.filter(property => property in props);\n }\n }, propTraps);\n });\n res.push(new Proxy({\n get(property) {\n return blocked.has(property) ? undefined : props[property];\n },\n has(property) {\n return blocked.has(property) ? false : property in props;\n },\n keys() {\n return Object.keys(props).filter(k => !blocked.has(k));\n }\n }, propTraps));\n return res;\n }\n const otherObject = {};\n const objects = keys.map(() => ({}));\n for (const propName of Object.getOwnPropertyNames(props)) {\n const desc = Object.getOwnPropertyDescriptor(props, propName);\n const isDefaultDesc = !desc.get && !desc.set && desc.enumerable && desc.writable && desc.configurable;\n let blocked = false;\n let objectIndex = 0;\n for (const k of keys) {\n if (k.includes(propName)) {\n blocked = true;\n isDefaultDesc ? objects[objectIndex][propName] = desc.value : Object.defineProperty(objects[objectIndex], propName, desc);\n }\n ++objectIndex;\n }\n if (!blocked) {\n isDefaultDesc ? otherObject[propName] = desc.value : Object.defineProperty(otherObject, propName, desc);\n }\n }\n return [...objects, otherObject];\n}\nfunction lazy(fn) {\n let comp;\n let p;\n const wrap = props => {\n const ctx = sharedConfig.context;\n if (ctx) {\n const [s, set] = createSignal();\n sharedConfig.count || (sharedConfig.count = 0);\n sharedConfig.count++;\n (p || (p = fn())).then(mod => {\n setHydrateContext(ctx);\n sharedConfig.count--;\n set(() => mod.default);\n setHydrateContext();\n });\n comp = s;\n } else if (!comp) {\n const [s] = createResource(() => (p || (p = fn())).then(mod => mod.default));\n comp = s;\n }\n let Comp;\n return createMemo(() => (Comp = comp()) && untrack(() => {\n if (false) ;\n if (!ctx) return Comp(props);\n const c = sharedConfig.context;\n setHydrateContext(ctx);\n const r = Comp(props);\n setHydrateContext(c);\n return r;\n }));\n };\n wrap.preload = () => p || ((p = fn()).then(mod => comp = () => mod.default), p);\n return wrap;\n}\nlet counter = 0;\nfunction createUniqueId() {\n const ctx = sharedConfig.context;\n return ctx ? `${ctx.id}${ctx.count++}` : `cl-${counter++}`;\n}\n\nconst narrowedError = name => `Stale read from <${name}>.`;\nfunction For(props) {\n const fallback = \"fallback\" in props && {\n fallback: () => props.fallback\n };\n return createMemo(mapArray(() => props.each, props.children, fallback || undefined));\n}\nfunction Index(props) {\n const fallback = \"fallback\" in props && {\n fallback: () => props.fallback\n };\n return createMemo(indexArray(() => props.each, props.children, fallback || undefined));\n}\nfunction Show(props) {\n const keyed = props.keyed;\n const condition = createMemo(() => props.when, undefined, {\n equals: (a, b) => keyed ? a === b : !a === !b\n });\n return createMemo(() => {\n const c = condition();\n if (c) {\n const child = props.children;\n const fn = typeof child === \"function\" && child.length > 0;\n return fn ? untrack(() => child(keyed ? c : () => {\n if (!untrack(condition)) throw narrowedError(\"Show\");\n return props.when;\n })) : child;\n }\n return props.fallback;\n }, undefined, undefined);\n}\nfunction Switch(props) {\n let keyed = false;\n const equals = (a, b) => (keyed ? a[1] === b[1] : !a[1] === !b[1]) && a[2] === b[2];\n const conditions = children(() => props.children),\n evalConditions = createMemo(() => {\n let conds = conditions();\n if (!Array.isArray(conds)) conds = [conds];\n for (let i = 0; i < conds.length; i++) {\n const c = conds[i].when;\n if (c) {\n keyed = !!conds[i].keyed;\n return [i, c, conds[i]];\n }\n }\n return [-1];\n }, undefined, {\n equals\n });\n return createMemo(() => {\n const [index, when, cond] = evalConditions();\n if (index < 0) return props.fallback;\n const c = cond.children;\n const fn = typeof c === \"function\" && c.length > 0;\n return fn ? untrack(() => c(keyed ? when : () => {\n if (untrack(evalConditions)[0] !== index) throw narrowedError(\"Match\");\n return cond.when;\n })) : c;\n }, undefined, undefined);\n}\nfunction Match(props) {\n return props;\n}\nlet Errors;\nfunction resetErrorBoundaries() {\n Errors && [...Errors].forEach(fn => fn());\n}\nfunction ErrorBoundary(props) {\n let err;\n if (sharedConfig.context && sharedConfig.load) err = sharedConfig.load(sharedConfig.context.id + sharedConfig.context.count);\n const [errored, setErrored] = createSignal(err, undefined);\n Errors || (Errors = new Set());\n Errors.add(setErrored);\n onCleanup(() => Errors.delete(setErrored));\n return createMemo(() => {\n let e;\n if (e = errored()) {\n const f = props.fallback;\n return typeof f === \"function\" && f.length ? untrack(() => f(e, () => setErrored())) : f;\n }\n return catchError(() => props.children, setErrored);\n }, undefined, undefined);\n}\n\nconst suspenseListEquals = (a, b) => a.showContent === b.showContent && a.showFallback === b.showFallback;\nconst SuspenseListContext = createContext();\nfunction SuspenseList(props) {\n let [wrapper, setWrapper] = createSignal(() => ({\n inFallback: false\n })),\n show;\n const listContext = useContext(SuspenseListContext);\n const [registry, setRegistry] = createSignal([]);\n if (listContext) {\n show = listContext.register(createMemo(() => wrapper()().inFallback));\n }\n const resolved = createMemo(prev => {\n const reveal = props.revealOrder,\n tail = props.tail,\n {\n showContent = true,\n showFallback = true\n } = show ? show() : {},\n reg = registry(),\n reverse = reveal === \"backwards\";\n if (reveal === \"together\") {\n const all = reg.every(inFallback => !inFallback());\n const res = reg.map(() => ({\n showContent: all && showContent,\n showFallback\n }));\n res.inFallback = !all;\n return res;\n }\n let stop = false;\n let inFallback = prev.inFallback;\n const res = [];\n for (let i = 0, len = reg.length; i < len; i++) {\n const n = reverse ? len - i - 1 : i,\n s = reg[n]();\n if (!stop && !s) {\n res[n] = {\n showContent,\n showFallback\n };\n } else {\n const next = !stop;\n if (next) inFallback = true;\n res[n] = {\n showContent: next,\n showFallback: !tail || next && tail === \"collapsed\" ? showFallback : false\n };\n stop = true;\n }\n }\n if (!stop) inFallback = false;\n res.inFallback = inFallback;\n return res;\n }, {\n inFallback: false\n });\n setWrapper(() => resolved);\n return createComponent(SuspenseListContext.Provider, {\n value: {\n register: inFallback => {\n let index;\n setRegistry(registry => {\n index = registry.length;\n return [...registry, inFallback];\n });\n return createMemo(() => resolved()[index], undefined, {\n equals: suspenseListEquals\n });\n }\n },\n get children() {\n return props.children;\n }\n });\n}\nfunction Suspense(props) {\n let counter = 0,\n show,\n ctx,\n p,\n flicker,\n error;\n const [inFallback, setFallback] = createSignal(false),\n SuspenseContext = getSuspenseContext(),\n store = {\n increment: () => {\n if (++counter === 1) setFallback(true);\n },\n decrement: () => {\n if (--counter === 0) setFallback(false);\n },\n inFallback,\n effects: [],\n resolved: false\n },\n owner = getOwner();\n if (sharedConfig.context && sharedConfig.load) {\n const key = sharedConfig.context.id + sharedConfig.context.count;\n let ref = sharedConfig.load(key);\n if (ref && (typeof ref !== \"object\" || ref.status !== \"success\")) p = ref;\n if (p && p !== \"$$f\") {\n const [s, set] = createSignal(undefined, {\n equals: false\n });\n flicker = s;\n p.then(() => {\n sharedConfig.gather(key);\n setHydrateContext(ctx);\n set();\n setHydrateContext();\n }).catch(err => {\n if (err || sharedConfig.done) {\n err && (error = err);\n return set();\n }\n });\n }\n }\n const listContext = useContext(SuspenseListContext);\n if (listContext) show = listContext.register(store.inFallback);\n let dispose;\n onCleanup(() => dispose && dispose());\n return createComponent(SuspenseContext.Provider, {\n value: store,\n get children() {\n return createMemo(() => {\n if (error) throw error;\n ctx = sharedConfig.context;\n if (flicker) {\n flicker();\n return flicker = undefined;\n }\n if (ctx && p === \"$$f\") setHydrateContext();\n const rendered = createMemo(() => props.children);\n return createMemo(prev => {\n const inFallback = store.inFallback(),\n {\n showContent = true,\n showFallback = true\n } = show ? show() : {};\n if ((!inFallback || p && p !== \"$$f\") && showContent) {\n store.resolved = true;\n dispose && dispose();\n dispose = ctx = p = undefined;\n resumeEffects(store.effects);\n return rendered();\n }\n if (!showFallback) return;\n if (dispose) return prev;\n return createRoot(disposer => {\n dispose = disposer;\n if (ctx) {\n setHydrateContext({\n id: ctx.id + \"f\",\n count: 0\n });\n ctx = undefined;\n }\n return props.fallback;\n }, owner);\n });\n });\n }\n });\n}\n\nconst DEV = undefined;\n\nexport { $DEVCOMP, $PROXY, $TRACK, DEV, ErrorBoundary, For, Index, Match, Show, Suspense, SuspenseList, Switch, batch, cancelCallback, catchError, children, createComponent, createComputed, createContext, createDeferred, createEffect, createMemo, createReaction, createRenderEffect, createResource, createRoot, createSelector, createSignal, createUniqueId, enableExternalSource, enableHydration, enableScheduling, equalFn, from, getListener, getOwner, indexArray, lazy, mapArray, mergeProps, observable, on, onCleanup, onError, onMount, requestCallback, resetErrorBoundaries, runWithOwner, sharedConfig, splitProps, startTransition, untrack, useContext, useTransition };\n", "/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param argument - The value to convert\n *\n * @returns The parsed date in the local time zone\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport function toDate(argument) {\n const argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (\n argument instanceof Date ||\n (typeof argument === \"object\" && argStr === \"[object Date]\")\n ) {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new argument.constructor(+argument);\n } else if (\n typeof argument === \"number\" ||\n argStr === \"[object Number]\" ||\n typeof argument === \"string\" ||\n argStr === \"[object String]\"\n ) {\n // TODO: Can we get rid of as?\n return new Date(argument);\n } else {\n // TODO: Can we get rid of as?\n return new Date(NaN);\n }\n}\n\n// Fallback for modularized imports:\nexport default toDate;\n", "/**\n * @name constructFrom\n * @category Generic Helpers\n * @summary Constructs a date using the reference date and the value\n *\n * @description\n * The function constructs a new date using the constructor from the reference\n * date and the given value. It helps to build generic functions that accept\n * date extensions.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The reference date to take constructor from\n * @param value - The value to create the date\n *\n * @returns Date initialized using the given date and value\n *\n * @example\n * import { constructFrom } from 'date-fns'\n *\n * // A function that clones a date preserving the original type\n * function cloneDate Thu Sep 11 2014 00:00:00\n */\nexport function addDays(date, amount) {\n const _date = toDate(date);\n if (isNaN(amount)) return constructFrom(date, NaN);\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return _date;\n }\n _date.setDate(_date.getDate() + amount);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default addDays;\n", "/**\n * @module constants\n * @summary Useful constants\n * @description\n * Collection of useful date constants.\n *\n * The constants could be imported from `date-fns/constants`:\n *\n * ```ts\n * import { maxTime, minTime } from \"./constants/date-fns/constants\";\n *\n * function isAllowedTime(time) {\n * return time <= maxTime && time >= minTime;\n * }\n * ```\n */\n\n/**\n * @constant\n * @name daysInWeek\n * @summary Days in 1 week.\n */\nexport const daysInWeek = 7;\n\n/**\n * @constant\n * @name daysInYear\n * @summary Days in 1 year.\n *\n * @description\n * How many days in a year.\n *\n * One years equals 365.2425 days according to the formula:\n *\n * > Leap year occures every 4 years, except for years that are divisable by 100 and not divisable by 400.\n * > 1 mean year = (365+1/4-1/100+1/400) days = 365.2425 days\n */\nexport const daysInYear = 365.2425;\n\n/**\n * @constant\n * @name maxTime\n * @summary Maximum allowed time.\n *\n * @example\n * import { maxTime } from \"./constants/date-fns/constants\";\n *\n * const isValid = 8640000000000001 <= maxTime;\n * //=> false\n *\n * new Date(8640000000000001);\n * //=> Invalid Date\n */\nexport const maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000;\n\n/**\n * @constant\n * @name minTime\n * @summary Minimum allowed time.\n *\n * @example\n * import { minTime } from \"./constants/date-fns/constants\";\n *\n * const isValid = -8640000000000001 >= minTime;\n * //=> false\n *\n * new Date(-8640000000000001)\n * //=> Invalid Date\n */\nexport const minTime = -maxTime;\n\n/**\n * @constant\n * @name millisecondsInWeek\n * @summary Milliseconds in 1 week.\n */\nexport const millisecondsInWeek = 604800000;\n\n/**\n * @constant\n * @name millisecondsInDay\n * @summary Milliseconds in 1 day.\n */\nexport const millisecondsInDay = 86400000;\n\n/**\n * @constant\n * @name millisecondsInMinute\n * @summary Milliseconds in 1 minute\n */\nexport const millisecondsInMinute = 60000;\n\n/**\n * @constant\n * @name millisecondsInHour\n * @summary Milliseconds in 1 hour\n */\nexport const millisecondsInHour = 3600000;\n\n/**\n * @constant\n * @name millisecondsInSecond\n * @summary Milliseconds in 1 second\n */\nexport const millisecondsInSecond = 1000;\n\n/**\n * @constant\n * @name minutesInYear\n * @summary Minutes in 1 year.\n */\nexport const minutesInYear = 525600;\n\n/**\n * @constant\n * @name minutesInMonth\n * @summary Minutes in 1 month.\n */\nexport const minutesInMonth = 43200;\n\n/**\n * @constant\n * @name minutesInDay\n * @summary Minutes in 1 day.\n */\nexport const minutesInDay = 1440;\n\n/**\n * @constant\n * @name minutesInHour\n * @summary Minutes in 1 hour.\n */\nexport const minutesInHour = 60;\n\n/**\n * @constant\n * @name monthsInQuarter\n * @summary Months in 1 quarter.\n */\nexport const monthsInQuarter = 3;\n\n/**\n * @constant\n * @name monthsInYear\n * @summary Months in 1 year.\n */\nexport const monthsInYear = 12;\n\n/**\n * @constant\n * @name quartersInYear\n * @summary Quarters in 1 year\n */\nexport const quartersInYear = 4;\n\n/**\n * @constant\n * @name secondsInHour\n * @summary Seconds in 1 hour.\n */\nexport const secondsInHour = 3600;\n\n/**\n * @constant\n * @name secondsInMinute\n * @summary Seconds in 1 minute.\n */\nexport const secondsInMinute = 60;\n\n/**\n * @constant\n * @name secondsInDay\n * @summary Seconds in 1 day.\n */\nexport const secondsInDay = secondsInHour * 24;\n\n/**\n * @constant\n * @name secondsInWeek\n * @summary Seconds in 1 week.\n */\nexport const secondsInWeek = secondsInDay * 7;\n\n/**\n * @constant\n * @name secondsInYear\n * @summary Seconds in 1 year.\n */\nexport const secondsInYear = secondsInDay * daysInYear;\n\n/**\n * @constant\n * @name secondsInMonth\n * @summary Seconds in 1 month\n */\nexport const secondsInMonth = secondsInYear / 12;\n\n/**\n * @constant\n * @name secondsInQuarter\n * @summary Seconds in 1 quarter.\n */\nexport const secondsInQuarter = secondsInMonth * 3;\n", "let defaultOptions = {};\n\nexport function getDefaultOptions() {\n return defaultOptions;\n}\n\nexport function setDefaultOptions(newOptions) {\n defaultOptions = newOptions;\n}\n", "import { toDate } from \"./toDate.mjs\";\nimport { getDefaultOptions } from \"./_lib/defaultOptions.mjs\";\n\n/**\n * The {@link startOfWeek} function options.\n */\n\n/**\n * @name startOfWeek\n * @category Week Helpers\n * @summary Return the start of a week for the given date.\n *\n * @description\n * Return the start of a week for the given date.\n * The result will be in the local timezone.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The original date\n * @param options - An object with options\n *\n * @returns The start of a week\n *\n * @example\n * // The start of a week for 2 September 2014 11:55:00:\n * const result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Sun Aug 31 2014 00:00:00\n *\n * @example\n * // If the week starts on Monday, the start of the week for 2 September 2014 11:55:00:\n * const result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 })\n * //=> Mon Sep 01 2014 00:00:00\n */\nexport function startOfWeek(date, options) {\n const defaultOptions = getDefaultOptions();\n const weekStartsOn =\n options?.weekStartsOn ??\n options?.locale?.options?.weekStartsOn ??\n defaultOptions.weekStartsOn ??\n defaultOptions.locale?.options?.weekStartsOn ??\n 0;\n\n const _date = toDate(date);\n const day = _date.getDay();\n const diff = (day < weekStartsOn ? 7 : 0) + day - weekStartsOn;\n\n _date.setDate(_date.getDate() - diff);\n _date.setHours(0, 0, 0, 0);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default startOfWeek;\n", "import { startOfWeek } from \"./startOfWeek.mjs\";\n\n/**\n * @name startOfISOWeek\n * @category ISO Week Helpers\n * @summary Return the start of an ISO week for the given date.\n *\n * @description\n * Return the start of an ISO week for the given date.\n * The result will be in the local timezone.\n *\n * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The original date\n *\n * @returns The start of an ISO week\n *\n * @example\n * // The start of an ISO week for 2 September 2014 11:55:00:\n * const result = startOfISOWeek(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Mon Sep 01 2014 00:00:00\n */\nexport function startOfISOWeek(date) {\n return startOfWeek(date, { weekStartsOn: 1 });\n}\n\n// Fallback for modularized imports:\nexport default startOfISOWeek;\n", "import { constructFrom } from \"./constructFrom.mjs\";\nimport { startOfISOWeek } from \"./startOfISOWeek.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * @name getISOWeekYear\n * @category ISO Week-Numbering Year Helpers\n * @summary Get the ISO week-numbering year of the given date.\n *\n * @description\n * Get the ISO week-numbering year of the given date,\n * which always starts 3 days before the year's first Thursday.\n *\n * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The given date\n *\n * @returns The ISO week-numbering year\n *\n * @example\n * // Which ISO-week numbering year is 2 January 2005?\n * const result = getISOWeekYear(new Date(2005, 0, 2))\n * //=> 2004\n */\nexport function getISOWeekYear(date) {\n const _date = toDate(date);\n const year = _date.getFullYear();\n\n const fourthOfJanuaryOfNextYear = constructFrom(date, 0);\n fourthOfJanuaryOfNextYear.setFullYear(year + 1, 0, 4);\n fourthOfJanuaryOfNextYear.setHours(0, 0, 0, 0);\n const startOfNextYear = startOfISOWeek(fourthOfJanuaryOfNextYear);\n\n const fourthOfJanuaryOfThisYear = constructFrom(date, 0);\n fourthOfJanuaryOfThisYear.setFullYear(year, 0, 4);\n fourthOfJanuaryOfThisYear.setHours(0, 0, 0, 0);\n const startOfThisYear = startOfISOWeek(fourthOfJanuaryOfThisYear);\n\n if (_date.getTime() >= startOfNextYear.getTime()) {\n return year + 1;\n } else if (_date.getTime() >= startOfThisYear.getTime()) {\n return year;\n } else {\n return year - 1;\n }\n}\n\n// Fallback for modularized imports:\nexport default getISOWeekYear;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * @name startOfDay\n * @category Day Helpers\n * @summary Return the start of a day for the given date.\n *\n * @description\n * Return the start of a day for the given date.\n * The result will be in the local timezone.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The original date\n *\n * @returns The start of a day\n *\n * @example\n * // The start of a day for 2 September 2014 11:55:00:\n * const result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Tue Sep 02 2014 00:00:00\n */\nexport function startOfDay(date) {\n const _date = toDate(date);\n _date.setHours(0, 0, 0, 0);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default startOfDay;\n", "/**\n * Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds.\n * They usually appear for dates that denote time before the timezones were introduced\n * (e.g. for 'Europe/Prague' timezone the offset is GMT+00:57:44 before 1 October 1891\n * and GMT+01:00:00 after that date)\n *\n * Date#getTimezoneOffset returns the offset in minutes and would return 57 for the example above,\n * which would lead to incorrect calculations.\n *\n * This function returns the timezone offset in milliseconds that takes seconds in account.\n */\nexport function getTimezoneOffsetInMilliseconds(date) {\n const utcDate = new Date(\n Date.UTC(\n date.getFullYear(),\n date.getMonth(),\n date.getDate(),\n date.getHours(),\n date.getMinutes(),\n date.getSeconds(),\n date.getMilliseconds(),\n ),\n );\n utcDate.setUTCFullYear(date.getFullYear());\n return date.getTime() - utcDate.getTime();\n}\n", "import { millisecondsInDay } from \"./constants.mjs\";\nimport { startOfDay } from \"./startOfDay.mjs\";\nimport { getTimezoneOffsetInMilliseconds } from \"./_lib/getTimezoneOffsetInMilliseconds.mjs\";\n\n/**\n * @name differenceInCalendarDays\n * @category Day Helpers\n * @summary Get the number of calendar days between the given dates.\n *\n * @description\n * Get the number of calendar days between the given dates. This means that the times are removed\n * from the dates and then the difference in days is calculated.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n *\n * @returns The number of calendar days\n *\n * @example\n * // How many calendar days are between\n * // 2 July 2011 23:00:00 and 2 July 2012 00:00:00?\n * const result = differenceInCalendarDays(\n * new Date(2012, 6, 2, 0, 0),\n * new Date(2011, 6, 2, 23, 0)\n * )\n * //=> 366\n * // How many calendar days are between\n * // 2 July 2011 23:59:00 and 3 July 2011 00:01:00?\n * const result = differenceInCalendarDays(\n * new Date(2011, 6, 3, 0, 1),\n * new Date(2011, 6, 2, 23, 59)\n * )\n * //=> 1\n */\nexport function differenceInCalendarDays(dateLeft, dateRight) {\n const startOfDayLeft = startOfDay(dateLeft);\n const startOfDayRight = startOfDay(dateRight);\n\n const timestampLeft =\n startOfDayLeft.getTime() - getTimezoneOffsetInMilliseconds(startOfDayLeft);\n const timestampRight =\n startOfDayRight.getTime() -\n getTimezoneOffsetInMilliseconds(startOfDayRight);\n\n // Round the number of days to the nearest integer\n // because the number of milliseconds in a day is not constant\n // (e.g. it's different in the day of the daylight saving time clock shift)\n return Math.round((timestampLeft - timestampRight) / millisecondsInDay);\n}\n\n// Fallback for modularized imports:\nexport default differenceInCalendarDays;\n", "import { getISOWeekYear } from \"./getISOWeekYear.mjs\";\nimport { startOfISOWeek } from \"./startOfISOWeek.mjs\";\nimport { constructFrom } from \"./constructFrom.mjs\";\n\n/**\n * @name startOfISOWeekYear\n * @category ISO Week-Numbering Year Helpers\n * @summary Return the start of an ISO week-numbering year for the given date.\n *\n * @description\n * Return the start of an ISO week-numbering year,\n * which always starts 3 days before the year's first Thursday.\n * The result will be in the local timezone.\n *\n * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The original date\n *\n * @returns The start of an ISO week-numbering year\n *\n * @example\n * // The start of an ISO week-numbering year for 2 July 2005:\n * const result = startOfISOWeekYear(new Date(2005, 6, 2))\n * //=> Mon Jan 03 2005 00:00:00\n */\nexport function startOfISOWeekYear(date) {\n const year = getISOWeekYear(date);\n const fourthOfJanuary = constructFrom(date, 0);\n fourthOfJanuary.setFullYear(year, 0, 4);\n fourthOfJanuary.setHours(0, 0, 0, 0);\n return startOfISOWeek(fourthOfJanuary);\n}\n\n// Fallback for modularized imports:\nexport default startOfISOWeekYear;\n", "import { startOfDay } from \"./startOfDay.mjs\";\n\n/**\n * @name isSameDay\n * @category Day Helpers\n * @summary Are the given dates in the same day (and year and month)?\n *\n * @description\n * Are the given dates in the same day (and year and month)?\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The first date to check\n * @param dateRight - The second date to check\n\n * @returns The dates are in the same day (and year and month)\n *\n * @example\n * // Are 4 September 06:00:00 and 4 September 18:00:00 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 18, 0))\n * //=> true\n *\n * @example\n * // Are 4 September and 4 October in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2014, 9, 4))\n * //=> false\n *\n * @example\n * // Are 4 September, 2014 and 4 September, 2015 in the same day?\n * const result = isSameDay(new Date(2014, 8, 4), new Date(2015, 8, 4))\n * //=> false\n */\nexport function isSameDay(dateLeft, dateRight) {\n const dateLeftStartOfDay = startOfDay(dateLeft);\n const dateRightStartOfDay = startOfDay(dateRight);\n\n return +dateLeftStartOfDay === +dateRightStartOfDay;\n}\n\n// Fallback for modularized imports:\nexport default isSameDay;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * @name differenceInCalendarMonths\n * @category Month Helpers\n * @summary Get the number of calendar months between the given dates.\n *\n * @description\n * Get the number of calendar months between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n *\n * @returns The number of calendar months\n *\n * @example\n * // How many calendar months are between 31 January 2014 and 1 September 2014?\n * const result = differenceInCalendarMonths(\n * new Date(2014, 8, 1),\n * new Date(2014, 0, 31)\n * )\n * //=> 8\n */\nexport function differenceInCalendarMonths(dateLeft, dateRight) {\n const _dateLeft = toDate(dateLeft);\n const _dateRight = toDate(dateRight);\n\n const yearDiff = _dateLeft.getFullYear() - _dateRight.getFullYear();\n const monthDiff = _dateLeft.getMonth() - _dateRight.getMonth();\n\n return yearDiff * 12 + monthDiff;\n}\n\n// Fallback for modularized imports:\nexport default differenceInCalendarMonths;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * @name getQuarter\n * @category Quarter Helpers\n * @summary Get the year quarter of the given date.\n *\n * @description\n * Get the year quarter of the given date.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The given date\n *\n * @returns The quarter\n *\n * @example\n * // Which quarter is 2 July 2014?\n * const result = getQuarter(new Date(2014, 6, 2))\n * //=> 3\n */\nexport function getQuarter(date) {\n const _date = toDate(date);\n const quarter = Math.floor(_date.getMonth() / 3) + 1;\n return quarter;\n}\n\n// Fallback for modularized imports:\nexport default getQuarter;\n", "import { getQuarter } from \"./getQuarter.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * @name differenceInCalendarQuarters\n * @category Quarter Helpers\n * @summary Get the number of calendar quarters between the given dates.\n *\n * @description\n * Get the number of calendar quarters between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n\n * @returns The number of calendar quarters\n *\n * @example\n * // How many calendar quarters are between 31 December 2013 and 2 July 2014?\n * const result = differenceInCalendarQuarters(\n * new Date(2014, 6, 2),\n * new Date(2013, 11, 31)\n * )\n * //=> 3\n */\nexport function differenceInCalendarQuarters(dateLeft, dateRight) {\n const _dateLeft = toDate(dateLeft);\n const _dateRight = toDate(dateRight);\n\n const yearDiff = _dateLeft.getFullYear() - _dateRight.getFullYear();\n const quarterDiff = getQuarter(_dateLeft) - getQuarter(_dateRight);\n\n return yearDiff * 4 + quarterDiff;\n}\n\n// Fallback for modularized imports:\nexport default differenceInCalendarQuarters;\n", "import { millisecondsInWeek } from \"./constants.mjs\";\nimport { startOfWeek } from \"./startOfWeek.mjs\";\nimport { getTimezoneOffsetInMilliseconds } from \"./_lib/getTimezoneOffsetInMilliseconds.mjs\";\n\n/**\n * The {@link differenceInCalendarWeeks} function options.\n */\n\n/**\n * @name differenceInCalendarWeeks\n * @category Week Helpers\n * @summary Get the number of calendar weeks between the given dates.\n *\n * @description\n * Get the number of calendar weeks between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n * @param options - An object with options.\n *\n * @returns The number of calendar weeks\n *\n * @example\n * // How many calendar weeks are between 5 July 2014 and 20 July 2014?\n * const result = differenceInCalendarWeeks(\n * new Date(2014, 6, 20),\n * new Date(2014, 6, 5)\n * )\n * //=> 3\n *\n * @example\n * // If the week starts on Monday,\n * // how many calendar weeks are between 5 July 2014 and 20 July 2014?\n * const result = differenceInCalendarWeeks(\n * new Date(2014, 6, 20),\n * new Date(2014, 6, 5),\n * { weekStartsOn: 1 }\n * )\n * //=> 2\n */\nexport function differenceInCalendarWeeks(dateLeft, dateRight, options) {\n const startOfWeekLeft = startOfWeek(dateLeft, options);\n const startOfWeekRight = startOfWeek(dateRight, options);\n\n const timestampLeft =\n startOfWeekLeft.getTime() -\n getTimezoneOffsetInMilliseconds(startOfWeekLeft);\n const timestampRight =\n startOfWeekRight.getTime() -\n getTimezoneOffsetInMilliseconds(startOfWeekRight);\n\n // Round the number of days to the nearest integer\n // because the number of milliseconds in a week is not constant\n // (e.g. it's different in the week of the daylight saving time clock shift)\n return Math.round((timestampLeft - timestampRight) / millisecondsInWeek);\n}\n\n// Fallback for modularized imports:\nexport default differenceInCalendarWeeks;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * @name differenceInCalendarYears\n * @category Year Helpers\n * @summary Get the number of calendar years between the given dates.\n *\n * @description\n * Get the number of calendar years between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n\n * @returns The number of calendar years\n *\n * @example\n * // How many calendar years are between 31 December 2013 and 11 February 2015?\n * const result = differenceInCalendarYears(\n * new Date(2015, 1, 11),\n * new Date(2013, 11, 31)\n * )\n * //=> 2\n */\nexport function differenceInCalendarYears(dateLeft, dateRight) {\n const _dateLeft = toDate(dateLeft);\n const _dateRight = toDate(dateRight);\n\n return _dateLeft.getFullYear() - _dateRight.getFullYear();\n}\n\n// Fallback for modularized imports:\nexport default differenceInCalendarYears;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * @name differenceInMilliseconds\n * @category Millisecond Helpers\n * @summary Get the number of milliseconds between the given dates.\n *\n * @description\n * Get the number of milliseconds between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n *\n * @returns The number of milliseconds\n *\n * @example\n * // How many milliseconds are between\n * // 2 July 2014 12:30:20.600 and 2 July 2014 12:30:21.700?\n * const result = differenceInMilliseconds(\n * new Date(2014, 6, 2, 12, 30, 21, 700),\n * new Date(2014, 6, 2, 12, 30, 20, 600)\n * )\n * //=> 1100\n */\nexport function differenceInMilliseconds(dateLeft, dateRight) {\n return toDate(dateLeft).getTime() - toDate(dateRight).getTime();\n}\n\n// Fallback for modularized imports:\nexport default differenceInMilliseconds;\n", "export function getRoundingMethod(method) {\n return method ? Math[method] : Math.trunc;\n}\n", "import { millisecondsInHour } from \"./constants.mjs\";\nimport { differenceInMilliseconds } from \"./differenceInMilliseconds.mjs\";\nimport { getRoundingMethod } from \"./_lib/roundingMethods.mjs\";\n\n/**\n * The {@link differenceInHours} function options.\n */\n\n/**\n * @name differenceInHours\n * @category Hour Helpers\n * @summary Get the number of hours between the given dates.\n *\n * @description\n * Get the number of hours between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n * @param options - An object with options.\n *\n * @returns The number of hours\n *\n * @example\n * // How many hours are between 2 July 2014 06:50:00 and 2 July 2014 19:00:00?\n * const result = differenceInHours(\n * new Date(2014, 6, 2, 19, 0),\n * new Date(2014, 6, 2, 6, 50)\n * )\n * //=> 12\n */\nexport function differenceInHours(dateLeft, dateRight, options) {\n const diff =\n differenceInMilliseconds(dateLeft, dateRight) / millisecondsInHour;\n return getRoundingMethod(options?.roundingMethod)(diff);\n}\n\n// Fallback for modularized imports:\nexport default differenceInHours;\n", "import { millisecondsInMinute } from \"./constants.mjs\";\nimport { differenceInMilliseconds } from \"./differenceInMilliseconds.mjs\";\nimport { getRoundingMethod } from \"./_lib/roundingMethods.mjs\";\n\n/**\n * The {@link differenceInMinutes} function options.\n */\n\n/**\n * @name differenceInMinutes\n * @category Minute Helpers\n * @summary Get the number of minutes between the given dates.\n *\n * @description\n * Get the signed number of full (rounded towards 0) minutes between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n * @param options - An object with options.\n *\n * @returns The number of minutes\n *\n * @example\n * // How many minutes are between 2 July 2014 12:07:59 and 2 July 2014 12:20:00?\n * const result = differenceInMinutes(\n * new Date(2014, 6, 2, 12, 20, 0),\n * new Date(2014, 6, 2, 12, 7, 59)\n * )\n * //=> 12\n *\n * @example\n * // How many minutes are between 10:01:59 and 10:00:00\n * const result = differenceInMinutes(\n * new Date(2000, 0, 1, 10, 0, 0),\n * new Date(2000, 0, 1, 10, 1, 59)\n * )\n * //=> -1\n */\nexport function differenceInMinutes(dateLeft, dateRight, options) {\n const diff =\n differenceInMilliseconds(dateLeft, dateRight) / millisecondsInMinute;\n return getRoundingMethod(options?.roundingMethod)(diff);\n}\n\n// Fallback for modularized imports:\nexport default differenceInMinutes;\n", "import { differenceInMilliseconds } from \"./differenceInMilliseconds.mjs\";\nimport { getRoundingMethod } from \"./_lib/roundingMethods.mjs\";\n\n/**\n * The {@link differenceInSeconds} function options.\n */\n\n/**\n * @name differenceInSeconds\n * @category Second Helpers\n * @summary Get the number of seconds between the given dates.\n *\n * @description\n * Get the number of seconds between the given dates.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateLeft - The later date\n * @param dateRight - The earlier date\n * @param options - An object with options.\n *\n * @returns The number of seconds\n *\n * @example\n * // How many seconds are between\n * // 2 July 2014 12:30:07.999 and 2 July 2014 12:30:20.000?\n * const result = differenceInSeconds(\n * new Date(2014, 6, 2, 12, 30, 20, 0),\n * new Date(2014, 6, 2, 12, 30, 7, 999)\n * )\n * //=> 12\n */\nexport function differenceInSeconds(dateLeft, dateRight, options) {\n const diff = differenceInMilliseconds(dateLeft, dateRight) / 1000;\n return getRoundingMethod(options?.roundingMethod)(diff);\n}\n\n// Fallback for modularized imports:\nexport default differenceInSeconds;\n", "const formatDistanceLocale = {\n lessThanXSeconds: {\n one: \"less than a second\",\n other: \"less than {{count}} seconds\",\n },\n\n xSeconds: {\n one: \"1 second\",\n other: \"{{count}} seconds\",\n },\n\n halfAMinute: \"half a minute\",\n\n lessThanXMinutes: {\n one: \"less than a minute\",\n other: \"less than {{count}} minutes\",\n },\n\n xMinutes: {\n one: \"1 minute\",\n other: \"{{count}} minutes\",\n },\n\n aboutXHours: {\n one: \"about 1 hour\",\n other: \"about {{count}} hours\",\n },\n\n xHours: {\n one: \"1 hour\",\n other: \"{{count}} hours\",\n },\n\n xDays: {\n one: \"1 day\",\n other: \"{{count}} days\",\n },\n\n aboutXWeeks: {\n one: \"about 1 week\",\n other: \"about {{count}} weeks\",\n },\n\n xWeeks: {\n one: \"1 week\",\n other: \"{{count}} weeks\",\n },\n\n aboutXMonths: {\n one: \"about 1 month\",\n other: \"about {{count}} months\",\n },\n\n xMonths: {\n one: \"1 month\",\n other: \"{{count}} months\",\n },\n\n aboutXYears: {\n one: \"about 1 year\",\n other: \"about {{count}} years\",\n },\n\n xYears: {\n one: \"1 year\",\n other: \"{{count}} years\",\n },\n\n overXYears: {\n one: \"over 1 year\",\n other: \"over {{count}} years\",\n },\n\n almostXYears: {\n one: \"almost 1 year\",\n other: \"almost {{count}} years\",\n },\n};\n\nexport const formatDistance = (token, count, options) => {\n let result;\n\n const tokenValue = formatDistanceLocale[token];\n if (typeof tokenValue === \"string\") {\n result = tokenValue;\n } else if (count === 1) {\n result = tokenValue.one;\n } else {\n result = tokenValue.other.replace(\"{{count}}\", count.toString());\n }\n\n if (options?.addSuffix) {\n if (options.comparison && options.comparison > 0) {\n return \"in \" + result;\n } else {\n return result + \" ago\";\n }\n }\n\n return result;\n};\n", "export function buildFormatLongFn(args) {\n return (options = {}) => {\n // TODO: Remove String()\n const width = options.width ? String(options.width) : args.defaultWidth;\n const format = args.formats[width] || args.formats[args.defaultWidth];\n return format;\n };\n}\n", "import { buildFormatLongFn } from \"../../_lib/buildFormatLongFn.mjs\";\n\nconst dateFormats = {\n full: \"EEEE, MMMM do, y\",\n long: \"MMMM do, y\",\n medium: \"MMM d, y\",\n short: \"MM/dd/yyyy\",\n};\n\nconst timeFormats = {\n full: \"h:mm:ss a zzzz\",\n long: \"h:mm:ss a z\",\n medium: \"h:mm:ss a\",\n short: \"h:mm a\",\n};\n\nconst dateTimeFormats = {\n full: \"{{date}} 'at' {{time}}\",\n long: \"{{date}} 'at' {{time}}\",\n medium: \"{{date}}, {{time}}\",\n short: \"{{date}}, {{time}}\",\n};\n\nexport const formatLong = {\n date: buildFormatLongFn({\n formats: dateFormats,\n defaultWidth: \"full\",\n }),\n\n time: buildFormatLongFn({\n formats: timeFormats,\n defaultWidth: \"full\",\n }),\n\n dateTime: buildFormatLongFn({\n formats: dateTimeFormats,\n defaultWidth: \"full\",\n }),\n};\n", "const formatRelativeLocale = {\n lastWeek: \"'last' eeee 'at' p\",\n yesterday: \"'yesterday at' p\",\n today: \"'today at' p\",\n tomorrow: \"'tomorrow at' p\",\n nextWeek: \"eeee 'at' p\",\n other: \"P\",\n};\n\nexport const formatRelative = (token, _date, _baseDate, _options) =>\n formatRelativeLocale[token];\n", "/* eslint-disable no-unused-vars */\n\n/**\n * The localize function argument callback which allows to convert raw value to\n * the actual type.\n *\n * @param value - The value to convert\n *\n * @returns The converted value\n */\n\n/**\n * The map of localized values for each width.\n */\n\n/**\n * The index type of the locale unit value. It types conversion of units of\n * values that don't start at 0 (i.e. quarters).\n */\n\n/**\n * Converts the unit value to the tuple of values.\n */\n\n/**\n * The tuple of localized era values. The first element represents BC,\n * the second element represents AD.\n */\n\n/**\n * The tuple of localized quarter values. The first element represents Q1.\n */\n\n/**\n * The tuple of localized day values. The first element represents Sunday.\n */\n\n/**\n * The tuple of localized month values. The first element represents January.\n */\n\nexport function buildLocalizeFn(args) {\n return (value, options) => {\n const context = options?.context ? String(options.context) : \"standalone\";\n\n let valuesArray;\n if (context === \"formatting\" && args.formattingValues) {\n const defaultWidth = args.defaultFormattingWidth || args.defaultWidth;\n const width = options?.width ? String(options.width) : defaultWidth;\n\n valuesArray =\n args.formattingValues[width] || args.formattingValues[defaultWidth];\n } else {\n const defaultWidth = args.defaultWidth;\n const width = options?.width ? String(options.width) : args.defaultWidth;\n\n valuesArray = args.values[width] || args.values[defaultWidth];\n }\n const index = args.argumentCallback ? args.argumentCallback(value) : value;\n\n // @ts-expect-error - For some reason TypeScript just don't want to match it, no matter how hard we try. I challenge you to try to remove it!\n return valuesArray[index];\n };\n}\n", "import { buildLocalizeFn } from \"../../_lib/buildLocalizeFn.mjs\";\n\nconst eraValues = {\n narrow: [\"B\", \"A\"],\n abbreviated: [\"BC\", \"AD\"],\n wide: [\"Before Christ\", \"Anno Domini\"],\n};\n\nconst quarterValues = {\n narrow: [\"1\", \"2\", \"3\", \"4\"],\n abbreviated: [\"Q1\", \"Q2\", \"Q3\", \"Q4\"],\n wide: [\"1st quarter\", \"2nd quarter\", \"3rd quarter\", \"4th quarter\"],\n};\n\n// Note: in English, the names of days of the week and months are capitalized.\n// If you are making a new locale based on this one, check if the same is true for the language you're working on.\n// Generally, formatted dates should look like they are in the middle of a sentence,\n// e.g. in Spanish language the weekdays and months should be in the lowercase.\nconst monthValues = {\n narrow: [\"J\", \"F\", \"M\", \"A\", \"M\", \"J\", \"J\", \"A\", \"S\", \"O\", \"N\", \"D\"],\n abbreviated: [\n \"Jan\",\n \"Feb\",\n \"Mar\",\n \"Apr\",\n \"May\",\n \"Jun\",\n \"Jul\",\n \"Aug\",\n \"Sep\",\n \"Oct\",\n \"Nov\",\n \"Dec\",\n ],\n\n wide: [\n \"January\",\n \"February\",\n \"March\",\n \"April\",\n \"May\",\n \"June\",\n \"July\",\n \"August\",\n \"September\",\n \"October\",\n \"November\",\n \"December\",\n ],\n};\n\nconst dayValues = {\n narrow: [\"S\", \"M\", \"T\", \"W\", \"T\", \"F\", \"S\"],\n short: [\"Su\", \"Mo\", \"Tu\", \"We\", \"Th\", \"Fr\", \"Sa\"],\n abbreviated: [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"],\n wide: [\n \"Sunday\",\n \"Monday\",\n \"Tuesday\",\n \"Wednesday\",\n \"Thursday\",\n \"Friday\",\n \"Saturday\",\n ],\n};\n\nconst dayPeriodValues = {\n narrow: {\n am: \"a\",\n pm: \"p\",\n midnight: \"mi\",\n noon: \"n\",\n morning: \"morning\",\n afternoon: \"afternoon\",\n evening: \"evening\",\n night: \"night\",\n },\n abbreviated: {\n am: \"AM\",\n pm: \"PM\",\n midnight: \"midnight\",\n noon: \"noon\",\n morning: \"morning\",\n afternoon: \"afternoon\",\n evening: \"evening\",\n night: \"night\",\n },\n wide: {\n am: \"a.m.\",\n pm: \"p.m.\",\n midnight: \"midnight\",\n noon: \"noon\",\n morning: \"morning\",\n afternoon: \"afternoon\",\n evening: \"evening\",\n night: \"night\",\n },\n};\n\nconst formattingDayPeriodValues = {\n narrow: {\n am: \"a\",\n pm: \"p\",\n midnight: \"mi\",\n noon: \"n\",\n morning: \"in the morning\",\n afternoon: \"in the afternoon\",\n evening: \"in the evening\",\n night: \"at night\",\n },\n abbreviated: {\n am: \"AM\",\n pm: \"PM\",\n midnight: \"midnight\",\n noon: \"noon\",\n morning: \"in the morning\",\n afternoon: \"in the afternoon\",\n evening: \"in the evening\",\n night: \"at night\",\n },\n wide: {\n am: \"a.m.\",\n pm: \"p.m.\",\n midnight: \"midnight\",\n noon: \"noon\",\n morning: \"in the morning\",\n afternoon: \"in the afternoon\",\n evening: \"in the evening\",\n night: \"at night\",\n },\n};\n\nconst ordinalNumber = (dirtyNumber, _options) => {\n const number = Number(dirtyNumber);\n\n // If ordinal numbers depend on context, for example,\n // if they are different for different grammatical genders,\n // use `options.unit`.\n //\n // `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',\n // 'day', 'hour', 'minute', 'second'.\n\n const rem100 = number % 100;\n if (rem100 > 20 || rem100 < 10) {\n switch (rem100 % 10) {\n case 1:\n return number + \"st\";\n case 2:\n return number + \"nd\";\n case 3:\n return number + \"rd\";\n }\n }\n return number + \"th\";\n};\n\nexport const localize = {\n ordinalNumber,\n\n era: buildLocalizeFn({\n values: eraValues,\n defaultWidth: \"wide\",\n }),\n\n quarter: buildLocalizeFn({\n values: quarterValues,\n defaultWidth: \"wide\",\n argumentCallback: (quarter) => quarter - 1,\n }),\n\n month: buildLocalizeFn({\n values: monthValues,\n defaultWidth: \"wide\",\n }),\n\n day: buildLocalizeFn({\n values: dayValues,\n defaultWidth: \"wide\",\n }),\n\n dayPeriod: buildLocalizeFn({\n values: dayPeriodValues,\n defaultWidth: \"wide\",\n formattingValues: formattingDayPeriodValues,\n defaultFormattingWidth: \"wide\",\n }),\n};\n", "export function buildMatchFn(args) {\n return (string, options = {}) => {\n const width = options.width;\n\n const matchPattern =\n (width && args.matchPatterns[width]) ||\n args.matchPatterns[args.defaultMatchWidth];\n const matchResult = string.match(matchPattern);\n\n if (!matchResult) {\n return null;\n }\n const matchedString = matchResult[0];\n\n const parsePatterns =\n (width && args.parsePatterns[width]) ||\n args.parsePatterns[args.defaultParseWidth];\n\n const key = Array.isArray(parsePatterns)\n ? findIndex(parsePatterns, (pattern) => pattern.test(matchedString))\n : // eslint-disable-next-line @typescript-eslint/no-explicit-any -- I challange you to fix the type\n findKey(parsePatterns, (pattern) => pattern.test(matchedString));\n\n let value;\n\n value = args.valueCallback ? args.valueCallback(key) : key;\n value = options.valueCallback\n ? // eslint-disable-next-line @typescript-eslint/no-explicit-any -- I challange you to fix the type\n options.valueCallback(value)\n : value;\n\n const rest = string.slice(matchedString.length);\n\n return { value, rest };\n };\n}\n\nfunction findKey(object, predicate) {\n for (const key in object) {\n if (\n Object.prototype.hasOwnProperty.call(object, key) &&\n predicate(object[key])\n ) {\n return key;\n }\n }\n return undefined;\n}\n\nfunction findIndex(array, predicate) {\n for (let key = 0; key < array.length; key++) {\n if (predicate(array[key])) {\n return key;\n }\n }\n return undefined;\n}\n", "export function buildMatchPatternFn(args) {\n return (string, options = {}) => {\n const matchResult = string.match(args.matchPattern);\n if (!matchResult) return null;\n const matchedString = matchResult[0];\n\n const parseResult = string.match(args.parsePattern);\n if (!parseResult) return null;\n let value = args.valueCallback\n ? args.valueCallback(parseResult[0])\n : parseResult[0];\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any -- I challange you to fix the type\n value = options.valueCallback ? options.valueCallback(value) : value;\n\n const rest = string.slice(matchedString.length);\n\n return { value, rest };\n };\n}\n", "import { buildMatchFn } from \"../../_lib/buildMatchFn.mjs\";\nimport { buildMatchPatternFn } from \"../../_lib/buildMatchPatternFn.mjs\";\n\nconst matchOrdinalNumberPattern = /^(\\d+)(th|st|nd|rd)?/i;\nconst parseOrdinalNumberPattern = /\\d+/i;\n\nconst matchEraPatterns = {\n narrow: /^(b|a)/i,\n abbreviated: /^(b\\.?\\s?c\\.?|b\\.?\\s?c\\.?\\s?e\\.?|a\\.?\\s?d\\.?|c\\.?\\s?e\\.?)/i,\n wide: /^(before christ|before common era|anno domini|common era)/i,\n};\nconst parseEraPatterns = {\n any: [/^b/i, /^(a|c)/i],\n};\n\nconst matchQuarterPatterns = {\n narrow: /^[1234]/i,\n abbreviated: /^q[1234]/i,\n wide: /^[1234](th|st|nd|rd)? quarter/i,\n};\nconst parseQuarterPatterns = {\n any: [/1/i, /2/i, /3/i, /4/i],\n};\n\nconst matchMonthPatterns = {\n narrow: /^[jfmasond]/i,\n abbreviated: /^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,\n wide: /^(january|february|march|april|may|june|july|august|september|october|november|december)/i,\n};\nconst parseMonthPatterns = {\n narrow: [\n /^j/i,\n /^f/i,\n /^m/i,\n /^a/i,\n /^m/i,\n /^j/i,\n /^j/i,\n /^a/i,\n /^s/i,\n /^o/i,\n /^n/i,\n /^d/i,\n ],\n\n any: [\n /^ja/i,\n /^f/i,\n /^mar/i,\n /^ap/i,\n /^may/i,\n /^jun/i,\n /^jul/i,\n /^au/i,\n /^s/i,\n /^o/i,\n /^n/i,\n /^d/i,\n ],\n};\n\nconst matchDayPatterns = {\n narrow: /^[smtwf]/i,\n short: /^(su|mo|tu|we|th|fr|sa)/i,\n abbreviated: /^(sun|mon|tue|wed|thu|fri|sat)/i,\n wide: /^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i,\n};\nconst parseDayPatterns = {\n narrow: [/^s/i, /^m/i, /^t/i, /^w/i, /^t/i, /^f/i, /^s/i],\n any: [/^su/i, /^m/i, /^tu/i, /^w/i, /^th/i, /^f/i, /^sa/i],\n};\n\nconst matchDayPeriodPatterns = {\n narrow: /^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,\n any: /^([ap]\\.?\\s?m\\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i,\n};\nconst parseDayPeriodPatterns = {\n any: {\n am: /^a/i,\n pm: /^p/i,\n midnight: /^mi/i,\n noon: /^no/i,\n morning: /morning/i,\n afternoon: /afternoon/i,\n evening: /evening/i,\n night: /night/i,\n },\n};\n\nexport const match = {\n ordinalNumber: buildMatchPatternFn({\n matchPattern: matchOrdinalNumberPattern,\n parsePattern: parseOrdinalNumberPattern,\n valueCallback: (value) => parseInt(value, 10),\n }),\n\n era: buildMatchFn({\n matchPatterns: matchEraPatterns,\n defaultMatchWidth: \"wide\",\n parsePatterns: parseEraPatterns,\n defaultParseWidth: \"any\",\n }),\n\n quarter: buildMatchFn({\n matchPatterns: matchQuarterPatterns,\n defaultMatchWidth: \"wide\",\n parsePatterns: parseQuarterPatterns,\n defaultParseWidth: \"any\",\n valueCallback: (index) => index + 1,\n }),\n\n month: buildMatchFn({\n matchPatterns: matchMonthPatterns,\n defaultMatchWidth: \"wide\",\n parsePatterns: parseMonthPatterns,\n defaultParseWidth: \"any\",\n }),\n\n day: buildMatchFn({\n matchPatterns: matchDayPatterns,\n defaultMatchWidth: \"wide\",\n parsePatterns: parseDayPatterns,\n defaultParseWidth: \"any\",\n }),\n\n dayPeriod: buildMatchFn({\n matchPatterns: matchDayPeriodPatterns,\n defaultMatchWidth: \"any\",\n parsePatterns: parseDayPeriodPatterns,\n defaultParseWidth: \"any\",\n }),\n};\n", "import { formatDistance } from \"./en-US/_lib/formatDistance.mjs\";\nimport { formatLong } from \"./en-US/_lib/formatLong.mjs\";\nimport { formatRelative } from \"./en-US/_lib/formatRelative.mjs\";\nimport { localize } from \"./en-US/_lib/localize.mjs\";\nimport { match } from \"./en-US/_lib/match.mjs\";\n\n/**\n * @category Locales\n * @summary English locale (United States).\n * @language English\n * @iso-639-2 eng\n * @author Sasha Koss [@kossnocorp](https://github.com/kossnocorp)\n * @author Lesha Koss [@leshakoss](https://github.com/leshakoss)\n */\nexport const enUS = {\n code: \"en-US\",\n formatDistance: formatDistance,\n formatLong: formatLong,\n formatRelative: formatRelative,\n localize: localize,\n match: match,\n options: {\n weekStartsOn: 0 /* Sunday */,\n firstWeekContainsDate: 1,\n },\n};\n\n// Fallback for modularized imports:\nexport default enUS;\n", "import { millisecondsInWeek } from \"./constants.mjs\";\nimport { startOfISOWeek } from \"./startOfISOWeek.mjs\";\nimport { startOfISOWeekYear } from \"./startOfISOWeekYear.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * @name getISOWeek\n * @category ISO Week Helpers\n * @summary Get the ISO week of the given date.\n *\n * @description\n * Get the ISO week of the given date.\n *\n * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The given date\n *\n * @returns The ISO week\n *\n * @example\n * // Which week of the ISO-week numbering year is 2 January 2005?\n * const result = getISOWeek(new Date(2005, 0, 2))\n * //=> 53\n */\nexport function getISOWeek(date) {\n const _date = toDate(date);\n const diff =\n startOfISOWeek(_date).getTime() - startOfISOWeekYear(_date).getTime();\n\n // Round the number of days to the nearest integer\n // because the number of milliseconds in a week is not constant\n // (e.g. it's different in the week of the daylight saving time clock shift)\n return Math.round(diff / millisecondsInWeek) + 1;\n}\n\n// Fallback for modularized imports:\nexport default getISOWeek;\n", "import { constructFrom } from \"./constructFrom.mjs\";\nimport { startOfWeek } from \"./startOfWeek.mjs\";\nimport { toDate } from \"./toDate.mjs\";\nimport { getDefaultOptions } from \"./_lib/defaultOptions.mjs\";\n\n/**\n * The {@link getWeekYear} function options.\n */\n\n/**\n * @name getWeekYear\n * @category Week-Numbering Year Helpers\n * @summary Get the local week-numbering year of the given date.\n *\n * @description\n * Get the local week-numbering year of the given date.\n * The exact calculation depends on the values of\n * `options.weekStartsOn` (which is the index of the first day of the week)\n * and `options.firstWeekContainsDate` (which is the day of January, which is always in\n * the first week of the week-numbering year)\n *\n * Week numbering: https://en.wikipedia.org/wiki/Week#The_ISO_week_date_system\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The given date\n * @param options - An object with options.\n *\n * @returns The local week-numbering year\n *\n * @example\n * // Which week numbering year is 26 December 2004 with the default settings?\n * const result = getWeekYear(new Date(2004, 11, 26))\n * //=> 2005\n *\n * @example\n * // Which week numbering year is 26 December 2004 if week starts on Saturday?\n * const result = getWeekYear(new Date(2004, 11, 26), { weekStartsOn: 6 })\n * //=> 2004\n *\n * @example\n * // Which week numbering year is 26 December 2004 if the first week contains 4 January?\n * const result = getWeekYear(new Date(2004, 11, 26), { firstWeekContainsDate: 4 })\n * //=> 2004\n */\nexport function getWeekYear(date, options) {\n const _date = toDate(date);\n const year = _date.getFullYear();\n\n const defaultOptions = getDefaultOptions();\n const firstWeekContainsDate =\n options?.firstWeekContainsDate ??\n options?.locale?.options?.firstWeekContainsDate ??\n defaultOptions.firstWeekContainsDate ??\n defaultOptions.locale?.options?.firstWeekContainsDate ??\n 1;\n\n const firstWeekOfNextYear = constructFrom(date, 0);\n firstWeekOfNextYear.setFullYear(year + 1, 0, firstWeekContainsDate);\n firstWeekOfNextYear.setHours(0, 0, 0, 0);\n const startOfNextYear = startOfWeek(firstWeekOfNextYear, options);\n\n const firstWeekOfThisYear = constructFrom(date, 0);\n firstWeekOfThisYear.setFullYear(year, 0, firstWeekContainsDate);\n firstWeekOfThisYear.setHours(0, 0, 0, 0);\n const startOfThisYear = startOfWeek(firstWeekOfThisYear, options);\n\n if (_date.getTime() >= startOfNextYear.getTime()) {\n return year + 1;\n } else if (_date.getTime() >= startOfThisYear.getTime()) {\n return year;\n } else {\n return year - 1;\n }\n}\n\n// Fallback for modularized imports:\nexport default getWeekYear;\n", "import { constructFrom } from \"./constructFrom.mjs\";\nimport { getWeekYear } from \"./getWeekYear.mjs\";\nimport { startOfWeek } from \"./startOfWeek.mjs\";\nimport { getDefaultOptions } from \"./_lib/defaultOptions.mjs\";\n\n/**\n * The {@link startOfWeekYear} function options.\n */\n\n/**\n * @name startOfWeekYear\n * @category Week-Numbering Year Helpers\n * @summary Return the start of a local week-numbering year for the given date.\n *\n * @description\n * Return the start of a local week-numbering year.\n * The exact calculation depends on the values of\n * `options.weekStartsOn` (which is the index of the first day of the week)\n * and `options.firstWeekContainsDate` (which is the day of January, which is always in\n * the first week of the week-numbering year)\n *\n * Week numbering: https://en.wikipedia.org/wiki/Week#The_ISO_week_date_system\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The original date\n * @param options - An object with options\n *\n * @returns The start of a week-numbering year\n *\n * @example\n * // The start of an a week-numbering year for 2 July 2005 with default settings:\n * const result = startOfWeekYear(new Date(2005, 6, 2))\n * //=> Sun Dec 26 2004 00:00:00\n *\n * @example\n * // The start of a week-numbering year for 2 July 2005\n * // if Monday is the first day of week\n * // and 4 January is always in the first week of the year:\n * const result = startOfWeekYear(new Date(2005, 6, 2), {\n * weekStartsOn: 1,\n * firstWeekContainsDate: 4\n * })\n * //=> Mon Jan 03 2005 00:00:00\n */\nexport function startOfWeekYear(date, options) {\n const defaultOptions = getDefaultOptions();\n const firstWeekContainsDate =\n options?.firstWeekContainsDate ??\n options?.locale?.options?.firstWeekContainsDate ??\n defaultOptions.firstWeekContainsDate ??\n defaultOptions.locale?.options?.firstWeekContainsDate ??\n 1;\n\n const year = getWeekYear(date, options);\n const firstWeek = constructFrom(date, 0);\n firstWeek.setFullYear(year, 0, firstWeekContainsDate);\n firstWeek.setHours(0, 0, 0, 0);\n const _date = startOfWeek(firstWeek, options);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default startOfWeekYear;\n", "import { millisecondsInWeek } from \"./constants.mjs\";\nimport { startOfWeek } from \"./startOfWeek.mjs\";\nimport { startOfWeekYear } from \"./startOfWeekYear.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * The {@link getWeek} function options.\n */\n\n/**\n * @name getWeek\n * @category Week Helpers\n * @summary Get the local week index of the given date.\n *\n * @description\n * Get the local week index of the given date.\n * The exact calculation depends on the values of\n * `options.weekStartsOn` (which is the index of the first day of the week)\n * and `options.firstWeekContainsDate` (which is the day of January, which is always in\n * the first week of the week-numbering year)\n *\n * Week numbering: https://en.wikipedia.org/wiki/Week#The_ISO_week_date_system\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The given date\n * @param options - An object with options\n *\n * @returns The week\n *\n * @example\n * // Which week of the local week numbering year is 2 January 2005 with default options?\n * const result = getWeek(new Date(2005, 0, 2))\n * //=> 2\n *\n * @example\n * // Which week of the local week numbering year is 2 January 2005,\n * // if Monday is the first day of the week,\n * // and the first week of the year always contains 4 January?\n * const result = getWeek(new Date(2005, 0, 2), {\n * weekStartsOn: 1,\n * firstWeekContainsDate: 4\n * })\n * //=> 53\n */\n\nexport function getWeek(date, options) {\n const _date = toDate(date);\n const diff =\n startOfWeek(_date, options).getTime() -\n startOfWeekYear(_date, options).getTime();\n\n // Round the number of days to the nearest integer\n // because the number of milliseconds in a week is not constant\n // (e.g. it's different in the week of the daylight saving time clock shift)\n return Math.round(diff / millisecondsInWeek) + 1;\n}\n\n// Fallback for modularized imports:\nexport default getWeek;\n", "const dateLongFormatter = (pattern, formatLong) => {\n switch (pattern) {\n case \"P\":\n return formatLong.date({ width: \"short\" });\n case \"PP\":\n return formatLong.date({ width: \"medium\" });\n case \"PPP\":\n return formatLong.date({ width: \"long\" });\n case \"PPPP\":\n default:\n return formatLong.date({ width: \"full\" });\n }\n};\n\nconst timeLongFormatter = (pattern, formatLong) => {\n switch (pattern) {\n case \"p\":\n return formatLong.time({ width: \"short\" });\n case \"pp\":\n return formatLong.time({ width: \"medium\" });\n case \"ppp\":\n return formatLong.time({ width: \"long\" });\n case \"pppp\":\n default:\n return formatLong.time({ width: \"full\" });\n }\n};\n\nconst dateTimeLongFormatter = (pattern, formatLong) => {\n const matchResult = pattern.match(/(P+)(p+)?/) || [];\n const datePattern = matchResult[1];\n const timePattern = matchResult[2];\n\n if (!timePattern) {\n return dateLongFormatter(pattern, formatLong);\n }\n\n let dateTimeFormat;\n\n switch (datePattern) {\n case \"P\":\n dateTimeFormat = formatLong.dateTime({ width: \"short\" });\n break;\n case \"PP\":\n dateTimeFormat = formatLong.dateTime({ width: \"medium\" });\n break;\n case \"PPP\":\n dateTimeFormat = formatLong.dateTime({ width: \"long\" });\n break;\n case \"PPPP\":\n default:\n dateTimeFormat = formatLong.dateTime({ width: \"full\" });\n break;\n }\n\n return dateTimeFormat\n .replace(\"{{date}}\", dateLongFormatter(datePattern, formatLong))\n .replace(\"{{time}}\", timeLongFormatter(timePattern, formatLong));\n};\n\nexport const longFormatters = {\n p: timeLongFormatter,\n P: dateTimeLongFormatter,\n};\n", "const dayOfYearTokenRE = /^D+$/;\nconst weekYearTokenRE = /^Y+$/;\n\nconst throwTokens = [\"D\", \"DD\", \"YY\", \"YYYY\"];\n\nexport function isProtectedDayOfYearToken(token) {\n return dayOfYearTokenRE.test(token);\n}\n\nexport function isProtectedWeekYearToken(token) {\n return weekYearTokenRE.test(token);\n}\n\nexport function warnOrThrowProtectedError(token, format, input) {\n const _message = message(token, format, input);\n console.warn(_message);\n if (throwTokens.includes(token)) throw new RangeError(_message);\n}\n\nfunction message(token, format, input) {\n const subject = token[0] === \"Y\" ? \"years\" : \"days of the month\";\n return `Use \\`${token.toLowerCase()}\\` instead of \\`${token}\\` (in \\`${format}\\`) for formatting ${subject} to the input \\`${input}\\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;\n}\n", "import { getDefaultOptions as getInternalDefaultOptions } from \"./_lib/defaultOptions.mjs\";\n\n/**\n * @name getDefaultOptions\n * @category Common Helpers\n * @summary Get default options.\n * @pure false\n *\n * @description\n * Returns an object that contains defaults for\n * `options.locale`, `options.weekStartsOn` and `options.firstWeekContainsDate`\n * arguments for all functions.\n *\n * You can change these with [setDefaultOptions](https://date-fns.org/docs/setDefaultOptions).\n *\n * @returns The default options\n *\n * @example\n * const result = getDefaultOptions()\n * //=> {}\n *\n * @example\n * setDefaultOptions({ weekStarsOn: 1, firstWeekContainsDate: 4 })\n * const result = getDefaultOptions()\n * //=> { weekStarsOn: 1, firstWeekContainsDate: 4 }\n */\nexport function getDefaultOptions() {\n return Object.assign({}, getInternalDefaultOptions());\n}\n\n// Fallback for modularized imports:\nexport default getDefaultOptions;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * @name getISODay\n * @category Weekday Helpers\n * @summary Get the day of the ISO week of the given date.\n *\n * @description\n * Get the day of the ISO week of the given date,\n * which is 7 for Sunday, 1 for Monday etc.\n *\n * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The given date\n *\n * @returns The day of ISO week\n *\n * @example\n * // Which day of the ISO week is 26 February 2012?\n * const result = getISODay(new Date(2012, 1, 26))\n * //=> 7\n */\nexport function getISODay(date) {\n const _date = toDate(date);\n let day = _date.getDay();\n\n if (day === 0) {\n day = 7;\n }\n\n return day;\n}\n\n// Fallback for modularized imports:\nexport default getISODay;\n", "import { toDate } from \"./toDate.mjs\";\n\n/**\n * The locale string (see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).\n */\n\n/**\n * The format options (see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#options)\n */\n\n/**\n * The locale options.\n */\n\n/**\n * @name intlFormat\n * @category Common Helpers\n * @summary Format the date with Intl.DateTimeFormat (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat).\n *\n * @description\n * Return the formatted date string in the given format.\n * The method uses [`Intl.DateTimeFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat) inside.\n * formatOptions are the same as [`Intl.DateTimeFormat` options](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options)\n *\n * > \u26A0\uFE0F Please note that before Node version 13.0.0, only the locale data for en-US is available by default.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to format\n *\n * @returns The formatted date string\n *\n * @throws `date` must not be Invalid Date\n *\n * @example\n * // Represent 10 October 2019 in middle-endian format:\n * const result = intlFormat(new Date(2019, 9, 4, 12, 30, 13, 456))\n * //=> 10/4/2019\n */\n\n/**\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to format\n * @param localeOptions - An object with locale\n *\n * @returns The formatted date string\n *\n * @throws `date` must not be Invalid Date\n *\n * @example\n * // Represent 10 October 2019 in Korean.\n * // Convert the date with locale's options.\n * const result = intlFormat(new Date(2019, 9, 4, 12, 30, 13, 456), {\n * locale: 'ko-KR',\n * })\n * //=> 2019. 10. 4.\n */\n\n/**\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to format\n * @param formatOptions - The format options\n *\n * @returns The formatted date string\n *\n * @throws `date` must not be Invalid Date\n *\n * @example\n * // Represent 10 October 2019.\n * // Convert the date with format's options.\n * const result = intlFormat.default(new Date(2019, 9, 4, 12, 30, 13, 456), {\n * year: 'numeric',\n * month: 'numeric',\n * day: 'numeric',\n * hour: 'numeric',\n * })\n * //=> 10/4/2019, 12 PM\n */\n\n/**\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to format\n * @param formatOptions - The format options\n * @param localeOptions - An object with locale\n *\n * @returns The formatted date string\n *\n * @throws `date` must not be Invalid Date\n *\n * @example\n * // Represent 10 October 2019 in German.\n * // Convert the date with format's options and locale's options.\n * const result = intlFormat(new Date(2019, 9, 4, 12, 30, 13, 456), {\n * weekday: 'long',\n * year: 'numeric',\n * month: 'long',\n * day: 'numeric',\n * }, {\n * locale: 'de-DE',\n * })\n * //=> Freitag, 4. Oktober 2019\n */\n\nexport function intlFormat(date, formatOrLocale, localeOptions) {\n let formatOptions;\n\n if (isFormatOptions(formatOrLocale)) {\n formatOptions = formatOrLocale;\n } else {\n localeOptions = formatOrLocale;\n }\n\n return new Intl.DateTimeFormat(localeOptions?.locale, formatOptions).format(\n toDate(date),\n );\n}\n\nfunction isFormatOptions(opts) {\n return opts !== undefined && !(\"locale\" in opts);\n}\n\n// Fallback for modularized imports:\nexport default intlFormat;\n", "import {\n secondsInDay,\n secondsInHour,\n secondsInMinute,\n secondsInMonth,\n secondsInQuarter,\n secondsInWeek,\n secondsInYear,\n} from \"./constants.mjs\";\nimport { differenceInCalendarDays } from \"./differenceInCalendarDays.mjs\";\nimport { differenceInCalendarMonths } from \"./differenceInCalendarMonths.mjs\";\nimport { differenceInCalendarQuarters } from \"./differenceInCalendarQuarters.mjs\";\nimport { differenceInCalendarWeeks } from \"./differenceInCalendarWeeks.mjs\";\nimport { differenceInCalendarYears } from \"./differenceInCalendarYears.mjs\";\nimport { differenceInHours } from \"./differenceInHours.mjs\";\nimport { differenceInMinutes } from \"./differenceInMinutes.mjs\";\nimport { differenceInSeconds } from \"./differenceInSeconds.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * The {@link intlFormatDistance} function options.\n */\n\n/**\n * The unit used to format the distance in {@link intlFormatDistance}.\n */\n\n/**\n * @name intlFormatDistance\n * @category Common Helpers\n * @summary Formats distance between two dates in a human-readable format\n * @description\n * The function calculates the difference between two dates and formats it as a human-readable string.\n *\n * The function will pick the most appropriate unit depending on the distance between dates. For example, if the distance is a few hours, it might return `x hours`. If the distance is a few months, it might return `x months`.\n *\n * You can also specify a unit to force using it regardless of the distance to get a result like `123456 hours`.\n *\n * See the table below for the unit picking logic:\n *\n * | Distance between dates | Result (past) | Result (future) |\n * | ---------------------- | -------------- | --------------- |\n * | 0 seconds | now | now |\n * | 1-59 seconds | X seconds ago | in X seconds |\n * | 1-59 minutes | X minutes ago | in X minutes |\n * | 1-23 hours | X hours ago | in X hours |\n * | 1 day | yesterday | tomorrow |\n * | 2-6 days | X days ago | in X days |\n * | 7 days | last week | next week |\n * | 8 days-1 month | X weeks ago | in X weeks |\n * | 1 month | last month | next month |\n * | 2-3 months | X months ago | in X months |\n * | 1 quarter | last quarter | next quarter |\n * | 2-3 quarters | X quarters ago | in X quarters |\n * | 1 year | last year | next year |\n * | 2+ years | X years ago | in X years |\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date\n * @param baseDate - The date to compare with.\n * @param options - An object with options.\n * See MDN for details [Locale identification and negotiation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)\n * The narrow one could be similar to the short one for some locales.\n *\n * @returns The distance in words according to language-sensitive relative time formatting.\n *\n * @throws `date` must not be Invalid Date\n * @throws `baseDate` must not be Invalid Date\n * @throws `options.unit` must not be invalid Unit\n * @throws `options.locale` must not be invalid locale\n * @throws `options.localeMatcher` must not be invalid localeMatcher\n * @throws `options.numeric` must not be invalid numeric\n * @throws `options.style` must not be invalid style\n *\n * @example\n * // What is the distance between the dates when the fist date is after the second?\n * intlFormatDistance(\n * new Date(1986, 3, 4, 11, 30, 0),\n * new Date(1986, 3, 4, 10, 30, 0)\n * )\n * //=> 'in 1 hour'\n *\n * // What is the distance between the dates when the fist date is before the second?\n * intlFormatDistance(\n * new Date(1986, 3, 4, 10, 30, 0),\n * new Date(1986, 3, 4, 11, 30, 0)\n * )\n * //=> '1 hour ago'\n *\n * @example\n * // Use the unit option to force the function to output the result in quarters. Without setting it, the example would return \"next year\"\n * intlFormatDistance(\n * new Date(1987, 6, 4, 10, 30, 0),\n * new Date(1986, 3, 4, 10, 30, 0),\n * { unit: 'quarter' }\n * )\n * //=> 'in 5 quarters'\n *\n * @example\n * // Use the locale option to get the result in Spanish. Without setting it, the example would return \"in 1 hour\".\n * intlFormatDistance(\n * new Date(1986, 3, 4, 11, 30, 0),\n * new Date(1986, 3, 4, 10, 30, 0),\n * { locale: 'es' }\n * )\n * //=> 'dentro de 1 hora'\n *\n * @example\n * // Use the numeric option to force the function to use numeric values. Without setting it, the example would return \"tomorrow\".\n * intlFormatDistance(\n * new Date(1986, 3, 5, 11, 30, 0),\n * new Date(1986, 3, 4, 11, 30, 0),\n * { numeric: 'always' }\n * )\n * //=> 'in 1 day'\n *\n * @example\n * // Use the style option to force the function to use short values. Without setting it, the example would return \"in 2 years\".\n * intlFormatDistance(\n * new Date(1988, 3, 4, 11, 30, 0),\n * new Date(1986, 3, 4, 11, 30, 0),\n * { style: 'short' }\n * )\n * //=> 'in 2 yr'\n */\nexport function intlFormatDistance(date, baseDate, options) {\n let value = 0;\n let unit;\n const dateLeft = toDate(date);\n const dateRight = toDate(baseDate);\n\n if (!options?.unit) {\n // Get the unit based on diffInSeconds calculations if no unit is specified\n const diffInSeconds = differenceInSeconds(dateLeft, dateRight); // The smallest unit\n\n if (Math.abs(diffInSeconds) < secondsInMinute) {\n value = differenceInSeconds(dateLeft, dateRight);\n unit = \"second\";\n } else if (Math.abs(diffInSeconds) < secondsInHour) {\n value = differenceInMinutes(dateLeft, dateRight);\n unit = \"minute\";\n } else if (\n Math.abs(diffInSeconds) < secondsInDay &&\n Math.abs(differenceInCalendarDays(dateLeft, dateRight)) < 1\n ) {\n value = differenceInHours(dateLeft, dateRight);\n unit = \"hour\";\n } else if (\n Math.abs(diffInSeconds) < secondsInWeek &&\n (value = differenceInCalendarDays(dateLeft, dateRight)) &&\n Math.abs(value) < 7\n ) {\n unit = \"day\";\n } else if (Math.abs(diffInSeconds) < secondsInMonth) {\n value = differenceInCalendarWeeks(dateLeft, dateRight);\n unit = \"week\";\n } else if (Math.abs(diffInSeconds) < secondsInQuarter) {\n value = differenceInCalendarMonths(dateLeft, dateRight);\n unit = \"month\";\n } else if (Math.abs(diffInSeconds) < secondsInYear) {\n if (differenceInCalendarQuarters(dateLeft, dateRight) < 4) {\n // To filter out cases that are less than a year but match 4 quarters\n value = differenceInCalendarQuarters(dateLeft, dateRight);\n unit = \"quarter\";\n } else {\n value = differenceInCalendarYears(dateLeft, dateRight);\n unit = \"year\";\n }\n } else {\n value = differenceInCalendarYears(dateLeft, dateRight);\n unit = \"year\";\n }\n } else {\n // Get the value if unit is specified\n unit = options?.unit;\n if (unit === \"second\") {\n value = differenceInSeconds(dateLeft, dateRight);\n } else if (unit === \"minute\") {\n value = differenceInMinutes(dateLeft, dateRight);\n } else if (unit === \"hour\") {\n value = differenceInHours(dateLeft, dateRight);\n } else if (unit === \"day\") {\n value = differenceInCalendarDays(dateLeft, dateRight);\n } else if (unit === \"week\") {\n value = differenceInCalendarWeeks(dateLeft, dateRight);\n } else if (unit === \"month\") {\n value = differenceInCalendarMonths(dateLeft, dateRight);\n } else if (unit === \"quarter\") {\n value = differenceInCalendarQuarters(dateLeft, dateRight);\n } else if (unit === \"year\") {\n value = differenceInCalendarYears(dateLeft, dateRight);\n }\n }\n\n const rtf = new Intl.RelativeTimeFormat(options?.locale, {\n localeMatcher: options?.localeMatcher,\n numeric: options?.numeric || \"auto\",\n style: options?.style,\n });\n\n return rtf.format(value, unit);\n}\n\n// Fallback for modularized imports:\nexport default intlFormatDistance;\n", "import { constructFrom } from \"./constructFrom.mjs\";\n\n/**\n * @name transpose\n * @category Generic Helpers\n * @summary Transpose the date to the given constructor.\n *\n * @description\n * The function transposes the date to the given constructor. It helps you\n * to transpose the date in the system time zone to say `UTCDate` or any other\n * date extension.\n *\n * @typeParam DateInputType - The input `Date` type derived from the passed argument.\n * @typeParam DateOutputType - The output `Date` type derived from the passed constructor.\n *\n * @param fromDate - The date to use values from\n * @param constructor - The date constructor to use\n *\n * @returns Date transposed to the given constructor\n *\n * @example\n * // Create July 10, 2022 00:00 in locale time zone\n * const date = new Date(2022, 6, 10)\n * //=> 'Sun Jul 10 2022 00:00:00 GMT+0800 (Singapore Standard Time)'\n *\n * @example\n * // Transpose the date to July 10, 2022 00:00 in UTC\n * transpose(date, UTCDate)\n * //=> 'Sun Jul 10 2022 00:00:00 GMT+0000 (Coordinated Universal Time)'\n */\nexport function transpose(fromDate, constructor) {\n const date =\n constructor instanceof Date\n ? constructFrom(constructor, 0)\n : new constructor(0);\n date.setFullYear(\n fromDate.getFullYear(),\n fromDate.getMonth(),\n fromDate.getDate(),\n );\n date.setHours(\n fromDate.getHours(),\n fromDate.getMinutes(),\n fromDate.getSeconds(),\n fromDate.getMilliseconds(),\n );\n return date;\n}\n\n// Fallback for modularized imports:\nexport default transpose;\n", "import { transpose } from \"../../transpose.mjs\";\nimport { constructFrom } from \"../../constructFrom.mjs\";\n\nconst TIMEZONE_UNIT_PRIORITY = 10;\n\nexport class Setter {\n subPriority = 0;\n\n validate(_utcDate, _options) {\n return true;\n }\n}\n\nexport class ValueSetter extends Setter {\n constructor(\n value,\n\n validateValue,\n\n setValue,\n\n priority,\n subPriority,\n ) {\n super();\n this.value = value;\n this.validateValue = validateValue;\n this.setValue = setValue;\n this.priority = priority;\n if (subPriority) {\n this.subPriority = subPriority;\n }\n }\n\n validate(date, options) {\n return this.validateValue(date, this.value, options);\n }\n\n set(date, flags, options) {\n return this.setValue(date, flags, this.value, options);\n }\n}\n\nexport class DateToSystemTimezoneSetter extends Setter {\n priority = TIMEZONE_UNIT_PRIORITY;\n subPriority = -1;\n set(date, flags) {\n if (flags.timestampIsSet) return date;\n return constructFrom(date, transpose(date, Date));\n }\n}\n", "import { ValueSetter } from \"./Setter.mjs\";\n\nexport class Parser {\n run(dateString, token, match, options) {\n const result = this.parse(dateString, token, match, options);\n if (!result) {\n return null;\n }\n\n return {\n setter: new ValueSetter(\n result.value,\n this.validate,\n this.set,\n this.priority,\n this.subPriority,\n ),\n rest: result.rest,\n };\n }\n\n validate(_utcDate, _value, _options) {\n return true;\n }\n}\n", "import { Parser } from \"../Parser.mjs\";\n\nexport class EraParser extends Parser {\n priority = 140;\n\n parse(dateString, token, match) {\n switch (token) {\n // AD, BC\n case \"G\":\n case \"GG\":\n case \"GGG\":\n return (\n match.era(dateString, { width: \"abbreviated\" }) ||\n match.era(dateString, { width: \"narrow\" })\n );\n\n // A, B\n case \"GGGGG\":\n return match.era(dateString, { width: \"narrow\" });\n // Anno Domini, Before Christ\n case \"GGGG\":\n default:\n return (\n match.era(dateString, { width: \"wide\" }) ||\n match.era(dateString, { width: \"abbreviated\" }) ||\n match.era(dateString, { width: \"narrow\" })\n );\n }\n }\n\n set(date, flags, value) {\n flags.era = value;\n date.setFullYear(value, 0, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"R\", \"u\", \"t\", \"T\"];\n}\n", "export const numericPatterns = {\n month: /^(1[0-2]|0?\\d)/, // 0 to 12\n date: /^(3[0-1]|[0-2]?\\d)/, // 0 to 31\n dayOfYear: /^(36[0-6]|3[0-5]\\d|[0-2]?\\d?\\d)/, // 0 to 366\n week: /^(5[0-3]|[0-4]?\\d)/, // 0 to 53\n hour23h: /^(2[0-3]|[0-1]?\\d)/, // 0 to 23\n hour24h: /^(2[0-4]|[0-1]?\\d)/, // 0 to 24\n hour11h: /^(1[0-1]|0?\\d)/, // 0 to 11\n hour12h: /^(1[0-2]|0?\\d)/, // 0 to 12\n minute: /^[0-5]?\\d/, // 0 to 59\n second: /^[0-5]?\\d/, // 0 to 59\n\n singleDigit: /^\\d/, // 0 to 9\n twoDigits: /^\\d{1,2}/, // 0 to 99\n threeDigits: /^\\d{1,3}/, // 0 to 999\n fourDigits: /^\\d{1,4}/, // 0 to 9999\n\n anyDigitsSigned: /^-?\\d+/,\n singleDigitSigned: /^-?\\d/, // 0 to 9, -0 to -9\n twoDigitsSigned: /^-?\\d{1,2}/, // 0 to 99, -0 to -99\n threeDigitsSigned: /^-?\\d{1,3}/, // 0 to 999, -0 to -999\n fourDigitsSigned: /^-?\\d{1,4}/, // 0 to 9999, -0 to -9999\n};\n\nexport const timezonePatterns = {\n basicOptionalMinutes: /^([+-])(\\d{2})(\\d{2})?|Z/,\n basic: /^([+-])(\\d{2})(\\d{2})|Z/,\n basicOptionalSeconds: /^([+-])(\\d{2})(\\d{2})((\\d{2}))?|Z/,\n extended: /^([+-])(\\d{2}):(\\d{2})|Z/,\n extendedOptionalSeconds: /^([+-])(\\d{2}):(\\d{2})(:(\\d{2}))?|Z/,\n};\n", "import {\n millisecondsInHour,\n millisecondsInMinute,\n millisecondsInSecond,\n} from \"../../constants.mjs\";\nimport { numericPatterns } from \"./constants.mjs\";\n\nexport function mapValue(parseFnResult, mapFn) {\n if (!parseFnResult) {\n return parseFnResult;\n }\n\n return {\n value: mapFn(parseFnResult.value),\n rest: parseFnResult.rest,\n };\n}\n\nexport function parseNumericPattern(pattern, dateString) {\n const matchResult = dateString.match(pattern);\n\n if (!matchResult) {\n return null;\n }\n\n return {\n value: parseInt(matchResult[0], 10),\n rest: dateString.slice(matchResult[0].length),\n };\n}\n\nexport function parseTimezonePattern(pattern, dateString) {\n const matchResult = dateString.match(pattern);\n\n if (!matchResult) {\n return null;\n }\n\n // Input is 'Z'\n if (matchResult[0] === \"Z\") {\n return {\n value: 0,\n rest: dateString.slice(1),\n };\n }\n\n const sign = matchResult[1] === \"+\" ? 1 : -1;\n const hours = matchResult[2] ? parseInt(matchResult[2], 10) : 0;\n const minutes = matchResult[3] ? parseInt(matchResult[3], 10) : 0;\n const seconds = matchResult[5] ? parseInt(matchResult[5], 10) : 0;\n\n return {\n value:\n sign *\n (hours * millisecondsInHour +\n minutes * millisecondsInMinute +\n seconds * millisecondsInSecond),\n rest: dateString.slice(matchResult[0].length),\n };\n}\n\nexport function parseAnyDigitsSigned(dateString) {\n return parseNumericPattern(numericPatterns.anyDigitsSigned, dateString);\n}\n\nexport function parseNDigits(n, dateString) {\n switch (n) {\n case 1:\n return parseNumericPattern(numericPatterns.singleDigit, dateString);\n case 2:\n return parseNumericPattern(numericPatterns.twoDigits, dateString);\n case 3:\n return parseNumericPattern(numericPatterns.threeDigits, dateString);\n case 4:\n return parseNumericPattern(numericPatterns.fourDigits, dateString);\n default:\n return parseNumericPattern(new RegExp(\"^\\\\d{1,\" + n + \"}\"), dateString);\n }\n}\n\nexport function parseNDigitsSigned(n, dateString) {\n switch (n) {\n case 1:\n return parseNumericPattern(numericPatterns.singleDigitSigned, dateString);\n case 2:\n return parseNumericPattern(numericPatterns.twoDigitsSigned, dateString);\n case 3:\n return parseNumericPattern(numericPatterns.threeDigitsSigned, dateString);\n case 4:\n return parseNumericPattern(numericPatterns.fourDigitsSigned, dateString);\n default:\n return parseNumericPattern(new RegExp(\"^-?\\\\d{1,\" + n + \"}\"), dateString);\n }\n}\n\nexport function dayPeriodEnumToHours(dayPeriod) {\n switch (dayPeriod) {\n case \"morning\":\n return 4;\n case \"evening\":\n return 17;\n case \"pm\":\n case \"noon\":\n case \"afternoon\":\n return 12;\n case \"am\":\n case \"midnight\":\n case \"night\":\n default:\n return 0;\n }\n}\n\nexport function normalizeTwoDigitYear(twoDigitYear, currentYear) {\n const isCommonEra = currentYear > 0;\n // Absolute number of the current year:\n // 1 -> 1 AC\n // 0 -> 1 BC\n // -1 -> 2 BC\n const absCurrentYear = isCommonEra ? currentYear : 1 - currentYear;\n\n let result;\n if (absCurrentYear <= 50) {\n result = twoDigitYear || 100;\n } else {\n const rangeEnd = absCurrentYear + 50;\n const rangeEndCentury = Math.floor(rangeEnd / 100) * 100;\n const isPreviousCentury = twoDigitYear >= rangeEnd % 100;\n result = twoDigitYear + rangeEndCentury - (isPreviousCentury ? 100 : 0);\n }\n\n return isCommonEra ? result : 1 - result;\n}\n\nexport function isLeapYearIndex(year) {\n return year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0);\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { mapValue, normalizeTwoDigitYear, parseNDigits } from \"../utils.mjs\";\n\n// From http://www.unicode.org/reports/tr35/tr35-31/tr35-dates.html#Date_Format_Patterns\n// | Year | y | yy | yyy | yyyy | yyyyy |\n// |----------|-------|----|-------|-------|-------|\n// | AD 1 | 1 | 01 | 001 | 0001 | 00001 |\n// | AD 12 | 12 | 12 | 012 | 0012 | 00012 |\n// | AD 123 | 123 | 23 | 123 | 0123 | 00123 |\n// | AD 1234 | 1234 | 34 | 1234 | 1234 | 01234 |\n// | AD 12345 | 12345 | 45 | 12345 | 12345 | 12345 |\nexport class YearParser extends Parser {\n priority = 130;\n incompatibleTokens = [\"Y\", \"R\", \"u\", \"w\", \"I\", \"i\", \"e\", \"c\", \"t\", \"T\"];\n\n parse(dateString, token, match) {\n const valueCallback = (year) => ({\n year,\n isTwoDigitYear: token === \"yy\",\n });\n\n switch (token) {\n case \"y\":\n return mapValue(parseNDigits(4, dateString), valueCallback);\n case \"yo\":\n return mapValue(\n match.ordinalNumber(dateString, {\n unit: \"year\",\n }),\n valueCallback,\n );\n default:\n return mapValue(parseNDigits(token.length, dateString), valueCallback);\n }\n }\n\n validate(_date, value) {\n return value.isTwoDigitYear || value.year > 0;\n }\n\n set(date, flags, value) {\n const currentYear = date.getFullYear();\n\n if (value.isTwoDigitYear) {\n const normalizedTwoDigitYear = normalizeTwoDigitYear(\n value.year,\n currentYear,\n );\n date.setFullYear(normalizedTwoDigitYear, 0, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n const year =\n !(\"era\" in flags) || flags.era === 1 ? value.year : 1 - value.year;\n date.setFullYear(year, 0, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n}\n", "import { getWeekYear } from \"../../../getWeekYear.mjs\";\nimport { startOfWeek } from \"../../../startOfWeek.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { mapValue, normalizeTwoDigitYear, parseNDigits } from \"../utils.mjs\";\n\n// Local week-numbering year\nexport class LocalWeekYearParser extends Parser {\n priority = 130;\n\n parse(dateString, token, match) {\n const valueCallback = (year) => ({\n year,\n isTwoDigitYear: token === \"YY\",\n });\n\n switch (token) {\n case \"Y\":\n return mapValue(parseNDigits(4, dateString), valueCallback);\n case \"Yo\":\n return mapValue(\n match.ordinalNumber(dateString, {\n unit: \"year\",\n }),\n valueCallback,\n );\n default:\n return mapValue(parseNDigits(token.length, dateString), valueCallback);\n }\n }\n\n validate(_date, value) {\n return value.isTwoDigitYear || value.year > 0;\n }\n\n set(date, flags, value, options) {\n const currentYear = getWeekYear(date, options);\n\n if (value.isTwoDigitYear) {\n const normalizedTwoDigitYear = normalizeTwoDigitYear(\n value.year,\n currentYear,\n );\n date.setFullYear(\n normalizedTwoDigitYear,\n 0,\n options.firstWeekContainsDate,\n );\n date.setHours(0, 0, 0, 0);\n return startOfWeek(date, options);\n }\n\n const year =\n !(\"era\" in flags) || flags.era === 1 ? value.year : 1 - value.year;\n date.setFullYear(year, 0, options.firstWeekContainsDate);\n date.setHours(0, 0, 0, 0);\n return startOfWeek(date, options);\n }\n\n incompatibleTokens = [\n \"y\",\n \"R\",\n \"u\",\n \"Q\",\n \"q\",\n \"M\",\n \"L\",\n \"I\",\n \"d\",\n \"D\",\n \"i\",\n \"t\",\n \"T\",\n ];\n}\n", "import { startOfISOWeek } from \"../../../startOfISOWeek.mjs\";\nimport { constructFrom } from \"../../../constructFrom.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigitsSigned } from \"../utils.mjs\";\n\n// ISO week-numbering year\nexport class ISOWeekYearParser extends Parser {\n priority = 130;\n\n parse(dateString, token) {\n if (token === \"R\") {\n return parseNDigitsSigned(4, dateString);\n }\n\n return parseNDigitsSigned(token.length, dateString);\n }\n\n set(date, _flags, value) {\n const firstWeekOfYear = constructFrom(date, 0);\n firstWeekOfYear.setFullYear(value, 0, 4);\n firstWeekOfYear.setHours(0, 0, 0, 0);\n return startOfISOWeek(firstWeekOfYear);\n }\n\n incompatibleTokens = [\n \"G\",\n \"y\",\n \"Y\",\n \"u\",\n \"Q\",\n \"q\",\n \"M\",\n \"L\",\n \"w\",\n \"d\",\n \"D\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { parseNDigitsSigned } from \"../utils.mjs\";\n\nexport class ExtendedYearParser extends Parser {\n priority = 130;\n\n parse(dateString, token) {\n if (token === \"u\") {\n return parseNDigitsSigned(4, dateString);\n }\n\n return parseNDigitsSigned(token.length, dateString);\n }\n\n set(date, _flags, value) {\n date.setFullYear(value, 0, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"G\", \"y\", \"Y\", \"R\", \"w\", \"I\", \"i\", \"e\", \"c\", \"t\", \"T\"];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { parseNDigits } from \"../utils.mjs\";\n\nexport class QuarterParser extends Parser {\n priority = 120;\n\n parse(dateString, token, match) {\n switch (token) {\n // 1, 2, 3, 4\n case \"Q\":\n case \"QQ\": // 01, 02, 03, 04\n return parseNDigits(token.length, dateString);\n // 1st, 2nd, 3rd, 4th\n case \"Qo\":\n return match.ordinalNumber(dateString, { unit: \"quarter\" });\n // Q1, Q2, Q3, Q4\n case \"QQQ\":\n return (\n match.quarter(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.quarter(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n\n // 1, 2, 3, 4 (narrow quarter; could be not numerical)\n case \"QQQQQ\":\n return match.quarter(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n // 1st quarter, 2nd quarter, ...\n case \"QQQQ\":\n default:\n return (\n match.quarter(dateString, {\n width: \"wide\",\n context: \"formatting\",\n }) ||\n match.quarter(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.quarter(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 4;\n }\n\n set(date, _flags, value) {\n date.setMonth((value - 1) * 3, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"Y\",\n \"R\",\n \"q\",\n \"M\",\n \"L\",\n \"w\",\n \"I\",\n \"d\",\n \"D\",\n \"i\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { parseNDigits } from \"../utils.mjs\";\n\nexport class StandAloneQuarterParser extends Parser {\n priority = 120;\n\n parse(dateString, token, match) {\n switch (token) {\n // 1, 2, 3, 4\n case \"q\":\n case \"qq\": // 01, 02, 03, 04\n return parseNDigits(token.length, dateString);\n // 1st, 2nd, 3rd, 4th\n case \"qo\":\n return match.ordinalNumber(dateString, { unit: \"quarter\" });\n // Q1, Q2, Q3, Q4\n case \"qqq\":\n return (\n match.quarter(dateString, {\n width: \"abbreviated\",\n context: \"standalone\",\n }) ||\n match.quarter(dateString, {\n width: \"narrow\",\n context: \"standalone\",\n })\n );\n\n // 1, 2, 3, 4 (narrow quarter; could be not numerical)\n case \"qqqqq\":\n return match.quarter(dateString, {\n width: \"narrow\",\n context: \"standalone\",\n });\n // 1st quarter, 2nd quarter, ...\n case \"qqqq\":\n default:\n return (\n match.quarter(dateString, {\n width: \"wide\",\n context: \"standalone\",\n }) ||\n match.quarter(dateString, {\n width: \"abbreviated\",\n context: \"standalone\",\n }) ||\n match.quarter(dateString, {\n width: \"narrow\",\n context: \"standalone\",\n })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 4;\n }\n\n set(date, _flags, value) {\n date.setMonth((value - 1) * 3, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"Y\",\n \"R\",\n \"Q\",\n \"M\",\n \"L\",\n \"w\",\n \"I\",\n \"d\",\n \"D\",\n \"i\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { mapValue, parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class MonthParser extends Parser {\n incompatibleTokens = [\n \"Y\",\n \"R\",\n \"q\",\n \"Q\",\n \"L\",\n \"w\",\n \"I\",\n \"D\",\n \"i\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n\n priority = 110;\n\n parse(dateString, token, match) {\n const valueCallback = (value) => value - 1;\n\n switch (token) {\n // 1, 2, ..., 12\n case \"M\":\n return mapValue(\n parseNumericPattern(numericPatterns.month, dateString),\n valueCallback,\n );\n // 01, 02, ..., 12\n case \"MM\":\n return mapValue(parseNDigits(2, dateString), valueCallback);\n // 1st, 2nd, ..., 12th\n case \"Mo\":\n return mapValue(\n match.ordinalNumber(dateString, {\n unit: \"month\",\n }),\n valueCallback,\n );\n // Jan, Feb, ..., Dec\n case \"MMM\":\n return (\n match.month(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.month(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n\n // J, F, ..., D\n case \"MMMMM\":\n return match.month(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n // January, February, ..., December\n case \"MMMM\":\n default:\n return (\n match.month(dateString, { width: \"wide\", context: \"formatting\" }) ||\n match.month(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.month(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 11;\n }\n\n set(date, _flags, value) {\n date.setMonth(value, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { mapValue, parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class StandAloneMonthParser extends Parser {\n priority = 110;\n\n parse(dateString, token, match) {\n const valueCallback = (value) => value - 1;\n\n switch (token) {\n // 1, 2, ..., 12\n case \"L\":\n return mapValue(\n parseNumericPattern(numericPatterns.month, dateString),\n valueCallback,\n );\n // 01, 02, ..., 12\n case \"LL\":\n return mapValue(parseNDigits(2, dateString), valueCallback);\n // 1st, 2nd, ..., 12th\n case \"Lo\":\n return mapValue(\n match.ordinalNumber(dateString, {\n unit: \"month\",\n }),\n valueCallback,\n );\n // Jan, Feb, ..., Dec\n case \"LLL\":\n return (\n match.month(dateString, {\n width: \"abbreviated\",\n context: \"standalone\",\n }) ||\n match.month(dateString, { width: \"narrow\", context: \"standalone\" })\n );\n\n // J, F, ..., D\n case \"LLLLL\":\n return match.month(dateString, {\n width: \"narrow\",\n context: \"standalone\",\n });\n // January, February, ..., December\n case \"LLLL\":\n default:\n return (\n match.month(dateString, { width: \"wide\", context: \"standalone\" }) ||\n match.month(dateString, {\n width: \"abbreviated\",\n context: \"standalone\",\n }) ||\n match.month(dateString, { width: \"narrow\", context: \"standalone\" })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 11;\n }\n\n set(date, _flags, value) {\n date.setMonth(value, 1);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"Y\",\n \"R\",\n \"q\",\n \"Q\",\n \"M\",\n \"w\",\n \"I\",\n \"D\",\n \"i\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { getWeek } from \"./getWeek.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * The {@link setWeek} function options.\n */\n\n/**\n * @name setWeek\n * @category Week Helpers\n * @summary Set the local week to the given date.\n *\n * @description\n * Set the local week to the given date, saving the weekday number.\n * The exact calculation depends on the values of\n * `options.weekStartsOn` (which is the index of the first day of the week)\n * and `options.firstWeekContainsDate` (which is the day of January, which is always in\n * the first week of the week-numbering year)\n *\n * Week numbering: https://en.wikipedia.org/wiki/Week#The_ISO_week_date_system\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to be changed\n * @param week - The week of the new date\n * @param options - An object with options\n *\n * @returns The new date with the local week set\n *\n * @example\n * // Set the 1st week to 2 January 2005 with default options:\n * const result = setWeek(new Date(2005, 0, 2), 1)\n * //=> Sun Dec 26 2004 00:00:00\n *\n * @example\n * // Set the 1st week to 2 January 2005,\n * // if Monday is the first day of the week,\n * // and the first week of the year always contains 4 January:\n * const result = setWeek(new Date(2005, 0, 2), 1, {\n * weekStartsOn: 1,\n * firstWeekContainsDate: 4\n * })\n * //=> Sun Jan 4 2004 00:00:00\n */\nexport function setWeek(date, week, options) {\n const _date = toDate(date);\n const diff = getWeek(_date, options) - week;\n _date.setDate(_date.getDate() - diff * 7);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default setWeek;\n", "import { setWeek } from \"../../../setWeek.mjs\";\nimport { startOfWeek } from \"../../../startOfWeek.mjs\";\nimport { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\n// Local week of year\nexport class LocalWeekParser extends Parser {\n priority = 100;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"w\":\n return parseNumericPattern(numericPatterns.week, dateString);\n case \"wo\":\n return match.ordinalNumber(dateString, { unit: \"week\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 53;\n }\n\n set(date, _flags, value, options) {\n return startOfWeek(setWeek(date, value, options), options);\n }\n\n incompatibleTokens = [\n \"y\",\n \"R\",\n \"u\",\n \"q\",\n \"Q\",\n \"M\",\n \"L\",\n \"I\",\n \"d\",\n \"D\",\n \"i\",\n \"t\",\n \"T\",\n ];\n}\n", "import { getISOWeek } from \"./getISOWeek.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * @name setISOWeek\n * @category ISO Week Helpers\n * @summary Set the ISO week to the given date.\n *\n * @description\n * Set the ISO week to the given date, saving the weekday number.\n *\n * ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to be changed\n * @param week - The ISO week of the new date\n *\n * @returns The new date with the ISO week set\n *\n * @example\n * // Set the 53rd ISO week to 7 August 2004:\n * const result = setISOWeek(new Date(2004, 7, 7), 53)\n * //=> Sat Jan 01 2005 00:00:00\n */\nexport function setISOWeek(date, week) {\n const _date = toDate(date);\n const diff = getISOWeek(_date) - week;\n _date.setDate(_date.getDate() - diff * 7);\n return _date;\n}\n\n// Fallback for modularized imports:\nexport default setISOWeek;\n", "import { setISOWeek } from \"../../../setISOWeek.mjs\";\nimport { startOfISOWeek } from \"../../../startOfISOWeek.mjs\";\nimport { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\n// ISO week of year\nexport class ISOWeekParser extends Parser {\n priority = 100;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"I\":\n return parseNumericPattern(numericPatterns.week, dateString);\n case \"Io\":\n return match.ordinalNumber(dateString, { unit: \"week\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 53;\n }\n\n set(date, _flags, value) {\n return startOfISOWeek(setISOWeek(date, value));\n }\n\n incompatibleTokens = [\n \"y\",\n \"Y\",\n \"u\",\n \"q\",\n \"Q\",\n \"M\",\n \"L\",\n \"w\",\n \"d\",\n \"D\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport {\n isLeapYearIndex,\n parseNDigits,\n parseNumericPattern,\n} from \"../utils.mjs\";\n\nconst DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\nconst DAYS_IN_MONTH_LEAP_YEAR = [\n 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31,\n];\n\n// Day of the month\nexport class DateParser extends Parser {\n priority = 90;\n subPriority = 1;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"d\":\n return parseNumericPattern(numericPatterns.date, dateString);\n case \"do\":\n return match.ordinalNumber(dateString, { unit: \"date\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(date, value) {\n const year = date.getFullYear();\n const isLeapYear = isLeapYearIndex(year);\n const month = date.getMonth();\n if (isLeapYear) {\n return value >= 1 && value <= DAYS_IN_MONTH_LEAP_YEAR[month];\n } else {\n return value >= 1 && value <= DAYS_IN_MONTH[month];\n }\n }\n\n set(date, _flags, value) {\n date.setDate(value);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"Y\",\n \"R\",\n \"q\",\n \"Q\",\n \"w\",\n \"I\",\n \"D\",\n \"i\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport {\n isLeapYearIndex,\n parseNDigits,\n parseNumericPattern,\n} from \"../utils.mjs\";\n\nexport class DayOfYearParser extends Parser {\n priority = 90;\n\n subpriority = 1;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"D\":\n case \"DD\":\n return parseNumericPattern(numericPatterns.dayOfYear, dateString);\n case \"Do\":\n return match.ordinalNumber(dateString, { unit: \"date\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(date, value) {\n const year = date.getFullYear();\n const isLeapYear = isLeapYearIndex(year);\n if (isLeapYear) {\n return value >= 1 && value <= 366;\n } else {\n return value >= 1 && value <= 365;\n }\n }\n\n set(date, _flags, value) {\n date.setMonth(0, value);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"Y\",\n \"R\",\n \"q\",\n \"Q\",\n \"M\",\n \"L\",\n \"w\",\n \"I\",\n \"d\",\n \"E\",\n \"i\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { addDays } from \"./addDays.mjs\";\nimport { toDate } from \"./toDate.mjs\";\nimport { getDefaultOptions } from \"./_lib/defaultOptions.mjs\";\n\n/**\n * The {@link setDay} function options.\n */\n\n/**\n * @name setDay\n * @category Weekday Helpers\n * @summary Set the day of the week to the given date.\n *\n * @description\n * Set the day of the week to the given date.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to be changed\n * @param day - The day of the week of the new date\n * @param options - An object with options.\n *\n * @returns The new date with the day of the week set\n *\n * @example\n * // Set week day to Sunday, with the default weekStartsOn of Sunday:\n * const result = setDay(new Date(2014, 8, 1), 0)\n * //=> Sun Aug 31 2014 00:00:00\n *\n * @example\n * // Set week day to Sunday, with a weekStartsOn of Monday:\n * const result = setDay(new Date(2014, 8, 1), 0, { weekStartsOn: 1 })\n * //=> Sun Sep 07 2014 00:00:00\n */\nexport function setDay(date, day, options) {\n const defaultOptions = getDefaultOptions();\n const weekStartsOn =\n options?.weekStartsOn ??\n options?.locale?.options?.weekStartsOn ??\n defaultOptions.weekStartsOn ??\n defaultOptions.locale?.options?.weekStartsOn ??\n 0;\n\n const _date = toDate(date);\n const currentDay = _date.getDay();\n\n const remainder = day % 7;\n const dayIndex = (remainder + 7) % 7;\n\n const delta = 7 - weekStartsOn;\n const diff =\n day < 0 || day > 6\n ? day - ((currentDay + delta) % 7)\n : ((dayIndex + delta) % 7) - ((currentDay + delta) % 7);\n return addDays(_date, diff);\n}\n\n// Fallback for modularized imports:\nexport default setDay;\n", "import { setDay } from \"../../../setDay.mjs\";\nimport { Parser } from \"../Parser.mjs\";\n\n// Day of week\nexport class DayParser extends Parser {\n priority = 90;\n\n parse(dateString, token, match) {\n switch (token) {\n // Tue\n case \"E\":\n case \"EE\":\n case \"EEE\":\n return (\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.day(dateString, { width: \"short\", context: \"formatting\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n\n // T\n case \"EEEEE\":\n return match.day(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n // Tu\n case \"EEEEEE\":\n return (\n match.day(dateString, { width: \"short\", context: \"formatting\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n\n // Tuesday\n case \"EEEE\":\n default:\n return (\n match.day(dateString, { width: \"wide\", context: \"formatting\" }) ||\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.day(dateString, { width: \"short\", context: \"formatting\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 6;\n }\n\n set(date, _flags, value, options) {\n date = setDay(date, value, options);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"D\", \"i\", \"e\", \"c\", \"t\", \"T\"];\n}\n", "import { setDay } from \"../../../setDay.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { mapValue, parseNDigits } from \"../utils.mjs\";\n\n// Local day of week\nexport class LocalDayParser extends Parser {\n priority = 90;\n parse(dateString, token, match, options) {\n const valueCallback = (value) => {\n const wholeWeekDays = Math.floor((value - 1) / 7) * 7;\n return ((value + options.weekStartsOn + 6) % 7) + wholeWeekDays;\n };\n\n switch (token) {\n // 3\n case \"e\":\n case \"ee\": // 03\n return mapValue(parseNDigits(token.length, dateString), valueCallback);\n // 3rd\n case \"eo\":\n return mapValue(\n match.ordinalNumber(dateString, {\n unit: \"day\",\n }),\n valueCallback,\n );\n // Tue\n case \"eee\":\n return (\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.day(dateString, { width: \"short\", context: \"formatting\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n\n // T\n case \"eeeee\":\n return match.day(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n // Tu\n case \"eeeeee\":\n return (\n match.day(dateString, { width: \"short\", context: \"formatting\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n\n // Tuesday\n case \"eeee\":\n default:\n return (\n match.day(dateString, { width: \"wide\", context: \"formatting\" }) ||\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.day(dateString, { width: \"short\", context: \"formatting\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"formatting\" })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 6;\n }\n\n set(date, _flags, value, options) {\n date = setDay(date, value, options);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"y\",\n \"R\",\n \"u\",\n \"q\",\n \"Q\",\n \"M\",\n \"L\",\n \"I\",\n \"d\",\n \"D\",\n \"E\",\n \"i\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { setDay } from \"../../../setDay.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { mapValue, parseNDigits } from \"../utils.mjs\";\n\n// Stand-alone local day of week\nexport class StandAloneLocalDayParser extends Parser {\n priority = 90;\n\n parse(dateString, token, match, options) {\n const valueCallback = (value) => {\n const wholeWeekDays = Math.floor((value - 1) / 7) * 7;\n return ((value + options.weekStartsOn + 6) % 7) + wholeWeekDays;\n };\n\n switch (token) {\n // 3\n case \"c\":\n case \"cc\": // 03\n return mapValue(parseNDigits(token.length, dateString), valueCallback);\n // 3rd\n case \"co\":\n return mapValue(\n match.ordinalNumber(dateString, {\n unit: \"day\",\n }),\n valueCallback,\n );\n // Tue\n case \"ccc\":\n return (\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"standalone\",\n }) ||\n match.day(dateString, { width: \"short\", context: \"standalone\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"standalone\" })\n );\n\n // T\n case \"ccccc\":\n return match.day(dateString, {\n width: \"narrow\",\n context: \"standalone\",\n });\n // Tu\n case \"cccccc\":\n return (\n match.day(dateString, { width: \"short\", context: \"standalone\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"standalone\" })\n );\n\n // Tuesday\n case \"cccc\":\n default:\n return (\n match.day(dateString, { width: \"wide\", context: \"standalone\" }) ||\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"standalone\",\n }) ||\n match.day(dateString, { width: \"short\", context: \"standalone\" }) ||\n match.day(dateString, { width: \"narrow\", context: \"standalone\" })\n );\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 6;\n }\n\n set(date, _flags, value, options) {\n date = setDay(date, value, options);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"y\",\n \"R\",\n \"u\",\n \"q\",\n \"Q\",\n \"M\",\n \"L\",\n \"I\",\n \"d\",\n \"D\",\n \"E\",\n \"i\",\n \"e\",\n \"t\",\n \"T\",\n ];\n}\n", "import { addDays } from \"./addDays.mjs\";\nimport { getISODay } from \"./getISODay.mjs\";\nimport { toDate } from \"./toDate.mjs\";\n\n/**\n * @name setISODay\n * @category Weekday Helpers\n * @summary Set the day of the ISO week to the given date.\n *\n * @description\n * Set the day of the ISO week to the given date.\n * ISO week starts with Monday.\n * 7 is the index of Sunday, 1 is the index of Monday etc.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param date - The date to be changed\n * @param day - The day of the ISO week of the new date\n *\n * @returns The new date with the day of the ISO week set\n *\n * @example\n * // Set Sunday to 1 September 2014:\n * const result = setISODay(new Date(2014, 8, 1), 7)\n * //=> Sun Sep 07 2014 00:00:00\n */\nexport function setISODay(date, day) {\n const _date = toDate(date);\n const currentDay = getISODay(_date);\n const diff = day - currentDay;\n return addDays(_date, diff);\n}\n\n// Fallback for modularized imports:\nexport default setISODay;\n", "import { setISODay } from \"../../../setISODay.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { mapValue, parseNDigits } from \"../utils.mjs\";\n\n// ISO day of week\nexport class ISODayParser extends Parser {\n priority = 90;\n\n parse(dateString, token, match) {\n const valueCallback = (value) => {\n if (value === 0) {\n return 7;\n }\n return value;\n };\n\n switch (token) {\n // 2\n case \"i\":\n case \"ii\": // 02\n return parseNDigits(token.length, dateString);\n // 2nd\n case \"io\":\n return match.ordinalNumber(dateString, { unit: \"day\" });\n // Tue\n case \"iii\":\n return mapValue(\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.day(dateString, {\n width: \"short\",\n context: \"formatting\",\n }) ||\n match.day(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n }),\n valueCallback,\n );\n // T\n case \"iiiii\":\n return mapValue(\n match.day(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n }),\n valueCallback,\n );\n // Tu\n case \"iiiiii\":\n return mapValue(\n match.day(dateString, {\n width: \"short\",\n context: \"formatting\",\n }) ||\n match.day(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n }),\n valueCallback,\n );\n // Tuesday\n case \"iiii\":\n default:\n return mapValue(\n match.day(dateString, {\n width: \"wide\",\n context: \"formatting\",\n }) ||\n match.day(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.day(dateString, {\n width: \"short\",\n context: \"formatting\",\n }) ||\n match.day(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n }),\n valueCallback,\n );\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 7;\n }\n\n set(date, _flags, value) {\n date = setISODay(date, value);\n date.setHours(0, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\n \"y\",\n \"Y\",\n \"u\",\n \"q\",\n \"Q\",\n \"M\",\n \"L\",\n \"w\",\n \"d\",\n \"D\",\n \"E\",\n \"e\",\n \"c\",\n \"t\",\n \"T\",\n ];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { dayPeriodEnumToHours } from \"../utils.mjs\";\n\nexport class AMPMParser extends Parser {\n priority = 80;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"a\":\n case \"aa\":\n case \"aaa\":\n return (\n match.dayPeriod(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n\n case \"aaaaa\":\n return match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n case \"aaaa\":\n default:\n return (\n match.dayPeriod(dateString, {\n width: \"wide\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n }\n }\n\n set(date, _flags, value) {\n date.setHours(dayPeriodEnumToHours(value), 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"b\", \"B\", \"H\", \"k\", \"t\", \"T\"];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { dayPeriodEnumToHours } from \"../utils.mjs\";\n\nexport class AMPMMidnightParser extends Parser {\n priority = 80;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"b\":\n case \"bb\":\n case \"bbb\":\n return (\n match.dayPeriod(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n\n case \"bbbbb\":\n return match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n case \"bbbb\":\n default:\n return (\n match.dayPeriod(dateString, {\n width: \"wide\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n }\n }\n\n set(date, _flags, value) {\n date.setHours(dayPeriodEnumToHours(value), 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"a\", \"B\", \"H\", \"k\", \"t\", \"T\"];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { dayPeriodEnumToHours } from \"../utils.mjs\";\n\n// in the morning, in the afternoon, in the evening, at night\nexport class DayPeriodParser extends Parser {\n priority = 80;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"B\":\n case \"BB\":\n case \"BBB\":\n return (\n match.dayPeriod(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n\n case \"BBBBB\":\n return match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n });\n case \"BBBB\":\n default:\n return (\n match.dayPeriod(dateString, {\n width: \"wide\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"abbreviated\",\n context: \"formatting\",\n }) ||\n match.dayPeriod(dateString, {\n width: \"narrow\",\n context: \"formatting\",\n })\n );\n }\n }\n\n set(date, _flags, value) {\n date.setHours(dayPeriodEnumToHours(value), 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"a\", \"b\", \"t\", \"T\"];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class Hour1to12Parser extends Parser {\n priority = 70;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"h\":\n return parseNumericPattern(numericPatterns.hour12h, dateString);\n case \"ho\":\n return match.ordinalNumber(dateString, { unit: \"hour\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 12;\n }\n\n set(date, _flags, value) {\n const isPM = date.getHours() >= 12;\n if (isPM && value < 12) {\n date.setHours(value + 12, 0, 0, 0);\n } else if (!isPM && value === 12) {\n date.setHours(0, 0, 0, 0);\n } else {\n date.setHours(value, 0, 0, 0);\n }\n return date;\n }\n\n incompatibleTokens = [\"H\", \"K\", \"k\", \"t\", \"T\"];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class Hour0to23Parser extends Parser {\n priority = 70;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"H\":\n return parseNumericPattern(numericPatterns.hour23h, dateString);\n case \"Ho\":\n return match.ordinalNumber(dateString, { unit: \"hour\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 23;\n }\n\n set(date, _flags, value) {\n date.setHours(value, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"a\", \"b\", \"h\", \"K\", \"k\", \"t\", \"T\"];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class Hour0To11Parser extends Parser {\n priority = 70;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"K\":\n return parseNumericPattern(numericPatterns.hour11h, dateString);\n case \"Ko\":\n return match.ordinalNumber(dateString, { unit: \"hour\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 11;\n }\n\n set(date, _flags, value) {\n const isPM = date.getHours() >= 12;\n if (isPM && value < 12) {\n date.setHours(value + 12, 0, 0, 0);\n } else {\n date.setHours(value, 0, 0, 0);\n }\n return date;\n }\n\n incompatibleTokens = [\"h\", \"H\", \"k\", \"t\", \"T\"];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class Hour1To24Parser extends Parser {\n priority = 70;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"k\":\n return parseNumericPattern(numericPatterns.hour24h, dateString);\n case \"ko\":\n return match.ordinalNumber(dateString, { unit: \"hour\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 1 && value <= 24;\n }\n\n set(date, _flags, value) {\n const hours = value <= 24 ? value % 24 : value;\n date.setHours(hours, 0, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"a\", \"b\", \"h\", \"H\", \"K\", \"t\", \"T\"];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class MinuteParser extends Parser {\n priority = 60;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"m\":\n return parseNumericPattern(numericPatterns.minute, dateString);\n case \"mo\":\n return match.ordinalNumber(dateString, { unit: \"minute\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 59;\n }\n\n set(date, _flags, value) {\n date.setMinutes(value, 0, 0);\n return date;\n }\n\n incompatibleTokens = [\"t\", \"T\"];\n}\n", "import { numericPatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseNDigits, parseNumericPattern } from \"../utils.mjs\";\n\nexport class SecondParser extends Parser {\n priority = 50;\n\n parse(dateString, token, match) {\n switch (token) {\n case \"s\":\n return parseNumericPattern(numericPatterns.second, dateString);\n case \"so\":\n return match.ordinalNumber(dateString, { unit: \"second\" });\n default:\n return parseNDigits(token.length, dateString);\n }\n }\n\n validate(_date, value) {\n return value >= 0 && value <= 59;\n }\n\n set(date, _flags, value) {\n date.setSeconds(value, 0);\n return date;\n }\n\n incompatibleTokens = [\"t\", \"T\"];\n}\n", "import { Parser } from \"../Parser.mjs\";\nimport { mapValue, parseNDigits } from \"../utils.mjs\";\n\nexport class FractionOfSecondParser extends Parser {\n priority = 30;\n\n parse(dateString, token) {\n const valueCallback = (value) =>\n Math.floor(value * Math.pow(10, -token.length + 3));\n return mapValue(parseNDigits(token.length, dateString), valueCallback);\n }\n\n set(date, _flags, value) {\n date.setMilliseconds(value);\n return date;\n }\n\n incompatibleTokens = [\"t\", \"T\"];\n}\n", "import { constructFrom } from \"../../../constructFrom.mjs\";\nimport { getTimezoneOffsetInMilliseconds } from \"../../../_lib/getTimezoneOffsetInMilliseconds.mjs\";\nimport { timezonePatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseTimezonePattern } from \"../utils.mjs\";\n\n// Timezone (ISO-8601. +00:00 is `'Z'`)\nexport class ISOTimezoneWithZParser extends Parser {\n priority = 10;\n\n parse(dateString, token) {\n switch (token) {\n case \"X\":\n return parseTimezonePattern(\n timezonePatterns.basicOptionalMinutes,\n dateString,\n );\n case \"XX\":\n return parseTimezonePattern(timezonePatterns.basic, dateString);\n case \"XXXX\":\n return parseTimezonePattern(\n timezonePatterns.basicOptionalSeconds,\n dateString,\n );\n case \"XXXXX\":\n return parseTimezonePattern(\n timezonePatterns.extendedOptionalSeconds,\n dateString,\n );\n case \"XXX\":\n default:\n return parseTimezonePattern(timezonePatterns.extended, dateString);\n }\n }\n\n set(date, flags, value) {\n if (flags.timestampIsSet) return date;\n return constructFrom(\n date,\n date.getTime() - getTimezoneOffsetInMilliseconds(date) - value,\n );\n }\n\n incompatibleTokens = [\"t\", \"T\", \"x\"];\n}\n", "import { constructFrom } from \"../../../constructFrom.mjs\";\nimport { getTimezoneOffsetInMilliseconds } from \"../../../_lib/getTimezoneOffsetInMilliseconds.mjs\";\nimport { timezonePatterns } from \"../constants.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseTimezonePattern } from \"../utils.mjs\";\n\n// Timezone (ISO-8601)\nexport class ISOTimezoneParser extends Parser {\n priority = 10;\n\n parse(dateString, token) {\n switch (token) {\n case \"x\":\n return parseTimezonePattern(\n timezonePatterns.basicOptionalMinutes,\n dateString,\n );\n case \"xx\":\n return parseTimezonePattern(timezonePatterns.basic, dateString);\n case \"xxxx\":\n return parseTimezonePattern(\n timezonePatterns.basicOptionalSeconds,\n dateString,\n );\n case \"xxxxx\":\n return parseTimezonePattern(\n timezonePatterns.extendedOptionalSeconds,\n dateString,\n );\n case \"xxx\":\n default:\n return parseTimezonePattern(timezonePatterns.extended, dateString);\n }\n }\n\n set(date, flags, value) {\n if (flags.timestampIsSet) return date;\n return constructFrom(\n date,\n date.getTime() - getTimezoneOffsetInMilliseconds(date) - value,\n );\n }\n\n incompatibleTokens = [\"t\", \"T\", \"X\"];\n}\n", "import { constructFrom } from \"../../../constructFrom.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseAnyDigitsSigned } from \"../utils.mjs\";\n\nexport class TimestampSecondsParser extends Parser {\n priority = 40;\n\n parse(dateString) {\n return parseAnyDigitsSigned(dateString);\n }\n\n set(date, _flags, value) {\n return [constructFrom(date, value * 1000), { timestampIsSet: true }];\n }\n\n incompatibleTokens = \"*\";\n}\n", "import { constructFrom } from \"../../../constructFrom.mjs\";\nimport { Parser } from \"../Parser.mjs\";\nimport { parseAnyDigitsSigned } from \"../utils.mjs\";\n\nexport class TimestampMillisecondsParser extends Parser {\n priority = 20;\n\n parse(dateString) {\n return parseAnyDigitsSigned(dateString);\n }\n\n set(date, _flags, value) {\n return [constructFrom(date, value), { timestampIsSet: true }];\n }\n\n incompatibleTokens = \"*\";\n}\n", "import { EraParser } from \"./parsers/EraParser.mjs\";\nimport { YearParser } from \"./parsers/YearParser.mjs\";\nimport { LocalWeekYearParser } from \"./parsers/LocalWeekYearParser.mjs\";\nimport { ISOWeekYearParser } from \"./parsers/ISOWeekYearParser.mjs\";\nimport { ExtendedYearParser } from \"./parsers/ExtendedYearParser.mjs\";\nimport { QuarterParser } from \"./parsers/QuarterParser.mjs\";\nimport { StandAloneQuarterParser } from \"./parsers/StandAloneQuarterParser.mjs\";\nimport { MonthParser } from \"./parsers/MonthParser.mjs\";\nimport { StandAloneMonthParser } from \"./parsers/StandAloneMonthParser.mjs\";\nimport { LocalWeekParser } from \"./parsers/LocalWeekParser.mjs\";\nimport { ISOWeekParser } from \"./parsers/ISOWeekParser.mjs\";\nimport { DateParser } from \"./parsers/DateParser.mjs\";\nimport { DayOfYearParser } from \"./parsers/DayOfYearParser.mjs\";\nimport { DayParser } from \"./parsers/DayParser.mjs\";\nimport { LocalDayParser } from \"./parsers/LocalDayParser.mjs\";\nimport { StandAloneLocalDayParser } from \"./parsers/StandAloneLocalDayParser.mjs\";\nimport { ISODayParser } from \"./parsers/ISODayParser.mjs\";\nimport { AMPMParser } from \"./parsers/AMPMParser.mjs\";\nimport { AMPMMidnightParser } from \"./parsers/AMPMMidnightParser.mjs\";\nimport { DayPeriodParser } from \"./parsers/DayPeriodParser.mjs\";\nimport { Hour1to12Parser } from \"./parsers/Hour1to12Parser.mjs\";\nimport { Hour0to23Parser } from \"./parsers/Hour0to23Parser.mjs\";\nimport { Hour0To11Parser } from \"./parsers/Hour0To11Parser.mjs\";\nimport { Hour1To24Parser } from \"./parsers/Hour1To24Parser.mjs\";\nimport { MinuteParser } from \"./parsers/MinuteParser.mjs\";\nimport { SecondParser } from \"./parsers/SecondParser.mjs\";\nimport { FractionOfSecondParser } from \"./parsers/FractionOfSecondParser.mjs\";\nimport { ISOTimezoneWithZParser } from \"./parsers/ISOTimezoneWithZParser.mjs\";\nimport { ISOTimezoneParser } from \"./parsers/ISOTimezoneParser.mjs\";\nimport { TimestampSecondsParser } from \"./parsers/TimestampSecondsParser.mjs\";\nimport { TimestampMillisecondsParser } from \"./parsers/TimestampMillisecondsParser.mjs\";\n\n/*\n * | | Unit | | Unit |\n * |-----|--------------------------------|-----|--------------------------------|\n * | a | AM, PM | A* | Milliseconds in day |\n * | b | AM, PM, noon, midnight | B | Flexible day period |\n * | c | Stand-alone local day of week | C* | Localized hour w/ day period |\n * | d | Day of month | D | Day of year |\n * | e | Local day of week | E | Day of week |\n * | f | | F* | Day of week in month |\n * | g* | Modified Julian day | G | Era |\n * | h | Hour [1-12] | H | Hour [0-23] |\n * | i! | ISO day of week | I! | ISO week of year |\n * | j* | Localized hour w/ day period | J* | Localized hour w/o day period |\n * | k | Hour [1-24] | K | Hour [0-11] |\n * | l* | (deprecated) | L | Stand-alone month |\n * | m | Minute | M | Month |\n * | n | | N | |\n * | o! | Ordinal number modifier | O* | Timezone (GMT) |\n * | p | | P | |\n * | q | Stand-alone quarter | Q | Quarter |\n * | r* | Related Gregorian year | R! | ISO week-numbering year |\n * | s | Second | S | Fraction of second |\n * | t! | Seconds timestamp | T! | Milliseconds timestamp |\n * | u | Extended year | U* | Cyclic year |\n * | v* | Timezone (generic non-locat.) | V* | Timezone (location) |\n * | w | Local week of year | W* | Week of month |\n * | x | Timezone (ISO-8601 w/o Z) | X | Timezone (ISO-8601) |\n * | y | Year (abs) | Y | Local week-numbering year |\n * | z* | Timezone (specific non-locat.) | Z* | Timezone (aliases) |\n *\n * Letters marked by * are not implemented but reserved by Unicode standard.\n *\n * Letters marked by ! are non-standard, but implemented by date-fns:\n * - `o` modifies the previous token to turn it into an ordinal (see `parse` docs)\n * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days,\n * i.e. 7 for Sunday, 1 for Monday, etc.\n * - `I` is ISO week of year, as opposed to `w` which is local week of year.\n * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year.\n * `R` is supposed to be used in conjunction with `I` and `i`\n * for universal ISO week-numbering date, whereas\n * `Y` is supposed to be used in conjunction with `w` and `e`\n * for week-numbering date specific to the locale.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any -- It's ok, we want any here\nexport const parsers = {\n G: new EraParser(),\n y: new YearParser(),\n Y: new LocalWeekYearParser(),\n R: new ISOWeekYearParser(),\n u: new ExtendedYearParser(),\n Q: new QuarterParser(),\n q: new StandAloneQuarterParser(),\n M: new MonthParser(),\n L: new StandAloneMonthParser(),\n w: new LocalWeekParser(),\n I: new ISOWeekParser(),\n d: new DateParser(),\n D: new DayOfYearParser(),\n E: new DayParser(),\n e: new LocalDayParser(),\n c: new StandAloneLocalDayParser(),\n i: new ISODayParser(),\n a: new AMPMParser(),\n b: new AMPMMidnightParser(),\n B: new DayPeriodParser(),\n h: new Hour1to12Parser(),\n H: new Hour0to23Parser(),\n K: new Hour0To11Parser(),\n k: new Hour1To24Parser(),\n m: new MinuteParser(),\n s: new SecondParser(),\n S: new FractionOfSecondParser(),\n X: new ISOTimezoneWithZParser(),\n x: new ISOTimezoneParser(),\n t: new TimestampSecondsParser(),\n T: new TimestampMillisecondsParser(),\n};\n", "import { constructFrom } from \"./constructFrom.mjs\";\nimport { getDefaultOptions } from \"./getDefaultOptions.mjs\";\nimport { enUS as defaultLocale } from \"./locale/en-US.mjs\";\nimport { toDate } from \"./toDate.mjs\";\nimport { longFormatters } from \"./_lib/format/longFormatters.mjs\";\nimport {\n isProtectedDayOfYearToken,\n isProtectedWeekYearToken,\n warnOrThrowProtectedError,\n} from \"./_lib/protectedTokens.mjs\";\nimport { parsers } from \"./parse/_lib/parsers.mjs\";\nimport { DateToSystemTimezoneSetter } from \"./parse/_lib/Setter.mjs\";\n\n/**\n * The {@link parse} function options.\n */\n\n// This RegExp consists of three parts separated by `|`:\n// - [yYQqMLwIdDecihHKkms]o matches any available ordinal number token\n// (one of the certain letters followed by `o`)\n// - (\\w)\\1* matches any sequences of the same letter\n// - '' matches two quote characters in a row\n// - '(''|[^'])+('|$) matches anything surrounded by two quote characters ('),\n// except a single quote symbol, which ends the sequence.\n// Two quote characters do not end the sequence.\n// If there is no matching single quote\n// then the sequence will continue until the end of the string.\n// - . matches any single character unmatched by previous parts of the RegExps\nconst formattingTokensRegExp =\n /[yYQqMLwIdDecihHKkms]o|(\\w)\\1*|''|'(''|[^'])+('|$)|./g;\n\n// This RegExp catches symbols escaped by quotes, and also\n// sequences of symbols P, p, and the combinations like `PPPPPPPppppp`\nconst longFormattingTokensRegExp = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g;\n\nconst escapedStringRegExp = /^'([^]*?)'?$/;\nconst doubleQuoteRegExp = /''/g;\n\nconst notWhitespaceRegExp = /\\S/;\nconst unescapedLatinCharacterRegExp = /[a-zA-Z]/;\n\n/**\n * @name parse\n * @category Common Helpers\n * @summary Parse the date.\n *\n * @description\n * Return the date parsed from string using the given format string.\n *\n * > \u26A0\uFE0F Please note that the `format` tokens differ from Moment.js and other libraries.\n * > See: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n *\n * The characters in the format string wrapped between two single quotes characters (') are escaped.\n * Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.\n *\n * Format of the format string is based on Unicode Technical Standard #35:\n * https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table\n * with a few additions (see note 5 below the table).\n *\n * Not all tokens are compatible. Combinations that don't make sense or could lead to bugs are prohibited\n * and will throw `RangeError`. For example usage of 24-hour format token with AM/PM token will throw an exception:\n *\n * ```javascript\n * parse('23 AM', 'HH a', new Date())\n * //=> RangeError: The format string mustn't contain `HH` and `a` at the same time\n * ```\n *\n * See the compatibility table: https://docs.google.com/spreadsheets/d/e/2PACX-1vQOPU3xUhplll6dyoMmVUXHKl_8CRDs6_ueLmex3SoqwhuolkuN3O05l4rqx5h1dKX8eb46Ul-CCSrq/pubhtml?gid=0&single=true\n *\n * Accepted format string patterns:\n * | Unit |Prior| Pattern | Result examples | Notes |\n * |---------------------------------|-----|---------|-----------------------------------|-------|\n * | Era | 140 | G..GGG | AD, BC | |\n * | | | GGGG | Anno Domini, Before Christ | 2 |\n * | | | GGGGG | A, B | |\n * | Calendar year | 130 | y | 44, 1, 1900, 2017, 9999 | 4 |\n * | | | yo | 44th, 1st, 1900th, 9999999th | 4,5 |\n * | | | yy | 44, 01, 00, 17 | 4 |\n * | | | yyy | 044, 001, 123, 999 | 4 |\n * | | | yyyy | 0044, 0001, 1900, 2017 | 4 |\n * | | | yyyyy | ... | 2,4 |\n * | Local week-numbering year | 130 | Y | 44, 1, 1900, 2017, 9000 | 4 |\n * | | | Yo | 44th, 1st, 1900th, 9999999th | 4,5 |\n * | | | YY | 44, 01, 00, 17 | 4,6 |\n * | | | YYY | 044, 001, 123, 999 | 4 |\n * | | | YYYY | 0044, 0001, 1900, 2017 | 4,6 |\n * | | | YYYYY | ... | 2,4 |\n * | ISO week-numbering year | 130 | R | -43, 1, 1900, 2017, 9999, -9999 | 4,5 |\n * | | | RR | -43, 01, 00, 17 | 4,5 |\n * | | | RRR | -043, 001, 123, 999, -999 | 4,5 |\n * | | | RRRR | -0043, 0001, 2017, 9999, -9999 | 4,5 |\n * | | | RRRRR | ... | 2,4,5 |\n * | Extended year | 130 | u | -43, 1, 1900, 2017, 9999, -999 | 4 |\n * | | | uu | -43, 01, 99, -99 | 4 |\n * | | | uuu | -043, 001, 123, 999, -999 | 4 |\n * | | | uuuu | -0043, 0001, 2017, 9999, -9999 | 4 |\n * | | | uuuuu | ... | 2,4 |\n * | Quarter (formatting) | 120 | Q | 1, 2, 3, 4 | |\n * | | | Qo | 1st, 2nd, 3rd, 4th | 5 |\n * | | | QQ | 01, 02, 03, 04 | |\n * | | | QQQ | Q1, Q2, Q3, Q4 | |\n * | | | QQQQ | 1st quarter, 2nd quarter, ... | 2 |\n * | | | QQQQQ | 1, 2, 3, 4 | 4 |\n * | Quarter (stand-alone) | 120 | q | 1, 2, 3, 4 | |\n * | | | qo | 1st, 2nd, 3rd, 4th | 5 |\n * | | | qq | 01, 02, 03, 04 | |\n * | | | qqq | Q1, Q2, Q3, Q4 | |\n * | | | qqqq | 1st quarter, 2nd quarter, ... | 2 |\n * | | | qqqqq | 1, 2, 3, 4 | 3 |\n * | Month (formatting) | 110 | M | 1, 2, ..., 12 | |\n * | | | Mo | 1st, 2nd, ..., 12th | 5 |\n * | | | MM | 01, 02, ..., 12 | |\n * | | | MMM | Jan, Feb, ..., Dec | |\n * | | | MMMM | January, February, ..., December | 2 |\n * | | | MMMMM | J, F, ..., D | |\n * | Month (stand-alone) | 110 | L | 1, 2, ..., 12 | |\n * | | | Lo | 1st, 2nd, ..., 12th | 5 |\n * | | | LL | 01, 02, ..., 12 | |\n * | | | LLL | Jan, Feb, ..., Dec | |\n * | | | LLLL | January, February, ..., December | 2 |\n * | | | LLLLL | J, F, ..., D | |\n * | Local week of year | 100 | w | 1, 2, ..., 53 | |\n * | | | wo | 1st, 2nd, ..., 53th | 5 |\n * | | | ww | 01, 02, ..., 53 | |\n * | ISO week of year | 100 | I | 1, 2, ..., 53 | 5 |\n * | | | Io | 1st, 2nd, ..., 53th | 5 |\n * | | | II | 01, 02, ..., 53 | 5 |\n * | Day of month | 90 | d | 1, 2, ..., 31 | |\n * | | | do | 1st, 2nd, ..., 31st | 5 |\n * | | | dd | 01, 02, ..., 31 | |\n * | Day of year | 90 | D | 1, 2, ..., 365, 366 | 7 |\n * | | | Do | 1st, 2nd, ..., 365th, 366th | 5 |\n * | | | DD | 01, 02, ..., 365, 366 | 7 |\n * | | | DDD | 001, 002, ..., 365, 366 | |\n * | | | DDDD | ... | 2 |\n * | Day of week (formatting) | 90 | E..EEE | Mon, Tue, Wed, ..., Sun | |\n * | | | EEEE | Monday, Tuesday, ..., Sunday | 2 |\n * | | | EEEEE | M, T, W, T, F, S, S | |\n * | | | EEEEEE | Mo, Tu, We, Th, Fr, Sa, Su | |\n * | ISO day of week (formatting) | 90 | i | 1, 2, 3, ..., 7 | 5 |\n * | | | io | 1st, 2nd, ..., 7th | 5 |\n * | | | ii | 01, 02, ..., 07 | 5 |\n * | | | iii | Mon, Tue, Wed, ..., Sun | 5 |\n * | | | iiii | Monday, Tuesday, ..., Sunday | 2,5 |\n * | | | iiiii | M, T, W, T, F, S, S | 5 |\n * | | | iiiiii | Mo, Tu, We, Th, Fr, Sa, Su | 5 |\n * | Local day of week (formatting) | 90 | e | 2, 3, 4, ..., 1 | |\n * | | | eo | 2nd, 3rd, ..., 1st | 5 |\n * | | | ee | 02, 03, ..., 01 | |\n * | | | eee | Mon, Tue, Wed, ..., Sun | |\n * | | | eeee | Monday, Tuesday, ..., Sunday | 2 |\n * | | | eeeee | M, T, W, T, F, S, S | |\n * | | | eeeeee | Mo, Tu, We, Th, Fr, Sa, Su | |\n * | Local day of week (stand-alone) | 90 | c | 2, 3, 4, ..., 1 | |\n * | | | co | 2nd, 3rd, ..., 1st | 5 |\n * | | | cc | 02, 03, ..., 01 | |\n * | | | ccc | Mon, Tue, Wed, ..., Sun | |\n * | | | cccc | Monday, Tuesday, ..., Sunday | 2 |\n * | | | ccccc | M, T, W, T, F, S, S | |\n * | | | cccccc | Mo, Tu, We, Th, Fr, Sa, Su | |\n * | AM, PM | 80 | a..aaa | AM, PM | |\n * | | | aaaa | a.m., p.m. | 2 |\n * | | | aaaaa | a, p | |\n * | AM, PM, noon, midnight | 80 | b..bbb | AM, PM, noon, midnight | |\n * | | | bbbb | a.m., p.m., noon, midnight | 2 |\n * | | | bbbbb | a, p, n, mi | |\n * | Flexible day period | 80 | B..BBB | at night, in the morning, ... | |\n * | | | BBBB | at night, in the morning, ... | 2 |\n * | | | BBBBB | at night, in the morning, ... | |\n * | Hour [1-12] | 70 | h | 1, 2, ..., 11, 12 | |\n * | | | ho | 1st, 2nd, ..., 11th, 12th | 5 |\n * | | | hh | 01, 02, ..., 11, 12 | |\n * | Hour [0-23] | 70 | H | 0, 1, 2, ..., 23 | |\n * | | | Ho | 0th, 1st, 2nd, ..., 23rd | 5 |\n * | | | HH | 00, 01, 02, ..., 23 | |\n * | Hour [0-11] | 70 | K | 1, 2, ..., 11, 0 | |\n * | | | Ko | 1st, 2nd, ..., 11th, 0th | 5 |\n * | | | KK | 01, 02, ..., 11, 00 | |\n * | Hour [1-24] | 70 | k | 24, 1, 2, ..., 23 | |\n * | | | ko | 24th, 1st, 2nd, ..., 23rd | 5 |\n * | | | kk | 24, 01, 02, ..., 23 | |\n * | Minute | 60 | m | 0, 1, ..., 59 | |\n * | | | mo | 0th, 1st, ..., 59th | 5 |\n * | | | mm | 00, 01, ..., 59 | |\n * | Second | 50 | s | 0, 1, ..., 59 | |\n * | | | so | 0th, 1st, ..., 59th | 5 |\n * | | | ss | 00, 01, ..., 59 | |\n * | Seconds timestamp | 40 | t | 512969520 | |\n * | | | tt | ... | 2 |\n * | Fraction of second | 30 | S | 0, 1, ..., 9 | |\n * | | | SS | 00, 01, ..., 99 | |\n * | | | SSS | 000, 001, ..., 999 | |\n * | | | SSSS | ... | 2 |\n * | Milliseconds timestamp | 20 | T | 512969520900 | |\n * | | | TT | ... | 2 |\n * | Timezone (ISO-8601 w/ Z) | 10 | X | -08, +0530, Z | |\n * | | | XX | -0800, +0530, Z | |\n * | | | XXX | -08:00, +05:30, Z | |\n * | | | XXXX | -0800, +0530, Z, +123456 | 2 |\n * | | | XXXXX | -08:00, +05:30, Z, +12:34:56 | |\n * | Timezone (ISO-8601 w/o Z) | 10 | x | -08, +0530, +00 | |\n * | | | xx | -0800, +0530, +0000 | |\n * | | | xxx | -08:00, +05:30, +00:00 | 2 |\n * | | | xxxx | -0800, +0530, +0000, +123456 | |\n * | | | xxxxx | -08:00, +05:30, +00:00, +12:34:56 | |\n * | Long localized date | NA | P | 05/29/1453 | 5,8 |\n * | | | PP | May 29, 1453 | |\n * | | | PPP | May 29th, 1453 | |\n * | | | PPPP | Sunday, May 29th, 1453 | 2,5,8 |\n * | Long localized time | NA | p | 12:00 AM | 5,8 |\n * | | | pp | 12:00:00 AM | |\n * | Combination of date and time | NA | Pp | 05/29/1453, 12:00 AM | |\n * | | | PPpp | May 29, 1453, 12:00:00 AM | |\n * | | | PPPpp | May 29th, 1453 at ... | |\n * | | | PPPPpp | Sunday, May 29th, 1453 at ... | 2,5,8 |\n * Notes:\n * 1. \"Formatting\" units (e.g. formatting quarter) in the default en-US locale\n * are the same as \"stand-alone\" units, but are different in some languages.\n * \"Formatting\" units are declined according to the rules of the language\n * in the context of a date. \"Stand-alone\" units are always nominative singular.\n * In `format` function, they will produce different result:\n *\n * `format(new Date(2017, 10, 6), 'do LLLL', {locale: cs}) //=> '6. listopad'`\n *\n * `format(new Date(2017, 10, 6), 'do MMMM', {locale: cs}) //=> '6. listopadu'`\n *\n * `parse` will try to match both formatting and stand-alone units interchangably.\n *\n * 2. Any sequence of the identical letters is a pattern, unless it is escaped by\n * the single quote characters (see below).\n * If the sequence is longer than listed in table:\n * - for numerical units (`yyyyyyyy`) `parse` will try to match a number\n * as wide as the sequence\n * - for text units (`MMMMMMMM`) `parse` will try to match the widest variation of the unit.\n * These variations are marked with \"2\" in the last column of the table.\n *\n * 3. `QQQQQ` and `qqqqq` could be not strictly numerical in some locales.\n * These tokens represent the shortest form of the quarter.\n *\n * 4. The main difference between `y` and `u` patterns are B.C. years:\n *\n * | Year | `y` | `u` |\n * |------|-----|-----|\n * | AC 1 | 1 | 1 |\n * | BC 1 | 1 | 0 |\n * | BC 2 | 2 | -1 |\n *\n * Also `yy` will try to guess the century of two digit year by proximity with `referenceDate`:\n *\n * `parse('50', 'yy', new Date(2018, 0, 1)) //=> Sat Jan 01 2050 00:00:00`\n *\n * `parse('75', 'yy', new Date(2018, 0, 1)) //=> Wed Jan 01 1975 00:00:00`\n *\n * while `uu` will just assign the year as is:\n *\n * `parse('50', 'uu', new Date(2018, 0, 1)) //=> Sat Jan 01 0050 00:00:00`\n *\n * `parse('75', 'uu', new Date(2018, 0, 1)) //=> Tue Jan 01 0075 00:00:00`\n *\n * The same difference is true for local and ISO week-numbering years (`Y` and `R`),\n * except local week-numbering years are dependent on `options.weekStartsOn`\n * and `options.firstWeekContainsDate` (compare [setISOWeekYear](https://date-fns.org/docs/setISOWeekYear)\n * and [setWeekYear](https://date-fns.org/docs/setWeekYear)).\n *\n * 5. These patterns are not in the Unicode Technical Standard #35:\n * - `i`: ISO day of week\n * - `I`: ISO week of year\n * - `R`: ISO week-numbering year\n * - `o`: ordinal number modifier\n * - `P`: long localized date\n * - `p`: long localized time\n *\n * 6. `YY` and `YYYY` tokens represent week-numbering years but they are often confused with years.\n * You should enable `options.useAdditionalWeekYearTokens` to use them. See: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n *\n * 7. `D` and `DD` tokens represent days of the year but they are ofthen confused with days of the month.\n * You should enable `options.useAdditionalDayOfYearTokens` to use them. See: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n *\n * 8. `P+` tokens do not have a defined priority since they are merely aliases to other tokens based\n * on the given locale.\n *\n * using `en-US` locale: `P` => `MM/dd/yyyy`\n * using `en-US` locale: `p` => `hh:mm a`\n * using `pt-BR` locale: `P` => `dd/MM/yyyy`\n * using `pt-BR` locale: `p` => `HH:mm`\n *\n * Values will be assigned to the date in the descending order of its unit's priority.\n * Units of an equal priority overwrite each other in the order of appearance.\n *\n * If no values of higher priority are parsed (e.g. when parsing string 'January 1st' without a year),\n * the values will be taken from 3rd argument `referenceDate` which works as a context of parsing.\n *\n * `referenceDate` must be passed for correct work of the function.\n * If you're not sure which `referenceDate` to supply, create a new instance of Date:\n * `parse('02/11/2014', 'MM/dd/yyyy', new Date())`\n * In this case parsing will be done in the context of the current date.\n * If `referenceDate` is `Invalid Date` or a value not convertible to valid `Date`,\n * then `Invalid Date` will be returned.\n *\n * The result may vary by locale.\n *\n * If `formatString` matches with `dateString` but does not provides tokens, `referenceDate` will be returned.\n *\n * If parsing failed, `Invalid Date` will be returned.\n * Invalid Date is a Date, whose time value is NaN.\n * Time value of Date: http://es5.github.io/#x15.9.1.1\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param dateStr - The string to parse\n * @param formatStr - The string of tokens\n * @param referenceDate - defines values missing from the parsed dateString\n * @param options - An object with options.\n * see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n * see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n *\n * @returns The parsed date\n *\n * @throws `options.locale` must contain `match` property\n * @throws use `yyyy` instead of `YYYY` for formatting years using [format provided] to the input [input provided]; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n * @throws use `yy` instead of `YY` for formatting years using [format provided] to the input [input provided]; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n * @throws use `d` instead of `D` for formatting days of the month using [format provided] to the input [input provided]; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n * @throws use `dd` instead of `DD` for formatting days of the month using [format provided] to the input [input provided]; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md\n * @throws format string contains an unescaped latin alphabet character\n *\n * @example\n * // Parse 11 February 2014 from middle-endian format:\n * var result = parse('02/11/2014', 'MM/dd/yyyy', new Date())\n * //=> Tue Feb 11 2014 00:00:00\n *\n * @example\n * // Parse 28th of February in Esperanto locale in the context of 2010 year:\n * import eo from 'date-fns/locale/eo'\n * var result = parse('28-a de februaro', \"do 'de' MMMM\", new Date(2010, 0, 1), {\n * locale: eo\n * })\n * //=> Sun Feb 28 2010 00:00:00\n */\nexport function parse(dateStr, formatStr, referenceDate, options) {\n const defaultOptions = getDefaultOptions();\n const locale = options?.locale ?? defaultOptions.locale ?? defaultLocale;\n\n const firstWeekContainsDate =\n options?.firstWeekContainsDate ??\n options?.locale?.options?.firstWeekContainsDate ??\n defaultOptions.firstWeekContainsDate ??\n defaultOptions.locale?.options?.firstWeekContainsDate ??\n 1;\n\n const weekStartsOn =\n options?.weekStartsOn ??\n options?.locale?.options?.weekStartsOn ??\n defaultOptions.weekStartsOn ??\n defaultOptions.locale?.options?.weekStartsOn ??\n 0;\n\n if (formatStr === \"\") {\n if (dateStr === \"\") {\n return toDate(referenceDate);\n } else {\n return constructFrom(referenceDate, NaN);\n }\n }\n\n const subFnOptions = {\n firstWeekContainsDate,\n weekStartsOn,\n locale,\n };\n\n // If timezone isn't specified, it will be set to the system timezone\n const setters = [new DateToSystemTimezoneSetter()];\n\n const tokens = formatStr\n .match(longFormattingTokensRegExp)\n .map((substring) => {\n const firstCharacter = substring[0];\n if (firstCharacter in longFormatters) {\n const longFormatter = longFormatters[firstCharacter];\n return longFormatter(substring, locale.formatLong);\n }\n return substring;\n })\n .join(\"\")\n .match(formattingTokensRegExp);\n\n const usedTokens = [];\n\n for (let token of tokens) {\n if (\n !options?.useAdditionalWeekYearTokens &&\n isProtectedWeekYearToken(token)\n ) {\n warnOrThrowProtectedError(token, formatStr, dateStr);\n }\n if (\n !options?.useAdditionalDayOfYearTokens &&\n isProtectedDayOfYearToken(token)\n ) {\n warnOrThrowProtectedError(token, formatStr, dateStr);\n }\n\n const firstCharacter = token[0];\n const parser = parsers[firstCharacter];\n if (parser) {\n const { incompatibleTokens } = parser;\n if (Array.isArray(incompatibleTokens)) {\n const incompatibleToken = usedTokens.find(\n (usedToken) =>\n incompatibleTokens.includes(usedToken.token) ||\n usedToken.token === firstCharacter,\n );\n if (incompatibleToken) {\n throw new RangeError(\n `The format string mustn't contain \\`${incompatibleToken.fullToken}\\` and \\`${token}\\` at the same time`,\n );\n }\n } else if (parser.incompatibleTokens === \"*\" && usedTokens.length > 0) {\n throw new RangeError(\n `The format string mustn't contain \\`${token}\\` and any other token at the same time`,\n );\n }\n\n usedTokens.push({ token: firstCharacter, fullToken: token });\n\n const parseResult = parser.run(\n dateStr,\n token,\n locale.match,\n subFnOptions,\n );\n\n if (!parseResult) {\n return constructFrom(referenceDate, NaN);\n }\n\n setters.push(parseResult.setter);\n\n dateStr = parseResult.rest;\n } else {\n if (firstCharacter.match(unescapedLatinCharacterRegExp)) {\n throw new RangeError(\n \"Format string contains an unescaped latin alphabet character `\" +\n firstCharacter +\n \"`\",\n );\n }\n\n // Replace two single quote characters with one single quote character\n if (token === \"''\") {\n token = \"'\";\n } else if (firstCharacter === \"'\") {\n token = cleanEscapedString(token);\n }\n\n // Cut token from string, or, if string doesn't match the token, return Invalid Date\n if (dateStr.indexOf(token) === 0) {\n dateStr = dateStr.slice(token.length);\n } else {\n return constructFrom(referenceDate, NaN);\n }\n }\n }\n\n // Check if the remaining input contains something other than whitespace\n if (dateStr.length > 0 && notWhitespaceRegExp.test(dateStr)) {\n return constructFrom(referenceDate, NaN);\n }\n\n const uniquePrioritySetters = setters\n .map((setter) => setter.priority)\n .sort((a, b) => b - a)\n .filter((priority, index, array) => array.indexOf(priority) === index)\n .map((priority) =>\n setters\n .filter((setter) => setter.priority === priority)\n .sort((a, b) => b.subPriority - a.subPriority),\n )\n .map((setterArray) => setterArray[0]);\n\n let date = toDate(referenceDate);\n\n if (isNaN(date.getTime())) {\n return constructFrom(referenceDate, NaN);\n }\n\n const flags = {};\n for (const setter of uniquePrioritySetters) {\n if (!setter.validate(date, subFnOptions)) {\n return constructFrom(referenceDate, NaN);\n }\n\n const result = setter.set(date, flags, subFnOptions);\n // Result is tuple (date, flags)\n if (Array.isArray(result)) {\n date = result[0];\n Object.assign(flags, result[1]);\n // Result is date\n } else {\n date = result;\n }\n }\n\n return constructFrom(referenceDate, date);\n}\n\nfunction cleanEscapedString(input) {\n return input.match(escapedStringRegExp)[1].replace(doubleQuoteRegExp, \"'\");\n}\n\n// Fallback for modularized imports:\nexport default parse;\n", "import { millisecondsInHour, millisecondsInMinute } from \"./constants.mjs\";\n\n/**\n * The {@link parseISO} function options.\n */\n\n/**\n * @name parseISO\n * @category Common Helpers\n * @summary Parse ISO string\n *\n * @description\n * Parse the given string in ISO 8601 format and return an instance of Date.\n *\n * Function accepts complete ISO 8601 formats as well as partial implementations.\n * ISO 8601: http://en.wikipedia.org/wiki/ISO_8601\n *\n * If the argument isn't a string, the function cannot parse the string or\n * the values are invalid, it returns Invalid Date.\n *\n * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).\n *\n * @param argument - The value to convert\n * @param options - An object with options\n *\n * @returns The parsed date in the local time zone\n *\n * @example\n * // Convert string '2014-02-11T11:30:30' to date:\n * const result = parseISO('2014-02-11T11:30:30')\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert string '+02014101' to date,\n * // if the additional number of digits in the extended year format is 1:\n * const result = parseISO('+02014101', { additionalDigits: 1 })\n * //=> Fri Apr 11 2014 00:00:00\n */\nexport function parseISO(argument, options) {\n const additionalDigits = options?.additionalDigits ?? 2;\n const dateStrings = splitDateString(argument);\n\n let date;\n if (dateStrings.date) {\n const parseYearResult = parseYear(dateStrings.date, additionalDigits);\n date = parseDate(parseYearResult.restDateString, parseYearResult.year);\n }\n\n if (!date || isNaN(date.getTime())) {\n return new Date(NaN);\n }\n\n const timestamp = date.getTime();\n let time = 0;\n let offset;\n\n if (dateStrings.time) {\n time = parseTime(dateStrings.time);\n if (isNaN(time)) {\n return new Date(NaN);\n }\n }\n\n if (dateStrings.timezone) {\n offset = parseTimezone(dateStrings.timezone);\n if (isNaN(offset)) {\n return new Date(NaN);\n }\n } else {\n const dirtyDate = new Date(timestamp + time);\n // JS parsed string assuming it's in UTC timezone\n // but we need it to be parsed in our timezone\n // so we use utc values to build date in our timezone.\n // Year values from 0 to 99 map to the years 1900 to 1999\n // so set year explicitly with setFullYear.\n const result = new Date(0);\n result.setFullYear(\n dirtyDate.getUTCFullYear(),\n dirtyDate.getUTCMonth(),\n dirtyDate.getUTCDate(),\n );\n result.setHours(\n dirtyDate.getUTCHours(),\n dirtyDate.getUTCMinutes(),\n dirtyDate.getUTCSeconds(),\n dirtyDate.getUTCMilliseconds(),\n );\n return result;\n }\n\n return new Date(timestamp + time + offset);\n}\n\nconst patterns = {\n dateTimeDelimiter: /[T ]/,\n timeZoneDelimiter: /[Z ]/i,\n timezone: /([Z+-].*)$/,\n};\n\nconst dateRegex =\n /^-?(?:(\\d{3})|(\\d{2})(?:-?(\\d{2}))?|W(\\d{2})(?:-?(\\d{1}))?|)$/;\nconst timeRegex =\n /^(\\d{2}(?:[.,]\\d*)?)(?::?(\\d{2}(?:[.,]\\d*)?))?(?::?(\\d{2}(?:[.,]\\d*)?))?$/;\nconst timezoneRegex = /^([+-])(\\d{2})(?::?(\\d{2}))?$/;\n\nfunction splitDateString(dateString) {\n const dateStrings = {};\n const array = dateString.split(patterns.dateTimeDelimiter);\n let timeString;\n\n // The regex match should only return at maximum two array elements.\n // [date], [time], or [date, time].\n if (array.length > 2) {\n return dateStrings;\n }\n\n if (/:/.test(array[0])) {\n timeString = array[0];\n } else {\n dateStrings.date = array[0];\n timeString = array[1];\n if (patterns.timeZoneDelimiter.test(dateStrings.date)) {\n dateStrings.date = dateString.split(patterns.timeZoneDelimiter)[0];\n timeString = dateString.substr(\n dateStrings.date.length,\n dateString.length,\n );\n }\n }\n\n if (timeString) {\n const token = patterns.timezone.exec(timeString);\n if (token) {\n dateStrings.time = timeString.replace(token[1], \"\");\n dateStrings.timezone = token[1];\n } else {\n dateStrings.time = timeString;\n }\n }\n\n return dateStrings;\n}\n\nfunction parseYear(dateString, additionalDigits) {\n const regex = new RegExp(\n \"^(?:(\\\\d{4}|[+-]\\\\d{\" +\n (4 + additionalDigits) +\n \"})|(\\\\d{2}|[+-]\\\\d{\" +\n (2 + additionalDigits) +\n \"})$)\",\n );\n\n const captures = dateString.match(regex);\n // Invalid ISO-formatted year\n if (!captures) return { year: NaN, restDateString: \"\" };\n\n const year = captures[1] ? parseInt(captures[1]) : null;\n const century = captures[2] ? parseInt(captures[2]) : null;\n\n // either year or century is null, not both\n return {\n year: century === null ? year : century * 100,\n restDateString: dateString.slice((captures[1] || captures[2]).length),\n };\n}\n\nfunction parseDate(dateString, year) {\n // Invalid ISO-formatted year\n if (year === null) return new Date(NaN);\n\n const captures = dateString.match(dateRegex);\n // Invalid ISO-formatted string\n if (!captures) return new Date(NaN);\n\n const isWeekDate = !!captures[4];\n const dayOfYear = parseDateUnit(captures[1]);\n const month = parseDateUnit(captures[2]) - 1;\n const day = parseDateUnit(captures[3]);\n const week = parseDateUnit(captures[4]);\n const dayOfWeek = parseDateUnit(captures[5]) - 1;\n\n if (isWeekDate) {\n if (!validateWeekDate(year, week, dayOfWeek)) {\n return new Date(NaN);\n }\n return dayOfISOWeekYear(year, week, dayOfWeek);\n } else {\n const date = new Date(0);\n if (\n !validateDate(year, month, day) ||\n !validateDayOfYearDate(year, dayOfYear)\n ) {\n return new Date(NaN);\n }\n date.setUTCFullYear(year, month, Math.max(dayOfYear, day));\n return date;\n }\n}\n\nfunction parseDateUnit(value) {\n return value ? parseInt(value) : 1;\n}\n\nfunction parseTime(timeString) {\n const captures = timeString.match(timeRegex);\n if (!captures) return NaN; // Invalid ISO-formatted time\n\n const hours = parseTimeUnit(captures[1]);\n const minutes = parseTimeUnit(captures[2]);\n const seconds = parseTimeUnit(captures[3]);\n\n if (!validateTime(hours, minutes, seconds)) {\n return NaN;\n }\n\n return (\n hours * millisecondsInHour + minutes * millisecondsInMinute + seconds * 1000\n );\n}\n\nfunction parseTimeUnit(value) {\n return (value && parseFloat(value.replace(\",\", \".\"))) || 0;\n}\n\nfunction parseTimezone(timezoneString) {\n if (timezoneString === \"Z\") return 0;\n\n const captures = timezoneString.match(timezoneRegex);\n if (!captures) return 0;\n\n const sign = captures[1] === \"+\" ? -1 : 1;\n const hours = parseInt(captures[2]);\n const minutes = (captures[3] && parseInt(captures[3])) || 0;\n\n if (!validateTimezone(hours, minutes)) {\n return NaN;\n }\n\n return sign * (hours * millisecondsInHour + minutes * millisecondsInMinute);\n}\n\nfunction dayOfISOWeekYear(isoWeekYear, week, day) {\n const date = new Date(0);\n date.setUTCFullYear(isoWeekYear, 0, 4);\n const fourthOfJanuaryDay = date.getUTCDay() || 7;\n const diff = (week - 1) * 7 + day + 1 - fourthOfJanuaryDay;\n date.setUTCDate(date.getUTCDate() + diff);\n return date;\n}\n\n// Validation functions\n\n// February is null to handle the leap year (using ||)\nconst daysInMonths = [31, null, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];\n\nfunction isLeapYearIndex(year) {\n return year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0);\n}\n\nfunction validateDate(year, month, date) {\n return (\n month >= 0 &&\n month <= 11 &&\n date >= 1 &&\n date <= (daysInMonths[month] || (isLeapYearIndex(year) ? 29 : 28))\n );\n}\n\nfunction validateDayOfYearDate(year, dayOfYear) {\n return dayOfYear >= 1 && dayOfYear <= (isLeapYearIndex(year) ? 366 : 365);\n}\n\nfunction validateWeekDate(_year, week, day) {\n return week >= 1 && week <= 53 && day >= 0 && day <= 6;\n}\n\nfunction validateTime(hours, minutes, seconds) {\n if (hours === 24) {\n return minutes === 0 && seconds === 0;\n }\n\n return (\n seconds >= 0 &&\n seconds < 60 &&\n minutes >= 0 &&\n minutes < 60 &&\n hours >= 0 &&\n hours < 25\n );\n}\n\nfunction validateTimezone(_hours, minutes) {\n return minutes >= 0 && minutes <= 59;\n}\n\n// Fallback for modularized imports:\nexport default parseISO;\n", "import {\n createRenderEffect,\n createSignal,\n onCleanup,\n createMemo,\n untrack,\n} from \"solid-js\";\nimport {\n parseISO,\n parse,\n isSameDay,\n intlFormatDistance,\n intlFormat,\n differenceInSeconds,\n differenceInMilliseconds,\n} from \"date-fns\";\n\nexport enum DateRefreshPercision {\n seconds = 0,\n minutes = 1,\n hours,\n days,\n}\n\nexport function useCurrentDate(\n percision:\n | (() => DateRefreshPercision)\n | DateRefreshPercision = DateRefreshPercision.minutes\n) {\n const [current, setCurrent] = createSignal(new Date());\n\n const updateInterval = () => {\n switch (typeof percision === \"function\" ? percision() : percision) {\n case DateRefreshPercision.seconds:\n return 1000;\n case DateRefreshPercision.minutes:\n return 15 * 1000;\n case DateRefreshPercision.hours:\n return 60 * 1000;\n case DateRefreshPercision.days:\n return 60 * 60 * 1000;\n }\n };\n\n let id: undefined | number;\n\n const update = () => setCurrent(new Date());\n\n createRenderEffect(() => {\n if (typeof id !== \"undefined\") {\n window.clearInterval(id);\n id = undefined;\n }\n\n const interval = updateInterval();\n\n const now = new Date();\n if (differenceInMilliseconds(now, untrack(current)) <= interval) {\n update();\n }\n\n id = window.setInterval(update, interval);\n });\n\n onCleanup(() => {\n if (typeof id !== \"undefined\") {\n window.clearInterval(id);\n id = undefined;\n }\n });\n\n return current;\n}\n\n/** Translate the elements with time to human-readable form.\n *\n * @param elements\n */\nexport function renderLocalTimeOn(elements: Iterable) {\n const [allPercisionRequired, setAllPercisionRequired] = createSignal<\n DateRefreshPercision[]\n >([], { equals: false });\n const percision = createMemo(() => {\n const arr = allPercisionRequired();\n if (arr.length < 1) {\n return DateRefreshPercision.hours;\n }\n\n return arr.reduce((p, c) => (p < c ? p : c));\n });\n const date = useCurrentDate(percision);\n const starts = new Date();\n\n let idx = 0;\n for (const e of elements) {\n if (!(e instanceof HTMLElement)) {\n console.warn(e, \"is not a html element can be rendered local time\");\n continue;\n }\n\n const timeFormat = e.dataset.timeFormat ?? \"iso\";\n if (timeFormat === \"local\") {\n continue;\n }\n\n const i = idx++;\n const content = e.hasAttribute('datetime') ? e.getAttribute('datetime') : e.textContent\n const rawDate =\n timeFormat === \"iso\"\n ? parseISO(content)\n : parse(content, timeFormat, starts);\n e.dataset.raw = rawDate.toISOString();\n e.dataset.timeFormat = \"local\";\n\n const percisionOfRawDate = createMemo(() => {\n const seconds = differenceInSeconds(date(), rawDate);\n if (seconds < 60) {\n return DateRefreshPercision.seconds;\n } else if (seconds < 60 * 60) {\n return DateRefreshPercision.minutes;\n } else if (seconds < 60 * 60 * 24) {\n return DateRefreshPercision.hours;\n }\n return DateRefreshPercision.days;\n });\n\n const fmtString = createMemo(() => {\n if (isSameDay(rawDate, date())) {\n return intlFormatDistance(rawDate, date());\n }\n return intlFormat(rawDate);\n });\n\n createRenderEffect(() => {\n if (!e.hasAttribute('datetime')) {\n e.setAttribute('datetime', rawDate.toISOString())\n }\n })\n\n createRenderEffect(() => {\n e.textContent = fmtString();\n });\n\n createRenderEffect(() => {\n const p = percisionOfRawDate();\n setAllPercisionRequired((x) => {\n x[i] = p;\n return x;\n });\n });\n }\n}\n"], - "mappings": "AAmIA,IAAMA,GAAU,CAACC,EAAGC,IAAMD,IAAMC,EAC1BC,GAAS,OAAO,aAAa,EAC7BC,GAAS,OAAO,aAAa,EAC7BC,GAAW,OAAO,qBAAqB,EACvCC,GAAgB,CACpB,OAAQN,EACV,EACIO,GAAQ,KACRC,GAAaC,GACXC,EAAQ,EACRC,EAAU,EACVC,GAAU,CACd,MAAO,KACP,SAAU,KACV,QAAS,KACT,MAAO,IACT,EAEA,IAAIC,EAAQ,KACRC,EAAa,KACbC,GAAY,KACZC,EAAuB,KACvBC,EAAW,KACXC,EAAU,KACVC,EAAU,KACVC,GAAY,EAChB,SAASC,GAAWC,EAAIC,EAAe,CACrC,IAAMC,EAAWP,EACfQ,EAAQZ,EACRa,EAAUJ,EAAG,SAAW,EACxBK,EAAUJ,IAAkB,OAAYE,EAAQF,EAChDK,EAAOF,EAAUG,GAAU,CACzB,MAAO,KACP,SAAU,KACV,QAASF,EAAUA,EAAQ,QAAU,KACrC,MAAOA,CACT,EACAG,EAAWJ,EAAUJ,EAAK,IAAMA,EAAG,IAAMS,GAAQ,IAAMC,EAAUJ,CAAI,CAAC,CAAC,EACzEf,EAAQe,EACRX,EAAW,KACX,GAAI,CACF,OAAOgB,EAAWH,EAAU,EAAI,CAClC,QAAE,CACAb,EAAWO,EACXX,EAAQY,CACV,CACF,CACA,SAASS,GAAaC,EAAOC,EAAS,CACpCA,EAAUA,EAAU,OAAO,OAAO,CAAC,EAAGC,GAAeD,CAAO,EAAIC,GAChE,IAAMC,EAAI,CACR,MAAAH,EACA,UAAW,KACX,cAAe,KACf,WAAYC,EAAQ,QAAU,MAChC,EACMG,EAASJ,IACT,OAAOA,GAAU,aACfrB,GAAcA,EAAW,SAAWA,EAAW,QAAQ,IAAIwB,CAAC,EAAGH,EAAQA,EAAMG,EAAE,MAAM,EAAOH,EAAQA,EAAMG,EAAE,KAAK,GAEhHE,GAAYF,EAAGH,CAAK,GAE7B,MAAO,CAACM,GAAW,KAAKH,CAAC,EAAGC,CAAM,CACpC,CAKA,SAASG,EAAmBC,EAAIC,EAAOC,EAAS,CAC9C,IAAMC,EAAIC,GAAkBJ,EAAIC,EAAO,GAAOI,CAAK,EAC/CC,IAAaC,GAAcA,EAAW,QAASC,EAAQ,KAAKL,CAAC,EAAOM,GAAkBN,CAAC,CAC7F,CAuBA,SAASO,EAAWC,EAAIC,EAAOC,EAAS,CACtCA,EAAUA,EAAU,OAAO,OAAO,CAAC,EAAGC,GAAeD,CAAO,EAAIC,GAChE,IAAMC,EAAIC,GAAkBL,EAAIC,EAAO,GAAM,CAAC,EAC9C,OAAAG,EAAE,UAAY,KACdA,EAAE,cAAgB,KAClBA,EAAE,WAAaF,EAAQ,QAAU,OAC7BI,IAAaC,GAAcA,EAAW,SACxCH,EAAE,OAASI,EACXC,EAAQ,KAAKL,CAAC,GACTM,GAAkBN,CAAC,EACnBO,GAAW,KAAKP,CAAC,CAC1B,CAwLA,SAASQ,GAAQC,EAAI,CACnB,GAAI,CAACC,GAAwBC,IAAa,KAAM,OAAOF,EAAG,EAC1D,IAAMG,EAAWD,EACjBA,EAAW,KACX,GAAI,CACF,OAAID,EAA6BA,EAAqB,QAAQD,CAAE,EACzDA,EAAG,CACZ,QAAE,CACAE,EAAWC,CACb,CACF,CAuBA,SAASC,GAAUC,EAAI,CACrB,OAAIC,IAAU,OAAgBA,EAAM,WAAa,KAAMA,EAAM,SAAW,CAACD,CAAE,EAAOC,EAAM,SAAS,KAAKD,CAAE,GACjGA,CACT,CAwCA,SAASE,GAAgBC,EAAI,CAC3B,GAAIC,GAAcA,EAAW,QAC3B,OAAAD,EAAG,EACIC,EAAW,KAEpB,IAAMC,EAAIC,EACJC,EAAIC,EACV,OAAO,QAAQ,QAAQ,EAAE,KAAK,IAAM,CAClCF,EAAWD,EACXG,EAAQD,EACR,IAAI,EACJ,OAAIE,IAAaC,MACf,EAAIN,IAAeA,EAAa,CAC9B,QAAS,IAAI,IACb,QAAS,CAAC,EACV,SAAU,IAAI,IACd,SAAU,IAAI,IACd,MAAO,IAAI,IACX,QAAS,EACX,GACA,EAAE,OAAS,EAAE,KAAO,IAAI,QAAQO,GAAO,EAAE,QAAUA,CAAG,GACtD,EAAE,QAAU,IAEdC,EAAWT,EAAI,EAAK,EACpBG,EAAWE,EAAQ,KACZ,EAAI,EAAE,KAAO,MACtB,CAAC,CACH,CACA,GAAM,CAACK,GAAcC,EAAe,EAAiBC,GAAa,EAAK,EAQvE,SAASC,GAAcC,EAAcC,EAAS,CAC5C,IAAMC,EAAK,OAAO,SAAS,EAC3B,MAAO,CACL,GAAAA,EACA,SAAUC,GAAeD,CAAE,EAC3B,aAAAF,CACF,CACF,CAIA,SAASI,GAASC,EAAI,CACpB,IAAMD,EAAWE,EAAWD,CAAE,EACxBE,EAAOD,EAAW,IAAME,GAAgBJ,EAAS,CAAC,CAAC,EACzD,OAAAG,EAAK,QAAU,IAAM,CACnB,IAAME,EAAIF,EAAK,EACf,OAAO,MAAM,QAAQE,CAAC,EAAIA,EAAIA,GAAK,KAAO,CAACA,CAAC,EAAI,CAAC,CACnD,EACOF,CACT,CACA,IAAIG,GA+BJ,SAASC,IAAa,CACpB,IAAMC,EAAoBC,GAAcA,EAAW,QACnD,GAAI,KAAK,UAAYD,EAAoB,KAAK,OAAS,KAAK,OAC1D,IAAKA,EAAoB,KAAK,OAAS,KAAK,SAAWE,EAAOC,GAAkB,IAAI,MAAO,CACzF,IAAMC,EAAUC,EAChBA,EAAU,KACVC,EAAW,IAAMC,GAAa,IAAI,EAAG,EAAK,EAC1CF,EAAUD,CACZ,CAEF,GAAII,EAAU,CACZ,IAAMC,EAAQ,KAAK,UAAY,KAAK,UAAU,OAAS,EAClDD,EAAS,SAIZA,EAAS,QAAQ,KAAK,IAAI,EAC1BA,EAAS,YAAY,KAAKC,CAAK,IAJ/BD,EAAS,QAAU,CAAC,IAAI,EACxBA,EAAS,YAAc,CAACC,CAAK,GAK1B,KAAK,WAIR,KAAK,UAAU,KAAKD,CAAQ,EAC5B,KAAK,cAAc,KAAKA,EAAS,QAAQ,OAAS,CAAC,IAJnD,KAAK,UAAY,CAACA,CAAQ,EAC1B,KAAK,cAAgB,CAACA,EAAS,QAAQ,OAAS,CAAC,EAKrD,CACA,OAAIR,GAAqBC,EAAW,QAAQ,IAAI,IAAI,EAAU,KAAK,OAC5D,KAAK,KACd,CACA,SAASS,GAAYC,EAAMC,EAAOC,EAAQ,CACxC,IAAIC,EAAUb,GAAcA,EAAW,SAAWA,EAAW,QAAQ,IAAIU,CAAI,EAAIA,EAAK,OAASA,EAAK,MACpG,GAAI,CAACA,EAAK,YAAc,CAACA,EAAK,WAAWG,EAASF,CAAK,EAAG,CACxD,GAAIX,EAAY,CACd,IAAMc,EAAoBd,EAAW,SACjCc,GAAqB,CAACF,GAAUZ,EAAW,QAAQ,IAAIU,CAAI,KAC7DV,EAAW,QAAQ,IAAIU,CAAI,EAC3BA,EAAK,OAASC,GAEXG,IAAmBJ,EAAK,MAAQC,EACvC,MAAOD,EAAK,MAAQC,EAChBD,EAAK,WAAaA,EAAK,UAAU,QACnCL,EAAW,IAAM,CACf,QAASU,EAAI,EAAGA,EAAIL,EAAK,UAAU,OAAQK,GAAK,EAAG,CACjD,IAAMC,EAAIN,EAAK,UAAUK,CAAC,EACpBD,EAAoBd,GAAcA,EAAW,QAC/Cc,GAAqBd,EAAW,SAAS,IAAIgB,CAAC,KAC9CF,EAAoB,CAACE,EAAE,OAAS,CAACA,EAAE,SACjCA,EAAE,KAAMZ,EAAQ,KAAKY,CAAC,EAAOC,EAAQ,KAAKD,CAAC,EAC3CA,EAAE,WAAWE,GAAeF,CAAC,GAE9BF,EAAwCE,EAAE,OAASf,EAAhCe,EAAE,MAAQf,EACpC,CACA,GAAIG,EAAQ,OAAS,IACnB,MAAAA,EAAU,CAAC,EAEL,IAAI,KAEd,EAAG,EAAK,CAEZ,CACA,OAAOO,CACT,CACA,SAAST,GAAkBQ,EAAM,CAC/B,GAAI,CAACA,EAAK,GAAI,OACdS,EAAUT,CAAI,EACd,IAAMU,EAAOC,GACbC,GAAeZ,EAAMV,GAAcA,EAAW,SAAWA,EAAW,QAAQ,IAAIU,CAAI,EAAIA,EAAK,OAASA,EAAK,MAAOU,CAAI,EAClHpB,GAAc,CAACA,EAAW,SAAWA,EAAW,QAAQ,IAAIU,CAAI,GAClE,eAAe,IAAM,CACnBL,EAAW,IAAM,CACfL,IAAeA,EAAW,QAAU,IACpCO,EAAWgB,EAAQb,EACnBY,GAAeZ,EAAMA,EAAK,OAAQU,CAAI,EACtCb,EAAWgB,EAAQ,IACrB,EAAG,EAAK,CACV,CAAC,CAEL,CACA,SAASD,GAAeZ,EAAMC,EAAOS,EAAM,CACzC,IAAII,EACEC,EAAQF,EACZG,EAAWnB,EACbA,EAAWgB,EAAQb,EACnB,GAAI,CACFc,EAAYd,EAAK,GAAGC,CAAK,CAC3B,OAASgB,EAAK,CACZ,OAAIjB,EAAK,OACHV,GAAcA,EAAW,SAC3BU,EAAK,OAAST,EACdS,EAAK,QAAUA,EAAK,OAAO,QAAQS,CAAS,EAC5CT,EAAK,OAAS,SAEdA,EAAK,MAAQT,EACbS,EAAK,OAASA,EAAK,MAAM,QAAQS,CAAS,EAC1CT,EAAK,MAAQ,OAGjBA,EAAK,UAAYU,EAAO,EACjBQ,GAAYD,CAAG,CACxB,QAAE,CACApB,EAAWmB,EACXH,EAAQE,CACV,EACI,CAACf,EAAK,WAAaA,EAAK,WAAaU,KACnCV,EAAK,WAAa,MAAQ,cAAeA,EAC3CD,GAAYC,EAAMc,EAAW,EAAI,EACxBxB,GAAcA,EAAW,SAAWU,EAAK,MAClDV,EAAW,QAAQ,IAAIU,CAAI,EAC3BA,EAAK,OAASc,GACTd,EAAK,MAAQc,EACpBd,EAAK,UAAYU,EAErB,CACA,SAASS,GAAkBC,EAAIC,EAAMC,EAAMC,EAAQhC,EAAOiC,EAAS,CACjE,IAAMC,EAAI,CACR,GAAAL,EACA,MAAOG,EACP,UAAW,KACX,MAAO,KACP,QAAS,KACT,YAAa,KACb,SAAU,KACV,MAAOF,EACP,MAAOR,EACP,QAASA,EAAQA,EAAM,QAAU,KACjC,KAAAS,CACF,EAYA,GAXIhC,GAAcA,EAAW,UAC3BmC,EAAE,MAAQ,EACVA,EAAE,OAASF,GAETV,IAAU,MAAgBA,IAAUa,KAClCpC,GAAcA,EAAW,SAAWuB,EAAM,KACvCA,EAAM,OAAgCA,EAAM,OAAO,KAAKY,CAAC,EAA3CZ,EAAM,OAAS,CAACY,CAAC,EAE/BZ,EAAM,MAA8BA,EAAM,MAAM,KAAKY,CAAC,EAAzCZ,EAAM,MAAQ,CAACY,CAAC,GAGlCE,GAAwBF,EAAE,GAAI,CAChC,GAAM,CAACG,EAAOC,CAAO,EAAIC,GAAa,OAAW,CAC/C,OAAQ,EACV,CAAC,EACKC,EAAWJ,EAAqB,QAAQF,EAAE,GAAII,CAAO,EAC3DG,GAAU,IAAMD,EAAS,QAAQ,CAAC,EAClC,IAAME,EAAsB,IAAMC,GAAgBL,CAAO,EAAE,KAAK,IAAMM,EAAa,QAAQ,CAAC,EACtFA,EAAeR,EAAqB,QAAQF,EAAE,GAAIQ,CAAmB,EAC3ER,EAAE,GAAKW,IACLR,EAAM,EACCtC,GAAcA,EAAW,QAAU6C,EAAa,MAAMC,CAAC,EAAIL,EAAS,MAAMK,CAAC,EAEtF,CACA,OAAOX,CACT,CACA,SAASY,GAAOrC,EAAM,CACpB,IAAMX,EAAoBC,GAAcA,EAAW,QACnD,IAAKD,EAAoBW,EAAK,OAASA,EAAK,SAAW,EAAG,OAC1D,IAAKX,EAAoBW,EAAK,OAASA,EAAK,SAAWsC,EAAS,OAAO1C,GAAaI,CAAI,EACxF,GAAIA,EAAK,UAAYuC,GAAQvC,EAAK,SAAS,UAAU,EAAG,OAAOA,EAAK,SAAS,QAAQ,KAAKA,CAAI,EAC9F,IAAMwC,EAAY,CAACxC,CAAI,EACvB,MAAQA,EAAOA,EAAK,SAAW,CAACA,EAAK,WAAaA,EAAK,UAAYW,KAAY,CAC7E,GAAItB,GAAqBC,EAAW,SAAS,IAAIU,CAAI,EAAG,QACpDX,EAAoBW,EAAK,OAASA,EAAK,QAAOwC,EAAU,KAAKxC,CAAI,CACvE,CACA,QAASK,EAAImC,EAAU,OAAS,EAAGnC,GAAK,EAAGA,IAAK,CAE9C,GADAL,EAAOwC,EAAUnC,CAAC,EACdhB,EAAmB,CACrB,IAAIoD,EAAMzC,EACR0C,EAAOF,EAAUnC,EAAI,CAAC,EACxB,MAAQoC,EAAMA,EAAI,QAAUA,IAAQC,GAClC,GAAIpD,EAAW,SAAS,IAAImD,CAAG,EAAG,MAEtC,CACA,IAAKpD,EAAoBW,EAAK,OAASA,EAAK,SAAWT,EACrDC,GAAkBQ,CAAI,WACZX,EAAoBW,EAAK,OAASA,EAAK,SAAWsC,EAAS,CACrE,IAAM7C,EAAUC,EAChBA,EAAU,KACVC,EAAW,IAAMC,GAAaI,EAAMwC,EAAU,CAAC,CAAC,EAAG,EAAK,EACxD9C,EAAUD,CACZ,CACF,CACF,CACA,SAASE,EAAWyB,EAAIC,EAAM,CAC5B,GAAI3B,EAAS,OAAO0B,EAAG,EACvB,IAAIuB,EAAO,GACNtB,IAAM3B,EAAU,CAAC,GAClBa,EAASoC,EAAO,GAAUpC,EAAU,CAAC,EACzCI,KACA,GAAI,CACF,IAAMiC,EAAMxB,EAAG,EACf,OAAAyB,GAAgBF,CAAI,EACbC,CACT,OAAS3B,EAAK,CACP0B,IAAMpC,EAAU,MACrBb,EAAU,KACVwB,GAAYD,CAAG,CACjB,CACF,CACA,SAAS4B,GAAgBF,EAAM,CAK7B,GAJIjD,IACEoD,IAAaxD,GAAcA,EAAW,QAASyD,GAAcrD,CAAO,EAAOsD,GAAStD,CAAO,EAC/FA,EAAU,MAERiD,EAAM,OACV,IAAIC,EACJ,GAAItD,GACF,GAAI,CAACA,EAAW,SAAS,MAAQ,CAACA,EAAW,MAAM,KAAM,CACvD,IAAM2D,EAAU3D,EAAW,QACrB4D,EAAW5D,EAAW,SAC5BiB,EAAQ,KAAK,MAAMA,EAASjB,EAAW,OAAO,EAC9CsD,EAAMtD,EAAW,QACjB,QAAW6D,KAAK5C,EACd,WAAY4C,IAAMA,EAAE,MAAQA,EAAE,QAC9B,OAAOA,EAAE,OAEX7D,EAAa,KACbK,EAAW,IAAM,CACf,QAAWyD,KAAKF,EAAUzC,EAAU2C,CAAC,EACrC,QAAWC,KAAKJ,EAAS,CAEvB,GADAI,EAAE,MAAQA,EAAE,OACRA,EAAE,MACJ,QAAS,EAAI,EAAGC,EAAMD,EAAE,MAAM,OAAQ,EAAIC,EAAK,IAAK7C,EAAU4C,EAAE,MAAM,CAAC,CAAC,EAEtEA,EAAE,SAAQA,EAAE,MAAQA,EAAE,QAC1B,OAAOA,EAAE,OACT,OAAOA,EAAE,OACTA,EAAE,OAAS,CACb,CACAE,GAAgB,EAAK,CACvB,EAAG,EAAK,CACV,SAAWjE,EAAW,QAAS,CAC7BA,EAAW,QAAU,GACrBA,EAAW,QAAQ,KAAK,MAAMA,EAAW,QAASiB,CAAO,EACzDA,EAAU,KACVgD,GAAgB,EAAI,EACpB,MACF,EAEF,IAAMJ,EAAI5C,EACVA,EAAU,KACN4C,EAAE,QAAQxD,EAAW,IAAM6D,GAAWL,CAAC,EAAG,EAAK,EAC/CP,GAAKA,EAAI,CACf,CACA,SAASI,GAASS,EAAO,CACvB,QAASpD,EAAI,EAAGA,EAAIoD,EAAM,OAAQpD,IAAKgC,GAAOoB,EAAMpD,CAAC,CAAC,CACxD,CACA,SAAS0C,GAAcU,EAAO,CAC5B,QAASpD,EAAI,EAAGA,EAAIoD,EAAM,OAAQpD,IAAK,CACrC,IAAMqD,EAAOD,EAAMpD,CAAC,EACdsD,EAAQrE,EAAW,MACpBqE,EAAM,IAAID,CAAI,IACjBC,EAAM,IAAID,CAAI,EACdZ,GAAU,IAAM,CACda,EAAM,OAAOD,CAAI,EACjB/D,EAAW,IAAM,CACfL,EAAW,QAAU,GACrB+C,GAAOqB,CAAI,CACb,EAAG,EAAK,EACRpE,IAAeA,EAAW,QAAU,GACtC,CAAC,EAEL,CACF,CAsBA,SAASsE,GAAaC,EAAMC,EAAQ,CAClC,IAAMC,EAAoBC,GAAcA,EAAW,QAC/CD,EAAmBF,EAAK,OAAS,EAAOA,EAAK,MAAQ,EACzD,QAASI,EAAI,EAAGA,EAAIJ,EAAK,QAAQ,OAAQI,GAAK,EAAG,CAC/C,IAAMC,EAASL,EAAK,QAAQI,CAAC,EAC7B,GAAIC,EAAO,QAAS,CAClB,IAAMC,EAAQJ,EAAoBG,EAAO,OAASA,EAAO,MACrDC,IAAUC,EACRF,IAAWJ,IAAW,CAACI,EAAO,WAAaA,EAAO,UAAYG,KAAYC,GAAOJ,CAAM,EAClFC,IAAUI,GAASX,GAAaM,EAAQJ,CAAM,CAC3D,CACF,CACF,CACA,SAASU,GAAeX,EAAM,CAC5B,IAAME,EAAoBC,GAAcA,EAAW,QACnD,QAASC,EAAI,EAAGA,EAAIJ,EAAK,UAAU,OAAQI,GAAK,EAAG,CACjD,IAAMQ,EAAIZ,EAAK,UAAUI,CAAC,GACtBF,EAAoB,CAACU,EAAE,OAAS,CAACA,EAAE,SACjCV,EAAmBU,EAAE,OAASF,EAAaE,EAAE,MAAQF,EACrDE,EAAE,KAAMC,EAAQ,KAAKD,CAAC,EAAOE,EAAQ,KAAKF,CAAC,EAC/CA,EAAE,WAAaD,GAAeC,CAAC,EAEnC,CACF,CACA,SAASG,EAAUf,EAAM,CACvB,IAAII,EACJ,GAAIJ,EAAK,QACP,KAAOA,EAAK,QAAQ,QAAQ,CAC1B,IAAMK,EAASL,EAAK,QAAQ,IAAI,EAC9BgB,EAAQhB,EAAK,YAAY,IAAI,EAC7BiB,EAAMZ,EAAO,UACf,GAAIY,GAAOA,EAAI,OAAQ,CACrB,IAAMC,EAAID,EAAI,IAAI,EAChBE,EAAId,EAAO,cAAc,IAAI,EAC3BW,EAAQC,EAAI,SACdC,EAAE,YAAYC,CAAC,EAAIH,EACnBC,EAAID,CAAK,EAAIE,EACbb,EAAO,cAAcW,CAAK,EAAIG,EAElC,CACF,CAEF,GAAIhB,GAAcA,EAAW,SAAWH,EAAK,KAAM,CACjD,GAAIA,EAAK,OAAQ,CACf,IAAKI,EAAIJ,EAAK,OAAO,OAAS,EAAGI,GAAK,EAAGA,IAAKW,EAAUf,EAAK,OAAOI,CAAC,CAAC,EACtE,OAAOJ,EAAK,MACd,CACAoB,GAAMpB,EAAM,EAAI,CAClB,SAAWA,EAAK,MAAO,CACrB,IAAKI,EAAIJ,EAAK,MAAM,OAAS,EAAGI,GAAK,EAAGA,IAAKW,EAAUf,EAAK,MAAMI,CAAC,CAAC,EACpEJ,EAAK,MAAQ,IACf,CACA,GAAIA,EAAK,SAAU,CACjB,IAAKI,EAAIJ,EAAK,SAAS,OAAS,EAAGI,GAAK,EAAGA,IAAKJ,EAAK,SAASI,CAAC,EAAE,EACjEJ,EAAK,SAAW,IAClB,CACIG,GAAcA,EAAW,QAASH,EAAK,OAAS,EAAOA,EAAK,MAAQ,CAC1E,CACA,SAASoB,GAAMpB,EAAMqB,EAAK,CAKxB,GAJKA,IACHrB,EAAK,OAAS,EACdG,EAAW,SAAS,IAAIH,CAAI,GAE1BA,EAAK,MACP,QAASI,EAAI,EAAGA,EAAIJ,EAAK,MAAM,OAAQI,IAAKgB,GAAMpB,EAAK,MAAMI,CAAC,CAAC,CAEnE,CACA,SAASkB,GAAUC,EAAK,CACtB,OAAIA,aAAe,MAAcA,EAC1B,IAAI,MAAM,OAAOA,GAAQ,SAAWA,EAAM,gBAAiB,CAChE,MAAOA,CACT,CAAC,CACH,CACA,SAASC,GAAUD,EAAKE,EAAKC,EAAO,CAClC,GAAI,CACF,QAAWC,KAAKF,EAAKE,EAAEJ,CAAG,CAC5B,OAASK,EAAG,CACVC,GAAYD,EAAGF,GAASA,EAAM,OAAS,IAAI,CAC7C,CACF,CACA,SAASG,GAAYN,EAAKG,EAAQI,EAAO,CACvC,IAAML,EAAMM,IAASL,GAASA,EAAM,SAAWA,EAAM,QAAQK,EAAK,EAC5DC,EAAQV,GAAUC,CAAG,EAC3B,GAAI,CAACE,EAAK,MAAMO,EACZlB,EAASA,EAAQ,KAAK,CACxB,IAAK,CACHU,GAAUQ,EAAOP,EAAKC,CAAK,CAC7B,EACA,MAAOnB,CACT,CAAC,EAAOiB,GAAUQ,EAAOP,EAAKC,CAAK,CACrC,CACA,SAASO,GAAgBC,EAAU,CACjC,GAAI,OAAOA,GAAa,YAAc,CAACA,EAAS,OAAQ,OAAOD,GAAgBC,EAAS,CAAC,EACzF,GAAI,MAAM,QAAQA,CAAQ,EAAG,CAC3B,IAAMC,EAAU,CAAC,EACjB,QAAS/B,EAAI,EAAGA,EAAI8B,EAAS,OAAQ9B,IAAK,CACxC,IAAMgC,EAASH,GAAgBC,EAAS9B,CAAC,CAAC,EAC1C,MAAM,QAAQgC,CAAM,EAAID,EAAQ,KAAK,MAAMA,EAASC,CAAM,EAAID,EAAQ,KAAKC,CAAM,CACnF,CACA,OAAOD,CACT,CACA,OAAOD,CACT,CACA,SAASG,GAAeC,EAAIC,EAAS,CACnC,OAAO,SAAkBC,EAAO,CAC9B,IAAIC,EACJ,OAAAC,EAAmB,IAAMD,EAAME,GAAQ,KACrCb,EAAM,QAAU,CACd,GAAGA,EAAM,QACT,CAACQ,CAAE,EAAGE,EAAM,KACd,EACON,GAAS,IAAMM,EAAM,QAAQ,EACrC,EAAG,MAAS,EACNC,CACT,CACF,CAuEA,IAAMG,GAAW,OAAO,UAAU,EA6clC,IAAMC,GAAsBC,GAAc,EC18CnC,SAASC,EAAOC,EAAU,CAC/B,IAAMC,EAAS,OAAO,UAAU,SAAS,KAAKD,CAAQ,EAGtD,OACEA,aAAoB,MACnB,OAAOA,GAAa,UAAYC,IAAW,gBAGrC,IAAID,EAAS,YAAY,CAACA,CAAQ,EAEzC,OAAOA,GAAa,UACpBC,IAAW,mBACX,OAAOD,GAAa,UACpBC,IAAW,kBAGJ,IAAI,KAAKD,CAAQ,EAGjB,IAAI,KAAK,GAAG,CAEvB,CC1BO,SAASE,EAAcC,EAAMC,EAAO,CACzC,OAAID,aAAgB,KACX,IAAIA,EAAK,YAAYC,CAAK,EAE1B,IAAI,KAAKA,CAAK,CAEzB,CCXO,SAASC,GAAQC,EAAMC,EAAQ,CACpC,IAAMC,EAAQC,EAAOH,CAAI,EACzB,OAAI,MAAMC,CAAM,EAAUG,EAAcJ,EAAM,GAAG,GAC5CC,GAILC,EAAM,QAAQA,EAAM,QAAQ,EAAID,CAAM,EAC/BC,EACT,CCqBO,IAAMG,GAAU,KAAK,IAAI,GAAI,CAAC,EAAI,GAAK,GAAK,GAAK,IAgB3CC,GAAU,CAACD,GAOXE,EAAqB,OAOrBC,GAAoB,MAOpBC,EAAuB,IAOvBC,EAAqB,KAOrBC,GAAuB,IAwD7B,IAAMC,GAAgB,KAOhBC,GAAkB,GAOlBC,GAAeF,GAAgB,GAO/BG,GAAgBD,GAAe,EAO/BE,GAAgBF,GAAe,SAO/BG,GAAiBD,GAAgB,GAOjCE,GAAmBD,GAAiB,EC1MjD,IAAIE,GAAiB,CAAC,EAEf,SAASC,GAAoB,CAClC,OAAOD,EACT,CC6BO,SAASE,EAAYC,EAAMC,EAAS,CACzC,IAAMC,EAAiBC,EAAkB,EACnCC,EACJH,GAAS,cACTA,GAAS,QAAQ,SAAS,cAC1BC,EAAe,cACfA,EAAe,QAAQ,SAAS,cAChC,EAEIG,EAAQC,EAAON,CAAI,EACnBO,EAAMF,EAAM,OAAO,EACnBG,GAAQD,EAAMH,EAAe,EAAI,GAAKG,EAAMH,EAElD,OAAAC,EAAM,QAAQA,EAAM,QAAQ,EAAIG,CAAI,EACpCH,EAAM,SAAS,EAAG,EAAG,EAAG,CAAC,EAClBA,CACT,CCzBO,SAASI,EAAeC,EAAM,CACnC,OAAOC,EAAYD,EAAM,CAAE,aAAc,CAAE,CAAC,CAC9C,CCAO,SAASE,GAAeC,EAAM,CACnC,IAAMC,EAAQC,EAAOF,CAAI,EACnBG,EAAOF,EAAM,YAAY,EAEzBG,EAA4BC,EAAcL,EAAM,CAAC,EACvDI,EAA0B,YAAYD,EAAO,EAAG,EAAG,CAAC,EACpDC,EAA0B,SAAS,EAAG,EAAG,EAAG,CAAC,EAC7C,IAAME,EAAkBC,EAAeH,CAAyB,EAE1DI,EAA4BH,EAAcL,EAAM,CAAC,EACvDQ,EAA0B,YAAYL,EAAM,EAAG,CAAC,EAChDK,EAA0B,SAAS,EAAG,EAAG,EAAG,CAAC,EAC7C,IAAMC,EAAkBF,EAAeC,CAAyB,EAEhE,OAAIP,EAAM,QAAQ,GAAKK,EAAgB,QAAQ,EACtCH,EAAO,EACLF,EAAM,QAAQ,GAAKQ,EAAgB,QAAQ,EAC7CN,EAEAA,EAAO,CAElB,CCzBO,SAASO,EAAWC,EAAM,CAC/B,IAAMC,EAAQC,EAAOF,CAAI,EACzB,OAAAC,EAAM,SAAS,EAAG,EAAG,EAAG,CAAC,EAClBA,CACT,CCfO,SAASE,EAAgCC,EAAM,CACpD,IAAMC,EAAU,IAAI,KAClB,KAAK,IACHD,EAAK,YAAY,EACjBA,EAAK,SAAS,EACdA,EAAK,QAAQ,EACbA,EAAK,SAAS,EACdA,EAAK,WAAW,EAChBA,EAAK,WAAW,EAChBA,EAAK,gBAAgB,CACvB,CACF,EACA,OAAAC,EAAQ,eAAeD,EAAK,YAAY,CAAC,EAClCA,EAAK,QAAQ,EAAIC,EAAQ,QAAQ,CAC1C,CCWO,SAASC,GAAyBC,EAAUC,EAAW,CAC5D,IAAMC,EAAiBC,EAAWH,CAAQ,EACpCI,EAAkBD,EAAWF,CAAS,EAEtCI,EACJH,EAAe,QAAQ,EAAII,EAAgCJ,CAAc,EACrEK,EACJH,EAAgB,QAAQ,EACxBE,EAAgCF,CAAe,EAKjD,OAAO,KAAK,OAAOC,EAAgBE,GAAkBC,EAAiB,CACxE,CCvBO,SAASC,GAAmBC,EAAM,CACvC,IAAMC,EAAOC,GAAeF,CAAI,EAC1BG,EAAkBC,EAAcJ,EAAM,CAAC,EAC7C,OAAAG,EAAgB,YAAYF,EAAM,EAAG,CAAC,EACtCE,EAAgB,SAAS,EAAG,EAAG,EAAG,CAAC,EAC5BE,EAAeF,CAAe,CACvC,CCDO,SAASG,GAAUC,EAAUC,EAAW,CAC7C,IAAMC,EAAqBC,EAAWH,CAAQ,EACxCI,EAAsBD,EAAWF,CAAS,EAEhD,MAAO,CAACC,GAAuB,CAACE,CAClC,CCZO,SAASC,GAA2BC,EAAUC,EAAW,CAC9D,IAAMC,EAAYC,EAAOH,CAAQ,EAC3BI,EAAaD,EAAOF,CAAS,EAE7BI,EAAWH,EAAU,YAAY,EAAIE,EAAW,YAAY,EAC5DE,EAAYJ,EAAU,SAAS,EAAIE,EAAW,SAAS,EAE7D,OAAOC,EAAW,GAAKC,CACzB,CCZO,SAASC,GAAWC,EAAM,CAC/B,IAAMC,EAAQC,EAAOF,CAAI,EAEzB,OADgB,KAAK,MAAMC,EAAM,SAAS,EAAI,CAAC,EAAI,CAErD,CCCO,SAASE,GAA6BC,EAAUC,EAAW,CAChE,IAAMC,EAAYC,EAAOH,CAAQ,EAC3BI,EAAaD,EAAOF,CAAS,EAE7BI,EAAWH,EAAU,YAAY,EAAIE,EAAW,YAAY,EAC5DE,EAAcC,GAAWL,CAAS,EAAIK,GAAWH,CAAU,EAEjE,OAAOC,EAAW,EAAIC,CACxB,CCQO,SAASE,GAA0BC,EAAUC,EAAWC,EAAS,CACtE,IAAMC,EAAkBC,EAAYJ,EAAUE,CAAO,EAC/CG,EAAmBD,EAAYH,EAAWC,CAAO,EAEjDI,EACJH,EAAgB,QAAQ,EACxBI,EAAgCJ,CAAe,EAC3CK,EACJH,EAAiB,QAAQ,EACzBE,EAAgCF,CAAgB,EAKlD,OAAO,KAAK,OAAOC,EAAgBE,GAAkBC,CAAkB,CACzE,CChCO,SAASC,GAA0BC,EAAUC,EAAW,CAC7D,IAAMC,EAAYC,EAAOH,CAAQ,EAC3BI,EAAaD,EAAOF,CAAS,EAEnC,OAAOC,EAAU,YAAY,EAAIE,EAAW,YAAY,CAC1D,CCJO,SAASC,EAAyBC,EAAUC,EAAW,CAC5D,OAAOC,EAAOF,CAAQ,EAAE,QAAQ,EAAIE,EAAOD,CAAS,EAAE,QAAQ,CAChE,CC5BO,SAASE,EAAkBC,EAAQ,CACxC,OAAOA,EAAS,KAAKA,CAAM,EAAI,KAAK,KACtC,CC8BO,SAASC,GAAkBC,EAAUC,EAAWC,EAAS,CAC9D,IAAMC,EACJC,EAAyBJ,EAAUC,CAAS,EAAII,EAClD,OAAOC,EAAkBJ,GAAS,cAAc,EAAEC,CAAI,CACxD,CCIO,SAASI,GAAoBC,EAAUC,EAAWC,EAAS,CAChE,IAAMC,EACJC,EAAyBJ,EAAUC,CAAS,EAAII,EAClD,OAAOC,EAAkBJ,GAAS,cAAc,EAAEC,CAAI,CACxD,CCZO,SAASI,EAAoBC,EAAUC,EAAWC,EAAS,CAChE,IAAMC,EAAOC,EAAyBJ,EAAUC,CAAS,EAAI,IAC7D,OAAOI,EAAkBH,GAAS,cAAc,EAAEC,CAAI,CACxD,CCnCA,IAAMG,GAAuB,CAC3B,iBAAkB,CAChB,IAAK,qBACL,MAAO,6BACT,EAEA,SAAU,CACR,IAAK,WACL,MAAO,mBACT,EAEA,YAAa,gBAEb,iBAAkB,CAChB,IAAK,qBACL,MAAO,6BACT,EAEA,SAAU,CACR,IAAK,WACL,MAAO,mBACT,EAEA,YAAa,CACX,IAAK,eACL,MAAO,uBACT,EAEA,OAAQ,CACN,IAAK,SACL,MAAO,iBACT,EAEA,MAAO,CACL,IAAK,QACL,MAAO,gBACT,EAEA,YAAa,CACX,IAAK,eACL,MAAO,uBACT,EAEA,OAAQ,CACN,IAAK,SACL,MAAO,iBACT,EAEA,aAAc,CACZ,IAAK,gBACL,MAAO,wBACT,EAEA,QAAS,CACP,IAAK,UACL,MAAO,kBACT,EAEA,YAAa,CACX,IAAK,eACL,MAAO,uBACT,EAEA,OAAQ,CACN,IAAK,SACL,MAAO,iBACT,EAEA,WAAY,CACV,IAAK,cACL,MAAO,sBACT,EAEA,aAAc,CACZ,IAAK,gBACL,MAAO,wBACT,CACF,EAEaC,GAAiB,CAACC,EAAOC,EAAOC,IAAY,CACvD,IAAIC,EAEEC,EAAaN,GAAqBE,CAAK,EAS7C,OARI,OAAOI,GAAe,SACxBD,EAASC,EACAH,IAAU,EACnBE,EAASC,EAAW,IAEpBD,EAASC,EAAW,MAAM,QAAQ,YAAaH,EAAM,SAAS,CAAC,EAG7DC,GAAS,UACPA,EAAQ,YAAcA,EAAQ,WAAa,EACtC,MAAQC,EAERA,EAAS,OAIbA,CACT,ECpGO,SAASE,GAAkBC,EAAM,CACtC,MAAO,CAACC,EAAU,CAAC,IAAM,CAEvB,IAAMC,EAAQD,EAAQ,MAAQ,OAAOA,EAAQ,KAAK,EAAID,EAAK,aAE3D,OADeA,EAAK,QAAQE,CAAK,GAAKF,EAAK,QAAQA,EAAK,YAAY,CAEtE,CACF,CCLA,IAAMG,GAAc,CAClB,KAAM,mBACN,KAAM,aACN,OAAQ,WACR,MAAO,YACT,EAEMC,GAAc,CAClB,KAAM,iBACN,KAAM,cACN,OAAQ,YACR,MAAO,QACT,EAEMC,GAAkB,CACtB,KAAM,yBACN,KAAM,yBACN,OAAQ,qBACR,MAAO,oBACT,EAEaC,GAAa,CACxB,KAAMC,GAAkB,CACtB,QAASJ,GACT,aAAc,MAChB,CAAC,EAED,KAAMI,GAAkB,CACtB,QAASH,GACT,aAAc,MAChB,CAAC,EAED,SAAUG,GAAkB,CAC1B,QAASF,GACT,aAAc,MAChB,CAAC,CACH,ECtCA,IAAMG,GAAuB,CAC3B,SAAU,qBACV,UAAW,mBACX,MAAO,eACP,SAAU,kBACV,SAAU,cACV,MAAO,GACT,EAEaC,GAAiB,CAACC,EAAOC,EAAOC,EAAWC,IACtDL,GAAqBE,CAAK,EC+BrB,SAASI,EAAgBC,EAAM,CACpC,MAAO,CAACC,EAAOC,IAAY,CACzB,IAAMC,EAAUD,GAAS,QAAU,OAAOA,EAAQ,OAAO,EAAI,aAEzDE,EACJ,GAAID,IAAY,cAAgBH,EAAK,iBAAkB,CACrD,IAAMK,EAAeL,EAAK,wBAA0BA,EAAK,aACnDM,EAAQJ,GAAS,MAAQ,OAAOA,EAAQ,KAAK,EAAIG,EAEvDD,EACEJ,EAAK,iBAAiBM,CAAK,GAAKN,EAAK,iBAAiBK,CAAY,CACtE,KAAO,CACL,IAAMA,EAAeL,EAAK,aACpBM,EAAQJ,GAAS,MAAQ,OAAOA,EAAQ,KAAK,EAAIF,EAAK,aAE5DI,EAAcJ,EAAK,OAAOM,CAAK,GAAKN,EAAK,OAAOK,CAAY,CAC9D,CACA,IAAME,EAAQP,EAAK,iBAAmBA,EAAK,iBAAiBC,CAAK,EAAIA,EAGrE,OAAOG,EAAYG,CAAK,CAC1B,CACF,CC7DA,IAAMC,GAAY,CAChB,OAAQ,CAAC,IAAK,GAAG,EACjB,YAAa,CAAC,KAAM,IAAI,EACxB,KAAM,CAAC,gBAAiB,aAAa,CACvC,EAEMC,GAAgB,CACpB,OAAQ,CAAC,IAAK,IAAK,IAAK,GAAG,EAC3B,YAAa,CAAC,KAAM,KAAM,KAAM,IAAI,EACpC,KAAM,CAAC,cAAe,cAAe,cAAe,aAAa,CACnE,EAMMC,GAAc,CAClB,OAAQ,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,EACnE,YAAa,CACX,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,KACF,EAEA,KAAM,CACJ,UACA,WACA,QACA,QACA,MACA,OACA,OACA,SACA,YACA,UACA,WACA,UACF,CACF,EAEMC,GAAY,CAChB,OAAQ,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,EAC1C,MAAO,CAAC,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,IAAI,EAChD,YAAa,CAAC,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,KAAK,EAC7D,KAAM,CACJ,SACA,SACA,UACA,YACA,WACA,SACA,UACF,CACF,EAEMC,GAAkB,CACtB,OAAQ,CACN,GAAI,IACJ,GAAI,IACJ,SAAU,KACV,KAAM,IACN,QAAS,UACT,UAAW,YACX,QAAS,UACT,MAAO,OACT,EACA,YAAa,CACX,GAAI,KACJ,GAAI,KACJ,SAAU,WACV,KAAM,OACN,QAAS,UACT,UAAW,YACX,QAAS,UACT,MAAO,OACT,EACA,KAAM,CACJ,GAAI,OACJ,GAAI,OACJ,SAAU,WACV,KAAM,OACN,QAAS,UACT,UAAW,YACX,QAAS,UACT,MAAO,OACT,CACF,EAEMC,GAA4B,CAChC,OAAQ,CACN,GAAI,IACJ,GAAI,IACJ,SAAU,KACV,KAAM,IACN,QAAS,iBACT,UAAW,mBACX,QAAS,iBACT,MAAO,UACT,EACA,YAAa,CACX,GAAI,KACJ,GAAI,KACJ,SAAU,WACV,KAAM,OACN,QAAS,iBACT,UAAW,mBACX,QAAS,iBACT,MAAO,UACT,EACA,KAAM,CACJ,GAAI,OACJ,GAAI,OACJ,SAAU,WACV,KAAM,OACN,QAAS,iBACT,UAAW,mBACX,QAAS,iBACT,MAAO,UACT,CACF,EAEMC,GAAgB,CAACC,EAAaC,IAAa,CAC/C,IAAMC,EAAS,OAAOF,CAAW,EAS3BG,EAASD,EAAS,IACxB,GAAIC,EAAS,IAAMA,EAAS,GAC1B,OAAQA,EAAS,GAAI,CACnB,IAAK,GACH,OAAOD,EAAS,KAClB,IAAK,GACH,OAAOA,EAAS,KAClB,IAAK,GACH,OAAOA,EAAS,IACpB,CAEF,OAAOA,EAAS,IAClB,EAEaE,GAAW,CACtB,cAAAL,GAEA,IAAKM,EAAgB,CACnB,OAAQZ,GACR,aAAc,MAChB,CAAC,EAED,QAASY,EAAgB,CACvB,OAAQX,GACR,aAAc,OACd,iBAAmBY,GAAYA,EAAU,CAC3C,CAAC,EAED,MAAOD,EAAgB,CACrB,OAAQV,GACR,aAAc,MAChB,CAAC,EAED,IAAKU,EAAgB,CACnB,OAAQT,GACR,aAAc,MAChB,CAAC,EAED,UAAWS,EAAgB,CACzB,OAAQR,GACR,aAAc,OACd,iBAAkBC,GAClB,uBAAwB,MAC1B,CAAC,CACH,EC1LO,SAASS,EAAaC,EAAM,CACjC,MAAO,CAACC,EAAQC,EAAU,CAAC,IAAM,CAC/B,IAAMC,EAAQD,EAAQ,MAEhBE,EACHD,GAASH,EAAK,cAAcG,CAAK,GAClCH,EAAK,cAAcA,EAAK,iBAAiB,EACrCK,EAAcJ,EAAO,MAAMG,CAAY,EAE7C,GAAI,CAACC,EACH,OAAO,KAET,IAAMC,EAAgBD,EAAY,CAAC,EAE7BE,EACHJ,GAASH,EAAK,cAAcG,CAAK,GAClCH,EAAK,cAAcA,EAAK,iBAAiB,EAErCQ,EAAM,MAAM,QAAQD,CAAa,EACnCE,GAAUF,EAAgBG,GAAYA,EAAQ,KAAKJ,CAAa,CAAC,EAEjEK,GAAQJ,EAAgBG,GAAYA,EAAQ,KAAKJ,CAAa,CAAC,EAE/DM,EAEJA,EAAQZ,EAAK,cAAgBA,EAAK,cAAcQ,CAAG,EAAIA,EACvDI,EAAQV,EAAQ,cAEZA,EAAQ,cAAcU,CAAK,EAC3BA,EAEJ,IAAMC,EAAOZ,EAAO,MAAMK,EAAc,MAAM,EAE9C,MAAO,CAAE,MAAAM,EAAO,KAAAC,CAAK,CACvB,CACF,CAEA,SAASF,GAAQG,EAAQC,EAAW,CAClC,QAAWP,KAAOM,EAChB,GACE,OAAO,UAAU,eAAe,KAAKA,EAAQN,CAAG,GAChDO,EAAUD,EAAON,CAAG,CAAC,EAErB,OAAOA,CAIb,CAEA,SAASC,GAAUO,EAAOD,EAAW,CACnC,QAASP,EAAM,EAAGA,EAAMQ,EAAM,OAAQR,IACpC,GAAIO,EAAUC,EAAMR,CAAG,CAAC,EACtB,OAAOA,CAIb,CCxDO,SAASS,GAAoBC,EAAM,CACxC,MAAO,CAACC,EAAQC,EAAU,CAAC,IAAM,CAC/B,IAAMC,EAAcF,EAAO,MAAMD,EAAK,YAAY,EAClD,GAAI,CAACG,EAAa,OAAO,KACzB,IAAMC,EAAgBD,EAAY,CAAC,EAE7BE,EAAcJ,EAAO,MAAMD,EAAK,YAAY,EAClD,GAAI,CAACK,EAAa,OAAO,KACzB,IAAIC,EAAQN,EAAK,cACbA,EAAK,cAAcK,EAAY,CAAC,CAAC,EACjCA,EAAY,CAAC,EAGjBC,EAAQJ,EAAQ,cAAgBA,EAAQ,cAAcI,CAAK,EAAIA,EAE/D,IAAMC,EAAON,EAAO,MAAMG,EAAc,MAAM,EAE9C,MAAO,CAAE,MAAAE,EAAO,KAAAC,CAAK,CACvB,CACF,CChBA,IAAMC,GAA4B,wBAC5BC,GAA4B,OAE5BC,GAAmB,CACvB,OAAQ,UACR,YAAa,6DACb,KAAM,4DACR,EACMC,GAAmB,CACvB,IAAK,CAAC,MAAO,SAAS,CACxB,EAEMC,GAAuB,CAC3B,OAAQ,WACR,YAAa,YACb,KAAM,gCACR,EACMC,GAAuB,CAC3B,IAAK,CAAC,KAAM,KAAM,KAAM,IAAI,CAC9B,EAEMC,GAAqB,CACzB,OAAQ,eACR,YAAa,sDACb,KAAM,2FACR,EACMC,GAAqB,CACzB,OAAQ,CACN,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,MACA,KACF,EAEA,IAAK,CACH,OACA,MACA,QACA,OACA,QACA,QACA,QACA,OACA,MACA,MACA,MACA,KACF,CACF,EAEMC,GAAmB,CACvB,OAAQ,YACR,MAAO,2BACP,YAAa,kCACb,KAAM,8DACR,EACMC,GAAmB,CACvB,OAAQ,CAAC,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,KAAK,EACxD,IAAK,CAAC,OAAQ,MAAO,OAAQ,MAAO,OAAQ,MAAO,MAAM,CAC3D,EAEMC,GAAyB,CAC7B,OAAQ,6DACR,IAAK,gFACP,EACMC,GAAyB,CAC7B,IAAK,CACH,GAAI,MACJ,GAAI,MACJ,SAAU,OACV,KAAM,OACN,QAAS,WACT,UAAW,aACX,QAAS,WACT,MAAO,QACT,CACF,EAEaC,GAAQ,CACnB,cAAeC,GAAoB,CACjC,aAAcb,GACd,aAAcC,GACd,cAAgBa,GAAU,SAASA,EAAO,EAAE,CAC9C,CAAC,EAED,IAAKC,EAAa,CAChB,cAAeb,GACf,kBAAmB,OACnB,cAAeC,GACf,kBAAmB,KACrB,CAAC,EAED,QAASY,EAAa,CACpB,cAAeX,GACf,kBAAmB,OACnB,cAAeC,GACf,kBAAmB,MACnB,cAAgBW,GAAUA,EAAQ,CACpC,CAAC,EAED,MAAOD,EAAa,CAClB,cAAeT,GACf,kBAAmB,OACnB,cAAeC,GACf,kBAAmB,KACrB,CAAC,EAED,IAAKQ,EAAa,CAChB,cAAeP,GACf,kBAAmB,OACnB,cAAeC,GACf,kBAAmB,KACrB,CAAC,EAED,UAAWM,EAAa,CACtB,cAAeL,GACf,kBAAmB,MACnB,cAAeC,GACf,kBAAmB,KACrB,CAAC,CACH,ECrHO,IAAMM,GAAO,CAClB,KAAM,QACN,eAAgBC,GAChB,WAAYC,GACZ,eAAgBC,GAChB,SAAUC,GACV,MAAOC,GACP,QAAS,CACP,aAAc,EACd,sBAAuB,CACzB,CACF,ECCO,SAASC,GAAWC,EAAM,CAC/B,IAAMC,EAAQC,EAAOF,CAAI,EACnBG,EACJC,EAAeH,CAAK,EAAE,QAAQ,EAAII,GAAmBJ,CAAK,EAAE,QAAQ,EAKtE,OAAO,KAAK,MAAME,EAAOG,CAAkB,EAAI,CACjD,CCUO,SAASC,GAAYC,EAAMC,EAAS,CACzC,IAAMC,EAAQC,EAAOH,CAAI,EACnBI,EAAOF,EAAM,YAAY,EAEzBG,EAAiBC,EAAkB,EACnCC,EACJN,GAAS,uBACTA,GAAS,QAAQ,SAAS,uBAC1BI,EAAe,uBACfA,EAAe,QAAQ,SAAS,uBAChC,EAEIG,EAAsBC,EAAcT,EAAM,CAAC,EACjDQ,EAAoB,YAAYJ,EAAO,EAAG,EAAGG,CAAqB,EAClEC,EAAoB,SAAS,EAAG,EAAG,EAAG,CAAC,EACvC,IAAME,EAAkBC,EAAYH,EAAqBP,CAAO,EAE1DW,EAAsBH,EAAcT,EAAM,CAAC,EACjDY,EAAoB,YAAYR,EAAM,EAAGG,CAAqB,EAC9DK,EAAoB,SAAS,EAAG,EAAG,EAAG,CAAC,EACvC,IAAMC,EAAkBF,EAAYC,EAAqBX,CAAO,EAEhE,OAAIC,EAAM,QAAQ,GAAKQ,EAAgB,QAAQ,EACtCN,EAAO,EACLF,EAAM,QAAQ,GAAKW,EAAgB,QAAQ,EAC7CT,EAEAA,EAAO,CAElB,CC7BO,SAASU,GAAgBC,EAAMC,EAAS,CAC7C,IAAMC,EAAiBC,EAAkB,EACnCC,EACJH,GAAS,uBACTA,GAAS,QAAQ,SAAS,uBAC1BC,EAAe,uBACfA,EAAe,QAAQ,SAAS,uBAChC,EAEIG,EAAOC,GAAYN,EAAMC,CAAO,EAChCM,EAAYC,EAAcR,EAAM,CAAC,EACvC,OAAAO,EAAU,YAAYF,EAAM,EAAGD,CAAqB,EACpDG,EAAU,SAAS,EAAG,EAAG,EAAG,CAAC,EACfE,EAAYF,EAAWN,CAAO,CAE9C,CCdO,SAASS,GAAQC,EAAMC,EAAS,CACrC,IAAMC,EAAQC,EAAOH,CAAI,EACnBI,EACJC,EAAYH,EAAOD,CAAO,EAAE,QAAQ,EACpCK,GAAgBJ,EAAOD,CAAO,EAAE,QAAQ,EAK1C,OAAO,KAAK,MAAMG,EAAOG,CAAkB,EAAI,CACjD,CCxDA,IAAMC,GAAoB,CAACC,EAASC,IAAe,CACjD,OAAQD,EAAS,CACf,IAAK,IACH,OAAOC,EAAW,KAAK,CAAE,MAAO,OAAQ,CAAC,EAC3C,IAAK,KACH,OAAOA,EAAW,KAAK,CAAE,MAAO,QAAS,CAAC,EAC5C,IAAK,MACH,OAAOA,EAAW,KAAK,CAAE,MAAO,MAAO,CAAC,EAC1C,IAAK,OACL,QACE,OAAOA,EAAW,KAAK,CAAE,MAAO,MAAO,CAAC,CAC5C,CACF,EAEMC,GAAoB,CAACF,EAASC,IAAe,CACjD,OAAQD,EAAS,CACf,IAAK,IACH,OAAOC,EAAW,KAAK,CAAE,MAAO,OAAQ,CAAC,EAC3C,IAAK,KACH,OAAOA,EAAW,KAAK,CAAE,MAAO,QAAS,CAAC,EAC5C,IAAK,MACH,OAAOA,EAAW,KAAK,CAAE,MAAO,MAAO,CAAC,EAC1C,IAAK,OACL,QACE,OAAOA,EAAW,KAAK,CAAE,MAAO,MAAO,CAAC,CAC5C,CACF,EAEME,GAAwB,CAACH,EAASC,IAAe,CACrD,IAAMG,EAAcJ,EAAQ,MAAM,WAAW,GAAK,CAAC,EAC7CK,EAAcD,EAAY,CAAC,EAC3BE,EAAcF,EAAY,CAAC,EAEjC,GAAI,CAACE,EACH,OAAOP,GAAkBC,EAASC,CAAU,EAG9C,IAAIM,EAEJ,OAAQF,EAAa,CACnB,IAAK,IACHE,EAAiBN,EAAW,SAAS,CAAE,MAAO,OAAQ,CAAC,EACvD,MACF,IAAK,KACHM,EAAiBN,EAAW,SAAS,CAAE,MAAO,QAAS,CAAC,EACxD,MACF,IAAK,MACHM,EAAiBN,EAAW,SAAS,CAAE,MAAO,MAAO,CAAC,EACtD,MACF,IAAK,OACL,QACEM,EAAiBN,EAAW,SAAS,CAAE,MAAO,MAAO,CAAC,EACtD,KACJ,CAEA,OAAOM,EACJ,QAAQ,WAAYR,GAAkBM,EAAaJ,CAAU,CAAC,EAC9D,QAAQ,WAAYC,GAAkBI,EAAaL,CAAU,CAAC,CACnE,EAEaO,GAAiB,CAC5B,EAAGN,GACH,EAAGC,EACL,EC/DA,IAAMM,GAAmB,OACnBC,GAAkB,OAElBC,GAAc,CAAC,IAAK,KAAM,KAAM,MAAM,EAErC,SAASC,GAA0BC,EAAO,CAC/C,OAAOJ,GAAiB,KAAKI,CAAK,CACpC,CAEO,SAASC,GAAyBD,EAAO,CAC9C,OAAOH,GAAgB,KAAKG,CAAK,CACnC,CAEO,SAASE,GAA0BF,EAAOG,EAAQC,EAAO,CAC9D,IAAMC,EAAWC,GAAQN,EAAOG,EAAQC,CAAK,EAE7C,GADA,QAAQ,KAAKC,CAAQ,EACjBP,GAAY,SAASE,CAAK,EAAG,MAAM,IAAI,WAAWK,CAAQ,CAChE,CAEA,SAASC,GAAQN,EAAOG,EAAQC,EAAO,CACrC,IAAMG,EAAUP,EAAM,CAAC,IAAM,IAAM,QAAU,oBAC7C,MAAO,SAASA,EAAM,YAAY,CAAC,mBAAmBA,CAAK,YAAYG,CAAM,sBAAsBI,CAAO,mBAAmBH,CAAK,iFACpI,CCIO,SAASI,IAAoB,CAClC,OAAO,OAAO,OAAO,CAAC,EAAGA,EAA0B,CAAC,CACtD,CCJO,SAASC,GAAUC,EAAM,CAE9B,IAAIC,EADUC,EAAOF,CAAI,EACT,OAAO,EAEvB,OAAIC,IAAQ,IACVA,EAAM,GAGDA,CACT,CCyEO,SAASE,GAAWC,EAAMC,EAAgBC,EAAe,CAC9D,IAAIC,EAEJ,OAAIC,GAAgBH,CAAc,EAChCE,EAAgBF,EAEhBC,EAAgBD,EAGX,IAAI,KAAK,eAAeC,GAAe,OAAQC,CAAa,EAAE,OACnEE,EAAOL,CAAI,CACb,CACF,CAEA,SAASI,GAAgBE,EAAM,CAC7B,OAAOA,IAAS,QAAa,EAAE,WAAYA,EAC7C,CCIO,SAASC,GAAmBC,EAAMC,EAAUC,EAAS,CAC1D,IAAIC,EAAQ,EACRC,EACEC,EAAWC,EAAON,CAAI,EACtBO,EAAYD,EAAOL,CAAQ,EAEjC,GAAKC,GAAS,KA2CZE,EAAOF,GAAS,KACZE,IAAS,SACXD,EAAQK,EAAoBH,EAAUE,CAAS,EACtCH,IAAS,SAClBD,EAAQM,GAAoBJ,EAAUE,CAAS,EACtCH,IAAS,OAClBD,EAAQO,GAAkBL,EAAUE,CAAS,EACpCH,IAAS,MAClBD,EAAQQ,GAAyBN,EAAUE,CAAS,EAC3CH,IAAS,OAClBD,EAAQS,GAA0BP,EAAUE,CAAS,EAC5CH,IAAS,QAClBD,EAAQU,GAA2BR,EAAUE,CAAS,EAC7CH,IAAS,UAClBD,EAAQW,GAA6BT,EAAUE,CAAS,EAC/CH,IAAS,SAClBD,EAAQY,GAA0BV,EAAUE,CAAS,OA3DrC,CAElB,IAAMS,EAAgBR,EAAoBH,EAAUE,CAAS,EAEzD,KAAK,IAAIS,CAAa,EAAIC,IAC5Bd,EAAQK,EAAoBH,EAAUE,CAAS,EAC/CH,EAAO,UACE,KAAK,IAAIY,CAAa,EAAIE,IACnCf,EAAQM,GAAoBJ,EAAUE,CAAS,EAC/CH,EAAO,UAEP,KAAK,IAAIY,CAAa,EAAIG,IAC1B,KAAK,IAAIR,GAAyBN,EAAUE,CAAS,CAAC,EAAI,GAE1DJ,EAAQO,GAAkBL,EAAUE,CAAS,EAC7CH,EAAO,QAEP,KAAK,IAAIY,CAAa,EAAII,KACzBjB,EAAQQ,GAAyBN,EAAUE,CAAS,IACrD,KAAK,IAAIJ,CAAK,EAAI,EAElBC,EAAO,MACE,KAAK,IAAIY,CAAa,EAAIK,IACnClB,EAAQS,GAA0BP,EAAUE,CAAS,EACrDH,EAAO,QACE,KAAK,IAAIY,CAAa,EAAIM,IACnCnB,EAAQU,GAA2BR,EAAUE,CAAS,EACtDH,EAAO,SACE,KAAK,IAAIY,CAAa,EAAIO,GAC/BT,GAA6BT,EAAUE,CAAS,EAAI,GAEtDJ,EAAQW,GAA6BT,EAAUE,CAAS,EACxDH,EAAO,YAEPD,EAAQY,GAA0BV,EAAUE,CAAS,EACrDH,EAAO,SAGTD,EAAQY,GAA0BV,EAAUE,CAAS,EACrDH,EAAO,OAEX,CA4BA,OANY,IAAI,KAAK,mBAAmBF,GAAS,OAAQ,CACvD,cAAeA,GAAS,cACxB,QAASA,GAAS,SAAW,OAC7B,MAAOA,GAAS,KAClB,CAAC,EAEU,OAAOC,EAAOC,CAAI,CAC/B,CC5KO,SAASoB,GAAUC,EAAUC,EAAa,CAC/C,IAAMC,EACJD,aAAuB,KACnBE,EAAcF,EAAa,CAAC,EAC5B,IAAIA,EAAY,CAAC,EACvB,OAAAC,EAAK,YACHF,EAAS,YAAY,EACrBA,EAAS,SAAS,EAClBA,EAAS,QAAQ,CACnB,EACAE,EAAK,SACHF,EAAS,SAAS,EAClBA,EAAS,WAAW,EACpBA,EAAS,WAAW,EACpBA,EAAS,gBAAgB,CAC3B,EACOE,CACT,CC5CA,IAAME,GAAyB,GAElBC,GAAN,KAAa,CAClB,YAAc,EAEd,SAASC,EAAUC,EAAU,CAC3B,MAAO,EACT,CACF,EAEaC,GAAN,cAA0BH,EAAO,CACtC,YACEI,EAEAC,EAEAC,EAEAC,EACAC,EACA,CACA,MAAM,EACN,KAAK,MAAQJ,EACb,KAAK,cAAgBC,EACrB,KAAK,SAAWC,EAChB,KAAK,SAAWC,EACZC,IACF,KAAK,YAAcA,EAEvB,CAEA,SAASC,EAAMC,EAAS,CACtB,OAAO,KAAK,cAAcD,EAAM,KAAK,MAAOC,CAAO,CACrD,CAEA,IAAID,EAAME,EAAOD,EAAS,CACxB,OAAO,KAAK,SAASD,EAAME,EAAO,KAAK,MAAOD,CAAO,CACvD,CACF,EAEaE,GAAN,cAAyCZ,EAAO,CACrD,SAAWD,GACX,YAAc,GACd,IAAIU,EAAME,EAAO,CACf,OAAIA,EAAM,eAAuBF,EAC1BI,EAAcJ,EAAMK,GAAUL,EAAM,IAAI,CAAC,CAClD,CACF,EChDO,IAAMM,EAAN,KAAa,CAClB,IAAIC,EAAYC,EAAOC,EAAOC,EAAS,CACrC,IAAMC,EAAS,KAAK,MAAMJ,EAAYC,EAAOC,EAAOC,CAAO,EAC3D,OAAKC,EAIE,CACL,OAAQ,IAAIC,GACVD,EAAO,MACP,KAAK,SACL,KAAK,IACL,KAAK,SACL,KAAK,WACP,EACA,KAAMA,EAAO,IACf,EAZS,IAaX,CAEA,SAASE,EAAUC,EAAQC,EAAU,CACnC,MAAO,EACT,CACF,ECtBO,IAAMC,GAAN,cAAwBC,CAAO,CACpC,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CAEb,IAAK,IACL,IAAK,KACL,IAAK,MACH,OACEC,EAAM,IAAIF,EAAY,CAAE,MAAO,aAAc,CAAC,GAC9CE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,CAAC,EAI7C,IAAK,QACH,OAAOE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,CAAC,EAElD,IAAK,OACL,QACE,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,MAAO,CAAC,GACvCE,EAAM,IAAIF,EAAY,CAAE,MAAO,aAAc,CAAC,GAC9CE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,CAAC,CAE/C,CACF,CAEA,IAAIG,EAAMC,EAAOC,EAAO,CACtB,OAAAD,EAAM,IAAMC,EACZF,EAAK,YAAYE,EAAO,EAAG,CAAC,EAC5BF,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,GAAG,CAC1C,ECtCO,IAAMG,EAAkB,CAC7B,MAAO,iBACP,KAAM,qBACN,UAAW,kCACX,KAAM,qBACN,QAAS,qBACT,QAAS,qBACT,QAAS,iBACT,QAAS,iBACT,OAAQ,YACR,OAAQ,YAER,YAAa,MACb,UAAW,WACX,YAAa,WACb,WAAY,WAEZ,gBAAiB,SACjB,kBAAmB,QACnB,gBAAiB,aACjB,kBAAmB,aACnB,iBAAkB,YACpB,EAEaC,EAAmB,CAC9B,qBAAsB,2BACtB,MAAO,0BACP,qBAAsB,oCACtB,SAAU,2BACV,wBAAyB,qCAC3B,ECvBO,SAASC,EAASC,EAAeC,EAAO,CAC7C,OAAKD,GAIE,CACL,MAAOC,EAAMD,EAAc,KAAK,EAChC,KAAMA,EAAc,IACtB,CACF,CAEO,SAASE,EAAoBC,EAASC,EAAY,CACvD,IAAMC,EAAcD,EAAW,MAAMD,CAAO,EAE5C,OAAKE,EAIE,CACL,MAAO,SAASA,EAAY,CAAC,EAAG,EAAE,EAClC,KAAMD,EAAW,MAAMC,EAAY,CAAC,EAAE,MAAM,CAC9C,EANS,IAOX,CAEO,SAASC,EAAqBH,EAASC,EAAY,CACxD,IAAMC,EAAcD,EAAW,MAAMD,CAAO,EAE5C,GAAI,CAACE,EACH,OAAO,KAIT,GAAIA,EAAY,CAAC,IAAM,IACrB,MAAO,CACL,MAAO,EACP,KAAMD,EAAW,MAAM,CAAC,CAC1B,EAGF,IAAMG,EAAOF,EAAY,CAAC,IAAM,IAAM,EAAI,GACpCG,EAAQH,EAAY,CAAC,EAAI,SAASA,EAAY,CAAC,EAAG,EAAE,EAAI,EACxDI,EAAUJ,EAAY,CAAC,EAAI,SAASA,EAAY,CAAC,EAAG,EAAE,EAAI,EAC1DK,EAAUL,EAAY,CAAC,EAAI,SAASA,EAAY,CAAC,EAAG,EAAE,EAAI,EAEhE,MAAO,CACL,MACEE,GACCC,EAAQG,EACPF,EAAUG,EACVF,EAAUG,IACd,KAAMT,EAAW,MAAMC,EAAY,CAAC,EAAE,MAAM,CAC9C,CACF,CAEO,SAASS,GAAqBV,EAAY,CAC/C,OAAOF,EAAoBa,EAAgB,gBAAiBX,CAAU,CACxE,CAEO,SAASY,EAAa,EAAGZ,EAAY,CAC1C,OAAQ,EAAG,CACT,IAAK,GACH,OAAOF,EAAoBa,EAAgB,YAAaX,CAAU,EACpE,IAAK,GACH,OAAOF,EAAoBa,EAAgB,UAAWX,CAAU,EAClE,IAAK,GACH,OAAOF,EAAoBa,EAAgB,YAAaX,CAAU,EACpE,IAAK,GACH,OAAOF,EAAoBa,EAAgB,WAAYX,CAAU,EACnE,QACE,OAAOF,EAAoB,IAAI,OAAO,UAAY,EAAI,GAAG,EAAGE,CAAU,CAC1E,CACF,CAEO,SAASa,EAAmB,EAAGb,EAAY,CAChD,OAAQ,EAAG,CACT,IAAK,GACH,OAAOF,EAAoBa,EAAgB,kBAAmBX,CAAU,EAC1E,IAAK,GACH,OAAOF,EAAoBa,EAAgB,gBAAiBX,CAAU,EACxE,IAAK,GACH,OAAOF,EAAoBa,EAAgB,kBAAmBX,CAAU,EAC1E,IAAK,GACH,OAAOF,EAAoBa,EAAgB,iBAAkBX,CAAU,EACzE,QACE,OAAOF,EAAoB,IAAI,OAAO,YAAc,EAAI,GAAG,EAAGE,CAAU,CAC5E,CACF,CAEO,SAASc,EAAqBC,EAAW,CAC9C,OAAQA,EAAW,CACjB,IAAK,UACH,MAAO,GACT,IAAK,UACH,MAAO,IACT,IAAK,KACL,IAAK,OACL,IAAK,YACH,MAAO,IACT,IAAK,KACL,IAAK,WACL,IAAK,QACL,QACE,MAAO,EACX,CACF,CAEO,SAASC,GAAsBC,EAAcC,EAAa,CAC/D,IAAMC,EAAcD,EAAc,EAK5BE,EAAiBD,EAAcD,EAAc,EAAIA,EAEnDG,EACJ,GAAID,GAAkB,GACpBC,EAASJ,GAAgB,QACpB,CACL,IAAMK,EAAWF,EAAiB,GAC5BG,EAAkB,KAAK,MAAMD,EAAW,GAAG,EAAI,IAC/CE,EAAoBP,GAAgBK,EAAW,IACrDD,EAASJ,EAAeM,GAAmBC,EAAoB,IAAM,EACvE,CAEA,OAAOL,EAAcE,EAAS,EAAIA,CACpC,CAEO,SAASI,GAAgBC,EAAM,CACpC,OAAOA,EAAO,MAAQ,GAAMA,EAAO,IAAM,GAAKA,EAAO,MAAQ,CAC/D,CC7HO,IAAMC,GAAN,cAAyBC,CAAO,CACrC,SAAW,IACX,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,EAEtE,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,IAAMC,EAAiBC,IAAU,CAC/B,KAAAA,EACA,eAAgBH,IAAU,IAC5B,GAEA,OAAQA,EAAO,CACb,IAAK,IACH,OAAOI,EAASC,EAAa,EAAGN,CAAU,EAAGG,CAAa,EAC5D,IAAK,KACH,OAAOE,EACLH,EAAM,cAAcF,EAAY,CAC9B,KAAM,MACR,CAAC,EACDG,CACF,EACF,QACE,OAAOE,EAASC,EAAaL,EAAM,OAAQD,CAAU,EAAGG,CAAa,CACzE,CACF,CAEA,SAASI,EAAOC,EAAO,CACrB,OAAOA,EAAM,gBAAkBA,EAAM,KAAO,CAC9C,CAEA,IAAIC,EAAMC,EAAOF,EAAO,CACtB,IAAMG,EAAcF,EAAK,YAAY,EAErC,GAAID,EAAM,eAAgB,CACxB,IAAMI,EAAyBC,GAC7BL,EAAM,KACNG,CACF,EACA,OAAAF,EAAK,YAAYG,EAAwB,EAAG,CAAC,EAC7CH,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,IAAML,EACJ,EAAE,QAASM,IAAUA,EAAM,MAAQ,EAAIF,EAAM,KAAO,EAAIA,EAAM,KAChE,OAAAC,EAAK,YAAYL,EAAM,EAAG,CAAC,EAC3BK,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CACF,ECrDO,IAAMK,GAAN,cAAkCC,CAAO,CAC9C,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,IAAMC,EAAiBC,IAAU,CAC/B,KAAAA,EACA,eAAgBH,IAAU,IAC5B,GAEA,OAAQA,EAAO,CACb,IAAK,IACH,OAAOI,EAASC,EAAa,EAAGN,CAAU,EAAGG,CAAa,EAC5D,IAAK,KACH,OAAOE,EACLH,EAAM,cAAcF,EAAY,CAC9B,KAAM,MACR,CAAC,EACDG,CACF,EACF,QACE,OAAOE,EAASC,EAAaL,EAAM,OAAQD,CAAU,EAAGG,CAAa,CACzE,CACF,CAEA,SAASI,EAAOC,EAAO,CACrB,OAAOA,EAAM,gBAAkBA,EAAM,KAAO,CAC9C,CAEA,IAAIC,EAAMC,EAAOF,EAAOG,EAAS,CAC/B,IAAMC,EAAcC,GAAYJ,EAAME,CAAO,EAE7C,GAAIH,EAAM,eAAgB,CACxB,IAAMM,EAAyBC,GAC7BP,EAAM,KACNI,CACF,EACA,OAAAH,EAAK,YACHK,EACA,EACAH,EAAQ,qBACV,EACAF,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBO,EAAYP,EAAME,CAAO,CAClC,CAEA,IAAMP,EACJ,EAAE,QAASM,IAAUA,EAAM,MAAQ,EAAIF,EAAM,KAAO,EAAIA,EAAM,KAChE,OAAAC,EAAK,YAAYL,EAAM,EAAGO,EAAQ,qBAAqB,EACvDF,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBO,EAAYP,EAAME,CAAO,CAClC,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECnEO,IAAMM,GAAN,cAAgCC,CAAO,CAC5C,SAAW,IAEX,MAAMC,EAAYC,EAAO,CACvB,OAAIA,IAAU,IACLC,EAAmB,EAAGF,CAAU,EAGlCE,EAAmBD,EAAM,OAAQD,CAAU,CACpD,CAEA,IAAIG,EAAMC,EAAQC,EAAO,CACvB,IAAMC,EAAkBC,EAAcJ,EAAM,CAAC,EAC7C,OAAAG,EAAgB,YAAYD,EAAO,EAAG,CAAC,EACvCC,EAAgB,SAAS,EAAG,EAAG,EAAG,CAAC,EAC5BE,EAAeF,CAAe,CACvC,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECtCO,IAAMG,GAAN,cAAiCC,CAAO,CAC7C,SAAW,IAEX,MAAMC,EAAYC,EAAO,CACvB,OAAIA,IAAU,IACLC,EAAmB,EAAGF,CAAU,EAGlCE,EAAmBD,EAAM,OAAQD,CAAU,CACpD,CAEA,IAAIG,EAAMC,EAAQC,EAAO,CACvB,OAAAF,EAAK,YAAYE,EAAO,EAAG,CAAC,EAC5BF,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,CAC7E,EClBO,IAAMG,GAAN,cAA4BC,CAAO,CACxC,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CAEb,IAAK,IACL,IAAK,KACH,OAAOE,EAAaF,EAAM,OAAQD,CAAU,EAE9C,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,SAAU,CAAC,EAE5D,IAAK,MACH,OACEE,EAAM,QAAQF,EAAY,CACxB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,QAAQF,EAAY,CACxB,MAAO,SACP,QAAS,YACX,CAAC,EAIL,IAAK,QACH,OAAOE,EAAM,QAAQF,EAAY,CAC/B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,OACL,QACE,OACEE,EAAM,QAAQF,EAAY,CACxB,MAAO,OACP,QAAS,YACX,CAAC,GACDE,EAAM,QAAQF,EAAY,CACxB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,QAAQF,EAAY,CACxB,MAAO,SACP,QAAS,YACX,CAAC,CAEP,CACF,CAEA,SAASI,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,CAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,OAAAC,EAAK,UAAUD,EAAQ,GAAK,EAAG,CAAC,EAChCC,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,EC7EO,IAAME,GAAN,cAAsCC,CAAO,CAClD,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CAEb,IAAK,IACL,IAAK,KACH,OAAOE,EAAaF,EAAM,OAAQD,CAAU,EAE9C,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,SAAU,CAAC,EAE5D,IAAK,MACH,OACEE,EAAM,QAAQF,EAAY,CACxB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,QAAQF,EAAY,CACxB,MAAO,SACP,QAAS,YACX,CAAC,EAIL,IAAK,QACH,OAAOE,EAAM,QAAQF,EAAY,CAC/B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,OACL,QACE,OACEE,EAAM,QAAQF,EAAY,CACxB,MAAO,OACP,QAAS,YACX,CAAC,GACDE,EAAM,QAAQF,EAAY,CACxB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,QAAQF,EAAY,CACxB,MAAO,SACP,QAAS,YACX,CAAC,CAEP,CACF,CAEA,SAASI,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,CAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,OAAAC,EAAK,UAAUD,EAAQ,GAAK,EAAG,CAAC,EAChCC,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,EC5EO,IAAME,GAAN,cAA0BC,CAAO,CACtC,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,EAEA,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,IAAMC,EAAiBC,GAAUA,EAAQ,EAEzC,OAAQH,EAAO,CAEb,IAAK,IACH,OAAOI,EACLC,EAAoBC,EAAgB,MAAOP,CAAU,EACrDG,CACF,EAEF,IAAK,KACH,OAAOE,EAASG,EAAa,EAAGR,CAAU,EAAGG,CAAa,EAE5D,IAAK,KACH,OAAOE,EACLH,EAAM,cAAcF,EAAY,CAC9B,KAAM,OACR,CAAC,EACDG,CACF,EAEF,IAAK,MACH,OACED,EAAM,MAAMF,EAAY,CACtB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,MAAMF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAItE,IAAK,QACH,OAAOE,EAAM,MAAMF,EAAY,CAC7B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,OACL,QACE,OACEE,EAAM,MAAMF,EAAY,CAAE,MAAO,OAAQ,QAAS,YAAa,CAAC,GAChEE,EAAM,MAAMF,EAAY,CACtB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,MAAMF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,CAExE,CACF,CAEA,SAASS,EAAOL,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIM,EAAMC,EAAQP,EAAO,CACvB,OAAAM,EAAK,SAASN,EAAO,CAAC,EACtBM,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CACF,EC/EO,IAAME,GAAN,cAAoCC,CAAO,CAChD,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,IAAMC,EAAiBC,GAAUA,EAAQ,EAEzC,OAAQH,EAAO,CAEb,IAAK,IACH,OAAOI,EACLC,EAAoBC,EAAgB,MAAOP,CAAU,EACrDG,CACF,EAEF,IAAK,KACH,OAAOE,EAASG,EAAa,EAAGR,CAAU,EAAGG,CAAa,EAE5D,IAAK,KACH,OAAOE,EACLH,EAAM,cAAcF,EAAY,CAC9B,KAAM,OACR,CAAC,EACDG,CACF,EAEF,IAAK,MACH,OACED,EAAM,MAAMF,EAAY,CACtB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,MAAMF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAItE,IAAK,QACH,OAAOE,EAAM,MAAMF,EAAY,CAC7B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,OACL,QACE,OACEE,EAAM,MAAMF,EAAY,CAAE,MAAO,OAAQ,QAAS,YAAa,CAAC,GAChEE,EAAM,MAAMF,EAAY,CACtB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,MAAMF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,CAExE,CACF,CAEA,SAASS,EAAOL,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIM,EAAMC,EAAQP,EAAO,CACvB,OAAAM,EAAK,SAASN,EAAO,CAAC,EACtBM,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECvCO,SAASE,GAAQC,EAAMC,EAAMC,EAAS,CAC3C,IAAMC,EAAQC,EAAOJ,CAAI,EACnBK,EAAOC,GAAQH,EAAOD,CAAO,EAAID,EACvC,OAAAE,EAAM,QAAQA,EAAM,QAAQ,EAAIE,EAAO,CAAC,EACjCF,CACT,CC1CO,IAAMI,GAAN,cAA8BC,CAAO,CAC1C,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,KAAMJ,CAAU,EAC7D,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAOG,EAAS,CAChC,OAAOC,EAAYC,GAAQJ,EAAMD,EAAOG,CAAO,EAAGA,CAAO,CAC3D,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECnBO,SAASG,GAAWC,EAAMC,EAAM,CACrC,IAAMC,EAAQC,EAAOH,CAAI,EACnBI,EAAOC,GAAWH,CAAK,EAAID,EACjC,OAAAC,EAAM,QAAQA,EAAM,QAAQ,EAAIE,EAAO,CAAC,EACjCF,CACT,CCvBO,IAAMI,GAAN,cAA4BC,CAAO,CACxC,SAAW,IAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,KAAMJ,CAAU,EAC7D,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,OAAOG,EAAeC,GAAWH,EAAMD,CAAK,CAAC,CAC/C,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECrCA,IAAMK,GAAgB,CAAC,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,EAAE,EAC/DC,GAA0B,CAC9B,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,EAC9C,EAGaC,GAAN,cAAyBC,CAAO,CACrC,SAAW,GACX,YAAc,EAEd,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,KAAMJ,CAAU,EAC7D,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAMC,EAAO,CACpB,IAAMC,EAAOF,EAAK,YAAY,EACxBG,EAAaC,GAAgBF,CAAI,EACjCG,EAAQL,EAAK,SAAS,EAC5B,OAAIG,EACKF,GAAS,GAAKA,GAASV,GAAwBc,CAAK,EAEpDJ,GAAS,GAAKA,GAASX,GAAce,CAAK,CAErD,CAEA,IAAIL,EAAMM,EAAQL,EAAO,CACvB,OAAAD,EAAK,QAAQC,CAAK,EAClBD,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECpDO,IAAMO,GAAN,cAA8BC,CAAO,CAC1C,SAAW,GAEX,YAAc,EAEd,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACL,IAAK,KACH,OAAOE,EAAoBC,EAAgB,UAAWJ,CAAU,EAClE,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAMC,EAAO,CACpB,IAAMC,EAAOF,EAAK,YAAY,EAE9B,OADmBG,GAAgBD,CAAI,EAE9BD,GAAS,GAAKA,GAAS,IAEvBA,GAAS,GAAKA,GAAS,GAElC,CAEA,IAAID,EAAMI,EAAQH,EAAO,CACvB,OAAAD,EAAK,SAAS,EAAGC,CAAK,EACtBD,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECxBO,SAASK,EAAOC,EAAMC,EAAKC,EAAS,CACzC,IAAMC,EAAiBC,EAAkB,EACnCC,EACJH,GAAS,cACTA,GAAS,QAAQ,SAAS,cAC1BC,EAAe,cACfA,EAAe,QAAQ,SAAS,cAChC,EAEIG,EAAQC,EAAOP,CAAI,EACnBQ,EAAaF,EAAM,OAAO,EAG1BG,GADYR,EAAM,EACM,GAAK,EAE7BS,EAAQ,EAAIL,EACZM,EACJV,EAAM,GAAKA,EAAM,EACbA,GAAQO,EAAaE,GAAS,GAC5BD,EAAWC,GAAS,GAAOF,EAAaE,GAAS,EACzD,OAAOE,GAAQN,EAAOK,CAAI,CAC5B,CCnDO,IAAME,GAAN,cAAwBC,CAAO,CACpC,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CAEb,IAAK,IACL,IAAK,KACL,IAAK,MACH,OACEC,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAIpE,IAAK,QACH,OAAOE,EAAM,IAAIF,EAAY,CAC3B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,SACH,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAIpE,IAAK,OACL,QACE,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,OAAQ,QAAS,YAAa,CAAC,GAC9DE,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,CAEtE,CACF,CAEA,SAASG,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,CAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAOG,EAAS,CAChC,OAAAF,EAAOG,EAAOH,EAAMD,EAAOG,CAAO,EAClCF,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,CACpD,ECxDO,IAAMI,GAAN,cAA6BC,CAAO,CACzC,SAAW,GACX,MAAMC,EAAYC,EAAOC,EAAOC,EAAS,CACvC,IAAMC,EAAiBC,GAAU,CAC/B,IAAMC,EAAgB,KAAK,OAAOD,EAAQ,GAAK,CAAC,EAAI,EACpD,OAASA,EAAQF,EAAQ,aAAe,GAAK,EAAKG,CACpD,EAEA,OAAQL,EAAO,CAEb,IAAK,IACL,IAAK,KACH,OAAOM,EAASC,EAAaP,EAAM,OAAQD,CAAU,EAAGI,CAAa,EAEvE,IAAK,KACH,OAAOG,EACLL,EAAM,cAAcF,EAAY,CAC9B,KAAM,KACR,CAAC,EACDI,CACF,EAEF,IAAK,MACH,OACEF,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAIpE,IAAK,QACH,OAAOE,EAAM,IAAIF,EAAY,CAC3B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,SACH,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAIpE,IAAK,OACL,QACE,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,OAAQ,QAAS,YAAa,CAAC,GAC9DE,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,CAEtE,CACF,CAEA,SAASS,EAAOJ,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,CAChC,CAEA,IAAIK,EAAMC,EAAQN,EAAOF,EAAS,CAChC,OAAAO,EAAOE,EAAOF,EAAML,EAAOF,CAAO,EAClCO,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECvFO,IAAMG,GAAN,cAAuCC,CAAO,CACnD,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAOC,EAAS,CACvC,IAAMC,EAAiBC,GAAU,CAC/B,IAAMC,EAAgB,KAAK,OAAOD,EAAQ,GAAK,CAAC,EAAI,EACpD,OAASA,EAAQF,EAAQ,aAAe,GAAK,EAAKG,CACpD,EAEA,OAAQL,EAAO,CAEb,IAAK,IACL,IAAK,KACH,OAAOM,EAASC,EAAaP,EAAM,OAAQD,CAAU,EAAGI,CAAa,EAEvE,IAAK,KACH,OAAOG,EACLL,EAAM,cAAcF,EAAY,CAC9B,KAAM,KACR,CAAC,EACDI,CACF,EAEF,IAAK,MACH,OACEF,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAIpE,IAAK,QACH,OAAOE,EAAM,IAAIF,EAAY,CAC3B,MAAO,SACP,QAAS,YACX,CAAC,EAEH,IAAK,SACH,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,EAIpE,IAAK,OACL,QACE,OACEE,EAAM,IAAIF,EAAY,CAAE,MAAO,OAAQ,QAAS,YAAa,CAAC,GAC9DE,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CAAE,MAAO,QAAS,QAAS,YAAa,CAAC,GAC/DE,EAAM,IAAIF,EAAY,CAAE,MAAO,SAAU,QAAS,YAAa,CAAC,CAEtE,CACF,CAEA,SAASS,EAAOJ,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,CAChC,CAEA,IAAIK,EAAMC,EAAQN,EAAOF,EAAS,CAChC,OAAAO,EAAOE,EAAOF,EAAML,EAAOF,CAAO,EAClCO,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,ECnEO,SAASG,GAAUC,EAAMC,EAAK,CACnC,IAAMC,EAAQC,EAAOH,CAAI,EACnBI,EAAaC,GAAUH,CAAK,EAC5BI,EAAOL,EAAMG,EACnB,OAAOG,GAAQL,EAAOI,CAAI,CAC5B,CC1BO,IAAME,GAAN,cAA2BC,CAAO,CACvC,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,IAAMC,EAAiBC,GACjBA,IAAU,EACL,EAEFA,EAGT,OAAQH,EAAO,CAEb,IAAK,IACL,IAAK,KACH,OAAOI,EAAaJ,EAAM,OAAQD,CAAU,EAE9C,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,KAAM,CAAC,EAExD,IAAK,MACH,OAAOM,EACLJ,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACCE,EAAM,IAAIF,EAAY,CACpB,MAAO,QACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CACpB,MAAO,SACP,QAAS,YACX,CAAC,EACHG,CACF,EAEF,IAAK,QACH,OAAOG,EACLJ,EAAM,IAAIF,EAAY,CACpB,MAAO,SACP,QAAS,YACX,CAAC,EACDG,CACF,EAEF,IAAK,SACH,OAAOG,EACLJ,EAAM,IAAIF,EAAY,CACpB,MAAO,QACP,QAAS,YACX,CAAC,GACCE,EAAM,IAAIF,EAAY,CACpB,MAAO,SACP,QAAS,YACX,CAAC,EACHG,CACF,EAEF,IAAK,OACL,QACE,OAAOG,EACLJ,EAAM,IAAIF,EAAY,CACpB,MAAO,OACP,QAAS,YACX,CAAC,GACCE,EAAM,IAAIF,EAAY,CACpB,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CACpB,MAAO,QACP,QAAS,YACX,CAAC,GACDE,EAAM,IAAIF,EAAY,CACpB,MAAO,SACP,QAAS,YACX,CAAC,EACHG,CACF,CACJ,CACF,CAEA,SAASI,EAAOH,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,CAChC,CAEA,IAAII,EAAMC,EAAQL,EAAO,CACvB,OAAAI,EAAOE,GAAUF,EAAMJ,CAAK,EAC5BI,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CAEA,mBAAqB,CACnB,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACF,CACF,EChHO,IAAMG,GAAN,cAAyBC,CAAO,CACrC,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACL,IAAK,KACL,IAAK,MACH,OACEC,EAAM,UAAUF,EAAY,CAC1B,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,SACP,QAAS,YACX,CAAC,EAGL,IAAK,QACH,OAAOE,EAAM,UAAUF,EAAY,CACjC,MAAO,SACP,QAAS,YACX,CAAC,EACH,IAAK,OACL,QACE,OACEE,EAAM,UAAUF,EAAY,CAC1B,MAAO,OACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,SACP,QAAS,YACX,CAAC,CAEP,CACF,CAEA,IAAIG,EAAMC,EAAQC,EAAO,CACvB,OAAAF,EAAK,SAASG,EAAqBD,CAAK,EAAG,EAAG,EAAG,CAAC,EAC3CF,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,CACpD,ECjDO,IAAMI,GAAN,cAAiCC,CAAO,CAC7C,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACL,IAAK,KACL,IAAK,MACH,OACEC,EAAM,UAAUF,EAAY,CAC1B,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,SACP,QAAS,YACX,CAAC,EAGL,IAAK,QACH,OAAOE,EAAM,UAAUF,EAAY,CACjC,MAAO,SACP,QAAS,YACX,CAAC,EACH,IAAK,OACL,QACE,OACEE,EAAM,UAAUF,EAAY,CAC1B,MAAO,OACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,SACP,QAAS,YACX,CAAC,CAEP,CACF,CAEA,IAAIG,EAAMC,EAAQC,EAAO,CACvB,OAAAF,EAAK,SAASG,EAAqBD,CAAK,EAAG,EAAG,EAAG,CAAC,EAC3CF,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,CACpD,EChDO,IAAMI,GAAN,cAA8BC,CAAO,CAC1C,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACL,IAAK,KACL,IAAK,MACH,OACEC,EAAM,UAAUF,EAAY,CAC1B,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,SACP,QAAS,YACX,CAAC,EAGL,IAAK,QACH,OAAOE,EAAM,UAAUF,EAAY,CACjC,MAAO,SACP,QAAS,YACX,CAAC,EACH,IAAK,OACL,QACE,OACEE,EAAM,UAAUF,EAAY,CAC1B,MAAO,OACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,cACP,QAAS,YACX,CAAC,GACDE,EAAM,UAAUF,EAAY,CAC1B,MAAO,SACP,QAAS,YACX,CAAC,CAEP,CACF,CAEA,IAAIG,EAAMC,EAAQC,EAAO,CACvB,OAAAF,EAAK,SAASG,EAAqBD,CAAK,EAAG,EAAG,EAAG,CAAC,EAC3CF,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,GAAG,CAC1C,ECjDO,IAAMI,GAAN,cAA8BC,CAAO,CAC1C,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,QAASJ,CAAU,EAChE,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,IAAMG,EAAOF,EAAK,SAAS,GAAK,GAChC,OAAIE,GAAQH,EAAQ,GAClBC,EAAK,SAASD,EAAQ,GAAI,EAAG,EAAG,CAAC,EACxB,CAACG,GAAQH,IAAU,GAC5BC,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EAExBA,EAAK,SAASD,EAAO,EAAG,EAAG,CAAC,EAEvBC,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,GAAG,CAC/C,EC/BO,IAAMG,GAAN,cAA8BC,CAAO,CAC1C,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,QAASJ,CAAU,EAChE,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,OAAAC,EAAK,SAASD,EAAO,EAAG,EAAG,CAAC,EACrBC,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,CACzD,ECxBO,IAAME,GAAN,cAA8BC,CAAO,CAC1C,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,QAASJ,CAAU,EAChE,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CAEvB,OADaC,EAAK,SAAS,GAAK,IACpBD,EAAQ,GAClBC,EAAK,SAASD,EAAQ,GAAI,EAAG,EAAG,CAAC,EAEjCC,EAAK,SAASD,EAAO,EAAG,EAAG,CAAC,EAEvBC,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,GAAG,CAC/C,EC7BO,IAAME,GAAN,cAA8BC,CAAO,CAC1C,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,QAASJ,CAAU,EAChE,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,MAAO,CAAC,EACzD,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,IAAMG,EAAQH,GAAS,GAAKA,EAAQ,GAAKA,EACzC,OAAAC,EAAK,SAASE,EAAO,EAAG,EAAG,CAAC,EACrBF,CACT,CAEA,mBAAqB,CAAC,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,GAAG,CACzD,ECzBO,IAAMG,GAAN,cAA2BC,CAAO,CACvC,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,OAAQJ,CAAU,EAC/D,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,QAAS,CAAC,EAC3D,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,OAAAC,EAAK,WAAWD,EAAO,EAAG,CAAC,EACpBC,CACT,CAEA,mBAAqB,CAAC,IAAK,GAAG,CAChC,ECxBO,IAAME,GAAN,cAA2BC,CAAO,CACvC,SAAW,GAEX,MAAMC,EAAYC,EAAOC,EAAO,CAC9B,OAAQD,EAAO,CACb,IAAK,IACH,OAAOE,EAAoBC,EAAgB,OAAQJ,CAAU,EAC/D,IAAK,KACH,OAAOE,EAAM,cAAcF,EAAY,CAAE,KAAM,QAAS,CAAC,EAC3D,QACE,OAAOK,EAAaJ,EAAM,OAAQD,CAAU,CAChD,CACF,CAEA,SAASM,EAAOC,EAAO,CACrB,OAAOA,GAAS,GAAKA,GAAS,EAChC,CAEA,IAAIC,EAAMC,EAAQF,EAAO,CACvB,OAAAC,EAAK,WAAWD,EAAO,CAAC,EACjBC,CACT,CAEA,mBAAqB,CAAC,IAAK,GAAG,CAChC,ECzBO,IAAME,GAAN,cAAqCC,CAAO,CACjD,SAAW,GAEX,MAAMC,EAAYC,EAAO,CACvB,IAAMC,EAAiBC,GACrB,KAAK,MAAMA,EAAQ,KAAK,IAAI,GAAI,CAACF,EAAM,OAAS,CAAC,CAAC,EACpD,OAAOG,EAASC,EAAaJ,EAAM,OAAQD,CAAU,EAAGE,CAAa,CACvE,CAEA,IAAII,EAAMC,EAAQJ,EAAO,CACvB,OAAAG,EAAK,gBAAgBH,CAAK,EACnBG,CACT,CAEA,mBAAqB,CAAC,IAAK,GAAG,CAChC,ECXO,IAAME,GAAN,cAAqCC,CAAO,CACjD,SAAW,GAEX,MAAMC,EAAYC,EAAO,CACvB,OAAQA,EAAO,CACb,IAAK,IACH,OAAOC,EACLC,EAAiB,qBACjBH,CACF,EACF,IAAK,KACH,OAAOE,EAAqBC,EAAiB,MAAOH,CAAU,EAChE,IAAK,OACH,OAAOE,EACLC,EAAiB,qBACjBH,CACF,EACF,IAAK,QACH,OAAOE,EACLC,EAAiB,wBACjBH,CACF,EACF,IAAK,MACL,QACE,OAAOE,EAAqBC,EAAiB,SAAUH,CAAU,CACrE,CACF,CAEA,IAAII,EAAMC,EAAOC,EAAO,CACtB,OAAID,EAAM,eAAuBD,EAC1BG,EACLH,EACAA,EAAK,QAAQ,EAAII,EAAgCJ,CAAI,EAAIE,CAC3D,CACF,CAEA,mBAAqB,CAAC,IAAK,IAAK,GAAG,CACrC,ECrCO,IAAMG,GAAN,cAAgCC,CAAO,CAC5C,SAAW,GAEX,MAAMC,EAAYC,EAAO,CACvB,OAAQA,EAAO,CACb,IAAK,IACH,OAAOC,EACLC,EAAiB,qBACjBH,CACF,EACF,IAAK,KACH,OAAOE,EAAqBC,EAAiB,MAAOH,CAAU,EAChE,IAAK,OACH,OAAOE,EACLC,EAAiB,qBACjBH,CACF,EACF,IAAK,QACH,OAAOE,EACLC,EAAiB,wBACjBH,CACF,EACF,IAAK,MACL,QACE,OAAOE,EAAqBC,EAAiB,SAAUH,CAAU,CACrE,CACF,CAEA,IAAII,EAAMC,EAAOC,EAAO,CACtB,OAAID,EAAM,eAAuBD,EAC1BG,EACLH,EACAA,EAAK,QAAQ,EAAII,EAAgCJ,CAAI,EAAIE,CAC3D,CACF,CAEA,mBAAqB,CAAC,IAAK,IAAK,GAAG,CACrC,ECxCO,IAAMG,GAAN,cAAqCC,CAAO,CACjD,SAAW,GAEX,MAAMC,EAAY,CAChB,OAAOC,GAAqBD,CAAU,CACxC,CAEA,IAAIE,EAAMC,EAAQC,EAAO,CACvB,MAAO,CAACC,EAAcH,EAAME,EAAQ,GAAI,EAAG,CAAE,eAAgB,EAAK,CAAC,CACrE,CAEA,mBAAqB,GACvB,ECZO,IAAME,GAAN,cAA0CC,CAAO,CACtD,SAAW,GAEX,MAAMC,EAAY,CAChB,OAAOC,GAAqBD,CAAU,CACxC,CAEA,IAAIE,EAAMC,EAAQC,EAAO,CACvB,MAAO,CAACC,EAAcH,EAAME,CAAK,EAAG,CAAE,eAAgB,EAAK,CAAC,CAC9D,CAEA,mBAAqB,GACvB,EC4DO,IAAME,GAAU,CACrB,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,GACP,EAAG,IAAIC,EACT,EChFA,IAAMC,GACJ,wDAIIC,GAA6B,oCAE7BC,GAAsB,eACtBC,GAAoB,MAEpBC,GAAsB,KACtBC,GAAgC,WA2S/B,SAASC,GAAMC,EAASC,EAAWC,EAAeC,EAAS,CAChE,IAAMC,EAAiBC,GAAkB,EACnCC,EAASH,GAAS,QAAUC,EAAe,QAAUG,GAErDC,EACJL,GAAS,uBACTA,GAAS,QAAQ,SAAS,uBAC1BC,EAAe,uBACfA,EAAe,QAAQ,SAAS,uBAChC,EAEIK,EACJN,GAAS,cACTA,GAAS,QAAQ,SAAS,cAC1BC,EAAe,cACfA,EAAe,QAAQ,SAAS,cAChC,EAEF,GAAIH,IAAc,GAChB,OAAID,IAAY,GACPU,EAAOR,CAAa,EAEpBS,EAAcT,EAAe,GAAG,EAI3C,IAAMU,EAAe,CACnB,sBAAAJ,EACA,aAAAC,EACA,OAAAH,CACF,EAGMO,EAAU,CAAC,IAAIC,EAA4B,EAE3CC,EAASd,EACZ,MAAMP,EAA0B,EAChC,IAAKsB,GAAc,CAClB,IAAMC,EAAiBD,EAAU,CAAC,EAClC,GAAIC,KAAkBC,GAAgB,CACpC,IAAMC,EAAgBD,GAAeD,CAAc,EACnD,OAAOE,EAAcH,EAAWV,EAAO,UAAU,CACnD,CACA,OAAOU,CACT,CAAC,EACA,KAAK,EAAE,EACP,MAAMvB,EAAsB,EAEzB2B,EAAa,CAAC,EAEpB,QAASC,KAASN,EAAQ,CAEtB,CAACZ,GAAS,6BACVmB,GAAyBD,CAAK,GAE9BE,GAA0BF,EAAOpB,EAAWD,CAAO,EAGnD,CAACG,GAAS,8BACVqB,GAA0BH,CAAK,GAE/BE,GAA0BF,EAAOpB,EAAWD,CAAO,EAGrD,IAAMiB,EAAiBI,EAAM,CAAC,EACxBI,EAASC,GAAQT,CAAc,EACrC,GAAIQ,EAAQ,CACV,GAAM,CAAE,mBAAAE,EAAmB,EAAIF,EAC/B,GAAI,MAAM,QAAQE,EAAkB,EAAG,CACrC,IAAMC,GAAoBR,EAAW,KAClCS,IACCF,GAAmB,SAASE,GAAU,KAAK,GAC3CA,GAAU,QAAUZ,CACxB,EACA,GAAIW,GACF,MAAM,IAAI,WACR,uCAAuCA,GAAkB,SAAS,YAAYP,CAAK,qBACrF,CAEJ,SAAWI,EAAO,qBAAuB,KAAOL,EAAW,OAAS,EAClE,MAAM,IAAI,WACR,uCAAuCC,CAAK,yCAC9C,EAGFD,EAAW,KAAK,CAAE,MAAOH,EAAgB,UAAWI,CAAM,CAAC,EAE3D,IAAMS,GAAcL,EAAO,IACzBzB,EACAqB,EACAf,EAAO,MACPM,CACF,EAEA,GAAI,CAACkB,GACH,OAAOnB,EAAcT,EAAe,GAAG,EAGzCW,EAAQ,KAAKiB,GAAY,MAAM,EAE/B9B,EAAU8B,GAAY,IACxB,KAAO,CACL,GAAIb,EAAe,MAAMnB,EAA6B,EACpD,MAAM,IAAI,WACR,iEACEmB,EACA,GACJ,EAWF,GAPII,IAAU,KACZA,EAAQ,IACCJ,IAAmB,MAC5BI,EAAQU,GAAmBV,CAAK,GAI9BrB,EAAQ,QAAQqB,CAAK,IAAM,EAC7BrB,EAAUA,EAAQ,MAAMqB,EAAM,MAAM,MAEpC,QAAOV,EAAcT,EAAe,GAAG,CAE3C,CACF,CAGA,GAAIF,EAAQ,OAAS,GAAKH,GAAoB,KAAKG,CAAO,EACxD,OAAOW,EAAcT,EAAe,GAAG,EAGzC,IAAM8B,GAAwBnB,EAC3B,IAAKoB,GAAWA,EAAO,QAAQ,EAC/B,KAAK,CAACC,EAAGC,IAAMA,EAAID,CAAC,EACpB,OAAO,CAACE,EAAUC,EAAOC,IAAUA,EAAM,QAAQF,CAAQ,IAAMC,CAAK,EACpE,IAAKD,GACJvB,EACG,OAAQoB,GAAWA,EAAO,WAAaG,CAAQ,EAC/C,KAAK,CAACF,EAAGC,IAAMA,EAAE,YAAcD,EAAE,WAAW,CACjD,EACC,IAAKK,GAAgBA,EAAY,CAAC,CAAC,EAElCC,EAAO9B,EAAOR,CAAa,EAE/B,GAAI,MAAMsC,EAAK,QAAQ,CAAC,EACtB,OAAO7B,EAAcT,EAAe,GAAG,EAGzC,IAAMuC,EAAQ,CAAC,EACf,QAAWR,KAAUD,GAAuB,CAC1C,GAAI,CAACC,EAAO,SAASO,EAAM5B,CAAY,EACrC,OAAOD,EAAcT,EAAe,GAAG,EAGzC,IAAMwC,EAAST,EAAO,IAAIO,EAAMC,EAAO7B,CAAY,EAE/C,MAAM,QAAQ8B,CAAM,GACtBF,EAAOE,EAAO,CAAC,EACf,OAAO,OAAOD,EAAOC,EAAO,CAAC,CAAC,GAG9BF,EAAOE,CAEX,CAEA,OAAO/B,EAAcT,EAAesC,CAAI,CAC1C,CAEA,SAAST,GAAmBY,EAAO,CACjC,OAAOA,EAAM,MAAMhD,EAAmB,EAAE,CAAC,EAAE,QAAQC,GAAmB,GAAG,CAC3E,CCtdO,SAASgD,GAASC,EAAUC,EAAS,CAC1C,IAAMC,EAAmBD,GAAS,kBAAoB,EAChDE,EAAcC,GAAgBJ,CAAQ,EAExCK,EACJ,GAAIF,EAAY,KAAM,CACpB,IAAMG,EAAkBC,GAAUJ,EAAY,KAAMD,CAAgB,EACpEG,EAAOG,GAAUF,EAAgB,eAAgBA,EAAgB,IAAI,CACvE,CAEA,GAAI,CAACD,GAAQ,MAAMA,EAAK,QAAQ,CAAC,EAC/B,OAAO,IAAI,KAAK,GAAG,EAGrB,IAAMI,EAAYJ,EAAK,QAAQ,EAC3BK,EAAO,EACPC,EAEJ,GAAIR,EAAY,OACdO,EAAOE,GAAUT,EAAY,IAAI,EAC7B,MAAMO,CAAI,GACZ,OAAO,IAAI,KAAK,GAAG,EAIvB,GAAIP,EAAY,UAEd,GADAQ,EAASE,GAAcV,EAAY,QAAQ,EACvC,MAAMQ,CAAM,EACd,OAAO,IAAI,KAAK,GAAG,MAEhB,CACL,IAAMG,EAAY,IAAI,KAAKL,EAAYC,CAAI,EAMrCK,EAAS,IAAI,KAAK,CAAC,EACzB,OAAAA,EAAO,YACLD,EAAU,eAAe,EACzBA,EAAU,YAAY,EACtBA,EAAU,WAAW,CACvB,EACAC,EAAO,SACLD,EAAU,YAAY,EACtBA,EAAU,cAAc,EACxBA,EAAU,cAAc,EACxBA,EAAU,mBAAmB,CAC/B,EACOC,CACT,CAEA,OAAO,IAAI,KAAKN,EAAYC,EAAOC,CAAM,CAC3C,CAEA,IAAMK,GAAW,CACf,kBAAmB,OACnB,kBAAmB,QACnB,SAAU,YACZ,EAEMC,GACJ,gEACIC,GACJ,4EACIC,GAAgB,gCAEtB,SAASf,GAAgBgB,EAAY,CACnC,IAAMjB,EAAc,CAAC,EACfkB,EAAQD,EAAW,MAAMJ,GAAS,iBAAiB,EACrDM,EAIJ,GAAID,EAAM,OAAS,EACjB,OAAOlB,EAiBT,GAdI,IAAI,KAAKkB,EAAM,CAAC,CAAC,EACnBC,EAAaD,EAAM,CAAC,GAEpBlB,EAAY,KAAOkB,EAAM,CAAC,EAC1BC,EAAaD,EAAM,CAAC,EAChBL,GAAS,kBAAkB,KAAKb,EAAY,IAAI,IAClDA,EAAY,KAAOiB,EAAW,MAAMJ,GAAS,iBAAiB,EAAE,CAAC,EACjEM,EAAaF,EAAW,OACtBjB,EAAY,KAAK,OACjBiB,EAAW,MACb,IAIAE,EAAY,CACd,IAAMC,EAAQP,GAAS,SAAS,KAAKM,CAAU,EAC3CC,GACFpB,EAAY,KAAOmB,EAAW,QAAQC,EAAM,CAAC,EAAG,EAAE,EAClDpB,EAAY,SAAWoB,EAAM,CAAC,GAE9BpB,EAAY,KAAOmB,CAEvB,CAEA,OAAOnB,CACT,CAEA,SAASI,GAAUa,EAAYlB,EAAkB,CAC/C,IAAMsB,EAAQ,IAAI,OAChB,wBACG,EAAItB,GACL,uBACC,EAAIA,GACL,MACJ,EAEMuB,EAAWL,EAAW,MAAMI,CAAK,EAEvC,GAAI,CAACC,EAAU,MAAO,CAAE,KAAM,IAAK,eAAgB,EAAG,EAEtD,IAAMC,EAAOD,EAAS,CAAC,EAAI,SAASA,EAAS,CAAC,CAAC,EAAI,KAC7CE,EAAUF,EAAS,CAAC,EAAI,SAASA,EAAS,CAAC,CAAC,EAAI,KAGtD,MAAO,CACL,KAAME,IAAY,KAAOD,EAAOC,EAAU,IAC1C,eAAgBP,EAAW,OAAOK,EAAS,CAAC,GAAKA,EAAS,CAAC,GAAG,MAAM,CACtE,CACF,CAEA,SAASjB,GAAUY,EAAYM,EAAM,CAEnC,GAAIA,IAAS,KAAM,OAAO,IAAI,KAAK,GAAG,EAEtC,IAAMD,EAAWL,EAAW,MAAMH,EAAS,EAE3C,GAAI,CAACQ,EAAU,OAAO,IAAI,KAAK,GAAG,EAElC,IAAMG,EAAa,CAAC,CAACH,EAAS,CAAC,EACzBI,EAAYC,GAAcL,EAAS,CAAC,CAAC,EACrCM,EAAQD,GAAcL,EAAS,CAAC,CAAC,EAAI,EACrCO,EAAMF,GAAcL,EAAS,CAAC,CAAC,EAC/BQ,EAAOH,GAAcL,EAAS,CAAC,CAAC,EAChCS,EAAYJ,GAAcL,EAAS,CAAC,CAAC,EAAI,EAE/C,GAAIG,EACF,OAAKO,GAAiBT,EAAMO,EAAMC,CAAS,EAGpCE,GAAiBV,EAAMO,EAAMC,CAAS,EAFpC,IAAI,KAAK,GAAG,EAGhB,CACL,IAAM7B,EAAO,IAAI,KAAK,CAAC,EACvB,MACE,CAACgC,GAAaX,EAAMK,EAAOC,CAAG,GAC9B,CAACM,GAAsBZ,EAAMG,CAAS,EAE/B,IAAI,KAAK,GAAG,GAErBxB,EAAK,eAAeqB,EAAMK,EAAO,KAAK,IAAIF,EAAWG,CAAG,CAAC,EAClD3B,EACT,CACF,CAEA,SAASyB,GAAcS,EAAO,CAC5B,OAAOA,EAAQ,SAASA,CAAK,EAAI,CACnC,CAEA,SAAS3B,GAAUU,EAAY,CAC7B,IAAMG,EAAWH,EAAW,MAAMJ,EAAS,EAC3C,GAAI,CAACO,EAAU,MAAO,KAEtB,IAAMe,EAAQC,GAAchB,EAAS,CAAC,CAAC,EACjCiB,EAAUD,GAAchB,EAAS,CAAC,CAAC,EACnCkB,EAAUF,GAAchB,EAAS,CAAC,CAAC,EAEzC,OAAKmB,GAAaJ,EAAOE,EAASC,CAAO,EAKvCH,EAAQK,EAAqBH,EAAUI,EAAuBH,EAAU,IAJjE,GAMX,CAEA,SAASF,GAAcF,EAAO,CAC5B,OAAQA,GAAS,WAAWA,EAAM,QAAQ,IAAK,GAAG,CAAC,GAAM,CAC3D,CAEA,SAAS1B,GAAckC,EAAgB,CACrC,GAAIA,IAAmB,IAAK,MAAO,GAEnC,IAAMtB,EAAWsB,EAAe,MAAM5B,EAAa,EACnD,GAAI,CAACM,EAAU,MAAO,GAEtB,IAAMuB,EAAOvB,EAAS,CAAC,IAAM,IAAM,GAAK,EAClCe,EAAQ,SAASf,EAAS,CAAC,CAAC,EAC5BiB,EAAWjB,EAAS,CAAC,GAAK,SAASA,EAAS,CAAC,CAAC,GAAM,EAE1D,OAAKwB,GAAiBT,EAAOE,CAAO,EAI7BM,GAAQR,EAAQK,EAAqBH,EAAUI,GAH7C,GAIX,CAEA,SAASV,GAAiBc,EAAajB,EAAMD,EAAK,CAChD,IAAM3B,EAAO,IAAI,KAAK,CAAC,EACvBA,EAAK,eAAe6C,EAAa,EAAG,CAAC,EACrC,IAAMC,EAAqB9C,EAAK,UAAU,GAAK,EACzC+C,GAAQnB,EAAO,GAAK,EAAID,EAAM,EAAImB,EACxC,OAAA9C,EAAK,WAAWA,EAAK,WAAW,EAAI+C,CAAI,EACjC/C,CACT,CAKA,IAAMgD,GAAe,CAAC,GAAI,KAAM,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,EAAE,EAEtE,SAASC,GAAgB5B,EAAM,CAC7B,OAAOA,EAAO,MAAQ,GAAMA,EAAO,IAAM,GAAKA,EAAO,MAAQ,CAC/D,CAEA,SAASW,GAAaX,EAAMK,EAAO1B,EAAM,CACvC,OACE0B,GAAS,GACTA,GAAS,IACT1B,GAAQ,GACRA,IAASgD,GAAatB,CAAK,IAAMuB,GAAgB5B,CAAI,EAAI,GAAK,IAElE,CAEA,SAASY,GAAsBZ,EAAMG,EAAW,CAC9C,OAAOA,GAAa,GAAKA,IAAcyB,GAAgB5B,CAAI,EAAI,IAAM,IACvE,CAEA,SAASS,GAAiBoB,EAAOtB,EAAMD,EAAK,CAC1C,OAAOC,GAAQ,GAAKA,GAAQ,IAAMD,GAAO,GAAKA,GAAO,CACvD,CAEA,SAASY,GAAaJ,EAAOE,EAASC,EAAS,CAC7C,OAAIH,IAAU,GACLE,IAAY,GAAKC,IAAY,EAIpCA,GAAW,GACXA,EAAU,IACVD,GAAW,GACXA,EAAU,IACVF,GAAS,GACTA,EAAQ,EAEZ,CAEA,SAASS,GAAiBO,EAAQd,EAAS,CACzC,OAAOA,GAAW,GAAKA,GAAW,EACpC,CC7QO,SAASe,GACdC,EAE2B,EAC3B,CACA,GAAM,CAACC,EAASC,CAAU,EAAIC,GAAa,IAAI,IAAM,EAE/CC,EAAiB,IAAM,CAC3B,OAAQ,OAAOJ,GAAc,WAAaA,EAAU,EAAIA,EAAW,CACjE,IAAK,GACH,MAAO,KACT,IAAK,GACH,MAAO,IAAK,IACd,IAAK,GACH,MAAO,IAAK,IACd,IAAK,GACH,MAAO,IAAK,GAAK,GACrB,CACF,EAEIK,EAEEC,EAAS,IAAMJ,EAAW,IAAI,IAAM,EAE1C,OAAAK,EAAmB,IAAM,CACnB,OAAOF,EAAO,MAChB,OAAO,cAAcA,CAAE,EACvBA,EAAK,QAGP,IAAMG,EAAWJ,EAAe,EAG5BK,EADQ,IAAI,KACkBC,GAAQT,CAAO,CAAC,GAAKO,GACrDF,EAAO,EAGTD,EAAK,OAAO,YAAYC,EAAQE,CAAQ,CAC1C,CAAC,EAEDG,GAAU,IAAM,CACV,OAAON,EAAO,MAChB,OAAO,cAAcA,CAAE,EACvBA,EAAK,OAET,CAAC,EAEMJ,CACT,CAMO,SAASW,GAAkBC,EAA6B,CAC7D,GAAM,CAACC,EAAsBC,CAAuB,EAAIZ,GAEtD,CAAC,EAAG,CAAE,OAAQ,EAAM,CAAC,EACjBH,EAAYgB,EAAW,IAAM,CACjC,IAAMC,EAAMH,EAAqB,EACjC,OAAIG,EAAI,OAAS,EACR,EAGFA,EAAI,OAAO,CAACC,EAAGC,IAAOD,EAAIC,EAAID,EAAIC,CAAE,CAC7C,CAAC,EACKC,EAAOrB,GAAeC,CAAS,EAC/BqB,EAAS,IAAI,KAEfC,EAAM,EACV,QAAWC,KAAKV,EAAU,CACxB,GAAI,EAAEU,aAAa,aAAc,CAC/B,QAAQ,KAAKA,EAAG,kDAAkD,EAClE,QACF,CAEA,IAAMC,EAAaD,EAAE,QAAQ,YAAc,MAC3C,GAAIC,IAAe,QACjB,SAGF,IAAMC,EAAIH,IACJI,EAAUH,EAAE,aAAa,UAAU,EAAIA,EAAE,aAAa,UAAU,EAAIA,EAAE,YACtEI,EACJH,IAAe,MACXI,GAASF,CAAO,EAChBG,GAAMH,EAASF,EAAYH,CAAM,EACvCE,EAAE,QAAQ,IAAMI,EAAQ,YAAY,EACpCJ,EAAE,QAAQ,WAAa,QAEvB,IAAMO,GAAqBd,EAAW,IAAM,CAC1C,IAAMe,EAAUC,EAAoBZ,EAAK,EAAGO,CAAO,EACnD,OAAII,EAAU,GACL,EACEA,EAAU,GAAK,GACjB,EACEA,EAAU,GAAK,GAAK,GACtB,EAEF,CACT,CAAC,EAEKE,EAAYjB,EAAW,IACvBkB,GAAUP,EAASP,EAAK,CAAC,EACpBe,GAAmBR,EAASP,EAAK,CAAC,EAEpCgB,GAAWT,CAAO,CAC1B,EAEDpB,EAAmB,IAAM,CAClBgB,EAAE,aAAa,UAAU,GAC5BA,EAAE,aAAa,WAAYI,EAAQ,YAAY,CAAC,CAEpD,CAAC,EAEDpB,EAAmB,IAAM,CACvBgB,EAAE,YAAcU,EAAU,CAC5B,CAAC,EAED1B,EAAmB,IAAM,CACvB,IAAMW,EAAIY,GAAmB,EAC7Bf,EAAyBsB,IACvBA,EAAEZ,CAAC,EAAIP,EACAmB,EACR,CACH,CAAC,CACH,CACF", - "names": ["equalFn", "a", "b", "$PROXY", "$TRACK", "$DEVCOMP", "signalOptions", "ERROR", "runEffects", "runQueue", "STALE", "PENDING", "UNOWNED", "Owner", "Transition", "Scheduler", "ExternalSourceConfig", "Listener", "Updates", "Effects", "ExecCount", "createRoot", "fn", "detachedOwner", "listener", "owner", "unowned", "current", "root", "UNOWNED", "updateFn", "untrack", "cleanNode", "runUpdates", "createSignal", "value", "options", "signalOptions", "s", "setter", "writeSignal", "readSignal", "createRenderEffect", "fn", "value", "options", "c", "createComputation", "STALE", "Scheduler", "Transition", "Updates", "updateComputation", "createMemo", "fn", "value", "options", "signalOptions", "c", "createComputation", "Scheduler", "Transition", "STALE", "Updates", "updateComputation", "readSignal", "untrack", "fn", "ExternalSourceConfig", "Listener", "listener", "onCleanup", "fn", "Owner", "startTransition", "fn", "Transition", "l", "Listener", "o", "Owner", "Scheduler", "SuspenseContext", "res", "runUpdates", "transPending", "setTransPending", "createSignal", "createContext", "defaultValue", "options", "id", "createProvider", "children", "fn", "createMemo", "memo", "resolveChildren", "c", "SuspenseContext", "readSignal", "runningTransition", "Transition", "STALE", "updateComputation", "updates", "Updates", "runUpdates", "lookUpstream", "Listener", "sSlot", "writeSignal", "node", "value", "isComp", "current", "TransitionRunning", "i", "o", "Effects", "markDownstream", "cleanNode", "time", "ExecCount", "runComputation", "Owner", "nextValue", "owner", "listener", "err", "handleError", "createComputation", "fn", "init", "pure", "state", "options", "c", "UNOWNED", "ExternalSourceConfig", "track", "trigger", "createSignal", "ordinary", "onCleanup", "triggerInTransition", "startTransition", "inTransition", "x", "runTop", "PENDING", "untrack", "ancestors", "top", "prev", "wait", "res", "completeUpdates", "Scheduler", "scheduleQueue", "runQueue", "sources", "disposed", "e", "d", "v", "len", "setTransPending", "runEffects", "queue", "item", "tasks", "lookUpstream", "node", "ignore", "runningTransition", "Transition", "i", "source", "state", "STALE", "ExecCount", "runTop", "PENDING", "markDownstream", "o", "Updates", "Effects", "cleanNode", "index", "obs", "n", "s", "reset", "top", "castError", "err", "runErrors", "fns", "owner", "f", "e", "handleError", "Owner", "ERROR", "error", "resolveChildren", "children", "results", "result", "createProvider", "id", "options", "props", "res", "createRenderEffect", "untrack", "FALLBACK", "SuspenseListContext", "createContext", "toDate", "argument", "argStr", "constructFrom", "date", "value", "addDays", "date", "amount", "_date", "toDate", "constructFrom", "maxTime", "minTime", "millisecondsInWeek", "millisecondsInDay", "millisecondsInMinute", "millisecondsInHour", "millisecondsInSecond", "secondsInHour", "secondsInMinute", "secondsInDay", "secondsInWeek", "secondsInYear", "secondsInMonth", "secondsInQuarter", "defaultOptions", "getDefaultOptions", "startOfWeek", "date", "options", "defaultOptions", "getDefaultOptions", "weekStartsOn", "_date", "toDate", "day", "diff", "startOfISOWeek", "date", "startOfWeek", "getISOWeekYear", "date", "_date", "toDate", "year", "fourthOfJanuaryOfNextYear", "constructFrom", "startOfNextYear", "startOfISOWeek", "fourthOfJanuaryOfThisYear", "startOfThisYear", "startOfDay", "date", "_date", "toDate", "getTimezoneOffsetInMilliseconds", "date", "utcDate", "differenceInCalendarDays", "dateLeft", "dateRight", "startOfDayLeft", "startOfDay", "startOfDayRight", "timestampLeft", "getTimezoneOffsetInMilliseconds", "timestampRight", "millisecondsInDay", "startOfISOWeekYear", "date", "year", "getISOWeekYear", "fourthOfJanuary", "constructFrom", "startOfISOWeek", "isSameDay", "dateLeft", "dateRight", "dateLeftStartOfDay", "startOfDay", "dateRightStartOfDay", "differenceInCalendarMonths", "dateLeft", "dateRight", "_dateLeft", "toDate", "_dateRight", "yearDiff", "monthDiff", "getQuarter", "date", "_date", "toDate", "differenceInCalendarQuarters", "dateLeft", "dateRight", "_dateLeft", "toDate", "_dateRight", "yearDiff", "quarterDiff", "getQuarter", "differenceInCalendarWeeks", "dateLeft", "dateRight", "options", "startOfWeekLeft", "startOfWeek", "startOfWeekRight", "timestampLeft", "getTimezoneOffsetInMilliseconds", "timestampRight", "millisecondsInWeek", "differenceInCalendarYears", "dateLeft", "dateRight", "_dateLeft", "toDate", "_dateRight", "differenceInMilliseconds", "dateLeft", "dateRight", "toDate", "getRoundingMethod", "method", "differenceInHours", "dateLeft", "dateRight", "options", "diff", "differenceInMilliseconds", "millisecondsInHour", "getRoundingMethod", "differenceInMinutes", "dateLeft", "dateRight", "options", "diff", "differenceInMilliseconds", "millisecondsInMinute", "getRoundingMethod", "differenceInSeconds", "dateLeft", "dateRight", "options", "diff", "differenceInMilliseconds", "getRoundingMethod", "formatDistanceLocale", "formatDistance", "token", "count", "options", "result", "tokenValue", "buildFormatLongFn", "args", "options", "width", "dateFormats", "timeFormats", "dateTimeFormats", "formatLong", "buildFormatLongFn", "formatRelativeLocale", "formatRelative", "token", "_date", "_baseDate", "_options", "buildLocalizeFn", "args", "value", "options", "context", "valuesArray", "defaultWidth", "width", "index", "eraValues", "quarterValues", "monthValues", "dayValues", "dayPeriodValues", "formattingDayPeriodValues", "ordinalNumber", "dirtyNumber", "_options", "number", "rem100", "localize", "buildLocalizeFn", "quarter", "buildMatchFn", "args", "string", "options", "width", "matchPattern", "matchResult", "matchedString", "parsePatterns", "key", "findIndex", "pattern", "findKey", "value", "rest", "object", "predicate", "array", "buildMatchPatternFn", "args", "string", "options", "matchResult", "matchedString", "parseResult", "value", "rest", "matchOrdinalNumberPattern", "parseOrdinalNumberPattern", "matchEraPatterns", "parseEraPatterns", "matchQuarterPatterns", "parseQuarterPatterns", "matchMonthPatterns", "parseMonthPatterns", "matchDayPatterns", "parseDayPatterns", "matchDayPeriodPatterns", "parseDayPeriodPatterns", "match", "buildMatchPatternFn", "value", "buildMatchFn", "index", "enUS", "formatDistance", "formatLong", "formatRelative", "localize", "match", "getISOWeek", "date", "_date", "toDate", "diff", "startOfISOWeek", "startOfISOWeekYear", "millisecondsInWeek", "getWeekYear", "date", "options", "_date", "toDate", "year", "defaultOptions", "getDefaultOptions", "firstWeekContainsDate", "firstWeekOfNextYear", "constructFrom", "startOfNextYear", "startOfWeek", "firstWeekOfThisYear", "startOfThisYear", "startOfWeekYear", "date", "options", "defaultOptions", "getDefaultOptions", "firstWeekContainsDate", "year", "getWeekYear", "firstWeek", "constructFrom", "startOfWeek", "getWeek", "date", "options", "_date", "toDate", "diff", "startOfWeek", "startOfWeekYear", "millisecondsInWeek", "dateLongFormatter", "pattern", "formatLong", "timeLongFormatter", "dateTimeLongFormatter", "matchResult", "datePattern", "timePattern", "dateTimeFormat", "longFormatters", "dayOfYearTokenRE", "weekYearTokenRE", "throwTokens", "isProtectedDayOfYearToken", "token", "isProtectedWeekYearToken", "warnOrThrowProtectedError", "format", "input", "_message", "message", "subject", "getDefaultOptions", "getISODay", "date", "day", "toDate", "intlFormat", "date", "formatOrLocale", "localeOptions", "formatOptions", "isFormatOptions", "toDate", "opts", "intlFormatDistance", "date", "baseDate", "options", "value", "unit", "dateLeft", "toDate", "dateRight", "differenceInSeconds", "differenceInMinutes", "differenceInHours", "differenceInCalendarDays", "differenceInCalendarWeeks", "differenceInCalendarMonths", "differenceInCalendarQuarters", "differenceInCalendarYears", "diffInSeconds", "secondsInMinute", "secondsInHour", "secondsInDay", "secondsInWeek", "secondsInMonth", "secondsInQuarter", "secondsInYear", "transpose", "fromDate", "constructor", "date", "constructFrom", "TIMEZONE_UNIT_PRIORITY", "Setter", "_utcDate", "_options", "ValueSetter", "value", "validateValue", "setValue", "priority", "subPriority", "date", "options", "flags", "DateToSystemTimezoneSetter", "constructFrom", "transpose", "Parser", "dateString", "token", "match", "options", "result", "ValueSetter", "_utcDate", "_value", "_options", "EraParser", "Parser", "dateString", "token", "match", "date", "flags", "value", "numericPatterns", "timezonePatterns", "mapValue", "parseFnResult", "mapFn", "parseNumericPattern", "pattern", "dateString", "matchResult", "parseTimezonePattern", "sign", "hours", "minutes", "seconds", "millisecondsInHour", "millisecondsInMinute", "millisecondsInSecond", "parseAnyDigitsSigned", "numericPatterns", "parseNDigits", "parseNDigitsSigned", "dayPeriodEnumToHours", "dayPeriod", "normalizeTwoDigitYear", "twoDigitYear", "currentYear", "isCommonEra", "absCurrentYear", "result", "rangeEnd", "rangeEndCentury", "isPreviousCentury", "isLeapYearIndex", "year", "YearParser", "Parser", "dateString", "token", "match", "valueCallback", "year", "mapValue", "parseNDigits", "_date", "value", "date", "flags", "currentYear", "normalizedTwoDigitYear", "normalizeTwoDigitYear", "LocalWeekYearParser", "Parser", "dateString", "token", "match", "valueCallback", "year", "mapValue", "parseNDigits", "_date", "value", "date", "flags", "options", "currentYear", "getWeekYear", "normalizedTwoDigitYear", "normalizeTwoDigitYear", "startOfWeek", "ISOWeekYearParser", "Parser", "dateString", "token", "parseNDigitsSigned", "date", "_flags", "value", "firstWeekOfYear", "constructFrom", "startOfISOWeek", "ExtendedYearParser", "Parser", "dateString", "token", "parseNDigitsSigned", "date", "_flags", "value", "QuarterParser", "Parser", "dateString", "token", "match", "parseNDigits", "_date", "value", "date", "_flags", "StandAloneQuarterParser", "Parser", "dateString", "token", "match", "parseNDigits", "_date", "value", "date", "_flags", "MonthParser", "Parser", "dateString", "token", "match", "valueCallback", "value", "mapValue", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "date", "_flags", "StandAloneMonthParser", "Parser", "dateString", "token", "match", "valueCallback", "value", "mapValue", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "date", "_flags", "setWeek", "date", "week", "options", "_date", "toDate", "diff", "getWeek", "LocalWeekParser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "options", "startOfWeek", "setWeek", "setISOWeek", "date", "week", "_date", "toDate", "diff", "getISOWeek", "ISOWeekParser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "startOfISOWeek", "setISOWeek", "DAYS_IN_MONTH", "DAYS_IN_MONTH_LEAP_YEAR", "DateParser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "date", "value", "year", "isLeapYear", "isLeapYearIndex", "month", "_flags", "DayOfYearParser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "date", "value", "year", "isLeapYearIndex", "_flags", "setDay", "date", "day", "options", "defaultOptions", "getDefaultOptions", "weekStartsOn", "_date", "toDate", "currentDay", "dayIndex", "delta", "diff", "addDays", "DayParser", "Parser", "dateString", "token", "match", "_date", "value", "date", "_flags", "options", "setDay", "LocalDayParser", "Parser", "dateString", "token", "match", "options", "valueCallback", "value", "wholeWeekDays", "mapValue", "parseNDigits", "_date", "date", "_flags", "setDay", "StandAloneLocalDayParser", "Parser", "dateString", "token", "match", "options", "valueCallback", "value", "wholeWeekDays", "mapValue", "parseNDigits", "_date", "date", "_flags", "setDay", "setISODay", "date", "day", "_date", "toDate", "currentDay", "getISODay", "diff", "addDays", "ISODayParser", "Parser", "dateString", "token", "match", "valueCallback", "value", "parseNDigits", "mapValue", "_date", "date", "_flags", "setISODay", "AMPMParser", "Parser", "dateString", "token", "match", "date", "_flags", "value", "dayPeriodEnumToHours", "AMPMMidnightParser", "Parser", "dateString", "token", "match", "date", "_flags", "value", "dayPeriodEnumToHours", "DayPeriodParser", "Parser", "dateString", "token", "match", "date", "_flags", "value", "dayPeriodEnumToHours", "Hour1to12Parser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "isPM", "Hour0to23Parser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "Hour0To11Parser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "Hour1To24Parser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "hours", "MinuteParser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "SecondParser", "Parser", "dateString", "token", "match", "parseNumericPattern", "numericPatterns", "parseNDigits", "_date", "value", "date", "_flags", "FractionOfSecondParser", "Parser", "dateString", "token", "valueCallback", "value", "mapValue", "parseNDigits", "date", "_flags", "ISOTimezoneWithZParser", "Parser", "dateString", "token", "parseTimezonePattern", "timezonePatterns", "date", "flags", "value", "constructFrom", "getTimezoneOffsetInMilliseconds", "ISOTimezoneParser", "Parser", "dateString", "token", "parseTimezonePattern", "timezonePatterns", "date", "flags", "value", "constructFrom", "getTimezoneOffsetInMilliseconds", "TimestampSecondsParser", "Parser", "dateString", "parseAnyDigitsSigned", "date", "_flags", "value", "constructFrom", "TimestampMillisecondsParser", "Parser", "dateString", "parseAnyDigitsSigned", "date", "_flags", "value", "constructFrom", "parsers", "EraParser", "YearParser", "LocalWeekYearParser", "ISOWeekYearParser", "ExtendedYearParser", "QuarterParser", "StandAloneQuarterParser", "MonthParser", "StandAloneMonthParser", "LocalWeekParser", "ISOWeekParser", "DateParser", "DayOfYearParser", "DayParser", "LocalDayParser", "StandAloneLocalDayParser", "ISODayParser", "AMPMParser", "AMPMMidnightParser", "DayPeriodParser", "Hour1to12Parser", "Hour0to23Parser", "Hour0To11Parser", "Hour1To24Parser", "MinuteParser", "SecondParser", "FractionOfSecondParser", "ISOTimezoneWithZParser", "ISOTimezoneParser", "TimestampSecondsParser", "TimestampMillisecondsParser", "formattingTokensRegExp", "longFormattingTokensRegExp", "escapedStringRegExp", "doubleQuoteRegExp", "notWhitespaceRegExp", "unescapedLatinCharacterRegExp", "parse", "dateStr", "formatStr", "referenceDate", "options", "defaultOptions", "getDefaultOptions", "locale", "enUS", "firstWeekContainsDate", "weekStartsOn", "toDate", "constructFrom", "subFnOptions", "setters", "DateToSystemTimezoneSetter", "tokens", "substring", "firstCharacter", "longFormatters", "longFormatter", "usedTokens", "token", "isProtectedWeekYearToken", "warnOrThrowProtectedError", "isProtectedDayOfYearToken", "parser", "parsers", "incompatibleTokens", "incompatibleToken", "usedToken", "parseResult", "cleanEscapedString", "uniquePrioritySetters", "setter", "a", "b", "priority", "index", "array", "setterArray", "date", "flags", "result", "input", "parseISO", "argument", "options", "additionalDigits", "dateStrings", "splitDateString", "date", "parseYearResult", "parseYear", "parseDate", "timestamp", "time", "offset", "parseTime", "parseTimezone", "dirtyDate", "result", "patterns", "dateRegex", "timeRegex", "timezoneRegex", "dateString", "array", "timeString", "token", "regex", "captures", "year", "century", "isWeekDate", "dayOfYear", "parseDateUnit", "month", "day", "week", "dayOfWeek", "validateWeekDate", "dayOfISOWeekYear", "validateDate", "validateDayOfYearDate", "value", "hours", "parseTimeUnit", "minutes", "seconds", "validateTime", "millisecondsInHour", "millisecondsInMinute", "timezoneString", "sign", "validateTimezone", "isoWeekYear", "fourthOfJanuaryDay", "diff", "daysInMonths", "isLeapYearIndex", "_year", "_hours", "useCurrentDate", "percision", "current", "setCurrent", "createSignal", "updateInterval", "id", "update", "createRenderEffect", "interval", "differenceInMilliseconds", "untrack", "onCleanup", "renderLocalTimeOn", "elements", "allPercisionRequired", "setAllPercisionRequired", "createMemo", "arr", "p", "c", "date", "starts", "idx", "e", "timeFormat", "i", "content", "rawDate", "parseISO", "parse", "percisionOfRawDate", "seconds", "differenceInSeconds", "fmtString", "isSameDay", "intlFormatDistance", "intlFormat", "x"] -} diff --git a/themes/buck/source/index.css b/themes/buck/source/index.css deleted file mode 100644 index edeba92..0000000 --- a/themes/buck/source/index.css +++ /dev/null @@ -1,2 +0,0 @@ -:root{--palette-black: #000000;--palette-white: #ffffff;--palette-blue-50: #e3f2fd;--palette-blue-50-fg: var(--palette-black);--palette-blue-100: #bbdefb;--palette-blue-100-fg: var(--palette-black);--palette-blue-200: #90caf9;--palette-blue-200-fg: var(--palette-black);--palette-blue-400: #42a5f5;--palette-blue-400-fg: var(--palette-black);--palette-blue-500: #2196f3;--palette-blue-500-fg: var(--palette-black);--palette-blue-600: #1e88e5;--palette-blue-600-fg: var(--palette-white);--palette-blue-700: #1976d2;--palette-blue-700-fg: var(--palette-white);--palette-blue-800: #1565c0;--palette-blue-800-fg: var(--palette-white);--palette-blue-900: #0d47a1;--palette-blue-900-fg: var(--palette-white);--palette-blue-a100: #82b1ff;--palette-blue-a100-fg: var(--palette-black);--palette-blue-a200: #448aff;--palette-blue-a200-fg: var(--palette-white);--palette-blue-a400: #2979ff;--palette-blue-a400-fg: var(--palette-white);--palette-blue-a700: #2962ff;--palette-blue-a700-fg: var(--palette-white);--palette-grey-50: #fafafa;--palette-grey-50-fg: var(--palette-black);--palette-grey-100: #f5f5f5;--palette-grey-100-fg: var(--palette-black);--palette-grey-200: #eeeeee;--palette-grey-200-fg: var(--palette-black);--palette-grey-300: #e0e0e0;--palette-grey-300-fg: var(--palette-black);--palette-grey-400: #bdbdbd;--palette-grey-400-fg: var(--palette-black);--palette-grey-500: #9e9e9e;--palette-grey-500-fg: var(--palette-black);--palette-grey-600: #757575;--palette-grey-600-fg: white;--palette-grey-700: #616161;--palette-grey-700-fg: white;--palette-pink-500: #e91e63;--palette-pink-500-fg: var(--palette-white)}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-cyrillic-ext-400-normal-26BHVYZO.woff2") format("woff2"),url("./roboto-cyrillic-ext-400-normal-ALQYG4VR.woff") format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-cyrillic-400-normal-FWOJ2YEY.woff2") format("woff2"),url("./roboto-cyrillic-400-normal-DH4TKATE.woff") format("woff");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-greek-ext-400-normal-FNKH33MZ.woff2") format("woff2"),url("./roboto-greek-ext-400-normal-2F7V6K4G.woff") format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-greek-400-normal-MPTNYGBL.woff2") format("woff2"),url("./roboto-greek-400-normal-4O2YO26M.woff") format("woff");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-vietnamese-400-normal-ZFP4AYPR.woff2") format("woff2"),url("./roboto-vietnamese-400-normal-WM45SJXN.woff") format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-latin-ext-400-normal-EGV4RSGY.woff2") format("woff2"),url("./roboto-latin-ext-400-normal-SYALJJTN.woff") format("woff");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-latin-400-normal-6KEU5XHX.woff2") format("woff2"),url("./roboto-latin-400-normal-23KM663I.woff") format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-cyrillic-ext-100-normal-GB4EOHW3.woff2") format("woff2"),url("./roboto-cyrillic-ext-100-normal-JVQUE5YG.woff") format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-cyrillic-100-normal-BCJFGWFF.woff2") format("woff2"),url("./roboto-cyrillic-100-normal-SJKZD3PH.woff") format("woff");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-greek-ext-100-normal-IU4AEIW2.woff2") format("woff2"),url("./roboto-greek-ext-100-normal-WGDKWHRF.woff") format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-greek-100-normal-S3FDCEDH.woff2") format("woff2"),url("./roboto-greek-100-normal-HAPQGQT7.woff") format("woff");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-vietnamese-100-normal-VC33Q5KS.woff2") format("woff2"),url("./roboto-vietnamese-100-normal-RG3VSYYM.woff") format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-latin-ext-100-normal-S6APGXBJ.woff2") format("woff2"),url("./roboto-latin-ext-100-normal-G4DULEH7.woff") format("woff");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-latin-100-normal-H6TJBNRU.woff2") format("woff2"),url("./roboto-latin-100-normal-PKD3V7F6.woff") format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}*{margin:0;box-sizing:border-box;font-family:var(--font-family-sans)}:root{--font-family-sans: Roboto, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;--p-primary: var(--palette-blue-500);--p-primary-fg: var(--palette-blue-500-fg);--p-secondary: var(--palette-pink-500);--p-secondary-fg: var(--palette-pink-500-fg);--typ-r-display4: lighter 7rem / 7rem var(--font-family-sans);--typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans);--typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans);--typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans);--typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans);--typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans);--typ-r-subheading: normal 1rem / 1rem var(--font-family-sans);--typ-r-body2: bold .875rem / .875rem var(--font-family-sans);--typ-r-body1: normal .875rem / .875rem var(--font-family-sans);--typ-r-caption: normal .75rem / .75rem var(--font-family-sans);--typ-r-button: bold .875rem / .875rem var(--font-family-sans);--typ-d-display4: var(--typ-r-display4);--typ-d-display3: var(--typ-r-display3);--typ-d-display2: var(--typ-r-display2);--typ-d-display1: var(--typ-r-display1);--typ-d-headline: var(--typ-r-headline);--typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans);--typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans);--typ-d-body2: bold .9375rem / .9375rem var(--font-family-sans);--typ-d-body1: normal .9375rem / .9375rem var(--font-family-sans);--typ-d-caption: normal .8125rem / .8125rem var(--font-family-sans);--typ-d-button: bold .9375rem / .9375rem var(--font-family-sans);--elevation-0: 0px;--elevation-1: 1px;--elevation-2: 2px;--elevation-3: 3px;--elevation-4: 4px;--elevation-5: 6px;--elevation-6: 8px;--elevation-7: 9px;--elevation-8: 12px;--elevation-9: 16px;--elevation-10: 24px;--box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, .15);--box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, .15);--box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, .15);--box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, .15);--link-bg: var(--palette-blue-50);--link-color: var(--palette-blue-50-fg);--link-bg-hover: var(--palette-blue-100);--link-color-hover: var(--palette-blue-100-fg);--typ-display4: var(--typ-r-display4);--typ-display3: var(--typ-r-display3);--typ-display2: var(--typ-r-display2);--typ-display1: var(--typ-r-display1);--typ-headline: var(--typ-r-display1);--typ-title: var(--typ-r-title);--typ-subheading: var(--typ-r-subheading);--typ-body2: var(--typ-r-body2);--typ-body1: var(--typ-r-body1);--typ-caption: var(--typ-r-caption);--typ-button: var(--typ-r-button)}:root:is([lang~=zh],[lang~=ja],[lang~=kr]){--typ-title: var(--typ-d-headline);--typ-subheading: var(--typ-d-subheading);--typ-body2: var(--typ-d-body2);--typ-body1: var(--typ-d-body1);--typ-caption: var(--typ-d-caption);--typ-button: var(--typ-d-button)}table{--table-header-color: rgba(0, 0, 0, .54);--table-content-color: rgba(0, 0, 0, .87);--table-background-color: white}:root{font:var(--typ-body1)}h1{font:var(--typ-display4)}h2{font:var(--typ-display3)}h3{font:var(--typ-display2)}h4{font:var(--typ-display1)}h5{font:var(--typ-headline)}h6{font:var(--typ-title)}.container{width:80%;margin:auto}@media (max-width: 600px){.container{width:100%}}.nav-wrapper{background-color:var(--p-primary);box-shadow:var(--box-shadow-4)}nav.site{--nav-site-height: 4rem;display:flex;flex-wrap:wrap-reverse;justify-content:space-between;white-space:nowrap;min-height:var(--nav-site-height);color:var(--palette-white);width:80%;margin:auto;padding-inline:8px}nav.site>*{display:flex;align-items:center}@media (max-width: 1280px){nav.site{width:90%}}@media (max-width: 600px){nav.site{width:100%}}nav.site a{font:var(--typ-button);display:inline-block;line-height:var(--nav-site-height);padding:0 16px;transition:background-color .2s ease-in-out;background-color:transparent;color:var(--palette-white)}nav.site a:hover{color:inherit;background-color:#0000001a}:where(a):not([href^="#"]){display:inline-block;color:var(--link-color);text-decoration:none;background-color:var(--link-bg);border-radius:4px;padding:4px 8px;transition:background-color .2s ease-in-out,color .2s ease-in-out;min-width:44px}:where(a):not([href^="#"]):hover{background-color:var(--link-bg-hover);color:var(--link-color-hover)}:where(a):not([href^="#"])[target=_blank]:after{content:url('data:image/svg+xml,open-in-new');display:inline-block;width:1rem;height:1rem}nav.site .textinput-lg{background-color:#ffffff40;border:none;outline:none;border-radius:2px;font-size:1rem;line-height:2rem;vertical-align:middle;flex-grow:1;transition:background-color .2s ease-in-out,width .2s ease-in-out,box-shadow .2s ease-in-out;padding-inline:1rem}nav.site .textinput-lg::placeholder{color:#fff}nav.site .textinput-lg:focus{background-color:#fff;box-shadow:var(--box-shadow-9)}nav.site .textinput-lg:focus::placeholder{color:transparent;text-align:center}@media (max-width: 600px){nav.site .textinput-lg{width:100%}}nav.site>*:first-child>*:first-child{padding-left:16px}nav.site :where(h1,h2,h3,h4,h5,h6){text-overflow:ellipsis;overflow:hidden;line-height:var(--nav-site-height)}.circle{border-radius:50%}:is(ul,ol).post-list{list-style-type:none;padding:0}.post-item{display:block;padding:12px 0;border:1px solid transparent;border-top-color:var(--palette-grey-300);transition:border-color .22s ease-in-out}.post-item>*:not(:where(figure)){margin-left:4px;margin-right:4px}.post-item:is(:hover,:focus-within){border-top-color:var(--palette-grey-400);border-left-color:var(--palette-grey-400);border-right-color:var(--palette-grey-400)}.post-item:is(:hover,:focus-within)+.post-item{border-top-color:var(--palette-grey-400)}.post-item:is(:hover,:focus-within):first-child{border-top-color:var(--palette-grey-400)}.post-item:is(:hover,:focus-within):last-child{border-bottom-color:var(--palette-grey-400)}.post-item:first-child{border-top-color:transparent}.post-item p{line-height:1.375}.post-item p>a{line-height:1.175}.post-item:last-child{border-bottom-color:#0000000d}.post-item-title{display:grid;justify-content:space-between;align-items:center;margin-bottom:16px;gap:8px;grid-template-columns:auto auto}@media (width <= 400px){.post-item-title{grid-template-columns:1fr}.post-item-title>:last-child{text-align:end}}.post-item-title>a{min-height:44px;display:inline-flex;align-items:center}.post-item-title>time{color:var(--palette-grey-700)}.pager{display:grid;width:fit-content;grid-auto-columns:minmax(44px,1fr);grid-auto-flow:column;gap:16px;row-gap:8px;font-size:1.125rem}.pager>:is(.extend,.page-number){aspect-ratio:1;display:flex;align-items:center;justify-content:center}.pager>.extend>.mdi{font-size:1.375em}.pager>.extend{background-color:var(--p-secondary);color:var(--p-secondary-fg)}.pager>.extend:is(:hover,:focus){filter:saturate(.65)}.highlight{display:block;overflow-x:auto;padding:.5em;background:#fff;color:#000}.code .xml .meta{color:silver}.code .comment,.code .quote{color:#007400}.code .tag,.code .attribute,.code .keyword,.code .selector-tag,.code .literal,.code .name{color:#aa0d91}.code .variable,.code .template-variable{color:#3f6e74}.code .code,.code .string,.code .meta-string{color:#c41a16}.code .regexp,.code .link{color:#0e0eff}.code .title,.code .symbol,.code .bullet,.code .number{color:#1c00cf}.code .section,.code .meta{color:#643820}.code .class .title,.code .type,.code .built_in,.code .builtin-name,.code .params{color:#5c2699}.code .attr{color:#836c28}.code .subst{color:#000}.code .formula{background-color:#eee;font-style:italic}.code .addition{background-color:#baeeba}.code .deletion{background-color:#ffc8bd}.code .selector-id,.code .selector-class{color:#9b703f}.code .doctag,.code .strong{font-weight:700}.code .emphasis{font-style:italic}.content{line-height:1.5}.content>p{padding:16px}.content>p>img{width:100%;object-fit:contain;object-position:50% 50%;min-height:44px;max-height:40vh}.content>p>a>img{max-width:100%;object-fit:contain}.content>:where(h1,h2,h3,h4,h5,h6){margin-inline:16px;-webkit-hyphens:auto;hyphens:auto;text-wrap:wrap;text-wrap:pretty}.content>#more{display:block;width:100%;border-top:1px solid var(--palette-grey-200)}.content>:where(ul,ol){background-color:var(--palette-white);line-height:1.5}.content>:where(ul,ol)>li{border-top:1px solid transparent;border-bottom:1px solid transparent;transition:border-color .22s ease-in-out}.content>:where(ul,ol)>li:hover{border-top-color:var(--palette-grey-200);border-bottom-color:var(--palette-grey-400)}.content>:where(ul,ol)>li:hover+li{border-bottom-color:var(--palette-grey-200)}.content hr{border:none;border-top:1px solid var(--palette-grey-300);margin-inline:16px}.content>:where(h2,h3,h4,h5,h6){margin-top:16px;margin-bottom:8px}.table-responsive{max-width:100%;overflow-y:auto}:where(.content>table,.content>.table-responsive>table){background-color:var(--table-background-color);width:100%;white-space:nowrap;border:1px solid var(--palette-grey-300);border-collapse:collapse}:where(.content>table,.content>.table-responsive>table)>:where(thead,tbody)>tr>:first-child{padding-inline-start:16px}:where(.content>table,.content>.table-responsive>table)>:where(thead,tbody)>tr>:last-child{padding-inline-end:16px}:where(.content>table,.content>.table-responsive>table)>thead{color:var(--table-header-color)}:where(.content>table,.content>.table-responsive>table)>thead>tr{border-bottom:1px solid var(--palette-grey-300)}:where(.content>table,.content>.table-responsive>table)>thead>tr>th{padding-block:15px;text-align:start}:where(.content>table,.content>.table-responsive>table)>thead>tr>th:is(:hover,.table-column-hover){color:var(--table-content-color)}:where(.content>table,.content>.table-responsive>table)>thead>tr>th[align=center]{text-align:center}:where(.content>table,.content>.table-responsive>table)>thead>tr>th[align=right]{text-align:end}:where(.content>table,.content>.table-responsive>table)>tbody{color:var(--table-content-color)}:where(.content>table,.content>.table-responsive>table)>tbody>tr>td{padding-block:15px;text-align:start}:where(.content>table,.content>.table-responsive>table)>tbody>tr>td[align=center]{text-align:center}:where(.content>table,.content>.table-responsive>table)>tbody>tr>td[align=right]{text-align:end}:where(.content>table,.content>.table-responsive>table)>tbody>tr:first-child{border-top:1px solid transparent}:where(.content>table,.content>.table-responsive>table)>tbody>tr+:is(:where(.content>table,.content>.table-responsive>table)>tbody>tr){border-top:1px solid var(--palette-grey-300)}:where(.content>table,.content>.table-responsive>table)>tbody>tr:hover{background-color:var(--palette-grey-200)}.content figure{border-radius:2px}.content figure.highlight{padding:0 8px;outline:1px solid var(--palette-grey-300);transition:box-shadow .22s ease-in-out;line-height:1.25;min-height:44px}.content figure.highlight:hover{box-shadow:var(--box-shadow-4)}.content figure.highlight .gutter{border-inline-end:1px solid var(--palette-grey-200);margin-inline-end:8px}.content figure.highlight .gutter>pre>.line{display:block;width:100%;text-align:end}.content figure.highlight .gutter>pre>br{display:none}.content figure.highlight .code .line{border-bottom:1px solid transparent}.content figure.highlight .code .line:hover{border-bottom:1px solid var(--palette-grey-500)}.content kbd{padding:6px;margin-inline:2px;background-color:var(--palette-black);color:var(--palette-white);border-radius:4px}.content dl>dt{font:var(--typ-body2);margin-left:16px}.content dl>dd{margin-left:32px}.content blockquote{background-color:#fff;padding-left:12px;margin-block:16px;border:1px solid var(--palette-grey-200);border-left:4px solid var(--p-secondary)}.content blockquote:is(:hover,:focus){outline:1px solid var(--palette-grey-400)}.content .video-container{width:100%;border:1px solid var(--palette-grey-200)}.content .video-container>iframe{width:100%}#_layout{display:grid;grid-template-columns:auto 1fr;margin-inline:60px;padding-block:24px;gap:8px;row-gap:0}@media (max-width: 720px){#_layout{margin-inline:8px;grid-template-columns:1fr}}#_layout>:first-child{max-width:560px}.avatar{width:60px;height:60px}.card{background-color:var(--palette-white);box-shadow:var(--box-shadow-2);padding:8px 0 16px;border:1px solid var(--palette-grey-300)}.card>*{margin-inline:8px}.card:hover{box-shadow:var(--box-shadow-4)}.author-head{display:grid;grid-template-columns:60px 1fr;grid-template-rows:1fr auto;align-items:center;column-gap:12px}.author-head>:first-child{grid-row:1 /3;grid-column:1/1}.author-head>*{grid-column:2/2}.author-head>:nth-child(2){grid-row:1 / 1}.author-head>:nth-child(3){grid-row:2/ 2}.link-list{display:flex;flex-direction:column;list-style:none;padding:0;gap:16px}.link-list>li{display:flex}.link-list>li:before{display:inherit;width:1.25rem;height:1.25rem;padding:4px;content:"";object-fit:contain;overflow:hidden}.link-list>li.mastodon:before{content:url("./mastodon-purple-EGLRNBKD.svg")}.chip-group{display:flex;flex-flow:row wrap;gap:16px;column-gap:8px}:where(ul,ol).chip-group>*{display:inline-block}.chip{border-radius:1.5rem;padding:0 12px;line-height:2rem;font-size:.8125rem;text-align:center}.hottag-chip{background-color:var(--p-secondary);color:var(--p-secondary-fg)}.hottag-chip:is(:hover,:focus){background-color:var(--p-secondary);color:var(--p-secondary-fg);filter:saturate(.65)} -/*# sourceMappingURL=index.css.map */ diff --git a/themes/buck/source/index.css.map b/themes/buck/source/index.css.map deleted file mode 100644 index e38b6dc..0000000 --- a/themes/buck/source/index.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../src/styles/palette.css", "../node_modules/.pnpm/@fontsource+roboto@5.0.8/node_modules/@fontsource/roboto/400.css", "../node_modules/.pnpm/@fontsource+roboto@5.0.8/node_modules/@fontsource/roboto/100.css", "../src/styles/material.css", "../src/styles/posts.css", "../src/styles/pager.css", "../src/styles/codehighlight/xcode.css", "../src/styles/content.css", "../src/index.css"], - "sourcesContent": [":root {\n --palette-black: #000000;\n --palette-white: #ffffff;\n\n --palette-blue-50: #e3f2fd;\n --palette-blue-50-fg: var(--palette-black);\n --palette-blue-100: #bbdefb;\n --palette-blue-100-fg: var(--palette-black);\n --palette-blue-200: #90caf9;\n --palette-blue-200-fg: var(--palette-black);\n --palette-blue-400: #42a5f5;\n --palette-blue-400-fg: var(--palette-black);\n --palette-blue-500: #2196f3;\n --palette-blue-500-fg: var(--palette-black);\n --palette-blue-600: #1e88e5;\n --palette-blue-600-fg: var(--palette-white);\n --palette-blue-700: #1976d2;\n --palette-blue-700-fg: var(--palette-white);\n --palette-blue-800: #1565c0;\n --palette-blue-800-fg: var(--palette-white);\n --palette-blue-900: #0d47a1;\n --palette-blue-900-fg: var(--palette-white);\n --palette-blue-a100: #82b1ff;\n --palette-blue-a100-fg: var(--palette-black);\n --palette-blue-a200: #448aff;\n --palette-blue-a200-fg: var(--palette-white);\n --palette-blue-a400: #2979ff;\n --palette-blue-a400-fg: var(--palette-white);\n --palette-blue-a700: #2962ff;\n --palette-blue-a700-fg: var(--palette-white);\n\n --palette-grey-50: #fafafa;\n --palette-grey-50-fg: var(--palette-black);\n --palette-grey-100: #f5f5f5;\n --palette-grey-100-fg: var(--palette-black);\n --palette-grey-200: #eeeeee;\n --palette-grey-200-fg: var(--palette-black);\n --palette-grey-300: #e0e0e0;\n --palette-grey-300-fg: var(--palette-black);\n --palette-grey-400: #bdbdbd;\n --palette-grey-400-fg: var(--palette-black);\n --palette-grey-500: #9e9e9e;\n --palette-grey-500-fg: var(--palette-black);\n --palette-grey-600: #757575;\n --palette-grey-600-fg: white;\n --palette-grey-700: #616161;\n --palette-grey-700-fg: white;\n\n --palette-pink-500: #e91e63;\n --palette-pink-500-fg: var(--palette-white);\n}\n", "/* roboto-cyrillic-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-ext-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-400-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-400-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-ext-400-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-400-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-400-normal.woff2) format('woff2'), url(./files/roboto-greek-400-normal.woff) format('woff');\n unicode-range: U+0370-03FF;\n}\n\n/* roboto-vietnamese-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-vietnamese-400-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-400-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-ext-400-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-400-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-400-normal.woff2) format('woff2'), url(./files/roboto-latin-400-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}", "/* roboto-cyrillic-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-cyrillic-ext-100-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-100-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-cyrillic-100-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-100-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-greek-ext-100-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-100-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-greek-100-normal.woff2) format('woff2'), url(./files/roboto-greek-100-normal.woff) format('woff');\n unicode-range: U+0370-03FF;\n}\n\n/* roboto-vietnamese-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-vietnamese-100-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-100-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-latin-ext-100-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-100-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-latin-100-normal.woff2) format('woff2'), url(./files/roboto-latin-100-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}", "@import \"./palette.css\";\n@import \"@fontsource/roboto/400.css\";\n@import \"@fontsource/roboto/100.css\";\n\n* {\n margin: 0;\n box-sizing: border-box;\n font-family: var(--font-family-sans);\n}\n\n:root {\n --font-family-sans: Roboto, \"Noto Sans\", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;\n --p-primary: var(--palette-blue-500);\n --p-primary-fg: var(--palette-blue-500-fg);\n --p-secondary: var(--palette-pink-500);\n --p-secondary-fg: var(--palette-pink-500-fg);\n\n --typ-r-display4: lighter 7rem / 7rem var(--font-family-sans);\n --typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans);\n --typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans);\n --typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans);\n --typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans);\n --typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans);\n --typ-r-subheading: normal 1rem / 1rem var(--font-family-sans);\n --typ-r-body2: bold 0.875rem / 0.875rem var(--font-family-sans);\n --typ-r-body1: normal 0.875rem / 0.875rem var(--font-family-sans);\n --typ-r-caption: normal 0.75rem / 0.75rem var(--font-family-sans);\n --typ-r-button: bold 0.875rem / 0.875rem var(--font-family-sans);\n\n --typ-d-display4: var(--typ-r-display4);\n --typ-d-display3: var(--typ-r-display3);\n --typ-d-display2: var(--typ-r-display2);\n --typ-d-display1: var(--typ-r-display1);\n --typ-d-headline: var(--typ-r-headline);\n --typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans);\n --typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans);\n --typ-d-body2: bold 0.9375rem / 0.9375rem var(--font-family-sans);\n --typ-d-body1: normal 0.9375rem / 0.9375rem var(--font-family-sans);\n --typ-d-caption: normal 0.8125rem / 0.8125rem var(--font-family-sans);\n --typ-d-button: bold 0.9375rem / 0.9375rem var(--font-family-sans);\n\n & {\n --typ-display4: var(--typ-r-display4);\n --typ-display3: var(--typ-r-display3);\n --typ-display2: var(--typ-r-display2);\n --typ-display1: var(--typ-r-display1);\n --typ-headline: var(--typ-r-display1);\n --typ-title: var(--typ-r-title);\n --typ-subheading: var(--typ-r-subheading);\n --typ-body2: var(--typ-r-body2);\n --typ-body1: var(--typ-r-body1);\n --typ-caption: var(--typ-r-caption);\n --typ-button: var(--typ-r-button);\n }\n\n &[lang~=\"zh\"],\n &[lang~=\"ja\"],\n &[lang~=\"kr\"] {\n --typ-title: var(--typ-d-headline);\n --typ-subheading: var(--typ-d-subheading);\n --typ-body2: var(--typ-d-body2);\n --typ-body1: var(--typ-d-body1);\n --typ-caption: var(--typ-d-caption);\n --typ-button: var(--typ-d-button);\n }\n\n --elevation-0: 0px;\n --elevation-1: 1px;\n --elevation-2: 2px;\n --elevation-3: 3px;\n --elevation-4: 4px;\n --elevation-5: 6px;\n --elevation-6: 8px;\n --elevation-7: 9px;\n --elevation-8: 12px;\n --elevation-9: 16px;\n --elevation-10: 24px;\n\n --box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, 0.15);\n --box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, 0.15);\n --box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, 0.15);\n --box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, 0.15);\n\n --link-bg: var(--palette-blue-50);\n --link-color: var(--palette-blue-50-fg);\n --link-bg-hover: var(--palette-blue-100);\n --link-color-hover: var(--palette-blue-100-fg);\n}\n\ntable {\n --table-header-color: rgba(0, 0, 0, 0.54);\n --table-content-color: rgba(0, 0, 0, 0.87);\n --table-background-color: white;\n}\n\n:root {\n font: var(--typ-body1);\n}\n\nh1 {\n font: var(--typ-display4);\n}\n\nh2 {\n font: var(--typ-display3);\n}\n\nh3 {\n font: var(--typ-display2);\n}\n\nh4 {\n font: var(--typ-display1);\n}\n\nh5 {\n font: var(--typ-headline);\n}\n\nh6 {\n font: var(--typ-title);\n}\n\n.container {\n width: 80%;\n margin: auto;\n}\n\n@media (max-width: 600px) {\n .container {\n width: 100%;\n }\n}\n\n.nav-wrapper {\n background-color: var(--p-primary);\n box-shadow: var(--box-shadow-4);\n}\n\nnav.site {\n --nav-site-height: 4rem;\n\n display: flex;\n flex-wrap: wrap-reverse;\n justify-content: space-between;\n white-space: nowrap;\n\n min-height: var(--nav-site-height);\n color: var(--palette-white);\n width: 80%;\n margin: auto;\n padding-inline: 8px;\n\n >* {\n display: flex;\n align-items: center;\n }\n}\n\n@media (max-width: 1280px) {\n nav.site {\n width: 90%;\n }\n}\n\n@media (max-width: 600px) {\n nav.site {\n width: 100%;\n }\n}\n\nnav.site a {\n font: var(--typ-button);\n display: inline-block;\n line-height: var(--nav-site-height);\n padding: 0 16px;\n transition: background-color .2s ease-in-out;\n background-color: transparent;\n color: var(--palette-white);\n\n &:hover {\n color: inherit;\n background-color: rgba(0, 0, 0, 0.1);\n }\n}\n\n:where(a):not([href^=\"#\"]) {\n display: inline-block;\n color: var(--link-color);\n text-decoration: none;\n background-color: var(--link-bg);\n border-radius: 4px;\n padding: 4px 8px;\n transition: background-color .2s ease-in-out, color .2s ease-in-out;\n min-width: 44px;\n\n &:hover {\n background-color: var(--link-bg-hover);\n color: var(--link-color-hover);\n }\n\n &[target=\"_blank\"]::after {\n content: url('data:image/svg+xml,open-in-new');\n display: inline-block;\n width: 1rem;\n height: 1rem;\n }\n\n}\n\nnav.site .textinput-lg {\n background-color: rgba(255, 255, 255, 0.25);\n border: none;\n outline: none;\n border-radius: 2px;\n font-size: 1rem;\n line-height: 2rem;\n vertical-align: middle;\n flex-grow: 1;\n transition: background-color .2s ease-in-out, width .2s ease-in-out, box-shadow .2s ease-in-out;\n padding-inline: 1rem;\n\n &::placeholder {\n color: white;\n }\n\n &:focus {\n background-color: white;\n box-shadow: var(--box-shadow-9);\n\n &::placeholder {\n color: transparent;\n text-align: center;\n }\n }\n}\n\n@media (max-width: 600px) {\n nav.site .textinput-lg {\n width: 100%;\n }\n}\n\nnav.site > *:first-child > *:first-child {\n padding-left: 16px;\n}\n\nnav.site :where(h1, h2, h3, h4, h5, h6) {\n text-overflow: ellipsis;\n overflow: hidden;\n line-height: var(--nav-site-height);\n}\n\n.circle {\n border-radius: 50% 50%;\n}\n", "@import \"./material.css\";\n\n:is(ul, ol).post-list {\n list-style-type: none;\n padding: 0;\n}\n\n.post-item {\n display: block;\n padding: 12px 0;\n > *:not(:where(figure)) {\n margin-left: 4px;\n margin-right: 4px;\n }\n border: 1px solid transparent;\n border-top-color: var(--palette-grey-300);\n transition: border-color 220ms ease-in-out;\n\n &:hover, &:focus-within {\n border-top-color: var(--palette-grey-400);\n border-left-color: var(--palette-grey-400);\n border-right-color: var(--palette-grey-400);\n\n + .post-item {\n border-top-color: var(--palette-grey-400);\n }\n\n &:first-child {\n border-top-color: var(--palette-grey-400);\n }\n\n &:last-child {\n border-bottom-color: var(--palette-grey-400);\n }\n }\n\n &:first-child {\n border-top-color: transparent;\n }\n\n & p {\n line-height: 1.375;\n\n & > a {\n line-height: 1.175;\n }\n }\n\n &:last-child {\n border-bottom-color: rgba(0, 0, 0, 0.05);\n }\n}\n\n.post-item-title {\n display: grid;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 16px;\n gap: 8px;\n grid-template-columns: auto auto;\n\n @media (width <= 400px) {\n & {\n grid-template-columns: 1fr;\n }\n\n & > :last-child {\n text-align: end;\n }\n }\n\n & > a {\n min-height: 44px;\n display: inline-flex;\n align-items: center;\n }\n\n & > time {\n color: var(--palette-grey-700);\n }\n}\n", "\n.pager {\n display: grid;\n width: fit-content;\n grid-auto-columns: minmax(44px, 1fr);\n grid-auto-flow: column;\n gap: 16px;\n row-gap: 8px;\n font-size: 1.125rem;\n\n > :is(.extend, .page-number) {\n aspect-ratio: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n > .extend > .mdi {\n font-size: 1.375em;\n }\n\n > .extend {\n background-color: var(--p-secondary);\n color: var(--p-secondary-fg);\n\n &:is(:hover, :focus) {\n filter: saturate(0.65);\n }\n }\n}\n", "/*\n\nXCode style (c) Angel Garcia \n\nPorted to Hexo highlight.js system by Rubicon \n\n*/\n\n.highlight {\n display: block;\n overflow-x: auto;\n padding: 0.5em;\n background: #fff;\n color: black;\n}\n\n/* Gray DOCTYPE selectors like WebKit */\n.code .xml .meta {\n color: #c0c0c0;\n}\n\n.code .comment,\n.code .quote {\n color: #007400;\n}\n\n.code .tag,\n.code .attribute,\n.code .keyword,\n.code .selector-tag,\n.code .literal,\n.code .name {\n color: #aa0d91;\n}\n\n.code .variable,\n.code .template-variable {\n color: #3F6E74;\n}\n\n.code .code,\n.code .string,\n.code .meta-string {\n color: #c41a16;\n}\n\n.code .regexp,\n.code .link {\n color: #0E0EFF;\n}\n\n.code .title,\n.code .symbol,\n.code .bullet,\n.code .number {\n color: #1c00cf;\n}\n\n.code .section,\n.code .meta {\n color: #643820;\n}\n\n\n.code .class .title,\n.code .type,\n.code .built_in,\n.code .builtin-name,\n.code .params {\n color: #5c2699;\n}\n\n.code .attr {\n color: #836C28;\n}\n\n.code .subst {\n color: #000;\n}\n\n.code .formula {\n background-color: #eee;\n font-style: italic;\n}\n\n.code .addition {\n background-color: #baeeba;\n}\n\n.code .deletion {\n background-color: #ffc8bd;\n}\n\n.code .selector-id,\n.code .selector-class {\n color: #9b703f;\n}\n\n.code .doctag,\n.code .strong {\n font-weight: bold;\n}\n\n.code .emphasis {\n font-style: italic;\n}\n", "@import \"./codehighlight/xcode.css\";\n\n.content {\n line-height: 1.5;\n\n >p {\n padding: 16px;\n\n >img {\n width: 100%;\n object-fit: contain;\n object-position: 50% 50%;\n min-height: 44px;\n max-height: 40vh;\n }\n\n >a>img {\n max-width: 100%;\n object-fit: contain;\n }\n }\n\n > :where(h1, h2, h3, h4, h5, h6) {\n margin-inline: 16px;\n hyphens: auto;\n text-wrap: wrap;\n text-wrap: pretty;\n }\n\n >#more {\n display: block;\n width: 100%;\n border-top: 1px solid var(--palette-grey-200);\n }\n\n > :where(ul, ol) {\n background-color: var(--palette-white);\n line-height: 1.5;\n\n >li {\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n transition: border-color 220ms ease-in-out;\n\n &:hover {\n border-top-color: var(--palette-grey-200);\n border-bottom-color: var(--palette-grey-400);\n\n &+li {\n border-bottom-color: var(--palette-grey-200);\n }\n }\n }\n }\n\n hr {\n border: none;\n border-top: 1px solid var(--palette-grey-300);\n margin-inline: 16px;\n }\n\n > :where(h2, h3, h4, h5, h6) {\n margin-top: 16px;\n margin-bottom: 8px;\n }\n}\n\n.table-responsive {\n max-width: 100%;\n overflow-y: auto;\n}\n\n:where(.content > table, .content > .table-responsive > table) {\n background-color: var(--table-background-color);\n width: 100%;\n white-space: nowrap;\n border: 1px solid var(--palette-grey-300);\n border-collapse: collapse;\n\n > :where(thead, tbody) > tr {\n & > :first-child {\n padding-inline-start: 16px;\n }\n\n & > :last-child {\n padding-inline-end: 16px;\n }\n }\n\n >thead {\n color: var(--table-header-color);\n\n >tr {\n border-bottom: 1px solid var(--palette-grey-300);\n >th {\n padding-block: 15px;\n text-align: start;\n\n &:hover, &.table-column-hover {\n color: var(--table-content-color);\n }\n\n &[align=\"center\"] {\n text-align: center;\n }\n\n &[align=\"right\"] {\n text-align: end;\n }\n }\n }\n }\n\n >tbody {\n color: var(--table-content-color);\n\n >tr {\n >td {\n padding-block: 15px;\n text-align: start;\n\n &[align=\"center\"] {\n text-align: center;\n }\n\n &[align=\"right\"] {\n text-align: end;\n }\n }\n\n &:first-child {\n border-top: 1px solid transparent;\n }\n\n &+& {\n border-top: 1px solid var(--palette-grey-300);\n }\n\n &:hover {\n background-color: var(--palette-grey-200);\n }\n }\n }\n}\n\n.content figure {\n border-radius: 2px;\n\n &.highlight {\n padding: 0 8px;\n outline: 1px solid var(--palette-grey-300);\n transition: box-shadow 220ms ease-in-out;\n line-height: 1.25;\n min-height: 44px;\n\n &:hover {\n box-shadow: var(--box-shadow-4);\n }\n\n .gutter {\n border-inline-end: 1px solid var(--palette-grey-200);\n margin-inline-end: 8px;\n\n >pre {\n >.line {\n display: block;\n width: 100%;\n text-align: end;\n }\n\n >br {\n display: none;\n }\n }\n }\n\n .code {\n .line {\n border-bottom: 1px solid transparent;\n\n &:hover {\n border-bottom: 1px solid var(--palette-grey-500);\n }\n }\n }\n }\n}\n\n.content kbd {\n padding: 6px;\n margin-inline: 2px;\n background-color: var(--palette-black);\n color: var(--palette-white);\n border-radius: 4px;\n}\n\n.content dl {\n >dt {\n font: var(--typ-body2);\n margin-left: 16px;\n }\n\n >dd {\n margin-left: 32px;\n }\n}\n\n.content blockquote {\n background-color: white;\n padding-left: 12px;\n margin-block: 16px;\n border: 1px solid var(--palette-grey-200);\n border-left: 4px solid var(--p-secondary);\n\n &:hover, &:focus {\n outline: 1px solid var(--palette-grey-400);\n }\n}\n\n.content .video-container {\n width: 100%;\n border: 1px solid var(--palette-grey-200);\n\n > iframe {\n width: 100%;\n }\n}\n", "@import \"./styles/material.css\";\n@import \"./styles/posts.css\";\n@import \"./styles/pager.css\";\n@import \"./styles/content.css\";\n\n#_layout {\n display: grid;\n grid-template-columns: auto 1fr;\n margin-inline: 60px;\n padding-block: 24px;\n gap: 8px;\n row-gap: 0;\n}\n\n@media (max-width: 720px) {\n #_layout {\n margin-inline: 8px;\n grid-template-columns: 1fr;\n }\n}\n\n#_layout> :first-child {\n max-width: 560px;\n}\n\n.avatar {\n width: 60px;\n height: 60px;\n}\n\n.card {\n background-color: var(--palette-white);\n box-shadow: var(--box-shadow-2);\n padding: 8px 0 16px;\n border: 1px solid var(--palette-grey-300);\n\n & > * {\n margin-inline: 8px;\n }\n\n &:hover {\n box-shadow: var(--box-shadow-4);\n }\n}\n\n.author-head {\n display: grid;\n grid-template-columns: 60px 1fr;\n grid-template-rows: 1fr auto;\n align-items: center;\n column-gap: 12px;\n\n &>:first-child {\n grid-row: 1 /3;\n grid-column: 1/1;\n }\n\n &>* {\n grid-column: 2/2;\n }\n\n &>:nth-child(2) {\n grid-row: 1 / 1;\n }\n\n &>:nth-child(3) {\n grid-row: 2/ 2;\n }\n}\n\n.link-list {\n display: flex;\n flex-direction: column;\n list-style: none;\n padding: 0;\n gap: 16px;\n\n > li {\n display: flex;\n &::before {\n display: inherit;\n width: 1.25rem;\n height: 1.25rem;\n padding: 4px;\n content: \"\";\n object-fit: contain;\n overflow: hidden;\n }\n\n &.mastodon::before {\n content: url(\"./assets/mastodon-purple.svg\");\n }\n }\n}\n\n.chip-group {\n display: flex;\n flex-flow: row wrap;\n gap: 16px;\n column-gap: 8px;\n}\n\n:where(ul, ol).chip-group {\n > * {\n display: inline-block;\n }\n}\n\n.chip {\n border-radius: 1.5rem;\n padding: 0 12px;\n line-height: 2rem;\n font-size: 0.8125rem;\n text-align: center;\n}\n\n.hottag-chip {\n background-color: var(--p-secondary);\n color: var(--p-secondary-fg);\n\n &:is(:hover, :focus) {\n background-color: var(--p-secondary);\n color: var(--p-secondary-fg);\n filter: saturate(0.65);\n }\n}\n\n"], - "mappings": "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", - "names": [] -} diff --git a/themes/buck/source/index.js b/themes/buck/source/index.js deleted file mode 100644 index 40dab50..0000000 --- a/themes/buck/source/index.js +++ /dev/null @@ -1,2 +0,0 @@ -import{a as e,d as t}from"./chunk-Q4ALCKUU.js";e(()=>{t(document.querySelectorAll(".post-item-title > time"))}); -//# sourceMappingURL=index.js.map diff --git a/themes/buck/source/index.js.map b/themes/buck/source/index.js.map deleted file mode 100644 index 9960b31..0000000 --- a/themes/buck/source/index.js.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../src/index.ts"], - "sourcesContent": ["import { createRoot } from \"solid-js\";\nimport { renderLocalTimeOn } from \"./uxaddon/time.js\";\n\ncreateRoot(() => {\n renderLocalTimeOn(document.querySelectorAll(\".post-item-title > time\"));\n});\n"], - "mappings": "+CAGAA,EAAW,IAAM,CACfC,EAAkB,SAAS,iBAAiB,yBAAyB,CAAC,CACxE,CAAC", - "names": ["createRoot", "renderLocalTimeOn"] -} diff --git a/themes/buck/source/mastodon-purple-EGLRNBKD.svg b/themes/buck/source/mastodon-purple-EGLRNBKD.svg deleted file mode 100644 index 0f8baeb..0000000 --- a/themes/buck/source/mastodon-purple-EGLRNBKD.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/themes/buck/source/materialdesignicons-webfont-2SQAMWAN.woff2 b/themes/buck/source/materialdesignicons-webfont-2SQAMWAN.woff2 deleted file mode 100644 index 9ef1ab3..0000000 Binary files a/themes/buck/source/materialdesignicons-webfont-2SQAMWAN.woff2 and /dev/null differ diff --git a/themes/buck/source/materialdesignicons-webfont-2WXZLZJV.woff b/themes/buck/source/materialdesignicons-webfont-2WXZLZJV.woff deleted file mode 100644 index c98a100..0000000 Binary files a/themes/buck/source/materialdesignicons-webfont-2WXZLZJV.woff and /dev/null differ diff --git a/themes/buck/source/materialdesignicons-webfont-DCJ6DTF2.ttf b/themes/buck/source/materialdesignicons-webfont-DCJ6DTF2.ttf deleted file mode 100644 index 761dfaf..0000000 Binary files a/themes/buck/source/materialdesignicons-webfont-DCJ6DTF2.ttf and /dev/null differ diff --git a/themes/buck/source/materialdesignicons-webfont-MKFTG4XX.eot b/themes/buck/source/materialdesignicons-webfont-MKFTG4XX.eot deleted file mode 100644 index 079d5a0..0000000 Binary files a/themes/buck/source/materialdesignicons-webfont-MKFTG4XX.eot and /dev/null differ diff --git a/themes/buck/source/page.css b/themes/buck/source/page.css deleted file mode 100644 index c0284f6..0000000 --- a/themes/buck/source/page.css +++ /dev/null @@ -1,2 +0,0 @@ -:root{--palette-black: #000000;--palette-white: #ffffff;--palette-blue-50: #e3f2fd;--palette-blue-50-fg: var(--palette-black);--palette-blue-100: #bbdefb;--palette-blue-100-fg: var(--palette-black);--palette-blue-200: #90caf9;--palette-blue-200-fg: var(--palette-black);--palette-blue-400: #42a5f5;--palette-blue-400-fg: var(--palette-black);--palette-blue-500: #2196f3;--palette-blue-500-fg: var(--palette-black);--palette-blue-600: #1e88e5;--palette-blue-600-fg: var(--palette-white);--palette-blue-700: #1976d2;--palette-blue-700-fg: var(--palette-white);--palette-blue-800: #1565c0;--palette-blue-800-fg: var(--palette-white);--palette-blue-900: #0d47a1;--palette-blue-900-fg: var(--palette-white);--palette-blue-a100: #82b1ff;--palette-blue-a100-fg: var(--palette-black);--palette-blue-a200: #448aff;--palette-blue-a200-fg: var(--palette-white);--palette-blue-a400: #2979ff;--palette-blue-a400-fg: var(--palette-white);--palette-blue-a700: #2962ff;--palette-blue-a700-fg: var(--palette-white);--palette-grey-50: #fafafa;--palette-grey-50-fg: var(--palette-black);--palette-grey-100: #f5f5f5;--palette-grey-100-fg: var(--palette-black);--palette-grey-200: #eeeeee;--palette-grey-200-fg: var(--palette-black);--palette-grey-300: #e0e0e0;--palette-grey-300-fg: var(--palette-black);--palette-grey-400: #bdbdbd;--palette-grey-400-fg: var(--palette-black);--palette-grey-500: #9e9e9e;--palette-grey-500-fg: var(--palette-black);--palette-grey-600: #757575;--palette-grey-600-fg: white;--palette-grey-700: #616161;--palette-grey-700-fg: white;--palette-pink-500: #e91e63;--palette-pink-500-fg: var(--palette-white)}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-cyrillic-ext-400-normal-26BHVYZO.woff2") format("woff2"),url("./roboto-cyrillic-ext-400-normal-ALQYG4VR.woff") format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-cyrillic-400-normal-FWOJ2YEY.woff2") format("woff2"),url("./roboto-cyrillic-400-normal-DH4TKATE.woff") format("woff");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-greek-ext-400-normal-FNKH33MZ.woff2") format("woff2"),url("./roboto-greek-ext-400-normal-2F7V6K4G.woff") format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-greek-400-normal-MPTNYGBL.woff2") format("woff2"),url("./roboto-greek-400-normal-4O2YO26M.woff") format("woff");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-vietnamese-400-normal-ZFP4AYPR.woff2") format("woff2"),url("./roboto-vietnamese-400-normal-WM45SJXN.woff") format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-latin-ext-400-normal-EGV4RSGY.woff2") format("woff2"),url("./roboto-latin-ext-400-normal-SYALJJTN.woff") format("woff");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:400;src:url("./roboto-latin-400-normal-6KEU5XHX.woff2") format("woff2"),url("./roboto-latin-400-normal-23KM663I.woff") format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-cyrillic-ext-100-normal-GB4EOHW3.woff2") format("woff2"),url("./roboto-cyrillic-ext-100-normal-JVQUE5YG.woff") format("woff");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-cyrillic-100-normal-BCJFGWFF.woff2") format("woff2"),url("./roboto-cyrillic-100-normal-SJKZD3PH.woff") format("woff");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-greek-ext-100-normal-IU4AEIW2.woff2") format("woff2"),url("./roboto-greek-ext-100-normal-WGDKWHRF.woff") format("woff");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-greek-100-normal-S3FDCEDH.woff2") format("woff2"),url("./roboto-greek-100-normal-HAPQGQT7.woff") format("woff");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-vietnamese-100-normal-VC33Q5KS.woff2") format("woff2"),url("./roboto-vietnamese-100-normal-RG3VSYYM.woff") format("woff");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-latin-ext-100-normal-S6APGXBJ.woff2") format("woff2"),url("./roboto-latin-ext-100-normal-G4DULEH7.woff") format("woff");unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-display:swap;font-weight:100;src:url("./roboto-latin-100-normal-H6TJBNRU.woff2") format("woff2"),url("./roboto-latin-100-normal-PKD3V7F6.woff") format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}*{margin:0;box-sizing:border-box;font-family:var(--font-family-sans)}:root{--font-family-sans: Roboto, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;--p-primary: var(--palette-blue-500);--p-primary-fg: var(--palette-blue-500-fg);--p-secondary: var(--palette-pink-500);--p-secondary-fg: var(--palette-pink-500-fg);--typ-r-display4: lighter 7rem / 7rem var(--font-family-sans);--typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans);--typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans);--typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans);--typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans);--typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans);--typ-r-subheading: normal 1rem / 1rem var(--font-family-sans);--typ-r-body2: bold .875rem / .875rem var(--font-family-sans);--typ-r-body1: normal .875rem / .875rem var(--font-family-sans);--typ-r-caption: normal .75rem / .75rem var(--font-family-sans);--typ-r-button: bold .875rem / .875rem var(--font-family-sans);--typ-d-display4: var(--typ-r-display4);--typ-d-display3: var(--typ-r-display3);--typ-d-display2: var(--typ-r-display2);--typ-d-display1: var(--typ-r-display1);--typ-d-headline: var(--typ-r-headline);--typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans);--typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans);--typ-d-body2: bold .9375rem / .9375rem var(--font-family-sans);--typ-d-body1: normal .9375rem / .9375rem var(--font-family-sans);--typ-d-caption: normal .8125rem / .8125rem var(--font-family-sans);--typ-d-button: bold .9375rem / .9375rem var(--font-family-sans);--elevation-0: 0px;--elevation-1: 1px;--elevation-2: 2px;--elevation-3: 3px;--elevation-4: 4px;--elevation-5: 6px;--elevation-6: 8px;--elevation-7: 9px;--elevation-8: 12px;--elevation-9: 16px;--elevation-10: 24px;--box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, .15);--box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, .15);--box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, .15);--box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, .15);--link-bg: var(--palette-blue-50);--link-color: var(--palette-blue-50-fg);--link-bg-hover: var(--palette-blue-100);--link-color-hover: var(--palette-blue-100-fg);--typ-display4: var(--typ-r-display4);--typ-display3: var(--typ-r-display3);--typ-display2: var(--typ-r-display2);--typ-display1: var(--typ-r-display1);--typ-headline: var(--typ-r-display1);--typ-title: var(--typ-r-title);--typ-subheading: var(--typ-r-subheading);--typ-body2: var(--typ-r-body2);--typ-body1: var(--typ-r-body1);--typ-caption: var(--typ-r-caption);--typ-button: var(--typ-r-button)}:root:is([lang~=zh],[lang~=ja],[lang~=kr]){--typ-title: var(--typ-d-headline);--typ-subheading: var(--typ-d-subheading);--typ-body2: var(--typ-d-body2);--typ-body1: var(--typ-d-body1);--typ-caption: var(--typ-d-caption);--typ-button: var(--typ-d-button)}table{--table-header-color: rgba(0, 0, 0, .54);--table-content-color: rgba(0, 0, 0, .87);--table-background-color: white}:root{font:var(--typ-body1)}h1{font:var(--typ-display4)}h2{font:var(--typ-display3)}h3{font:var(--typ-display2)}h4{font:var(--typ-display1)}h5{font:var(--typ-headline)}h6{font:var(--typ-title)}.container{width:80%;margin:auto}@media (max-width: 600px){.container{width:100%}}.nav-wrapper{background-color:var(--p-primary);box-shadow:var(--box-shadow-4)}nav.site{--nav-site-height: 4rem;display:flex;flex-wrap:wrap-reverse;justify-content:space-between;white-space:nowrap;min-height:var(--nav-site-height);color:var(--palette-white);width:80%;margin:auto;padding-inline:8px}nav.site>*{display:flex;align-items:center}@media (max-width: 1280px){nav.site{width:90%}}@media (max-width: 600px){nav.site{width:100%}}nav.site a{font:var(--typ-button);display:inline-block;line-height:var(--nav-site-height);padding:0 16px;transition:background-color .2s ease-in-out;background-color:transparent;color:var(--palette-white)}nav.site a:hover{color:inherit;background-color:#0000001a}:where(a):not([href^="#"]){display:inline-block;color:var(--link-color);text-decoration:none;background-color:var(--link-bg);border-radius:4px;padding:4px 8px;transition:background-color .2s ease-in-out,color .2s ease-in-out;min-width:44px}:where(a):not([href^="#"]):hover{background-color:var(--link-bg-hover);color:var(--link-color-hover)}:where(a):not([href^="#"])[target=_blank]:after{content:url('data:image/svg+xml,open-in-new');display:inline-block;width:1rem;height:1rem}nav.site .textinput-lg{background-color:#ffffff40;border:none;outline:none;border-radius:2px;font-size:1rem;line-height:2rem;vertical-align:middle;flex-grow:1;transition:background-color .2s ease-in-out,width .2s ease-in-out,box-shadow .2s ease-in-out;padding-inline:1rem}nav.site .textinput-lg::placeholder{color:#fff}nav.site .textinput-lg:focus{background-color:#fff;box-shadow:var(--box-shadow-9)}nav.site .textinput-lg:focus::placeholder{color:transparent;text-align:center}@media (max-width: 600px){nav.site .textinput-lg{width:100%}}nav.site>*:first-child>*:first-child{padding-left:16px}nav.site :where(h1,h2,h3,h4,h5,h6){text-overflow:ellipsis;overflow:hidden;line-height:var(--nav-site-height)}.circle{border-radius:50%}.highlight{display:block;overflow-x:auto;padding:.5em;background:#fff;color:#000}.code .xml .meta{color:silver}.code .comment,.code .quote{color:#007400}.code .tag,.code .attribute,.code .keyword,.code .selector-tag,.code .literal,.code .name{color:#aa0d91}.code .variable,.code .template-variable{color:#3f6e74}.code .code,.code .string,.code .meta-string{color:#c41a16}.code .regexp,.code .link{color:#0e0eff}.code .title,.code .symbol,.code .bullet,.code .number{color:#1c00cf}.code .section,.code .meta{color:#643820}.code .class .title,.code .type,.code .built_in,.code .builtin-name,.code .params{color:#5c2699}.code .attr{color:#836c28}.code .subst{color:#000}.code .formula{background-color:#eee;font-style:italic}.code .addition{background-color:#baeeba}.code .deletion{background-color:#ffc8bd}.code .selector-id,.code .selector-class{color:#9b703f}.code .doctag,.code .strong{font-weight:700}.code .emphasis{font-style:italic}.content{line-height:1.5}.content>p{padding:16px}.content>p>img{width:100%;object-fit:contain;object-position:50% 50%;min-height:44px;max-height:40vh}.content>p>a>img{max-width:100%;object-fit:contain}.content>:where(h1,h2,h3,h4,h5,h6){margin-inline:16px;-webkit-hyphens:auto;hyphens:auto;text-wrap:wrap;text-wrap:pretty}.content>#more{display:block;width:100%;border-top:1px solid var(--palette-grey-200)}.content>:where(ul,ol){background-color:var(--palette-white);line-height:1.5}.content>:where(ul,ol)>li{border-top:1px solid transparent;border-bottom:1px solid transparent;transition:border-color .22s ease-in-out}.content>:where(ul,ol)>li:hover{border-top-color:var(--palette-grey-200);border-bottom-color:var(--palette-grey-400)}.content>:where(ul,ol)>li:hover+li{border-bottom-color:var(--palette-grey-200)}.content hr{border:none;border-top:1px solid var(--palette-grey-300);margin-inline:16px}.content>:where(h2,h3,h4,h5,h6){margin-top:16px;margin-bottom:8px}.table-responsive{max-width:100%;overflow-y:auto}:where(.content>table,.content>.table-responsive>table){background-color:var(--table-background-color);width:100%;white-space:nowrap;border:1px solid var(--palette-grey-300);border-collapse:collapse}:where(.content>table,.content>.table-responsive>table)>:where(thead,tbody)>tr>:first-child{padding-inline-start:16px}:where(.content>table,.content>.table-responsive>table)>:where(thead,tbody)>tr>:last-child{padding-inline-end:16px}:where(.content>table,.content>.table-responsive>table)>thead{color:var(--table-header-color)}:where(.content>table,.content>.table-responsive>table)>thead>tr{border-bottom:1px solid var(--palette-grey-300)}:where(.content>table,.content>.table-responsive>table)>thead>tr>th{padding-block:15px;text-align:start}:where(.content>table,.content>.table-responsive>table)>thead>tr>th:is(:hover,.table-column-hover){color:var(--table-content-color)}:where(.content>table,.content>.table-responsive>table)>thead>tr>th[align=center]{text-align:center}:where(.content>table,.content>.table-responsive>table)>thead>tr>th[align=right]{text-align:end}:where(.content>table,.content>.table-responsive>table)>tbody{color:var(--table-content-color)}:where(.content>table,.content>.table-responsive>table)>tbody>tr>td{padding-block:15px;text-align:start}:where(.content>table,.content>.table-responsive>table)>tbody>tr>td[align=center]{text-align:center}:where(.content>table,.content>.table-responsive>table)>tbody>tr>td[align=right]{text-align:end}:where(.content>table,.content>.table-responsive>table)>tbody>tr:first-child{border-top:1px solid transparent}:where(.content>table,.content>.table-responsive>table)>tbody>tr+:is(:where(.content>table,.content>.table-responsive>table)>tbody>tr){border-top:1px solid var(--palette-grey-300)}:where(.content>table,.content>.table-responsive>table)>tbody>tr:hover{background-color:var(--palette-grey-200)}.content figure{border-radius:2px}.content figure.highlight{padding:0 8px;outline:1px solid var(--palette-grey-300);transition:box-shadow .22s ease-in-out;line-height:1.25;min-height:44px}.content figure.highlight:hover{box-shadow:var(--box-shadow-4)}.content figure.highlight .gutter{border-inline-end:1px solid var(--palette-grey-200);margin-inline-end:8px}.content figure.highlight .gutter>pre>.line{display:block;width:100%;text-align:end}.content figure.highlight .gutter>pre>br{display:none}.content figure.highlight .code .line{border-bottom:1px solid transparent}.content figure.highlight .code .line:hover{border-bottom:1px solid var(--palette-grey-500)}.content kbd{padding:6px;margin-inline:2px;background-color:var(--palette-black);color:var(--palette-white);border-radius:4px}.content dl>dt{font:var(--typ-body2);margin-left:16px}.content dl>dd{margin-left:32px}.content blockquote{background-color:#fff;padding-left:12px;margin-block:16px;border:1px solid var(--palette-grey-200);border-left:4px solid var(--p-secondary)}.content blockquote:is(:hover,:focus){outline:1px solid var(--palette-grey-400)}.content .video-container{width:100%;border:1px solid var(--palette-grey-200)}.content .video-container>iframe{width:100%}:root{background-color:var(--palette-grey-200)}#_layout{display:grid;grid-template-columns:1fr auto 1fr;margin:auto}#_layout>*{overflow:hidden;word-wrap:normal}.page-metadata{display:grid;justify-content:flex-end;margin-inline:16px;gap:4px;color:var(--palette-grey-700)}.page-metadata>*{display:flex;gap:2px;justify-content:flex-end}main{max-width:70rem;margin-top:32px;margin-bottom:calc(env(safe-area-insets-bottom,16px) + 16px);background-color:var(--palette-grey-50);padding-block:16px;border-radius:2px} -/*# sourceMappingURL=page.css.map */ diff --git a/themes/buck/source/page.css.map b/themes/buck/source/page.css.map deleted file mode 100644 index c4554d2..0000000 --- a/themes/buck/source/page.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../src/styles/palette.css", "../node_modules/.pnpm/@fontsource+roboto@5.0.8/node_modules/@fontsource/roboto/400.css", "../node_modules/.pnpm/@fontsource+roboto@5.0.8/node_modules/@fontsource/roboto/100.css", "../src/styles/material.css", "../src/styles/codehighlight/xcode.css", "../src/styles/content.css", "../src/page.css"], - "sourcesContent": [":root {\n --palette-black: #000000;\n --palette-white: #ffffff;\n\n --palette-blue-50: #e3f2fd;\n --palette-blue-50-fg: var(--palette-black);\n --palette-blue-100: #bbdefb;\n --palette-blue-100-fg: var(--palette-black);\n --palette-blue-200: #90caf9;\n --palette-blue-200-fg: var(--palette-black);\n --palette-blue-400: #42a5f5;\n --palette-blue-400-fg: var(--palette-black);\n --palette-blue-500: #2196f3;\n --palette-blue-500-fg: var(--palette-black);\n --palette-blue-600: #1e88e5;\n --palette-blue-600-fg: var(--palette-white);\n --palette-blue-700: #1976d2;\n --palette-blue-700-fg: var(--palette-white);\n --palette-blue-800: #1565c0;\n --palette-blue-800-fg: var(--palette-white);\n --palette-blue-900: #0d47a1;\n --palette-blue-900-fg: var(--palette-white);\n --palette-blue-a100: #82b1ff;\n --palette-blue-a100-fg: var(--palette-black);\n --palette-blue-a200: #448aff;\n --palette-blue-a200-fg: var(--palette-white);\n --palette-blue-a400: #2979ff;\n --palette-blue-a400-fg: var(--palette-white);\n --palette-blue-a700: #2962ff;\n --palette-blue-a700-fg: var(--palette-white);\n\n --palette-grey-50: #fafafa;\n --palette-grey-50-fg: var(--palette-black);\n --palette-grey-100: #f5f5f5;\n --palette-grey-100-fg: var(--palette-black);\n --palette-grey-200: #eeeeee;\n --palette-grey-200-fg: var(--palette-black);\n --palette-grey-300: #e0e0e0;\n --palette-grey-300-fg: var(--palette-black);\n --palette-grey-400: #bdbdbd;\n --palette-grey-400-fg: var(--palette-black);\n --palette-grey-500: #9e9e9e;\n --palette-grey-500-fg: var(--palette-black);\n --palette-grey-600: #757575;\n --palette-grey-600-fg: white;\n --palette-grey-700: #616161;\n --palette-grey-700-fg: white;\n\n --palette-pink-500: #e91e63;\n --palette-pink-500-fg: var(--palette-white);\n}\n", "/* roboto-cyrillic-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-ext-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-400-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-cyrillic-400-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-400-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-ext-400-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-400-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-greek-400-normal.woff2) format('woff2'), url(./files/roboto-greek-400-normal.woff) format('woff');\n unicode-range: U+0370-03FF;\n}\n\n/* roboto-vietnamese-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-vietnamese-400-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-400-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-ext-400-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-400-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-400-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url(./files/roboto-latin-400-normal.woff2) format('woff2'), url(./files/roboto-latin-400-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}", "/* roboto-cyrillic-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-cyrillic-ext-100-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-ext-100-normal.woff) format('woff');\n unicode-range: U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;\n}\n\n/* roboto-cyrillic-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-cyrillic-100-normal.woff2) format('woff2'), url(./files/roboto-cyrillic-100-normal.woff) format('woff');\n unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;\n}\n\n/* roboto-greek-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-greek-ext-100-normal.woff2) format('woff2'), url(./files/roboto-greek-ext-100-normal.woff) format('woff');\n unicode-range: U+1F00-1FFF;\n}\n\n/* roboto-greek-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-greek-100-normal.woff2) format('woff2'), url(./files/roboto-greek-100-normal.woff) format('woff');\n unicode-range: U+0370-03FF;\n}\n\n/* roboto-vietnamese-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-vietnamese-100-normal.woff2) format('woff2'), url(./files/roboto-vietnamese-100-normal.woff) format('woff');\n unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;\n}\n\n/* roboto-latin-ext-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-latin-ext-100-normal.woff2) format('woff2'), url(./files/roboto-latin-ext-100-normal.woff) format('woff');\n unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;\n}\n\n/* roboto-latin-100-normal */\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-display: swap;\n font-weight: 100;\n src: url(./files/roboto-latin-100-normal.woff2) format('woff2'), url(./files/roboto-latin-100-normal.woff) format('woff');\n unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;\n}", "@import \"./palette.css\";\n@import \"@fontsource/roboto/400.css\";\n@import \"@fontsource/roboto/100.css\";\n\n* {\n margin: 0;\n box-sizing: border-box;\n font-family: var(--font-family-sans);\n}\n\n:root {\n --font-family-sans: Roboto, \"Noto Sans\", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;\n --p-primary: var(--palette-blue-500);\n --p-primary-fg: var(--palette-blue-500-fg);\n --p-secondary: var(--palette-pink-500);\n --p-secondary-fg: var(--palette-pink-500-fg);\n\n --typ-r-display4: lighter 7rem / 7rem var(--font-family-sans);\n --typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans);\n --typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans);\n --typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans);\n --typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans);\n --typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans);\n --typ-r-subheading: normal 1rem / 1rem var(--font-family-sans);\n --typ-r-body2: bold 0.875rem / 0.875rem var(--font-family-sans);\n --typ-r-body1: normal 0.875rem / 0.875rem var(--font-family-sans);\n --typ-r-caption: normal 0.75rem / 0.75rem var(--font-family-sans);\n --typ-r-button: bold 0.875rem / 0.875rem var(--font-family-sans);\n\n --typ-d-display4: var(--typ-r-display4);\n --typ-d-display3: var(--typ-r-display3);\n --typ-d-display2: var(--typ-r-display2);\n --typ-d-display1: var(--typ-r-display1);\n --typ-d-headline: var(--typ-r-headline);\n --typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans);\n --typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans);\n --typ-d-body2: bold 0.9375rem / 0.9375rem var(--font-family-sans);\n --typ-d-body1: normal 0.9375rem / 0.9375rem var(--font-family-sans);\n --typ-d-caption: normal 0.8125rem / 0.8125rem var(--font-family-sans);\n --typ-d-button: bold 0.9375rem / 0.9375rem var(--font-family-sans);\n\n & {\n --typ-display4: var(--typ-r-display4);\n --typ-display3: var(--typ-r-display3);\n --typ-display2: var(--typ-r-display2);\n --typ-display1: var(--typ-r-display1);\n --typ-headline: var(--typ-r-display1);\n --typ-title: var(--typ-r-title);\n --typ-subheading: var(--typ-r-subheading);\n --typ-body2: var(--typ-r-body2);\n --typ-body1: var(--typ-r-body1);\n --typ-caption: var(--typ-r-caption);\n --typ-button: var(--typ-r-button);\n }\n\n &[lang~=\"zh\"],\n &[lang~=\"ja\"],\n &[lang~=\"kr\"] {\n --typ-title: var(--typ-d-headline);\n --typ-subheading: var(--typ-d-subheading);\n --typ-body2: var(--typ-d-body2);\n --typ-body1: var(--typ-d-body1);\n --typ-caption: var(--typ-d-caption);\n --typ-button: var(--typ-d-button);\n }\n\n --elevation-0: 0px;\n --elevation-1: 1px;\n --elevation-2: 2px;\n --elevation-3: 3px;\n --elevation-4: 4px;\n --elevation-5: 6px;\n --elevation-6: 8px;\n --elevation-7: 9px;\n --elevation-8: 12px;\n --elevation-9: 16px;\n --elevation-10: 24px;\n\n --box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, 0.15);\n --box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, 0.15);\n --box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, 0.15);\n --box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, 0.15);\n\n --link-bg: var(--palette-blue-50);\n --link-color: var(--palette-blue-50-fg);\n --link-bg-hover: var(--palette-blue-100);\n --link-color-hover: var(--palette-blue-100-fg);\n}\n\ntable {\n --table-header-color: rgba(0, 0, 0, 0.54);\n --table-content-color: rgba(0, 0, 0, 0.87);\n --table-background-color: white;\n}\n\n:root {\n font: var(--typ-body1);\n}\n\nh1 {\n font: var(--typ-display4);\n}\n\nh2 {\n font: var(--typ-display3);\n}\n\nh3 {\n font: var(--typ-display2);\n}\n\nh4 {\n font: var(--typ-display1);\n}\n\nh5 {\n font: var(--typ-headline);\n}\n\nh6 {\n font: var(--typ-title);\n}\n\n.container {\n width: 80%;\n margin: auto;\n}\n\n@media (max-width: 600px) {\n .container {\n width: 100%;\n }\n}\n\n.nav-wrapper {\n background-color: var(--p-primary);\n box-shadow: var(--box-shadow-4);\n}\n\nnav.site {\n --nav-site-height: 4rem;\n\n display: flex;\n flex-wrap: wrap-reverse;\n justify-content: space-between;\n white-space: nowrap;\n\n min-height: var(--nav-site-height);\n color: var(--palette-white);\n width: 80%;\n margin: auto;\n padding-inline: 8px;\n\n >* {\n display: flex;\n align-items: center;\n }\n}\n\n@media (max-width: 1280px) {\n nav.site {\n width: 90%;\n }\n}\n\n@media (max-width: 600px) {\n nav.site {\n width: 100%;\n }\n}\n\nnav.site a {\n font: var(--typ-button);\n display: inline-block;\n line-height: var(--nav-site-height);\n padding: 0 16px;\n transition: background-color .2s ease-in-out;\n background-color: transparent;\n color: var(--palette-white);\n\n &:hover {\n color: inherit;\n background-color: rgba(0, 0, 0, 0.1);\n }\n}\n\n:where(a):not([href^=\"#\"]) {\n display: inline-block;\n color: var(--link-color);\n text-decoration: none;\n background-color: var(--link-bg);\n border-radius: 4px;\n padding: 4px 8px;\n transition: background-color .2s ease-in-out, color .2s ease-in-out;\n min-width: 44px;\n\n &:hover {\n background-color: var(--link-bg-hover);\n color: var(--link-color-hover);\n }\n\n &[target=\"_blank\"]::after {\n content: url('data:image/svg+xml,open-in-new');\n display: inline-block;\n width: 1rem;\n height: 1rem;\n }\n\n}\n\nnav.site .textinput-lg {\n background-color: rgba(255, 255, 255, 0.25);\n border: none;\n outline: none;\n border-radius: 2px;\n font-size: 1rem;\n line-height: 2rem;\n vertical-align: middle;\n flex-grow: 1;\n transition: background-color .2s ease-in-out, width .2s ease-in-out, box-shadow .2s ease-in-out;\n padding-inline: 1rem;\n\n &::placeholder {\n color: white;\n }\n\n &:focus {\n background-color: white;\n box-shadow: var(--box-shadow-9);\n\n &::placeholder {\n color: transparent;\n text-align: center;\n }\n }\n}\n\n@media (max-width: 600px) {\n nav.site .textinput-lg {\n width: 100%;\n }\n}\n\nnav.site > *:first-child > *:first-child {\n padding-left: 16px;\n}\n\nnav.site :where(h1, h2, h3, h4, h5, h6) {\n text-overflow: ellipsis;\n overflow: hidden;\n line-height: var(--nav-site-height);\n}\n\n.circle {\n border-radius: 50% 50%;\n}\n", "/*\n\nXCode style (c) Angel Garcia \n\nPorted to Hexo highlight.js system by Rubicon \n\n*/\n\n.highlight {\n display: block;\n overflow-x: auto;\n padding: 0.5em;\n background: #fff;\n color: black;\n}\n\n/* Gray DOCTYPE selectors like WebKit */\n.code .xml .meta {\n color: #c0c0c0;\n}\n\n.code .comment,\n.code .quote {\n color: #007400;\n}\n\n.code .tag,\n.code .attribute,\n.code .keyword,\n.code .selector-tag,\n.code .literal,\n.code .name {\n color: #aa0d91;\n}\n\n.code .variable,\n.code .template-variable {\n color: #3F6E74;\n}\n\n.code .code,\n.code .string,\n.code .meta-string {\n color: #c41a16;\n}\n\n.code .regexp,\n.code .link {\n color: #0E0EFF;\n}\n\n.code .title,\n.code .symbol,\n.code .bullet,\n.code .number {\n color: #1c00cf;\n}\n\n.code .section,\n.code .meta {\n color: #643820;\n}\n\n\n.code .class .title,\n.code .type,\n.code .built_in,\n.code .builtin-name,\n.code .params {\n color: #5c2699;\n}\n\n.code .attr {\n color: #836C28;\n}\n\n.code .subst {\n color: #000;\n}\n\n.code .formula {\n background-color: #eee;\n font-style: italic;\n}\n\n.code .addition {\n background-color: #baeeba;\n}\n\n.code .deletion {\n background-color: #ffc8bd;\n}\n\n.code .selector-id,\n.code .selector-class {\n color: #9b703f;\n}\n\n.code .doctag,\n.code .strong {\n font-weight: bold;\n}\n\n.code .emphasis {\n font-style: italic;\n}\n", "@import \"./codehighlight/xcode.css\";\n\n.content {\n line-height: 1.5;\n\n >p {\n padding: 16px;\n\n >img {\n width: 100%;\n object-fit: contain;\n object-position: 50% 50%;\n min-height: 44px;\n max-height: 40vh;\n }\n\n >a>img {\n max-width: 100%;\n object-fit: contain;\n }\n }\n\n > :where(h1, h2, h3, h4, h5, h6) {\n margin-inline: 16px;\n hyphens: auto;\n text-wrap: wrap;\n text-wrap: pretty;\n }\n\n >#more {\n display: block;\n width: 100%;\n border-top: 1px solid var(--palette-grey-200);\n }\n\n > :where(ul, ol) {\n background-color: var(--palette-white);\n line-height: 1.5;\n\n >li {\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n transition: border-color 220ms ease-in-out;\n\n &:hover {\n border-top-color: var(--palette-grey-200);\n border-bottom-color: var(--palette-grey-400);\n\n &+li {\n border-bottom-color: var(--palette-grey-200);\n }\n }\n }\n }\n\n hr {\n border: none;\n border-top: 1px solid var(--palette-grey-300);\n margin-inline: 16px;\n }\n\n > :where(h2, h3, h4, h5, h6) {\n margin-top: 16px;\n margin-bottom: 8px;\n }\n}\n\n.table-responsive {\n max-width: 100%;\n overflow-y: auto;\n}\n\n:where(.content > table, .content > .table-responsive > table) {\n background-color: var(--table-background-color);\n width: 100%;\n white-space: nowrap;\n border: 1px solid var(--palette-grey-300);\n border-collapse: collapse;\n\n > :where(thead, tbody) > tr {\n & > :first-child {\n padding-inline-start: 16px;\n }\n\n & > :last-child {\n padding-inline-end: 16px;\n }\n }\n\n >thead {\n color: var(--table-header-color);\n\n >tr {\n border-bottom: 1px solid var(--palette-grey-300);\n >th {\n padding-block: 15px;\n text-align: start;\n\n &:hover, &.table-column-hover {\n color: var(--table-content-color);\n }\n\n &[align=\"center\"] {\n text-align: center;\n }\n\n &[align=\"right\"] {\n text-align: end;\n }\n }\n }\n }\n\n >tbody {\n color: var(--table-content-color);\n\n >tr {\n >td {\n padding-block: 15px;\n text-align: start;\n\n &[align=\"center\"] {\n text-align: center;\n }\n\n &[align=\"right\"] {\n text-align: end;\n }\n }\n\n &:first-child {\n border-top: 1px solid transparent;\n }\n\n &+& {\n border-top: 1px solid var(--palette-grey-300);\n }\n\n &:hover {\n background-color: var(--palette-grey-200);\n }\n }\n }\n}\n\n.content figure {\n border-radius: 2px;\n\n &.highlight {\n padding: 0 8px;\n outline: 1px solid var(--palette-grey-300);\n transition: box-shadow 220ms ease-in-out;\n line-height: 1.25;\n min-height: 44px;\n\n &:hover {\n box-shadow: var(--box-shadow-4);\n }\n\n .gutter {\n border-inline-end: 1px solid var(--palette-grey-200);\n margin-inline-end: 8px;\n\n >pre {\n >.line {\n display: block;\n width: 100%;\n text-align: end;\n }\n\n >br {\n display: none;\n }\n }\n }\n\n .code {\n .line {\n border-bottom: 1px solid transparent;\n\n &:hover {\n border-bottom: 1px solid var(--palette-grey-500);\n }\n }\n }\n }\n}\n\n.content kbd {\n padding: 6px;\n margin-inline: 2px;\n background-color: var(--palette-black);\n color: var(--palette-white);\n border-radius: 4px;\n}\n\n.content dl {\n >dt {\n font: var(--typ-body2);\n margin-left: 16px;\n }\n\n >dd {\n margin-left: 32px;\n }\n}\n\n.content blockquote {\n background-color: white;\n padding-left: 12px;\n margin-block: 16px;\n border: 1px solid var(--palette-grey-200);\n border-left: 4px solid var(--p-secondary);\n\n &:hover, &:focus {\n outline: 1px solid var(--palette-grey-400);\n }\n}\n\n.content .video-container {\n width: 100%;\n border: 1px solid var(--palette-grey-200);\n\n > iframe {\n width: 100%;\n }\n}\n", "@import \"./styles/material.css\";\n@import \"./styles/content.css\";\n\n:root {\n background-color: var(--palette-grey-200);\n}\n\n#_layout {\n display: grid;\n grid-template-columns: 1fr auto 1fr;\n margin: auto;\n\n &>* {\n overflow: hidden;\n word-wrap: normal;\n }\n}\n\n.page-metadata {\n display: grid;\n justify-content: flex-end;\n margin-inline: 16px;\n gap: 4px;\n color: var(--palette-grey-700);\n\n > * {\n display: flex;\n gap: 2px;\n justify-content: flex-end;\n }\n}\n\nmain {\n max-width: 70rem;\n margin-top: 32px;\n margin-bottom: calc(env(safe-area-insets-bottom, 16px) + 16px);\n background-color: var(--palette-grey-50);\n padding-block: 16px;\n border-radius: 2px;\n}\n"], - "mappings": "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", - "names": [] -} diff --git a/themes/buck/source/page.js b/themes/buck/source/page.js deleted file mode 100644 index 4579909..0000000 --- a/themes/buck/source/page.js +++ /dev/null @@ -1,2 +0,0 @@ -import{a as c,b as a,c as m,d}from"./chunk-Q4ALCKUU.js";function i(o,n){for(let l of o)a(()=>{let e=document.createElement("div");e.classList.add(...n),l.replaceWith(e),e.appendChild(l)})}function f(o){let n=o.parentElement,l=n.cells;for(let e=0;e tr > th").item(e);return null}var s="table-column-hover";function u(o){for(let n of o){if(!(n instanceof HTMLTableElement)){console.warn(n,"is unable to be rendered as advanced table");continue}let l=t=>{let r=f(t.target);r.classList.contains(s)||r.classList.add(s)},e=t=>{let r=f(t.target);r.classList.contains(s)&&r.classList.remove(s)};a(()=>{for(let t of n.querySelectorAll("td"))t.addEventListener("mouseenter",l),t.addEventListener("mouseleave",e)}),m(()=>{for(let t of n.querySelectorAll("td"))t.removeEventListener("mouseenter",l),t.removeEventListener("mouseenter",e)})}}c(()=>{d(document.querySelectorAll("[data-time-format]")),i(document.querySelectorAll("main > table"),["table-responsive"]),u(document.querySelectorAll("main > .table-responsive > table"))}); -//# sourceMappingURL=page.js.map diff --git a/themes/buck/source/page.js.map b/themes/buck/source/page.js.map deleted file mode 100644 index cfa2091..0000000 --- a/themes/buck/source/page.js.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../src/uxaddon/dom.ts", "../src/uxaddon/table.ts", "../src/page.ts"], - "sourcesContent": ["import { createRenderEffect } from \"solid-js\";\n\n\nexport function wrapElementsInClass(elements: Iterable, classes: string[]) {\n for (const e of elements) {\n createRenderEffect(() => {\n const wrapper = document.createElement(\"div\");\n wrapper.classList.add(...classes);\n e.replaceWith(wrapper);\n wrapper.appendChild(e);\n });\n }\n}\n", "import { createRenderEffect, onCleanup } from \"solid-js\";\n\nfunction findCorrespondingTableHeadOfCell(target: HTMLTableCellElement): HTMLTableCellElement | null {\n const parentElement = target.parentElement as HTMLTableRowElement;\n const collection = parentElement.cells;\n for (let i = 0; i < collection.length; i++) {\n if (collection.item(i) === target) {\n const tbody = parentElement.parentElement\n const table = tbody.parentElement\n const allHeads =\n table.querySelectorAll(\n \"thead > tr > th\"\n );\n return allHeads.item(i) as HTMLTableCellElement;\n }\n }\n return null;\n}\n\nconst TABLE_COLUMN_HOVER_CLASSNAME = \"table-column-hover\";\n\nexport function renderAdvancedTablesOn(elements: Iterable) {\n for (const e of elements) {\n if (!(e instanceof HTMLTableElement)) {\n console.warn(e, \"is unable to be rendered as advanced table\");\n continue;\n }\n\n const onMouseEnter = (ev: MouseEvent) => {\n const head = findCorrespondingTableHeadOfCell(\n ev.target as HTMLTableCellElement\n );\n if (!head.classList.contains(TABLE_COLUMN_HOVER_CLASSNAME)) {\n head.classList.add(TABLE_COLUMN_HOVER_CLASSNAME);\n }\n };\n\n const onMouseLeave = (ev: MouseEvent) => {\n const head = findCorrespondingTableHeadOfCell(\n ev.target as HTMLTableCellElement\n );\n if (head.classList.contains(TABLE_COLUMN_HOVER_CLASSNAME)) {\n head.classList.remove(TABLE_COLUMN_HOVER_CLASSNAME);\n }\n };\n\n createRenderEffect(() => {\n for (const td of e.querySelectorAll(\"td\")) {\n td.addEventListener(\"mouseenter\", onMouseEnter);\n td.addEventListener(\"mouseleave\", onMouseLeave);\n }\n });\n\n onCleanup(() => {\n for (const td of e.querySelectorAll(\"td\")) {\n td.removeEventListener(\"mouseenter\", onMouseEnter);\n td.removeEventListener(\"mouseenter\", onMouseLeave);\n }\n });\n }\n}\n", "import { createRoot } from \"solid-js\";\nimport { renderLocalTimeOn } from \"./uxaddon/time.js\";\nimport { wrapElementsInClass } from \"./uxaddon/dom.js\";\nimport { renderAdvancedTablesOn } from \"./uxaddon/table.js\";\n\ncreateRoot(() => {\n renderLocalTimeOn(document.querySelectorAll(\"[data-time-format]\"))\n wrapElementsInClass(document.querySelectorAll(\"main > table\"), [\"table-responsive\"])\n renderAdvancedTablesOn(document.querySelectorAll(\"main > .table-responsive > table\"))\n})\n"], - "mappings": "wDAGO,SAASA,EAAoBC,EAA6BC,EAAmB,CAClF,QAAWC,KAAKF,EACdG,EAAmB,IAAM,CACvB,IAAMC,EAAU,SAAS,cAAc,KAAK,EAC5CA,EAAQ,UAAU,IAAI,GAAGH,CAAO,EAChCC,EAAE,YAAYE,CAAO,EACrBA,EAAQ,YAAYF,CAAC,CACvB,CAAC,CAEL,CCVA,SAASG,EAAiCC,EAA2D,CACnG,IAAMC,EAAgBD,EAAO,cACvBE,EAAaD,EAAc,MACjC,QAASE,EAAI,EAAGA,EAAID,EAAW,OAAQC,IACrC,GAAID,EAAW,KAAKC,CAAC,IAAMH,EAOzB,OANcC,EAAc,cACR,cAEZ,iBACJ,iBACF,EACc,KAAKE,CAAC,EAG1B,OAAO,IACT,CAEA,IAAMC,EAA+B,qBAE9B,SAASC,EAAuBC,EAA6B,CAClE,QAAWC,KAAKD,EAAU,CACxB,GAAI,EAAEC,aAAa,kBAAmB,CACpC,QAAQ,KAAKA,EAAG,4CAA4C,EAC5D,QACF,CAEA,IAAMC,EAAgBC,GAAmB,CACvC,IAAMC,EAAOX,EACXU,EAAG,MACL,EACKC,EAAK,UAAU,SAASN,CAA4B,GACvDM,EAAK,UAAU,IAAIN,CAA4B,CAEnD,EAEMO,EAAgBF,GAAmB,CACvC,IAAMC,EAAOX,EACXU,EAAG,MACL,EACIC,EAAK,UAAU,SAASN,CAA4B,GACtDM,EAAK,UAAU,OAAON,CAA4B,CAEtD,EAEAQ,EAAmB,IAAM,CACvB,QAAWC,KAAMN,EAAE,iBAAiB,IAAI,EACtCM,EAAG,iBAAiB,aAAcL,CAAY,EAC9CK,EAAG,iBAAiB,aAAcF,CAAY,CAElD,CAAC,EAEDG,EAAU,IAAM,CACd,QAAWD,KAAMN,EAAE,iBAAiB,IAAI,EACtCM,EAAG,oBAAoB,aAAcL,CAAY,EACjDK,EAAG,oBAAoB,aAAcF,CAAY,CAErD,CAAC,CACH,CACF,CCvDAI,EAAW,IAAM,CACfC,EAAkB,SAAS,iBAAiB,oBAAoB,CAAC,EACjEC,EAAoB,SAAS,iBAAiB,cAAc,EAAG,CAAC,kBAAkB,CAAC,EACnFC,EAAuB,SAAS,iBAAiB,kCAAkC,CAAC,CACtF,CAAC", - "names": ["wrapElementsInClass", "elements", "classes", "e", "createRenderEffect", "wrapper", "findCorrespondingTableHeadOfCell", "target", "parentElement", "collection", "i", "TABLE_COLUMN_HOVER_CLASSNAME", "renderAdvancedTablesOn", "elements", "e", "onMouseEnter", "ev", "head", "onMouseLeave", "createRenderEffect", "td", "onCleanup", "createRoot", "renderLocalTimeOn", "wrapElementsInClass", "renderAdvancedTablesOn"] -} diff --git a/themes/buck/source/roboto-cyrillic-100-normal-BCJFGWFF.woff2 b/themes/buck/source/roboto-cyrillic-100-normal-BCJFGWFF.woff2 deleted file mode 100644 index 122ac2c..0000000 Binary files a/themes/buck/source/roboto-cyrillic-100-normal-BCJFGWFF.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-100-normal-SJKZD3PH.woff b/themes/buck/source/roboto-cyrillic-100-normal-SJKZD3PH.woff deleted file mode 100644 index 73b14ac..0000000 Binary files a/themes/buck/source/roboto-cyrillic-100-normal-SJKZD3PH.woff and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-400-normal-DH4TKATE.woff b/themes/buck/source/roboto-cyrillic-400-normal-DH4TKATE.woff deleted file mode 100644 index a846f89..0000000 Binary files a/themes/buck/source/roboto-cyrillic-400-normal-DH4TKATE.woff and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-400-normal-FWOJ2YEY.woff2 b/themes/buck/source/roboto-cyrillic-400-normal-FWOJ2YEY.woff2 deleted file mode 100644 index 47da362..0000000 Binary files a/themes/buck/source/roboto-cyrillic-400-normal-FWOJ2YEY.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-ext-100-normal-GB4EOHW3.woff2 b/themes/buck/source/roboto-cyrillic-ext-100-normal-GB4EOHW3.woff2 deleted file mode 100644 index f8d7a0d..0000000 Binary files a/themes/buck/source/roboto-cyrillic-ext-100-normal-GB4EOHW3.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-ext-100-normal-JVQUE5YG.woff b/themes/buck/source/roboto-cyrillic-ext-100-normal-JVQUE5YG.woff deleted file mode 100644 index 156efd4..0000000 Binary files a/themes/buck/source/roboto-cyrillic-ext-100-normal-JVQUE5YG.woff and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-ext-400-normal-26BHVYZO.woff2 b/themes/buck/source/roboto-cyrillic-ext-400-normal-26BHVYZO.woff2 deleted file mode 100644 index 22ddee9..0000000 Binary files a/themes/buck/source/roboto-cyrillic-ext-400-normal-26BHVYZO.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-cyrillic-ext-400-normal-ALQYG4VR.woff b/themes/buck/source/roboto-cyrillic-ext-400-normal-ALQYG4VR.woff deleted file mode 100644 index 0f4a8aa..0000000 Binary files a/themes/buck/source/roboto-cyrillic-ext-400-normal-ALQYG4VR.woff and /dev/null differ diff --git a/themes/buck/source/roboto-greek-100-normal-HAPQGQT7.woff b/themes/buck/source/roboto-greek-100-normal-HAPQGQT7.woff deleted file mode 100644 index 016d6a1..0000000 Binary files a/themes/buck/source/roboto-greek-100-normal-HAPQGQT7.woff and /dev/null differ diff --git a/themes/buck/source/roboto-greek-100-normal-S3FDCEDH.woff2 b/themes/buck/source/roboto-greek-100-normal-S3FDCEDH.woff2 deleted file mode 100644 index 72fc021..0000000 Binary files a/themes/buck/source/roboto-greek-100-normal-S3FDCEDH.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-greek-400-normal-4O2YO26M.woff b/themes/buck/source/roboto-greek-400-normal-4O2YO26M.woff deleted file mode 100644 index e93ee93..0000000 Binary files a/themes/buck/source/roboto-greek-400-normal-4O2YO26M.woff and /dev/null differ diff --git a/themes/buck/source/roboto-greek-400-normal-MPTNYGBL.woff2 b/themes/buck/source/roboto-greek-400-normal-MPTNYGBL.woff2 deleted file mode 100644 index fc71d94..0000000 Binary files a/themes/buck/source/roboto-greek-400-normal-MPTNYGBL.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-greek-ext-100-normal-IU4AEIW2.woff2 b/themes/buck/source/roboto-greek-ext-100-normal-IU4AEIW2.woff2 deleted file mode 100644 index 11c7018..0000000 Binary files a/themes/buck/source/roboto-greek-ext-100-normal-IU4AEIW2.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-greek-ext-100-normal-WGDKWHRF.woff b/themes/buck/source/roboto-greek-ext-100-normal-WGDKWHRF.woff deleted file mode 100644 index 0e78a4d..0000000 Binary files a/themes/buck/source/roboto-greek-ext-100-normal-WGDKWHRF.woff and /dev/null differ diff --git a/themes/buck/source/roboto-greek-ext-400-normal-2F7V6K4G.woff b/themes/buck/source/roboto-greek-ext-400-normal-2F7V6K4G.woff deleted file mode 100644 index 9b60042..0000000 Binary files a/themes/buck/source/roboto-greek-ext-400-normal-2F7V6K4G.woff and /dev/null differ diff --git a/themes/buck/source/roboto-greek-ext-400-normal-FNKH33MZ.woff2 b/themes/buck/source/roboto-greek-ext-400-normal-FNKH33MZ.woff2 deleted file mode 100644 index 72ce0e9..0000000 Binary files a/themes/buck/source/roboto-greek-ext-400-normal-FNKH33MZ.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-latin-100-normal-H6TJBNRU.woff2 b/themes/buck/source/roboto-latin-100-normal-H6TJBNRU.woff2 deleted file mode 100644 index 71c9bb7..0000000 Binary files a/themes/buck/source/roboto-latin-100-normal-H6TJBNRU.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-latin-100-normal-PKD3V7F6.woff b/themes/buck/source/roboto-latin-100-normal-PKD3V7F6.woff deleted file mode 100644 index dfc9d0e..0000000 Binary files a/themes/buck/source/roboto-latin-100-normal-PKD3V7F6.woff and /dev/null differ diff --git a/themes/buck/source/roboto-latin-400-normal-23KM663I.woff b/themes/buck/source/roboto-latin-400-normal-23KM663I.woff deleted file mode 100644 index 297c0ba..0000000 Binary files a/themes/buck/source/roboto-latin-400-normal-23KM663I.woff and /dev/null differ diff --git a/themes/buck/source/roboto-latin-400-normal-6KEU5XHX.woff2 b/themes/buck/source/roboto-latin-400-normal-6KEU5XHX.woff2 deleted file mode 100644 index 020729e..0000000 Binary files a/themes/buck/source/roboto-latin-400-normal-6KEU5XHX.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-latin-ext-100-normal-G4DULEH7.woff b/themes/buck/source/roboto-latin-ext-100-normal-G4DULEH7.woff deleted file mode 100644 index 9487574..0000000 Binary files a/themes/buck/source/roboto-latin-ext-100-normal-G4DULEH7.woff and /dev/null differ diff --git a/themes/buck/source/roboto-latin-ext-100-normal-S6APGXBJ.woff2 b/themes/buck/source/roboto-latin-ext-100-normal-S6APGXBJ.woff2 deleted file mode 100644 index 02a27ea..0000000 Binary files a/themes/buck/source/roboto-latin-ext-100-normal-S6APGXBJ.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-latin-ext-400-normal-EGV4RSGY.woff2 b/themes/buck/source/roboto-latin-ext-400-normal-EGV4RSGY.woff2 deleted file mode 100644 index 8a8de61..0000000 Binary files a/themes/buck/source/roboto-latin-ext-400-normal-EGV4RSGY.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-latin-ext-400-normal-SYALJJTN.woff b/themes/buck/source/roboto-latin-ext-400-normal-SYALJJTN.woff deleted file mode 100644 index 594549d..0000000 Binary files a/themes/buck/source/roboto-latin-ext-400-normal-SYALJJTN.woff and /dev/null differ diff --git a/themes/buck/source/roboto-vietnamese-100-normal-RG3VSYYM.woff b/themes/buck/source/roboto-vietnamese-100-normal-RG3VSYYM.woff deleted file mode 100644 index 51f9715..0000000 Binary files a/themes/buck/source/roboto-vietnamese-100-normal-RG3VSYYM.woff and /dev/null differ diff --git a/themes/buck/source/roboto-vietnamese-100-normal-VC33Q5KS.woff2 b/themes/buck/source/roboto-vietnamese-100-normal-VC33Q5KS.woff2 deleted file mode 100644 index 24a1bfd..0000000 Binary files a/themes/buck/source/roboto-vietnamese-100-normal-VC33Q5KS.woff2 and /dev/null differ diff --git a/themes/buck/source/roboto-vietnamese-400-normal-WM45SJXN.woff b/themes/buck/source/roboto-vietnamese-400-normal-WM45SJXN.woff deleted file mode 100644 index e65d4a9..0000000 Binary files a/themes/buck/source/roboto-vietnamese-400-normal-WM45SJXN.woff and /dev/null differ diff --git a/themes/buck/source/roboto-vietnamese-400-normal-ZFP4AYPR.woff2 b/themes/buck/source/roboto-vietnamese-400-normal-ZFP4AYPR.woff2 deleted file mode 100644 index 6284d2e..0000000 Binary files a/themes/buck/source/roboto-vietnamese-400-normal-ZFP4AYPR.woff2 and /dev/null differ diff --git a/themes/buck/source/styles/materialdesignicons.min.css b/themes/buck/source/styles/materialdesignicons.min.css deleted file mode 100644 index ea5b606..0000000 --- a/themes/buck/source/styles/materialdesignicons.min.css +++ /dev/null @@ -1,2 +0,0 @@ -@font-face{font-family:Material Design Icons;src:url("../materialdesignicons-webfont-MKFTG4XX.eot?v=5.8.55");src:url("../materialdesignicons-webfont-MKFTG4XX.eot?#iefix&v=5.8.55") format("embedded-opentype"),url("../materialdesignicons-webfont-2SQAMWAN.woff2?v=5.8.55") format("woff2"),url("../materialdesignicons-webfont-2WXZLZJV.woff?v=5.8.55") format("woff"),url("../materialdesignicons-webfont-DCJ6DTF2.ttf?v=5.8.55") format("truetype");font-weight:400;font-style:normal;font-display:swap}.mdi:before,.mdi-set{display:inline-block;font: 24px/1 Material Design Icons;font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing:before{content:"\f01c9"}.mdi-abjad-arabic:before{content:"\f1328"}.mdi-abjad-hebrew:before{content:"\f1329"}.mdi-abugida-devanagari:before{content:"\f132a"}.mdi-abugida-thai:before{content:"\f132b"}.mdi-access-point:before{content:"\f0003"}.mdi-access-point-check:before{content:"\f1538"}.mdi-access-point-minus:before{content:"\f1539"}.mdi-access-point-network:before{content:"\f0002"}.mdi-access-point-network-off:before{content:"\f0be1"}.mdi-access-point-off:before{content:"\f1511"}.mdi-access-point-plus:before{content:"\f153a"}.mdi-access-point-remove:before{content:"\f153b"}.mdi-account:before{content:"\f0004"}.mdi-account-alert:before{content:"\f0005"}.mdi-account-alert-outline:before{content:"\f0b50"}.mdi-account-arrow-left:before{content:"\f0b51"}.mdi-account-arrow-left-outline:before{content:"\f0b52"}.mdi-account-arrow-right:before{content:"\f0b53"}.mdi-account-arrow-right-outline:before{content:"\f0b54"}.mdi-account-box:before{content:"\f0006"}.mdi-account-box-multiple:before{content:"\f0934"}.mdi-account-box-multiple-outline:before{content:"\f100a"}.mdi-account-box-outline:before{content:"\f0007"}.mdi-account-cancel:before{content:"\f12df"}.mdi-account-cancel-outline:before{content:"\f12e0"}.mdi-account-cash:before{content:"\f1097"}.mdi-account-cash-outline:before{content:"\f1098"}.mdi-account-check:before{content:"\f0008"}.mdi-account-check-outline:before{content:"\f0be2"}.mdi-account-child:before{content:"\f0a89"}.mdi-account-child-circle:before{content:"\f0a8a"}.mdi-account-child-outline:before{content:"\f10c8"}.mdi-account-circle:before{content:"\f0009"}.mdi-account-circle-outline:before{content:"\f0b55"}.mdi-account-clock:before{content:"\f0b56"}.mdi-account-clock-outline:before{content:"\f0b57"}.mdi-account-cog:before{content:"\f1370"}.mdi-account-cog-outline:before{content:"\f1371"}.mdi-account-convert:before{content:"\f000a"}.mdi-account-convert-outline:before{content:"\f1301"}.mdi-account-cowboy-hat:before{content:"\f0e9b"}.mdi-account-details:before{content:"\f0631"}.mdi-account-details-outline:before{content:"\f1372"}.mdi-account-edit:before{content:"\f06bc"}.mdi-account-edit-outline:before{content:"\f0ffb"}.mdi-account-group:before{content:"\f0849"}.mdi-account-group-outline:before{content:"\f0b58"}.mdi-account-hard-hat:before{content:"\f05b5"}.mdi-account-heart:before{content:"\f0899"}.mdi-account-heart-outline:before{content:"\f0be3"}.mdi-account-key:before{content:"\f000b"}.mdi-account-key-outline:before{content:"\f0be4"}.mdi-account-lock:before{content:"\f115e"}.mdi-account-lock-outline:before{content:"\f115f"}.mdi-account-minus:before{content:"\f000d"}.mdi-account-minus-outline:before{content:"\f0aec"}.mdi-account-multiple:before{content:"\f000e"}.mdi-account-multiple-check:before{content:"\f08c5"}.mdi-account-multiple-check-outline:before{content:"\f11fe"}.mdi-account-multiple-minus:before{content:"\f05d3"}.mdi-account-multiple-minus-outline:before{content:"\f0be5"}.mdi-account-multiple-outline:before{content:"\f000f"}.mdi-account-multiple-plus:before{content:"\f0010"}.mdi-account-multiple-plus-outline:before{content:"\f0800"}.mdi-account-multiple-remove:before{content:"\f120a"}.mdi-account-multiple-remove-outline:before{content:"\f120b"}.mdi-account-music:before{content:"\f0803"}.mdi-account-music-outline:before{content:"\f0ce9"}.mdi-account-network:before{content:"\f0011"}.mdi-account-network-outline:before{content:"\f0be6"}.mdi-account-off:before{content:"\f0012"}.mdi-account-off-outline:before{content:"\f0be7"}.mdi-account-outline:before{content:"\f0013"}.mdi-account-plus:before{content:"\f0014"}.mdi-account-plus-outline:before{content:"\f0801"}.mdi-account-question:before{content:"\f0b59"}.mdi-account-question-outline:before{content:"\f0b5a"}.mdi-account-reactivate:before{content:"\f152b"}.mdi-account-reactivate-outline:before{content:"\f152c"}.mdi-account-remove:before{content:"\f0015"}.mdi-account-remove-outline:before{content:"\f0aed"}.mdi-account-search:before{content:"\f0016"}.mdi-account-search-outline:before{content:"\f0935"}.mdi-account-settings:before{content:"\f0630"}.mdi-account-settings-outline:before{content:"\f10c9"}.mdi-account-star:before{content:"\f0017"}.mdi-account-star-outline:before{content:"\f0be8"}.mdi-account-supervisor:before{content:"\f0a8b"}.mdi-account-supervisor-circle:before{content:"\f0a8c"}.mdi-account-supervisor-circle-outline:before{content:"\f14ec"}.mdi-account-supervisor-outline:before{content:"\f112d"}.mdi-account-switch:before{content:"\f0019"}.mdi-account-switch-outline:before{content:"\f04cb"}.mdi-account-tie:before{content:"\f0ce3"}.mdi-account-tie-outline:before{content:"\f10ca"}.mdi-account-tie-voice:before{content:"\f1308"}.mdi-account-tie-voice-off:before{content:"\f130a"}.mdi-account-tie-voice-off-outline:before{content:"\f130b"}.mdi-account-tie-voice-outline:before{content:"\f1309"}.mdi-account-voice:before{content:"\f05cb"}.mdi-adjust:before{content:"\f001a"}.mdi-adobe:before{content:"\f0936"}.mdi-adobe-acrobat:before{content:"\f0f9d"}.mdi-air-conditioner:before{content:"\f001b"}.mdi-air-filter:before{content:"\f0d43"}.mdi-air-horn:before{content:"\f0dac"}.mdi-air-humidifier:before{content:"\f1099"}.mdi-air-humidifier-off:before{content:"\f1466"}.mdi-air-purifier:before{content:"\f0d44"}.mdi-airbag:before{content:"\f0be9"}.mdi-airballoon:before{content:"\f001c"}.mdi-airballoon-outline:before{content:"\f100b"}.mdi-airplane:before{content:"\f001d"}.mdi-airplane-landing:before{content:"\f05d4"}.mdi-airplane-off:before{content:"\f001e"}.mdi-airplane-takeoff:before{content:"\f05d5"}.mdi-airport:before{content:"\f084b"}.mdi-alarm:before{content:"\f0020"}.mdi-alarm-bell:before{content:"\f078e"}.mdi-alarm-check:before{content:"\f0021"}.mdi-alarm-light:before{content:"\f078f"}.mdi-alarm-light-outline:before{content:"\f0bea"}.mdi-alarm-multiple:before{content:"\f0022"}.mdi-alarm-note:before{content:"\f0e71"}.mdi-alarm-note-off:before{content:"\f0e72"}.mdi-alarm-off:before{content:"\f0023"}.mdi-alarm-panel:before{content:"\f15c4"}.mdi-alarm-panel-outline:before{content:"\f15c5"}.mdi-alarm-plus:before{content:"\f0024"}.mdi-alarm-snooze:before{content:"\f068e"}.mdi-album:before{content:"\f0025"}.mdi-alert:before{content:"\f0026"}.mdi-alert-box:before{content:"\f0027"}.mdi-alert-box-outline:before{content:"\f0ce4"}.mdi-alert-circle:before{content:"\f0028"}.mdi-alert-circle-check:before{content:"\f11ed"}.mdi-alert-circle-check-outline:before{content:"\f11ee"}.mdi-alert-circle-outline:before{content:"\f05d6"}.mdi-alert-decagram:before{content:"\f06bd"}.mdi-alert-decagram-outline:before{content:"\f0ce5"}.mdi-alert-minus:before{content:"\f14bb"}.mdi-alert-minus-outline:before{content:"\f14be"}.mdi-alert-octagon:before{content:"\f0029"}.mdi-alert-octagon-outline:before{content:"\f0ce6"}.mdi-alert-octagram:before{content:"\f0767"}.mdi-alert-octagram-outline:before{content:"\f0ce7"}.mdi-alert-outline:before{content:"\f002a"}.mdi-alert-plus:before{content:"\f14ba"}.mdi-alert-plus-outline:before{content:"\f14bd"}.mdi-alert-remove:before{content:"\f14bc"}.mdi-alert-remove-outline:before{content:"\f14bf"}.mdi-alert-rhombus:before{content:"\f11ce"}.mdi-alert-rhombus-outline:before{content:"\f11cf"}.mdi-alien:before{content:"\f089a"}.mdi-alien-outline:before{content:"\f10cb"}.mdi-align-horizontal-center:before{content:"\f11c3"}.mdi-align-horizontal-left:before{content:"\f11c2"}.mdi-align-horizontal-right:before{content:"\f11c4"}.mdi-align-vertical-bottom:before{content:"\f11c5"}.mdi-align-vertical-center:before{content:"\f11c6"}.mdi-align-vertical-top:before{content:"\f11c7"}.mdi-all-inclusive:before{content:"\f06be"}.mdi-allergy:before{content:"\f1258"}.mdi-alpha:before{content:"\f002b"}.mdi-alpha-a:before{content:"\f0aee"}.mdi-alpha-a-box:before{content:"\f0b08"}.mdi-alpha-a-box-outline:before{content:"\f0beb"}.mdi-alpha-a-circle:before{content:"\f0bec"}.mdi-alpha-a-circle-outline:before{content:"\f0bed"}.mdi-alpha-b:before{content:"\f0aef"}.mdi-alpha-b-box:before{content:"\f0b09"}.mdi-alpha-b-box-outline:before{content:"\f0bee"}.mdi-alpha-b-circle:before{content:"\f0bef"}.mdi-alpha-b-circle-outline:before{content:"\f0bf0"}.mdi-alpha-c:before{content:"\f0af0"}.mdi-alpha-c-box:before{content:"\f0b0a"}.mdi-alpha-c-box-outline:before{content:"\f0bf1"}.mdi-alpha-c-circle:before{content:"\f0bf2"}.mdi-alpha-c-circle-outline:before{content:"\f0bf3"}.mdi-alpha-d:before{content:"\f0af1"}.mdi-alpha-d-box:before{content:"\f0b0b"}.mdi-alpha-d-box-outline:before{content:"\f0bf4"}.mdi-alpha-d-circle:before{content:"\f0bf5"}.mdi-alpha-d-circle-outline:before{content:"\f0bf6"}.mdi-alpha-e:before{content:"\f0af2"}.mdi-alpha-e-box:before{content:"\f0b0c"}.mdi-alpha-e-box-outline:before{content:"\f0bf7"}.mdi-alpha-e-circle:before{content:"\f0bf8"}.mdi-alpha-e-circle-outline:before{content:"\f0bf9"}.mdi-alpha-f:before{content:"\f0af3"}.mdi-alpha-f-box:before{content:"\f0b0d"}.mdi-alpha-f-box-outline:before{content:"\f0bfa"}.mdi-alpha-f-circle:before{content:"\f0bfb"}.mdi-alpha-f-circle-outline:before{content:"\f0bfc"}.mdi-alpha-g:before{content:"\f0af4"}.mdi-alpha-g-box:before{content:"\f0b0e"}.mdi-alpha-g-box-outline:before{content:"\f0bfd"}.mdi-alpha-g-circle:before{content:"\f0bfe"}.mdi-alpha-g-circle-outline:before{content:"\f0bff"}.mdi-alpha-h:before{content:"\f0af5"}.mdi-alpha-h-box:before{content:"\f0b0f"}.mdi-alpha-h-box-outline:before{content:"\f0c00"}.mdi-alpha-h-circle:before{content:"\f0c01"}.mdi-alpha-h-circle-outline:before{content:"\f0c02"}.mdi-alpha-i:before{content:"\f0af6"}.mdi-alpha-i-box:before{content:"\f0b10"}.mdi-alpha-i-box-outline:before{content:"\f0c03"}.mdi-alpha-i-circle:before{content:"\f0c04"}.mdi-alpha-i-circle-outline:before{content:"\f0c05"}.mdi-alpha-j:before{content:"\f0af7"}.mdi-alpha-j-box:before{content:"\f0b11"}.mdi-alpha-j-box-outline:before{content:"\f0c06"}.mdi-alpha-j-circle:before{content:"\f0c07"}.mdi-alpha-j-circle-outline:before{content:"\f0c08"}.mdi-alpha-k:before{content:"\f0af8"}.mdi-alpha-k-box:before{content:"\f0b12"}.mdi-alpha-k-box-outline:before{content:"\f0c09"}.mdi-alpha-k-circle:before{content:"\f0c0a"}.mdi-alpha-k-circle-outline:before{content:"\f0c0b"}.mdi-alpha-l:before{content:"\f0af9"}.mdi-alpha-l-box:before{content:"\f0b13"}.mdi-alpha-l-box-outline:before{content:"\f0c0c"}.mdi-alpha-l-circle:before{content:"\f0c0d"}.mdi-alpha-l-circle-outline:before{content:"\f0c0e"}.mdi-alpha-m:before{content:"\f0afa"}.mdi-alpha-m-box:before{content:"\f0b14"}.mdi-alpha-m-box-outline:before{content:"\f0c0f"}.mdi-alpha-m-circle:before{content:"\f0c10"}.mdi-alpha-m-circle-outline:before{content:"\f0c11"}.mdi-alpha-n:before{content:"\f0afb"}.mdi-alpha-n-box:before{content:"\f0b15"}.mdi-alpha-n-box-outline:before{content:"\f0c12"}.mdi-alpha-n-circle:before{content:"\f0c13"}.mdi-alpha-n-circle-outline:before{content:"\f0c14"}.mdi-alpha-o:before{content:"\f0afc"}.mdi-alpha-o-box:before{content:"\f0b16"}.mdi-alpha-o-box-outline:before{content:"\f0c15"}.mdi-alpha-o-circle:before{content:"\f0c16"}.mdi-alpha-o-circle-outline:before{content:"\f0c17"}.mdi-alpha-p:before{content:"\f0afd"}.mdi-alpha-p-box:before{content:"\f0b17"}.mdi-alpha-p-box-outline:before{content:"\f0c18"}.mdi-alpha-p-circle:before{content:"\f0c19"}.mdi-alpha-p-circle-outline:before{content:"\f0c1a"}.mdi-alpha-q:before{content:"\f0afe"}.mdi-alpha-q-box:before{content:"\f0b18"}.mdi-alpha-q-box-outline:before{content:"\f0c1b"}.mdi-alpha-q-circle:before{content:"\f0c1c"}.mdi-alpha-q-circle-outline:before{content:"\f0c1d"}.mdi-alpha-r:before{content:"\f0aff"}.mdi-alpha-r-box:before{content:"\f0b19"}.mdi-alpha-r-box-outline:before{content:"\f0c1e"}.mdi-alpha-r-circle:before{content:"\f0c1f"}.mdi-alpha-r-circle-outline:before{content:"\f0c20"}.mdi-alpha-s:before{content:"\f0b00"}.mdi-alpha-s-box:before{content:"\f0b1a"}.mdi-alpha-s-box-outline:before{content:"\f0c21"}.mdi-alpha-s-circle:before{content:"\f0c22"}.mdi-alpha-s-circle-outline:before{content:"\f0c23"}.mdi-alpha-t:before{content:"\f0b01"}.mdi-alpha-t-box:before{content:"\f0b1b"}.mdi-alpha-t-box-outline:before{content:"\f0c24"}.mdi-alpha-t-circle:before{content:"\f0c25"}.mdi-alpha-t-circle-outline:before{content:"\f0c26"}.mdi-alpha-u:before{content:"\f0b02"}.mdi-alpha-u-box:before{content:"\f0b1c"}.mdi-alpha-u-box-outline:before{content:"\f0c27"}.mdi-alpha-u-circle:before{content:"\f0c28"}.mdi-alpha-u-circle-outline:before{content:"\f0c29"}.mdi-alpha-v:before{content:"\f0b03"}.mdi-alpha-v-box:before{content:"\f0b1d"}.mdi-alpha-v-box-outline:before{content:"\f0c2a"}.mdi-alpha-v-circle:before{content:"\f0c2b"}.mdi-alpha-v-circle-outline:before{content:"\f0c2c"}.mdi-alpha-w:before{content:"\f0b04"}.mdi-alpha-w-box:before{content:"\f0b1e"}.mdi-alpha-w-box-outline:before{content:"\f0c2d"}.mdi-alpha-w-circle:before{content:"\f0c2e"}.mdi-alpha-w-circle-outline:before{content:"\f0c2f"}.mdi-alpha-x:before{content:"\f0b05"}.mdi-alpha-x-box:before{content:"\f0b1f"}.mdi-alpha-x-box-outline:before{content:"\f0c30"}.mdi-alpha-x-circle:before{content:"\f0c31"}.mdi-alpha-x-circle-outline:before{content:"\f0c32"}.mdi-alpha-y:before{content:"\f0b06"}.mdi-alpha-y-box:before{content:"\f0b20"}.mdi-alpha-y-box-outline:before{content:"\f0c33"}.mdi-alpha-y-circle:before{content:"\f0c34"}.mdi-alpha-y-circle-outline:before{content:"\f0c35"}.mdi-alpha-z:before{content:"\f0b07"}.mdi-alpha-z-box:before{content:"\f0b21"}.mdi-alpha-z-box-outline:before{content:"\f0c36"}.mdi-alpha-z-circle:before{content:"\f0c37"}.mdi-alpha-z-circle-outline:before{content:"\f0c38"}.mdi-alphabet-aurebesh:before{content:"\f132c"}.mdi-alphabet-cyrillic:before{content:"\f132d"}.mdi-alphabet-greek:before{content:"\f132e"}.mdi-alphabet-latin:before{content:"\f132f"}.mdi-alphabet-piqad:before{content:"\f1330"}.mdi-alphabet-tengwar:before{content:"\f1337"}.mdi-alphabetical:before{content:"\f002c"}.mdi-alphabetical-off:before{content:"\f100c"}.mdi-alphabetical-variant:before{content:"\f100d"}.mdi-alphabetical-variant-off:before{content:"\f100e"}.mdi-altimeter:before{content:"\f05d7"}.mdi-amazon:before{content:"\f002d"}.mdi-amazon-alexa:before{content:"\f08c6"}.mdi-ambulance:before{content:"\f002f"}.mdi-ammunition:before{content:"\f0ce8"}.mdi-ampersand:before{content:"\f0a8d"}.mdi-amplifier:before{content:"\f0030"}.mdi-amplifier-off:before{content:"\f11b5"}.mdi-anchor:before{content:"\f0031"}.mdi-android:before{content:"\f0032"}.mdi-android-auto:before{content:"\f0a8e"}.mdi-android-debug-bridge:before{content:"\f0033"}.mdi-android-messages:before{content:"\f0d45"}.mdi-android-studio:before{content:"\f0034"}.mdi-angle-acute:before{content:"\f0937"}.mdi-angle-obtuse:before{content:"\f0938"}.mdi-angle-right:before{content:"\f0939"}.mdi-angular:before{content:"\f06b2"}.mdi-angularjs:before{content:"\f06bf"}.mdi-animation:before{content:"\f05d8"}.mdi-animation-outline:before{content:"\f0a8f"}.mdi-animation-play:before{content:"\f093a"}.mdi-animation-play-outline:before{content:"\f0a90"}.mdi-ansible:before{content:"\f109a"}.mdi-antenna:before{content:"\f1119"}.mdi-anvil:before{content:"\f089b"}.mdi-apache-kafka:before{content:"\f100f"}.mdi-api:before{content:"\f109b"}.mdi-api-off:before{content:"\f1257"}.mdi-apple:before{content:"\f0035"}.mdi-apple-airplay:before{content:"\f001f"}.mdi-apple-finder:before{content:"\f0036"}.mdi-apple-icloud:before{content:"\f0038"}.mdi-apple-ios:before{content:"\f0037"}.mdi-apple-keyboard-caps:before{content:"\f0632"}.mdi-apple-keyboard-command:before{content:"\f0633"}.mdi-apple-keyboard-control:before{content:"\f0634"}.mdi-apple-keyboard-option:before{content:"\f0635"}.mdi-apple-keyboard-shift:before{content:"\f0636"}.mdi-apple-safari:before{content:"\f0039"}.mdi-application:before{content:"\f0614"}.mdi-application-cog:before{content:"\f1577"}.mdi-application-export:before{content:"\f0dad"}.mdi-application-import:before{content:"\f0dae"}.mdi-application-settings:before{content:"\f1555"}.mdi-approximately-equal:before{content:"\f0f9e"}.mdi-approximately-equal-box:before{content:"\f0f9f"}.mdi-apps:before{content:"\f003b"}.mdi-apps-box:before{content:"\f0d46"}.mdi-arch:before{content:"\f08c7"}.mdi-archive:before{content:"\f003c"}.mdi-archive-alert:before{content:"\f14fd"}.mdi-archive-alert-outline:before{content:"\f14fe"}.mdi-archive-arrow-down:before{content:"\f1259"}.mdi-archive-arrow-down-outline:before{content:"\f125a"}.mdi-archive-arrow-up:before{content:"\f125b"}.mdi-archive-arrow-up-outline:before{content:"\f125c"}.mdi-archive-outline:before{content:"\f120e"}.mdi-arm-flex:before{content:"\f0fd7"}.mdi-arm-flex-outline:before{content:"\f0fd6"}.mdi-arrange-bring-forward:before{content:"\f003d"}.mdi-arrange-bring-to-front:before{content:"\f003e"}.mdi-arrange-send-backward:before{content:"\f003f"}.mdi-arrange-send-to-back:before{content:"\f0040"}.mdi-arrow-all:before{content:"\f0041"}.mdi-arrow-bottom-left:before{content:"\f0042"}.mdi-arrow-bottom-left-bold-outline:before{content:"\f09b7"}.mdi-arrow-bottom-left-thick:before{content:"\f09b8"}.mdi-arrow-bottom-left-thin-circle-outline:before{content:"\f1596"}.mdi-arrow-bottom-right:before{content:"\f0043"}.mdi-arrow-bottom-right-bold-outline:before{content:"\f09b9"}.mdi-arrow-bottom-right-thick:before{content:"\f09ba"}.mdi-arrow-bottom-right-thin-circle-outline:before{content:"\f1595"}.mdi-arrow-collapse:before{content:"\f0615"}.mdi-arrow-collapse-all:before{content:"\f0044"}.mdi-arrow-collapse-down:before{content:"\f0792"}.mdi-arrow-collapse-horizontal:before{content:"\f084c"}.mdi-arrow-collapse-left:before{content:"\f0793"}.mdi-arrow-collapse-right:before{content:"\f0794"}.mdi-arrow-collapse-up:before{content:"\f0795"}.mdi-arrow-collapse-vertical:before{content:"\f084d"}.mdi-arrow-decision:before{content:"\f09bb"}.mdi-arrow-decision-auto:before{content:"\f09bc"}.mdi-arrow-decision-auto-outline:before{content:"\f09bd"}.mdi-arrow-decision-outline:before{content:"\f09be"}.mdi-arrow-down:before{content:"\f0045"}.mdi-arrow-down-bold:before{content:"\f072e"}.mdi-arrow-down-bold-box:before{content:"\f072f"}.mdi-arrow-down-bold-box-outline:before{content:"\f0730"}.mdi-arrow-down-bold-circle:before{content:"\f0047"}.mdi-arrow-down-bold-circle-outline:before{content:"\f0048"}.mdi-arrow-down-bold-hexagon-outline:before{content:"\f0049"}.mdi-arrow-down-bold-outline:before{content:"\f09bf"}.mdi-arrow-down-box:before{content:"\f06c0"}.mdi-arrow-down-circle:before{content:"\f0cdb"}.mdi-arrow-down-circle-outline:before{content:"\f0cdc"}.mdi-arrow-down-drop-circle:before{content:"\f004a"}.mdi-arrow-down-drop-circle-outline:before{content:"\f004b"}.mdi-arrow-down-thick:before{content:"\f0046"}.mdi-arrow-down-thin-circle-outline:before{content:"\f1599"}.mdi-arrow-expand:before{content:"\f0616"}.mdi-arrow-expand-all:before{content:"\f004c"}.mdi-arrow-expand-down:before{content:"\f0796"}.mdi-arrow-expand-horizontal:before{content:"\f084e"}.mdi-arrow-expand-left:before{content:"\f0797"}.mdi-arrow-expand-right:before{content:"\f0798"}.mdi-arrow-expand-up:before{content:"\f0799"}.mdi-arrow-expand-vertical:before{content:"\f084f"}.mdi-arrow-horizontal-lock:before{content:"\f115b"}.mdi-arrow-left:before{content:"\f004d"}.mdi-arrow-left-bold:before{content:"\f0731"}.mdi-arrow-left-bold-box:before{content:"\f0732"}.mdi-arrow-left-bold-box-outline:before{content:"\f0733"}.mdi-arrow-left-bold-circle:before{content:"\f004f"}.mdi-arrow-left-bold-circle-outline:before{content:"\f0050"}.mdi-arrow-left-bold-hexagon-outline:before{content:"\f0051"}.mdi-arrow-left-bold-outline:before{content:"\f09c0"}.mdi-arrow-left-box:before{content:"\f06c1"}.mdi-arrow-left-circle:before{content:"\f0cdd"}.mdi-arrow-left-circle-outline:before{content:"\f0cde"}.mdi-arrow-left-drop-circle:before{content:"\f0052"}.mdi-arrow-left-drop-circle-outline:before{content:"\f0053"}.mdi-arrow-left-right:before{content:"\f0e73"}.mdi-arrow-left-right-bold:before{content:"\f0e74"}.mdi-arrow-left-right-bold-outline:before{content:"\f09c1"}.mdi-arrow-left-thick:before{content:"\f004e"}.mdi-arrow-left-thin-circle-outline:before{content:"\f159a"}.mdi-arrow-right:before{content:"\f0054"}.mdi-arrow-right-bold:before{content:"\f0734"}.mdi-arrow-right-bold-box:before{content:"\f0735"}.mdi-arrow-right-bold-box-outline:before{content:"\f0736"}.mdi-arrow-right-bold-circle:before{content:"\f0056"}.mdi-arrow-right-bold-circle-outline:before{content:"\f0057"}.mdi-arrow-right-bold-hexagon-outline:before{content:"\f0058"}.mdi-arrow-right-bold-outline:before{content:"\f09c2"}.mdi-arrow-right-box:before{content:"\f06c2"}.mdi-arrow-right-circle:before{content:"\f0cdf"}.mdi-arrow-right-circle-outline:before{content:"\f0ce0"}.mdi-arrow-right-drop-circle:before{content:"\f0059"}.mdi-arrow-right-drop-circle-outline:before{content:"\f005a"}.mdi-arrow-right-thick:before{content:"\f0055"}.mdi-arrow-right-thin-circle-outline:before{content:"\f1598"}.mdi-arrow-split-horizontal:before{content:"\f093b"}.mdi-arrow-split-vertical:before{content:"\f093c"}.mdi-arrow-top-left:before{content:"\f005b"}.mdi-arrow-top-left-bold-outline:before{content:"\f09c3"}.mdi-arrow-top-left-bottom-right:before{content:"\f0e75"}.mdi-arrow-top-left-bottom-right-bold:before{content:"\f0e76"}.mdi-arrow-top-left-thick:before{content:"\f09c4"}.mdi-arrow-top-left-thin-circle-outline:before{content:"\f1593"}.mdi-arrow-top-right:before{content:"\f005c"}.mdi-arrow-top-right-bold-outline:before{content:"\f09c5"}.mdi-arrow-top-right-bottom-left:before{content:"\f0e77"}.mdi-arrow-top-right-bottom-left-bold:before{content:"\f0e78"}.mdi-arrow-top-right-thick:before{content:"\f09c6"}.mdi-arrow-top-right-thin-circle-outline:before{content:"\f1594"}.mdi-arrow-up:before{content:"\f005d"}.mdi-arrow-up-bold:before{content:"\f0737"}.mdi-arrow-up-bold-box:before{content:"\f0738"}.mdi-arrow-up-bold-box-outline:before{content:"\f0739"}.mdi-arrow-up-bold-circle:before{content:"\f005f"}.mdi-arrow-up-bold-circle-outline:before{content:"\f0060"}.mdi-arrow-up-bold-hexagon-outline:before{content:"\f0061"}.mdi-arrow-up-bold-outline:before{content:"\f09c7"}.mdi-arrow-up-box:before{content:"\f06c3"}.mdi-arrow-up-circle:before{content:"\f0ce1"}.mdi-arrow-up-circle-outline:before{content:"\f0ce2"}.mdi-arrow-up-down:before{content:"\f0e79"}.mdi-arrow-up-down-bold:before{content:"\f0e7a"}.mdi-arrow-up-down-bold-outline:before{content:"\f09c8"}.mdi-arrow-up-drop-circle:before{content:"\f0062"}.mdi-arrow-up-drop-circle-outline:before{content:"\f0063"}.mdi-arrow-up-thick:before{content:"\f005e"}.mdi-arrow-up-thin-circle-outline:before{content:"\f1597"}.mdi-arrow-vertical-lock:before{content:"\f115c"}.mdi-artstation:before{content:"\f0b5b"}.mdi-aspect-ratio:before{content:"\f0a24"}.mdi-assistant:before{content:"\f0064"}.mdi-asterisk:before{content:"\f06c4"}.mdi-at:before{content:"\f0065"}.mdi-atlassian:before{content:"\f0804"}.mdi-atm:before{content:"\f0d47"}.mdi-atom:before{content:"\f0768"}.mdi-atom-variant:before{content:"\f0e7b"}.mdi-attachment:before{content:"\f0066"}.mdi-audio-video:before{content:"\f093d"}.mdi-audio-video-off:before{content:"\f11b6"}.mdi-augmented-reality:before{content:"\f0850"}.mdi-auto-download:before{content:"\f137e"}.mdi-auto-fix:before{content:"\f0068"}.mdi-auto-upload:before{content:"\f0069"}.mdi-autorenew:before{content:"\f006a"}.mdi-av-timer:before{content:"\f006b"}.mdi-aws:before{content:"\f0e0f"}.mdi-axe:before{content:"\f08c8"}.mdi-axis:before{content:"\f0d48"}.mdi-axis-arrow:before{content:"\f0d49"}.mdi-axis-arrow-info:before{content:"\f140e"}.mdi-axis-arrow-lock:before{content:"\f0d4a"}.mdi-axis-lock:before{content:"\f0d4b"}.mdi-axis-x-arrow:before{content:"\f0d4c"}.mdi-axis-x-arrow-lock:before{content:"\f0d4d"}.mdi-axis-x-rotate-clockwise:before{content:"\f0d4e"}.mdi-axis-x-rotate-counterclockwise:before{content:"\f0d4f"}.mdi-axis-x-y-arrow-lock:before{content:"\f0d50"}.mdi-axis-y-arrow:before{content:"\f0d51"}.mdi-axis-y-arrow-lock:before{content:"\f0d52"}.mdi-axis-y-rotate-clockwise:before{content:"\f0d53"}.mdi-axis-y-rotate-counterclockwise:before{content:"\f0d54"}.mdi-axis-z-arrow:before{content:"\f0d55"}.mdi-axis-z-arrow-lock:before{content:"\f0d56"}.mdi-axis-z-rotate-clockwise:before{content:"\f0d57"}.mdi-axis-z-rotate-counterclockwise:before{content:"\f0d58"}.mdi-babel:before{content:"\f0a25"}.mdi-baby:before{content:"\f006c"}.mdi-baby-bottle:before{content:"\f0f39"}.mdi-baby-bottle-outline:before{content:"\f0f3a"}.mdi-baby-buggy:before{content:"\f13e0"}.mdi-baby-carriage:before{content:"\f068f"}.mdi-baby-carriage-off:before{content:"\f0fa0"}.mdi-baby-face:before{content:"\f0e7c"}.mdi-baby-face-outline:before{content:"\f0e7d"}.mdi-backburger:before{content:"\f006d"}.mdi-backspace:before{content:"\f006e"}.mdi-backspace-outline:before{content:"\f0b5c"}.mdi-backspace-reverse:before{content:"\f0e7e"}.mdi-backspace-reverse-outline:before{content:"\f0e7f"}.mdi-backup-restore:before{content:"\f006f"}.mdi-bacteria:before{content:"\f0ed5"}.mdi-bacteria-outline:before{content:"\f0ed6"}.mdi-badge-account:before{content:"\f0da7"}.mdi-badge-account-alert:before{content:"\f0da8"}.mdi-badge-account-alert-outline:before{content:"\f0da9"}.mdi-badge-account-horizontal:before{content:"\f0e0d"}.mdi-badge-account-horizontal-outline:before{content:"\f0e0e"}.mdi-badge-account-outline:before{content:"\f0daa"}.mdi-badminton:before{content:"\f0851"}.mdi-bag-carry-on:before{content:"\f0f3b"}.mdi-bag-carry-on-check:before{content:"\f0d65"}.mdi-bag-carry-on-off:before{content:"\f0f3c"}.mdi-bag-checked:before{content:"\f0f3d"}.mdi-bag-personal:before{content:"\f0e10"}.mdi-bag-personal-off:before{content:"\f0e11"}.mdi-bag-personal-off-outline:before{content:"\f0e12"}.mdi-bag-personal-outline:before{content:"\f0e13"}.mdi-bag-suitcase:before{content:"\f158b"}.mdi-bag-suitcase-off:before{content:"\f158d"}.mdi-bag-suitcase-off-outline:before{content:"\f158e"}.mdi-bag-suitcase-outline:before{content:"\f158c"}.mdi-baguette:before{content:"\f0f3e"}.mdi-balloon:before{content:"\f0a26"}.mdi-ballot:before{content:"\f09c9"}.mdi-ballot-outline:before{content:"\f09ca"}.mdi-ballot-recount:before{content:"\f0c39"}.mdi-ballot-recount-outline:before{content:"\f0c3a"}.mdi-bandage:before{content:"\f0daf"}.mdi-bandcamp:before{content:"\f0675"}.mdi-bank:before{content:"\f0070"}.mdi-bank-check:before{content:"\f1655"}.mdi-bank-minus:before{content:"\f0db0"}.mdi-bank-off:before{content:"\f1656"}.mdi-bank-off-outline:before{content:"\f1657"}.mdi-bank-outline:before{content:"\f0e80"}.mdi-bank-plus:before{content:"\f0db1"}.mdi-bank-remove:before{content:"\f0db2"}.mdi-bank-transfer:before{content:"\f0a27"}.mdi-bank-transfer-in:before{content:"\f0a28"}.mdi-bank-transfer-out:before{content:"\f0a29"}.mdi-barcode:before{content:"\f0071"}.mdi-barcode-off:before{content:"\f1236"}.mdi-barcode-scan:before{content:"\f0072"}.mdi-barley:before{content:"\f0073"}.mdi-barley-off:before{content:"\f0b5d"}.mdi-barn:before{content:"\f0b5e"}.mdi-barrel:before{content:"\f0074"}.mdi-baseball:before{content:"\f0852"}.mdi-baseball-bat:before{content:"\f0853"}.mdi-baseball-diamond:before{content:"\f15ec"}.mdi-baseball-diamond-outline:before{content:"\f15ed"}.mdi-bash:before{content:"\f1183"}.mdi-basket:before{content:"\f0076"}.mdi-basket-fill:before{content:"\f0077"}.mdi-basket-minus:before{content:"\f1523"}.mdi-basket-minus-outline:before{content:"\f1524"}.mdi-basket-off:before{content:"\f1525"}.mdi-basket-off-outline:before{content:"\f1526"}.mdi-basket-outline:before{content:"\f1181"}.mdi-basket-plus:before{content:"\f1527"}.mdi-basket-plus-outline:before{content:"\f1528"}.mdi-basket-remove:before{content:"\f1529"}.mdi-basket-remove-outline:before{content:"\f152a"}.mdi-basket-unfill:before{content:"\f0078"}.mdi-basketball:before{content:"\f0806"}.mdi-basketball-hoop:before{content:"\f0c3b"}.mdi-basketball-hoop-outline:before{content:"\f0c3c"}.mdi-bat:before{content:"\f0b5f"}.mdi-battery:before{content:"\f0079"}.mdi-battery-10:before{content:"\f007a"}.mdi-battery-10-bluetooth:before{content:"\f093e"}.mdi-battery-20:before{content:"\f007b"}.mdi-battery-20-bluetooth:before{content:"\f093f"}.mdi-battery-30:before{content:"\f007c"}.mdi-battery-30-bluetooth:before{content:"\f0940"}.mdi-battery-40:before{content:"\f007d"}.mdi-battery-40-bluetooth:before{content:"\f0941"}.mdi-battery-50:before{content:"\f007e"}.mdi-battery-50-bluetooth:before{content:"\f0942"}.mdi-battery-60:before{content:"\f007f"}.mdi-battery-60-bluetooth:before{content:"\f0943"}.mdi-battery-70:before{content:"\f0080"}.mdi-battery-70-bluetooth:before{content:"\f0944"}.mdi-battery-80:before{content:"\f0081"}.mdi-battery-80-bluetooth:before{content:"\f0945"}.mdi-battery-90:before{content:"\f0082"}.mdi-battery-90-bluetooth:before{content:"\f0946"}.mdi-battery-alert:before{content:"\f0083"}.mdi-battery-alert-bluetooth:before{content:"\f0947"}.mdi-battery-alert-variant:before{content:"\f10cc"}.mdi-battery-alert-variant-outline:before{content:"\f10cd"}.mdi-battery-bluetooth:before{content:"\f0948"}.mdi-battery-bluetooth-variant:before{content:"\f0949"}.mdi-battery-charging:before{content:"\f0084"}.mdi-battery-charging-10:before{content:"\f089c"}.mdi-battery-charging-100:before{content:"\f0085"}.mdi-battery-charging-20:before{content:"\f0086"}.mdi-battery-charging-30:before{content:"\f0087"}.mdi-battery-charging-40:before{content:"\f0088"}.mdi-battery-charging-50:before{content:"\f089d"}.mdi-battery-charging-60:before{content:"\f0089"}.mdi-battery-charging-70:before{content:"\f089e"}.mdi-battery-charging-80:before{content:"\f008a"}.mdi-battery-charging-90:before{content:"\f008b"}.mdi-battery-charging-high:before{content:"\f12a6"}.mdi-battery-charging-low:before{content:"\f12a4"}.mdi-battery-charging-medium:before{content:"\f12a5"}.mdi-battery-charging-outline:before{content:"\f089f"}.mdi-battery-charging-wireless:before{content:"\f0807"}.mdi-battery-charging-wireless-10:before{content:"\f0808"}.mdi-battery-charging-wireless-20:before{content:"\f0809"}.mdi-battery-charging-wireless-30:before{content:"\f080a"}.mdi-battery-charging-wireless-40:before{content:"\f080b"}.mdi-battery-charging-wireless-50:before{content:"\f080c"}.mdi-battery-charging-wireless-60:before{content:"\f080d"}.mdi-battery-charging-wireless-70:before{content:"\f080e"}.mdi-battery-charging-wireless-80:before{content:"\f080f"}.mdi-battery-charging-wireless-90:before{content:"\f0810"}.mdi-battery-charging-wireless-alert:before{content:"\f0811"}.mdi-battery-charging-wireless-outline:before{content:"\f0812"}.mdi-battery-heart:before{content:"\f120f"}.mdi-battery-heart-outline:before{content:"\f1210"}.mdi-battery-heart-variant:before{content:"\f1211"}.mdi-battery-high:before{content:"\f12a3"}.mdi-battery-low:before{content:"\f12a1"}.mdi-battery-medium:before{content:"\f12a2"}.mdi-battery-minus:before{content:"\f008c"}.mdi-battery-negative:before{content:"\f008d"}.mdi-battery-off:before{content:"\f125d"}.mdi-battery-off-outline:before{content:"\f125e"}.mdi-battery-outline:before{content:"\f008e"}.mdi-battery-plus:before{content:"\f008f"}.mdi-battery-positive:before{content:"\f0090"}.mdi-battery-unknown:before{content:"\f0091"}.mdi-battery-unknown-bluetooth:before{content:"\f094a"}.mdi-battlenet:before{content:"\f0b60"}.mdi-beach:before{content:"\f0092"}.mdi-beaker:before{content:"\f0cea"}.mdi-beaker-alert:before{content:"\f1229"}.mdi-beaker-alert-outline:before{content:"\f122a"}.mdi-beaker-check:before{content:"\f122b"}.mdi-beaker-check-outline:before{content:"\f122c"}.mdi-beaker-minus:before{content:"\f122d"}.mdi-beaker-minus-outline:before{content:"\f122e"}.mdi-beaker-outline:before{content:"\f0690"}.mdi-beaker-plus:before{content:"\f122f"}.mdi-beaker-plus-outline:before{content:"\f1230"}.mdi-beaker-question:before{content:"\f1231"}.mdi-beaker-question-outline:before{content:"\f1232"}.mdi-beaker-remove:before{content:"\f1233"}.mdi-beaker-remove-outline:before{content:"\f1234"}.mdi-bed:before{content:"\f02e3"}.mdi-bed-double:before{content:"\f0fd4"}.mdi-bed-double-outline:before{content:"\f0fd3"}.mdi-bed-empty:before{content:"\f08a0"}.mdi-bed-king:before{content:"\f0fd2"}.mdi-bed-king-outline:before{content:"\f0fd1"}.mdi-bed-outline:before{content:"\f0099"}.mdi-bed-queen:before{content:"\f0fd0"}.mdi-bed-queen-outline:before{content:"\f0fdb"}.mdi-bed-single:before{content:"\f106d"}.mdi-bed-single-outline:before{content:"\f106e"}.mdi-bee:before{content:"\f0fa1"}.mdi-bee-flower:before{content:"\f0fa2"}.mdi-beehive-off-outline:before{content:"\f13ed"}.mdi-beehive-outline:before{content:"\f10ce"}.mdi-beekeeper:before{content:"\f14e2"}.mdi-beer:before{content:"\f0098"}.mdi-beer-outline:before{content:"\f130c"}.mdi-bell:before{content:"\f009a"}.mdi-bell-alert:before{content:"\f0d59"}.mdi-bell-alert-outline:before{content:"\f0e81"}.mdi-bell-cancel:before{content:"\f13e7"}.mdi-bell-cancel-outline:before{content:"\f13e8"}.mdi-bell-check:before{content:"\f11e5"}.mdi-bell-check-outline:before{content:"\f11e6"}.mdi-bell-circle:before{content:"\f0d5a"}.mdi-bell-circle-outline:before{content:"\f0d5b"}.mdi-bell-minus:before{content:"\f13e9"}.mdi-bell-minus-outline:before{content:"\f13ea"}.mdi-bell-off:before{content:"\f009b"}.mdi-bell-off-outline:before{content:"\f0a91"}.mdi-bell-outline:before{content:"\f009c"}.mdi-bell-plus:before{content:"\f009d"}.mdi-bell-plus-outline:before{content:"\f0a92"}.mdi-bell-remove:before{content:"\f13eb"}.mdi-bell-remove-outline:before{content:"\f13ec"}.mdi-bell-ring:before{content:"\f009e"}.mdi-bell-ring-outline:before{content:"\f009f"}.mdi-bell-sleep:before{content:"\f00a0"}.mdi-bell-sleep-outline:before{content:"\f0a93"}.mdi-beta:before{content:"\f00a1"}.mdi-betamax:before{content:"\f09cb"}.mdi-biathlon:before{content:"\f0e14"}.mdi-bicycle:before{content:"\f109c"}.mdi-bicycle-basket:before{content:"\f1235"}.mdi-bicycle-electric:before{content:"\f15b4"}.mdi-bicycle-penny-farthing:before{content:"\f15e9"}.mdi-bike:before{content:"\f00a3"}.mdi-bike-fast:before{content:"\f111f"}.mdi-billboard:before{content:"\f1010"}.mdi-billiards:before{content:"\f0b61"}.mdi-billiards-rack:before{content:"\f0b62"}.mdi-binoculars:before{content:"\f00a5"}.mdi-bio:before{content:"\f00a6"}.mdi-biohazard:before{content:"\f00a7"}.mdi-bird:before{content:"\f15c6"}.mdi-bitbucket:before{content:"\f00a8"}.mdi-bitcoin:before{content:"\f0813"}.mdi-black-mesa:before{content:"\f00a9"}.mdi-blender:before{content:"\f0ceb"}.mdi-blender-software:before{content:"\f00ab"}.mdi-blinds:before{content:"\f00ac"}.mdi-blinds-open:before{content:"\f1011"}.mdi-block-helper:before{content:"\f00ad"}.mdi-blogger:before{content:"\f00ae"}.mdi-blood-bag:before{content:"\f0cec"}.mdi-bluetooth:before{content:"\f00af"}.mdi-bluetooth-audio:before{content:"\f00b0"}.mdi-bluetooth-connect:before{content:"\f00b1"}.mdi-bluetooth-off:before{content:"\f00b2"}.mdi-bluetooth-settings:before{content:"\f00b3"}.mdi-bluetooth-transfer:before{content:"\f00b4"}.mdi-blur:before{content:"\f00b5"}.mdi-blur-linear:before{content:"\f00b6"}.mdi-blur-off:before{content:"\f00b7"}.mdi-blur-radial:before{content:"\f00b8"}.mdi-bolnisi-cross:before{content:"\f0ced"}.mdi-bolt:before{content:"\f0db3"}.mdi-bomb:before{content:"\f0691"}.mdi-bomb-off:before{content:"\f06c5"}.mdi-bone:before{content:"\f00b9"}.mdi-book:before{content:"\f00ba"}.mdi-book-account:before{content:"\f13ad"}.mdi-book-account-outline:before{content:"\f13ae"}.mdi-book-alert:before{content:"\f167c"}.mdi-book-alert-outline:before{content:"\f167d"}.mdi-book-alphabet:before{content:"\f061d"}.mdi-book-arrow-down:before{content:"\f167e"}.mdi-book-arrow-down-outline:before{content:"\f167f"}.mdi-book-arrow-left:before{content:"\f1680"}.mdi-book-arrow-left-outline:before{content:"\f1681"}.mdi-book-arrow-right:before{content:"\f1682"}.mdi-book-arrow-right-outline:before{content:"\f1683"}.mdi-book-arrow-up:before{content:"\f1684"}.mdi-book-arrow-up-outline:before{content:"\f1685"}.mdi-book-cancel:before{content:"\f1686"}.mdi-book-cancel-outline:before{content:"\f1687"}.mdi-book-check:before{content:"\f14f3"}.mdi-book-check-outline:before{content:"\f14f4"}.mdi-book-clock:before{content:"\f1688"}.mdi-book-clock-outline:before{content:"\f1689"}.mdi-book-cog:before{content:"\f168a"}.mdi-book-cog-outline:before{content:"\f168b"}.mdi-book-cross:before{content:"\f00a2"}.mdi-book-edit:before{content:"\f168c"}.mdi-book-edit-outline:before{content:"\f168d"}.mdi-book-education:before{content:"\f16c9"}.mdi-book-education-outline:before{content:"\f16ca"}.mdi-book-information-variant:before{content:"\f106f"}.mdi-book-lock:before{content:"\f079a"}.mdi-book-lock-open:before{content:"\f079b"}.mdi-book-lock-open-outline:before{content:"\f168e"}.mdi-book-lock-outline:before{content:"\f168f"}.mdi-book-marker:before{content:"\f1690"}.mdi-book-marker-outline:before{content:"\f1691"}.mdi-book-minus:before{content:"\f05d9"}.mdi-book-minus-multiple:before{content:"\f0a94"}.mdi-book-minus-multiple-outline:before{content:"\f090b"}.mdi-book-minus-outline:before{content:"\f1692"}.mdi-book-multiple:before{content:"\f00bb"}.mdi-book-multiple-outline:before{content:"\f0436"}.mdi-book-music:before{content:"\f0067"}.mdi-book-music-outline:before{content:"\f1693"}.mdi-book-off:before{content:"\f1694"}.mdi-book-off-outline:before{content:"\f1695"}.mdi-book-open:before{content:"\f00bd"}.mdi-book-open-blank-variant:before{content:"\f00be"}.mdi-book-open-outline:before{content:"\f0b63"}.mdi-book-open-page-variant:before{content:"\f05da"}.mdi-book-open-page-variant-outline:before{content:"\f15d6"}.mdi-book-open-variant:before{content:"\f14f7"}.mdi-book-outline:before{content:"\f0b64"}.mdi-book-play:before{content:"\f0e82"}.mdi-book-play-outline:before{content:"\f0e83"}.mdi-book-plus:before{content:"\f05db"}.mdi-book-plus-multiple:before{content:"\f0a95"}.mdi-book-plus-multiple-outline:before{content:"\f0ade"}.mdi-book-plus-outline:before{content:"\f1696"}.mdi-book-refresh:before{content:"\f1697"}.mdi-book-refresh-outline:before{content:"\f1698"}.mdi-book-remove:before{content:"\f0a97"}.mdi-book-remove-multiple:before{content:"\f0a96"}.mdi-book-remove-multiple-outline:before{content:"\f04ca"}.mdi-book-remove-outline:before{content:"\f1699"}.mdi-book-search:before{content:"\f0e84"}.mdi-book-search-outline:before{content:"\f0e85"}.mdi-book-settings:before{content:"\f169a"}.mdi-book-settings-outline:before{content:"\f169b"}.mdi-book-sync:before{content:"\f169c"}.mdi-book-sync-outline:before{content:"\f16c8"}.mdi-book-variant:before{content:"\f00bf"}.mdi-book-variant-multiple:before{content:"\f00bc"}.mdi-bookmark:before{content:"\f00c0"}.mdi-bookmark-check:before{content:"\f00c1"}.mdi-bookmark-check-outline:before{content:"\f137b"}.mdi-bookmark-minus:before{content:"\f09cc"}.mdi-bookmark-minus-outline:before{content:"\f09cd"}.mdi-bookmark-multiple:before{content:"\f0e15"}.mdi-bookmark-multiple-outline:before{content:"\f0e16"}.mdi-bookmark-music:before{content:"\f00c2"}.mdi-bookmark-music-outline:before{content:"\f1379"}.mdi-bookmark-off:before{content:"\f09ce"}.mdi-bookmark-off-outline:before{content:"\f09cf"}.mdi-bookmark-outline:before{content:"\f00c3"}.mdi-bookmark-plus:before{content:"\f00c5"}.mdi-bookmark-plus-outline:before{content:"\f00c4"}.mdi-bookmark-remove:before{content:"\f00c6"}.mdi-bookmark-remove-outline:before{content:"\f137a"}.mdi-bookshelf:before{content:"\f125f"}.mdi-boom-gate:before{content:"\f0e86"}.mdi-boom-gate-alert:before{content:"\f0e87"}.mdi-boom-gate-alert-outline:before{content:"\f0e88"}.mdi-boom-gate-down:before{content:"\f0e89"}.mdi-boom-gate-down-outline:before{content:"\f0e8a"}.mdi-boom-gate-outline:before{content:"\f0e8b"}.mdi-boom-gate-up:before{content:"\f0e8c"}.mdi-boom-gate-up-outline:before{content:"\f0e8d"}.mdi-boombox:before{content:"\f05dc"}.mdi-boomerang:before{content:"\f10cf"}.mdi-bootstrap:before{content:"\f06c6"}.mdi-border-all:before{content:"\f00c7"}.mdi-border-all-variant:before{content:"\f08a1"}.mdi-border-bottom:before{content:"\f00c8"}.mdi-border-bottom-variant:before{content:"\f08a2"}.mdi-border-color:before{content:"\f00c9"}.mdi-border-horizontal:before{content:"\f00ca"}.mdi-border-inside:before{content:"\f00cb"}.mdi-border-left:before{content:"\f00cc"}.mdi-border-left-variant:before{content:"\f08a3"}.mdi-border-none:before{content:"\f00cd"}.mdi-border-none-variant:before{content:"\f08a4"}.mdi-border-outside:before{content:"\f00ce"}.mdi-border-right:before{content:"\f00cf"}.mdi-border-right-variant:before{content:"\f08a5"}.mdi-border-style:before{content:"\f00d0"}.mdi-border-top:before{content:"\f00d1"}.mdi-border-top-variant:before{content:"\f08a6"}.mdi-border-vertical:before{content:"\f00d2"}.mdi-bottle-soda:before{content:"\f1070"}.mdi-bottle-soda-classic:before{content:"\f1071"}.mdi-bottle-soda-classic-outline:before{content:"\f1363"}.mdi-bottle-soda-outline:before{content:"\f1072"}.mdi-bottle-tonic:before{content:"\f112e"}.mdi-bottle-tonic-outline:before{content:"\f112f"}.mdi-bottle-tonic-plus:before{content:"\f1130"}.mdi-bottle-tonic-plus-outline:before{content:"\f1131"}.mdi-bottle-tonic-skull:before{content:"\f1132"}.mdi-bottle-tonic-skull-outline:before{content:"\f1133"}.mdi-bottle-wine:before{content:"\f0854"}.mdi-bottle-wine-outline:before{content:"\f1310"}.mdi-bow-tie:before{content:"\f0678"}.mdi-bowl:before{content:"\f028e"}.mdi-bowl-mix:before{content:"\f0617"}.mdi-bowl-mix-outline:before{content:"\f02e4"}.mdi-bowl-outline:before{content:"\f02a9"}.mdi-bowling:before{content:"\f00d3"}.mdi-box:before{content:"\f00d4"}.mdi-box-cutter:before{content:"\f00d5"}.mdi-box-cutter-off:before{content:"\f0b4a"}.mdi-box-shadow:before{content:"\f0637"}.mdi-boxing-glove:before{content:"\f0b65"}.mdi-braille:before{content:"\f09d0"}.mdi-brain:before{content:"\f09d1"}.mdi-bread-slice:before{content:"\f0cee"}.mdi-bread-slice-outline:before{content:"\f0cef"}.mdi-bridge:before{content:"\f0618"}.mdi-briefcase:before{content:"\f00d6"}.mdi-briefcase-account:before{content:"\f0cf0"}.mdi-briefcase-account-outline:before{content:"\f0cf1"}.mdi-briefcase-check:before{content:"\f00d7"}.mdi-briefcase-check-outline:before{content:"\f131e"}.mdi-briefcase-clock:before{content:"\f10d0"}.mdi-briefcase-clock-outline:before{content:"\f10d1"}.mdi-briefcase-download:before{content:"\f00d8"}.mdi-briefcase-download-outline:before{content:"\f0c3d"}.mdi-briefcase-edit:before{content:"\f0a98"}.mdi-briefcase-edit-outline:before{content:"\f0c3e"}.mdi-briefcase-minus:before{content:"\f0a2a"}.mdi-briefcase-minus-outline:before{content:"\f0c3f"}.mdi-briefcase-off:before{content:"\f1658"}.mdi-briefcase-off-outline:before{content:"\f1659"}.mdi-briefcase-outline:before{content:"\f0814"}.mdi-briefcase-plus:before{content:"\f0a2b"}.mdi-briefcase-plus-outline:before{content:"\f0c40"}.mdi-briefcase-remove:before{content:"\f0a2c"}.mdi-briefcase-remove-outline:before{content:"\f0c41"}.mdi-briefcase-search:before{content:"\f0a2d"}.mdi-briefcase-search-outline:before{content:"\f0c42"}.mdi-briefcase-upload:before{content:"\f00d9"}.mdi-briefcase-upload-outline:before{content:"\f0c43"}.mdi-briefcase-variant:before{content:"\f1494"}.mdi-briefcase-variant-off:before{content:"\f165a"}.mdi-briefcase-variant-off-outline:before{content:"\f165b"}.mdi-briefcase-variant-outline:before{content:"\f1495"}.mdi-brightness-1:before{content:"\f00da"}.mdi-brightness-2:before{content:"\f00db"}.mdi-brightness-3:before{content:"\f00dc"}.mdi-brightness-4:before{content:"\f00dd"}.mdi-brightness-5:before{content:"\f00de"}.mdi-brightness-6:before{content:"\f00df"}.mdi-brightness-7:before{content:"\f00e0"}.mdi-brightness-auto:before{content:"\f00e1"}.mdi-brightness-percent:before{content:"\f0cf2"}.mdi-broom:before{content:"\f00e2"}.mdi-brush:before{content:"\f00e3"}.mdi-bucket:before{content:"\f1415"}.mdi-bucket-outline:before{content:"\f1416"}.mdi-buddhism:before{content:"\f094b"}.mdi-buffer:before{content:"\f0619"}.mdi-buffet:before{content:"\f0578"}.mdi-bug:before{content:"\f00e4"}.mdi-bug-check:before{content:"\f0a2e"}.mdi-bug-check-outline:before{content:"\f0a2f"}.mdi-bug-outline:before{content:"\f0a30"}.mdi-bugle:before{content:"\f0db4"}.mdi-bulldozer:before{content:"\f0b22"}.mdi-bullet:before{content:"\f0cf3"}.mdi-bulletin-board:before{content:"\f00e5"}.mdi-bullhorn:before{content:"\f00e6"}.mdi-bullhorn-outline:before{content:"\f0b23"}.mdi-bullseye:before{content:"\f05dd"}.mdi-bullseye-arrow:before{content:"\f08c9"}.mdi-bulma:before{content:"\f12e7"}.mdi-bunk-bed:before{content:"\f1302"}.mdi-bunk-bed-outline:before{content:"\f0097"}.mdi-bus:before{content:"\f00e7"}.mdi-bus-alert:before{content:"\f0a99"}.mdi-bus-articulated-end:before{content:"\f079c"}.mdi-bus-articulated-front:before{content:"\f079d"}.mdi-bus-clock:before{content:"\f08ca"}.mdi-bus-double-decker:before{content:"\f079e"}.mdi-bus-marker:before{content:"\f1212"}.mdi-bus-multiple:before{content:"\f0f3f"}.mdi-bus-school:before{content:"\f079f"}.mdi-bus-side:before{content:"\f07a0"}.mdi-bus-stop:before{content:"\f1012"}.mdi-bus-stop-covered:before{content:"\f1013"}.mdi-bus-stop-uncovered:before{content:"\f1014"}.mdi-butterfly:before{content:"\f1589"}.mdi-butterfly-outline:before{content:"\f158a"}.mdi-cable-data:before{content:"\f1394"}.mdi-cached:before{content:"\f00e8"}.mdi-cactus:before{content:"\f0db5"}.mdi-cake:before{content:"\f00e9"}.mdi-cake-layered:before{content:"\f00ea"}.mdi-cake-variant:before{content:"\f00eb"}.mdi-calculator:before{content:"\f00ec"}.mdi-calculator-variant:before{content:"\f0a9a"}.mdi-calculator-variant-outline:before{content:"\f15a6"}.mdi-calendar:before{content:"\f00ed"}.mdi-calendar-account:before{content:"\f0ed7"}.mdi-calendar-account-outline:before{content:"\f0ed8"}.mdi-calendar-alert:before{content:"\f0a31"}.mdi-calendar-arrow-left:before{content:"\f1134"}.mdi-calendar-arrow-right:before{content:"\f1135"}.mdi-calendar-blank:before{content:"\f00ee"}.mdi-calendar-blank-multiple:before{content:"\f1073"}.mdi-calendar-blank-outline:before{content:"\f0b66"}.mdi-calendar-check:before{content:"\f00ef"}.mdi-calendar-check-outline:before{content:"\f0c44"}.mdi-calendar-clock:before{content:"\f00f0"}.mdi-calendar-cursor:before{content:"\f157b"}.mdi-calendar-edit:before{content:"\f08a7"}.mdi-calendar-end:before{content:"\f166c"}.mdi-calendar-export:before{content:"\f0b24"}.mdi-calendar-heart:before{content:"\f09d2"}.mdi-calendar-import:before{content:"\f0b25"}.mdi-calendar-lock:before{content:"\f1641"}.mdi-calendar-lock-outline:before{content:"\f1642"}.mdi-calendar-minus:before{content:"\f0d5c"}.mdi-calendar-month:before{content:"\f0e17"}.mdi-calendar-month-outline:before{content:"\f0e18"}.mdi-calendar-multiple:before{content:"\f00f1"}.mdi-calendar-multiple-check:before{content:"\f00f2"}.mdi-calendar-multiselect:before{content:"\f0a32"}.mdi-calendar-outline:before{content:"\f0b67"}.mdi-calendar-plus:before{content:"\f00f3"}.mdi-calendar-question:before{content:"\f0692"}.mdi-calendar-range:before{content:"\f0679"}.mdi-calendar-range-outline:before{content:"\f0b68"}.mdi-calendar-refresh:before{content:"\f01e1"}.mdi-calendar-refresh-outline:before{content:"\f0203"}.mdi-calendar-remove:before{content:"\f00f4"}.mdi-calendar-remove-outline:before{content:"\f0c45"}.mdi-calendar-search:before{content:"\f094c"}.mdi-calendar-star:before{content:"\f09d3"}.mdi-calendar-start:before{content:"\f166d"}.mdi-calendar-sync:before{content:"\f0e8e"}.mdi-calendar-sync-outline:before{content:"\f0e8f"}.mdi-calendar-text:before{content:"\f00f5"}.mdi-calendar-text-outline:before{content:"\f0c46"}.mdi-calendar-today:before{content:"\f00f6"}.mdi-calendar-week:before{content:"\f0a33"}.mdi-calendar-week-begin:before{content:"\f0a34"}.mdi-calendar-weekend:before{content:"\f0ed9"}.mdi-calendar-weekend-outline:before{content:"\f0eda"}.mdi-call-made:before{content:"\f00f7"}.mdi-call-merge:before{content:"\f00f8"}.mdi-call-missed:before{content:"\f00f9"}.mdi-call-received:before{content:"\f00fa"}.mdi-call-split:before{content:"\f00fb"}.mdi-camcorder:before{content:"\f00fc"}.mdi-camcorder-off:before{content:"\f00ff"}.mdi-camera:before{content:"\f0100"}.mdi-camera-account:before{content:"\f08cb"}.mdi-camera-burst:before{content:"\f0693"}.mdi-camera-control:before{content:"\f0b69"}.mdi-camera-enhance:before{content:"\f0101"}.mdi-camera-enhance-outline:before{content:"\f0b6a"}.mdi-camera-flip:before{content:"\f15d9"}.mdi-camera-flip-outline:before{content:"\f15da"}.mdi-camera-front:before{content:"\f0102"}.mdi-camera-front-variant:before{content:"\f0103"}.mdi-camera-gopro:before{content:"\f07a1"}.mdi-camera-image:before{content:"\f08cc"}.mdi-camera-iris:before{content:"\f0104"}.mdi-camera-metering-center:before{content:"\f07a2"}.mdi-camera-metering-matrix:before{content:"\f07a3"}.mdi-camera-metering-partial:before{content:"\f07a4"}.mdi-camera-metering-spot:before{content:"\f07a5"}.mdi-camera-off:before{content:"\f05df"}.mdi-camera-outline:before{content:"\f0d5d"}.mdi-camera-party-mode:before{content:"\f0105"}.mdi-camera-plus:before{content:"\f0edb"}.mdi-camera-plus-outline:before{content:"\f0edc"}.mdi-camera-rear:before{content:"\f0106"}.mdi-camera-rear-variant:before{content:"\f0107"}.mdi-camera-retake:before{content:"\f0e19"}.mdi-camera-retake-outline:before{content:"\f0e1a"}.mdi-camera-switch:before{content:"\f0108"}.mdi-camera-switch-outline:before{content:"\f084a"}.mdi-camera-timer:before{content:"\f0109"}.mdi-camera-wireless:before{content:"\f0db6"}.mdi-camera-wireless-outline:before{content:"\f0db7"}.mdi-campfire:before{content:"\f0edd"}.mdi-cancel:before{content:"\f073a"}.mdi-candle:before{content:"\f05e2"}.mdi-candycane:before{content:"\f010a"}.mdi-cannabis:before{content:"\f07a6"}.mdi-cannabis-off:before{content:"\f166e"}.mdi-caps-lock:before{content:"\f0a9b"}.mdi-car:before{content:"\f010b"}.mdi-car-2-plus:before{content:"\f1015"}.mdi-car-3-plus:before{content:"\f1016"}.mdi-car-arrow-left:before{content:"\f13b2"}.mdi-car-arrow-right:before{content:"\f13b3"}.mdi-car-back:before{content:"\f0e1b"}.mdi-car-battery:before{content:"\f010c"}.mdi-car-brake-abs:before{content:"\f0c47"}.mdi-car-brake-alert:before{content:"\f0c48"}.mdi-car-brake-hold:before{content:"\f0d5e"}.mdi-car-brake-parking:before{content:"\f0d5f"}.mdi-car-brake-retarder:before{content:"\f1017"}.mdi-car-child-seat:before{content:"\f0fa3"}.mdi-car-clutch:before{content:"\f1018"}.mdi-car-cog:before{content:"\f13cc"}.mdi-car-connected:before{content:"\f010d"}.mdi-car-convertible:before{content:"\f07a7"}.mdi-car-coolant-level:before{content:"\f1019"}.mdi-car-cruise-control:before{content:"\f0d60"}.mdi-car-defrost-front:before{content:"\f0d61"}.mdi-car-defrost-rear:before{content:"\f0d62"}.mdi-car-door:before{content:"\f0b6b"}.mdi-car-door-lock:before{content:"\f109d"}.mdi-car-electric:before{content:"\f0b6c"}.mdi-car-electric-outline:before{content:"\f15b5"}.mdi-car-emergency:before{content:"\f160f"}.mdi-car-esp:before{content:"\f0c49"}.mdi-car-estate:before{content:"\f07a8"}.mdi-car-hatchback:before{content:"\f07a9"}.mdi-car-info:before{content:"\f11be"}.mdi-car-key:before{content:"\f0b6d"}.mdi-car-lifted-pickup:before{content:"\f152d"}.mdi-car-light-dimmed:before{content:"\f0c4a"}.mdi-car-light-fog:before{content:"\f0c4b"}.mdi-car-light-high:before{content:"\f0c4c"}.mdi-car-limousine:before{content:"\f08cd"}.mdi-car-multiple:before{content:"\f0b6e"}.mdi-car-off:before{content:"\f0e1c"}.mdi-car-outline:before{content:"\f14ed"}.mdi-car-parking-lights:before{content:"\f0d63"}.mdi-car-pickup:before{content:"\f07aa"}.mdi-car-seat:before{content:"\f0fa4"}.mdi-car-seat-cooler:before{content:"\f0fa5"}.mdi-car-seat-heater:before{content:"\f0fa6"}.mdi-car-settings:before{content:"\f13cd"}.mdi-car-shift-pattern:before{content:"\f0f40"}.mdi-car-side:before{content:"\f07ab"}.mdi-car-sports:before{content:"\f07ac"}.mdi-car-tire-alert:before{content:"\f0c4d"}.mdi-car-traction-control:before{content:"\f0d64"}.mdi-car-turbocharger:before{content:"\f101a"}.mdi-car-wash:before{content:"\f010e"}.mdi-car-windshield:before{content:"\f101b"}.mdi-car-windshield-outline:before{content:"\f101c"}.mdi-carabiner:before{content:"\f14c0"}.mdi-caravan:before{content:"\f07ad"}.mdi-card:before{content:"\f0b6f"}.mdi-card-account-details:before{content:"\f05d2"}.mdi-card-account-details-outline:before{content:"\f0dab"}.mdi-card-account-details-star:before{content:"\f02a3"}.mdi-card-account-details-star-outline:before{content:"\f06db"}.mdi-card-account-mail:before{content:"\f018e"}.mdi-card-account-mail-outline:before{content:"\f0e98"}.mdi-card-account-phone:before{content:"\f0e99"}.mdi-card-account-phone-outline:before{content:"\f0e9a"}.mdi-card-bulleted:before{content:"\f0b70"}.mdi-card-bulleted-off:before{content:"\f0b71"}.mdi-card-bulleted-off-outline:before{content:"\f0b72"}.mdi-card-bulleted-outline:before{content:"\f0b73"}.mdi-card-bulleted-settings:before{content:"\f0b74"}.mdi-card-bulleted-settings-outline:before{content:"\f0b75"}.mdi-card-minus:before{content:"\f1600"}.mdi-card-minus-outline:before{content:"\f1601"}.mdi-card-off:before{content:"\f1602"}.mdi-card-off-outline:before{content:"\f1603"}.mdi-card-outline:before{content:"\f0b76"}.mdi-card-plus:before{content:"\f11ff"}.mdi-card-plus-outline:before{content:"\f1200"}.mdi-card-remove:before{content:"\f1604"}.mdi-card-remove-outline:before{content:"\f1605"}.mdi-card-search:before{content:"\f1074"}.mdi-card-search-outline:before{content:"\f1075"}.mdi-card-text:before{content:"\f0b77"}.mdi-card-text-outline:before{content:"\f0b78"}.mdi-cards:before{content:"\f0638"}.mdi-cards-club:before{content:"\f08ce"}.mdi-cards-diamond:before{content:"\f08cf"}.mdi-cards-diamond-outline:before{content:"\f101d"}.mdi-cards-heart:before{content:"\f08d0"}.mdi-cards-outline:before{content:"\f0639"}.mdi-cards-playing-outline:before{content:"\f063a"}.mdi-cards-spade:before{content:"\f08d1"}.mdi-cards-variant:before{content:"\f06c7"}.mdi-carrot:before{content:"\f010f"}.mdi-cart:before{content:"\f0110"}.mdi-cart-arrow-down:before{content:"\f0d66"}.mdi-cart-arrow-right:before{content:"\f0c4e"}.mdi-cart-arrow-up:before{content:"\f0d67"}.mdi-cart-check:before{content:"\f15ea"}.mdi-cart-minus:before{content:"\f0d68"}.mdi-cart-off:before{content:"\f066b"}.mdi-cart-outline:before{content:"\f0111"}.mdi-cart-plus:before{content:"\f0112"}.mdi-cart-remove:before{content:"\f0d69"}.mdi-cart-variant:before{content:"\f15eb"}.mdi-case-sensitive-alt:before{content:"\f0113"}.mdi-cash:before{content:"\f0114"}.mdi-cash-100:before{content:"\f0115"}.mdi-cash-check:before{content:"\f14ee"}.mdi-cash-lock:before{content:"\f14ea"}.mdi-cash-lock-open:before{content:"\f14eb"}.mdi-cash-marker:before{content:"\f0db8"}.mdi-cash-minus:before{content:"\f1260"}.mdi-cash-multiple:before{content:"\f0116"}.mdi-cash-plus:before{content:"\f1261"}.mdi-cash-refund:before{content:"\f0a9c"}.mdi-cash-register:before{content:"\f0cf4"}.mdi-cash-remove:before{content:"\f1262"}.mdi-cash-usd:before{content:"\f1176"}.mdi-cash-usd-outline:before{content:"\f0117"}.mdi-cassette:before{content:"\f09d4"}.mdi-cast:before{content:"\f0118"}.mdi-cast-audio:before{content:"\f101e"}.mdi-cast-connected:before{content:"\f0119"}.mdi-cast-education:before{content:"\f0e1d"}.mdi-cast-off:before{content:"\f078a"}.mdi-castle:before{content:"\f011a"}.mdi-cat:before{content:"\f011b"}.mdi-cctv:before{content:"\f07ae"}.mdi-ceiling-light:before{content:"\f0769"}.mdi-cellphone:before{content:"\f011c"}.mdi-cellphone-android:before{content:"\f011d"}.mdi-cellphone-arrow-down:before{content:"\f09d5"}.mdi-cellphone-basic:before{content:"\f011e"}.mdi-cellphone-charging:before{content:"\f1397"}.mdi-cellphone-cog:before{content:"\f0951"}.mdi-cellphone-dock:before{content:"\f011f"}.mdi-cellphone-erase:before{content:"\f094d"}.mdi-cellphone-information:before{content:"\f0f41"}.mdi-cellphone-iphone:before{content:"\f0120"}.mdi-cellphone-key:before{content:"\f094e"}.mdi-cellphone-link:before{content:"\f0121"}.mdi-cellphone-link-off:before{content:"\f0122"}.mdi-cellphone-lock:before{content:"\f094f"}.mdi-cellphone-message:before{content:"\f08d3"}.mdi-cellphone-message-off:before{content:"\f10d2"}.mdi-cellphone-nfc:before{content:"\f0e90"}.mdi-cellphone-nfc-off:before{content:"\f12d8"}.mdi-cellphone-off:before{content:"\f0950"}.mdi-cellphone-play:before{content:"\f101f"}.mdi-cellphone-screenshot:before{content:"\f0a35"}.mdi-cellphone-settings:before{content:"\f0123"}.mdi-cellphone-sound:before{content:"\f0952"}.mdi-cellphone-text:before{content:"\f08d2"}.mdi-cellphone-wireless:before{content:"\f0815"}.mdi-celtic-cross:before{content:"\f0cf5"}.mdi-centos:before{content:"\f111a"}.mdi-certificate:before{content:"\f0124"}.mdi-certificate-outline:before{content:"\f1188"}.mdi-chair-rolling:before{content:"\f0f48"}.mdi-chair-school:before{content:"\f0125"}.mdi-charity:before{content:"\f0c4f"}.mdi-chart-arc:before{content:"\f0126"}.mdi-chart-areaspline:before{content:"\f0127"}.mdi-chart-areaspline-variant:before{content:"\f0e91"}.mdi-chart-bar:before{content:"\f0128"}.mdi-chart-bar-stacked:before{content:"\f076a"}.mdi-chart-bell-curve:before{content:"\f0c50"}.mdi-chart-bell-curve-cumulative:before{content:"\f0fa7"}.mdi-chart-box:before{content:"\f154d"}.mdi-chart-box-outline:before{content:"\f154e"}.mdi-chart-box-plus-outline:before{content:"\f154f"}.mdi-chart-bubble:before{content:"\f05e3"}.mdi-chart-donut:before{content:"\f07af"}.mdi-chart-donut-variant:before{content:"\f07b0"}.mdi-chart-gantt:before{content:"\f066c"}.mdi-chart-histogram:before{content:"\f0129"}.mdi-chart-line:before{content:"\f012a"}.mdi-chart-line-stacked:before{content:"\f076b"}.mdi-chart-line-variant:before{content:"\f07b1"}.mdi-chart-multiline:before{content:"\f08d4"}.mdi-chart-multiple:before{content:"\f1213"}.mdi-chart-pie:before{content:"\f012b"}.mdi-chart-ppf:before{content:"\f1380"}.mdi-chart-sankey:before{content:"\f11df"}.mdi-chart-sankey-variant:before{content:"\f11e0"}.mdi-chart-scatter-plot:before{content:"\f0e92"}.mdi-chart-scatter-plot-hexbin:before{content:"\f066d"}.mdi-chart-timeline:before{content:"\f066e"}.mdi-chart-timeline-variant:before{content:"\f0e93"}.mdi-chart-timeline-variant-shimmer:before{content:"\f15b6"}.mdi-chart-tree:before{content:"\f0e94"}.mdi-chat:before{content:"\f0b79"}.mdi-chat-alert:before{content:"\f0b7a"}.mdi-chat-alert-outline:before{content:"\f12c9"}.mdi-chat-minus:before{content:"\f1410"}.mdi-chat-minus-outline:before{content:"\f1413"}.mdi-chat-outline:before{content:"\f0ede"}.mdi-chat-plus:before{content:"\f140f"}.mdi-chat-plus-outline:before{content:"\f1412"}.mdi-chat-processing:before{content:"\f0b7b"}.mdi-chat-processing-outline:before{content:"\f12ca"}.mdi-chat-remove:before{content:"\f1411"}.mdi-chat-remove-outline:before{content:"\f1414"}.mdi-chat-sleep:before{content:"\f12d1"}.mdi-chat-sleep-outline:before{content:"\f12d2"}.mdi-check:before{content:"\f012c"}.mdi-check-all:before{content:"\f012d"}.mdi-check-bold:before{content:"\f0e1e"}.mdi-check-box-multiple-outline:before{content:"\f0c51"}.mdi-check-box-outline:before{content:"\f0c52"}.mdi-check-circle:before{content:"\f05e0"}.mdi-check-circle-outline:before{content:"\f05e1"}.mdi-check-decagram:before{content:"\f0791"}.mdi-check-network:before{content:"\f0c53"}.mdi-check-network-outline:before{content:"\f0c54"}.mdi-check-outline:before{content:"\f0855"}.mdi-check-underline:before{content:"\f0e1f"}.mdi-check-underline-circle:before{content:"\f0e20"}.mdi-check-underline-circle-outline:before{content:"\f0e21"}.mdi-checkbook:before{content:"\f0a9d"}.mdi-checkbox-blank:before{content:"\f012e"}.mdi-checkbox-blank-circle:before{content:"\f012f"}.mdi-checkbox-blank-circle-outline:before{content:"\f0130"}.mdi-checkbox-blank-off:before{content:"\f12ec"}.mdi-checkbox-blank-off-outline:before{content:"\f12ed"}.mdi-checkbox-blank-outline:before{content:"\f0131"}.mdi-checkbox-intermediate:before{content:"\f0856"}.mdi-checkbox-marked:before{content:"\f0132"}.mdi-checkbox-marked-circle:before{content:"\f0133"}.mdi-checkbox-marked-circle-outline:before{content:"\f0134"}.mdi-checkbox-marked-outline:before{content:"\f0135"}.mdi-checkbox-multiple-blank:before{content:"\f0136"}.mdi-checkbox-multiple-blank-circle:before{content:"\f063b"}.mdi-checkbox-multiple-blank-circle-outline:before{content:"\f063c"}.mdi-checkbox-multiple-blank-outline:before{content:"\f0137"}.mdi-checkbox-multiple-marked:before{content:"\f0138"}.mdi-checkbox-multiple-marked-circle:before{content:"\f063d"}.mdi-checkbox-multiple-marked-circle-outline:before{content:"\f063e"}.mdi-checkbox-multiple-marked-outline:before{content:"\f0139"}.mdi-checkerboard:before{content:"\f013a"}.mdi-checkerboard-minus:before{content:"\f1202"}.mdi-checkerboard-plus:before{content:"\f1201"}.mdi-checkerboard-remove:before{content:"\f1203"}.mdi-cheese:before{content:"\f12b9"}.mdi-cheese-off:before{content:"\f13ee"}.mdi-chef-hat:before{content:"\f0b7c"}.mdi-chemical-weapon:before{content:"\f013b"}.mdi-chess-bishop:before{content:"\f085c"}.mdi-chess-king:before{content:"\f0857"}.mdi-chess-knight:before{content:"\f0858"}.mdi-chess-pawn:before{content:"\f0859"}.mdi-chess-queen:before{content:"\f085a"}.mdi-chess-rook:before{content:"\f085b"}.mdi-chevron-double-down:before{content:"\f013c"}.mdi-chevron-double-left:before{content:"\f013d"}.mdi-chevron-double-right:before{content:"\f013e"}.mdi-chevron-double-up:before{content:"\f013f"}.mdi-chevron-down:before{content:"\f0140"}.mdi-chevron-down-box:before{content:"\f09d6"}.mdi-chevron-down-box-outline:before{content:"\f09d7"}.mdi-chevron-down-circle:before{content:"\f0b26"}.mdi-chevron-down-circle-outline:before{content:"\f0b27"}.mdi-chevron-left:before{content:"\f0141"}.mdi-chevron-left-box:before{content:"\f09d8"}.mdi-chevron-left-box-outline:before{content:"\f09d9"}.mdi-chevron-left-circle:before{content:"\f0b28"}.mdi-chevron-left-circle-outline:before{content:"\f0b29"}.mdi-chevron-right:before{content:"\f0142"}.mdi-chevron-right-box:before{content:"\f09da"}.mdi-chevron-right-box-outline:before{content:"\f09db"}.mdi-chevron-right-circle:before{content:"\f0b2a"}.mdi-chevron-right-circle-outline:before{content:"\f0b2b"}.mdi-chevron-triple-down:before{content:"\f0db9"}.mdi-chevron-triple-left:before{content:"\f0dba"}.mdi-chevron-triple-right:before{content:"\f0dbb"}.mdi-chevron-triple-up:before{content:"\f0dbc"}.mdi-chevron-up:before{content:"\f0143"}.mdi-chevron-up-box:before{content:"\f09dc"}.mdi-chevron-up-box-outline:before{content:"\f09dd"}.mdi-chevron-up-circle:before{content:"\f0b2c"}.mdi-chevron-up-circle-outline:before{content:"\f0b2d"}.mdi-chili-hot:before{content:"\f07b2"}.mdi-chili-medium:before{content:"\f07b3"}.mdi-chili-mild:before{content:"\f07b4"}.mdi-chili-off:before{content:"\f1467"}.mdi-chip:before{content:"\f061a"}.mdi-christianity:before{content:"\f0953"}.mdi-christianity-outline:before{content:"\f0cf6"}.mdi-church:before{content:"\f0144"}.mdi-cigar:before{content:"\f1189"}.mdi-cigar-off:before{content:"\f141b"}.mdi-circle:before{content:"\f0765"}.mdi-circle-box:before{content:"\f15dc"}.mdi-circle-box-outline:before{content:"\f15dd"}.mdi-circle-double:before{content:"\f0e95"}.mdi-circle-edit-outline:before{content:"\f08d5"}.mdi-circle-expand:before{content:"\f0e96"}.mdi-circle-half:before{content:"\f1395"}.mdi-circle-half-full:before{content:"\f1396"}.mdi-circle-medium:before{content:"\f09de"}.mdi-circle-multiple:before{content:"\f0b38"}.mdi-circle-multiple-outline:before{content:"\f0695"}.mdi-circle-off-outline:before{content:"\f10d3"}.mdi-circle-outline:before{content:"\f0766"}.mdi-circle-slice-1:before{content:"\f0a9e"}.mdi-circle-slice-2:before{content:"\f0a9f"}.mdi-circle-slice-3:before{content:"\f0aa0"}.mdi-circle-slice-4:before{content:"\f0aa1"}.mdi-circle-slice-5:before{content:"\f0aa2"}.mdi-circle-slice-6:before{content:"\f0aa3"}.mdi-circle-slice-7:before{content:"\f0aa4"}.mdi-circle-slice-8:before{content:"\f0aa5"}.mdi-circle-small:before{content:"\f09df"}.mdi-circular-saw:before{content:"\f0e22"}.mdi-city:before{content:"\f0146"}.mdi-city-variant:before{content:"\f0a36"}.mdi-city-variant-outline:before{content:"\f0a37"}.mdi-clipboard:before{content:"\f0147"}.mdi-clipboard-account:before{content:"\f0148"}.mdi-clipboard-account-outline:before{content:"\f0c55"}.mdi-clipboard-alert:before{content:"\f0149"}.mdi-clipboard-alert-outline:before{content:"\f0cf7"}.mdi-clipboard-arrow-down:before{content:"\f014a"}.mdi-clipboard-arrow-down-outline:before{content:"\f0c56"}.mdi-clipboard-arrow-left:before{content:"\f014b"}.mdi-clipboard-arrow-left-outline:before{content:"\f0cf8"}.mdi-clipboard-arrow-right:before{content:"\f0cf9"}.mdi-clipboard-arrow-right-outline:before{content:"\f0cfa"}.mdi-clipboard-arrow-up:before{content:"\f0c57"}.mdi-clipboard-arrow-up-outline:before{content:"\f0c58"}.mdi-clipboard-check:before{content:"\f014e"}.mdi-clipboard-check-multiple:before{content:"\f1263"}.mdi-clipboard-check-multiple-outline:before{content:"\f1264"}.mdi-clipboard-check-outline:before{content:"\f08a8"}.mdi-clipboard-edit:before{content:"\f14e5"}.mdi-clipboard-edit-outline:before{content:"\f14e6"}.mdi-clipboard-file:before{content:"\f1265"}.mdi-clipboard-file-outline:before{content:"\f1266"}.mdi-clipboard-flow:before{content:"\f06c8"}.mdi-clipboard-flow-outline:before{content:"\f1117"}.mdi-clipboard-list:before{content:"\f10d4"}.mdi-clipboard-list-outline:before{content:"\f10d5"}.mdi-clipboard-minus:before{content:"\f1618"}.mdi-clipboard-minus-outline:before{content:"\f1619"}.mdi-clipboard-multiple:before{content:"\f1267"}.mdi-clipboard-multiple-outline:before{content:"\f1268"}.mdi-clipboard-off:before{content:"\f161a"}.mdi-clipboard-off-outline:before{content:"\f161b"}.mdi-clipboard-outline:before{content:"\f014c"}.mdi-clipboard-play:before{content:"\f0c59"}.mdi-clipboard-play-multiple:before{content:"\f1269"}.mdi-clipboard-play-multiple-outline:before{content:"\f126a"}.mdi-clipboard-play-outline:before{content:"\f0c5a"}.mdi-clipboard-plus:before{content:"\f0751"}.mdi-clipboard-plus-outline:before{content:"\f131f"}.mdi-clipboard-pulse:before{content:"\f085d"}.mdi-clipboard-pulse-outline:before{content:"\f085e"}.mdi-clipboard-remove:before{content:"\f161c"}.mdi-clipboard-remove-outline:before{content:"\f161d"}.mdi-clipboard-search:before{content:"\f161e"}.mdi-clipboard-search-outline:before{content:"\f161f"}.mdi-clipboard-text:before{content:"\f014d"}.mdi-clipboard-text-multiple:before{content:"\f126b"}.mdi-clipboard-text-multiple-outline:before{content:"\f126c"}.mdi-clipboard-text-off:before{content:"\f1620"}.mdi-clipboard-text-off-outline:before{content:"\f1621"}.mdi-clipboard-text-outline:before{content:"\f0a38"}.mdi-clipboard-text-play:before{content:"\f0c5b"}.mdi-clipboard-text-play-outline:before{content:"\f0c5c"}.mdi-clipboard-text-search:before{content:"\f1622"}.mdi-clipboard-text-search-outline:before{content:"\f1623"}.mdi-clippy:before{content:"\f014f"}.mdi-clock:before{content:"\f0954"}.mdi-clock-alert:before{content:"\f0955"}.mdi-clock-alert-outline:before{content:"\f05ce"}.mdi-clock-check:before{content:"\f0fa8"}.mdi-clock-check-outline:before{content:"\f0fa9"}.mdi-clock-digital:before{content:"\f0e97"}.mdi-clock-end:before{content:"\f0151"}.mdi-clock-fast:before{content:"\f0152"}.mdi-clock-in:before{content:"\f0153"}.mdi-clock-out:before{content:"\f0154"}.mdi-clock-outline:before{content:"\f0150"}.mdi-clock-start:before{content:"\f0155"}.mdi-clock-time-eight:before{content:"\f1446"}.mdi-clock-time-eight-outline:before{content:"\f1452"}.mdi-clock-time-eleven:before{content:"\f1449"}.mdi-clock-time-eleven-outline:before{content:"\f1455"}.mdi-clock-time-five:before{content:"\f1443"}.mdi-clock-time-five-outline:before{content:"\f144f"}.mdi-clock-time-four:before{content:"\f1442"}.mdi-clock-time-four-outline:before{content:"\f144e"}.mdi-clock-time-nine:before{content:"\f1447"}.mdi-clock-time-nine-outline:before{content:"\f1453"}.mdi-clock-time-one:before{content:"\f143f"}.mdi-clock-time-one-outline:before{content:"\f144b"}.mdi-clock-time-seven:before{content:"\f1445"}.mdi-clock-time-seven-outline:before{content:"\f1451"}.mdi-clock-time-six:before{content:"\f1444"}.mdi-clock-time-six-outline:before{content:"\f1450"}.mdi-clock-time-ten:before{content:"\f1448"}.mdi-clock-time-ten-outline:before{content:"\f1454"}.mdi-clock-time-three:before{content:"\f1441"}.mdi-clock-time-three-outline:before{content:"\f144d"}.mdi-clock-time-twelve:before{content:"\f144a"}.mdi-clock-time-twelve-outline:before{content:"\f1456"}.mdi-clock-time-two:before{content:"\f1440"}.mdi-clock-time-two-outline:before{content:"\f144c"}.mdi-close:before{content:"\f0156"}.mdi-close-box:before{content:"\f0157"}.mdi-close-box-multiple:before{content:"\f0c5d"}.mdi-close-box-multiple-outline:before{content:"\f0c5e"}.mdi-close-box-outline:before{content:"\f0158"}.mdi-close-circle:before{content:"\f0159"}.mdi-close-circle-multiple:before{content:"\f062a"}.mdi-close-circle-multiple-outline:before{content:"\f0883"}.mdi-close-circle-outline:before{content:"\f015a"}.mdi-close-network:before{content:"\f015b"}.mdi-close-network-outline:before{content:"\f0c5f"}.mdi-close-octagon:before{content:"\f015c"}.mdi-close-octagon-outline:before{content:"\f015d"}.mdi-close-outline:before{content:"\f06c9"}.mdi-close-thick:before{content:"\f1398"}.mdi-closed-caption:before{content:"\f015e"}.mdi-closed-caption-outline:before{content:"\f0dbd"}.mdi-cloud:before{content:"\f015f"}.mdi-cloud-alert:before{content:"\f09e0"}.mdi-cloud-braces:before{content:"\f07b5"}.mdi-cloud-check:before{content:"\f0160"}.mdi-cloud-check-outline:before{content:"\f12cc"}.mdi-cloud-circle:before{content:"\f0161"}.mdi-cloud-download:before{content:"\f0162"}.mdi-cloud-download-outline:before{content:"\f0b7d"}.mdi-cloud-lock:before{content:"\f11f1"}.mdi-cloud-lock-outline:before{content:"\f11f2"}.mdi-cloud-off-outline:before{content:"\f0164"}.mdi-cloud-outline:before{content:"\f0163"}.mdi-cloud-print:before{content:"\f0165"}.mdi-cloud-print-outline:before{content:"\f0166"}.mdi-cloud-question:before{content:"\f0a39"}.mdi-cloud-refresh:before{content:"\f052a"}.mdi-cloud-search:before{content:"\f0956"}.mdi-cloud-search-outline:before{content:"\f0957"}.mdi-cloud-sync:before{content:"\f063f"}.mdi-cloud-sync-outline:before{content:"\f12d6"}.mdi-cloud-tags:before{content:"\f07b6"}.mdi-cloud-upload:before{content:"\f0167"}.mdi-cloud-upload-outline:before{content:"\f0b7e"}.mdi-clover:before{content:"\f0816"}.mdi-coach-lamp:before{content:"\f1020"}.mdi-coat-rack:before{content:"\f109e"}.mdi-code-array:before{content:"\f0168"}.mdi-code-braces:before{content:"\f0169"}.mdi-code-braces-box:before{content:"\f10d6"}.mdi-code-brackets:before{content:"\f016a"}.mdi-code-equal:before{content:"\f016b"}.mdi-code-greater-than:before{content:"\f016c"}.mdi-code-greater-than-or-equal:before{content:"\f016d"}.mdi-code-json:before{content:"\f0626"}.mdi-code-less-than:before{content:"\f016e"}.mdi-code-less-than-or-equal:before{content:"\f016f"}.mdi-code-not-equal:before{content:"\f0170"}.mdi-code-not-equal-variant:before{content:"\f0171"}.mdi-code-parentheses:before{content:"\f0172"}.mdi-code-parentheses-box:before{content:"\f10d7"}.mdi-code-string:before{content:"\f0173"}.mdi-code-tags:before{content:"\f0174"}.mdi-code-tags-check:before{content:"\f0694"}.mdi-codepen:before{content:"\f0175"}.mdi-coffee:before{content:"\f0176"}.mdi-coffee-maker:before{content:"\f109f"}.mdi-coffee-off:before{content:"\f0faa"}.mdi-coffee-off-outline:before{content:"\f0fab"}.mdi-coffee-outline:before{content:"\f06ca"}.mdi-coffee-to-go:before{content:"\f0177"}.mdi-coffee-to-go-outline:before{content:"\f130e"}.mdi-coffin:before{content:"\f0b7f"}.mdi-cog:before{content:"\f0493"}.mdi-cog-box:before{content:"\f0494"}.mdi-cog-clockwise:before{content:"\f11dd"}.mdi-cog-counterclockwise:before{content:"\f11de"}.mdi-cog-off:before{content:"\f13ce"}.mdi-cog-off-outline:before{content:"\f13cf"}.mdi-cog-outline:before{content:"\f08bb"}.mdi-cog-refresh:before{content:"\f145e"}.mdi-cog-refresh-outline:before{content:"\f145f"}.mdi-cog-sync:before{content:"\f1460"}.mdi-cog-sync-outline:before{content:"\f1461"}.mdi-cog-transfer:before{content:"\f105b"}.mdi-cog-transfer-outline:before{content:"\f105c"}.mdi-cogs:before{content:"\f08d6"}.mdi-collage:before{content:"\f0640"}.mdi-collapse-all:before{content:"\f0aa6"}.mdi-collapse-all-outline:before{content:"\f0aa7"}.mdi-color-helper:before{content:"\f0179"}.mdi-comma:before{content:"\f0e23"}.mdi-comma-box:before{content:"\f0e2b"}.mdi-comma-box-outline:before{content:"\f0e24"}.mdi-comma-circle:before{content:"\f0e25"}.mdi-comma-circle-outline:before{content:"\f0e26"}.mdi-comment:before{content:"\f017a"}.mdi-comment-account:before{content:"\f017b"}.mdi-comment-account-outline:before{content:"\f017c"}.mdi-comment-alert:before{content:"\f017d"}.mdi-comment-alert-outline:before{content:"\f017e"}.mdi-comment-arrow-left:before{content:"\f09e1"}.mdi-comment-arrow-left-outline:before{content:"\f09e2"}.mdi-comment-arrow-right:before{content:"\f09e3"}.mdi-comment-arrow-right-outline:before{content:"\f09e4"}.mdi-comment-bookmark:before{content:"\f15ae"}.mdi-comment-bookmark-outline:before{content:"\f15af"}.mdi-comment-check:before{content:"\f017f"}.mdi-comment-check-outline:before{content:"\f0180"}.mdi-comment-edit:before{content:"\f11bf"}.mdi-comment-edit-outline:before{content:"\f12c4"}.mdi-comment-eye:before{content:"\f0a3a"}.mdi-comment-eye-outline:before{content:"\f0a3b"}.mdi-comment-flash:before{content:"\f15b0"}.mdi-comment-flash-outline:before{content:"\f15b1"}.mdi-comment-minus:before{content:"\f15df"}.mdi-comment-minus-outline:before{content:"\f15e0"}.mdi-comment-multiple:before{content:"\f085f"}.mdi-comment-multiple-outline:before{content:"\f0181"}.mdi-comment-off:before{content:"\f15e1"}.mdi-comment-off-outline:before{content:"\f15e2"}.mdi-comment-outline:before{content:"\f0182"}.mdi-comment-plus:before{content:"\f09e5"}.mdi-comment-plus-outline:before{content:"\f0183"}.mdi-comment-processing:before{content:"\f0184"}.mdi-comment-processing-outline:before{content:"\f0185"}.mdi-comment-question:before{content:"\f0817"}.mdi-comment-question-outline:before{content:"\f0186"}.mdi-comment-quote:before{content:"\f1021"}.mdi-comment-quote-outline:before{content:"\f1022"}.mdi-comment-remove:before{content:"\f05de"}.mdi-comment-remove-outline:before{content:"\f0187"}.mdi-comment-search:before{content:"\f0a3c"}.mdi-comment-search-outline:before{content:"\f0a3d"}.mdi-comment-text:before{content:"\f0188"}.mdi-comment-text-multiple:before{content:"\f0860"}.mdi-comment-text-multiple-outline:before{content:"\f0861"}.mdi-comment-text-outline:before{content:"\f0189"}.mdi-compare:before{content:"\f018a"}.mdi-compare-horizontal:before{content:"\f1492"}.mdi-compare-vertical:before{content:"\f1493"}.mdi-compass:before{content:"\f018b"}.mdi-compass-off:before{content:"\f0b80"}.mdi-compass-off-outline:before{content:"\f0b81"}.mdi-compass-outline:before{content:"\f018c"}.mdi-compass-rose:before{content:"\f1382"}.mdi-concourse-ci:before{content:"\f10a0"}.mdi-connection:before{content:"\f1616"}.mdi-console:before{content:"\f018d"}.mdi-console-line:before{content:"\f07b7"}.mdi-console-network:before{content:"\f08a9"}.mdi-console-network-outline:before{content:"\f0c60"}.mdi-consolidate:before{content:"\f10d8"}.mdi-contactless-payment:before{content:"\f0d6a"}.mdi-contactless-payment-circle:before{content:"\f0321"}.mdi-contactless-payment-circle-outline:before{content:"\f0408"}.mdi-contacts:before{content:"\f06cb"}.mdi-contacts-outline:before{content:"\f05b8"}.mdi-contain:before{content:"\f0a3e"}.mdi-contain-end:before{content:"\f0a3f"}.mdi-contain-start:before{content:"\f0a40"}.mdi-content-copy:before{content:"\f018f"}.mdi-content-cut:before{content:"\f0190"}.mdi-content-duplicate:before{content:"\f0191"}.mdi-content-paste:before{content:"\f0192"}.mdi-content-save:before{content:"\f0193"}.mdi-content-save-alert:before{content:"\f0f42"}.mdi-content-save-alert-outline:before{content:"\f0f43"}.mdi-content-save-all:before{content:"\f0194"}.mdi-content-save-all-outline:before{content:"\f0f44"}.mdi-content-save-cog:before{content:"\f145b"}.mdi-content-save-cog-outline:before{content:"\f145c"}.mdi-content-save-edit:before{content:"\f0cfb"}.mdi-content-save-edit-outline:before{content:"\f0cfc"}.mdi-content-save-move:before{content:"\f0e27"}.mdi-content-save-move-outline:before{content:"\f0e28"}.mdi-content-save-off:before{content:"\f1643"}.mdi-content-save-off-outline:before{content:"\f1644"}.mdi-content-save-outline:before{content:"\f0818"}.mdi-content-save-settings:before{content:"\f061b"}.mdi-content-save-settings-outline:before{content:"\f0b2e"}.mdi-contrast:before{content:"\f0195"}.mdi-contrast-box:before{content:"\f0196"}.mdi-contrast-circle:before{content:"\f0197"}.mdi-controller-classic:before{content:"\f0b82"}.mdi-controller-classic-outline:before{content:"\f0b83"}.mdi-cookie:before{content:"\f0198"}.mdi-cookie-alert:before{content:"\f16d0"}.mdi-cookie-alert-outline:before{content:"\f16d1"}.mdi-cookie-check:before{content:"\f16d2"}.mdi-cookie-check-outline:before{content:"\f16d3"}.mdi-cookie-cog:before{content:"\f16d4"}.mdi-cookie-cog-outline:before{content:"\f16d5"}.mdi-cookie-minus:before{content:"\f16da"}.mdi-cookie-minus-outline:before{content:"\f16db"}.mdi-cookie-outline:before{content:"\f16de"}.mdi-cookie-plus:before{content:"\f16d6"}.mdi-cookie-plus-outline:before{content:"\f16d7"}.mdi-cookie-remove:before{content:"\f16d8"}.mdi-cookie-remove-outline:before{content:"\f16d9"}.mdi-cookie-settings:before{content:"\f16dc"}.mdi-cookie-settings-outline:before{content:"\f16dd"}.mdi-coolant-temperature:before{content:"\f03c8"}.mdi-copyright:before{content:"\f05e6"}.mdi-cordova:before{content:"\f0958"}.mdi-corn:before{content:"\f07b8"}.mdi-corn-off:before{content:"\f13ef"}.mdi-cosine-wave:before{content:"\f1479"}.mdi-counter:before{content:"\f0199"}.mdi-cow:before{content:"\f019a"}.mdi-cpu-32-bit:before{content:"\f0edf"}.mdi-cpu-64-bit:before{content:"\f0ee0"}.mdi-crane:before{content:"\f0862"}.mdi-creation:before{content:"\f0674"}.mdi-creative-commons:before{content:"\f0d6b"}.mdi-credit-card:before{content:"\f0fef"}.mdi-credit-card-check:before{content:"\f13d0"}.mdi-credit-card-check-outline:before{content:"\f13d1"}.mdi-credit-card-clock:before{content:"\f0ee1"}.mdi-credit-card-clock-outline:before{content:"\f0ee2"}.mdi-credit-card-marker:before{content:"\f06a8"}.mdi-credit-card-marker-outline:before{content:"\f0dbe"}.mdi-credit-card-minus:before{content:"\f0fac"}.mdi-credit-card-minus-outline:before{content:"\f0fad"}.mdi-credit-card-multiple:before{content:"\f0ff0"}.mdi-credit-card-multiple-outline:before{content:"\f019c"}.mdi-credit-card-off:before{content:"\f0ff1"}.mdi-credit-card-off-outline:before{content:"\f05e4"}.mdi-credit-card-outline:before{content:"\f019b"}.mdi-credit-card-plus:before{content:"\f0ff2"}.mdi-credit-card-plus-outline:before{content:"\f0676"}.mdi-credit-card-refresh:before{content:"\f1645"}.mdi-credit-card-refresh-outline:before{content:"\f1646"}.mdi-credit-card-refund:before{content:"\f0ff3"}.mdi-credit-card-refund-outline:before{content:"\f0aa8"}.mdi-credit-card-remove:before{content:"\f0fae"}.mdi-credit-card-remove-outline:before{content:"\f0faf"}.mdi-credit-card-scan:before{content:"\f0ff4"}.mdi-credit-card-scan-outline:before{content:"\f019d"}.mdi-credit-card-search:before{content:"\f1647"}.mdi-credit-card-search-outline:before{content:"\f1648"}.mdi-credit-card-settings:before{content:"\f0ff5"}.mdi-credit-card-settings-outline:before{content:"\f08d7"}.mdi-credit-card-sync:before{content:"\f1649"}.mdi-credit-card-sync-outline:before{content:"\f164a"}.mdi-credit-card-wireless:before{content:"\f0802"}.mdi-credit-card-wireless-off:before{content:"\f057a"}.mdi-credit-card-wireless-off-outline:before{content:"\f057b"}.mdi-credit-card-wireless-outline:before{content:"\f0d6c"}.mdi-cricket:before{content:"\f0d6d"}.mdi-crop:before{content:"\f019e"}.mdi-crop-free:before{content:"\f019f"}.mdi-crop-landscape:before{content:"\f01a0"}.mdi-crop-portrait:before{content:"\f01a1"}.mdi-crop-rotate:before{content:"\f0696"}.mdi-crop-square:before{content:"\f01a2"}.mdi-crosshairs:before{content:"\f01a3"}.mdi-crosshairs-gps:before{content:"\f01a4"}.mdi-crosshairs-off:before{content:"\f0f45"}.mdi-crosshairs-question:before{content:"\f1136"}.mdi-crown:before{content:"\f01a5"}.mdi-crown-outline:before{content:"\f11d0"}.mdi-cryengine:before{content:"\f0959"}.mdi-crystal-ball:before{content:"\f0b2f"}.mdi-cube:before{content:"\f01a6"}.mdi-cube-off:before{content:"\f141c"}.mdi-cube-off-outline:before{content:"\f141d"}.mdi-cube-outline:before{content:"\f01a7"}.mdi-cube-scan:before{content:"\f0b84"}.mdi-cube-send:before{content:"\f01a8"}.mdi-cube-unfolded:before{content:"\f01a9"}.mdi-cup:before{content:"\f01aa"}.mdi-cup-off:before{content:"\f05e5"}.mdi-cup-off-outline:before{content:"\f137d"}.mdi-cup-outline:before{content:"\f130f"}.mdi-cup-water:before{content:"\f01ab"}.mdi-cupboard:before{content:"\f0f46"}.mdi-cupboard-outline:before{content:"\f0f47"}.mdi-cupcake:before{content:"\f095a"}.mdi-curling:before{content:"\f0863"}.mdi-currency-bdt:before{content:"\f0864"}.mdi-currency-brl:before{content:"\f0b85"}.mdi-currency-btc:before{content:"\f01ac"}.mdi-currency-cny:before{content:"\f07ba"}.mdi-currency-eth:before{content:"\f07bb"}.mdi-currency-eur:before{content:"\f01ad"}.mdi-currency-eur-off:before{content:"\f1315"}.mdi-currency-gbp:before{content:"\f01ae"}.mdi-currency-ils:before{content:"\f0c61"}.mdi-currency-inr:before{content:"\f01af"}.mdi-currency-jpy:before{content:"\f07bc"}.mdi-currency-krw:before{content:"\f07bd"}.mdi-currency-kzt:before{content:"\f0865"}.mdi-currency-mnt:before{content:"\f1512"}.mdi-currency-ngn:before{content:"\f01b0"}.mdi-currency-php:before{content:"\f09e6"}.mdi-currency-rial:before{content:"\f0e9c"}.mdi-currency-rub:before{content:"\f01b1"}.mdi-currency-sign:before{content:"\f07be"}.mdi-currency-try:before{content:"\f01b2"}.mdi-currency-twd:before{content:"\f07bf"}.mdi-currency-usd:before{content:"\f01c1"}.mdi-currency-usd-circle:before{content:"\f116b"}.mdi-currency-usd-circle-outline:before{content:"\f0178"}.mdi-currency-usd-off:before{content:"\f067a"}.mdi-current-ac:before{content:"\f1480"}.mdi-current-dc:before{content:"\f095c"}.mdi-cursor-default:before{content:"\f01c0"}.mdi-cursor-default-click:before{content:"\f0cfd"}.mdi-cursor-default-click-outline:before{content:"\f0cfe"}.mdi-cursor-default-gesture:before{content:"\f1127"}.mdi-cursor-default-gesture-outline:before{content:"\f1128"}.mdi-cursor-default-outline:before{content:"\f01bf"}.mdi-cursor-move:before{content:"\f01be"}.mdi-cursor-pointer:before{content:"\f01bd"}.mdi-cursor-text:before{content:"\f05e7"}.mdi-dance-ballroom:before{content:"\f15fb"}.mdi-dance-pole:before{content:"\f1578"}.mdi-data-matrix:before{content:"\f153c"}.mdi-data-matrix-edit:before{content:"\f153d"}.mdi-data-matrix-minus:before{content:"\f153e"}.mdi-data-matrix-plus:before{content:"\f153f"}.mdi-data-matrix-remove:before{content:"\f1540"}.mdi-data-matrix-scan:before{content:"\f1541"}.mdi-database:before{content:"\f01bc"}.mdi-database-alert:before{content:"\f163a"}.mdi-database-alert-outline:before{content:"\f1624"}.mdi-database-arrow-down:before{content:"\f163b"}.mdi-database-arrow-down-outline:before{content:"\f1625"}.mdi-database-arrow-left:before{content:"\f163c"}.mdi-database-arrow-left-outline:before{content:"\f1626"}.mdi-database-arrow-right:before{content:"\f163d"}.mdi-database-arrow-right-outline:before{content:"\f1627"}.mdi-database-arrow-up:before{content:"\f163e"}.mdi-database-arrow-up-outline:before{content:"\f1628"}.mdi-database-check:before{content:"\f0aa9"}.mdi-database-check-outline:before{content:"\f1629"}.mdi-database-clock:before{content:"\f163f"}.mdi-database-clock-outline:before{content:"\f162a"}.mdi-database-cog:before{content:"\f164b"}.mdi-database-cog-outline:before{content:"\f164c"}.mdi-database-edit:before{content:"\f0b86"}.mdi-database-edit-outline:before{content:"\f162b"}.mdi-database-export:before{content:"\f095e"}.mdi-database-export-outline:before{content:"\f162c"}.mdi-database-import:before{content:"\f095d"}.mdi-database-import-outline:before{content:"\f162d"}.mdi-database-lock:before{content:"\f0aaa"}.mdi-database-lock-outline:before{content:"\f162e"}.mdi-database-marker:before{content:"\f12f6"}.mdi-database-marker-outline:before{content:"\f162f"}.mdi-database-minus:before{content:"\f01bb"}.mdi-database-minus-outline:before{content:"\f1630"}.mdi-database-off:before{content:"\f1640"}.mdi-database-off-outline:before{content:"\f1631"}.mdi-database-outline:before{content:"\f1632"}.mdi-database-plus:before{content:"\f01ba"}.mdi-database-plus-outline:before{content:"\f1633"}.mdi-database-refresh:before{content:"\f05c2"}.mdi-database-refresh-outline:before{content:"\f1634"}.mdi-database-remove:before{content:"\f0d00"}.mdi-database-remove-outline:before{content:"\f1635"}.mdi-database-search:before{content:"\f0866"}.mdi-database-search-outline:before{content:"\f1636"}.mdi-database-settings:before{content:"\f0d01"}.mdi-database-settings-outline:before{content:"\f1637"}.mdi-database-sync:before{content:"\f0cff"}.mdi-database-sync-outline:before{content:"\f1638"}.mdi-death-star:before{content:"\f08d8"}.mdi-death-star-variant:before{content:"\f08d9"}.mdi-deathly-hallows:before{content:"\f0b87"}.mdi-debian:before{content:"\f08da"}.mdi-debug-step-into:before{content:"\f01b9"}.mdi-debug-step-out:before{content:"\f01b8"}.mdi-debug-step-over:before{content:"\f01b7"}.mdi-decagram:before{content:"\f076c"}.mdi-decagram-outline:before{content:"\f076d"}.mdi-decimal:before{content:"\f10a1"}.mdi-decimal-comma:before{content:"\f10a2"}.mdi-decimal-comma-decrease:before{content:"\f10a3"}.mdi-decimal-comma-increase:before{content:"\f10a4"}.mdi-decimal-decrease:before{content:"\f01b6"}.mdi-decimal-increase:before{content:"\f01b5"}.mdi-delete:before{content:"\f01b4"}.mdi-delete-alert:before{content:"\f10a5"}.mdi-delete-alert-outline:before{content:"\f10a6"}.mdi-delete-circle:before{content:"\f0683"}.mdi-delete-circle-outline:before{content:"\f0b88"}.mdi-delete-clock:before{content:"\f1556"}.mdi-delete-clock-outline:before{content:"\f1557"}.mdi-delete-empty:before{content:"\f06cc"}.mdi-delete-empty-outline:before{content:"\f0e9d"}.mdi-delete-forever:before{content:"\f05e8"}.mdi-delete-forever-outline:before{content:"\f0b89"}.mdi-delete-off:before{content:"\f10a7"}.mdi-delete-off-outline:before{content:"\f10a8"}.mdi-delete-outline:before{content:"\f09e7"}.mdi-delete-restore:before{content:"\f0819"}.mdi-delete-sweep:before{content:"\f05e9"}.mdi-delete-sweep-outline:before{content:"\f0c62"}.mdi-delete-variant:before{content:"\f01b3"}.mdi-delta:before{content:"\f01c2"}.mdi-desk:before{content:"\f1239"}.mdi-desk-lamp:before{content:"\f095f"}.mdi-deskphone:before{content:"\f01c3"}.mdi-desktop-classic:before{content:"\f07c0"}.mdi-desktop-mac:before{content:"\f01c4"}.mdi-desktop-mac-dashboard:before{content:"\f09e8"}.mdi-desktop-tower:before{content:"\f01c5"}.mdi-desktop-tower-monitor:before{content:"\f0aab"}.mdi-details:before{content:"\f01c6"}.mdi-dev-to:before{content:"\f0d6e"}.mdi-developer-board:before{content:"\f0697"}.mdi-deviantart:before{content:"\f01c7"}.mdi-devices:before{content:"\f0fb0"}.mdi-diabetes:before{content:"\f1126"}.mdi-dialpad:before{content:"\f061c"}.mdi-diameter:before{content:"\f0c63"}.mdi-diameter-outline:before{content:"\f0c64"}.mdi-diameter-variant:before{content:"\f0c65"}.mdi-diamond:before{content:"\f0b8a"}.mdi-diamond-outline:before{content:"\f0b8b"}.mdi-diamond-stone:before{content:"\f01c8"}.mdi-dice-1:before{content:"\f01ca"}.mdi-dice-1-outline:before{content:"\f114a"}.mdi-dice-2:before{content:"\f01cb"}.mdi-dice-2-outline:before{content:"\f114b"}.mdi-dice-3:before{content:"\f01cc"}.mdi-dice-3-outline:before{content:"\f114c"}.mdi-dice-4:before{content:"\f01cd"}.mdi-dice-4-outline:before{content:"\f114d"}.mdi-dice-5:before{content:"\f01ce"}.mdi-dice-5-outline:before{content:"\f114e"}.mdi-dice-6:before{content:"\f01cf"}.mdi-dice-6-outline:before{content:"\f114f"}.mdi-dice-d10:before{content:"\f1153"}.mdi-dice-d10-outline:before{content:"\f076f"}.mdi-dice-d12:before{content:"\f1154"}.mdi-dice-d12-outline:before{content:"\f0867"}.mdi-dice-d20:before{content:"\f1155"}.mdi-dice-d20-outline:before{content:"\f05ea"}.mdi-dice-d4:before{content:"\f1150"}.mdi-dice-d4-outline:before{content:"\f05eb"}.mdi-dice-d6:before{content:"\f1151"}.mdi-dice-d6-outline:before{content:"\f05ed"}.mdi-dice-d8:before{content:"\f1152"}.mdi-dice-d8-outline:before{content:"\f05ec"}.mdi-dice-multiple:before{content:"\f076e"}.mdi-dice-multiple-outline:before{content:"\f1156"}.mdi-digital-ocean:before{content:"\f1237"}.mdi-dip-switch:before{content:"\f07c1"}.mdi-directions:before{content:"\f01d0"}.mdi-directions-fork:before{content:"\f0641"}.mdi-disc:before{content:"\f05ee"}.mdi-disc-alert:before{content:"\f01d1"}.mdi-disc-player:before{content:"\f0960"}.mdi-discord:before{content:"\f066f"}.mdi-dishwasher:before{content:"\f0aac"}.mdi-dishwasher-alert:before{content:"\f11b8"}.mdi-dishwasher-off:before{content:"\f11b9"}.mdi-disqus:before{content:"\f01d2"}.mdi-distribute-horizontal-center:before{content:"\f11c9"}.mdi-distribute-horizontal-left:before{content:"\f11c8"}.mdi-distribute-horizontal-right:before{content:"\f11ca"}.mdi-distribute-vertical-bottom:before{content:"\f11cb"}.mdi-distribute-vertical-center:before{content:"\f11cc"}.mdi-distribute-vertical-top:before{content:"\f11cd"}.mdi-diving-flippers:before{content:"\f0dbf"}.mdi-diving-helmet:before{content:"\f0dc0"}.mdi-diving-scuba:before{content:"\f0dc1"}.mdi-diving-scuba-flag:before{content:"\f0dc2"}.mdi-diving-scuba-tank:before{content:"\f0dc3"}.mdi-diving-scuba-tank-multiple:before{content:"\f0dc4"}.mdi-diving-snorkel:before{content:"\f0dc5"}.mdi-division:before{content:"\f01d4"}.mdi-division-box:before{content:"\f01d5"}.mdi-dlna:before{content:"\f0a41"}.mdi-dna:before{content:"\f0684"}.mdi-dns:before{content:"\f01d6"}.mdi-dns-outline:before{content:"\f0b8c"}.mdi-do-not-disturb:before{content:"\f0698"}.mdi-do-not-disturb-off:before{content:"\f0699"}.mdi-dock-bottom:before{content:"\f10a9"}.mdi-dock-left:before{content:"\f10aa"}.mdi-dock-right:before{content:"\f10ab"}.mdi-dock-top:before{content:"\f1513"}.mdi-dock-window:before{content:"\f10ac"}.mdi-docker:before{content:"\f0868"}.mdi-doctor:before{content:"\f0a42"}.mdi-dog:before{content:"\f0a43"}.mdi-dog-service:before{content:"\f0aad"}.mdi-dog-side:before{content:"\f0a44"}.mdi-dolby:before{content:"\f06b3"}.mdi-dolly:before{content:"\f0e9e"}.mdi-domain:before{content:"\f01d7"}.mdi-domain-off:before{content:"\f0d6f"}.mdi-domain-plus:before{content:"\f10ad"}.mdi-domain-remove:before{content:"\f10ae"}.mdi-dome-light:before{content:"\f141e"}.mdi-domino-mask:before{content:"\f1023"}.mdi-donkey:before{content:"\f07c2"}.mdi-door:before{content:"\f081a"}.mdi-door-closed:before{content:"\f081b"}.mdi-door-closed-lock:before{content:"\f10af"}.mdi-door-open:before{content:"\f081c"}.mdi-doorbell:before{content:"\f12e6"}.mdi-doorbell-video:before{content:"\f0869"}.mdi-dot-net:before{content:"\f0aae"}.mdi-dots-grid:before{content:"\f15fc"}.mdi-dots-hexagon:before{content:"\f15ff"}.mdi-dots-horizontal:before{content:"\f01d8"}.mdi-dots-horizontal-circle:before{content:"\f07c3"}.mdi-dots-horizontal-circle-outline:before{content:"\f0b8d"}.mdi-dots-square:before{content:"\f15fd"}.mdi-dots-triangle:before{content:"\f15fe"}.mdi-dots-vertical:before{content:"\f01d9"}.mdi-dots-vertical-circle:before{content:"\f07c4"}.mdi-dots-vertical-circle-outline:before{content:"\f0b8e"}.mdi-douban:before{content:"\f069a"}.mdi-download:before{content:"\f01da"}.mdi-download-box:before{content:"\f1462"}.mdi-download-box-outline:before{content:"\f1463"}.mdi-download-circle:before{content:"\f1464"}.mdi-download-circle-outline:before{content:"\f1465"}.mdi-download-lock:before{content:"\f1320"}.mdi-download-lock-outline:before{content:"\f1321"}.mdi-download-multiple:before{content:"\f09e9"}.mdi-download-network:before{content:"\f06f4"}.mdi-download-network-outline:before{content:"\f0c66"}.mdi-download-off:before{content:"\f10b0"}.mdi-download-off-outline:before{content:"\f10b1"}.mdi-download-outline:before{content:"\f0b8f"}.mdi-drag:before{content:"\f01db"}.mdi-drag-horizontal:before{content:"\f01dc"}.mdi-drag-horizontal-variant:before{content:"\f12f0"}.mdi-drag-variant:before{content:"\f0b90"}.mdi-drag-vertical:before{content:"\f01dd"}.mdi-drag-vertical-variant:before{content:"\f12f1"}.mdi-drama-masks:before{content:"\f0d02"}.mdi-draw:before{content:"\f0f49"}.mdi-drawing:before{content:"\f01de"}.mdi-drawing-box:before{content:"\f01df"}.mdi-dresser:before{content:"\f0f4a"}.mdi-dresser-outline:before{content:"\f0f4b"}.mdi-drone:before{content:"\f01e2"}.mdi-dropbox:before{content:"\f01e3"}.mdi-drupal:before{content:"\f01e4"}.mdi-duck:before{content:"\f01e5"}.mdi-dumbbell:before{content:"\f01e6"}.mdi-dump-truck:before{content:"\f0c67"}.mdi-ear-hearing:before{content:"\f07c5"}.mdi-ear-hearing-off:before{content:"\f0a45"}.mdi-earth:before{content:"\f01e7"}.mdi-earth-arrow-right:before{content:"\f1311"}.mdi-earth-box:before{content:"\f06cd"}.mdi-earth-box-minus:before{content:"\f1407"}.mdi-earth-box-off:before{content:"\f06ce"}.mdi-earth-box-plus:before{content:"\f1406"}.mdi-earth-box-remove:before{content:"\f1408"}.mdi-earth-minus:before{content:"\f1404"}.mdi-earth-off:before{content:"\f01e8"}.mdi-earth-plus:before{content:"\f1403"}.mdi-earth-remove:before{content:"\f1405"}.mdi-egg:before{content:"\f0aaf"}.mdi-egg-easter:before{content:"\f0ab0"}.mdi-egg-off:before{content:"\f13f0"}.mdi-egg-off-outline:before{content:"\f13f1"}.mdi-egg-outline:before{content:"\f13f2"}.mdi-eiffel-tower:before{content:"\f156b"}.mdi-eight-track:before{content:"\f09ea"}.mdi-eject:before{content:"\f01ea"}.mdi-eject-outline:before{content:"\f0b91"}.mdi-electric-switch:before{content:"\f0e9f"}.mdi-electric-switch-closed:before{content:"\f10d9"}.mdi-electron-framework:before{content:"\f1024"}.mdi-elephant:before{content:"\f07c6"}.mdi-elevation-decline:before{content:"\f01eb"}.mdi-elevation-rise:before{content:"\f01ec"}.mdi-elevator:before{content:"\f01ed"}.mdi-elevator-down:before{content:"\f12c2"}.mdi-elevator-passenger:before{content:"\f1381"}.mdi-elevator-up:before{content:"\f12c1"}.mdi-ellipse:before{content:"\f0ea0"}.mdi-ellipse-outline:before{content:"\f0ea1"}.mdi-email:before{content:"\f01ee"}.mdi-email-alert:before{content:"\f06cf"}.mdi-email-alert-outline:before{content:"\f0d42"}.mdi-email-box:before{content:"\f0d03"}.mdi-email-check:before{content:"\f0ab1"}.mdi-email-check-outline:before{content:"\f0ab2"}.mdi-email-edit:before{content:"\f0ee3"}.mdi-email-edit-outline:before{content:"\f0ee4"}.mdi-email-lock:before{content:"\f01f1"}.mdi-email-mark-as-unread:before{content:"\f0b92"}.mdi-email-minus:before{content:"\f0ee5"}.mdi-email-minus-outline:before{content:"\f0ee6"}.mdi-email-multiple:before{content:"\f0ee7"}.mdi-email-multiple-outline:before{content:"\f0ee8"}.mdi-email-newsletter:before{content:"\f0fb1"}.mdi-email-off:before{content:"\f13e3"}.mdi-email-off-outline:before{content:"\f13e4"}.mdi-email-open:before{content:"\f01ef"}.mdi-email-open-multiple:before{content:"\f0ee9"}.mdi-email-open-multiple-outline:before{content:"\f0eea"}.mdi-email-open-outline:before{content:"\f05ef"}.mdi-email-outline:before{content:"\f01f0"}.mdi-email-plus:before{content:"\f09eb"}.mdi-email-plus-outline:before{content:"\f09ec"}.mdi-email-receive:before{content:"\f10da"}.mdi-email-receive-outline:before{content:"\f10db"}.mdi-email-remove:before{content:"\f1661"}.mdi-email-remove-outline:before{content:"\f1662"}.mdi-email-search:before{content:"\f0961"}.mdi-email-search-outline:before{content:"\f0962"}.mdi-email-send:before{content:"\f10dc"}.mdi-email-send-outline:before{content:"\f10dd"}.mdi-email-sync:before{content:"\f12c7"}.mdi-email-sync-outline:before{content:"\f12c8"}.mdi-email-variant:before{content:"\f05f0"}.mdi-ember:before{content:"\f0b30"}.mdi-emby:before{content:"\f06b4"}.mdi-emoticon:before{content:"\f0c68"}.mdi-emoticon-angry:before{content:"\f0c69"}.mdi-emoticon-angry-outline:before{content:"\f0c6a"}.mdi-emoticon-confused:before{content:"\f10de"}.mdi-emoticon-confused-outline:before{content:"\f10df"}.mdi-emoticon-cool:before{content:"\f0c6b"}.mdi-emoticon-cool-outline:before{content:"\f01f3"}.mdi-emoticon-cry:before{content:"\f0c6c"}.mdi-emoticon-cry-outline:before{content:"\f0c6d"}.mdi-emoticon-dead:before{content:"\f0c6e"}.mdi-emoticon-dead-outline:before{content:"\f069b"}.mdi-emoticon-devil:before{content:"\f0c6f"}.mdi-emoticon-devil-outline:before{content:"\f01f4"}.mdi-emoticon-excited:before{content:"\f0c70"}.mdi-emoticon-excited-outline:before{content:"\f069c"}.mdi-emoticon-frown:before{content:"\f0f4c"}.mdi-emoticon-frown-outline:before{content:"\f0f4d"}.mdi-emoticon-happy:before{content:"\f0c71"}.mdi-emoticon-happy-outline:before{content:"\f01f5"}.mdi-emoticon-kiss:before{content:"\f0c72"}.mdi-emoticon-kiss-outline:before{content:"\f0c73"}.mdi-emoticon-lol:before{content:"\f1214"}.mdi-emoticon-lol-outline:before{content:"\f1215"}.mdi-emoticon-neutral:before{content:"\f0c74"}.mdi-emoticon-neutral-outline:before{content:"\f01f6"}.mdi-emoticon-outline:before{content:"\f01f2"}.mdi-emoticon-poop:before{content:"\f01f7"}.mdi-emoticon-poop-outline:before{content:"\f0c75"}.mdi-emoticon-sad:before{content:"\f0c76"}.mdi-emoticon-sad-outline:before{content:"\f01f8"}.mdi-emoticon-sick:before{content:"\f157c"}.mdi-emoticon-sick-outline:before{content:"\f157d"}.mdi-emoticon-tongue:before{content:"\f01f9"}.mdi-emoticon-tongue-outline:before{content:"\f0c77"}.mdi-emoticon-wink:before{content:"\f0c78"}.mdi-emoticon-wink-outline:before{content:"\f0c79"}.mdi-engine:before{content:"\f01fa"}.mdi-engine-off:before{content:"\f0a46"}.mdi-engine-off-outline:before{content:"\f0a47"}.mdi-engine-outline:before{content:"\f01fb"}.mdi-epsilon:before{content:"\f10e0"}.mdi-equal:before{content:"\f01fc"}.mdi-equal-box:before{content:"\f01fd"}.mdi-equalizer:before{content:"\f0ea2"}.mdi-equalizer-outline:before{content:"\f0ea3"}.mdi-eraser:before{content:"\f01fe"}.mdi-eraser-variant:before{content:"\f0642"}.mdi-escalator:before{content:"\f01ff"}.mdi-escalator-box:before{content:"\f1399"}.mdi-escalator-down:before{content:"\f12c0"}.mdi-escalator-up:before{content:"\f12bf"}.mdi-eslint:before{content:"\f0c7a"}.mdi-et:before{content:"\f0ab3"}.mdi-ethereum:before{content:"\f086a"}.mdi-ethernet:before{content:"\f0200"}.mdi-ethernet-cable:before{content:"\f0201"}.mdi-ethernet-cable-off:before{content:"\f0202"}.mdi-ev-plug-ccs1:before{content:"\f1519"}.mdi-ev-plug-ccs2:before{content:"\f151a"}.mdi-ev-plug-chademo:before{content:"\f151b"}.mdi-ev-plug-tesla:before{content:"\f151c"}.mdi-ev-plug-type1:before{content:"\f151d"}.mdi-ev-plug-type2:before{content:"\f151e"}.mdi-ev-station:before{content:"\f05f1"}.mdi-evernote:before{content:"\f0204"}.mdi-excavator:before{content:"\f1025"}.mdi-exclamation:before{content:"\f0205"}.mdi-exclamation-thick:before{content:"\f1238"}.mdi-exit-run:before{content:"\f0a48"}.mdi-exit-to-app:before{content:"\f0206"}.mdi-expand-all:before{content:"\f0ab4"}.mdi-expand-all-outline:before{content:"\f0ab5"}.mdi-expansion-card:before{content:"\f08ae"}.mdi-expansion-card-variant:before{content:"\f0fb2"}.mdi-exponent:before{content:"\f0963"}.mdi-exponent-box:before{content:"\f0964"}.mdi-export:before{content:"\f0207"}.mdi-export-variant:before{content:"\f0b93"}.mdi-eye:before{content:"\f0208"}.mdi-eye-check:before{content:"\f0d04"}.mdi-eye-check-outline:before{content:"\f0d05"}.mdi-eye-circle:before{content:"\f0b94"}.mdi-eye-circle-outline:before{content:"\f0b95"}.mdi-eye-minus:before{content:"\f1026"}.mdi-eye-minus-outline:before{content:"\f1027"}.mdi-eye-off:before{content:"\f0209"}.mdi-eye-off-outline:before{content:"\f06d1"}.mdi-eye-outline:before{content:"\f06d0"}.mdi-eye-plus:before{content:"\f086b"}.mdi-eye-plus-outline:before{content:"\f086c"}.mdi-eye-remove:before{content:"\f15e3"}.mdi-eye-remove-outline:before{content:"\f15e4"}.mdi-eye-settings:before{content:"\f086d"}.mdi-eye-settings-outline:before{content:"\f086e"}.mdi-eyedropper:before{content:"\f020a"}.mdi-eyedropper-minus:before{content:"\f13dd"}.mdi-eyedropper-off:before{content:"\f13df"}.mdi-eyedropper-plus:before{content:"\f13dc"}.mdi-eyedropper-remove:before{content:"\f13de"}.mdi-eyedropper-variant:before{content:"\f020b"}.mdi-face:before{content:"\f0643"}.mdi-face-agent:before{content:"\f0d70"}.mdi-face-mask:before{content:"\f1586"}.mdi-face-mask-outline:before{content:"\f1587"}.mdi-face-outline:before{content:"\f0b96"}.mdi-face-profile:before{content:"\f0644"}.mdi-face-profile-woman:before{content:"\f1076"}.mdi-face-recognition:before{content:"\f0c7b"}.mdi-face-shimmer:before{content:"\f15cc"}.mdi-face-shimmer-outline:before{content:"\f15cd"}.mdi-face-woman:before{content:"\f1077"}.mdi-face-woman-outline:before{content:"\f1078"}.mdi-face-woman-shimmer:before{content:"\f15ce"}.mdi-face-woman-shimmer-outline:before{content:"\f15cf"}.mdi-facebook:before{content:"\f020c"}.mdi-facebook-gaming:before{content:"\f07dd"}.mdi-facebook-messenger:before{content:"\f020e"}.mdi-facebook-workplace:before{content:"\f0b31"}.mdi-factory:before{content:"\f020f"}.mdi-family-tree:before{content:"\f160e"}.mdi-fan:before{content:"\f0210"}.mdi-fan-alert:before{content:"\f146c"}.mdi-fan-chevron-down:before{content:"\f146d"}.mdi-fan-chevron-up:before{content:"\f146e"}.mdi-fan-minus:before{content:"\f1470"}.mdi-fan-off:before{content:"\f081d"}.mdi-fan-plus:before{content:"\f146f"}.mdi-fan-remove:before{content:"\f1471"}.mdi-fan-speed-1:before{content:"\f1472"}.mdi-fan-speed-2:before{content:"\f1473"}.mdi-fan-speed-3:before{content:"\f1474"}.mdi-fast-forward:before{content:"\f0211"}.mdi-fast-forward-10:before{content:"\f0d71"}.mdi-fast-forward-30:before{content:"\f0d06"}.mdi-fast-forward-5:before{content:"\f11f8"}.mdi-fast-forward-60:before{content:"\f160b"}.mdi-fast-forward-outline:before{content:"\f06d2"}.mdi-fax:before{content:"\f0212"}.mdi-feather:before{content:"\f06d3"}.mdi-feature-search:before{content:"\f0a49"}.mdi-feature-search-outline:before{content:"\f0a4a"}.mdi-fedora:before{content:"\f08db"}.mdi-fencing:before{content:"\f14c1"}.mdi-ferris-wheel:before{content:"\f0ea4"}.mdi-ferry:before{content:"\f0213"}.mdi-file:before{content:"\f0214"}.mdi-file-account:before{content:"\f073b"}.mdi-file-account-outline:before{content:"\f1028"}.mdi-file-alert:before{content:"\f0a4b"}.mdi-file-alert-outline:before{content:"\f0a4c"}.mdi-file-cabinet:before{content:"\f0ab6"}.mdi-file-cad:before{content:"\f0eeb"}.mdi-file-cad-box:before{content:"\f0eec"}.mdi-file-cancel:before{content:"\f0dc6"}.mdi-file-cancel-outline:before{content:"\f0dc7"}.mdi-file-certificate:before{content:"\f1186"}.mdi-file-certificate-outline:before{content:"\f1187"}.mdi-file-chart:before{content:"\f0215"}.mdi-file-chart-outline:before{content:"\f1029"}.mdi-file-check:before{content:"\f0216"}.mdi-file-check-outline:before{content:"\f0e29"}.mdi-file-clock:before{content:"\f12e1"}.mdi-file-clock-outline:before{content:"\f12e2"}.mdi-file-cloud:before{content:"\f0217"}.mdi-file-cloud-outline:before{content:"\f102a"}.mdi-file-code:before{content:"\f022e"}.mdi-file-code-outline:before{content:"\f102b"}.mdi-file-cog:before{content:"\f107b"}.mdi-file-cog-outline:before{content:"\f107c"}.mdi-file-compare:before{content:"\f08aa"}.mdi-file-delimited:before{content:"\f0218"}.mdi-file-delimited-outline:before{content:"\f0ea5"}.mdi-file-document:before{content:"\f0219"}.mdi-file-document-edit:before{content:"\f0dc8"}.mdi-file-document-edit-outline:before{content:"\f0dc9"}.mdi-file-document-multiple:before{content:"\f1517"}.mdi-file-document-multiple-outline:before{content:"\f1518"}.mdi-file-document-outline:before{content:"\f09ee"}.mdi-file-download:before{content:"\f0965"}.mdi-file-download-outline:before{content:"\f0966"}.mdi-file-edit:before{content:"\f11e7"}.mdi-file-edit-outline:before{content:"\f11e8"}.mdi-file-excel:before{content:"\f021b"}.mdi-file-excel-box:before{content:"\f021c"}.mdi-file-excel-box-outline:before{content:"\f102c"}.mdi-file-excel-outline:before{content:"\f102d"}.mdi-file-export:before{content:"\f021d"}.mdi-file-export-outline:before{content:"\f102e"}.mdi-file-eye:before{content:"\f0dca"}.mdi-file-eye-outline:before{content:"\f0dcb"}.mdi-file-find:before{content:"\f021e"}.mdi-file-find-outline:before{content:"\f0b97"}.mdi-file-hidden:before{content:"\f0613"}.mdi-file-image:before{content:"\f021f"}.mdi-file-image-outline:before{content:"\f0eb0"}.mdi-file-import:before{content:"\f0220"}.mdi-file-import-outline:before{content:"\f102f"}.mdi-file-key:before{content:"\f1184"}.mdi-file-key-outline:before{content:"\f1185"}.mdi-file-link:before{content:"\f1177"}.mdi-file-link-outline:before{content:"\f1178"}.mdi-file-lock:before{content:"\f0221"}.mdi-file-lock-outline:before{content:"\f1030"}.mdi-file-move:before{content:"\f0ab9"}.mdi-file-move-outline:before{content:"\f1031"}.mdi-file-multiple:before{content:"\f0222"}.mdi-file-multiple-outline:before{content:"\f1032"}.mdi-file-music:before{content:"\f0223"}.mdi-file-music-outline:before{content:"\f0e2a"}.mdi-file-outline:before{content:"\f0224"}.mdi-file-pdf:before{content:"\f0225"}.mdi-file-pdf-box:before{content:"\f0226"}.mdi-file-pdf-box-outline:before{content:"\f0fb3"}.mdi-file-pdf-outline:before{content:"\f0e2d"}.mdi-file-percent:before{content:"\f081e"}.mdi-file-percent-outline:before{content:"\f1033"}.mdi-file-phone:before{content:"\f1179"}.mdi-file-phone-outline:before{content:"\f117a"}.mdi-file-plus:before{content:"\f0752"}.mdi-file-plus-outline:before{content:"\f0eed"}.mdi-file-powerpoint:before{content:"\f0227"}.mdi-file-powerpoint-box:before{content:"\f0228"}.mdi-file-powerpoint-box-outline:before{content:"\f1034"}.mdi-file-powerpoint-outline:before{content:"\f1035"}.mdi-file-presentation-box:before{content:"\f0229"}.mdi-file-question:before{content:"\f086f"}.mdi-file-question-outline:before{content:"\f1036"}.mdi-file-refresh:before{content:"\f0918"}.mdi-file-refresh-outline:before{content:"\f0541"}.mdi-file-remove:before{content:"\f0b98"}.mdi-file-remove-outline:before{content:"\f1037"}.mdi-file-replace:before{content:"\f0b32"}.mdi-file-replace-outline:before{content:"\f0b33"}.mdi-file-restore:before{content:"\f0670"}.mdi-file-restore-outline:before{content:"\f1038"}.mdi-file-search:before{content:"\f0c7c"}.mdi-file-search-outline:before{content:"\f0c7d"}.mdi-file-send:before{content:"\f022a"}.mdi-file-send-outline:before{content:"\f1039"}.mdi-file-settings:before{content:"\f1079"}.mdi-file-settings-outline:before{content:"\f107a"}.mdi-file-star:before{content:"\f103a"}.mdi-file-star-outline:before{content:"\f103b"}.mdi-file-swap:before{content:"\f0fb4"}.mdi-file-swap-outline:before{content:"\f0fb5"}.mdi-file-sync:before{content:"\f1216"}.mdi-file-sync-outline:before{content:"\f1217"}.mdi-file-table:before{content:"\f0c7e"}.mdi-file-table-box:before{content:"\f10e1"}.mdi-file-table-box-multiple:before{content:"\f10e2"}.mdi-file-table-box-multiple-outline:before{content:"\f10e3"}.mdi-file-table-box-outline:before{content:"\f10e4"}.mdi-file-table-outline:before{content:"\f0c7f"}.mdi-file-tree:before{content:"\f0645"}.mdi-file-tree-outline:before{content:"\f13d2"}.mdi-file-undo:before{content:"\f08dc"}.mdi-file-undo-outline:before{content:"\f103c"}.mdi-file-upload:before{content:"\f0a4d"}.mdi-file-upload-outline:before{content:"\f0a4e"}.mdi-file-video:before{content:"\f022b"}.mdi-file-video-outline:before{content:"\f0e2c"}.mdi-file-word:before{content:"\f022c"}.mdi-file-word-box:before{content:"\f022d"}.mdi-file-word-box-outline:before{content:"\f103d"}.mdi-file-word-outline:before{content:"\f103e"}.mdi-film:before{content:"\f022f"}.mdi-filmstrip:before{content:"\f0230"}.mdi-filmstrip-box:before{content:"\f0332"}.mdi-filmstrip-box-multiple:before{content:"\f0d18"}.mdi-filmstrip-off:before{content:"\f0231"}.mdi-filter:before{content:"\f0232"}.mdi-filter-menu:before{content:"\f10e5"}.mdi-filter-menu-outline:before{content:"\f10e6"}.mdi-filter-minus:before{content:"\f0eee"}.mdi-filter-minus-outline:before{content:"\f0eef"}.mdi-filter-off:before{content:"\f14ef"}.mdi-filter-off-outline:before{content:"\f14f0"}.mdi-filter-outline:before{content:"\f0233"}.mdi-filter-plus:before{content:"\f0ef0"}.mdi-filter-plus-outline:before{content:"\f0ef1"}.mdi-filter-remove:before{content:"\f0234"}.mdi-filter-remove-outline:before{content:"\f0235"}.mdi-filter-variant:before{content:"\f0236"}.mdi-filter-variant-minus:before{content:"\f1112"}.mdi-filter-variant-plus:before{content:"\f1113"}.mdi-filter-variant-remove:before{content:"\f103f"}.mdi-finance:before{content:"\f081f"}.mdi-find-replace:before{content:"\f06d4"}.mdi-fingerprint:before{content:"\f0237"}.mdi-fingerprint-off:before{content:"\f0eb1"}.mdi-fire:before{content:"\f0238"}.mdi-fire-alert:before{content:"\f15d7"}.mdi-fire-extinguisher:before{content:"\f0ef2"}.mdi-fire-hydrant:before{content:"\f1137"}.mdi-fire-hydrant-alert:before{content:"\f1138"}.mdi-fire-hydrant-off:before{content:"\f1139"}.mdi-fire-truck:before{content:"\f08ab"}.mdi-firebase:before{content:"\f0967"}.mdi-firefox:before{content:"\f0239"}.mdi-fireplace:before{content:"\f0e2e"}.mdi-fireplace-off:before{content:"\f0e2f"}.mdi-firework:before{content:"\f0e30"}.mdi-fish:before{content:"\f023a"}.mdi-fish-off:before{content:"\f13f3"}.mdi-fishbowl:before{content:"\f0ef3"}.mdi-fishbowl-outline:before{content:"\f0ef4"}.mdi-fit-to-page:before{content:"\f0ef5"}.mdi-fit-to-page-outline:before{content:"\f0ef6"}.mdi-flag:before{content:"\f023b"}.mdi-flag-checkered:before{content:"\f023c"}.mdi-flag-minus:before{content:"\f0b99"}.mdi-flag-minus-outline:before{content:"\f10b2"}.mdi-flag-outline:before{content:"\f023d"}.mdi-flag-plus:before{content:"\f0b9a"}.mdi-flag-plus-outline:before{content:"\f10b3"}.mdi-flag-remove:before{content:"\f0b9b"}.mdi-flag-remove-outline:before{content:"\f10b4"}.mdi-flag-triangle:before{content:"\f023f"}.mdi-flag-variant:before{content:"\f0240"}.mdi-flag-variant-outline:before{content:"\f023e"}.mdi-flare:before{content:"\f0d72"}.mdi-flash:before{content:"\f0241"}.mdi-flash-alert:before{content:"\f0ef7"}.mdi-flash-alert-outline:before{content:"\f0ef8"}.mdi-flash-auto:before{content:"\f0242"}.mdi-flash-circle:before{content:"\f0820"}.mdi-flash-off:before{content:"\f0243"}.mdi-flash-outline:before{content:"\f06d5"}.mdi-flash-red-eye:before{content:"\f067b"}.mdi-flashlight:before{content:"\f0244"}.mdi-flashlight-off:before{content:"\f0245"}.mdi-flask:before{content:"\f0093"}.mdi-flask-empty:before{content:"\f0094"}.mdi-flask-empty-minus:before{content:"\f123a"}.mdi-flask-empty-minus-outline:before{content:"\f123b"}.mdi-flask-empty-off:before{content:"\f13f4"}.mdi-flask-empty-off-outline:before{content:"\f13f5"}.mdi-flask-empty-outline:before{content:"\f0095"}.mdi-flask-empty-plus:before{content:"\f123c"}.mdi-flask-empty-plus-outline:before{content:"\f123d"}.mdi-flask-empty-remove:before{content:"\f123e"}.mdi-flask-empty-remove-outline:before{content:"\f123f"}.mdi-flask-minus:before{content:"\f1240"}.mdi-flask-minus-outline:before{content:"\f1241"}.mdi-flask-off:before{content:"\f13f6"}.mdi-flask-off-outline:before{content:"\f13f7"}.mdi-flask-outline:before{content:"\f0096"}.mdi-flask-plus:before{content:"\f1242"}.mdi-flask-plus-outline:before{content:"\f1243"}.mdi-flask-remove:before{content:"\f1244"}.mdi-flask-remove-outline:before{content:"\f1245"}.mdi-flask-round-bottom:before{content:"\f124b"}.mdi-flask-round-bottom-empty:before{content:"\f124c"}.mdi-flask-round-bottom-empty-outline:before{content:"\f124d"}.mdi-flask-round-bottom-outline:before{content:"\f124e"}.mdi-fleur-de-lis:before{content:"\f1303"}.mdi-flip-horizontal:before{content:"\f10e7"}.mdi-flip-to-back:before{content:"\f0247"}.mdi-flip-to-front:before{content:"\f0248"}.mdi-flip-vertical:before{content:"\f10e8"}.mdi-floor-lamp:before{content:"\f08dd"}.mdi-floor-lamp-dual:before{content:"\f1040"}.mdi-floor-lamp-variant:before{content:"\f1041"}.mdi-floor-plan:before{content:"\f0821"}.mdi-floppy:before{content:"\f0249"}.mdi-floppy-variant:before{content:"\f09ef"}.mdi-flower:before{content:"\f024a"}.mdi-flower-outline:before{content:"\f09f0"}.mdi-flower-poppy:before{content:"\f0d08"}.mdi-flower-tulip:before{content:"\f09f1"}.mdi-flower-tulip-outline:before{content:"\f09f2"}.mdi-focus-auto:before{content:"\f0f4e"}.mdi-focus-field:before{content:"\f0f4f"}.mdi-focus-field-horizontal:before{content:"\f0f50"}.mdi-focus-field-vertical:before{content:"\f0f51"}.mdi-folder:before{content:"\f024b"}.mdi-folder-account:before{content:"\f024c"}.mdi-folder-account-outline:before{content:"\f0b9c"}.mdi-folder-alert:before{content:"\f0dcc"}.mdi-folder-alert-outline:before{content:"\f0dcd"}.mdi-folder-clock:before{content:"\f0aba"}.mdi-folder-clock-outline:before{content:"\f0abb"}.mdi-folder-cog:before{content:"\f107f"}.mdi-folder-cog-outline:before{content:"\f1080"}.mdi-folder-download:before{content:"\f024d"}.mdi-folder-download-outline:before{content:"\f10e9"}.mdi-folder-edit:before{content:"\f08de"}.mdi-folder-edit-outline:before{content:"\f0dce"}.mdi-folder-google-drive:before{content:"\f024e"}.mdi-folder-heart:before{content:"\f10ea"}.mdi-folder-heart-outline:before{content:"\f10eb"}.mdi-folder-home:before{content:"\f10b5"}.mdi-folder-home-outline:before{content:"\f10b6"}.mdi-folder-image:before{content:"\f024f"}.mdi-folder-information:before{content:"\f10b7"}.mdi-folder-information-outline:before{content:"\f10b8"}.mdi-folder-key:before{content:"\f08ac"}.mdi-folder-key-network:before{content:"\f08ad"}.mdi-folder-key-network-outline:before{content:"\f0c80"}.mdi-folder-key-outline:before{content:"\f10ec"}.mdi-folder-lock:before{content:"\f0250"}.mdi-folder-lock-open:before{content:"\f0251"}.mdi-folder-marker:before{content:"\f126d"}.mdi-folder-marker-outline:before{content:"\f126e"}.mdi-folder-move:before{content:"\f0252"}.mdi-folder-move-outline:before{content:"\f1246"}.mdi-folder-multiple:before{content:"\f0253"}.mdi-folder-multiple-image:before{content:"\f0254"}.mdi-folder-multiple-outline:before{content:"\f0255"}.mdi-folder-multiple-plus:before{content:"\f147e"}.mdi-folder-multiple-plus-outline:before{content:"\f147f"}.mdi-folder-music:before{content:"\f1359"}.mdi-folder-music-outline:before{content:"\f135a"}.mdi-folder-network:before{content:"\f0870"}.mdi-folder-network-outline:before{content:"\f0c81"}.mdi-folder-open:before{content:"\f0770"}.mdi-folder-open-outline:before{content:"\f0dcf"}.mdi-folder-outline:before{content:"\f0256"}.mdi-folder-plus:before{content:"\f0257"}.mdi-folder-plus-outline:before{content:"\f0b9d"}.mdi-folder-pound:before{content:"\f0d09"}.mdi-folder-pound-outline:before{content:"\f0d0a"}.mdi-folder-refresh:before{content:"\f0749"}.mdi-folder-refresh-outline:before{content:"\f0542"}.mdi-folder-remove:before{content:"\f0258"}.mdi-folder-remove-outline:before{content:"\f0b9e"}.mdi-folder-search:before{content:"\f0968"}.mdi-folder-search-outline:before{content:"\f0969"}.mdi-folder-settings:before{content:"\f107d"}.mdi-folder-settings-outline:before{content:"\f107e"}.mdi-folder-star:before{content:"\f069d"}.mdi-folder-star-multiple:before{content:"\f13d3"}.mdi-folder-star-multiple-outline:before{content:"\f13d4"}.mdi-folder-star-outline:before{content:"\f0b9f"}.mdi-folder-swap:before{content:"\f0fb6"}.mdi-folder-swap-outline:before{content:"\f0fb7"}.mdi-folder-sync:before{content:"\f0d0b"}.mdi-folder-sync-outline:before{content:"\f0d0c"}.mdi-folder-table:before{content:"\f12e3"}.mdi-folder-table-outline:before{content:"\f12e4"}.mdi-folder-text:before{content:"\f0c82"}.mdi-folder-text-outline:before{content:"\f0c83"}.mdi-folder-upload:before{content:"\f0259"}.mdi-folder-upload-outline:before{content:"\f10ed"}.mdi-folder-zip:before{content:"\f06eb"}.mdi-folder-zip-outline:before{content:"\f07b9"}.mdi-font-awesome:before{content:"\f003a"}.mdi-food:before{content:"\f025a"}.mdi-food-apple:before{content:"\f025b"}.mdi-food-apple-outline:before{content:"\f0c84"}.mdi-food-croissant:before{content:"\f07c8"}.mdi-food-drumstick:before{content:"\f141f"}.mdi-food-drumstick-off:before{content:"\f1468"}.mdi-food-drumstick-off-outline:before{content:"\f1469"}.mdi-food-drumstick-outline:before{content:"\f1420"}.mdi-food-fork-drink:before{content:"\f05f2"}.mdi-food-halal:before{content:"\f1572"}.mdi-food-kosher:before{content:"\f1573"}.mdi-food-off:before{content:"\f05f3"}.mdi-food-steak:before{content:"\f146a"}.mdi-food-steak-off:before{content:"\f146b"}.mdi-food-variant:before{content:"\f025c"}.mdi-food-variant-off:before{content:"\f13e5"}.mdi-foot-print:before{content:"\f0f52"}.mdi-football:before{content:"\f025d"}.mdi-football-australian:before{content:"\f025e"}.mdi-football-helmet:before{content:"\f025f"}.mdi-forklift:before{content:"\f07c9"}.mdi-form-dropdown:before{content:"\f1400"}.mdi-form-select:before{content:"\f1401"}.mdi-form-textarea:before{content:"\f1095"}.mdi-form-textbox:before{content:"\f060e"}.mdi-form-textbox-lock:before{content:"\f135d"}.mdi-form-textbox-password:before{content:"\f07f5"}.mdi-format-align-bottom:before{content:"\f0753"}.mdi-format-align-center:before{content:"\f0260"}.mdi-format-align-justify:before{content:"\f0261"}.mdi-format-align-left:before{content:"\f0262"}.mdi-format-align-middle:before{content:"\f0754"}.mdi-format-align-right:before{content:"\f0263"}.mdi-format-align-top:before{content:"\f0755"}.mdi-format-annotation-minus:before{content:"\f0abc"}.mdi-format-annotation-plus:before{content:"\f0646"}.mdi-format-bold:before{content:"\f0264"}.mdi-format-clear:before{content:"\f0265"}.mdi-format-color-fill:before{content:"\f0266"}.mdi-format-color-highlight:before{content:"\f0e31"}.mdi-format-color-marker-cancel:before{content:"\f1313"}.mdi-format-color-text:before{content:"\f069e"}.mdi-format-columns:before{content:"\f08df"}.mdi-format-float-center:before{content:"\f0267"}.mdi-format-float-left:before{content:"\f0268"}.mdi-format-float-none:before{content:"\f0269"}.mdi-format-float-right:before{content:"\f026a"}.mdi-format-font:before{content:"\f06d6"}.mdi-format-font-size-decrease:before{content:"\f09f3"}.mdi-format-font-size-increase:before{content:"\f09f4"}.mdi-format-header-1:before{content:"\f026b"}.mdi-format-header-2:before{content:"\f026c"}.mdi-format-header-3:before{content:"\f026d"}.mdi-format-header-4:before{content:"\f026e"}.mdi-format-header-5:before{content:"\f026f"}.mdi-format-header-6:before{content:"\f0270"}.mdi-format-header-decrease:before{content:"\f0271"}.mdi-format-header-equal:before{content:"\f0272"}.mdi-format-header-increase:before{content:"\f0273"}.mdi-format-header-pound:before{content:"\f0274"}.mdi-format-horizontal-align-center:before{content:"\f061e"}.mdi-format-horizontal-align-left:before{content:"\f061f"}.mdi-format-horizontal-align-right:before{content:"\f0620"}.mdi-format-indent-decrease:before{content:"\f0275"}.mdi-format-indent-increase:before{content:"\f0276"}.mdi-format-italic:before{content:"\f0277"}.mdi-format-letter-case:before{content:"\f0b34"}.mdi-format-letter-case-lower:before{content:"\f0b35"}.mdi-format-letter-case-upper:before{content:"\f0b36"}.mdi-format-letter-ends-with:before{content:"\f0fb8"}.mdi-format-letter-matches:before{content:"\f0fb9"}.mdi-format-letter-starts-with:before{content:"\f0fba"}.mdi-format-line-spacing:before{content:"\f0278"}.mdi-format-line-style:before{content:"\f05c8"}.mdi-format-line-weight:before{content:"\f05c9"}.mdi-format-list-bulleted:before{content:"\f0279"}.mdi-format-list-bulleted-square:before{content:"\f0dd0"}.mdi-format-list-bulleted-triangle:before{content:"\f0eb2"}.mdi-format-list-bulleted-type:before{content:"\f027a"}.mdi-format-list-checkbox:before{content:"\f096a"}.mdi-format-list-checks:before{content:"\f0756"}.mdi-format-list-numbered:before{content:"\f027b"}.mdi-format-list-numbered-rtl:before{content:"\f0d0d"}.mdi-format-list-text:before{content:"\f126f"}.mdi-format-overline:before{content:"\f0eb3"}.mdi-format-page-break:before{content:"\f06d7"}.mdi-format-paint:before{content:"\f027c"}.mdi-format-paragraph:before{content:"\f027d"}.mdi-format-pilcrow:before{content:"\f06d8"}.mdi-format-quote-close:before{content:"\f027e"}.mdi-format-quote-close-outline:before{content:"\f11a8"}.mdi-format-quote-open:before{content:"\f0757"}.mdi-format-quote-open-outline:before{content:"\f11a7"}.mdi-format-rotate-90:before{content:"\f06aa"}.mdi-format-section:before{content:"\f069f"}.mdi-format-size:before{content:"\f027f"}.mdi-format-strikethrough:before{content:"\f0280"}.mdi-format-strikethrough-variant:before{content:"\f0281"}.mdi-format-subscript:before{content:"\f0282"}.mdi-format-superscript:before{content:"\f0283"}.mdi-format-text:before{content:"\f0284"}.mdi-format-text-rotation-angle-down:before{content:"\f0fbb"}.mdi-format-text-rotation-angle-up:before{content:"\f0fbc"}.mdi-format-text-rotation-down:before{content:"\f0d73"}.mdi-format-text-rotation-down-vertical:before{content:"\f0fbd"}.mdi-format-text-rotation-none:before{content:"\f0d74"}.mdi-format-text-rotation-up:before{content:"\f0fbe"}.mdi-format-text-rotation-vertical:before{content:"\f0fbf"}.mdi-format-text-variant:before{content:"\f0e32"}.mdi-format-text-variant-outline:before{content:"\f150f"}.mdi-format-text-wrapping-clip:before{content:"\f0d0e"}.mdi-format-text-wrapping-overflow:before{content:"\f0d0f"}.mdi-format-text-wrapping-wrap:before{content:"\f0d10"}.mdi-format-textbox:before{content:"\f0d11"}.mdi-format-textdirection-l-to-r:before{content:"\f0285"}.mdi-format-textdirection-r-to-l:before{content:"\f0286"}.mdi-format-title:before{content:"\f05f4"}.mdi-format-underline:before{content:"\f0287"}.mdi-format-vertical-align-bottom:before{content:"\f0621"}.mdi-format-vertical-align-center:before{content:"\f0622"}.mdi-format-vertical-align-top:before{content:"\f0623"}.mdi-format-wrap-inline:before{content:"\f0288"}.mdi-format-wrap-square:before{content:"\f0289"}.mdi-format-wrap-tight:before{content:"\f028a"}.mdi-format-wrap-top-bottom:before{content:"\f028b"}.mdi-forum:before{content:"\f028c"}.mdi-forum-outline:before{content:"\f0822"}.mdi-forward:before{content:"\f028d"}.mdi-forwardburger:before{content:"\f0d75"}.mdi-fountain:before{content:"\f096b"}.mdi-fountain-pen:before{content:"\f0d12"}.mdi-fountain-pen-tip:before{content:"\f0d13"}.mdi-freebsd:before{content:"\f08e0"}.mdi-frequently-asked-questions:before{content:"\f0eb4"}.mdi-fridge:before{content:"\f0290"}.mdi-fridge-alert:before{content:"\f11b1"}.mdi-fridge-alert-outline:before{content:"\f11b2"}.mdi-fridge-bottom:before{content:"\f0292"}.mdi-fridge-industrial:before{content:"\f15ee"}.mdi-fridge-industrial-alert:before{content:"\f15ef"}.mdi-fridge-industrial-alert-outline:before{content:"\f15f0"}.mdi-fridge-industrial-off:before{content:"\f15f1"}.mdi-fridge-industrial-off-outline:before{content:"\f15f2"}.mdi-fridge-industrial-outline:before{content:"\f15f3"}.mdi-fridge-off:before{content:"\f11af"}.mdi-fridge-off-outline:before{content:"\f11b0"}.mdi-fridge-outline:before{content:"\f028f"}.mdi-fridge-top:before{content:"\f0291"}.mdi-fridge-variant:before{content:"\f15f4"}.mdi-fridge-variant-alert:before{content:"\f15f5"}.mdi-fridge-variant-alert-outline:before{content:"\f15f6"}.mdi-fridge-variant-off:before{content:"\f15f7"}.mdi-fridge-variant-off-outline:before{content:"\f15f8"}.mdi-fridge-variant-outline:before{content:"\f15f9"}.mdi-fruit-cherries:before{content:"\f1042"}.mdi-fruit-cherries-off:before{content:"\f13f8"}.mdi-fruit-citrus:before{content:"\f1043"}.mdi-fruit-citrus-off:before{content:"\f13f9"}.mdi-fruit-grapes:before{content:"\f1044"}.mdi-fruit-grapes-outline:before{content:"\f1045"}.mdi-fruit-pineapple:before{content:"\f1046"}.mdi-fruit-watermelon:before{content:"\f1047"}.mdi-fuel:before{content:"\f07ca"}.mdi-fullscreen:before{content:"\f0293"}.mdi-fullscreen-exit:before{content:"\f0294"}.mdi-function:before{content:"\f0295"}.mdi-function-variant:before{content:"\f0871"}.mdi-furigana-horizontal:before{content:"\f1081"}.mdi-furigana-vertical:before{content:"\f1082"}.mdi-fuse:before{content:"\f0c85"}.mdi-fuse-alert:before{content:"\f142d"}.mdi-fuse-blade:before{content:"\f0c86"}.mdi-fuse-off:before{content:"\f142c"}.mdi-gamepad:before{content:"\f0296"}.mdi-gamepad-circle:before{content:"\f0e33"}.mdi-gamepad-circle-down:before{content:"\f0e34"}.mdi-gamepad-circle-left:before{content:"\f0e35"}.mdi-gamepad-circle-outline:before{content:"\f0e36"}.mdi-gamepad-circle-right:before{content:"\f0e37"}.mdi-gamepad-circle-up:before{content:"\f0e38"}.mdi-gamepad-down:before{content:"\f0e39"}.mdi-gamepad-left:before{content:"\f0e3a"}.mdi-gamepad-right:before{content:"\f0e3b"}.mdi-gamepad-round:before{content:"\f0e3c"}.mdi-gamepad-round-down:before{content:"\f0e3d"}.mdi-gamepad-round-left:before{content:"\f0e3e"}.mdi-gamepad-round-outline:before{content:"\f0e3f"}.mdi-gamepad-round-right:before{content:"\f0e40"}.mdi-gamepad-round-up:before{content:"\f0e41"}.mdi-gamepad-square:before{content:"\f0eb5"}.mdi-gamepad-square-outline:before{content:"\f0eb6"}.mdi-gamepad-up:before{content:"\f0e42"}.mdi-gamepad-variant:before{content:"\f0297"}.mdi-gamepad-variant-outline:before{content:"\f0eb7"}.mdi-gamma:before{content:"\f10ee"}.mdi-gantry-crane:before{content:"\f0dd1"}.mdi-garage:before{content:"\f06d9"}.mdi-garage-alert:before{content:"\f0872"}.mdi-garage-alert-variant:before{content:"\f12d5"}.mdi-garage-open:before{content:"\f06da"}.mdi-garage-open-variant:before{content:"\f12d4"}.mdi-garage-variant:before{content:"\f12d3"}.mdi-gas-cylinder:before{content:"\f0647"}.mdi-gas-station:before{content:"\f0298"}.mdi-gas-station-off:before{content:"\f1409"}.mdi-gas-station-off-outline:before{content:"\f140a"}.mdi-gas-station-outline:before{content:"\f0eb8"}.mdi-gate:before{content:"\f0299"}.mdi-gate-and:before{content:"\f08e1"}.mdi-gate-arrow-right:before{content:"\f1169"}.mdi-gate-nand:before{content:"\f08e2"}.mdi-gate-nor:before{content:"\f08e3"}.mdi-gate-not:before{content:"\f08e4"}.mdi-gate-open:before{content:"\f116a"}.mdi-gate-or:before{content:"\f08e5"}.mdi-gate-xnor:before{content:"\f08e6"}.mdi-gate-xor:before{content:"\f08e7"}.mdi-gatsby:before{content:"\f0e43"}.mdi-gauge:before{content:"\f029a"}.mdi-gauge-empty:before{content:"\f0873"}.mdi-gauge-full:before{content:"\f0874"}.mdi-gauge-low:before{content:"\f0875"}.mdi-gavel:before{content:"\f029b"}.mdi-gender-female:before{content:"\f029c"}.mdi-gender-male:before{content:"\f029d"}.mdi-gender-male-female:before{content:"\f029e"}.mdi-gender-male-female-variant:before{content:"\f113f"}.mdi-gender-non-binary:before{content:"\f1140"}.mdi-gender-transgender:before{content:"\f029f"}.mdi-gentoo:before{content:"\f08e8"}.mdi-gesture:before{content:"\f07cb"}.mdi-gesture-double-tap:before{content:"\f073c"}.mdi-gesture-pinch:before{content:"\f0abd"}.mdi-gesture-spread:before{content:"\f0abe"}.mdi-gesture-swipe:before{content:"\f0d76"}.mdi-gesture-swipe-down:before{content:"\f073d"}.mdi-gesture-swipe-horizontal:before{content:"\f0abf"}.mdi-gesture-swipe-left:before{content:"\f073e"}.mdi-gesture-swipe-right:before{content:"\f073f"}.mdi-gesture-swipe-up:before{content:"\f0740"}.mdi-gesture-swipe-vertical:before{content:"\f0ac0"}.mdi-gesture-tap:before{content:"\f0741"}.mdi-gesture-tap-box:before{content:"\f12a9"}.mdi-gesture-tap-button:before{content:"\f12a8"}.mdi-gesture-tap-hold:before{content:"\f0d77"}.mdi-gesture-two-double-tap:before{content:"\f0742"}.mdi-gesture-two-tap:before{content:"\f0743"}.mdi-ghost:before{content:"\f02a0"}.mdi-ghost-off:before{content:"\f09f5"}.mdi-ghost-off-outline:before{content:"\f165c"}.mdi-ghost-outline:before{content:"\f165d"}.mdi-gif:before{content:"\f0d78"}.mdi-gift:before{content:"\f0e44"}.mdi-gift-outline:before{content:"\f02a1"}.mdi-git:before{content:"\f02a2"}.mdi-github:before{content:"\f02a4"}.mdi-gitlab:before{content:"\f0ba0"}.mdi-glass-cocktail:before{content:"\f0356"}.mdi-glass-cocktail-off:before{content:"\f15e6"}.mdi-glass-flute:before{content:"\f02a5"}.mdi-glass-mug:before{content:"\f02a6"}.mdi-glass-mug-off:before{content:"\f15e7"}.mdi-glass-mug-variant:before{content:"\f1116"}.mdi-glass-mug-variant-off:before{content:"\f15e8"}.mdi-glass-pint-outline:before{content:"\f130d"}.mdi-glass-stange:before{content:"\f02a7"}.mdi-glass-tulip:before{content:"\f02a8"}.mdi-glass-wine:before{content:"\f0876"}.mdi-glasses:before{content:"\f02aa"}.mdi-globe-light:before{content:"\f12d7"}.mdi-globe-model:before{content:"\f08e9"}.mdi-gmail:before{content:"\f02ab"}.mdi-gnome:before{content:"\f02ac"}.mdi-go-kart:before{content:"\f0d79"}.mdi-go-kart-track:before{content:"\f0d7a"}.mdi-gog:before{content:"\f0ba1"}.mdi-gold:before{content:"\f124f"}.mdi-golf:before{content:"\f0823"}.mdi-golf-cart:before{content:"\f11a4"}.mdi-golf-tee:before{content:"\f1083"}.mdi-gondola:before{content:"\f0686"}.mdi-goodreads:before{content:"\f0d7b"}.mdi-google:before{content:"\f02ad"}.mdi-google-ads:before{content:"\f0c87"}.mdi-google-analytics:before{content:"\f07cc"}.mdi-google-assistant:before{content:"\f07cd"}.mdi-google-cardboard:before{content:"\f02ae"}.mdi-google-chrome:before{content:"\f02af"}.mdi-google-circles:before{content:"\f02b0"}.mdi-google-circles-communities:before{content:"\f02b1"}.mdi-google-circles-extended:before{content:"\f02b2"}.mdi-google-circles-group:before{content:"\f02b3"}.mdi-google-classroom:before{content:"\f02c0"}.mdi-google-cloud:before{content:"\f11f6"}.mdi-google-controller:before{content:"\f02b4"}.mdi-google-controller-off:before{content:"\f02b5"}.mdi-google-downasaur:before{content:"\f1362"}.mdi-google-drive:before{content:"\f02b6"}.mdi-google-earth:before{content:"\f02b7"}.mdi-google-fit:before{content:"\f096c"}.mdi-google-glass:before{content:"\f02b8"}.mdi-google-hangouts:before{content:"\f02c9"}.mdi-google-home:before{content:"\f0824"}.mdi-google-keep:before{content:"\f06dc"}.mdi-google-lens:before{content:"\f09f6"}.mdi-google-maps:before{content:"\f05f5"}.mdi-google-my-business:before{content:"\f1048"}.mdi-google-nearby:before{content:"\f02b9"}.mdi-google-photos:before{content:"\f06dd"}.mdi-google-play:before{content:"\f02bc"}.mdi-google-plus:before{content:"\f02bd"}.mdi-google-podcast:before{content:"\f0eb9"}.mdi-google-spreadsheet:before{content:"\f09f7"}.mdi-google-street-view:before{content:"\f0c88"}.mdi-google-translate:before{content:"\f02bf"}.mdi-gradient:before{content:"\f06a0"}.mdi-grain:before{content:"\f0d7c"}.mdi-graph:before{content:"\f1049"}.mdi-graph-outline:before{content:"\f104a"}.mdi-graphql:before{content:"\f0877"}.mdi-grass:before{content:"\f1510"}.mdi-grave-stone:before{content:"\f0ba2"}.mdi-grease-pencil:before{content:"\f0648"}.mdi-greater-than:before{content:"\f096d"}.mdi-greater-than-or-equal:before{content:"\f096e"}.mdi-grid:before{content:"\f02c1"}.mdi-grid-large:before{content:"\f0758"}.mdi-grid-off:before{content:"\f02c2"}.mdi-grill:before{content:"\f0e45"}.mdi-grill-outline:before{content:"\f118a"}.mdi-group:before{content:"\f02c3"}.mdi-guitar-acoustic:before{content:"\f0771"}.mdi-guitar-electric:before{content:"\f02c4"}.mdi-guitar-pick:before{content:"\f02c5"}.mdi-guitar-pick-outline:before{content:"\f02c6"}.mdi-guy-fawkes-mask:before{content:"\f0825"}.mdi-hail:before{content:"\f0ac1"}.mdi-hair-dryer:before{content:"\f10ef"}.mdi-hair-dryer-outline:before{content:"\f10f0"}.mdi-halloween:before{content:"\f0ba3"}.mdi-hamburger:before{content:"\f0685"}.mdi-hammer:before{content:"\f08ea"}.mdi-hammer-screwdriver:before{content:"\f1322"}.mdi-hammer-wrench:before{content:"\f1323"}.mdi-hand:before{content:"\f0a4f"}.mdi-hand-heart:before{content:"\f10f1"}.mdi-hand-heart-outline:before{content:"\f157e"}.mdi-hand-left:before{content:"\f0e46"}.mdi-hand-okay:before{content:"\f0a50"}.mdi-hand-peace:before{content:"\f0a51"}.mdi-hand-peace-variant:before{content:"\f0a52"}.mdi-hand-pointing-down:before{content:"\f0a53"}.mdi-hand-pointing-left:before{content:"\f0a54"}.mdi-hand-pointing-right:before{content:"\f02c7"}.mdi-hand-pointing-up:before{content:"\f0a55"}.mdi-hand-right:before{content:"\f0e47"}.mdi-hand-saw:before{content:"\f0e48"}.mdi-hand-wash:before{content:"\f157f"}.mdi-hand-wash-outline:before{content:"\f1580"}.mdi-hand-water:before{content:"\f139f"}.mdi-handball:before{content:"\f0f53"}.mdi-handcuffs:before{content:"\f113e"}.mdi-handshake:before{content:"\f1218"}.mdi-handshake-outline:before{content:"\f15a1"}.mdi-hanger:before{content:"\f02c8"}.mdi-hard-hat:before{content:"\f096f"}.mdi-harddisk:before{content:"\f02ca"}.mdi-harddisk-plus:before{content:"\f104b"}.mdi-harddisk-remove:before{content:"\f104c"}.mdi-hat-fedora:before{content:"\f0ba4"}.mdi-hazard-lights:before{content:"\f0c89"}.mdi-hdr:before{content:"\f0d7d"}.mdi-hdr-off:before{content:"\f0d7e"}.mdi-head:before{content:"\f135e"}.mdi-head-alert:before{content:"\f1338"}.mdi-head-alert-outline:before{content:"\f1339"}.mdi-head-check:before{content:"\f133a"}.mdi-head-check-outline:before{content:"\f133b"}.mdi-head-cog:before{content:"\f133c"}.mdi-head-cog-outline:before{content:"\f133d"}.mdi-head-dots-horizontal:before{content:"\f133e"}.mdi-head-dots-horizontal-outline:before{content:"\f133f"}.mdi-head-flash:before{content:"\f1340"}.mdi-head-flash-outline:before{content:"\f1341"}.mdi-head-heart:before{content:"\f1342"}.mdi-head-heart-outline:before{content:"\f1343"}.mdi-head-lightbulb:before{content:"\f1344"}.mdi-head-lightbulb-outline:before{content:"\f1345"}.mdi-head-minus:before{content:"\f1346"}.mdi-head-minus-outline:before{content:"\f1347"}.mdi-head-outline:before{content:"\f135f"}.mdi-head-plus:before{content:"\f1348"}.mdi-head-plus-outline:before{content:"\f1349"}.mdi-head-question:before{content:"\f134a"}.mdi-head-question-outline:before{content:"\f134b"}.mdi-head-remove:before{content:"\f134c"}.mdi-head-remove-outline:before{content:"\f134d"}.mdi-head-snowflake:before{content:"\f134e"}.mdi-head-snowflake-outline:before{content:"\f134f"}.mdi-head-sync:before{content:"\f1350"}.mdi-head-sync-outline:before{content:"\f1351"}.mdi-headphones:before{content:"\f02cb"}.mdi-headphones-bluetooth:before{content:"\f0970"}.mdi-headphones-box:before{content:"\f02cc"}.mdi-headphones-off:before{content:"\f07ce"}.mdi-headphones-settings:before{content:"\f02cd"}.mdi-headset:before{content:"\f02ce"}.mdi-headset-dock:before{content:"\f02cf"}.mdi-headset-off:before{content:"\f02d0"}.mdi-heart:before{content:"\f02d1"}.mdi-heart-box:before{content:"\f02d2"}.mdi-heart-box-outline:before{content:"\f02d3"}.mdi-heart-broken:before{content:"\f02d4"}.mdi-heart-broken-outline:before{content:"\f0d14"}.mdi-heart-circle:before{content:"\f0971"}.mdi-heart-circle-outline:before{content:"\f0972"}.mdi-heart-cog:before{content:"\f1663"}.mdi-heart-cog-outline:before{content:"\f1664"}.mdi-heart-flash:before{content:"\f0ef9"}.mdi-heart-half:before{content:"\f06df"}.mdi-heart-half-full:before{content:"\f06de"}.mdi-heart-half-outline:before{content:"\f06e0"}.mdi-heart-minus:before{content:"\f142f"}.mdi-heart-minus-outline:before{content:"\f1432"}.mdi-heart-multiple:before{content:"\f0a56"}.mdi-heart-multiple-outline:before{content:"\f0a57"}.mdi-heart-off:before{content:"\f0759"}.mdi-heart-off-outline:before{content:"\f1434"}.mdi-heart-outline:before{content:"\f02d5"}.mdi-heart-plus:before{content:"\f142e"}.mdi-heart-plus-outline:before{content:"\f1431"}.mdi-heart-pulse:before{content:"\f05f6"}.mdi-heart-remove:before{content:"\f1430"}.mdi-heart-remove-outline:before{content:"\f1433"}.mdi-heart-settings:before{content:"\f1665"}.mdi-heart-settings-outline:before{content:"\f1666"}.mdi-helicopter:before{content:"\f0ac2"}.mdi-help:before{content:"\f02d6"}.mdi-help-box:before{content:"\f078b"}.mdi-help-circle:before{content:"\f02d7"}.mdi-help-circle-outline:before{content:"\f0625"}.mdi-help-network:before{content:"\f06f5"}.mdi-help-network-outline:before{content:"\f0c8a"}.mdi-help-rhombus:before{content:"\f0ba5"}.mdi-help-rhombus-outline:before{content:"\f0ba6"}.mdi-hexadecimal:before{content:"\f12a7"}.mdi-hexagon:before{content:"\f02d8"}.mdi-hexagon-multiple:before{content:"\f06e1"}.mdi-hexagon-multiple-outline:before{content:"\f10f2"}.mdi-hexagon-outline:before{content:"\f02d9"}.mdi-hexagon-slice-1:before{content:"\f0ac3"}.mdi-hexagon-slice-2:before{content:"\f0ac4"}.mdi-hexagon-slice-3:before{content:"\f0ac5"}.mdi-hexagon-slice-4:before{content:"\f0ac6"}.mdi-hexagon-slice-5:before{content:"\f0ac7"}.mdi-hexagon-slice-6:before{content:"\f0ac8"}.mdi-hexagram:before{content:"\f0ac9"}.mdi-hexagram-outline:before{content:"\f0aca"}.mdi-high-definition:before{content:"\f07cf"}.mdi-high-definition-box:before{content:"\f0878"}.mdi-highway:before{content:"\f05f7"}.mdi-hiking:before{content:"\f0d7f"}.mdi-hinduism:before{content:"\f0973"}.mdi-history:before{content:"\f02da"}.mdi-hockey-puck:before{content:"\f0879"}.mdi-hockey-sticks:before{content:"\f087a"}.mdi-hololens:before{content:"\f02db"}.mdi-home:before{content:"\f02dc"}.mdi-home-account:before{content:"\f0826"}.mdi-home-alert:before{content:"\f087b"}.mdi-home-alert-outline:before{content:"\f15d0"}.mdi-home-analytics:before{content:"\f0eba"}.mdi-home-assistant:before{content:"\f07d0"}.mdi-home-automation:before{content:"\f07d1"}.mdi-home-circle:before{content:"\f07d2"}.mdi-home-circle-outline:before{content:"\f104d"}.mdi-home-city:before{content:"\f0d15"}.mdi-home-city-outline:before{content:"\f0d16"}.mdi-home-currency-usd:before{content:"\f08af"}.mdi-home-edit:before{content:"\f1159"}.mdi-home-edit-outline:before{content:"\f115a"}.mdi-home-export-outline:before{content:"\f0f9b"}.mdi-home-flood:before{content:"\f0efa"}.mdi-home-floor-0:before{content:"\f0dd2"}.mdi-home-floor-1:before{content:"\f0d80"}.mdi-home-floor-2:before{content:"\f0d81"}.mdi-home-floor-3:before{content:"\f0d82"}.mdi-home-floor-a:before{content:"\f0d83"}.mdi-home-floor-b:before{content:"\f0d84"}.mdi-home-floor-g:before{content:"\f0d85"}.mdi-home-floor-l:before{content:"\f0d86"}.mdi-home-floor-negative-1:before{content:"\f0dd3"}.mdi-home-group:before{content:"\f0dd4"}.mdi-home-heart:before{content:"\f0827"}.mdi-home-import-outline:before{content:"\f0f9c"}.mdi-home-lightbulb:before{content:"\f1251"}.mdi-home-lightbulb-outline:before{content:"\f1252"}.mdi-home-lock:before{content:"\f08eb"}.mdi-home-lock-open:before{content:"\f08ec"}.mdi-home-map-marker:before{content:"\f05f8"}.mdi-home-minus:before{content:"\f0974"}.mdi-home-minus-outline:before{content:"\f13d5"}.mdi-home-modern:before{content:"\f02dd"}.mdi-home-outline:before{content:"\f06a1"}.mdi-home-plus:before{content:"\f0975"}.mdi-home-plus-outline:before{content:"\f13d6"}.mdi-home-remove:before{content:"\f1247"}.mdi-home-remove-outline:before{content:"\f13d7"}.mdi-home-roof:before{content:"\f112b"}.mdi-home-search:before{content:"\f13b0"}.mdi-home-search-outline:before{content:"\f13b1"}.mdi-home-thermometer:before{content:"\f0f54"}.mdi-home-thermometer-outline:before{content:"\f0f55"}.mdi-home-variant:before{content:"\f02de"}.mdi-home-variant-outline:before{content:"\f0ba7"}.mdi-hook:before{content:"\f06e2"}.mdi-hook-off:before{content:"\f06e3"}.mdi-hops:before{content:"\f02df"}.mdi-horizontal-rotate-clockwise:before{content:"\f10f3"}.mdi-horizontal-rotate-counterclockwise:before{content:"\f10f4"}.mdi-horse:before{content:"\f15bf"}.mdi-horse-human:before{content:"\f15c0"}.mdi-horse-variant:before{content:"\f15c1"}.mdi-horseshoe:before{content:"\f0a58"}.mdi-hospital:before{content:"\f0ff6"}.mdi-hospital-box:before{content:"\f02e0"}.mdi-hospital-box-outline:before{content:"\f0ff7"}.mdi-hospital-building:before{content:"\f02e1"}.mdi-hospital-marker:before{content:"\f02e2"}.mdi-hot-tub:before{content:"\f0828"}.mdi-hours-24:before{content:"\f1478"}.mdi-hubspot:before{content:"\f0d17"}.mdi-hulu:before{content:"\f0829"}.mdi-human:before{content:"\f02e6"}.mdi-human-baby-changing-table:before{content:"\f138b"}.mdi-human-cane:before{content:"\f1581"}.mdi-human-capacity-decrease:before{content:"\f159b"}.mdi-human-capacity-increase:before{content:"\f159c"}.mdi-human-child:before{content:"\f02e7"}.mdi-human-edit:before{content:"\f14e8"}.mdi-human-female:before{content:"\f0649"}.mdi-human-female-boy:before{content:"\f0a59"}.mdi-human-female-dance:before{content:"\f15c9"}.mdi-human-female-female:before{content:"\f0a5a"}.mdi-human-female-girl:before{content:"\f0a5b"}.mdi-human-greeting:before{content:"\f064a"}.mdi-human-greeting-proximity:before{content:"\f159d"}.mdi-human-handsdown:before{content:"\f064b"}.mdi-human-handsup:before{content:"\f064c"}.mdi-human-male:before{content:"\f064d"}.mdi-human-male-boy:before{content:"\f0a5c"}.mdi-human-male-child:before{content:"\f138c"}.mdi-human-male-female:before{content:"\f02e8"}.mdi-human-male-girl:before{content:"\f0a5d"}.mdi-human-male-height:before{content:"\f0efb"}.mdi-human-male-height-variant:before{content:"\f0efc"}.mdi-human-male-male:before{content:"\f0a5e"}.mdi-human-pregnant:before{content:"\f05cf"}.mdi-human-queue:before{content:"\f1571"}.mdi-human-scooter:before{content:"\f11e9"}.mdi-human-wheelchair:before{content:"\f138d"}.mdi-humble-bundle:before{content:"\f0744"}.mdi-hvac:before{content:"\f1352"}.mdi-hvac-off:before{content:"\f159e"}.mdi-hydraulic-oil-level:before{content:"\f1324"}.mdi-hydraulic-oil-temperature:before{content:"\f1325"}.mdi-hydro-power:before{content:"\f12e5"}.mdi-ice-cream:before{content:"\f082a"}.mdi-ice-cream-off:before{content:"\f0e52"}.mdi-ice-pop:before{content:"\f0efd"}.mdi-id-card:before{content:"\f0fc0"}.mdi-identifier:before{content:"\f0efe"}.mdi-ideogram-cjk:before{content:"\f1331"}.mdi-ideogram-cjk-variant:before{content:"\f1332"}.mdi-iframe:before{content:"\f0c8b"}.mdi-iframe-array:before{content:"\f10f5"}.mdi-iframe-array-outline:before{content:"\f10f6"}.mdi-iframe-braces:before{content:"\f10f7"}.mdi-iframe-braces-outline:before{content:"\f10f8"}.mdi-iframe-outline:before{content:"\f0c8c"}.mdi-iframe-parentheses:before{content:"\f10f9"}.mdi-iframe-parentheses-outline:before{content:"\f10fa"}.mdi-iframe-variable:before{content:"\f10fb"}.mdi-iframe-variable-outline:before{content:"\f10fc"}.mdi-image:before{content:"\f02e9"}.mdi-image-album:before{content:"\f02ea"}.mdi-image-area:before{content:"\f02eb"}.mdi-image-area-close:before{content:"\f02ec"}.mdi-image-auto-adjust:before{content:"\f0fc1"}.mdi-image-broken:before{content:"\f02ed"}.mdi-image-broken-variant:before{content:"\f02ee"}.mdi-image-edit:before{content:"\f11e3"}.mdi-image-edit-outline:before{content:"\f11e4"}.mdi-image-filter-black-white:before{content:"\f02f0"}.mdi-image-filter-center-focus:before{content:"\f02f1"}.mdi-image-filter-center-focus-strong:before{content:"\f0eff"}.mdi-image-filter-center-focus-strong-outline:before{content:"\f0f00"}.mdi-image-filter-center-focus-weak:before{content:"\f02f2"}.mdi-image-filter-drama:before{content:"\f02f3"}.mdi-image-filter-frames:before{content:"\f02f4"}.mdi-image-filter-hdr:before{content:"\f02f5"}.mdi-image-filter-none:before{content:"\f02f6"}.mdi-image-filter-tilt-shift:before{content:"\f02f7"}.mdi-image-filter-vintage:before{content:"\f02f8"}.mdi-image-frame:before{content:"\f0e49"}.mdi-image-minus:before{content:"\f1419"}.mdi-image-move:before{content:"\f09f8"}.mdi-image-multiple:before{content:"\f02f9"}.mdi-image-multiple-outline:before{content:"\f02ef"}.mdi-image-off:before{content:"\f082b"}.mdi-image-off-outline:before{content:"\f11d1"}.mdi-image-outline:before{content:"\f0976"}.mdi-image-plus:before{content:"\f087c"}.mdi-image-remove:before{content:"\f1418"}.mdi-image-search:before{content:"\f0977"}.mdi-image-search-outline:before{content:"\f0978"}.mdi-image-size-select-actual:before{content:"\f0c8d"}.mdi-image-size-select-large:before{content:"\f0c8e"}.mdi-image-size-select-small:before{content:"\f0c8f"}.mdi-image-text:before{content:"\f160d"}.mdi-import:before{content:"\f02fa"}.mdi-inbox:before{content:"\f0687"}.mdi-inbox-arrow-down:before{content:"\f02fb"}.mdi-inbox-arrow-down-outline:before{content:"\f1270"}.mdi-inbox-arrow-up:before{content:"\f03d1"}.mdi-inbox-arrow-up-outline:before{content:"\f1271"}.mdi-inbox-full:before{content:"\f1272"}.mdi-inbox-full-outline:before{content:"\f1273"}.mdi-inbox-multiple:before{content:"\f08b0"}.mdi-inbox-multiple-outline:before{content:"\f0ba8"}.mdi-inbox-outline:before{content:"\f1274"}.mdi-inbox-remove:before{content:"\f159f"}.mdi-inbox-remove-outline:before{content:"\f15a0"}.mdi-incognito:before{content:"\f05f9"}.mdi-incognito-circle:before{content:"\f1421"}.mdi-incognito-circle-off:before{content:"\f1422"}.mdi-incognito-off:before{content:"\f0075"}.mdi-infinity:before{content:"\f06e4"}.mdi-information:before{content:"\f02fc"}.mdi-information-outline:before{content:"\f02fd"}.mdi-information-variant:before{content:"\f064e"}.mdi-instagram:before{content:"\f02fe"}.mdi-instrument-triangle:before{content:"\f104e"}.mdi-invert-colors:before{content:"\f0301"}.mdi-invert-colors-off:before{content:"\f0e4a"}.mdi-iobroker:before{content:"\f12e8"}.mdi-ip:before{content:"\f0a5f"}.mdi-ip-network:before{content:"\f0a60"}.mdi-ip-network-outline:before{content:"\f0c90"}.mdi-ipod:before{content:"\f0c91"}.mdi-islam:before{content:"\f0979"}.mdi-island:before{content:"\f104f"}.mdi-iv-bag:before{content:"\f10b9"}.mdi-jabber:before{content:"\f0dd5"}.mdi-jeepney:before{content:"\f0302"}.mdi-jellyfish:before{content:"\f0f01"}.mdi-jellyfish-outline:before{content:"\f0f02"}.mdi-jira:before{content:"\f0303"}.mdi-jquery:before{content:"\f087d"}.mdi-jsfiddle:before{content:"\f0304"}.mdi-judaism:before{content:"\f097a"}.mdi-jump-rope:before{content:"\f12ff"}.mdi-kabaddi:before{content:"\f0d87"}.mdi-kangaroo:before{content:"\f1558"}.mdi-karate:before{content:"\f082c"}.mdi-keg:before{content:"\f0305"}.mdi-kettle:before{content:"\f05fa"}.mdi-kettle-alert:before{content:"\f1317"}.mdi-kettle-alert-outline:before{content:"\f1318"}.mdi-kettle-off:before{content:"\f131b"}.mdi-kettle-off-outline:before{content:"\f131c"}.mdi-kettle-outline:before{content:"\f0f56"}.mdi-kettle-steam:before{content:"\f1319"}.mdi-kettle-steam-outline:before{content:"\f131a"}.mdi-kettlebell:before{content:"\f1300"}.mdi-key:before{content:"\f0306"}.mdi-key-arrow-right:before{content:"\f1312"}.mdi-key-chain:before{content:"\f1574"}.mdi-key-chain-variant:before{content:"\f1575"}.mdi-key-change:before{content:"\f0307"}.mdi-key-link:before{content:"\f119f"}.mdi-key-minus:before{content:"\f0308"}.mdi-key-outline:before{content:"\f0dd6"}.mdi-key-plus:before{content:"\f0309"}.mdi-key-remove:before{content:"\f030a"}.mdi-key-star:before{content:"\f119e"}.mdi-key-variant:before{content:"\f030b"}.mdi-key-wireless:before{content:"\f0fc2"}.mdi-keyboard:before{content:"\f030c"}.mdi-keyboard-backspace:before{content:"\f030d"}.mdi-keyboard-caps:before{content:"\f030e"}.mdi-keyboard-close:before{content:"\f030f"}.mdi-keyboard-esc:before{content:"\f12b7"}.mdi-keyboard-f1:before{content:"\f12ab"}.mdi-keyboard-f10:before{content:"\f12b4"}.mdi-keyboard-f11:before{content:"\f12b5"}.mdi-keyboard-f12:before{content:"\f12b6"}.mdi-keyboard-f2:before{content:"\f12ac"}.mdi-keyboard-f3:before{content:"\f12ad"}.mdi-keyboard-f4:before{content:"\f12ae"}.mdi-keyboard-f5:before{content:"\f12af"}.mdi-keyboard-f6:before{content:"\f12b0"}.mdi-keyboard-f7:before{content:"\f12b1"}.mdi-keyboard-f8:before{content:"\f12b2"}.mdi-keyboard-f9:before{content:"\f12b3"}.mdi-keyboard-off:before{content:"\f0310"}.mdi-keyboard-off-outline:before{content:"\f0e4b"}.mdi-keyboard-outline:before{content:"\f097b"}.mdi-keyboard-return:before{content:"\f0311"}.mdi-keyboard-settings:before{content:"\f09f9"}.mdi-keyboard-settings-outline:before{content:"\f09fa"}.mdi-keyboard-space:before{content:"\f1050"}.mdi-keyboard-tab:before{content:"\f0312"}.mdi-keyboard-variant:before{content:"\f0313"}.mdi-khanda:before{content:"\f10fd"}.mdi-kickstarter:before{content:"\f0745"}.mdi-klingon:before{content:"\f135b"}.mdi-knife:before{content:"\f09fb"}.mdi-knife-military:before{content:"\f09fc"}.mdi-kodi:before{content:"\f0314"}.mdi-kubernetes:before{content:"\f10fe"}.mdi-label:before{content:"\f0315"}.mdi-label-multiple:before{content:"\f1375"}.mdi-label-multiple-outline:before{content:"\f1376"}.mdi-label-off:before{content:"\f0acb"}.mdi-label-off-outline:before{content:"\f0acc"}.mdi-label-outline:before{content:"\f0316"}.mdi-label-percent:before{content:"\f12ea"}.mdi-label-percent-outline:before{content:"\f12eb"}.mdi-label-variant:before{content:"\f0acd"}.mdi-label-variant-outline:before{content:"\f0ace"}.mdi-ladder:before{content:"\f15a2"}.mdi-ladybug:before{content:"\f082d"}.mdi-lambda:before{content:"\f0627"}.mdi-lamp:before{content:"\f06b5"}.mdi-lamps:before{content:"\f1576"}.mdi-lan:before{content:"\f0317"}.mdi-lan-check:before{content:"\f12aa"}.mdi-lan-connect:before{content:"\f0318"}.mdi-lan-disconnect:before{content:"\f0319"}.mdi-lan-pending:before{content:"\f031a"}.mdi-language-c:before{content:"\f0671"}.mdi-language-cpp:before{content:"\f0672"}.mdi-language-csharp:before{content:"\f031b"}.mdi-language-css3:before{content:"\f031c"}.mdi-language-fortran:before{content:"\f121a"}.mdi-language-go:before{content:"\f07d3"}.mdi-language-haskell:before{content:"\f0c92"}.mdi-language-html5:before{content:"\f031d"}.mdi-language-java:before{content:"\f0b37"}.mdi-language-javascript:before{content:"\f031e"}.mdi-language-kotlin:before{content:"\f1219"}.mdi-language-lua:before{content:"\f08b1"}.mdi-language-markdown:before{content:"\f0354"}.mdi-language-markdown-outline:before{content:"\f0f5b"}.mdi-language-php:before{content:"\f031f"}.mdi-language-python:before{content:"\f0320"}.mdi-language-r:before{content:"\f07d4"}.mdi-language-ruby:before{content:"\f0d2d"}.mdi-language-ruby-on-rails:before{content:"\f0acf"}.mdi-language-rust:before{content:"\f1617"}.mdi-language-swift:before{content:"\f06e5"}.mdi-language-typescript:before{content:"\f06e6"}.mdi-language-xaml:before{content:"\f0673"}.mdi-laptop:before{content:"\f0322"}.mdi-laptop-chromebook:before{content:"\f0323"}.mdi-laptop-mac:before{content:"\f0324"}.mdi-laptop-off:before{content:"\f06e7"}.mdi-laptop-windows:before{content:"\f0325"}.mdi-laravel:before{content:"\f0ad0"}.mdi-laser-pointer:before{content:"\f1484"}.mdi-lasso:before{content:"\f0f03"}.mdi-lastpass:before{content:"\f0446"}.mdi-latitude:before{content:"\f0f57"}.mdi-launch:before{content:"\f0327"}.mdi-lava-lamp:before{content:"\f07d5"}.mdi-layers:before{content:"\f0328"}.mdi-layers-minus:before{content:"\f0e4c"}.mdi-layers-off:before{content:"\f0329"}.mdi-layers-off-outline:before{content:"\f09fd"}.mdi-layers-outline:before{content:"\f09fe"}.mdi-layers-plus:before{content:"\f0e4d"}.mdi-layers-remove:before{content:"\f0e4e"}.mdi-layers-search:before{content:"\f1206"}.mdi-layers-search-outline:before{content:"\f1207"}.mdi-layers-triple:before{content:"\f0f58"}.mdi-layers-triple-outline:before{content:"\f0f59"}.mdi-lead-pencil:before{content:"\f064f"}.mdi-leaf:before{content:"\f032a"}.mdi-leaf-maple:before{content:"\f0c93"}.mdi-leaf-maple-off:before{content:"\f12da"}.mdi-leaf-off:before{content:"\f12d9"}.mdi-leak:before{content:"\f0dd7"}.mdi-leak-off:before{content:"\f0dd8"}.mdi-led-off:before{content:"\f032b"}.mdi-led-on:before{content:"\f032c"}.mdi-led-outline:before{content:"\f032d"}.mdi-led-strip:before{content:"\f07d6"}.mdi-led-strip-variant:before{content:"\f1051"}.mdi-led-variant-off:before{content:"\f032e"}.mdi-led-variant-on:before{content:"\f032f"}.mdi-led-variant-outline:before{content:"\f0330"}.mdi-leek:before{content:"\f117d"}.mdi-less-than:before{content:"\f097c"}.mdi-less-than-or-equal:before{content:"\f097d"}.mdi-library:before{content:"\f0331"}.mdi-library-shelves:before{content:"\f0ba9"}.mdi-license:before{content:"\f0fc3"}.mdi-lifebuoy:before{content:"\f087e"}.mdi-light-switch:before{content:"\f097e"}.mdi-lightbulb:before{content:"\f0335"}.mdi-lightbulb-cfl:before{content:"\f1208"}.mdi-lightbulb-cfl-off:before{content:"\f1209"}.mdi-lightbulb-cfl-spiral:before{content:"\f1275"}.mdi-lightbulb-cfl-spiral-off:before{content:"\f12c3"}.mdi-lightbulb-group:before{content:"\f1253"}.mdi-lightbulb-group-off:before{content:"\f12cd"}.mdi-lightbulb-group-off-outline:before{content:"\f12ce"}.mdi-lightbulb-group-outline:before{content:"\f1254"}.mdi-lightbulb-multiple:before{content:"\f1255"}.mdi-lightbulb-multiple-off:before{content:"\f12cf"}.mdi-lightbulb-multiple-off-outline:before{content:"\f12d0"}.mdi-lightbulb-multiple-outline:before{content:"\f1256"}.mdi-lightbulb-off:before{content:"\f0e4f"}.mdi-lightbulb-off-outline:before{content:"\f0e50"}.mdi-lightbulb-on:before{content:"\f06e8"}.mdi-lightbulb-on-outline:before{content:"\f06e9"}.mdi-lightbulb-outline:before{content:"\f0336"}.mdi-lighthouse:before{content:"\f09ff"}.mdi-lighthouse-on:before{content:"\f0a00"}.mdi-lightning-bolt:before{content:"\f140b"}.mdi-lightning-bolt-outline:before{content:"\f140c"}.mdi-lingerie:before{content:"\f1476"}.mdi-link:before{content:"\f0337"}.mdi-link-box:before{content:"\f0d1a"}.mdi-link-box-outline:before{content:"\f0d1b"}.mdi-link-box-variant:before{content:"\f0d1c"}.mdi-link-box-variant-outline:before{content:"\f0d1d"}.mdi-link-lock:before{content:"\f10ba"}.mdi-link-off:before{content:"\f0338"}.mdi-link-plus:before{content:"\f0c94"}.mdi-link-variant:before{content:"\f0339"}.mdi-link-variant-minus:before{content:"\f10ff"}.mdi-link-variant-off:before{content:"\f033a"}.mdi-link-variant-plus:before{content:"\f1100"}.mdi-link-variant-remove:before{content:"\f1101"}.mdi-linkedin:before{content:"\f033b"}.mdi-linux:before{content:"\f033d"}.mdi-linux-mint:before{content:"\f08ed"}.mdi-lipstick:before{content:"\f13b5"}.mdi-list-status:before{content:"\f15ab"}.mdi-litecoin:before{content:"\f0a61"}.mdi-loading:before{content:"\f0772"}.mdi-location-enter:before{content:"\f0fc4"}.mdi-location-exit:before{content:"\f0fc5"}.mdi-lock:before{content:"\f033e"}.mdi-lock-alert:before{content:"\f08ee"}.mdi-lock-alert-outline:before{content:"\f15d1"}.mdi-lock-check:before{content:"\f139a"}.mdi-lock-check-outline:before{content:"\f16a8"}.mdi-lock-clock:before{content:"\f097f"}.mdi-lock-minus:before{content:"\f16a9"}.mdi-lock-minus-outline:before{content:"\f16aa"}.mdi-lock-off:before{content:"\f1671"}.mdi-lock-off-outline:before{content:"\f1672"}.mdi-lock-open:before{content:"\f033f"}.mdi-lock-open-alert:before{content:"\f139b"}.mdi-lock-open-alert-outline:before{content:"\f15d2"}.mdi-lock-open-check:before{content:"\f139c"}.mdi-lock-open-check-outline:before{content:"\f16ab"}.mdi-lock-open-minus:before{content:"\f16ac"}.mdi-lock-open-minus-outline:before{content:"\f16ad"}.mdi-lock-open-outline:before{content:"\f0340"}.mdi-lock-open-plus:before{content:"\f16ae"}.mdi-lock-open-plus-outline:before{content:"\f16af"}.mdi-lock-open-remove:before{content:"\f16b0"}.mdi-lock-open-remove-outline:before{content:"\f16b1"}.mdi-lock-open-variant:before{content:"\f0fc6"}.mdi-lock-open-variant-outline:before{content:"\f0fc7"}.mdi-lock-outline:before{content:"\f0341"}.mdi-lock-pattern:before{content:"\f06ea"}.mdi-lock-plus:before{content:"\f05fb"}.mdi-lock-plus-outline:before{content:"\f16b2"}.mdi-lock-question:before{content:"\f08ef"}.mdi-lock-remove:before{content:"\f16b3"}.mdi-lock-remove-outline:before{content:"\f16b4"}.mdi-lock-reset:before{content:"\f0773"}.mdi-lock-smart:before{content:"\f08b2"}.mdi-locker:before{content:"\f07d7"}.mdi-locker-multiple:before{content:"\f07d8"}.mdi-login:before{content:"\f0342"}.mdi-login-variant:before{content:"\f05fc"}.mdi-logout:before{content:"\f0343"}.mdi-logout-variant:before{content:"\f05fd"}.mdi-longitude:before{content:"\f0f5a"}.mdi-looks:before{content:"\f0344"}.mdi-lotion:before{content:"\f1582"}.mdi-lotion-outline:before{content:"\f1583"}.mdi-lotion-plus:before{content:"\f1584"}.mdi-lotion-plus-outline:before{content:"\f1585"}.mdi-loupe:before{content:"\f0345"}.mdi-lumx:before{content:"\f0346"}.mdi-lungs:before{content:"\f1084"}.mdi-magnet:before{content:"\f0347"}.mdi-magnet-on:before{content:"\f0348"}.mdi-magnify:before{content:"\f0349"}.mdi-magnify-close:before{content:"\f0980"}.mdi-magnify-minus:before{content:"\f034a"}.mdi-magnify-minus-cursor:before{content:"\f0a62"}.mdi-magnify-minus-outline:before{content:"\f06ec"}.mdi-magnify-plus:before{content:"\f034b"}.mdi-magnify-plus-cursor:before{content:"\f0a63"}.mdi-magnify-plus-outline:before{content:"\f06ed"}.mdi-magnify-remove-cursor:before{content:"\f120c"}.mdi-magnify-remove-outline:before{content:"\f120d"}.mdi-magnify-scan:before{content:"\f1276"}.mdi-mail:before{content:"\f0ebb"}.mdi-mailbox:before{content:"\f06ee"}.mdi-mailbox-open:before{content:"\f0d88"}.mdi-mailbox-open-outline:before{content:"\f0d89"}.mdi-mailbox-open-up:before{content:"\f0d8a"}.mdi-mailbox-open-up-outline:before{content:"\f0d8b"}.mdi-mailbox-outline:before{content:"\f0d8c"}.mdi-mailbox-up:before{content:"\f0d8d"}.mdi-mailbox-up-outline:before{content:"\f0d8e"}.mdi-manjaro:before{content:"\f160a"}.mdi-map:before{content:"\f034d"}.mdi-map-check:before{content:"\f0ebc"}.mdi-map-check-outline:before{content:"\f0ebd"}.mdi-map-clock:before{content:"\f0d1e"}.mdi-map-clock-outline:before{content:"\f0d1f"}.mdi-map-legend:before{content:"\f0a01"}.mdi-map-marker:before{content:"\f034e"}.mdi-map-marker-alert:before{content:"\f0f05"}.mdi-map-marker-alert-outline:before{content:"\f0f06"}.mdi-map-marker-check:before{content:"\f0c95"}.mdi-map-marker-check-outline:before{content:"\f12fb"}.mdi-map-marker-circle:before{content:"\f034f"}.mdi-map-marker-distance:before{content:"\f08f0"}.mdi-map-marker-down:before{content:"\f1102"}.mdi-map-marker-left:before{content:"\f12db"}.mdi-map-marker-left-outline:before{content:"\f12dd"}.mdi-map-marker-minus:before{content:"\f0650"}.mdi-map-marker-minus-outline:before{content:"\f12f9"}.mdi-map-marker-multiple:before{content:"\f0350"}.mdi-map-marker-multiple-outline:before{content:"\f1277"}.mdi-map-marker-off:before{content:"\f0351"}.mdi-map-marker-off-outline:before{content:"\f12fd"}.mdi-map-marker-outline:before{content:"\f07d9"}.mdi-map-marker-path:before{content:"\f0d20"}.mdi-map-marker-plus:before{content:"\f0651"}.mdi-map-marker-plus-outline:before{content:"\f12f8"}.mdi-map-marker-question:before{content:"\f0f07"}.mdi-map-marker-question-outline:before{content:"\f0f08"}.mdi-map-marker-radius:before{content:"\f0352"}.mdi-map-marker-radius-outline:before{content:"\f12fc"}.mdi-map-marker-remove:before{content:"\f0f09"}.mdi-map-marker-remove-outline:before{content:"\f12fa"}.mdi-map-marker-remove-variant:before{content:"\f0f0a"}.mdi-map-marker-right:before{content:"\f12dc"}.mdi-map-marker-right-outline:before{content:"\f12de"}.mdi-map-marker-star:before{content:"\f1608"}.mdi-map-marker-star-outline:before{content:"\f1609"}.mdi-map-marker-up:before{content:"\f1103"}.mdi-map-minus:before{content:"\f0981"}.mdi-map-outline:before{content:"\f0982"}.mdi-map-plus:before{content:"\f0983"}.mdi-map-search:before{content:"\f0984"}.mdi-map-search-outline:before{content:"\f0985"}.mdi-mapbox:before{content:"\f0baa"}.mdi-margin:before{content:"\f0353"}.mdi-marker:before{content:"\f0652"}.mdi-marker-cancel:before{content:"\f0dd9"}.mdi-marker-check:before{content:"\f0355"}.mdi-mastodon:before{content:"\f0ad1"}.mdi-material-design:before{content:"\f0986"}.mdi-material-ui:before{content:"\f0357"}.mdi-math-compass:before{content:"\f0358"}.mdi-math-cos:before{content:"\f0c96"}.mdi-math-integral:before{content:"\f0fc8"}.mdi-math-integral-box:before{content:"\f0fc9"}.mdi-math-log:before{content:"\f1085"}.mdi-math-norm:before{content:"\f0fca"}.mdi-math-norm-box:before{content:"\f0fcb"}.mdi-math-sin:before{content:"\f0c97"}.mdi-math-tan:before{content:"\f0c98"}.mdi-matrix:before{content:"\f0628"}.mdi-medal:before{content:"\f0987"}.mdi-medal-outline:before{content:"\f1326"}.mdi-medical-bag:before{content:"\f06ef"}.mdi-meditation:before{content:"\f117b"}.mdi-memory:before{content:"\f035b"}.mdi-menu:before{content:"\f035c"}.mdi-menu-down:before{content:"\f035d"}.mdi-menu-down-outline:before{content:"\f06b6"}.mdi-menu-left:before{content:"\f035e"}.mdi-menu-left-outline:before{content:"\f0a02"}.mdi-menu-open:before{content:"\f0bab"}.mdi-menu-right:before{content:"\f035f"}.mdi-menu-right-outline:before{content:"\f0a03"}.mdi-menu-swap:before{content:"\f0a64"}.mdi-menu-swap-outline:before{content:"\f0a65"}.mdi-menu-up:before{content:"\f0360"}.mdi-menu-up-outline:before{content:"\f06b7"}.mdi-merge:before{content:"\f0f5c"}.mdi-message:before{content:"\f0361"}.mdi-message-alert:before{content:"\f0362"}.mdi-message-alert-outline:before{content:"\f0a04"}.mdi-message-arrow-left:before{content:"\f12f2"}.mdi-message-arrow-left-outline:before{content:"\f12f3"}.mdi-message-arrow-right:before{content:"\f12f4"}.mdi-message-arrow-right-outline:before{content:"\f12f5"}.mdi-message-bookmark:before{content:"\f15ac"}.mdi-message-bookmark-outline:before{content:"\f15ad"}.mdi-message-bulleted:before{content:"\f06a2"}.mdi-message-bulleted-off:before{content:"\f06a3"}.mdi-message-cog:before{content:"\f06f1"}.mdi-message-cog-outline:before{content:"\f1172"}.mdi-message-draw:before{content:"\f0363"}.mdi-message-flash:before{content:"\f15a9"}.mdi-message-flash-outline:before{content:"\f15aa"}.mdi-message-image:before{content:"\f0364"}.mdi-message-image-outline:before{content:"\f116c"}.mdi-message-lock:before{content:"\f0fcc"}.mdi-message-lock-outline:before{content:"\f116d"}.mdi-message-minus:before{content:"\f116e"}.mdi-message-minus-outline:before{content:"\f116f"}.mdi-message-off:before{content:"\f164d"}.mdi-message-off-outline:before{content:"\f164e"}.mdi-message-outline:before{content:"\f0365"}.mdi-message-plus:before{content:"\f0653"}.mdi-message-plus-outline:before{content:"\f10bb"}.mdi-message-processing:before{content:"\f0366"}.mdi-message-processing-outline:before{content:"\f1170"}.mdi-message-reply:before{content:"\f0367"}.mdi-message-reply-text:before{content:"\f0368"}.mdi-message-settings:before{content:"\f06f0"}.mdi-message-settings-outline:before{content:"\f1171"}.mdi-message-text:before{content:"\f0369"}.mdi-message-text-clock:before{content:"\f1173"}.mdi-message-text-clock-outline:before{content:"\f1174"}.mdi-message-text-lock:before{content:"\f0fcd"}.mdi-message-text-lock-outline:before{content:"\f1175"}.mdi-message-text-outline:before{content:"\f036a"}.mdi-message-video:before{content:"\f036b"}.mdi-meteor:before{content:"\f0629"}.mdi-metronome:before{content:"\f07da"}.mdi-metronome-tick:before{content:"\f07db"}.mdi-micro-sd:before{content:"\f07dc"}.mdi-microphone:before{content:"\f036c"}.mdi-microphone-minus:before{content:"\f08b3"}.mdi-microphone-off:before{content:"\f036d"}.mdi-microphone-outline:before{content:"\f036e"}.mdi-microphone-plus:before{content:"\f08b4"}.mdi-microphone-settings:before{content:"\f036f"}.mdi-microphone-variant:before{content:"\f0370"}.mdi-microphone-variant-off:before{content:"\f0371"}.mdi-microscope:before{content:"\f0654"}.mdi-microsoft:before{content:"\f0372"}.mdi-microsoft-access:before{content:"\f138e"}.mdi-microsoft-azure:before{content:"\f0805"}.mdi-microsoft-azure-devops:before{content:"\f0fd5"}.mdi-microsoft-bing:before{content:"\f00a4"}.mdi-microsoft-dynamics-365:before{content:"\f0988"}.mdi-microsoft-edge:before{content:"\f01e9"}.mdi-microsoft-edge-legacy:before{content:"\f1250"}.mdi-microsoft-excel:before{content:"\f138f"}.mdi-microsoft-internet-explorer:before{content:"\f0300"}.mdi-microsoft-office:before{content:"\f03c6"}.mdi-microsoft-onedrive:before{content:"\f03ca"}.mdi-microsoft-onenote:before{content:"\f0747"}.mdi-microsoft-outlook:before{content:"\f0d22"}.mdi-microsoft-powerpoint:before{content:"\f1390"}.mdi-microsoft-sharepoint:before{content:"\f1391"}.mdi-microsoft-teams:before{content:"\f02bb"}.mdi-microsoft-visual-studio:before{content:"\f0610"}.mdi-microsoft-visual-studio-code:before{content:"\f0a1e"}.mdi-microsoft-windows:before{content:"\f05b3"}.mdi-microsoft-windows-classic:before{content:"\f0a21"}.mdi-microsoft-word:before{content:"\f1392"}.mdi-microsoft-xbox:before{content:"\f05b9"}.mdi-microsoft-xbox-controller:before{content:"\f05ba"}.mdi-microsoft-xbox-controller-battery-alert:before{content:"\f074b"}.mdi-microsoft-xbox-controller-battery-charging:before{content:"\f0a22"}.mdi-microsoft-xbox-controller-battery-empty:before{content:"\f074c"}.mdi-microsoft-xbox-controller-battery-full:before{content:"\f074d"}.mdi-microsoft-xbox-controller-battery-low:before{content:"\f074e"}.mdi-microsoft-xbox-controller-battery-medium:before{content:"\f074f"}.mdi-microsoft-xbox-controller-battery-unknown:before{content:"\f0750"}.mdi-microsoft-xbox-controller-menu:before{content:"\f0e6f"}.mdi-microsoft-xbox-controller-off:before{content:"\f05bb"}.mdi-microsoft-xbox-controller-view:before{content:"\f0e70"}.mdi-microsoft-yammer:before{content:"\f0789"}.mdi-microwave:before{content:"\f0c99"}.mdi-microwave-off:before{content:"\f1423"}.mdi-middleware:before{content:"\f0f5d"}.mdi-middleware-outline:before{content:"\f0f5e"}.mdi-midi:before{content:"\f08f1"}.mdi-midi-port:before{content:"\f08f2"}.mdi-mine:before{content:"\f0dda"}.mdi-minecraft:before{content:"\f0373"}.mdi-mini-sd:before{content:"\f0a05"}.mdi-minidisc:before{content:"\f0a06"}.mdi-minus:before{content:"\f0374"}.mdi-minus-box:before{content:"\f0375"}.mdi-minus-box-multiple:before{content:"\f1141"}.mdi-minus-box-multiple-outline:before{content:"\f1142"}.mdi-minus-box-outline:before{content:"\f06f2"}.mdi-minus-circle:before{content:"\f0376"}.mdi-minus-circle-multiple:before{content:"\f035a"}.mdi-minus-circle-multiple-outline:before{content:"\f0ad3"}.mdi-minus-circle-off:before{content:"\f1459"}.mdi-minus-circle-off-outline:before{content:"\f145a"}.mdi-minus-circle-outline:before{content:"\f0377"}.mdi-minus-network:before{content:"\f0378"}.mdi-minus-network-outline:before{content:"\f0c9a"}.mdi-minus-thick:before{content:"\f1639"}.mdi-mirror:before{content:"\f11fd"}.mdi-mixed-martial-arts:before{content:"\f0d8f"}.mdi-mixed-reality:before{content:"\f087f"}.mdi-molecule:before{content:"\f0bac"}.mdi-molecule-co:before{content:"\f12fe"}.mdi-molecule-co2:before{content:"\f07e4"}.mdi-monitor:before{content:"\f0379"}.mdi-monitor-cellphone:before{content:"\f0989"}.mdi-monitor-cellphone-star:before{content:"\f098a"}.mdi-monitor-clean:before{content:"\f1104"}.mdi-monitor-dashboard:before{content:"\f0a07"}.mdi-monitor-edit:before{content:"\f12c6"}.mdi-monitor-eye:before{content:"\f13b4"}.mdi-monitor-lock:before{content:"\f0ddb"}.mdi-monitor-multiple:before{content:"\f037a"}.mdi-monitor-off:before{content:"\f0d90"}.mdi-monitor-screenshot:before{content:"\f0e51"}.mdi-monitor-share:before{content:"\f1483"}.mdi-monitor-speaker:before{content:"\f0f5f"}.mdi-monitor-speaker-off:before{content:"\f0f60"}.mdi-monitor-star:before{content:"\f0ddc"}.mdi-moon-first-quarter:before{content:"\f0f61"}.mdi-moon-full:before{content:"\f0f62"}.mdi-moon-last-quarter:before{content:"\f0f63"}.mdi-moon-new:before{content:"\f0f64"}.mdi-moon-waning-crescent:before{content:"\f0f65"}.mdi-moon-waning-gibbous:before{content:"\f0f66"}.mdi-moon-waxing-crescent:before{content:"\f0f67"}.mdi-moon-waxing-gibbous:before{content:"\f0f68"}.mdi-moped:before{content:"\f1086"}.mdi-moped-electric:before{content:"\f15b7"}.mdi-moped-electric-outline:before{content:"\f15b8"}.mdi-moped-outline:before{content:"\f15b9"}.mdi-more:before{content:"\f037b"}.mdi-mother-heart:before{content:"\f1314"}.mdi-mother-nurse:before{content:"\f0d21"}.mdi-motion:before{content:"\f15b2"}.mdi-motion-outline:before{content:"\f15b3"}.mdi-motion-pause:before{content:"\f1590"}.mdi-motion-pause-outline:before{content:"\f1592"}.mdi-motion-play:before{content:"\f158f"}.mdi-motion-play-outline:before{content:"\f1591"}.mdi-motion-sensor:before{content:"\f0d91"}.mdi-motion-sensor-off:before{content:"\f1435"}.mdi-motorbike:before{content:"\f037c"}.mdi-motorbike-electric:before{content:"\f15ba"}.mdi-mouse:before{content:"\f037d"}.mdi-mouse-bluetooth:before{content:"\f098b"}.mdi-mouse-move-down:before{content:"\f1550"}.mdi-mouse-move-up:before{content:"\f1551"}.mdi-mouse-move-vertical:before{content:"\f1552"}.mdi-mouse-off:before{content:"\f037e"}.mdi-mouse-variant:before{content:"\f037f"}.mdi-mouse-variant-off:before{content:"\f0380"}.mdi-move-resize:before{content:"\f0655"}.mdi-move-resize-variant:before{content:"\f0656"}.mdi-movie:before{content:"\f0381"}.mdi-movie-edit:before{content:"\f1122"}.mdi-movie-edit-outline:before{content:"\f1123"}.mdi-movie-filter:before{content:"\f1124"}.mdi-movie-filter-outline:before{content:"\f1125"}.mdi-movie-open:before{content:"\f0fce"}.mdi-movie-open-outline:before{content:"\f0fcf"}.mdi-movie-outline:before{content:"\f0ddd"}.mdi-movie-roll:before{content:"\f07de"}.mdi-movie-search:before{content:"\f11d2"}.mdi-movie-search-outline:before{content:"\f11d3"}.mdi-mower:before{content:"\f166f"}.mdi-mower-bag:before{content:"\f1670"}.mdi-muffin:before{content:"\f098c"}.mdi-multiplication:before{content:"\f0382"}.mdi-multiplication-box:before{content:"\f0383"}.mdi-mushroom:before{content:"\f07df"}.mdi-mushroom-off:before{content:"\f13fa"}.mdi-mushroom-off-outline:before{content:"\f13fb"}.mdi-mushroom-outline:before{content:"\f07e0"}.mdi-music:before{content:"\f075a"}.mdi-music-accidental-double-flat:before{content:"\f0f69"}.mdi-music-accidental-double-sharp:before{content:"\f0f6a"}.mdi-music-accidental-flat:before{content:"\f0f6b"}.mdi-music-accidental-natural:before{content:"\f0f6c"}.mdi-music-accidental-sharp:before{content:"\f0f6d"}.mdi-music-box:before{content:"\f0384"}.mdi-music-box-multiple:before{content:"\f0333"}.mdi-music-box-multiple-outline:before{content:"\f0f04"}.mdi-music-box-outline:before{content:"\f0385"}.mdi-music-circle:before{content:"\f0386"}.mdi-music-circle-outline:before{content:"\f0ad4"}.mdi-music-clef-alto:before{content:"\f0f6e"}.mdi-music-clef-bass:before{content:"\f0f6f"}.mdi-music-clef-treble:before{content:"\f0f70"}.mdi-music-note:before{content:"\f0387"}.mdi-music-note-bluetooth:before{content:"\f05fe"}.mdi-music-note-bluetooth-off:before{content:"\f05ff"}.mdi-music-note-eighth:before{content:"\f0388"}.mdi-music-note-eighth-dotted:before{content:"\f0f71"}.mdi-music-note-half:before{content:"\f0389"}.mdi-music-note-half-dotted:before{content:"\f0f72"}.mdi-music-note-off:before{content:"\f038a"}.mdi-music-note-off-outline:before{content:"\f0f73"}.mdi-music-note-outline:before{content:"\f0f74"}.mdi-music-note-plus:before{content:"\f0dde"}.mdi-music-note-quarter:before{content:"\f038b"}.mdi-music-note-quarter-dotted:before{content:"\f0f75"}.mdi-music-note-sixteenth:before{content:"\f038c"}.mdi-music-note-sixteenth-dotted:before{content:"\f0f76"}.mdi-music-note-whole:before{content:"\f038d"}.mdi-music-note-whole-dotted:before{content:"\f0f77"}.mdi-music-off:before{content:"\f075b"}.mdi-music-rest-eighth:before{content:"\f0f78"}.mdi-music-rest-half:before{content:"\f0f79"}.mdi-music-rest-quarter:before{content:"\f0f7a"}.mdi-music-rest-sixteenth:before{content:"\f0f7b"}.mdi-music-rest-whole:before{content:"\f0f7c"}.mdi-mustache:before{content:"\f15de"}.mdi-nail:before{content:"\f0ddf"}.mdi-nas:before{content:"\f08f3"}.mdi-nativescript:before{content:"\f0880"}.mdi-nature:before{content:"\f038e"}.mdi-nature-people:before{content:"\f038f"}.mdi-navigation:before{content:"\f0390"}.mdi-navigation-outline:before{content:"\f1607"}.mdi-near-me:before{content:"\f05cd"}.mdi-necklace:before{content:"\f0f0b"}.mdi-needle:before{content:"\f0391"}.mdi-netflix:before{content:"\f0746"}.mdi-network:before{content:"\f06f3"}.mdi-network-off:before{content:"\f0c9b"}.mdi-network-off-outline:before{content:"\f0c9c"}.mdi-network-outline:before{content:"\f0c9d"}.mdi-network-strength-1:before{content:"\f08f4"}.mdi-network-strength-1-alert:before{content:"\f08f5"}.mdi-network-strength-2:before{content:"\f08f6"}.mdi-network-strength-2-alert:before{content:"\f08f7"}.mdi-network-strength-3:before{content:"\f08f8"}.mdi-network-strength-3-alert:before{content:"\f08f9"}.mdi-network-strength-4:before{content:"\f08fa"}.mdi-network-strength-4-alert:before{content:"\f08fb"}.mdi-network-strength-off:before{content:"\f08fc"}.mdi-network-strength-off-outline:before{content:"\f08fd"}.mdi-network-strength-outline:before{content:"\f08fe"}.mdi-new-box:before{content:"\f0394"}.mdi-newspaper:before{content:"\f0395"}.mdi-newspaper-minus:before{content:"\f0f0c"}.mdi-newspaper-plus:before{content:"\f0f0d"}.mdi-newspaper-variant:before{content:"\f1001"}.mdi-newspaper-variant-multiple:before{content:"\f1002"}.mdi-newspaper-variant-multiple-outline:before{content:"\f1003"}.mdi-newspaper-variant-outline:before{content:"\f1004"}.mdi-nfc:before{content:"\f0396"}.mdi-nfc-search-variant:before{content:"\f0e53"}.mdi-nfc-tap:before{content:"\f0397"}.mdi-nfc-variant:before{content:"\f0398"}.mdi-nfc-variant-off:before{content:"\f0e54"}.mdi-ninja:before{content:"\f0774"}.mdi-nintendo-game-boy:before{content:"\f1393"}.mdi-nintendo-switch:before{content:"\f07e1"}.mdi-nintendo-wii:before{content:"\f05ab"}.mdi-nintendo-wiiu:before{content:"\f072d"}.mdi-nix:before{content:"\f1105"}.mdi-nodejs:before{content:"\f0399"}.mdi-noodles:before{content:"\f117e"}.mdi-not-equal:before{content:"\f098d"}.mdi-not-equal-variant:before{content:"\f098e"}.mdi-note:before{content:"\f039a"}.mdi-note-minus:before{content:"\f164f"}.mdi-note-minus-outline:before{content:"\f1650"}.mdi-note-multiple:before{content:"\f06b8"}.mdi-note-multiple-outline:before{content:"\f06b9"}.mdi-note-outline:before{content:"\f039b"}.mdi-note-plus:before{content:"\f039c"}.mdi-note-plus-outline:before{content:"\f039d"}.mdi-note-remove:before{content:"\f1651"}.mdi-note-remove-outline:before{content:"\f1652"}.mdi-note-search:before{content:"\f1653"}.mdi-note-search-outline:before{content:"\f1654"}.mdi-note-text:before{content:"\f039e"}.mdi-note-text-outline:before{content:"\f11d7"}.mdi-notebook:before{content:"\f082e"}.mdi-notebook-check:before{content:"\f14f5"}.mdi-notebook-check-outline:before{content:"\f14f6"}.mdi-notebook-edit:before{content:"\f14e7"}.mdi-notebook-edit-outline:before{content:"\f14e9"}.mdi-notebook-minus:before{content:"\f1610"}.mdi-notebook-minus-outline:before{content:"\f1611"}.mdi-notebook-multiple:before{content:"\f0e55"}.mdi-notebook-outline:before{content:"\f0ebf"}.mdi-notebook-plus:before{content:"\f1612"}.mdi-notebook-plus-outline:before{content:"\f1613"}.mdi-notebook-remove:before{content:"\f1614"}.mdi-notebook-remove-outline:before{content:"\f1615"}.mdi-notification-clear-all:before{content:"\f039f"}.mdi-npm:before{content:"\f06f7"}.mdi-nuke:before{content:"\f06a4"}.mdi-null:before{content:"\f07e2"}.mdi-numeric:before{content:"\f03a0"}.mdi-numeric-0:before{content:"\f0b39"}.mdi-numeric-0-box:before{content:"\f03a1"}.mdi-numeric-0-box-multiple:before{content:"\f0f0e"}.mdi-numeric-0-box-multiple-outline:before{content:"\f03a2"}.mdi-numeric-0-box-outline:before{content:"\f03a3"}.mdi-numeric-0-circle:before{content:"\f0c9e"}.mdi-numeric-0-circle-outline:before{content:"\f0c9f"}.mdi-numeric-1:before{content:"\f0b3a"}.mdi-numeric-1-box:before{content:"\f03a4"}.mdi-numeric-1-box-multiple:before{content:"\f0f0f"}.mdi-numeric-1-box-multiple-outline:before{content:"\f03a5"}.mdi-numeric-1-box-outline:before{content:"\f03a6"}.mdi-numeric-1-circle:before{content:"\f0ca0"}.mdi-numeric-1-circle-outline:before{content:"\f0ca1"}.mdi-numeric-10:before{content:"\f0fe9"}.mdi-numeric-10-box:before{content:"\f0f7d"}.mdi-numeric-10-box-multiple:before{content:"\f0fea"}.mdi-numeric-10-box-multiple-outline:before{content:"\f0feb"}.mdi-numeric-10-box-outline:before{content:"\f0f7e"}.mdi-numeric-10-circle:before{content:"\f0fec"}.mdi-numeric-10-circle-outline:before{content:"\f0fed"}.mdi-numeric-2:before{content:"\f0b3b"}.mdi-numeric-2-box:before{content:"\f03a7"}.mdi-numeric-2-box-multiple:before{content:"\f0f10"}.mdi-numeric-2-box-multiple-outline:before{content:"\f03a8"}.mdi-numeric-2-box-outline:before{content:"\f03a9"}.mdi-numeric-2-circle:before{content:"\f0ca2"}.mdi-numeric-2-circle-outline:before{content:"\f0ca3"}.mdi-numeric-3:before{content:"\f0b3c"}.mdi-numeric-3-box:before{content:"\f03aa"}.mdi-numeric-3-box-multiple:before{content:"\f0f11"}.mdi-numeric-3-box-multiple-outline:before{content:"\f03ab"}.mdi-numeric-3-box-outline:before{content:"\f03ac"}.mdi-numeric-3-circle:before{content:"\f0ca4"}.mdi-numeric-3-circle-outline:before{content:"\f0ca5"}.mdi-numeric-4:before{content:"\f0b3d"}.mdi-numeric-4-box:before{content:"\f03ad"}.mdi-numeric-4-box-multiple:before{content:"\f0f12"}.mdi-numeric-4-box-multiple-outline:before{content:"\f03b2"}.mdi-numeric-4-box-outline:before{content:"\f03ae"}.mdi-numeric-4-circle:before{content:"\f0ca6"}.mdi-numeric-4-circle-outline:before{content:"\f0ca7"}.mdi-numeric-5:before{content:"\f0b3e"}.mdi-numeric-5-box:before{content:"\f03b1"}.mdi-numeric-5-box-multiple:before{content:"\f0f13"}.mdi-numeric-5-box-multiple-outline:before{content:"\f03af"}.mdi-numeric-5-box-outline:before{content:"\f03b0"}.mdi-numeric-5-circle:before{content:"\f0ca8"}.mdi-numeric-5-circle-outline:before{content:"\f0ca9"}.mdi-numeric-6:before{content:"\f0b3f"}.mdi-numeric-6-box:before{content:"\f03b3"}.mdi-numeric-6-box-multiple:before{content:"\f0f14"}.mdi-numeric-6-box-multiple-outline:before{content:"\f03b4"}.mdi-numeric-6-box-outline:before{content:"\f03b5"}.mdi-numeric-6-circle:before{content:"\f0caa"}.mdi-numeric-6-circle-outline:before{content:"\f0cab"}.mdi-numeric-7:before{content:"\f0b40"}.mdi-numeric-7-box:before{content:"\f03b6"}.mdi-numeric-7-box-multiple:before{content:"\f0f15"}.mdi-numeric-7-box-multiple-outline:before{content:"\f03b7"}.mdi-numeric-7-box-outline:before{content:"\f03b8"}.mdi-numeric-7-circle:before{content:"\f0cac"}.mdi-numeric-7-circle-outline:before{content:"\f0cad"}.mdi-numeric-8:before{content:"\f0b41"}.mdi-numeric-8-box:before{content:"\f03b9"}.mdi-numeric-8-box-multiple:before{content:"\f0f16"}.mdi-numeric-8-box-multiple-outline:before{content:"\f03ba"}.mdi-numeric-8-box-outline:before{content:"\f03bb"}.mdi-numeric-8-circle:before{content:"\f0cae"}.mdi-numeric-8-circle-outline:before{content:"\f0caf"}.mdi-numeric-9:before{content:"\f0b42"}.mdi-numeric-9-box:before{content:"\f03bc"}.mdi-numeric-9-box-multiple:before{content:"\f0f17"}.mdi-numeric-9-box-multiple-outline:before{content:"\f03bd"}.mdi-numeric-9-box-outline:before{content:"\f03be"}.mdi-numeric-9-circle:before{content:"\f0cb0"}.mdi-numeric-9-circle-outline:before{content:"\f0cb1"}.mdi-numeric-9-plus:before{content:"\f0fee"}.mdi-numeric-9-plus-box:before{content:"\f03bf"}.mdi-numeric-9-plus-box-multiple:before{content:"\f0f18"}.mdi-numeric-9-plus-box-multiple-outline:before{content:"\f03c0"}.mdi-numeric-9-plus-box-outline:before{content:"\f03c1"}.mdi-numeric-9-plus-circle:before{content:"\f0cb2"}.mdi-numeric-9-plus-circle-outline:before{content:"\f0cb3"}.mdi-numeric-negative-1:before{content:"\f1052"}.mdi-numeric-positive-1:before{content:"\f15cb"}.mdi-nut:before{content:"\f06f8"}.mdi-nutrition:before{content:"\f03c2"}.mdi-nuxt:before{content:"\f1106"}.mdi-oar:before{content:"\f067c"}.mdi-ocarina:before{content:"\f0de0"}.mdi-oci:before{content:"\f12e9"}.mdi-ocr:before{content:"\f113a"}.mdi-octagon:before{content:"\f03c3"}.mdi-octagon-outline:before{content:"\f03c4"}.mdi-octagram:before{content:"\f06f9"}.mdi-octagram-outline:before{content:"\f0775"}.mdi-odnoklassniki:before{content:"\f03c5"}.mdi-offer:before{content:"\f121b"}.mdi-office-building:before{content:"\f0991"}.mdi-office-building-marker:before{content:"\f1520"}.mdi-office-building-marker-outline:before{content:"\f1521"}.mdi-office-building-outline:before{content:"\f151f"}.mdi-oil:before{content:"\f03c7"}.mdi-oil-lamp:before{content:"\f0f19"}.mdi-oil-level:before{content:"\f1053"}.mdi-oil-temperature:before{content:"\f0ff8"}.mdi-omega:before{content:"\f03c9"}.mdi-one-up:before{content:"\f0bad"}.mdi-onepassword:before{content:"\f0881"}.mdi-opacity:before{content:"\f05cc"}.mdi-open-in-app:before{content:"\f03cb"}.mdi-open-in-new:before{content:"\f03cc"}.mdi-open-source-initiative:before{content:"\f0bae"}.mdi-openid:before{content:"\f03cd"}.mdi-opera:before{content:"\f03ce"}.mdi-orbit:before{content:"\f0018"}.mdi-orbit-variant:before{content:"\f15db"}.mdi-order-alphabetical-ascending:before{content:"\f020d"}.mdi-order-alphabetical-descending:before{content:"\f0d07"}.mdi-order-bool-ascending:before{content:"\f02be"}.mdi-order-bool-ascending-variant:before{content:"\f098f"}.mdi-order-bool-descending:before{content:"\f1384"}.mdi-order-bool-descending-variant:before{content:"\f0990"}.mdi-order-numeric-ascending:before{content:"\f0545"}.mdi-order-numeric-descending:before{content:"\f0546"}.mdi-origin:before{content:"\f0b43"}.mdi-ornament:before{content:"\f03cf"}.mdi-ornament-variant:before{content:"\f03d0"}.mdi-outdoor-lamp:before{content:"\f1054"}.mdi-overscan:before{content:"\f1005"}.mdi-owl:before{content:"\f03d2"}.mdi-pac-man:before{content:"\f0baf"}.mdi-package:before{content:"\f03d3"}.mdi-package-down:before{content:"\f03d4"}.mdi-package-up:before{content:"\f03d5"}.mdi-package-variant:before{content:"\f03d6"}.mdi-package-variant-closed:before{content:"\f03d7"}.mdi-page-first:before{content:"\f0600"}.mdi-page-last:before{content:"\f0601"}.mdi-page-layout-body:before{content:"\f06fa"}.mdi-page-layout-footer:before{content:"\f06fb"}.mdi-page-layout-header:before{content:"\f06fc"}.mdi-page-layout-header-footer:before{content:"\f0f7f"}.mdi-page-layout-sidebar-left:before{content:"\f06fd"}.mdi-page-layout-sidebar-right:before{content:"\f06fe"}.mdi-page-next:before{content:"\f0bb0"}.mdi-page-next-outline:before{content:"\f0bb1"}.mdi-page-previous:before{content:"\f0bb2"}.mdi-page-previous-outline:before{content:"\f0bb3"}.mdi-pail:before{content:"\f1417"}.mdi-pail-minus:before{content:"\f1437"}.mdi-pail-minus-outline:before{content:"\f143c"}.mdi-pail-off:before{content:"\f1439"}.mdi-pail-off-outline:before{content:"\f143e"}.mdi-pail-outline:before{content:"\f143a"}.mdi-pail-plus:before{content:"\f1436"}.mdi-pail-plus-outline:before{content:"\f143b"}.mdi-pail-remove:before{content:"\f1438"}.mdi-pail-remove-outline:before{content:"\f143d"}.mdi-palette:before{content:"\f03d8"}.mdi-palette-advanced:before{content:"\f03d9"}.mdi-palette-outline:before{content:"\f0e0c"}.mdi-palette-swatch:before{content:"\f08b5"}.mdi-palette-swatch-outline:before{content:"\f135c"}.mdi-palm-tree:before{content:"\f1055"}.mdi-pan:before{content:"\f0bb4"}.mdi-pan-bottom-left:before{content:"\f0bb5"}.mdi-pan-bottom-right:before{content:"\f0bb6"}.mdi-pan-down:before{content:"\f0bb7"}.mdi-pan-horizontal:before{content:"\f0bb8"}.mdi-pan-left:before{content:"\f0bb9"}.mdi-pan-right:before{content:"\f0bba"}.mdi-pan-top-left:before{content:"\f0bbb"}.mdi-pan-top-right:before{content:"\f0bbc"}.mdi-pan-up:before{content:"\f0bbd"}.mdi-pan-vertical:before{content:"\f0bbe"}.mdi-panda:before{content:"\f03da"}.mdi-pandora:before{content:"\f03db"}.mdi-panorama:before{content:"\f03dc"}.mdi-panorama-fisheye:before{content:"\f03dd"}.mdi-panorama-horizontal:before{content:"\f03de"}.mdi-panorama-vertical:before{content:"\f03df"}.mdi-panorama-wide-angle:before{content:"\f03e0"}.mdi-paper-cut-vertical:before{content:"\f03e1"}.mdi-paper-roll:before{content:"\f1157"}.mdi-paper-roll-outline:before{content:"\f1158"}.mdi-paperclip:before{content:"\f03e2"}.mdi-parachute:before{content:"\f0cb4"}.mdi-parachute-outline:before{content:"\f0cb5"}.mdi-parking:before{content:"\f03e3"}.mdi-party-popper:before{content:"\f1056"}.mdi-passport:before{content:"\f07e3"}.mdi-passport-biometric:before{content:"\f0de1"}.mdi-pasta:before{content:"\f1160"}.mdi-patio-heater:before{content:"\f0f80"}.mdi-patreon:before{content:"\f0882"}.mdi-pause:before{content:"\f03e4"}.mdi-pause-circle:before{content:"\f03e5"}.mdi-pause-circle-outline:before{content:"\f03e6"}.mdi-pause-octagon:before{content:"\f03e7"}.mdi-pause-octagon-outline:before{content:"\f03e8"}.mdi-paw:before{content:"\f03e9"}.mdi-paw-off:before{content:"\f0657"}.mdi-paw-off-outline:before{content:"\f1676"}.mdi-paw-outline:before{content:"\f1675"}.mdi-pdf-box:before{content:"\f0e56"}.mdi-peace:before{content:"\f0884"}.mdi-peanut:before{content:"\f0ffc"}.mdi-peanut-off:before{content:"\f0ffd"}.mdi-peanut-off-outline:before{content:"\f0fff"}.mdi-peanut-outline:before{content:"\f0ffe"}.mdi-pen:before{content:"\f03ea"}.mdi-pen-lock:before{content:"\f0de2"}.mdi-pen-minus:before{content:"\f0de3"}.mdi-pen-off:before{content:"\f0de4"}.mdi-pen-plus:before{content:"\f0de5"}.mdi-pen-remove:before{content:"\f0de6"}.mdi-pencil:before{content:"\f03eb"}.mdi-pencil-box:before{content:"\f03ec"}.mdi-pencil-box-multiple:before{content:"\f1144"}.mdi-pencil-box-multiple-outline:before{content:"\f1145"}.mdi-pencil-box-outline:before{content:"\f03ed"}.mdi-pencil-circle:before{content:"\f06ff"}.mdi-pencil-circle-outline:before{content:"\f0776"}.mdi-pencil-lock:before{content:"\f03ee"}.mdi-pencil-lock-outline:before{content:"\f0de7"}.mdi-pencil-minus:before{content:"\f0de8"}.mdi-pencil-minus-outline:before{content:"\f0de9"}.mdi-pencil-off:before{content:"\f03ef"}.mdi-pencil-off-outline:before{content:"\f0dea"}.mdi-pencil-outline:before{content:"\f0cb6"}.mdi-pencil-plus:before{content:"\f0deb"}.mdi-pencil-plus-outline:before{content:"\f0dec"}.mdi-pencil-remove:before{content:"\f0ded"}.mdi-pencil-remove-outline:before{content:"\f0dee"}.mdi-pencil-ruler:before{content:"\f1353"}.mdi-penguin:before{content:"\f0ec0"}.mdi-pentagon:before{content:"\f0701"}.mdi-pentagon-outline:before{content:"\f0700"}.mdi-pentagram:before{content:"\f1667"}.mdi-percent:before{content:"\f03f0"}.mdi-percent-outline:before{content:"\f1278"}.mdi-periodic-table:before{content:"\f08b6"}.mdi-perspective-less:before{content:"\f0d23"}.mdi-perspective-more:before{content:"\f0d24"}.mdi-pharmacy:before{content:"\f03f1"}.mdi-phone:before{content:"\f03f2"}.mdi-phone-alert:before{content:"\f0f1a"}.mdi-phone-alert-outline:before{content:"\f118e"}.mdi-phone-bluetooth:before{content:"\f03f3"}.mdi-phone-bluetooth-outline:before{content:"\f118f"}.mdi-phone-cancel:before{content:"\f10bc"}.mdi-phone-cancel-outline:before{content:"\f1190"}.mdi-phone-check:before{content:"\f11a9"}.mdi-phone-check-outline:before{content:"\f11aa"}.mdi-phone-classic:before{content:"\f0602"}.mdi-phone-classic-off:before{content:"\f1279"}.mdi-phone-dial:before{content:"\f1559"}.mdi-phone-dial-outline:before{content:"\f155a"}.mdi-phone-forward:before{content:"\f03f4"}.mdi-phone-forward-outline:before{content:"\f1191"}.mdi-phone-hangup:before{content:"\f03f5"}.mdi-phone-hangup-outline:before{content:"\f1192"}.mdi-phone-in-talk:before{content:"\f03f6"}.mdi-phone-in-talk-outline:before{content:"\f1182"}.mdi-phone-incoming:before{content:"\f03f7"}.mdi-phone-incoming-outline:before{content:"\f1193"}.mdi-phone-lock:before{content:"\f03f8"}.mdi-phone-lock-outline:before{content:"\f1194"}.mdi-phone-log:before{content:"\f03f9"}.mdi-phone-log-outline:before{content:"\f1195"}.mdi-phone-message:before{content:"\f1196"}.mdi-phone-message-outline:before{content:"\f1197"}.mdi-phone-minus:before{content:"\f0658"}.mdi-phone-minus-outline:before{content:"\f1198"}.mdi-phone-missed:before{content:"\f03fa"}.mdi-phone-missed-outline:before{content:"\f11a5"}.mdi-phone-off:before{content:"\f0def"}.mdi-phone-off-outline:before{content:"\f11a6"}.mdi-phone-outgoing:before{content:"\f03fb"}.mdi-phone-outgoing-outline:before{content:"\f1199"}.mdi-phone-outline:before{content:"\f0df0"}.mdi-phone-paused:before{content:"\f03fc"}.mdi-phone-paused-outline:before{content:"\f119a"}.mdi-phone-plus:before{content:"\f0659"}.mdi-phone-plus-outline:before{content:"\f119b"}.mdi-phone-remove:before{content:"\f152f"}.mdi-phone-remove-outline:before{content:"\f1530"}.mdi-phone-return:before{content:"\f082f"}.mdi-phone-return-outline:before{content:"\f119c"}.mdi-phone-ring:before{content:"\f11ab"}.mdi-phone-ring-outline:before{content:"\f11ac"}.mdi-phone-rotate-landscape:before{content:"\f0885"}.mdi-phone-rotate-portrait:before{content:"\f0886"}.mdi-phone-settings:before{content:"\f03fd"}.mdi-phone-settings-outline:before{content:"\f119d"}.mdi-phone-voip:before{content:"\f03fe"}.mdi-pi:before{content:"\f03ff"}.mdi-pi-box:before{content:"\f0400"}.mdi-pi-hole:before{content:"\f0df1"}.mdi-piano:before{content:"\f067d"}.mdi-pickaxe:before{content:"\f08b7"}.mdi-picture-in-picture-bottom-right:before{content:"\f0e57"}.mdi-picture-in-picture-bottom-right-outline:before{content:"\f0e58"}.mdi-picture-in-picture-top-right:before{content:"\f0e59"}.mdi-picture-in-picture-top-right-outline:before{content:"\f0e5a"}.mdi-pier:before{content:"\f0887"}.mdi-pier-crane:before{content:"\f0888"}.mdi-pig:before{content:"\f0401"}.mdi-pig-variant:before{content:"\f1006"}.mdi-pig-variant-outline:before{content:"\f1678"}.mdi-piggy-bank:before{content:"\f1007"}.mdi-piggy-bank-outline:before{content:"\f1679"}.mdi-pill:before{content:"\f0402"}.mdi-pillar:before{content:"\f0702"}.mdi-pin:before{content:"\f0403"}.mdi-pin-off:before{content:"\f0404"}.mdi-pin-off-outline:before{content:"\f0930"}.mdi-pin-outline:before{content:"\f0931"}.mdi-pine-tree:before{content:"\f0405"}.mdi-pine-tree-box:before{content:"\f0406"}.mdi-pine-tree-fire:before{content:"\f141a"}.mdi-pinterest:before{content:"\f0407"}.mdi-pinwheel:before{content:"\f0ad5"}.mdi-pinwheel-outline:before{content:"\f0ad6"}.mdi-pipe:before{content:"\f07e5"}.mdi-pipe-disconnected:before{content:"\f07e6"}.mdi-pipe-leak:before{content:"\f0889"}.mdi-pipe-wrench:before{content:"\f1354"}.mdi-pirate:before{content:"\f0a08"}.mdi-pistol:before{content:"\f0703"}.mdi-piston:before{content:"\f088a"}.mdi-pitchfork:before{content:"\f1553"}.mdi-pizza:before{content:"\f0409"}.mdi-play:before{content:"\f040a"}.mdi-play-box:before{content:"\f127a"}.mdi-play-box-multiple:before{content:"\f0d19"}.mdi-play-box-multiple-outline:before{content:"\f13e6"}.mdi-play-box-outline:before{content:"\f040b"}.mdi-play-circle:before{content:"\f040c"}.mdi-play-circle-outline:before{content:"\f040d"}.mdi-play-network:before{content:"\f088b"}.mdi-play-network-outline:before{content:"\f0cb7"}.mdi-play-outline:before{content:"\f0f1b"}.mdi-play-pause:before{content:"\f040e"}.mdi-play-protected-content:before{content:"\f040f"}.mdi-play-speed:before{content:"\f08ff"}.mdi-playlist-check:before{content:"\f05c7"}.mdi-playlist-edit:before{content:"\f0900"}.mdi-playlist-minus:before{content:"\f0410"}.mdi-playlist-music:before{content:"\f0cb8"}.mdi-playlist-music-outline:before{content:"\f0cb9"}.mdi-playlist-play:before{content:"\f0411"}.mdi-playlist-plus:before{content:"\f0412"}.mdi-playlist-remove:before{content:"\f0413"}.mdi-playlist-star:before{content:"\f0df2"}.mdi-plex:before{content:"\f06ba"}.mdi-plus:before{content:"\f0415"}.mdi-plus-box:before{content:"\f0416"}.mdi-plus-box-multiple:before{content:"\f0334"}.mdi-plus-box-multiple-outline:before{content:"\f1143"}.mdi-plus-box-outline:before{content:"\f0704"}.mdi-plus-circle:before{content:"\f0417"}.mdi-plus-circle-multiple:before{content:"\f034c"}.mdi-plus-circle-multiple-outline:before{content:"\f0418"}.mdi-plus-circle-outline:before{content:"\f0419"}.mdi-plus-minus:before{content:"\f0992"}.mdi-plus-minus-box:before{content:"\f0993"}.mdi-plus-minus-variant:before{content:"\f14c9"}.mdi-plus-network:before{content:"\f041a"}.mdi-plus-network-outline:before{content:"\f0cba"}.mdi-plus-one:before{content:"\f041b"}.mdi-plus-outline:before{content:"\f0705"}.mdi-plus-thick:before{content:"\f11ec"}.mdi-podcast:before{content:"\f0994"}.mdi-podium:before{content:"\f0d25"}.mdi-podium-bronze:before{content:"\f0d26"}.mdi-podium-gold:before{content:"\f0d27"}.mdi-podium-silver:before{content:"\f0d28"}.mdi-point-of-sale:before{content:"\f0d92"}.mdi-pokeball:before{content:"\f041d"}.mdi-pokemon-go:before{content:"\f0a09"}.mdi-poker-chip:before{content:"\f0830"}.mdi-polaroid:before{content:"\f041e"}.mdi-police-badge:before{content:"\f1167"}.mdi-police-badge-outline:before{content:"\f1168"}.mdi-poll:before{content:"\f041f"}.mdi-poll-box:before{content:"\f0420"}.mdi-poll-box-outline:before{content:"\f127b"}.mdi-polo:before{content:"\f14c3"}.mdi-polymer:before{content:"\f0421"}.mdi-pool:before{content:"\f0606"}.mdi-popcorn:before{content:"\f0422"}.mdi-post:before{content:"\f1008"}.mdi-post-outline:before{content:"\f1009"}.mdi-postage-stamp:before{content:"\f0cbb"}.mdi-pot:before{content:"\f02e5"}.mdi-pot-mix:before{content:"\f065b"}.mdi-pot-mix-outline:before{content:"\f0677"}.mdi-pot-outline:before{content:"\f02ff"}.mdi-pot-steam:before{content:"\f065a"}.mdi-pot-steam-outline:before{content:"\f0326"}.mdi-pound:before{content:"\f0423"}.mdi-pound-box:before{content:"\f0424"}.mdi-pound-box-outline:before{content:"\f117f"}.mdi-power:before{content:"\f0425"}.mdi-power-cycle:before{content:"\f0901"}.mdi-power-off:before{content:"\f0902"}.mdi-power-on:before{content:"\f0903"}.mdi-power-plug:before{content:"\f06a5"}.mdi-power-plug-off:before{content:"\f06a6"}.mdi-power-plug-off-outline:before{content:"\f1424"}.mdi-power-plug-outline:before{content:"\f1425"}.mdi-power-settings:before{content:"\f0426"}.mdi-power-sleep:before{content:"\f0904"}.mdi-power-socket:before{content:"\f0427"}.mdi-power-socket-au:before{content:"\f0905"}.mdi-power-socket-de:before{content:"\f1107"}.mdi-power-socket-eu:before{content:"\f07e7"}.mdi-power-socket-fr:before{content:"\f1108"}.mdi-power-socket-it:before{content:"\f14ff"}.mdi-power-socket-jp:before{content:"\f1109"}.mdi-power-socket-uk:before{content:"\f07e8"}.mdi-power-socket-us:before{content:"\f07e9"}.mdi-power-standby:before{content:"\f0906"}.mdi-powershell:before{content:"\f0a0a"}.mdi-prescription:before{content:"\f0706"}.mdi-presentation:before{content:"\f0428"}.mdi-presentation-play:before{content:"\f0429"}.mdi-pretzel:before{content:"\f1562"}.mdi-printer:before{content:"\f042a"}.mdi-printer-3d:before{content:"\f042b"}.mdi-printer-3d-nozzle:before{content:"\f0e5b"}.mdi-printer-3d-nozzle-alert:before{content:"\f11c0"}.mdi-printer-3d-nozzle-alert-outline:before{content:"\f11c1"}.mdi-printer-3d-nozzle-outline:before{content:"\f0e5c"}.mdi-printer-alert:before{content:"\f042c"}.mdi-printer-check:before{content:"\f1146"}.mdi-printer-eye:before{content:"\f1458"}.mdi-printer-off:before{content:"\f0e5d"}.mdi-printer-pos:before{content:"\f1057"}.mdi-printer-search:before{content:"\f1457"}.mdi-printer-settings:before{content:"\f0707"}.mdi-printer-wireless:before{content:"\f0a0b"}.mdi-priority-high:before{content:"\f0603"}.mdi-priority-low:before{content:"\f0604"}.mdi-professional-hexagon:before{content:"\f042d"}.mdi-progress-alert:before{content:"\f0cbc"}.mdi-progress-check:before{content:"\f0995"}.mdi-progress-clock:before{content:"\f0996"}.mdi-progress-close:before{content:"\f110a"}.mdi-progress-download:before{content:"\f0997"}.mdi-progress-question:before{content:"\f1522"}.mdi-progress-upload:before{content:"\f0998"}.mdi-progress-wrench:before{content:"\f0cbd"}.mdi-projector:before{content:"\f042e"}.mdi-projector-screen:before{content:"\f042f"}.mdi-propane-tank:before{content:"\f1357"}.mdi-propane-tank-outline:before{content:"\f1358"}.mdi-protocol:before{content:"\f0fd8"}.mdi-publish:before{content:"\f06a7"}.mdi-pulse:before{content:"\f0430"}.mdi-pump:before{content:"\f1402"}.mdi-pumpkin:before{content:"\f0bbf"}.mdi-purse:before{content:"\f0f1c"}.mdi-purse-outline:before{content:"\f0f1d"}.mdi-puzzle:before{content:"\f0431"}.mdi-puzzle-check:before{content:"\f1426"}.mdi-puzzle-check-outline:before{content:"\f1427"}.mdi-puzzle-edit:before{content:"\f14d3"}.mdi-puzzle-edit-outline:before{content:"\f14d9"}.mdi-puzzle-heart:before{content:"\f14d4"}.mdi-puzzle-heart-outline:before{content:"\f14da"}.mdi-puzzle-minus:before{content:"\f14d1"}.mdi-puzzle-minus-outline:before{content:"\f14d7"}.mdi-puzzle-outline:before{content:"\f0a66"}.mdi-puzzle-plus:before{content:"\f14d0"}.mdi-puzzle-plus-outline:before{content:"\f14d6"}.mdi-puzzle-remove:before{content:"\f14d2"}.mdi-puzzle-remove-outline:before{content:"\f14d8"}.mdi-puzzle-star:before{content:"\f14d5"}.mdi-puzzle-star-outline:before{content:"\f14db"}.mdi-qi:before{content:"\f0999"}.mdi-qqchat:before{content:"\f0605"}.mdi-qrcode:before{content:"\f0432"}.mdi-qrcode-edit:before{content:"\f08b8"}.mdi-qrcode-minus:before{content:"\f118c"}.mdi-qrcode-plus:before{content:"\f118b"}.mdi-qrcode-remove:before{content:"\f118d"}.mdi-qrcode-scan:before{content:"\f0433"}.mdi-quadcopter:before{content:"\f0434"}.mdi-quality-high:before{content:"\f0435"}.mdi-quality-low:before{content:"\f0a0c"}.mdi-quality-medium:before{content:"\f0a0d"}.mdi-quora:before{content:"\f0d29"}.mdi-rabbit:before{content:"\f0907"}.mdi-racing-helmet:before{content:"\f0d93"}.mdi-racquetball:before{content:"\f0d94"}.mdi-radar:before{content:"\f0437"}.mdi-radiator:before{content:"\f0438"}.mdi-radiator-disabled:before{content:"\f0ad7"}.mdi-radiator-off:before{content:"\f0ad8"}.mdi-radio:before{content:"\f0439"}.mdi-radio-am:before{content:"\f0cbe"}.mdi-radio-fm:before{content:"\f0cbf"}.mdi-radio-handheld:before{content:"\f043a"}.mdi-radio-off:before{content:"\f121c"}.mdi-radio-tower:before{content:"\f043b"}.mdi-radioactive:before{content:"\f043c"}.mdi-radioactive-off:before{content:"\f0ec1"}.mdi-radiobox-blank:before{content:"\f043d"}.mdi-radiobox-marked:before{content:"\f043e"}.mdi-radiology-box:before{content:"\f14c5"}.mdi-radiology-box-outline:before{content:"\f14c6"}.mdi-radius:before{content:"\f0cc0"}.mdi-radius-outline:before{content:"\f0cc1"}.mdi-railroad-light:before{content:"\f0f1e"}.mdi-rake:before{content:"\f1544"}.mdi-raspberry-pi:before{content:"\f043f"}.mdi-ray-end:before{content:"\f0440"}.mdi-ray-end-arrow:before{content:"\f0441"}.mdi-ray-start:before{content:"\f0442"}.mdi-ray-start-arrow:before{content:"\f0443"}.mdi-ray-start-end:before{content:"\f0444"}.mdi-ray-start-vertex-end:before{content:"\f15d8"}.mdi-ray-vertex:before{content:"\f0445"}.mdi-react:before{content:"\f0708"}.mdi-read:before{content:"\f0447"}.mdi-receipt:before{content:"\f0449"}.mdi-record:before{content:"\f044a"}.mdi-record-circle:before{content:"\f0ec2"}.mdi-record-circle-outline:before{content:"\f0ec3"}.mdi-record-player:before{content:"\f099a"}.mdi-record-rec:before{content:"\f044b"}.mdi-rectangle:before{content:"\f0e5e"}.mdi-rectangle-outline:before{content:"\f0e5f"}.mdi-recycle:before{content:"\f044c"}.mdi-recycle-variant:before{content:"\f139d"}.mdi-reddit:before{content:"\f044d"}.mdi-redhat:before{content:"\f111b"}.mdi-redo:before{content:"\f044e"}.mdi-redo-variant:before{content:"\f044f"}.mdi-reflect-horizontal:before{content:"\f0a0e"}.mdi-reflect-vertical:before{content:"\f0a0f"}.mdi-refresh:before{content:"\f0450"}.mdi-refresh-circle:before{content:"\f1377"}.mdi-regex:before{content:"\f0451"}.mdi-registered-trademark:before{content:"\f0a67"}.mdi-reiterate:before{content:"\f1588"}.mdi-relation-many-to-many:before{content:"\f1496"}.mdi-relation-many-to-one:before{content:"\f1497"}.mdi-relation-many-to-one-or-many:before{content:"\f1498"}.mdi-relation-many-to-only-one:before{content:"\f1499"}.mdi-relation-many-to-zero-or-many:before{content:"\f149a"}.mdi-relation-many-to-zero-or-one:before{content:"\f149b"}.mdi-relation-one-or-many-to-many:before{content:"\f149c"}.mdi-relation-one-or-many-to-one:before{content:"\f149d"}.mdi-relation-one-or-many-to-one-or-many:before{content:"\f149e"}.mdi-relation-one-or-many-to-only-one:before{content:"\f149f"}.mdi-relation-one-or-many-to-zero-or-many:before{content:"\f14a0"}.mdi-relation-one-or-many-to-zero-or-one:before{content:"\f14a1"}.mdi-relation-one-to-many:before{content:"\f14a2"}.mdi-relation-one-to-one:before{content:"\f14a3"}.mdi-relation-one-to-one-or-many:before{content:"\f14a4"}.mdi-relation-one-to-only-one:before{content:"\f14a5"}.mdi-relation-one-to-zero-or-many:before{content:"\f14a6"}.mdi-relation-one-to-zero-or-one:before{content:"\f14a7"}.mdi-relation-only-one-to-many:before{content:"\f14a8"}.mdi-relation-only-one-to-one:before{content:"\f14a9"}.mdi-relation-only-one-to-one-or-many:before{content:"\f14aa"}.mdi-relation-only-one-to-only-one:before{content:"\f14ab"}.mdi-relation-only-one-to-zero-or-many:before{content:"\f14ac"}.mdi-relation-only-one-to-zero-or-one:before{content:"\f14ad"}.mdi-relation-zero-or-many-to-many:before{content:"\f14ae"}.mdi-relation-zero-or-many-to-one:before{content:"\f14af"}.mdi-relation-zero-or-many-to-one-or-many:before{content:"\f14b0"}.mdi-relation-zero-or-many-to-only-one:before{content:"\f14b1"}.mdi-relation-zero-or-many-to-zero-or-many:before{content:"\f14b2"}.mdi-relation-zero-or-many-to-zero-or-one:before{content:"\f14b3"}.mdi-relation-zero-or-one-to-many:before{content:"\f14b4"}.mdi-relation-zero-or-one-to-one:before{content:"\f14b5"}.mdi-relation-zero-or-one-to-one-or-many:before{content:"\f14b6"}.mdi-relation-zero-or-one-to-only-one:before{content:"\f14b7"}.mdi-relation-zero-or-one-to-zero-or-many:before{content:"\f14b8"}.mdi-relation-zero-or-one-to-zero-or-one:before{content:"\f14b9"}.mdi-relative-scale:before{content:"\f0452"}.mdi-reload:before{content:"\f0453"}.mdi-reload-alert:before{content:"\f110b"}.mdi-reminder:before{content:"\f088c"}.mdi-remote:before{content:"\f0454"}.mdi-remote-desktop:before{content:"\f08b9"}.mdi-remote-off:before{content:"\f0ec4"}.mdi-remote-tv:before{content:"\f0ec5"}.mdi-remote-tv-off:before{content:"\f0ec6"}.mdi-rename-box:before{content:"\f0455"}.mdi-reorder-horizontal:before{content:"\f0688"}.mdi-reorder-vertical:before{content:"\f0689"}.mdi-repeat:before{content:"\f0456"}.mdi-repeat-off:before{content:"\f0457"}.mdi-repeat-once:before{content:"\f0458"}.mdi-replay:before{content:"\f0459"}.mdi-reply:before{content:"\f045a"}.mdi-reply-all:before{content:"\f045b"}.mdi-reply-all-outline:before{content:"\f0f1f"}.mdi-reply-circle:before{content:"\f11ae"}.mdi-reply-outline:before{content:"\f0f20"}.mdi-reproduction:before{content:"\f045c"}.mdi-resistor:before{content:"\f0b44"}.mdi-resistor-nodes:before{content:"\f0b45"}.mdi-resize:before{content:"\f0a68"}.mdi-resize-bottom-right:before{content:"\f045d"}.mdi-responsive:before{content:"\f045e"}.mdi-restart:before{content:"\f0709"}.mdi-restart-alert:before{content:"\f110c"}.mdi-restart-off:before{content:"\f0d95"}.mdi-restore:before{content:"\f099b"}.mdi-restore-alert:before{content:"\f110d"}.mdi-rewind:before{content:"\f045f"}.mdi-rewind-10:before{content:"\f0d2a"}.mdi-rewind-30:before{content:"\f0d96"}.mdi-rewind-5:before{content:"\f11f9"}.mdi-rewind-60:before{content:"\f160c"}.mdi-rewind-outline:before{content:"\f070a"}.mdi-rhombus:before{content:"\f070b"}.mdi-rhombus-medium:before{content:"\f0a10"}.mdi-rhombus-medium-outline:before{content:"\f14dc"}.mdi-rhombus-outline:before{content:"\f070c"}.mdi-rhombus-split:before{content:"\f0a11"}.mdi-rhombus-split-outline:before{content:"\f14dd"}.mdi-ribbon:before{content:"\f0460"}.mdi-rice:before{content:"\f07ea"}.mdi-rickshaw:before{content:"\f15bb"}.mdi-rickshaw-electric:before{content:"\f15bc"}.mdi-ring:before{content:"\f07eb"}.mdi-rivet:before{content:"\f0e60"}.mdi-road:before{content:"\f0461"}.mdi-road-variant:before{content:"\f0462"}.mdi-robber:before{content:"\f1058"}.mdi-robot:before{content:"\f06a9"}.mdi-robot-angry:before{content:"\f169d"}.mdi-robot-angry-outline:before{content:"\f169e"}.mdi-robot-confused:before{content:"\f169f"}.mdi-robot-confused-outline:before{content:"\f16a0"}.mdi-robot-dead:before{content:"\f16a1"}.mdi-robot-dead-outline:before{content:"\f16a2"}.mdi-robot-excited:before{content:"\f16a3"}.mdi-robot-excited-outline:before{content:"\f16a4"}.mdi-robot-industrial:before{content:"\f0b46"}.mdi-robot-love:before{content:"\f16a5"}.mdi-robot-love-outline:before{content:"\f16a6"}.mdi-robot-mower:before{content:"\f11f7"}.mdi-robot-mower-outline:before{content:"\f11f3"}.mdi-robot-off:before{content:"\f16a7"}.mdi-robot-off-outline:before{content:"\f167b"}.mdi-robot-outline:before{content:"\f167a"}.mdi-robot-vacuum:before{content:"\f070d"}.mdi-robot-vacuum-variant:before{content:"\f0908"}.mdi-rocket:before{content:"\f0463"}.mdi-rocket-launch:before{content:"\f14de"}.mdi-rocket-launch-outline:before{content:"\f14df"}.mdi-rocket-outline:before{content:"\f13af"}.mdi-rodent:before{content:"\f1327"}.mdi-roller-skate:before{content:"\f0d2b"}.mdi-roller-skate-off:before{content:"\f0145"}.mdi-rollerblade:before{content:"\f0d2c"}.mdi-rollerblade-off:before{content:"\f002e"}.mdi-rollupjs:before{content:"\f0bc0"}.mdi-roman-numeral-1:before{content:"\f1088"}.mdi-roman-numeral-10:before{content:"\f1091"}.mdi-roman-numeral-2:before{content:"\f1089"}.mdi-roman-numeral-3:before{content:"\f108a"}.mdi-roman-numeral-4:before{content:"\f108b"}.mdi-roman-numeral-5:before{content:"\f108c"}.mdi-roman-numeral-6:before{content:"\f108d"}.mdi-roman-numeral-7:before{content:"\f108e"}.mdi-roman-numeral-8:before{content:"\f108f"}.mdi-roman-numeral-9:before{content:"\f1090"}.mdi-room-service:before{content:"\f088d"}.mdi-room-service-outline:before{content:"\f0d97"}.mdi-rotate-3d:before{content:"\f0ec7"}.mdi-rotate-3d-variant:before{content:"\f0464"}.mdi-rotate-left:before{content:"\f0465"}.mdi-rotate-left-variant:before{content:"\f0466"}.mdi-rotate-orbit:before{content:"\f0d98"}.mdi-rotate-right:before{content:"\f0467"}.mdi-rotate-right-variant:before{content:"\f0468"}.mdi-rounded-corner:before{content:"\f0607"}.mdi-router:before{content:"\f11e2"}.mdi-router-network:before{content:"\f1087"}.mdi-router-wireless:before{content:"\f0469"}.mdi-router-wireless-off:before{content:"\f15a3"}.mdi-router-wireless-settings:before{content:"\f0a69"}.mdi-routes:before{content:"\f046a"}.mdi-routes-clock:before{content:"\f1059"}.mdi-rowing:before{content:"\f0608"}.mdi-rss:before{content:"\f046b"}.mdi-rss-box:before{content:"\f046c"}.mdi-rss-off:before{content:"\f0f21"}.mdi-rug:before{content:"\f1475"}.mdi-rugby:before{content:"\f0d99"}.mdi-ruler:before{content:"\f046d"}.mdi-ruler-square:before{content:"\f0cc2"}.mdi-ruler-square-compass:before{content:"\f0ebe"}.mdi-run:before{content:"\f070e"}.mdi-run-fast:before{content:"\f046e"}.mdi-rv-truck:before{content:"\f11d4"}.mdi-sack:before{content:"\f0d2e"}.mdi-sack-percent:before{content:"\f0d2f"}.mdi-safe:before{content:"\f0a6a"}.mdi-safe-square:before{content:"\f127c"}.mdi-safe-square-outline:before{content:"\f127d"}.mdi-safety-goggles:before{content:"\f0d30"}.mdi-sail-boat:before{content:"\f0ec8"}.mdi-sale:before{content:"\f046f"}.mdi-salesforce:before{content:"\f088e"}.mdi-sass:before{content:"\f07ec"}.mdi-satellite:before{content:"\f0470"}.mdi-satellite-uplink:before{content:"\f0909"}.mdi-satellite-variant:before{content:"\f0471"}.mdi-sausage:before{content:"\f08ba"}.mdi-saw-blade:before{content:"\f0e61"}.mdi-sawtooth-wave:before{content:"\f147a"}.mdi-saxophone:before{content:"\f0609"}.mdi-scale:before{content:"\f0472"}.mdi-scale-balance:before{content:"\f05d1"}.mdi-scale-bathroom:before{content:"\f0473"}.mdi-scale-off:before{content:"\f105a"}.mdi-scan-helper:before{content:"\f13d8"}.mdi-scanner:before{content:"\f06ab"}.mdi-scanner-off:before{content:"\f090a"}.mdi-scatter-plot:before{content:"\f0ec9"}.mdi-scatter-plot-outline:before{content:"\f0eca"}.mdi-school:before{content:"\f0474"}.mdi-school-outline:before{content:"\f1180"}.mdi-scissors-cutting:before{content:"\f0a6b"}.mdi-scooter:before{content:"\f15bd"}.mdi-scooter-electric:before{content:"\f15be"}.mdi-scoreboard:before{content:"\f127e"}.mdi-scoreboard-outline:before{content:"\f127f"}.mdi-screen-rotation:before{content:"\f0475"}.mdi-screen-rotation-lock:before{content:"\f0478"}.mdi-screw-flat-top:before{content:"\f0df3"}.mdi-screw-lag:before{content:"\f0df4"}.mdi-screw-machine-flat-top:before{content:"\f0df5"}.mdi-screw-machine-round-top:before{content:"\f0df6"}.mdi-screw-round-top:before{content:"\f0df7"}.mdi-screwdriver:before{content:"\f0476"}.mdi-script:before{content:"\f0bc1"}.mdi-script-outline:before{content:"\f0477"}.mdi-script-text:before{content:"\f0bc2"}.mdi-script-text-outline:before{content:"\f0bc3"}.mdi-sd:before{content:"\f0479"}.mdi-seal:before{content:"\f047a"}.mdi-seal-variant:before{content:"\f0fd9"}.mdi-search-web:before{content:"\f070f"}.mdi-seat:before{content:"\f0cc3"}.mdi-seat-flat:before{content:"\f047b"}.mdi-seat-flat-angled:before{content:"\f047c"}.mdi-seat-individual-suite:before{content:"\f047d"}.mdi-seat-legroom-extra:before{content:"\f047e"}.mdi-seat-legroom-normal:before{content:"\f047f"}.mdi-seat-legroom-reduced:before{content:"\f0480"}.mdi-seat-outline:before{content:"\f0cc4"}.mdi-seat-passenger:before{content:"\f1249"}.mdi-seat-recline-extra:before{content:"\f0481"}.mdi-seat-recline-normal:before{content:"\f0482"}.mdi-seatbelt:before{content:"\f0cc5"}.mdi-security:before{content:"\f0483"}.mdi-security-network:before{content:"\f0484"}.mdi-seed:before{content:"\f0e62"}.mdi-seed-off:before{content:"\f13fd"}.mdi-seed-off-outline:before{content:"\f13fe"}.mdi-seed-outline:before{content:"\f0e63"}.mdi-seesaw:before{content:"\f15a4"}.mdi-segment:before{content:"\f0ecb"}.mdi-select:before{content:"\f0485"}.mdi-select-all:before{content:"\f0486"}.mdi-select-color:before{content:"\f0d31"}.mdi-select-compare:before{content:"\f0ad9"}.mdi-select-drag:before{content:"\f0a6c"}.mdi-select-group:before{content:"\f0f82"}.mdi-select-inverse:before{content:"\f0487"}.mdi-select-marker:before{content:"\f1280"}.mdi-select-multiple:before{content:"\f1281"}.mdi-select-multiple-marker:before{content:"\f1282"}.mdi-select-off:before{content:"\f0488"}.mdi-select-place:before{content:"\f0fda"}.mdi-select-search:before{content:"\f1204"}.mdi-selection:before{content:"\f0489"}.mdi-selection-drag:before{content:"\f0a6d"}.mdi-selection-ellipse:before{content:"\f0d32"}.mdi-selection-ellipse-arrow-inside:before{content:"\f0f22"}.mdi-selection-marker:before{content:"\f1283"}.mdi-selection-multiple:before{content:"\f1285"}.mdi-selection-multiple-marker:before{content:"\f1284"}.mdi-selection-off:before{content:"\f0777"}.mdi-selection-search:before{content:"\f1205"}.mdi-semantic-web:before{content:"\f1316"}.mdi-send:before{content:"\f048a"}.mdi-send-check:before{content:"\f1161"}.mdi-send-check-outline:before{content:"\f1162"}.mdi-send-circle:before{content:"\f0df8"}.mdi-send-circle-outline:before{content:"\f0df9"}.mdi-send-clock:before{content:"\f1163"}.mdi-send-clock-outline:before{content:"\f1164"}.mdi-send-lock:before{content:"\f07ed"}.mdi-send-lock-outline:before{content:"\f1166"}.mdi-send-outline:before{content:"\f1165"}.mdi-serial-port:before{content:"\f065c"}.mdi-server:before{content:"\f048b"}.mdi-server-minus:before{content:"\f048c"}.mdi-server-network:before{content:"\f048d"}.mdi-server-network-off:before{content:"\f048e"}.mdi-server-off:before{content:"\f048f"}.mdi-server-plus:before{content:"\f0490"}.mdi-server-remove:before{content:"\f0491"}.mdi-server-security:before{content:"\f0492"}.mdi-set-all:before{content:"\f0778"}.mdi-set-center:before{content:"\f0779"}.mdi-set-center-right:before{content:"\f077a"}.mdi-set-left:before{content:"\f077b"}.mdi-set-left-center:before{content:"\f077c"}.mdi-set-left-right:before{content:"\f077d"}.mdi-set-merge:before{content:"\f14e0"}.mdi-set-none:before{content:"\f077e"}.mdi-set-right:before{content:"\f077f"}.mdi-set-split:before{content:"\f14e1"}.mdi-set-square:before{content:"\f145d"}.mdi-set-top-box:before{content:"\f099f"}.mdi-settings-helper:before{content:"\f0a6e"}.mdi-shaker:before{content:"\f110e"}.mdi-shaker-outline:before{content:"\f110f"}.mdi-shape:before{content:"\f0831"}.mdi-shape-circle-plus:before{content:"\f065d"}.mdi-shape-outline:before{content:"\f0832"}.mdi-shape-oval-plus:before{content:"\f11fa"}.mdi-shape-plus:before{content:"\f0495"}.mdi-shape-polygon-plus:before{content:"\f065e"}.mdi-shape-rectangle-plus:before{content:"\f065f"}.mdi-shape-square-plus:before{content:"\f0660"}.mdi-shape-square-rounded-plus:before{content:"\f14fa"}.mdi-share:before{content:"\f0496"}.mdi-share-all:before{content:"\f11f4"}.mdi-share-all-outline:before{content:"\f11f5"}.mdi-share-circle:before{content:"\f11ad"}.mdi-share-off:before{content:"\f0f23"}.mdi-share-off-outline:before{content:"\f0f24"}.mdi-share-outline:before{content:"\f0932"}.mdi-share-variant:before{content:"\f0497"}.mdi-share-variant-outline:before{content:"\f1514"}.mdi-shark-fin:before{content:"\f1673"}.mdi-shark-fin-outline:before{content:"\f1674"}.mdi-sheep:before{content:"\f0cc6"}.mdi-shield:before{content:"\f0498"}.mdi-shield-account:before{content:"\f088f"}.mdi-shield-account-outline:before{content:"\f0a12"}.mdi-shield-account-variant:before{content:"\f15a7"}.mdi-shield-account-variant-outline:before{content:"\f15a8"}.mdi-shield-airplane:before{content:"\f06bb"}.mdi-shield-airplane-outline:before{content:"\f0cc7"}.mdi-shield-alert:before{content:"\f0ecc"}.mdi-shield-alert-outline:before{content:"\f0ecd"}.mdi-shield-bug:before{content:"\f13da"}.mdi-shield-bug-outline:before{content:"\f13db"}.mdi-shield-car:before{content:"\f0f83"}.mdi-shield-check:before{content:"\f0565"}.mdi-shield-check-outline:before{content:"\f0cc8"}.mdi-shield-cross:before{content:"\f0cc9"}.mdi-shield-cross-outline:before{content:"\f0cca"}.mdi-shield-edit:before{content:"\f11a0"}.mdi-shield-edit-outline:before{content:"\f11a1"}.mdi-shield-half:before{content:"\f1360"}.mdi-shield-half-full:before{content:"\f0780"}.mdi-shield-home:before{content:"\f068a"}.mdi-shield-home-outline:before{content:"\f0ccb"}.mdi-shield-key:before{content:"\f0bc4"}.mdi-shield-key-outline:before{content:"\f0bc5"}.mdi-shield-link-variant:before{content:"\f0d33"}.mdi-shield-link-variant-outline:before{content:"\f0d34"}.mdi-shield-lock:before{content:"\f099d"}.mdi-shield-lock-outline:before{content:"\f0ccc"}.mdi-shield-off:before{content:"\f099e"}.mdi-shield-off-outline:before{content:"\f099c"}.mdi-shield-outline:before{content:"\f0499"}.mdi-shield-plus:before{content:"\f0ada"}.mdi-shield-plus-outline:before{content:"\f0adb"}.mdi-shield-refresh:before{content:"\f00aa"}.mdi-shield-refresh-outline:before{content:"\f01e0"}.mdi-shield-remove:before{content:"\f0adc"}.mdi-shield-remove-outline:before{content:"\f0add"}.mdi-shield-search:before{content:"\f0d9a"}.mdi-shield-star:before{content:"\f113b"}.mdi-shield-star-outline:before{content:"\f113c"}.mdi-shield-sun:before{content:"\f105d"}.mdi-shield-sun-outline:before{content:"\f105e"}.mdi-shield-sync:before{content:"\f11a2"}.mdi-shield-sync-outline:before{content:"\f11a3"}.mdi-ship-wheel:before{content:"\f0833"}.mdi-shoe-ballet:before{content:"\f15ca"}.mdi-shoe-cleat:before{content:"\f15c7"}.mdi-shoe-formal:before{content:"\f0b47"}.mdi-shoe-heel:before{content:"\f0b48"}.mdi-shoe-print:before{content:"\f0dfa"}.mdi-shoe-sneaker:before{content:"\f15c8"}.mdi-shopping:before{content:"\f049a"}.mdi-shopping-music:before{content:"\f049b"}.mdi-shopping-outline:before{content:"\f11d5"}.mdi-shopping-search:before{content:"\f0f84"}.mdi-shore:before{content:"\f14f9"}.mdi-shovel:before{content:"\f0710"}.mdi-shovel-off:before{content:"\f0711"}.mdi-shower:before{content:"\f09a0"}.mdi-shower-head:before{content:"\f09a1"}.mdi-shredder:before{content:"\f049c"}.mdi-shuffle:before{content:"\f049d"}.mdi-shuffle-disabled:before{content:"\f049e"}.mdi-shuffle-variant:before{content:"\f049f"}.mdi-shuriken:before{content:"\f137f"}.mdi-sigma:before{content:"\f04a0"}.mdi-sigma-lower:before{content:"\f062b"}.mdi-sign-caution:before{content:"\f04a1"}.mdi-sign-direction:before{content:"\f0781"}.mdi-sign-direction-minus:before{content:"\f1000"}.mdi-sign-direction-plus:before{content:"\f0fdc"}.mdi-sign-direction-remove:before{content:"\f0fdd"}.mdi-sign-pole:before{content:"\f14f8"}.mdi-sign-real-estate:before{content:"\f1118"}.mdi-sign-text:before{content:"\f0782"}.mdi-signal:before{content:"\f04a2"}.mdi-signal-2g:before{content:"\f0712"}.mdi-signal-3g:before{content:"\f0713"}.mdi-signal-4g:before{content:"\f0714"}.mdi-signal-5g:before{content:"\f0a6f"}.mdi-signal-cellular-1:before{content:"\f08bc"}.mdi-signal-cellular-2:before{content:"\f08bd"}.mdi-signal-cellular-3:before{content:"\f08be"}.mdi-signal-cellular-outline:before{content:"\f08bf"}.mdi-signal-distance-variant:before{content:"\f0e64"}.mdi-signal-hspa:before{content:"\f0715"}.mdi-signal-hspa-plus:before{content:"\f0716"}.mdi-signal-off:before{content:"\f0783"}.mdi-signal-variant:before{content:"\f060a"}.mdi-signature:before{content:"\f0dfb"}.mdi-signature-freehand:before{content:"\f0dfc"}.mdi-signature-image:before{content:"\f0dfd"}.mdi-signature-text:before{content:"\f0dfe"}.mdi-silo:before{content:"\f0b49"}.mdi-silverware:before{content:"\f04a3"}.mdi-silverware-clean:before{content:"\f0fde"}.mdi-silverware-fork:before{content:"\f04a4"}.mdi-silverware-fork-knife:before{content:"\f0a70"}.mdi-silverware-spoon:before{content:"\f04a5"}.mdi-silverware-variant:before{content:"\f04a6"}.mdi-sim:before{content:"\f04a7"}.mdi-sim-alert:before{content:"\f04a8"}.mdi-sim-alert-outline:before{content:"\f15d3"}.mdi-sim-off:before{content:"\f04a9"}.mdi-sim-off-outline:before{content:"\f15d4"}.mdi-sim-outline:before{content:"\f15d5"}.mdi-simple-icons:before{content:"\f131d"}.mdi-sina-weibo:before{content:"\f0adf"}.mdi-sine-wave:before{content:"\f095b"}.mdi-sitemap:before{content:"\f04aa"}.mdi-size-l:before{content:"\f13a6"}.mdi-size-m:before{content:"\f13a5"}.mdi-size-s:before{content:"\f13a4"}.mdi-size-xl:before{content:"\f13a7"}.mdi-size-xs:before{content:"\f13a3"}.mdi-size-xxl:before{content:"\f13a8"}.mdi-size-xxs:before{content:"\f13a2"}.mdi-size-xxxl:before{content:"\f13a9"}.mdi-skate:before{content:"\f0d35"}.mdi-skateboard:before{content:"\f14c2"}.mdi-skew-less:before{content:"\f0d36"}.mdi-skew-more:before{content:"\f0d37"}.mdi-ski:before{content:"\f1304"}.mdi-ski-cross-country:before{content:"\f1305"}.mdi-ski-water:before{content:"\f1306"}.mdi-skip-backward:before{content:"\f04ab"}.mdi-skip-backward-outline:before{content:"\f0f25"}.mdi-skip-forward:before{content:"\f04ac"}.mdi-skip-forward-outline:before{content:"\f0f26"}.mdi-skip-next:before{content:"\f04ad"}.mdi-skip-next-circle:before{content:"\f0661"}.mdi-skip-next-circle-outline:before{content:"\f0662"}.mdi-skip-next-outline:before{content:"\f0f27"}.mdi-skip-previous:before{content:"\f04ae"}.mdi-skip-previous-circle:before{content:"\f0663"}.mdi-skip-previous-circle-outline:before{content:"\f0664"}.mdi-skip-previous-outline:before{content:"\f0f28"}.mdi-skull:before{content:"\f068c"}.mdi-skull-crossbones:before{content:"\f0bc6"}.mdi-skull-crossbones-outline:before{content:"\f0bc7"}.mdi-skull-outline:before{content:"\f0bc8"}.mdi-skull-scan:before{content:"\f14c7"}.mdi-skull-scan-outline:before{content:"\f14c8"}.mdi-skype:before{content:"\f04af"}.mdi-skype-business:before{content:"\f04b0"}.mdi-slack:before{content:"\f04b1"}.mdi-slash-forward:before{content:"\f0fdf"}.mdi-slash-forward-box:before{content:"\f0fe0"}.mdi-sleep:before{content:"\f04b2"}.mdi-sleep-off:before{content:"\f04b3"}.mdi-slide:before{content:"\f15a5"}.mdi-slope-downhill:before{content:"\f0dff"}.mdi-slope-uphill:before{content:"\f0e00"}.mdi-slot-machine:before{content:"\f1114"}.mdi-slot-machine-outline:before{content:"\f1115"}.mdi-smart-card:before{content:"\f10bd"}.mdi-smart-card-outline:before{content:"\f10be"}.mdi-smart-card-reader:before{content:"\f10bf"}.mdi-smart-card-reader-outline:before{content:"\f10c0"}.mdi-smog:before{content:"\f0a71"}.mdi-smoke-detector:before{content:"\f0392"}.mdi-smoking:before{content:"\f04b4"}.mdi-smoking-off:before{content:"\f04b5"}.mdi-smoking-pipe:before{content:"\f140d"}.mdi-smoking-pipe-off:before{content:"\f1428"}.mdi-snail:before{content:"\f1677"}.mdi-snake:before{content:"\f150e"}.mdi-snapchat:before{content:"\f04b6"}.mdi-snowboard:before{content:"\f1307"}.mdi-snowflake:before{content:"\f0717"}.mdi-snowflake-alert:before{content:"\f0f29"}.mdi-snowflake-melt:before{content:"\f12cb"}.mdi-snowflake-off:before{content:"\f14e3"}.mdi-snowflake-variant:before{content:"\f0f2a"}.mdi-snowman:before{content:"\f04b7"}.mdi-soccer:before{content:"\f04b8"}.mdi-soccer-field:before{content:"\f0834"}.mdi-social-distance-2-meters:before{content:"\f1579"}.mdi-social-distance-6-feet:before{content:"\f157a"}.mdi-sofa:before{content:"\f04b9"}.mdi-sofa-outline:before{content:"\f156d"}.mdi-sofa-single:before{content:"\f156e"}.mdi-sofa-single-outline:before{content:"\f156f"}.mdi-solar-panel:before{content:"\f0d9b"}.mdi-solar-panel-large:before{content:"\f0d9c"}.mdi-solar-power:before{content:"\f0a72"}.mdi-soldering-iron:before{content:"\f1092"}.mdi-solid:before{content:"\f068d"}.mdi-sony-playstation:before{content:"\f0414"}.mdi-sort:before{content:"\f04ba"}.mdi-sort-alphabetical-ascending:before{content:"\f05bd"}.mdi-sort-alphabetical-ascending-variant:before{content:"\f1148"}.mdi-sort-alphabetical-descending:before{content:"\f05bf"}.mdi-sort-alphabetical-descending-variant:before{content:"\f1149"}.mdi-sort-alphabetical-variant:before{content:"\f04bb"}.mdi-sort-ascending:before{content:"\f04bc"}.mdi-sort-bool-ascending:before{content:"\f1385"}.mdi-sort-bool-ascending-variant:before{content:"\f1386"}.mdi-sort-bool-descending:before{content:"\f1387"}.mdi-sort-bool-descending-variant:before{content:"\f1388"}.mdi-sort-calendar-ascending:before{content:"\f1547"}.mdi-sort-calendar-descending:before{content:"\f1548"}.mdi-sort-clock-ascending:before{content:"\f1549"}.mdi-sort-clock-ascending-outline:before{content:"\f154a"}.mdi-sort-clock-descending:before{content:"\f154b"}.mdi-sort-clock-descending-outline:before{content:"\f154c"}.mdi-sort-descending:before{content:"\f04bd"}.mdi-sort-numeric-ascending:before{content:"\f1389"}.mdi-sort-numeric-ascending-variant:before{content:"\f090d"}.mdi-sort-numeric-descending:before{content:"\f138a"}.mdi-sort-numeric-descending-variant:before{content:"\f0ad2"}.mdi-sort-numeric-variant:before{content:"\f04be"}.mdi-sort-reverse-variant:before{content:"\f033c"}.mdi-sort-variant:before{content:"\f04bf"}.mdi-sort-variant-lock:before{content:"\f0ccd"}.mdi-sort-variant-lock-open:before{content:"\f0cce"}.mdi-sort-variant-remove:before{content:"\f1147"}.mdi-soundcloud:before{content:"\f04c0"}.mdi-source-branch:before{content:"\f062c"}.mdi-source-branch-check:before{content:"\f14cf"}.mdi-source-branch-minus:before{content:"\f14cb"}.mdi-source-branch-plus:before{content:"\f14ca"}.mdi-source-branch-refresh:before{content:"\f14cd"}.mdi-source-branch-remove:before{content:"\f14cc"}.mdi-source-branch-sync:before{content:"\f14ce"}.mdi-source-commit:before{content:"\f0718"}.mdi-source-commit-end:before{content:"\f0719"}.mdi-source-commit-end-local:before{content:"\f071a"}.mdi-source-commit-local:before{content:"\f071b"}.mdi-source-commit-next-local:before{content:"\f071c"}.mdi-source-commit-start:before{content:"\f071d"}.mdi-source-commit-start-next-local:before{content:"\f071e"}.mdi-source-fork:before{content:"\f04c1"}.mdi-source-merge:before{content:"\f062d"}.mdi-source-pull:before{content:"\f04c2"}.mdi-source-repository:before{content:"\f0ccf"}.mdi-source-repository-multiple:before{content:"\f0cd0"}.mdi-soy-sauce:before{content:"\f07ee"}.mdi-soy-sauce-off:before{content:"\f13fc"}.mdi-spa:before{content:"\f0cd1"}.mdi-spa-outline:before{content:"\f0cd2"}.mdi-space-invaders:before{content:"\f0bc9"}.mdi-space-station:before{content:"\f1383"}.mdi-spade:before{content:"\f0e65"}.mdi-sparkles:before{content:"\f1545"}.mdi-speaker:before{content:"\f04c3"}.mdi-speaker-bluetooth:before{content:"\f09a2"}.mdi-speaker-multiple:before{content:"\f0d38"}.mdi-speaker-off:before{content:"\f04c4"}.mdi-speaker-wireless:before{content:"\f071f"}.mdi-speedometer:before{content:"\f04c5"}.mdi-speedometer-medium:before{content:"\f0f85"}.mdi-speedometer-slow:before{content:"\f0f86"}.mdi-spellcheck:before{content:"\f04c6"}.mdi-spider:before{content:"\f11ea"}.mdi-spider-thread:before{content:"\f11eb"}.mdi-spider-web:before{content:"\f0bca"}.mdi-spirit-level:before{content:"\f14f1"}.mdi-spoon-sugar:before{content:"\f1429"}.mdi-spotify:before{content:"\f04c7"}.mdi-spotlight:before{content:"\f04c8"}.mdi-spotlight-beam:before{content:"\f04c9"}.mdi-spray:before{content:"\f0665"}.mdi-spray-bottle:before{content:"\f0ae0"}.mdi-sprinkler:before{content:"\f105f"}.mdi-sprinkler-variant:before{content:"\f1060"}.mdi-sprout:before{content:"\f0e66"}.mdi-sprout-outline:before{content:"\f0e67"}.mdi-square:before{content:"\f0764"}.mdi-square-circle:before{content:"\f1500"}.mdi-square-edit-outline:before{content:"\f090c"}.mdi-square-medium:before{content:"\f0a13"}.mdi-square-medium-outline:before{content:"\f0a14"}.mdi-square-off:before{content:"\f12ee"}.mdi-square-off-outline:before{content:"\f12ef"}.mdi-square-outline:before{content:"\f0763"}.mdi-square-root:before{content:"\f0784"}.mdi-square-root-box:before{content:"\f09a3"}.mdi-square-rounded:before{content:"\f14fb"}.mdi-square-rounded-outline:before{content:"\f14fc"}.mdi-square-small:before{content:"\f0a15"}.mdi-square-wave:before{content:"\f147b"}.mdi-squeegee:before{content:"\f0ae1"}.mdi-ssh:before{content:"\f08c0"}.mdi-stack-exchange:before{content:"\f060b"}.mdi-stack-overflow:before{content:"\f04cc"}.mdi-stackpath:before{content:"\f0359"}.mdi-stadium:before{content:"\f0ff9"}.mdi-stadium-variant:before{content:"\f0720"}.mdi-stairs:before{content:"\f04cd"}.mdi-stairs-box:before{content:"\f139e"}.mdi-stairs-down:before{content:"\f12be"}.mdi-stairs-up:before{content:"\f12bd"}.mdi-stamper:before{content:"\f0d39"}.mdi-standard-definition:before{content:"\f07ef"}.mdi-star:before{content:"\f04ce"}.mdi-star-box:before{content:"\f0a73"}.mdi-star-box-multiple:before{content:"\f1286"}.mdi-star-box-multiple-outline:before{content:"\f1287"}.mdi-star-box-outline:before{content:"\f0a74"}.mdi-star-check:before{content:"\f1566"}.mdi-star-check-outline:before{content:"\f156a"}.mdi-star-circle:before{content:"\f04cf"}.mdi-star-circle-outline:before{content:"\f09a4"}.mdi-star-cog:before{content:"\f1668"}.mdi-star-cog-outline:before{content:"\f1669"}.mdi-star-face:before{content:"\f09a5"}.mdi-star-four-points:before{content:"\f0ae2"}.mdi-star-four-points-outline:before{content:"\f0ae3"}.mdi-star-half:before{content:"\f0246"}.mdi-star-half-full:before{content:"\f04d0"}.mdi-star-minus:before{content:"\f1564"}.mdi-star-minus-outline:before{content:"\f1568"}.mdi-star-off:before{content:"\f04d1"}.mdi-star-off-outline:before{content:"\f155b"}.mdi-star-outline:before{content:"\f04d2"}.mdi-star-plus:before{content:"\f1563"}.mdi-star-plus-outline:before{content:"\f1567"}.mdi-star-remove:before{content:"\f1565"}.mdi-star-remove-outline:before{content:"\f1569"}.mdi-star-settings:before{content:"\f166a"}.mdi-star-settings-outline:before{content:"\f166b"}.mdi-star-three-points:before{content:"\f0ae4"}.mdi-star-three-points-outline:before{content:"\f0ae5"}.mdi-state-machine:before{content:"\f11ef"}.mdi-steam:before{content:"\f04d3"}.mdi-steering:before{content:"\f04d4"}.mdi-steering-off:before{content:"\f090e"}.mdi-step-backward:before{content:"\f04d5"}.mdi-step-backward-2:before{content:"\f04d6"}.mdi-step-forward:before{content:"\f04d7"}.mdi-step-forward-2:before{content:"\f04d8"}.mdi-stethoscope:before{content:"\f04d9"}.mdi-sticker:before{content:"\f1364"}.mdi-sticker-alert:before{content:"\f1365"}.mdi-sticker-alert-outline:before{content:"\f1366"}.mdi-sticker-check:before{content:"\f1367"}.mdi-sticker-check-outline:before{content:"\f1368"}.mdi-sticker-circle-outline:before{content:"\f05d0"}.mdi-sticker-emoji:before{content:"\f0785"}.mdi-sticker-minus:before{content:"\f1369"}.mdi-sticker-minus-outline:before{content:"\f136a"}.mdi-sticker-outline:before{content:"\f136b"}.mdi-sticker-plus:before{content:"\f136c"}.mdi-sticker-plus-outline:before{content:"\f136d"}.mdi-sticker-remove:before{content:"\f136e"}.mdi-sticker-remove-outline:before{content:"\f136f"}.mdi-stocking:before{content:"\f04da"}.mdi-stomach:before{content:"\f1093"}.mdi-stop:before{content:"\f04db"}.mdi-stop-circle:before{content:"\f0666"}.mdi-stop-circle-outline:before{content:"\f0667"}.mdi-store:before{content:"\f04dc"}.mdi-store-24-hour:before{content:"\f04dd"}.mdi-store-minus:before{content:"\f165e"}.mdi-store-outline:before{content:"\f1361"}.mdi-store-plus:before{content:"\f165f"}.mdi-store-remove:before{content:"\f1660"}.mdi-storefront:before{content:"\f07c7"}.mdi-storefront-outline:before{content:"\f10c1"}.mdi-stove:before{content:"\f04de"}.mdi-strategy:before{content:"\f11d6"}.mdi-stretch-to-page:before{content:"\f0f2b"}.mdi-stretch-to-page-outline:before{content:"\f0f2c"}.mdi-string-lights:before{content:"\f12ba"}.mdi-string-lights-off:before{content:"\f12bb"}.mdi-subdirectory-arrow-left:before{content:"\f060c"}.mdi-subdirectory-arrow-right:before{content:"\f060d"}.mdi-submarine:before{content:"\f156c"}.mdi-subtitles:before{content:"\f0a16"}.mdi-subtitles-outline:before{content:"\f0a17"}.mdi-subway:before{content:"\f06ac"}.mdi-subway-alert-variant:before{content:"\f0d9d"}.mdi-subway-variant:before{content:"\f04df"}.mdi-summit:before{content:"\f0786"}.mdi-sunglasses:before{content:"\f04e0"}.mdi-surround-sound:before{content:"\f05c5"}.mdi-surround-sound-2-0:before{content:"\f07f0"}.mdi-surround-sound-3-1:before{content:"\f07f1"}.mdi-surround-sound-5-1:before{content:"\f07f2"}.mdi-surround-sound-7-1:before{content:"\f07f3"}.mdi-svg:before{content:"\f0721"}.mdi-swap-horizontal:before{content:"\f04e1"}.mdi-swap-horizontal-bold:before{content:"\f0bcd"}.mdi-swap-horizontal-circle:before{content:"\f0fe1"}.mdi-swap-horizontal-circle-outline:before{content:"\f0fe2"}.mdi-swap-horizontal-variant:before{content:"\f08c1"}.mdi-swap-vertical:before{content:"\f04e2"}.mdi-swap-vertical-bold:before{content:"\f0bce"}.mdi-swap-vertical-circle:before{content:"\f0fe3"}.mdi-swap-vertical-circle-outline:before{content:"\f0fe4"}.mdi-swap-vertical-variant:before{content:"\f08c2"}.mdi-swim:before{content:"\f04e3"}.mdi-switch:before{content:"\f04e4"}.mdi-sword:before{content:"\f04e5"}.mdi-sword-cross:before{content:"\f0787"}.mdi-syllabary-hangul:before{content:"\f1333"}.mdi-syllabary-hiragana:before{content:"\f1334"}.mdi-syllabary-katakana:before{content:"\f1335"}.mdi-syllabary-katakana-halfwidth:before{content:"\f1336"}.mdi-symbol:before{content:"\f1501"}.mdi-symfony:before{content:"\f0ae6"}.mdi-sync:before{content:"\f04e6"}.mdi-sync-alert:before{content:"\f04e7"}.mdi-sync-circle:before{content:"\f1378"}.mdi-sync-off:before{content:"\f04e8"}.mdi-tab:before{content:"\f04e9"}.mdi-tab-minus:before{content:"\f0b4b"}.mdi-tab-plus:before{content:"\f075c"}.mdi-tab-remove:before{content:"\f0b4c"}.mdi-tab-unselected:before{content:"\f04ea"}.mdi-table:before{content:"\f04eb"}.mdi-table-account:before{content:"\f13b9"}.mdi-table-alert:before{content:"\f13ba"}.mdi-table-arrow-down:before{content:"\f13bb"}.mdi-table-arrow-left:before{content:"\f13bc"}.mdi-table-arrow-right:before{content:"\f13bd"}.mdi-table-arrow-up:before{content:"\f13be"}.mdi-table-border:before{content:"\f0a18"}.mdi-table-cancel:before{content:"\f13bf"}.mdi-table-chair:before{content:"\f1061"}.mdi-table-check:before{content:"\f13c0"}.mdi-table-clock:before{content:"\f13c1"}.mdi-table-cog:before{content:"\f13c2"}.mdi-table-column:before{content:"\f0835"}.mdi-table-column-plus-after:before{content:"\f04ec"}.mdi-table-column-plus-before:before{content:"\f04ed"}.mdi-table-column-remove:before{content:"\f04ee"}.mdi-table-column-width:before{content:"\f04ef"}.mdi-table-edit:before{content:"\f04f0"}.mdi-table-eye:before{content:"\f1094"}.mdi-table-eye-off:before{content:"\f13c3"}.mdi-table-furniture:before{content:"\f05bc"}.mdi-table-headers-eye:before{content:"\f121d"}.mdi-table-headers-eye-off:before{content:"\f121e"}.mdi-table-heart:before{content:"\f13c4"}.mdi-table-key:before{content:"\f13c5"}.mdi-table-large:before{content:"\f04f1"}.mdi-table-large-plus:before{content:"\f0f87"}.mdi-table-large-remove:before{content:"\f0f88"}.mdi-table-lock:before{content:"\f13c6"}.mdi-table-merge-cells:before{content:"\f09a6"}.mdi-table-minus:before{content:"\f13c7"}.mdi-table-multiple:before{content:"\f13c8"}.mdi-table-network:before{content:"\f13c9"}.mdi-table-of-contents:before{content:"\f0836"}.mdi-table-off:before{content:"\f13ca"}.mdi-table-plus:before{content:"\f0a75"}.mdi-table-refresh:before{content:"\f13a0"}.mdi-table-remove:before{content:"\f0a76"}.mdi-table-row:before{content:"\f0837"}.mdi-table-row-height:before{content:"\f04f2"}.mdi-table-row-plus-after:before{content:"\f04f3"}.mdi-table-row-plus-before:before{content:"\f04f4"}.mdi-table-row-remove:before{content:"\f04f5"}.mdi-table-search:before{content:"\f090f"}.mdi-table-settings:before{content:"\f0838"}.mdi-table-split-cell:before{content:"\f142a"}.mdi-table-star:before{content:"\f13cb"}.mdi-table-sync:before{content:"\f13a1"}.mdi-table-tennis:before{content:"\f0e68"}.mdi-tablet:before{content:"\f04f6"}.mdi-tablet-android:before{content:"\f04f7"}.mdi-tablet-cellphone:before{content:"\f09a7"}.mdi-tablet-dashboard:before{content:"\f0ece"}.mdi-tablet-ipad:before{content:"\f04f8"}.mdi-taco:before{content:"\f0762"}.mdi-tag:before{content:"\f04f9"}.mdi-tag-faces:before{content:"\f04fa"}.mdi-tag-heart:before{content:"\f068b"}.mdi-tag-heart-outline:before{content:"\f0bcf"}.mdi-tag-minus:before{content:"\f0910"}.mdi-tag-minus-outline:before{content:"\f121f"}.mdi-tag-multiple:before{content:"\f04fb"}.mdi-tag-multiple-outline:before{content:"\f12f7"}.mdi-tag-off:before{content:"\f1220"}.mdi-tag-off-outline:before{content:"\f1221"}.mdi-tag-outline:before{content:"\f04fc"}.mdi-tag-plus:before{content:"\f0722"}.mdi-tag-plus-outline:before{content:"\f1222"}.mdi-tag-remove:before{content:"\f0723"}.mdi-tag-remove-outline:before{content:"\f1223"}.mdi-tag-text:before{content:"\f1224"}.mdi-tag-text-outline:before{content:"\f04fd"}.mdi-tailwind:before{content:"\f13ff"}.mdi-tank:before{content:"\f0d3a"}.mdi-tanker-truck:before{content:"\f0fe5"}.mdi-tape-drive:before{content:"\f16df"}.mdi-tape-measure:before{content:"\f0b4d"}.mdi-target:before{content:"\f04fe"}.mdi-target-account:before{content:"\f0bd0"}.mdi-target-variant:before{content:"\f0a77"}.mdi-taxi:before{content:"\f04ff"}.mdi-tea:before{content:"\f0d9e"}.mdi-tea-outline:before{content:"\f0d9f"}.mdi-teach:before{content:"\f0890"}.mdi-teamviewer:before{content:"\f0500"}.mdi-telegram:before{content:"\f0501"}.mdi-telescope:before{content:"\f0b4e"}.mdi-television:before{content:"\f0502"}.mdi-television-ambient-light:before{content:"\f1356"}.mdi-television-box:before{content:"\f0839"}.mdi-television-classic:before{content:"\f07f4"}.mdi-television-classic-off:before{content:"\f083a"}.mdi-television-clean:before{content:"\f1110"}.mdi-television-guide:before{content:"\f0503"}.mdi-television-off:before{content:"\f083b"}.mdi-television-pause:before{content:"\f0f89"}.mdi-television-play:before{content:"\f0ecf"}.mdi-television-stop:before{content:"\f0f8a"}.mdi-temperature-celsius:before{content:"\f0504"}.mdi-temperature-fahrenheit:before{content:"\f0505"}.mdi-temperature-kelvin:before{content:"\f0506"}.mdi-tennis:before{content:"\f0da0"}.mdi-tennis-ball:before{content:"\f0507"}.mdi-tent:before{content:"\f0508"}.mdi-terraform:before{content:"\f1062"}.mdi-terrain:before{content:"\f0509"}.mdi-test-tube:before{content:"\f0668"}.mdi-test-tube-empty:before{content:"\f0911"}.mdi-test-tube-off:before{content:"\f0912"}.mdi-text:before{content:"\f09a8"}.mdi-text-account:before{content:"\f1570"}.mdi-text-box:before{content:"\f021a"}.mdi-text-box-check:before{content:"\f0ea6"}.mdi-text-box-check-outline:before{content:"\f0ea7"}.mdi-text-box-minus:before{content:"\f0ea8"}.mdi-text-box-minus-outline:before{content:"\f0ea9"}.mdi-text-box-multiple:before{content:"\f0ab7"}.mdi-text-box-multiple-outline:before{content:"\f0ab8"}.mdi-text-box-outline:before{content:"\f09ed"}.mdi-text-box-plus:before{content:"\f0eaa"}.mdi-text-box-plus-outline:before{content:"\f0eab"}.mdi-text-box-remove:before{content:"\f0eac"}.mdi-text-box-remove-outline:before{content:"\f0ead"}.mdi-text-box-search:before{content:"\f0eae"}.mdi-text-box-search-outline:before{content:"\f0eaf"}.mdi-text-recognition:before{content:"\f113d"}.mdi-text-search:before{content:"\f13b8"}.mdi-text-shadow:before{content:"\f0669"}.mdi-text-short:before{content:"\f09a9"}.mdi-text-subject:before{content:"\f09aa"}.mdi-text-to-speech:before{content:"\f050a"}.mdi-text-to-speech-off:before{content:"\f050b"}.mdi-texture:before{content:"\f050c"}.mdi-texture-box:before{content:"\f0fe6"}.mdi-theater:before{content:"\f050d"}.mdi-theme-light-dark:before{content:"\f050e"}.mdi-thermometer:before{content:"\f050f"}.mdi-thermometer-alert:before{content:"\f0e01"}.mdi-thermometer-chevron-down:before{content:"\f0e02"}.mdi-thermometer-chevron-up:before{content:"\f0e03"}.mdi-thermometer-high:before{content:"\f10c2"}.mdi-thermometer-lines:before{content:"\f0510"}.mdi-thermometer-low:before{content:"\f10c3"}.mdi-thermometer-minus:before{content:"\f0e04"}.mdi-thermometer-off:before{content:"\f1531"}.mdi-thermometer-plus:before{content:"\f0e05"}.mdi-thermostat:before{content:"\f0393"}.mdi-thermostat-box:before{content:"\f0891"}.mdi-thought-bubble:before{content:"\f07f6"}.mdi-thought-bubble-outline:before{content:"\f07f7"}.mdi-thumb-down:before{content:"\f0511"}.mdi-thumb-down-outline:before{content:"\f0512"}.mdi-thumb-up:before{content:"\f0513"}.mdi-thumb-up-outline:before{content:"\f0514"}.mdi-thumbs-up-down:before{content:"\f0515"}.mdi-ticket:before{content:"\f0516"}.mdi-ticket-account:before{content:"\f0517"}.mdi-ticket-confirmation:before{content:"\f0518"}.mdi-ticket-confirmation-outline:before{content:"\f13aa"}.mdi-ticket-outline:before{content:"\f0913"}.mdi-ticket-percent:before{content:"\f0724"}.mdi-ticket-percent-outline:before{content:"\f142b"}.mdi-tie:before{content:"\f0519"}.mdi-tilde:before{content:"\f0725"}.mdi-timelapse:before{content:"\f051a"}.mdi-timeline:before{content:"\f0bd1"}.mdi-timeline-alert:before{content:"\f0f95"}.mdi-timeline-alert-outline:before{content:"\f0f98"}.mdi-timeline-check:before{content:"\f1532"}.mdi-timeline-check-outline:before{content:"\f1533"}.mdi-timeline-clock:before{content:"\f11fb"}.mdi-timeline-clock-outline:before{content:"\f11fc"}.mdi-timeline-help:before{content:"\f0f99"}.mdi-timeline-help-outline:before{content:"\f0f9a"}.mdi-timeline-minus:before{content:"\f1534"}.mdi-timeline-minus-outline:before{content:"\f1535"}.mdi-timeline-outline:before{content:"\f0bd2"}.mdi-timeline-plus:before{content:"\f0f96"}.mdi-timeline-plus-outline:before{content:"\f0f97"}.mdi-timeline-remove:before{content:"\f1536"}.mdi-timeline-remove-outline:before{content:"\f1537"}.mdi-timeline-text:before{content:"\f0bd3"}.mdi-timeline-text-outline:before{content:"\f0bd4"}.mdi-timer:before{content:"\f13ab"}.mdi-timer-10:before{content:"\f051c"}.mdi-timer-3:before{content:"\f051d"}.mdi-timer-off:before{content:"\f13ac"}.mdi-timer-off-outline:before{content:"\f051e"}.mdi-timer-outline:before{content:"\f051b"}.mdi-timer-sand:before{content:"\f051f"}.mdi-timer-sand-empty:before{content:"\f06ad"}.mdi-timer-sand-full:before{content:"\f078c"}.mdi-timetable:before{content:"\f0520"}.mdi-toaster:before{content:"\f1063"}.mdi-toaster-off:before{content:"\f11b7"}.mdi-toaster-oven:before{content:"\f0cd3"}.mdi-toggle-switch:before{content:"\f0521"}.mdi-toggle-switch-off:before{content:"\f0522"}.mdi-toggle-switch-off-outline:before{content:"\f0a19"}.mdi-toggle-switch-outline:before{content:"\f0a1a"}.mdi-toilet:before{content:"\f09ab"}.mdi-toolbox:before{content:"\f09ac"}.mdi-toolbox-outline:before{content:"\f09ad"}.mdi-tools:before{content:"\f1064"}.mdi-tooltip:before{content:"\f0523"}.mdi-tooltip-account:before{content:"\f000c"}.mdi-tooltip-check:before{content:"\f155c"}.mdi-tooltip-check-outline:before{content:"\f155d"}.mdi-tooltip-edit:before{content:"\f0524"}.mdi-tooltip-edit-outline:before{content:"\f12c5"}.mdi-tooltip-image:before{content:"\f0525"}.mdi-tooltip-image-outline:before{content:"\f0bd5"}.mdi-tooltip-minus:before{content:"\f155e"}.mdi-tooltip-minus-outline:before{content:"\f155f"}.mdi-tooltip-outline:before{content:"\f0526"}.mdi-tooltip-plus:before{content:"\f0bd6"}.mdi-tooltip-plus-outline:before{content:"\f0527"}.mdi-tooltip-remove:before{content:"\f1560"}.mdi-tooltip-remove-outline:before{content:"\f1561"}.mdi-tooltip-text:before{content:"\f0528"}.mdi-tooltip-text-outline:before{content:"\f0bd7"}.mdi-tooth:before{content:"\f08c3"}.mdi-tooth-outline:before{content:"\f0529"}.mdi-toothbrush:before{content:"\f1129"}.mdi-toothbrush-electric:before{content:"\f112c"}.mdi-toothbrush-paste:before{content:"\f112a"}.mdi-torch:before{content:"\f1606"}.mdi-tortoise:before{content:"\f0d3b"}.mdi-toslink:before{content:"\f12b8"}.mdi-tournament:before{content:"\f09ae"}.mdi-tow-truck:before{content:"\f083c"}.mdi-tower-beach:before{content:"\f0681"}.mdi-tower-fire:before{content:"\f0682"}.mdi-toy-brick:before{content:"\f1288"}.mdi-toy-brick-marker:before{content:"\f1289"}.mdi-toy-brick-marker-outline:before{content:"\f128a"}.mdi-toy-brick-minus:before{content:"\f128b"}.mdi-toy-brick-minus-outline:before{content:"\f128c"}.mdi-toy-brick-outline:before{content:"\f128d"}.mdi-toy-brick-plus:before{content:"\f128e"}.mdi-toy-brick-plus-outline:before{content:"\f128f"}.mdi-toy-brick-remove:before{content:"\f1290"}.mdi-toy-brick-remove-outline:before{content:"\f1291"}.mdi-toy-brick-search:before{content:"\f1292"}.mdi-toy-brick-search-outline:before{content:"\f1293"}.mdi-track-light:before{content:"\f0914"}.mdi-trackpad:before{content:"\f07f8"}.mdi-trackpad-lock:before{content:"\f0933"}.mdi-tractor:before{content:"\f0892"}.mdi-tractor-variant:before{content:"\f14c4"}.mdi-trademark:before{content:"\f0a78"}.mdi-traffic-cone:before{content:"\f137c"}.mdi-traffic-light:before{content:"\f052b"}.mdi-train:before{content:"\f052c"}.mdi-train-car:before{content:"\f0bd8"}.mdi-train-variant:before{content:"\f08c4"}.mdi-tram:before{content:"\f052d"}.mdi-tram-side:before{content:"\f0fe7"}.mdi-transcribe:before{content:"\f052e"}.mdi-transcribe-close:before{content:"\f052f"}.mdi-transfer:before{content:"\f1065"}.mdi-transfer-down:before{content:"\f0da1"}.mdi-transfer-left:before{content:"\f0da2"}.mdi-transfer-right:before{content:"\f0530"}.mdi-transfer-up:before{content:"\f0da3"}.mdi-transit-connection:before{content:"\f0d3c"}.mdi-transit-connection-horizontal:before{content:"\f1546"}.mdi-transit-connection-variant:before{content:"\f0d3d"}.mdi-transit-detour:before{content:"\f0f8b"}.mdi-transit-skip:before{content:"\f1515"}.mdi-transit-transfer:before{content:"\f06ae"}.mdi-transition:before{content:"\f0915"}.mdi-transition-masked:before{content:"\f0916"}.mdi-translate:before{content:"\f05ca"}.mdi-translate-off:before{content:"\f0e06"}.mdi-transmission-tower:before{content:"\f0d3e"}.mdi-trash-can:before{content:"\f0a79"}.mdi-trash-can-outline:before{content:"\f0a7a"}.mdi-tray:before{content:"\f1294"}.mdi-tray-alert:before{content:"\f1295"}.mdi-tray-full:before{content:"\f1296"}.mdi-tray-minus:before{content:"\f1297"}.mdi-tray-plus:before{content:"\f1298"}.mdi-tray-remove:before{content:"\f1299"}.mdi-treasure-chest:before{content:"\f0726"}.mdi-tree:before{content:"\f0531"}.mdi-tree-outline:before{content:"\f0e69"}.mdi-trello:before{content:"\f0532"}.mdi-trending-down:before{content:"\f0533"}.mdi-trending-neutral:before{content:"\f0534"}.mdi-trending-up:before{content:"\f0535"}.mdi-triangle:before{content:"\f0536"}.mdi-triangle-outline:before{content:"\f0537"}.mdi-triangle-wave:before{content:"\f147c"}.mdi-triforce:before{content:"\f0bd9"}.mdi-trophy:before{content:"\f0538"}.mdi-trophy-award:before{content:"\f0539"}.mdi-trophy-broken:before{content:"\f0da4"}.mdi-trophy-outline:before{content:"\f053a"}.mdi-trophy-variant:before{content:"\f053b"}.mdi-trophy-variant-outline:before{content:"\f053c"}.mdi-truck:before{content:"\f053d"}.mdi-truck-check:before{content:"\f0cd4"}.mdi-truck-check-outline:before{content:"\f129a"}.mdi-truck-delivery:before{content:"\f053e"}.mdi-truck-delivery-outline:before{content:"\f129b"}.mdi-truck-fast:before{content:"\f0788"}.mdi-truck-fast-outline:before{content:"\f129c"}.mdi-truck-outline:before{content:"\f129d"}.mdi-truck-trailer:before{content:"\f0727"}.mdi-trumpet:before{content:"\f1096"}.mdi-tshirt-crew:before{content:"\f0a7b"}.mdi-tshirt-crew-outline:before{content:"\f053f"}.mdi-tshirt-v:before{content:"\f0a7c"}.mdi-tshirt-v-outline:before{content:"\f0540"}.mdi-tumble-dryer:before{content:"\f0917"}.mdi-tumble-dryer-alert:before{content:"\f11ba"}.mdi-tumble-dryer-off:before{content:"\f11bb"}.mdi-tune:before{content:"\f062e"}.mdi-tune-variant:before{content:"\f1542"}.mdi-tune-vertical:before{content:"\f066a"}.mdi-tune-vertical-variant:before{content:"\f1543"}.mdi-turnstile:before{content:"\f0cd5"}.mdi-turnstile-outline:before{content:"\f0cd6"}.mdi-turtle:before{content:"\f0cd7"}.mdi-twitch:before{content:"\f0543"}.mdi-twitter:before{content:"\f0544"}.mdi-twitter-retweet:before{content:"\f0547"}.mdi-two-factor-authentication:before{content:"\f09af"}.mdi-typewriter:before{content:"\f0f2d"}.mdi-ubisoft:before{content:"\f0bda"}.mdi-ubuntu:before{content:"\f0548"}.mdi-ufo:before{content:"\f10c4"}.mdi-ufo-outline:before{content:"\f10c5"}.mdi-ultra-high-definition:before{content:"\f07f9"}.mdi-umbraco:before{content:"\f0549"}.mdi-umbrella:before{content:"\f054a"}.mdi-umbrella-closed:before{content:"\f09b0"}.mdi-umbrella-closed-outline:before{content:"\f13e2"}.mdi-umbrella-closed-variant:before{content:"\f13e1"}.mdi-umbrella-outline:before{content:"\f054b"}.mdi-undo:before{content:"\f054c"}.mdi-undo-variant:before{content:"\f054d"}.mdi-unfold-less-horizontal:before{content:"\f054e"}.mdi-unfold-less-vertical:before{content:"\f0760"}.mdi-unfold-more-horizontal:before{content:"\f054f"}.mdi-unfold-more-vertical:before{content:"\f0761"}.mdi-ungroup:before{content:"\f0550"}.mdi-unicode:before{content:"\f0ed0"}.mdi-unicorn:before{content:"\f15c2"}.mdi-unicorn-variant:before{content:"\f15c3"}.mdi-unicycle:before{content:"\f15e5"}.mdi-unity:before{content:"\f06af"}.mdi-unreal:before{content:"\f09b1"}.mdi-untappd:before{content:"\f0551"}.mdi-update:before{content:"\f06b0"}.mdi-upload:before{content:"\f0552"}.mdi-upload-lock:before{content:"\f1373"}.mdi-upload-lock-outline:before{content:"\f1374"}.mdi-upload-multiple:before{content:"\f083d"}.mdi-upload-network:before{content:"\f06f6"}.mdi-upload-network-outline:before{content:"\f0cd8"}.mdi-upload-off:before{content:"\f10c6"}.mdi-upload-off-outline:before{content:"\f10c7"}.mdi-upload-outline:before{content:"\f0e07"}.mdi-usb:before{content:"\f0553"}.mdi-usb-flash-drive:before{content:"\f129e"}.mdi-usb-flash-drive-outline:before{content:"\f129f"}.mdi-usb-port:before{content:"\f11f0"}.mdi-valve:before{content:"\f1066"}.mdi-valve-closed:before{content:"\f1067"}.mdi-valve-open:before{content:"\f1068"}.mdi-van-passenger:before{content:"\f07fa"}.mdi-van-utility:before{content:"\f07fb"}.mdi-vanish:before{content:"\f07fc"}.mdi-vanish-quarter:before{content:"\f1554"}.mdi-vanity-light:before{content:"\f11e1"}.mdi-variable:before{content:"\f0ae7"}.mdi-variable-box:before{content:"\f1111"}.mdi-vector-arrange-above:before{content:"\f0554"}.mdi-vector-arrange-below:before{content:"\f0555"}.mdi-vector-bezier:before{content:"\f0ae8"}.mdi-vector-circle:before{content:"\f0556"}.mdi-vector-circle-variant:before{content:"\f0557"}.mdi-vector-combine:before{content:"\f0558"}.mdi-vector-curve:before{content:"\f0559"}.mdi-vector-difference:before{content:"\f055a"}.mdi-vector-difference-ab:before{content:"\f055b"}.mdi-vector-difference-ba:before{content:"\f055c"}.mdi-vector-ellipse:before{content:"\f0893"}.mdi-vector-intersection:before{content:"\f055d"}.mdi-vector-line:before{content:"\f055e"}.mdi-vector-link:before{content:"\f0fe8"}.mdi-vector-point:before{content:"\f055f"}.mdi-vector-polygon:before{content:"\f0560"}.mdi-vector-polyline:before{content:"\f0561"}.mdi-vector-polyline-edit:before{content:"\f1225"}.mdi-vector-polyline-minus:before{content:"\f1226"}.mdi-vector-polyline-plus:before{content:"\f1227"}.mdi-vector-polyline-remove:before{content:"\f1228"}.mdi-vector-radius:before{content:"\f074a"}.mdi-vector-rectangle:before{content:"\f05c6"}.mdi-vector-selection:before{content:"\f0562"}.mdi-vector-square:before{content:"\f0001"}.mdi-vector-triangle:before{content:"\f0563"}.mdi-vector-union:before{content:"\f0564"}.mdi-vhs:before{content:"\f0a1b"}.mdi-vibrate:before{content:"\f0566"}.mdi-vibrate-off:before{content:"\f0cd9"}.mdi-video:before{content:"\f0567"}.mdi-video-3d:before{content:"\f07fd"}.mdi-video-3d-off:before{content:"\f13d9"}.mdi-video-3d-variant:before{content:"\f0ed1"}.mdi-video-4k-box:before{content:"\f083e"}.mdi-video-account:before{content:"\f0919"}.mdi-video-box:before{content:"\f00fd"}.mdi-video-box-off:before{content:"\f00fe"}.mdi-video-check:before{content:"\f1069"}.mdi-video-check-outline:before{content:"\f106a"}.mdi-video-high-definition:before{content:"\f152e"}.mdi-video-image:before{content:"\f091a"}.mdi-video-input-antenna:before{content:"\f083f"}.mdi-video-input-component:before{content:"\f0840"}.mdi-video-input-hdmi:before{content:"\f0841"}.mdi-video-input-scart:before{content:"\f0f8c"}.mdi-video-input-svideo:before{content:"\f0842"}.mdi-video-minus:before{content:"\f09b2"}.mdi-video-minus-outline:before{content:"\f02ba"}.mdi-video-off:before{content:"\f0568"}.mdi-video-off-outline:before{content:"\f0bdb"}.mdi-video-outline:before{content:"\f0bdc"}.mdi-video-plus:before{content:"\f09b3"}.mdi-video-plus-outline:before{content:"\f01d3"}.mdi-video-stabilization:before{content:"\f091b"}.mdi-video-switch:before{content:"\f0569"}.mdi-video-switch-outline:before{content:"\f0790"}.mdi-video-vintage:before{content:"\f0a1c"}.mdi-video-wireless:before{content:"\f0ed2"}.mdi-video-wireless-outline:before{content:"\f0ed3"}.mdi-view-agenda:before{content:"\f056a"}.mdi-view-agenda-outline:before{content:"\f11d8"}.mdi-view-array:before{content:"\f056b"}.mdi-view-array-outline:before{content:"\f1485"}.mdi-view-carousel:before{content:"\f056c"}.mdi-view-carousel-outline:before{content:"\f1486"}.mdi-view-column:before{content:"\f056d"}.mdi-view-column-outline:before{content:"\f1487"}.mdi-view-comfy:before{content:"\f0e6a"}.mdi-view-comfy-outline:before{content:"\f1488"}.mdi-view-compact:before{content:"\f0e6b"}.mdi-view-compact-outline:before{content:"\f0e6c"}.mdi-view-dashboard:before{content:"\f056e"}.mdi-view-dashboard-outline:before{content:"\f0a1d"}.mdi-view-dashboard-variant:before{content:"\f0843"}.mdi-view-dashboard-variant-outline:before{content:"\f1489"}.mdi-view-day:before{content:"\f056f"}.mdi-view-day-outline:before{content:"\f148a"}.mdi-view-grid:before{content:"\f0570"}.mdi-view-grid-outline:before{content:"\f11d9"}.mdi-view-grid-plus:before{content:"\f0f8d"}.mdi-view-grid-plus-outline:before{content:"\f11da"}.mdi-view-headline:before{content:"\f0571"}.mdi-view-list:before{content:"\f0572"}.mdi-view-list-outline:before{content:"\f148b"}.mdi-view-module:before{content:"\f0573"}.mdi-view-module-outline:before{content:"\f148c"}.mdi-view-parallel:before{content:"\f0728"}.mdi-view-parallel-outline:before{content:"\f148d"}.mdi-view-quilt:before{content:"\f0574"}.mdi-view-quilt-outline:before{content:"\f148e"}.mdi-view-sequential:before{content:"\f0729"}.mdi-view-sequential-outline:before{content:"\f148f"}.mdi-view-split-horizontal:before{content:"\f0bcb"}.mdi-view-split-vertical:before{content:"\f0bcc"}.mdi-view-stream:before{content:"\f0575"}.mdi-view-stream-outline:before{content:"\f1490"}.mdi-view-week:before{content:"\f0576"}.mdi-view-week-outline:before{content:"\f1491"}.mdi-vimeo:before{content:"\f0577"}.mdi-violin:before{content:"\f060f"}.mdi-virtual-reality:before{content:"\f0894"}.mdi-virus:before{content:"\f13b6"}.mdi-virus-outline:before{content:"\f13b7"}.mdi-vk:before{content:"\f0579"}.mdi-vlc:before{content:"\f057c"}.mdi-voice-off:before{content:"\f0ed4"}.mdi-voicemail:before{content:"\f057d"}.mdi-volleyball:before{content:"\f09b4"}.mdi-volume-high:before{content:"\f057e"}.mdi-volume-low:before{content:"\f057f"}.mdi-volume-medium:before{content:"\f0580"}.mdi-volume-minus:before{content:"\f075e"}.mdi-volume-mute:before{content:"\f075f"}.mdi-volume-off:before{content:"\f0581"}.mdi-volume-plus:before{content:"\f075d"}.mdi-volume-source:before{content:"\f1120"}.mdi-volume-variant-off:before{content:"\f0e08"}.mdi-volume-vibrate:before{content:"\f1121"}.mdi-vote:before{content:"\f0a1f"}.mdi-vote-outline:before{content:"\f0a20"}.mdi-vpn:before{content:"\f0582"}.mdi-vuejs:before{content:"\f0844"}.mdi-vuetify:before{content:"\f0e6d"}.mdi-walk:before{content:"\f0583"}.mdi-wall:before{content:"\f07fe"}.mdi-wall-sconce:before{content:"\f091c"}.mdi-wall-sconce-flat:before{content:"\f091d"}.mdi-wall-sconce-flat-variant:before{content:"\f041c"}.mdi-wall-sconce-round:before{content:"\f0748"}.mdi-wall-sconce-round-variant:before{content:"\f091e"}.mdi-wallet:before{content:"\f0584"}.mdi-wallet-giftcard:before{content:"\f0585"}.mdi-wallet-membership:before{content:"\f0586"}.mdi-wallet-outline:before{content:"\f0bdd"}.mdi-wallet-plus:before{content:"\f0f8e"}.mdi-wallet-plus-outline:before{content:"\f0f8f"}.mdi-wallet-travel:before{content:"\f0587"}.mdi-wallpaper:before{content:"\f0e09"}.mdi-wan:before{content:"\f0588"}.mdi-wardrobe:before{content:"\f0f90"}.mdi-wardrobe-outline:before{content:"\f0f91"}.mdi-warehouse:before{content:"\f0f81"}.mdi-washing-machine:before{content:"\f072a"}.mdi-washing-machine-alert:before{content:"\f11bc"}.mdi-washing-machine-off:before{content:"\f11bd"}.mdi-watch:before{content:"\f0589"}.mdi-watch-export:before{content:"\f058a"}.mdi-watch-export-variant:before{content:"\f0895"}.mdi-watch-import:before{content:"\f058b"}.mdi-watch-import-variant:before{content:"\f0896"}.mdi-watch-variant:before{content:"\f0897"}.mdi-watch-vibrate:before{content:"\f06b1"}.mdi-watch-vibrate-off:before{content:"\f0cda"}.mdi-water:before{content:"\f058c"}.mdi-water-alert:before{content:"\f1502"}.mdi-water-alert-outline:before{content:"\f1503"}.mdi-water-boiler:before{content:"\f0f92"}.mdi-water-boiler-alert:before{content:"\f11b3"}.mdi-water-boiler-off:before{content:"\f11b4"}.mdi-water-check:before{content:"\f1504"}.mdi-water-check-outline:before{content:"\f1505"}.mdi-water-minus:before{content:"\f1506"}.mdi-water-minus-outline:before{content:"\f1507"}.mdi-water-off:before{content:"\f058d"}.mdi-water-off-outline:before{content:"\f1508"}.mdi-water-outline:before{content:"\f0e0a"}.mdi-water-percent:before{content:"\f058e"}.mdi-water-percent-alert:before{content:"\f1509"}.mdi-water-plus:before{content:"\f150a"}.mdi-water-plus-outline:before{content:"\f150b"}.mdi-water-polo:before{content:"\f12a0"}.mdi-water-pump:before{content:"\f058f"}.mdi-water-pump-off:before{content:"\f0f93"}.mdi-water-remove:before{content:"\f150c"}.mdi-water-remove-outline:before{content:"\f150d"}.mdi-water-well:before{content:"\f106b"}.mdi-water-well-outline:before{content:"\f106c"}.mdi-watering-can:before{content:"\f1481"}.mdi-watering-can-outline:before{content:"\f1482"}.mdi-watermark:before{content:"\f0612"}.mdi-wave:before{content:"\f0f2e"}.mdi-waveform:before{content:"\f147d"}.mdi-waves:before{content:"\f078d"}.mdi-waze:before{content:"\f0bde"}.mdi-weather-cloudy:before{content:"\f0590"}.mdi-weather-cloudy-alert:before{content:"\f0f2f"}.mdi-weather-cloudy-arrow-right:before{content:"\f0e6e"}.mdi-weather-fog:before{content:"\f0591"}.mdi-weather-hail:before{content:"\f0592"}.mdi-weather-hazy:before{content:"\f0f30"}.mdi-weather-hurricane:before{content:"\f0898"}.mdi-weather-lightning:before{content:"\f0593"}.mdi-weather-lightning-rainy:before{content:"\f067e"}.mdi-weather-night:before{content:"\f0594"}.mdi-weather-night-partly-cloudy:before{content:"\f0f31"}.mdi-weather-partly-cloudy:before{content:"\f0595"}.mdi-weather-partly-lightning:before{content:"\f0f32"}.mdi-weather-partly-rainy:before{content:"\f0f33"}.mdi-weather-partly-snowy:before{content:"\f0f34"}.mdi-weather-partly-snowy-rainy:before{content:"\f0f35"}.mdi-weather-pouring:before{content:"\f0596"}.mdi-weather-rainy:before{content:"\f0597"}.mdi-weather-snowy:before{content:"\f0598"}.mdi-weather-snowy-heavy:before{content:"\f0f36"}.mdi-weather-snowy-rainy:before{content:"\f067f"}.mdi-weather-sunny:before{content:"\f0599"}.mdi-weather-sunny-alert:before{content:"\f0f37"}.mdi-weather-sunny-off:before{content:"\f14e4"}.mdi-weather-sunset:before{content:"\f059a"}.mdi-weather-sunset-down:before{content:"\f059b"}.mdi-weather-sunset-up:before{content:"\f059c"}.mdi-weather-tornado:before{content:"\f0f38"}.mdi-weather-windy:before{content:"\f059d"}.mdi-weather-windy-variant:before{content:"\f059e"}.mdi-web:before{content:"\f059f"}.mdi-web-box:before{content:"\f0f94"}.mdi-web-clock:before{content:"\f124a"}.mdi-webcam:before{content:"\f05a0"}.mdi-webhook:before{content:"\f062f"}.mdi-webpack:before{content:"\f072b"}.mdi-webrtc:before{content:"\f1248"}.mdi-wechat:before{content:"\f0611"}.mdi-weight:before{content:"\f05a1"}.mdi-weight-gram:before{content:"\f0d3f"}.mdi-weight-kilogram:before{content:"\f05a2"}.mdi-weight-lifter:before{content:"\f115d"}.mdi-weight-pound:before{content:"\f09b5"}.mdi-whatsapp:before{content:"\f05a3"}.mdi-wheel-barrow:before{content:"\f14f2"}.mdi-wheelchair-accessibility:before{content:"\f05a4"}.mdi-whistle:before{content:"\f09b6"}.mdi-whistle-outline:before{content:"\f12bc"}.mdi-white-balance-auto:before{content:"\f05a5"}.mdi-white-balance-incandescent:before{content:"\f05a6"}.mdi-white-balance-iridescent:before{content:"\f05a7"}.mdi-white-balance-sunny:before{content:"\f05a8"}.mdi-widgets:before{content:"\f072c"}.mdi-widgets-outline:before{content:"\f1355"}.mdi-wifi:before{content:"\f05a9"}.mdi-wifi-alert:before{content:"\f16b5"}.mdi-wifi-arrow-down:before{content:"\f16b6"}.mdi-wifi-arrow-left:before{content:"\f16b7"}.mdi-wifi-arrow-left-right:before{content:"\f16b8"}.mdi-wifi-arrow-right:before{content:"\f16b9"}.mdi-wifi-arrow-up:before{content:"\f16ba"}.mdi-wifi-arrow-up-down:before{content:"\f16bb"}.mdi-wifi-cancel:before{content:"\f16bc"}.mdi-wifi-check:before{content:"\f16bd"}.mdi-wifi-cog:before{content:"\f16be"}.mdi-wifi-lock:before{content:"\f16bf"}.mdi-wifi-lock-open:before{content:"\f16c0"}.mdi-wifi-marker:before{content:"\f16c1"}.mdi-wifi-minus:before{content:"\f16c2"}.mdi-wifi-off:before{content:"\f05aa"}.mdi-wifi-plus:before{content:"\f16c3"}.mdi-wifi-refresh:before{content:"\f16c4"}.mdi-wifi-remove:before{content:"\f16c5"}.mdi-wifi-settings:before{content:"\f16c6"}.mdi-wifi-star:before{content:"\f0e0b"}.mdi-wifi-strength-1:before{content:"\f091f"}.mdi-wifi-strength-1-alert:before{content:"\f0920"}.mdi-wifi-strength-1-lock:before{content:"\f0921"}.mdi-wifi-strength-1-lock-open:before{content:"\f16cb"}.mdi-wifi-strength-2:before{content:"\f0922"}.mdi-wifi-strength-2-alert:before{content:"\f0923"}.mdi-wifi-strength-2-lock:before{content:"\f0924"}.mdi-wifi-strength-2-lock-open:before{content:"\f16cc"}.mdi-wifi-strength-3:before{content:"\f0925"}.mdi-wifi-strength-3-alert:before{content:"\f0926"}.mdi-wifi-strength-3-lock:before{content:"\f0927"}.mdi-wifi-strength-3-lock-open:before{content:"\f16cd"}.mdi-wifi-strength-4:before{content:"\f0928"}.mdi-wifi-strength-4-alert:before{content:"\f0929"}.mdi-wifi-strength-4-lock:before{content:"\f092a"}.mdi-wifi-strength-4-lock-open:before{content:"\f16ce"}.mdi-wifi-strength-alert-outline:before{content:"\f092b"}.mdi-wifi-strength-lock-open-outline:before{content:"\f16cf"}.mdi-wifi-strength-lock-outline:before{content:"\f092c"}.mdi-wifi-strength-off:before{content:"\f092d"}.mdi-wifi-strength-off-outline:before{content:"\f092e"}.mdi-wifi-strength-outline:before{content:"\f092f"}.mdi-wifi-sync:before{content:"\f16c7"}.mdi-wikipedia:before{content:"\f05ac"}.mdi-wind-turbine:before{content:"\f0da5"}.mdi-window-close:before{content:"\f05ad"}.mdi-window-closed:before{content:"\f05ae"}.mdi-window-closed-variant:before{content:"\f11db"}.mdi-window-maximize:before{content:"\f05af"}.mdi-window-minimize:before{content:"\f05b0"}.mdi-window-open:before{content:"\f05b1"}.mdi-window-open-variant:before{content:"\f11dc"}.mdi-window-restore:before{content:"\f05b2"}.mdi-window-shutter:before{content:"\f111c"}.mdi-window-shutter-alert:before{content:"\f111d"}.mdi-window-shutter-open:before{content:"\f111e"}.mdi-windsock:before{content:"\f15fa"}.mdi-wiper:before{content:"\f0ae9"}.mdi-wiper-wash:before{content:"\f0da6"}.mdi-wizard-hat:before{content:"\f1477"}.mdi-wordpress:before{content:"\f05b4"}.mdi-wrap:before{content:"\f05b6"}.mdi-wrap-disabled:before{content:"\f0bdf"}.mdi-wrench:before{content:"\f05b7"}.mdi-wrench-outline:before{content:"\f0be0"}.mdi-xamarin:before{content:"\f0845"}.mdi-xamarin-outline:before{content:"\f0846"}.mdi-xing:before{content:"\f05be"}.mdi-xml:before{content:"\f05c0"}.mdi-xmpp:before{content:"\f07ff"}.mdi-y-combinator:before{content:"\f0624"}.mdi-yahoo:before{content:"\f0b4f"}.mdi-yeast:before{content:"\f05c1"}.mdi-yin-yang:before{content:"\f0680"}.mdi-yoga:before{content:"\f117c"}.mdi-youtube:before{content:"\f05c3"}.mdi-youtube-gaming:before{content:"\f0848"}.mdi-youtube-studio:before{content:"\f0847"}.mdi-youtube-subscription:before{content:"\f0d40"}.mdi-youtube-tv:before{content:"\f0448"}.mdi-yurt:before{content:"\f1516"}.mdi-z-wave:before{content:"\f0aea"}.mdi-zend:before{content:"\f0aeb"}.mdi-zigbee:before{content:"\f0d41"}.mdi-zip-box:before{content:"\f05c4"}.mdi-zip-box-outline:before{content:"\f0ffa"}.mdi-zip-disk:before{content:"\f0a23"}.mdi-zodiac-aquarius:before{content:"\f0a7d"}.mdi-zodiac-aries:before{content:"\f0a7e"}.mdi-zodiac-cancer:before{content:"\f0a7f"}.mdi-zodiac-capricorn:before{content:"\f0a80"}.mdi-zodiac-gemini:before{content:"\f0a81"}.mdi-zodiac-leo:before{content:"\f0a82"}.mdi-zodiac-libra:before{content:"\f0a83"}.mdi-zodiac-pisces:before{content:"\f0a84"}.mdi-zodiac-sagittarius:before{content:"\f0a85"}.mdi-zodiac-scorpio:before{content:"\f0a86"}.mdi-zodiac-taurus:before{content:"\f0a87"}.mdi-zodiac-virgo:before{content:"\f0a88"}.mdi-blank:before{content:"\f68c";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:#0000008a}.mdi-dark.mdi-inactive:before{color:#00000042}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:#ffffff4d}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} -/*# sourceMappingURL=materialdesignicons.min.css.map */ diff --git a/themes/buck/source/styles/materialdesignicons.min.css.map b/themes/buck/source/styles/materialdesignicons.min.css.map deleted file mode 100644 index 15d1213..0000000 --- a/themes/buck/source/styles/materialdesignicons.min.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["../../src/styles/materialdesignicons.min.css"], - "sourcesContent": ["@font-face{font-family:\"Material Design Icons\";src:url(\"../fonts/materialdesignicons-webfont.eot?v=5.8.55\");src:url(\"../fonts/materialdesignicons-webfont.eot?#iefix&v=5.8.55\") format(\"embedded-opentype\"),url(\"../fonts/materialdesignicons-webfont.woff2?v=5.8.55\") format(\"woff2\"),url(\"../fonts/materialdesignicons-webfont.woff?v=5.8.55\") format(\"woff\"),url(\"../fonts/materialdesignicons-webfont.ttf?v=5.8.55\") format(\"truetype\");font-weight:normal;font-style:normal; font-display: swap; }.mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 \"Material Design Icons\";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing::before{content:\"\\F01C9\"}.mdi-abjad-arabic::before{content:\"\\F1328\"}.mdi-abjad-hebrew::before{content:\"\\F1329\"}.mdi-abugida-devanagari::before{content:\"\\F132A\"}.mdi-abugida-thai::before{content:\"\\F132B\"}.mdi-access-point::before{content:\"\\F0003\"}.mdi-access-point-check::before{content:\"\\F1538\"}.mdi-access-point-minus::before{content:\"\\F1539\"}.mdi-access-point-network::before{content:\"\\F0002\"}.mdi-access-point-network-off::before{content:\"\\F0BE1\"}.mdi-access-point-off::before{content:\"\\F1511\"}.mdi-access-point-plus::before{content:\"\\F153A\"}.mdi-access-point-remove::before{content:\"\\F153B\"}.mdi-account::before{content:\"\\F0004\"}.mdi-account-alert::before{content:\"\\F0005\"}.mdi-account-alert-outline::before{content:\"\\F0B50\"}.mdi-account-arrow-left::before{content:\"\\F0B51\"}.mdi-account-arrow-left-outline::before{content:\"\\F0B52\"}.mdi-account-arrow-right::before{content:\"\\F0B53\"}.mdi-account-arrow-right-outline::before{content:\"\\F0B54\"}.mdi-account-box::before{content:\"\\F0006\"}.mdi-account-box-multiple::before{content:\"\\F0934\"}.mdi-account-box-multiple-outline::before{content:\"\\F100A\"}.mdi-account-box-outline::before{content:\"\\F0007\"}.mdi-account-cancel::before{content:\"\\F12DF\"}.mdi-account-cancel-outline::before{content:\"\\F12E0\"}.mdi-account-cash::before{content:\"\\F1097\"}.mdi-account-cash-outline::before{content:\"\\F1098\"}.mdi-account-check::before{content:\"\\F0008\"}.mdi-account-check-outline::before{content:\"\\F0BE2\"}.mdi-account-child::before{content:\"\\F0A89\"}.mdi-account-child-circle::before{content:\"\\F0A8A\"}.mdi-account-child-outline::before{content:\"\\F10C8\"}.mdi-account-circle::before{content:\"\\F0009\"}.mdi-account-circle-outline::before{content:\"\\F0B55\"}.mdi-account-clock::before{content:\"\\F0B56\"}.mdi-account-clock-outline::before{content:\"\\F0B57\"}.mdi-account-cog::before{content:\"\\F1370\"}.mdi-account-cog-outline::before{content:\"\\F1371\"}.mdi-account-convert::before{content:\"\\F000A\"}.mdi-account-convert-outline::before{content:\"\\F1301\"}.mdi-account-cowboy-hat::before{content:\"\\F0E9B\"}.mdi-account-details::before{content:\"\\F0631\"}.mdi-account-details-outline::before{content:\"\\F1372\"}.mdi-account-edit::before{content:\"\\F06BC\"}.mdi-account-edit-outline::before{content:\"\\F0FFB\"}.mdi-account-group::before{content:\"\\F0849\"}.mdi-account-group-outline::before{content:\"\\F0B58\"}.mdi-account-hard-hat::before{content:\"\\F05B5\"}.mdi-account-heart::before{content:\"\\F0899\"}.mdi-account-heart-outline::before{content:\"\\F0BE3\"}.mdi-account-key::before{content:\"\\F000B\"}.mdi-account-key-outline::before{content:\"\\F0BE4\"}.mdi-account-lock::before{content:\"\\F115E\"}.mdi-account-lock-outline::before{content:\"\\F115F\"}.mdi-account-minus::before{content:\"\\F000D\"}.mdi-account-minus-outline::before{content:\"\\F0AEC\"}.mdi-account-multiple::before{content:\"\\F000E\"}.mdi-account-multiple-check::before{content:\"\\F08C5\"}.mdi-account-multiple-check-outline::before{content:\"\\F11FE\"}.mdi-account-multiple-minus::before{content:\"\\F05D3\"}.mdi-account-multiple-minus-outline::before{content:\"\\F0BE5\"}.mdi-account-multiple-outline::before{content:\"\\F000F\"}.mdi-account-multiple-plus::before{content:\"\\F0010\"}.mdi-account-multiple-plus-outline::before{content:\"\\F0800\"}.mdi-account-multiple-remove::before{content:\"\\F120A\"}.mdi-account-multiple-remove-outline::before{content:\"\\F120B\"}.mdi-account-music::before{content:\"\\F0803\"}.mdi-account-music-outline::before{content:\"\\F0CE9\"}.mdi-account-network::before{content:\"\\F0011\"}.mdi-account-network-outline::before{content:\"\\F0BE6\"}.mdi-account-off::before{content:\"\\F0012\"}.mdi-account-off-outline::before{content:\"\\F0BE7\"}.mdi-account-outline::before{content:\"\\F0013\"}.mdi-account-plus::before{content:\"\\F0014\"}.mdi-account-plus-outline::before{content:\"\\F0801\"}.mdi-account-question::before{content:\"\\F0B59\"}.mdi-account-question-outline::before{content:\"\\F0B5A\"}.mdi-account-reactivate::before{content:\"\\F152B\"}.mdi-account-reactivate-outline::before{content:\"\\F152C\"}.mdi-account-remove::before{content:\"\\F0015\"}.mdi-account-remove-outline::before{content:\"\\F0AED\"}.mdi-account-search::before{content:\"\\F0016\"}.mdi-account-search-outline::before{content:\"\\F0935\"}.mdi-account-settings::before{content:\"\\F0630\"}.mdi-account-settings-outline::before{content:\"\\F10C9\"}.mdi-account-star::before{content:\"\\F0017\"}.mdi-account-star-outline::before{content:\"\\F0BE8\"}.mdi-account-supervisor::before{content:\"\\F0A8B\"}.mdi-account-supervisor-circle::before{content:\"\\F0A8C\"}.mdi-account-supervisor-circle-outline::before{content:\"\\F14EC\"}.mdi-account-supervisor-outline::before{content:\"\\F112D\"}.mdi-account-switch::before{content:\"\\F0019\"}.mdi-account-switch-outline::before{content:\"\\F04CB\"}.mdi-account-tie::before{content:\"\\F0CE3\"}.mdi-account-tie-outline::before{content:\"\\F10CA\"}.mdi-account-tie-voice::before{content:\"\\F1308\"}.mdi-account-tie-voice-off::before{content:\"\\F130A\"}.mdi-account-tie-voice-off-outline::before{content:\"\\F130B\"}.mdi-account-tie-voice-outline::before{content:\"\\F1309\"}.mdi-account-voice::before{content:\"\\F05CB\"}.mdi-adjust::before{content:\"\\F001A\"}.mdi-adobe::before{content:\"\\F0936\"}.mdi-adobe-acrobat::before{content:\"\\F0F9D\"}.mdi-air-conditioner::before{content:\"\\F001B\"}.mdi-air-filter::before{content:\"\\F0D43\"}.mdi-air-horn::before{content:\"\\F0DAC\"}.mdi-air-humidifier::before{content:\"\\F1099\"}.mdi-air-humidifier-off::before{content:\"\\F1466\"}.mdi-air-purifier::before{content:\"\\F0D44\"}.mdi-airbag::before{content:\"\\F0BE9\"}.mdi-airballoon::before{content:\"\\F001C\"}.mdi-airballoon-outline::before{content:\"\\F100B\"}.mdi-airplane::before{content:\"\\F001D\"}.mdi-airplane-landing::before{content:\"\\F05D4\"}.mdi-airplane-off::before{content:\"\\F001E\"}.mdi-airplane-takeoff::before{content:\"\\F05D5\"}.mdi-airport::before{content:\"\\F084B\"}.mdi-alarm::before{content:\"\\F0020\"}.mdi-alarm-bell::before{content:\"\\F078E\"}.mdi-alarm-check::before{content:\"\\F0021\"}.mdi-alarm-light::before{content:\"\\F078F\"}.mdi-alarm-light-outline::before{content:\"\\F0BEA\"}.mdi-alarm-multiple::before{content:\"\\F0022\"}.mdi-alarm-note::before{content:\"\\F0E71\"}.mdi-alarm-note-off::before{content:\"\\F0E72\"}.mdi-alarm-off::before{content:\"\\F0023\"}.mdi-alarm-panel::before{content:\"\\F15C4\"}.mdi-alarm-panel-outline::before{content:\"\\F15C5\"}.mdi-alarm-plus::before{content:\"\\F0024\"}.mdi-alarm-snooze::before{content:\"\\F068E\"}.mdi-album::before{content:\"\\F0025\"}.mdi-alert::before{content:\"\\F0026\"}.mdi-alert-box::before{content:\"\\F0027\"}.mdi-alert-box-outline::before{content:\"\\F0CE4\"}.mdi-alert-circle::before{content:\"\\F0028\"}.mdi-alert-circle-check::before{content:\"\\F11ED\"}.mdi-alert-circle-check-outline::before{content:\"\\F11EE\"}.mdi-alert-circle-outline::before{content:\"\\F05D6\"}.mdi-alert-decagram::before{content:\"\\F06BD\"}.mdi-alert-decagram-outline::before{content:\"\\F0CE5\"}.mdi-alert-minus::before{content:\"\\F14BB\"}.mdi-alert-minus-outline::before{content:\"\\F14BE\"}.mdi-alert-octagon::before{content:\"\\F0029\"}.mdi-alert-octagon-outline::before{content:\"\\F0CE6\"}.mdi-alert-octagram::before{content:\"\\F0767\"}.mdi-alert-octagram-outline::before{content:\"\\F0CE7\"}.mdi-alert-outline::before{content:\"\\F002A\"}.mdi-alert-plus::before{content:\"\\F14BA\"}.mdi-alert-plus-outline::before{content:\"\\F14BD\"}.mdi-alert-remove::before{content:\"\\F14BC\"}.mdi-alert-remove-outline::before{content:\"\\F14BF\"}.mdi-alert-rhombus::before{content:\"\\F11CE\"}.mdi-alert-rhombus-outline::before{content:\"\\F11CF\"}.mdi-alien::before{content:\"\\F089A\"}.mdi-alien-outline::before{content:\"\\F10CB\"}.mdi-align-horizontal-center::before{content:\"\\F11C3\"}.mdi-align-horizontal-left::before{content:\"\\F11C2\"}.mdi-align-horizontal-right::before{content:\"\\F11C4\"}.mdi-align-vertical-bottom::before{content:\"\\F11C5\"}.mdi-align-vertical-center::before{content:\"\\F11C6\"}.mdi-align-vertical-top::before{content:\"\\F11C7\"}.mdi-all-inclusive::before{content:\"\\F06BE\"}.mdi-allergy::before{content:\"\\F1258\"}.mdi-alpha::before{content:\"\\F002B\"}.mdi-alpha-a::before{content:\"\\F0AEE\"}.mdi-alpha-a-box::before{content:\"\\F0B08\"}.mdi-alpha-a-box-outline::before{content:\"\\F0BEB\"}.mdi-alpha-a-circle::before{content:\"\\F0BEC\"}.mdi-alpha-a-circle-outline::before{content:\"\\F0BED\"}.mdi-alpha-b::before{content:\"\\F0AEF\"}.mdi-alpha-b-box::before{content:\"\\F0B09\"}.mdi-alpha-b-box-outline::before{content:\"\\F0BEE\"}.mdi-alpha-b-circle::before{content:\"\\F0BEF\"}.mdi-alpha-b-circle-outline::before{content:\"\\F0BF0\"}.mdi-alpha-c::before{content:\"\\F0AF0\"}.mdi-alpha-c-box::before{content:\"\\F0B0A\"}.mdi-alpha-c-box-outline::before{content:\"\\F0BF1\"}.mdi-alpha-c-circle::before{content:\"\\F0BF2\"}.mdi-alpha-c-circle-outline::before{content:\"\\F0BF3\"}.mdi-alpha-d::before{content:\"\\F0AF1\"}.mdi-alpha-d-box::before{content:\"\\F0B0B\"}.mdi-alpha-d-box-outline::before{content:\"\\F0BF4\"}.mdi-alpha-d-circle::before{content:\"\\F0BF5\"}.mdi-alpha-d-circle-outline::before{content:\"\\F0BF6\"}.mdi-alpha-e::before{content:\"\\F0AF2\"}.mdi-alpha-e-box::before{content:\"\\F0B0C\"}.mdi-alpha-e-box-outline::before{content:\"\\F0BF7\"}.mdi-alpha-e-circle::before{content:\"\\F0BF8\"}.mdi-alpha-e-circle-outline::before{content:\"\\F0BF9\"}.mdi-alpha-f::before{content:\"\\F0AF3\"}.mdi-alpha-f-box::before{content:\"\\F0B0D\"}.mdi-alpha-f-box-outline::before{content:\"\\F0BFA\"}.mdi-alpha-f-circle::before{content:\"\\F0BFB\"}.mdi-alpha-f-circle-outline::before{content:\"\\F0BFC\"}.mdi-alpha-g::before{content:\"\\F0AF4\"}.mdi-alpha-g-box::before{content:\"\\F0B0E\"}.mdi-alpha-g-box-outline::before{content:\"\\F0BFD\"}.mdi-alpha-g-circle::before{content:\"\\F0BFE\"}.mdi-alpha-g-circle-outline::before{content:\"\\F0BFF\"}.mdi-alpha-h::before{content:\"\\F0AF5\"}.mdi-alpha-h-box::before{content:\"\\F0B0F\"}.mdi-alpha-h-box-outline::before{content:\"\\F0C00\"}.mdi-alpha-h-circle::before{content:\"\\F0C01\"}.mdi-alpha-h-circle-outline::before{content:\"\\F0C02\"}.mdi-alpha-i::before{content:\"\\F0AF6\"}.mdi-alpha-i-box::before{content:\"\\F0B10\"}.mdi-alpha-i-box-outline::before{content:\"\\F0C03\"}.mdi-alpha-i-circle::before{content:\"\\F0C04\"}.mdi-alpha-i-circle-outline::before{content:\"\\F0C05\"}.mdi-alpha-j::before{content:\"\\F0AF7\"}.mdi-alpha-j-box::before{content:\"\\F0B11\"}.mdi-alpha-j-box-outline::before{content:\"\\F0C06\"}.mdi-alpha-j-circle::before{content:\"\\F0C07\"}.mdi-alpha-j-circle-outline::before{content:\"\\F0C08\"}.mdi-alpha-k::before{content:\"\\F0AF8\"}.mdi-alpha-k-box::before{content:\"\\F0B12\"}.mdi-alpha-k-box-outline::before{content:\"\\F0C09\"}.mdi-alpha-k-circle::before{content:\"\\F0C0A\"}.mdi-alpha-k-circle-outline::before{content:\"\\F0C0B\"}.mdi-alpha-l::before{content:\"\\F0AF9\"}.mdi-alpha-l-box::before{content:\"\\F0B13\"}.mdi-alpha-l-box-outline::before{content:\"\\F0C0C\"}.mdi-alpha-l-circle::before{content:\"\\F0C0D\"}.mdi-alpha-l-circle-outline::before{content:\"\\F0C0E\"}.mdi-alpha-m::before{content:\"\\F0AFA\"}.mdi-alpha-m-box::before{content:\"\\F0B14\"}.mdi-alpha-m-box-outline::before{content:\"\\F0C0F\"}.mdi-alpha-m-circle::before{content:\"\\F0C10\"}.mdi-alpha-m-circle-outline::before{content:\"\\F0C11\"}.mdi-alpha-n::before{content:\"\\F0AFB\"}.mdi-alpha-n-box::before{content:\"\\F0B15\"}.mdi-alpha-n-box-outline::before{content:\"\\F0C12\"}.mdi-alpha-n-circle::before{content:\"\\F0C13\"}.mdi-alpha-n-circle-outline::before{content:\"\\F0C14\"}.mdi-alpha-o::before{content:\"\\F0AFC\"}.mdi-alpha-o-box::before{content:\"\\F0B16\"}.mdi-alpha-o-box-outline::before{content:\"\\F0C15\"}.mdi-alpha-o-circle::before{content:\"\\F0C16\"}.mdi-alpha-o-circle-outline::before{content:\"\\F0C17\"}.mdi-alpha-p::before{content:\"\\F0AFD\"}.mdi-alpha-p-box::before{content:\"\\F0B17\"}.mdi-alpha-p-box-outline::before{content:\"\\F0C18\"}.mdi-alpha-p-circle::before{content:\"\\F0C19\"}.mdi-alpha-p-circle-outline::before{content:\"\\F0C1A\"}.mdi-alpha-q::before{content:\"\\F0AFE\"}.mdi-alpha-q-box::before{content:\"\\F0B18\"}.mdi-alpha-q-box-outline::before{content:\"\\F0C1B\"}.mdi-alpha-q-circle::before{content:\"\\F0C1C\"}.mdi-alpha-q-circle-outline::before{content:\"\\F0C1D\"}.mdi-alpha-r::before{content:\"\\F0AFF\"}.mdi-alpha-r-box::before{content:\"\\F0B19\"}.mdi-alpha-r-box-outline::before{content:\"\\F0C1E\"}.mdi-alpha-r-circle::before{content:\"\\F0C1F\"}.mdi-alpha-r-circle-outline::before{content:\"\\F0C20\"}.mdi-alpha-s::before{content:\"\\F0B00\"}.mdi-alpha-s-box::before{content:\"\\F0B1A\"}.mdi-alpha-s-box-outline::before{content:\"\\F0C21\"}.mdi-alpha-s-circle::before{content:\"\\F0C22\"}.mdi-alpha-s-circle-outline::before{content:\"\\F0C23\"}.mdi-alpha-t::before{content:\"\\F0B01\"}.mdi-alpha-t-box::before{content:\"\\F0B1B\"}.mdi-alpha-t-box-outline::before{content:\"\\F0C24\"}.mdi-alpha-t-circle::before{content:\"\\F0C25\"}.mdi-alpha-t-circle-outline::before{content:\"\\F0C26\"}.mdi-alpha-u::before{content:\"\\F0B02\"}.mdi-alpha-u-box::before{content:\"\\F0B1C\"}.mdi-alpha-u-box-outline::before{content:\"\\F0C27\"}.mdi-alpha-u-circle::before{content:\"\\F0C28\"}.mdi-alpha-u-circle-outline::before{content:\"\\F0C29\"}.mdi-alpha-v::before{content:\"\\F0B03\"}.mdi-alpha-v-box::before{content:\"\\F0B1D\"}.mdi-alpha-v-box-outline::before{content:\"\\F0C2A\"}.mdi-alpha-v-circle::before{content:\"\\F0C2B\"}.mdi-alpha-v-circle-outline::before{content:\"\\F0C2C\"}.mdi-alpha-w::before{content:\"\\F0B04\"}.mdi-alpha-w-box::before{content:\"\\F0B1E\"}.mdi-alpha-w-box-outline::before{content:\"\\F0C2D\"}.mdi-alpha-w-circle::before{content:\"\\F0C2E\"}.mdi-alpha-w-circle-outline::before{content:\"\\F0C2F\"}.mdi-alpha-x::before{content:\"\\F0B05\"}.mdi-alpha-x-box::before{content:\"\\F0B1F\"}.mdi-alpha-x-box-outline::before{content:\"\\F0C30\"}.mdi-alpha-x-circle::before{content:\"\\F0C31\"}.mdi-alpha-x-circle-outline::before{content:\"\\F0C32\"}.mdi-alpha-y::before{content:\"\\F0B06\"}.mdi-alpha-y-box::before{content:\"\\F0B20\"}.mdi-alpha-y-box-outline::before{content:\"\\F0C33\"}.mdi-alpha-y-circle::before{content:\"\\F0C34\"}.mdi-alpha-y-circle-outline::before{content:\"\\F0C35\"}.mdi-alpha-z::before{content:\"\\F0B07\"}.mdi-alpha-z-box::before{content:\"\\F0B21\"}.mdi-alpha-z-box-outline::before{content:\"\\F0C36\"}.mdi-alpha-z-circle::before{content:\"\\F0C37\"}.mdi-alpha-z-circle-outline::before{content:\"\\F0C38\"}.mdi-alphabet-aurebesh::before{content:\"\\F132C\"}.mdi-alphabet-cyrillic::before{content:\"\\F132D\"}.mdi-alphabet-greek::before{content:\"\\F132E\"}.mdi-alphabet-latin::before{content:\"\\F132F\"}.mdi-alphabet-piqad::before{content:\"\\F1330\"}.mdi-alphabet-tengwar::before{content:\"\\F1337\"}.mdi-alphabetical::before{content:\"\\F002C\"}.mdi-alphabetical-off::before{content:\"\\F100C\"}.mdi-alphabetical-variant::before{content:\"\\F100D\"}.mdi-alphabetical-variant-off::before{content:\"\\F100E\"}.mdi-altimeter::before{content:\"\\F05D7\"}.mdi-amazon::before{content:\"\\F002D\"}.mdi-amazon-alexa::before{content:\"\\F08C6\"}.mdi-ambulance::before{content:\"\\F002F\"}.mdi-ammunition::before{content:\"\\F0CE8\"}.mdi-ampersand::before{content:\"\\F0A8D\"}.mdi-amplifier::before{content:\"\\F0030\"}.mdi-amplifier-off::before{content:\"\\F11B5\"}.mdi-anchor::before{content:\"\\F0031\"}.mdi-android::before{content:\"\\F0032\"}.mdi-android-auto::before{content:\"\\F0A8E\"}.mdi-android-debug-bridge::before{content:\"\\F0033\"}.mdi-android-messages::before{content:\"\\F0D45\"}.mdi-android-studio::before{content:\"\\F0034\"}.mdi-angle-acute::before{content:\"\\F0937\"}.mdi-angle-obtuse::before{content:\"\\F0938\"}.mdi-angle-right::before{content:\"\\F0939\"}.mdi-angular::before{content:\"\\F06B2\"}.mdi-angularjs::before{content:\"\\F06BF\"}.mdi-animation::before{content:\"\\F05D8\"}.mdi-animation-outline::before{content:\"\\F0A8F\"}.mdi-animation-play::before{content:\"\\F093A\"}.mdi-animation-play-outline::before{content:\"\\F0A90\"}.mdi-ansible::before{content:\"\\F109A\"}.mdi-antenna::before{content:\"\\F1119\"}.mdi-anvil::before{content:\"\\F089B\"}.mdi-apache-kafka::before{content:\"\\F100F\"}.mdi-api::before{content:\"\\F109B\"}.mdi-api-off::before{content:\"\\F1257\"}.mdi-apple::before{content:\"\\F0035\"}.mdi-apple-airplay::before{content:\"\\F001F\"}.mdi-apple-finder::before{content:\"\\F0036\"}.mdi-apple-icloud::before{content:\"\\F0038\"}.mdi-apple-ios::before{content:\"\\F0037\"}.mdi-apple-keyboard-caps::before{content:\"\\F0632\"}.mdi-apple-keyboard-command::before{content:\"\\F0633\"}.mdi-apple-keyboard-control::before{content:\"\\F0634\"}.mdi-apple-keyboard-option::before{content:\"\\F0635\"}.mdi-apple-keyboard-shift::before{content:\"\\F0636\"}.mdi-apple-safari::before{content:\"\\F0039\"}.mdi-application::before{content:\"\\F0614\"}.mdi-application-cog::before{content:\"\\F1577\"}.mdi-application-export::before{content:\"\\F0DAD\"}.mdi-application-import::before{content:\"\\F0DAE\"}.mdi-application-settings::before{content:\"\\F1555\"}.mdi-approximately-equal::before{content:\"\\F0F9E\"}.mdi-approximately-equal-box::before{content:\"\\F0F9F\"}.mdi-apps::before{content:\"\\F003B\"}.mdi-apps-box::before{content:\"\\F0D46\"}.mdi-arch::before{content:\"\\F08C7\"}.mdi-archive::before{content:\"\\F003C\"}.mdi-archive-alert::before{content:\"\\F14FD\"}.mdi-archive-alert-outline::before{content:\"\\F14FE\"}.mdi-archive-arrow-down::before{content:\"\\F1259\"}.mdi-archive-arrow-down-outline::before{content:\"\\F125A\"}.mdi-archive-arrow-up::before{content:\"\\F125B\"}.mdi-archive-arrow-up-outline::before{content:\"\\F125C\"}.mdi-archive-outline::before{content:\"\\F120E\"}.mdi-arm-flex::before{content:\"\\F0FD7\"}.mdi-arm-flex-outline::before{content:\"\\F0FD6\"}.mdi-arrange-bring-forward::before{content:\"\\F003D\"}.mdi-arrange-bring-to-front::before{content:\"\\F003E\"}.mdi-arrange-send-backward::before{content:\"\\F003F\"}.mdi-arrange-send-to-back::before{content:\"\\F0040\"}.mdi-arrow-all::before{content:\"\\F0041\"}.mdi-arrow-bottom-left::before{content:\"\\F0042\"}.mdi-arrow-bottom-left-bold-outline::before{content:\"\\F09B7\"}.mdi-arrow-bottom-left-thick::before{content:\"\\F09B8\"}.mdi-arrow-bottom-left-thin-circle-outline::before{content:\"\\F1596\"}.mdi-arrow-bottom-right::before{content:\"\\F0043\"}.mdi-arrow-bottom-right-bold-outline::before{content:\"\\F09B9\"}.mdi-arrow-bottom-right-thick::before{content:\"\\F09BA\"}.mdi-arrow-bottom-right-thin-circle-outline::before{content:\"\\F1595\"}.mdi-arrow-collapse::before{content:\"\\F0615\"}.mdi-arrow-collapse-all::before{content:\"\\F0044\"}.mdi-arrow-collapse-down::before{content:\"\\F0792\"}.mdi-arrow-collapse-horizontal::before{content:\"\\F084C\"}.mdi-arrow-collapse-left::before{content:\"\\F0793\"}.mdi-arrow-collapse-right::before{content:\"\\F0794\"}.mdi-arrow-collapse-up::before{content:\"\\F0795\"}.mdi-arrow-collapse-vertical::before{content:\"\\F084D\"}.mdi-arrow-decision::before{content:\"\\F09BB\"}.mdi-arrow-decision-auto::before{content:\"\\F09BC\"}.mdi-arrow-decision-auto-outline::before{content:\"\\F09BD\"}.mdi-arrow-decision-outline::before{content:\"\\F09BE\"}.mdi-arrow-down::before{content:\"\\F0045\"}.mdi-arrow-down-bold::before{content:\"\\F072E\"}.mdi-arrow-down-bold-box::before{content:\"\\F072F\"}.mdi-arrow-down-bold-box-outline::before{content:\"\\F0730\"}.mdi-arrow-down-bold-circle::before{content:\"\\F0047\"}.mdi-arrow-down-bold-circle-outline::before{content:\"\\F0048\"}.mdi-arrow-down-bold-hexagon-outline::before{content:\"\\F0049\"}.mdi-arrow-down-bold-outline::before{content:\"\\F09BF\"}.mdi-arrow-down-box::before{content:\"\\F06C0\"}.mdi-arrow-down-circle::before{content:\"\\F0CDB\"}.mdi-arrow-down-circle-outline::before{content:\"\\F0CDC\"}.mdi-arrow-down-drop-circle::before{content:\"\\F004A\"}.mdi-arrow-down-drop-circle-outline::before{content:\"\\F004B\"}.mdi-arrow-down-thick::before{content:\"\\F0046\"}.mdi-arrow-down-thin-circle-outline::before{content:\"\\F1599\"}.mdi-arrow-expand::before{content:\"\\F0616\"}.mdi-arrow-expand-all::before{content:\"\\F004C\"}.mdi-arrow-expand-down::before{content:\"\\F0796\"}.mdi-arrow-expand-horizontal::before{content:\"\\F084E\"}.mdi-arrow-expand-left::before{content:\"\\F0797\"}.mdi-arrow-expand-right::before{content:\"\\F0798\"}.mdi-arrow-expand-up::before{content:\"\\F0799\"}.mdi-arrow-expand-vertical::before{content:\"\\F084F\"}.mdi-arrow-horizontal-lock::before{content:\"\\F115B\"}.mdi-arrow-left::before{content:\"\\F004D\"}.mdi-arrow-left-bold::before{content:\"\\F0731\"}.mdi-arrow-left-bold-box::before{content:\"\\F0732\"}.mdi-arrow-left-bold-box-outline::before{content:\"\\F0733\"}.mdi-arrow-left-bold-circle::before{content:\"\\F004F\"}.mdi-arrow-left-bold-circle-outline::before{content:\"\\F0050\"}.mdi-arrow-left-bold-hexagon-outline::before{content:\"\\F0051\"}.mdi-arrow-left-bold-outline::before{content:\"\\F09C0\"}.mdi-arrow-left-box::before{content:\"\\F06C1\"}.mdi-arrow-left-circle::before{content:\"\\F0CDD\"}.mdi-arrow-left-circle-outline::before{content:\"\\F0CDE\"}.mdi-arrow-left-drop-circle::before{content:\"\\F0052\"}.mdi-arrow-left-drop-circle-outline::before{content:\"\\F0053\"}.mdi-arrow-left-right::before{content:\"\\F0E73\"}.mdi-arrow-left-right-bold::before{content:\"\\F0E74\"}.mdi-arrow-left-right-bold-outline::before{content:\"\\F09C1\"}.mdi-arrow-left-thick::before{content:\"\\F004E\"}.mdi-arrow-left-thin-circle-outline::before{content:\"\\F159A\"}.mdi-arrow-right::before{content:\"\\F0054\"}.mdi-arrow-right-bold::before{content:\"\\F0734\"}.mdi-arrow-right-bold-box::before{content:\"\\F0735\"}.mdi-arrow-right-bold-box-outline::before{content:\"\\F0736\"}.mdi-arrow-right-bold-circle::before{content:\"\\F0056\"}.mdi-arrow-right-bold-circle-outline::before{content:\"\\F0057\"}.mdi-arrow-right-bold-hexagon-outline::before{content:\"\\F0058\"}.mdi-arrow-right-bold-outline::before{content:\"\\F09C2\"}.mdi-arrow-right-box::before{content:\"\\F06C2\"}.mdi-arrow-right-circle::before{content:\"\\F0CDF\"}.mdi-arrow-right-circle-outline::before{content:\"\\F0CE0\"}.mdi-arrow-right-drop-circle::before{content:\"\\F0059\"}.mdi-arrow-right-drop-circle-outline::before{content:\"\\F005A\"}.mdi-arrow-right-thick::before{content:\"\\F0055\"}.mdi-arrow-right-thin-circle-outline::before{content:\"\\F1598\"}.mdi-arrow-split-horizontal::before{content:\"\\F093B\"}.mdi-arrow-split-vertical::before{content:\"\\F093C\"}.mdi-arrow-top-left::before{content:\"\\F005B\"}.mdi-arrow-top-left-bold-outline::before{content:\"\\F09C3\"}.mdi-arrow-top-left-bottom-right::before{content:\"\\F0E75\"}.mdi-arrow-top-left-bottom-right-bold::before{content:\"\\F0E76\"}.mdi-arrow-top-left-thick::before{content:\"\\F09C4\"}.mdi-arrow-top-left-thin-circle-outline::before{content:\"\\F1593\"}.mdi-arrow-top-right::before{content:\"\\F005C\"}.mdi-arrow-top-right-bold-outline::before{content:\"\\F09C5\"}.mdi-arrow-top-right-bottom-left::before{content:\"\\F0E77\"}.mdi-arrow-top-right-bottom-left-bold::before{content:\"\\F0E78\"}.mdi-arrow-top-right-thick::before{content:\"\\F09C6\"}.mdi-arrow-top-right-thin-circle-outline::before{content:\"\\F1594\"}.mdi-arrow-up::before{content:\"\\F005D\"}.mdi-arrow-up-bold::before{content:\"\\F0737\"}.mdi-arrow-up-bold-box::before{content:\"\\F0738\"}.mdi-arrow-up-bold-box-outline::before{content:\"\\F0739\"}.mdi-arrow-up-bold-circle::before{content:\"\\F005F\"}.mdi-arrow-up-bold-circle-outline::before{content:\"\\F0060\"}.mdi-arrow-up-bold-hexagon-outline::before{content:\"\\F0061\"}.mdi-arrow-up-bold-outline::before{content:\"\\F09C7\"}.mdi-arrow-up-box::before{content:\"\\F06C3\"}.mdi-arrow-up-circle::before{content:\"\\F0CE1\"}.mdi-arrow-up-circle-outline::before{content:\"\\F0CE2\"}.mdi-arrow-up-down::before{content:\"\\F0E79\"}.mdi-arrow-up-down-bold::before{content:\"\\F0E7A\"}.mdi-arrow-up-down-bold-outline::before{content:\"\\F09C8\"}.mdi-arrow-up-drop-circle::before{content:\"\\F0062\"}.mdi-arrow-up-drop-circle-outline::before{content:\"\\F0063\"}.mdi-arrow-up-thick::before{content:\"\\F005E\"}.mdi-arrow-up-thin-circle-outline::before{content:\"\\F1597\"}.mdi-arrow-vertical-lock::before{content:\"\\F115C\"}.mdi-artstation::before{content:\"\\F0B5B\"}.mdi-aspect-ratio::before{content:\"\\F0A24\"}.mdi-assistant::before{content:\"\\F0064\"}.mdi-asterisk::before{content:\"\\F06C4\"}.mdi-at::before{content:\"\\F0065\"}.mdi-atlassian::before{content:\"\\F0804\"}.mdi-atm::before{content:\"\\F0D47\"}.mdi-atom::before{content:\"\\F0768\"}.mdi-atom-variant::before{content:\"\\F0E7B\"}.mdi-attachment::before{content:\"\\F0066\"}.mdi-audio-video::before{content:\"\\F093D\"}.mdi-audio-video-off::before{content:\"\\F11B6\"}.mdi-augmented-reality::before{content:\"\\F0850\"}.mdi-auto-download::before{content:\"\\F137E\"}.mdi-auto-fix::before{content:\"\\F0068\"}.mdi-auto-upload::before{content:\"\\F0069\"}.mdi-autorenew::before{content:\"\\F006A\"}.mdi-av-timer::before{content:\"\\F006B\"}.mdi-aws::before{content:\"\\F0E0F\"}.mdi-axe::before{content:\"\\F08C8\"}.mdi-axis::before{content:\"\\F0D48\"}.mdi-axis-arrow::before{content:\"\\F0D49\"}.mdi-axis-arrow-info::before{content:\"\\F140E\"}.mdi-axis-arrow-lock::before{content:\"\\F0D4A\"}.mdi-axis-lock::before{content:\"\\F0D4B\"}.mdi-axis-x-arrow::before{content:\"\\F0D4C\"}.mdi-axis-x-arrow-lock::before{content:\"\\F0D4D\"}.mdi-axis-x-rotate-clockwise::before{content:\"\\F0D4E\"}.mdi-axis-x-rotate-counterclockwise::before{content:\"\\F0D4F\"}.mdi-axis-x-y-arrow-lock::before{content:\"\\F0D50\"}.mdi-axis-y-arrow::before{content:\"\\F0D51\"}.mdi-axis-y-arrow-lock::before{content:\"\\F0D52\"}.mdi-axis-y-rotate-clockwise::before{content:\"\\F0D53\"}.mdi-axis-y-rotate-counterclockwise::before{content:\"\\F0D54\"}.mdi-axis-z-arrow::before{content:\"\\F0D55\"}.mdi-axis-z-arrow-lock::before{content:\"\\F0D56\"}.mdi-axis-z-rotate-clockwise::before{content:\"\\F0D57\"}.mdi-axis-z-rotate-counterclockwise::before{content:\"\\F0D58\"}.mdi-babel::before{content:\"\\F0A25\"}.mdi-baby::before{content:\"\\F006C\"}.mdi-baby-bottle::before{content:\"\\F0F39\"}.mdi-baby-bottle-outline::before{content:\"\\F0F3A\"}.mdi-baby-buggy::before{content:\"\\F13E0\"}.mdi-baby-carriage::before{content:\"\\F068F\"}.mdi-baby-carriage-off::before{content:\"\\F0FA0\"}.mdi-baby-face::before{content:\"\\F0E7C\"}.mdi-baby-face-outline::before{content:\"\\F0E7D\"}.mdi-backburger::before{content:\"\\F006D\"}.mdi-backspace::before{content:\"\\F006E\"}.mdi-backspace-outline::before{content:\"\\F0B5C\"}.mdi-backspace-reverse::before{content:\"\\F0E7E\"}.mdi-backspace-reverse-outline::before{content:\"\\F0E7F\"}.mdi-backup-restore::before{content:\"\\F006F\"}.mdi-bacteria::before{content:\"\\F0ED5\"}.mdi-bacteria-outline::before{content:\"\\F0ED6\"}.mdi-badge-account::before{content:\"\\F0DA7\"}.mdi-badge-account-alert::before{content:\"\\F0DA8\"}.mdi-badge-account-alert-outline::before{content:\"\\F0DA9\"}.mdi-badge-account-horizontal::before{content:\"\\F0E0D\"}.mdi-badge-account-horizontal-outline::before{content:\"\\F0E0E\"}.mdi-badge-account-outline::before{content:\"\\F0DAA\"}.mdi-badminton::before{content:\"\\F0851\"}.mdi-bag-carry-on::before{content:\"\\F0F3B\"}.mdi-bag-carry-on-check::before{content:\"\\F0D65\"}.mdi-bag-carry-on-off::before{content:\"\\F0F3C\"}.mdi-bag-checked::before{content:\"\\F0F3D\"}.mdi-bag-personal::before{content:\"\\F0E10\"}.mdi-bag-personal-off::before{content:\"\\F0E11\"}.mdi-bag-personal-off-outline::before{content:\"\\F0E12\"}.mdi-bag-personal-outline::before{content:\"\\F0E13\"}.mdi-bag-suitcase::before{content:\"\\F158B\"}.mdi-bag-suitcase-off::before{content:\"\\F158D\"}.mdi-bag-suitcase-off-outline::before{content:\"\\F158E\"}.mdi-bag-suitcase-outline::before{content:\"\\F158C\"}.mdi-baguette::before{content:\"\\F0F3E\"}.mdi-balloon::before{content:\"\\F0A26\"}.mdi-ballot::before{content:\"\\F09C9\"}.mdi-ballot-outline::before{content:\"\\F09CA\"}.mdi-ballot-recount::before{content:\"\\F0C39\"}.mdi-ballot-recount-outline::before{content:\"\\F0C3A\"}.mdi-bandage::before{content:\"\\F0DAF\"}.mdi-bandcamp::before{content:\"\\F0675\"}.mdi-bank::before{content:\"\\F0070\"}.mdi-bank-check::before{content:\"\\F1655\"}.mdi-bank-minus::before{content:\"\\F0DB0\"}.mdi-bank-off::before{content:\"\\F1656\"}.mdi-bank-off-outline::before{content:\"\\F1657\"}.mdi-bank-outline::before{content:\"\\F0E80\"}.mdi-bank-plus::before{content:\"\\F0DB1\"}.mdi-bank-remove::before{content:\"\\F0DB2\"}.mdi-bank-transfer::before{content:\"\\F0A27\"}.mdi-bank-transfer-in::before{content:\"\\F0A28\"}.mdi-bank-transfer-out::before{content:\"\\F0A29\"}.mdi-barcode::before{content:\"\\F0071\"}.mdi-barcode-off::before{content:\"\\F1236\"}.mdi-barcode-scan::before{content:\"\\F0072\"}.mdi-barley::before{content:\"\\F0073\"}.mdi-barley-off::before{content:\"\\F0B5D\"}.mdi-barn::before{content:\"\\F0B5E\"}.mdi-barrel::before{content:\"\\F0074\"}.mdi-baseball::before{content:\"\\F0852\"}.mdi-baseball-bat::before{content:\"\\F0853\"}.mdi-baseball-diamond::before{content:\"\\F15EC\"}.mdi-baseball-diamond-outline::before{content:\"\\F15ED\"}.mdi-bash::before{content:\"\\F1183\"}.mdi-basket::before{content:\"\\F0076\"}.mdi-basket-fill::before{content:\"\\F0077\"}.mdi-basket-minus::before{content:\"\\F1523\"}.mdi-basket-minus-outline::before{content:\"\\F1524\"}.mdi-basket-off::before{content:\"\\F1525\"}.mdi-basket-off-outline::before{content:\"\\F1526\"}.mdi-basket-outline::before{content:\"\\F1181\"}.mdi-basket-plus::before{content:\"\\F1527\"}.mdi-basket-plus-outline::before{content:\"\\F1528\"}.mdi-basket-remove::before{content:\"\\F1529\"}.mdi-basket-remove-outline::before{content:\"\\F152A\"}.mdi-basket-unfill::before{content:\"\\F0078\"}.mdi-basketball::before{content:\"\\F0806\"}.mdi-basketball-hoop::before{content:\"\\F0C3B\"}.mdi-basketball-hoop-outline::before{content:\"\\F0C3C\"}.mdi-bat::before{content:\"\\F0B5F\"}.mdi-battery::before{content:\"\\F0079\"}.mdi-battery-10::before{content:\"\\F007A\"}.mdi-battery-10-bluetooth::before{content:\"\\F093E\"}.mdi-battery-20::before{content:\"\\F007B\"}.mdi-battery-20-bluetooth::before{content:\"\\F093F\"}.mdi-battery-30::before{content:\"\\F007C\"}.mdi-battery-30-bluetooth::before{content:\"\\F0940\"}.mdi-battery-40::before{content:\"\\F007D\"}.mdi-battery-40-bluetooth::before{content:\"\\F0941\"}.mdi-battery-50::before{content:\"\\F007E\"}.mdi-battery-50-bluetooth::before{content:\"\\F0942\"}.mdi-battery-60::before{content:\"\\F007F\"}.mdi-battery-60-bluetooth::before{content:\"\\F0943\"}.mdi-battery-70::before{content:\"\\F0080\"}.mdi-battery-70-bluetooth::before{content:\"\\F0944\"}.mdi-battery-80::before{content:\"\\F0081\"}.mdi-battery-80-bluetooth::before{content:\"\\F0945\"}.mdi-battery-90::before{content:\"\\F0082\"}.mdi-battery-90-bluetooth::before{content:\"\\F0946\"}.mdi-battery-alert::before{content:\"\\F0083\"}.mdi-battery-alert-bluetooth::before{content:\"\\F0947\"}.mdi-battery-alert-variant::before{content:\"\\F10CC\"}.mdi-battery-alert-variant-outline::before{content:\"\\F10CD\"}.mdi-battery-bluetooth::before{content:\"\\F0948\"}.mdi-battery-bluetooth-variant::before{content:\"\\F0949\"}.mdi-battery-charging::before{content:\"\\F0084\"}.mdi-battery-charging-10::before{content:\"\\F089C\"}.mdi-battery-charging-100::before{content:\"\\F0085\"}.mdi-battery-charging-20::before{content:\"\\F0086\"}.mdi-battery-charging-30::before{content:\"\\F0087\"}.mdi-battery-charging-40::before{content:\"\\F0088\"}.mdi-battery-charging-50::before{content:\"\\F089D\"}.mdi-battery-charging-60::before{content:\"\\F0089\"}.mdi-battery-charging-70::before{content:\"\\F089E\"}.mdi-battery-charging-80::before{content:\"\\F008A\"}.mdi-battery-charging-90::before{content:\"\\F008B\"}.mdi-battery-charging-high::before{content:\"\\F12A6\"}.mdi-battery-charging-low::before{content:\"\\F12A4\"}.mdi-battery-charging-medium::before{content:\"\\F12A5\"}.mdi-battery-charging-outline::before{content:\"\\F089F\"}.mdi-battery-charging-wireless::before{content:\"\\F0807\"}.mdi-battery-charging-wireless-10::before{content:\"\\F0808\"}.mdi-battery-charging-wireless-20::before{content:\"\\F0809\"}.mdi-battery-charging-wireless-30::before{content:\"\\F080A\"}.mdi-battery-charging-wireless-40::before{content:\"\\F080B\"}.mdi-battery-charging-wireless-50::before{content:\"\\F080C\"}.mdi-battery-charging-wireless-60::before{content:\"\\F080D\"}.mdi-battery-charging-wireless-70::before{content:\"\\F080E\"}.mdi-battery-charging-wireless-80::before{content:\"\\F080F\"}.mdi-battery-charging-wireless-90::before{content:\"\\F0810\"}.mdi-battery-charging-wireless-alert::before{content:\"\\F0811\"}.mdi-battery-charging-wireless-outline::before{content:\"\\F0812\"}.mdi-battery-heart::before{content:\"\\F120F\"}.mdi-battery-heart-outline::before{content:\"\\F1210\"}.mdi-battery-heart-variant::before{content:\"\\F1211\"}.mdi-battery-high::before{content:\"\\F12A3\"}.mdi-battery-low::before{content:\"\\F12A1\"}.mdi-battery-medium::before{content:\"\\F12A2\"}.mdi-battery-minus::before{content:\"\\F008C\"}.mdi-battery-negative::before{content:\"\\F008D\"}.mdi-battery-off::before{content:\"\\F125D\"}.mdi-battery-off-outline::before{content:\"\\F125E\"}.mdi-battery-outline::before{content:\"\\F008E\"}.mdi-battery-plus::before{content:\"\\F008F\"}.mdi-battery-positive::before{content:\"\\F0090\"}.mdi-battery-unknown::before{content:\"\\F0091\"}.mdi-battery-unknown-bluetooth::before{content:\"\\F094A\"}.mdi-battlenet::before{content:\"\\F0B60\"}.mdi-beach::before{content:\"\\F0092\"}.mdi-beaker::before{content:\"\\F0CEA\"}.mdi-beaker-alert::before{content:\"\\F1229\"}.mdi-beaker-alert-outline::before{content:\"\\F122A\"}.mdi-beaker-check::before{content:\"\\F122B\"}.mdi-beaker-check-outline::before{content:\"\\F122C\"}.mdi-beaker-minus::before{content:\"\\F122D\"}.mdi-beaker-minus-outline::before{content:\"\\F122E\"}.mdi-beaker-outline::before{content:\"\\F0690\"}.mdi-beaker-plus::before{content:\"\\F122F\"}.mdi-beaker-plus-outline::before{content:\"\\F1230\"}.mdi-beaker-question::before{content:\"\\F1231\"}.mdi-beaker-question-outline::before{content:\"\\F1232\"}.mdi-beaker-remove::before{content:\"\\F1233\"}.mdi-beaker-remove-outline::before{content:\"\\F1234\"}.mdi-bed::before{content:\"\\F02E3\"}.mdi-bed-double::before{content:\"\\F0FD4\"}.mdi-bed-double-outline::before{content:\"\\F0FD3\"}.mdi-bed-empty::before{content:\"\\F08A0\"}.mdi-bed-king::before{content:\"\\F0FD2\"}.mdi-bed-king-outline::before{content:\"\\F0FD1\"}.mdi-bed-outline::before{content:\"\\F0099\"}.mdi-bed-queen::before{content:\"\\F0FD0\"}.mdi-bed-queen-outline::before{content:\"\\F0FDB\"}.mdi-bed-single::before{content:\"\\F106D\"}.mdi-bed-single-outline::before{content:\"\\F106E\"}.mdi-bee::before{content:\"\\F0FA1\"}.mdi-bee-flower::before{content:\"\\F0FA2\"}.mdi-beehive-off-outline::before{content:\"\\F13ED\"}.mdi-beehive-outline::before{content:\"\\F10CE\"}.mdi-beekeeper::before{content:\"\\F14E2\"}.mdi-beer::before{content:\"\\F0098\"}.mdi-beer-outline::before{content:\"\\F130C\"}.mdi-bell::before{content:\"\\F009A\"}.mdi-bell-alert::before{content:\"\\F0D59\"}.mdi-bell-alert-outline::before{content:\"\\F0E81\"}.mdi-bell-cancel::before{content:\"\\F13E7\"}.mdi-bell-cancel-outline::before{content:\"\\F13E8\"}.mdi-bell-check::before{content:\"\\F11E5\"}.mdi-bell-check-outline::before{content:\"\\F11E6\"}.mdi-bell-circle::before{content:\"\\F0D5A\"}.mdi-bell-circle-outline::before{content:\"\\F0D5B\"}.mdi-bell-minus::before{content:\"\\F13E9\"}.mdi-bell-minus-outline::before{content:\"\\F13EA\"}.mdi-bell-off::before{content:\"\\F009B\"}.mdi-bell-off-outline::before{content:\"\\F0A91\"}.mdi-bell-outline::before{content:\"\\F009C\"}.mdi-bell-plus::before{content:\"\\F009D\"}.mdi-bell-plus-outline::before{content:\"\\F0A92\"}.mdi-bell-remove::before{content:\"\\F13EB\"}.mdi-bell-remove-outline::before{content:\"\\F13EC\"}.mdi-bell-ring::before{content:\"\\F009E\"}.mdi-bell-ring-outline::before{content:\"\\F009F\"}.mdi-bell-sleep::before{content:\"\\F00A0\"}.mdi-bell-sleep-outline::before{content:\"\\F0A93\"}.mdi-beta::before{content:\"\\F00A1\"}.mdi-betamax::before{content:\"\\F09CB\"}.mdi-biathlon::before{content:\"\\F0E14\"}.mdi-bicycle::before{content:\"\\F109C\"}.mdi-bicycle-basket::before{content:\"\\F1235\"}.mdi-bicycle-electric::before{content:\"\\F15B4\"}.mdi-bicycle-penny-farthing::before{content:\"\\F15E9\"}.mdi-bike::before{content:\"\\F00A3\"}.mdi-bike-fast::before{content:\"\\F111F\"}.mdi-billboard::before{content:\"\\F1010\"}.mdi-billiards::before{content:\"\\F0B61\"}.mdi-billiards-rack::before{content:\"\\F0B62\"}.mdi-binoculars::before{content:\"\\F00A5\"}.mdi-bio::before{content:\"\\F00A6\"}.mdi-biohazard::before{content:\"\\F00A7\"}.mdi-bird::before{content:\"\\F15C6\"}.mdi-bitbucket::before{content:\"\\F00A8\"}.mdi-bitcoin::before{content:\"\\F0813\"}.mdi-black-mesa::before{content:\"\\F00A9\"}.mdi-blender::before{content:\"\\F0CEB\"}.mdi-blender-software::before{content:\"\\F00AB\"}.mdi-blinds::before{content:\"\\F00AC\"}.mdi-blinds-open::before{content:\"\\F1011\"}.mdi-block-helper::before{content:\"\\F00AD\"}.mdi-blogger::before{content:\"\\F00AE\"}.mdi-blood-bag::before{content:\"\\F0CEC\"}.mdi-bluetooth::before{content:\"\\F00AF\"}.mdi-bluetooth-audio::before{content:\"\\F00B0\"}.mdi-bluetooth-connect::before{content:\"\\F00B1\"}.mdi-bluetooth-off::before{content:\"\\F00B2\"}.mdi-bluetooth-settings::before{content:\"\\F00B3\"}.mdi-bluetooth-transfer::before{content:\"\\F00B4\"}.mdi-blur::before{content:\"\\F00B5\"}.mdi-blur-linear::before{content:\"\\F00B6\"}.mdi-blur-off::before{content:\"\\F00B7\"}.mdi-blur-radial::before{content:\"\\F00B8\"}.mdi-bolnisi-cross::before{content:\"\\F0CED\"}.mdi-bolt::before{content:\"\\F0DB3\"}.mdi-bomb::before{content:\"\\F0691\"}.mdi-bomb-off::before{content:\"\\F06C5\"}.mdi-bone::before{content:\"\\F00B9\"}.mdi-book::before{content:\"\\F00BA\"}.mdi-book-account::before{content:\"\\F13AD\"}.mdi-book-account-outline::before{content:\"\\F13AE\"}.mdi-book-alert::before{content:\"\\F167C\"}.mdi-book-alert-outline::before{content:\"\\F167D\"}.mdi-book-alphabet::before{content:\"\\F061D\"}.mdi-book-arrow-down::before{content:\"\\F167E\"}.mdi-book-arrow-down-outline::before{content:\"\\F167F\"}.mdi-book-arrow-left::before{content:\"\\F1680\"}.mdi-book-arrow-left-outline::before{content:\"\\F1681\"}.mdi-book-arrow-right::before{content:\"\\F1682\"}.mdi-book-arrow-right-outline::before{content:\"\\F1683\"}.mdi-book-arrow-up::before{content:\"\\F1684\"}.mdi-book-arrow-up-outline::before{content:\"\\F1685\"}.mdi-book-cancel::before{content:\"\\F1686\"}.mdi-book-cancel-outline::before{content:\"\\F1687\"}.mdi-book-check::before{content:\"\\F14F3\"}.mdi-book-check-outline::before{content:\"\\F14F4\"}.mdi-book-clock::before{content:\"\\F1688\"}.mdi-book-clock-outline::before{content:\"\\F1689\"}.mdi-book-cog::before{content:\"\\F168A\"}.mdi-book-cog-outline::before{content:\"\\F168B\"}.mdi-book-cross::before{content:\"\\F00A2\"}.mdi-book-edit::before{content:\"\\F168C\"}.mdi-book-edit-outline::before{content:\"\\F168D\"}.mdi-book-education::before{content:\"\\F16C9\"}.mdi-book-education-outline::before{content:\"\\F16CA\"}.mdi-book-information-variant::before{content:\"\\F106F\"}.mdi-book-lock::before{content:\"\\F079A\"}.mdi-book-lock-open::before{content:\"\\F079B\"}.mdi-book-lock-open-outline::before{content:\"\\F168E\"}.mdi-book-lock-outline::before{content:\"\\F168F\"}.mdi-book-marker::before{content:\"\\F1690\"}.mdi-book-marker-outline::before{content:\"\\F1691\"}.mdi-book-minus::before{content:\"\\F05D9\"}.mdi-book-minus-multiple::before{content:\"\\F0A94\"}.mdi-book-minus-multiple-outline::before{content:\"\\F090B\"}.mdi-book-minus-outline::before{content:\"\\F1692\"}.mdi-book-multiple::before{content:\"\\F00BB\"}.mdi-book-multiple-outline::before{content:\"\\F0436\"}.mdi-book-music::before{content:\"\\F0067\"}.mdi-book-music-outline::before{content:\"\\F1693\"}.mdi-book-off::before{content:\"\\F1694\"}.mdi-book-off-outline::before{content:\"\\F1695\"}.mdi-book-open::before{content:\"\\F00BD\"}.mdi-book-open-blank-variant::before{content:\"\\F00BE\"}.mdi-book-open-outline::before{content:\"\\F0B63\"}.mdi-book-open-page-variant::before{content:\"\\F05DA\"}.mdi-book-open-page-variant-outline::before{content:\"\\F15D6\"}.mdi-book-open-variant::before{content:\"\\F14F7\"}.mdi-book-outline::before{content:\"\\F0B64\"}.mdi-book-play::before{content:\"\\F0E82\"}.mdi-book-play-outline::before{content:\"\\F0E83\"}.mdi-book-plus::before{content:\"\\F05DB\"}.mdi-book-plus-multiple::before{content:\"\\F0A95\"}.mdi-book-plus-multiple-outline::before{content:\"\\F0ADE\"}.mdi-book-plus-outline::before{content:\"\\F1696\"}.mdi-book-refresh::before{content:\"\\F1697\"}.mdi-book-refresh-outline::before{content:\"\\F1698\"}.mdi-book-remove::before{content:\"\\F0A97\"}.mdi-book-remove-multiple::before{content:\"\\F0A96\"}.mdi-book-remove-multiple-outline::before{content:\"\\F04CA\"}.mdi-book-remove-outline::before{content:\"\\F1699\"}.mdi-book-search::before{content:\"\\F0E84\"}.mdi-book-search-outline::before{content:\"\\F0E85\"}.mdi-book-settings::before{content:\"\\F169A\"}.mdi-book-settings-outline::before{content:\"\\F169B\"}.mdi-book-sync::before{content:\"\\F169C\"}.mdi-book-sync-outline::before{content:\"\\F16C8\"}.mdi-book-variant::before{content:\"\\F00BF\"}.mdi-book-variant-multiple::before{content:\"\\F00BC\"}.mdi-bookmark::before{content:\"\\F00C0\"}.mdi-bookmark-check::before{content:\"\\F00C1\"}.mdi-bookmark-check-outline::before{content:\"\\F137B\"}.mdi-bookmark-minus::before{content:\"\\F09CC\"}.mdi-bookmark-minus-outline::before{content:\"\\F09CD\"}.mdi-bookmark-multiple::before{content:\"\\F0E15\"}.mdi-bookmark-multiple-outline::before{content:\"\\F0E16\"}.mdi-bookmark-music::before{content:\"\\F00C2\"}.mdi-bookmark-music-outline::before{content:\"\\F1379\"}.mdi-bookmark-off::before{content:\"\\F09CE\"}.mdi-bookmark-off-outline::before{content:\"\\F09CF\"}.mdi-bookmark-outline::before{content:\"\\F00C3\"}.mdi-bookmark-plus::before{content:\"\\F00C5\"}.mdi-bookmark-plus-outline::before{content:\"\\F00C4\"}.mdi-bookmark-remove::before{content:\"\\F00C6\"}.mdi-bookmark-remove-outline::before{content:\"\\F137A\"}.mdi-bookshelf::before{content:\"\\F125F\"}.mdi-boom-gate::before{content:\"\\F0E86\"}.mdi-boom-gate-alert::before{content:\"\\F0E87\"}.mdi-boom-gate-alert-outline::before{content:\"\\F0E88\"}.mdi-boom-gate-down::before{content:\"\\F0E89\"}.mdi-boom-gate-down-outline::before{content:\"\\F0E8A\"}.mdi-boom-gate-outline::before{content:\"\\F0E8B\"}.mdi-boom-gate-up::before{content:\"\\F0E8C\"}.mdi-boom-gate-up-outline::before{content:\"\\F0E8D\"}.mdi-boombox::before{content:\"\\F05DC\"}.mdi-boomerang::before{content:\"\\F10CF\"}.mdi-bootstrap::before{content:\"\\F06C6\"}.mdi-border-all::before{content:\"\\F00C7\"}.mdi-border-all-variant::before{content:\"\\F08A1\"}.mdi-border-bottom::before{content:\"\\F00C8\"}.mdi-border-bottom-variant::before{content:\"\\F08A2\"}.mdi-border-color::before{content:\"\\F00C9\"}.mdi-border-horizontal::before{content:\"\\F00CA\"}.mdi-border-inside::before{content:\"\\F00CB\"}.mdi-border-left::before{content:\"\\F00CC\"}.mdi-border-left-variant::before{content:\"\\F08A3\"}.mdi-border-none::before{content:\"\\F00CD\"}.mdi-border-none-variant::before{content:\"\\F08A4\"}.mdi-border-outside::before{content:\"\\F00CE\"}.mdi-border-right::before{content:\"\\F00CF\"}.mdi-border-right-variant::before{content:\"\\F08A5\"}.mdi-border-style::before{content:\"\\F00D0\"}.mdi-border-top::before{content:\"\\F00D1\"}.mdi-border-top-variant::before{content:\"\\F08A6\"}.mdi-border-vertical::before{content:\"\\F00D2\"}.mdi-bottle-soda::before{content:\"\\F1070\"}.mdi-bottle-soda-classic::before{content:\"\\F1071\"}.mdi-bottle-soda-classic-outline::before{content:\"\\F1363\"}.mdi-bottle-soda-outline::before{content:\"\\F1072\"}.mdi-bottle-tonic::before{content:\"\\F112E\"}.mdi-bottle-tonic-outline::before{content:\"\\F112F\"}.mdi-bottle-tonic-plus::before{content:\"\\F1130\"}.mdi-bottle-tonic-plus-outline::before{content:\"\\F1131\"}.mdi-bottle-tonic-skull::before{content:\"\\F1132\"}.mdi-bottle-tonic-skull-outline::before{content:\"\\F1133\"}.mdi-bottle-wine::before{content:\"\\F0854\"}.mdi-bottle-wine-outline::before{content:\"\\F1310\"}.mdi-bow-tie::before{content:\"\\F0678\"}.mdi-bowl::before{content:\"\\F028E\"}.mdi-bowl-mix::before{content:\"\\F0617\"}.mdi-bowl-mix-outline::before{content:\"\\F02E4\"}.mdi-bowl-outline::before{content:\"\\F02A9\"}.mdi-bowling::before{content:\"\\F00D3\"}.mdi-box::before{content:\"\\F00D4\"}.mdi-box-cutter::before{content:\"\\F00D5\"}.mdi-box-cutter-off::before{content:\"\\F0B4A\"}.mdi-box-shadow::before{content:\"\\F0637\"}.mdi-boxing-glove::before{content:\"\\F0B65\"}.mdi-braille::before{content:\"\\F09D0\"}.mdi-brain::before{content:\"\\F09D1\"}.mdi-bread-slice::before{content:\"\\F0CEE\"}.mdi-bread-slice-outline::before{content:\"\\F0CEF\"}.mdi-bridge::before{content:\"\\F0618\"}.mdi-briefcase::before{content:\"\\F00D6\"}.mdi-briefcase-account::before{content:\"\\F0CF0\"}.mdi-briefcase-account-outline::before{content:\"\\F0CF1\"}.mdi-briefcase-check::before{content:\"\\F00D7\"}.mdi-briefcase-check-outline::before{content:\"\\F131E\"}.mdi-briefcase-clock::before{content:\"\\F10D0\"}.mdi-briefcase-clock-outline::before{content:\"\\F10D1\"}.mdi-briefcase-download::before{content:\"\\F00D8\"}.mdi-briefcase-download-outline::before{content:\"\\F0C3D\"}.mdi-briefcase-edit::before{content:\"\\F0A98\"}.mdi-briefcase-edit-outline::before{content:\"\\F0C3E\"}.mdi-briefcase-minus::before{content:\"\\F0A2A\"}.mdi-briefcase-minus-outline::before{content:\"\\F0C3F\"}.mdi-briefcase-off::before{content:\"\\F1658\"}.mdi-briefcase-off-outline::before{content:\"\\F1659\"}.mdi-briefcase-outline::before{content:\"\\F0814\"}.mdi-briefcase-plus::before{content:\"\\F0A2B\"}.mdi-briefcase-plus-outline::before{content:\"\\F0C40\"}.mdi-briefcase-remove::before{content:\"\\F0A2C\"}.mdi-briefcase-remove-outline::before{content:\"\\F0C41\"}.mdi-briefcase-search::before{content:\"\\F0A2D\"}.mdi-briefcase-search-outline::before{content:\"\\F0C42\"}.mdi-briefcase-upload::before{content:\"\\F00D9\"}.mdi-briefcase-upload-outline::before{content:\"\\F0C43\"}.mdi-briefcase-variant::before{content:\"\\F1494\"}.mdi-briefcase-variant-off::before{content:\"\\F165A\"}.mdi-briefcase-variant-off-outline::before{content:\"\\F165B\"}.mdi-briefcase-variant-outline::before{content:\"\\F1495\"}.mdi-brightness-1::before{content:\"\\F00DA\"}.mdi-brightness-2::before{content:\"\\F00DB\"}.mdi-brightness-3::before{content:\"\\F00DC\"}.mdi-brightness-4::before{content:\"\\F00DD\"}.mdi-brightness-5::before{content:\"\\F00DE\"}.mdi-brightness-6::before{content:\"\\F00DF\"}.mdi-brightness-7::before{content:\"\\F00E0\"}.mdi-brightness-auto::before{content:\"\\F00E1\"}.mdi-brightness-percent::before{content:\"\\F0CF2\"}.mdi-broom::before{content:\"\\F00E2\"}.mdi-brush::before{content:\"\\F00E3\"}.mdi-bucket::before{content:\"\\F1415\"}.mdi-bucket-outline::before{content:\"\\F1416\"}.mdi-buddhism::before{content:\"\\F094B\"}.mdi-buffer::before{content:\"\\F0619\"}.mdi-buffet::before{content:\"\\F0578\"}.mdi-bug::before{content:\"\\F00E4\"}.mdi-bug-check::before{content:\"\\F0A2E\"}.mdi-bug-check-outline::before{content:\"\\F0A2F\"}.mdi-bug-outline::before{content:\"\\F0A30\"}.mdi-bugle::before{content:\"\\F0DB4\"}.mdi-bulldozer::before{content:\"\\F0B22\"}.mdi-bullet::before{content:\"\\F0CF3\"}.mdi-bulletin-board::before{content:\"\\F00E5\"}.mdi-bullhorn::before{content:\"\\F00E6\"}.mdi-bullhorn-outline::before{content:\"\\F0B23\"}.mdi-bullseye::before{content:\"\\F05DD\"}.mdi-bullseye-arrow::before{content:\"\\F08C9\"}.mdi-bulma::before{content:\"\\F12E7\"}.mdi-bunk-bed::before{content:\"\\F1302\"}.mdi-bunk-bed-outline::before{content:\"\\F0097\"}.mdi-bus::before{content:\"\\F00E7\"}.mdi-bus-alert::before{content:\"\\F0A99\"}.mdi-bus-articulated-end::before{content:\"\\F079C\"}.mdi-bus-articulated-front::before{content:\"\\F079D\"}.mdi-bus-clock::before{content:\"\\F08CA\"}.mdi-bus-double-decker::before{content:\"\\F079E\"}.mdi-bus-marker::before{content:\"\\F1212\"}.mdi-bus-multiple::before{content:\"\\F0F3F\"}.mdi-bus-school::before{content:\"\\F079F\"}.mdi-bus-side::before{content:\"\\F07A0\"}.mdi-bus-stop::before{content:\"\\F1012\"}.mdi-bus-stop-covered::before{content:\"\\F1013\"}.mdi-bus-stop-uncovered::before{content:\"\\F1014\"}.mdi-butterfly::before{content:\"\\F1589\"}.mdi-butterfly-outline::before{content:\"\\F158A\"}.mdi-cable-data::before{content:\"\\F1394\"}.mdi-cached::before{content:\"\\F00E8\"}.mdi-cactus::before{content:\"\\F0DB5\"}.mdi-cake::before{content:\"\\F00E9\"}.mdi-cake-layered::before{content:\"\\F00EA\"}.mdi-cake-variant::before{content:\"\\F00EB\"}.mdi-calculator::before{content:\"\\F00EC\"}.mdi-calculator-variant::before{content:\"\\F0A9A\"}.mdi-calculator-variant-outline::before{content:\"\\F15A6\"}.mdi-calendar::before{content:\"\\F00ED\"}.mdi-calendar-account::before{content:\"\\F0ED7\"}.mdi-calendar-account-outline::before{content:\"\\F0ED8\"}.mdi-calendar-alert::before{content:\"\\F0A31\"}.mdi-calendar-arrow-left::before{content:\"\\F1134\"}.mdi-calendar-arrow-right::before{content:\"\\F1135\"}.mdi-calendar-blank::before{content:\"\\F00EE\"}.mdi-calendar-blank-multiple::before{content:\"\\F1073\"}.mdi-calendar-blank-outline::before{content:\"\\F0B66\"}.mdi-calendar-check::before{content:\"\\F00EF\"}.mdi-calendar-check-outline::before{content:\"\\F0C44\"}.mdi-calendar-clock::before{content:\"\\F00F0\"}.mdi-calendar-cursor::before{content:\"\\F157B\"}.mdi-calendar-edit::before{content:\"\\F08A7\"}.mdi-calendar-end::before{content:\"\\F166C\"}.mdi-calendar-export::before{content:\"\\F0B24\"}.mdi-calendar-heart::before{content:\"\\F09D2\"}.mdi-calendar-import::before{content:\"\\F0B25\"}.mdi-calendar-lock::before{content:\"\\F1641\"}.mdi-calendar-lock-outline::before{content:\"\\F1642\"}.mdi-calendar-minus::before{content:\"\\F0D5C\"}.mdi-calendar-month::before{content:\"\\F0E17\"}.mdi-calendar-month-outline::before{content:\"\\F0E18\"}.mdi-calendar-multiple::before{content:\"\\F00F1\"}.mdi-calendar-multiple-check::before{content:\"\\F00F2\"}.mdi-calendar-multiselect::before{content:\"\\F0A32\"}.mdi-calendar-outline::before{content:\"\\F0B67\"}.mdi-calendar-plus::before{content:\"\\F00F3\"}.mdi-calendar-question::before{content:\"\\F0692\"}.mdi-calendar-range::before{content:\"\\F0679\"}.mdi-calendar-range-outline::before{content:\"\\F0B68\"}.mdi-calendar-refresh::before{content:\"\\F01E1\"}.mdi-calendar-refresh-outline::before{content:\"\\F0203\"}.mdi-calendar-remove::before{content:\"\\F00F4\"}.mdi-calendar-remove-outline::before{content:\"\\F0C45\"}.mdi-calendar-search::before{content:\"\\F094C\"}.mdi-calendar-star::before{content:\"\\F09D3\"}.mdi-calendar-start::before{content:\"\\F166D\"}.mdi-calendar-sync::before{content:\"\\F0E8E\"}.mdi-calendar-sync-outline::before{content:\"\\F0E8F\"}.mdi-calendar-text::before{content:\"\\F00F5\"}.mdi-calendar-text-outline::before{content:\"\\F0C46\"}.mdi-calendar-today::before{content:\"\\F00F6\"}.mdi-calendar-week::before{content:\"\\F0A33\"}.mdi-calendar-week-begin::before{content:\"\\F0A34\"}.mdi-calendar-weekend::before{content:\"\\F0ED9\"}.mdi-calendar-weekend-outline::before{content:\"\\F0EDA\"}.mdi-call-made::before{content:\"\\F00F7\"}.mdi-call-merge::before{content:\"\\F00F8\"}.mdi-call-missed::before{content:\"\\F00F9\"}.mdi-call-received::before{content:\"\\F00FA\"}.mdi-call-split::before{content:\"\\F00FB\"}.mdi-camcorder::before{content:\"\\F00FC\"}.mdi-camcorder-off::before{content:\"\\F00FF\"}.mdi-camera::before{content:\"\\F0100\"}.mdi-camera-account::before{content:\"\\F08CB\"}.mdi-camera-burst::before{content:\"\\F0693\"}.mdi-camera-control::before{content:\"\\F0B69\"}.mdi-camera-enhance::before{content:\"\\F0101\"}.mdi-camera-enhance-outline::before{content:\"\\F0B6A\"}.mdi-camera-flip::before{content:\"\\F15D9\"}.mdi-camera-flip-outline::before{content:\"\\F15DA\"}.mdi-camera-front::before{content:\"\\F0102\"}.mdi-camera-front-variant::before{content:\"\\F0103\"}.mdi-camera-gopro::before{content:\"\\F07A1\"}.mdi-camera-image::before{content:\"\\F08CC\"}.mdi-camera-iris::before{content:\"\\F0104\"}.mdi-camera-metering-center::before{content:\"\\F07A2\"}.mdi-camera-metering-matrix::before{content:\"\\F07A3\"}.mdi-camera-metering-partial::before{content:\"\\F07A4\"}.mdi-camera-metering-spot::before{content:\"\\F07A5\"}.mdi-camera-off::before{content:\"\\F05DF\"}.mdi-camera-outline::before{content:\"\\F0D5D\"}.mdi-camera-party-mode::before{content:\"\\F0105\"}.mdi-camera-plus::before{content:\"\\F0EDB\"}.mdi-camera-plus-outline::before{content:\"\\F0EDC\"}.mdi-camera-rear::before{content:\"\\F0106\"}.mdi-camera-rear-variant::before{content:\"\\F0107\"}.mdi-camera-retake::before{content:\"\\F0E19\"}.mdi-camera-retake-outline::before{content:\"\\F0E1A\"}.mdi-camera-switch::before{content:\"\\F0108\"}.mdi-camera-switch-outline::before{content:\"\\F084A\"}.mdi-camera-timer::before{content:\"\\F0109\"}.mdi-camera-wireless::before{content:\"\\F0DB6\"}.mdi-camera-wireless-outline::before{content:\"\\F0DB7\"}.mdi-campfire::before{content:\"\\F0EDD\"}.mdi-cancel::before{content:\"\\F073A\"}.mdi-candle::before{content:\"\\F05E2\"}.mdi-candycane::before{content:\"\\F010A\"}.mdi-cannabis::before{content:\"\\F07A6\"}.mdi-cannabis-off::before{content:\"\\F166E\"}.mdi-caps-lock::before{content:\"\\F0A9B\"}.mdi-car::before{content:\"\\F010B\"}.mdi-car-2-plus::before{content:\"\\F1015\"}.mdi-car-3-plus::before{content:\"\\F1016\"}.mdi-car-arrow-left::before{content:\"\\F13B2\"}.mdi-car-arrow-right::before{content:\"\\F13B3\"}.mdi-car-back::before{content:\"\\F0E1B\"}.mdi-car-battery::before{content:\"\\F010C\"}.mdi-car-brake-abs::before{content:\"\\F0C47\"}.mdi-car-brake-alert::before{content:\"\\F0C48\"}.mdi-car-brake-hold::before{content:\"\\F0D5E\"}.mdi-car-brake-parking::before{content:\"\\F0D5F\"}.mdi-car-brake-retarder::before{content:\"\\F1017\"}.mdi-car-child-seat::before{content:\"\\F0FA3\"}.mdi-car-clutch::before{content:\"\\F1018\"}.mdi-car-cog::before{content:\"\\F13CC\"}.mdi-car-connected::before{content:\"\\F010D\"}.mdi-car-convertible::before{content:\"\\F07A7\"}.mdi-car-coolant-level::before{content:\"\\F1019\"}.mdi-car-cruise-control::before{content:\"\\F0D60\"}.mdi-car-defrost-front::before{content:\"\\F0D61\"}.mdi-car-defrost-rear::before{content:\"\\F0D62\"}.mdi-car-door::before{content:\"\\F0B6B\"}.mdi-car-door-lock::before{content:\"\\F109D\"}.mdi-car-electric::before{content:\"\\F0B6C\"}.mdi-car-electric-outline::before{content:\"\\F15B5\"}.mdi-car-emergency::before{content:\"\\F160F\"}.mdi-car-esp::before{content:\"\\F0C49\"}.mdi-car-estate::before{content:\"\\F07A8\"}.mdi-car-hatchback::before{content:\"\\F07A9\"}.mdi-car-info::before{content:\"\\F11BE\"}.mdi-car-key::before{content:\"\\F0B6D\"}.mdi-car-lifted-pickup::before{content:\"\\F152D\"}.mdi-car-light-dimmed::before{content:\"\\F0C4A\"}.mdi-car-light-fog::before{content:\"\\F0C4B\"}.mdi-car-light-high::before{content:\"\\F0C4C\"}.mdi-car-limousine::before{content:\"\\F08CD\"}.mdi-car-multiple::before{content:\"\\F0B6E\"}.mdi-car-off::before{content:\"\\F0E1C\"}.mdi-car-outline::before{content:\"\\F14ED\"}.mdi-car-parking-lights::before{content:\"\\F0D63\"}.mdi-car-pickup::before{content:\"\\F07AA\"}.mdi-car-seat::before{content:\"\\F0FA4\"}.mdi-car-seat-cooler::before{content:\"\\F0FA5\"}.mdi-car-seat-heater::before{content:\"\\F0FA6\"}.mdi-car-settings::before{content:\"\\F13CD\"}.mdi-car-shift-pattern::before{content:\"\\F0F40\"}.mdi-car-side::before{content:\"\\F07AB\"}.mdi-car-sports::before{content:\"\\F07AC\"}.mdi-car-tire-alert::before{content:\"\\F0C4D\"}.mdi-car-traction-control::before{content:\"\\F0D64\"}.mdi-car-turbocharger::before{content:\"\\F101A\"}.mdi-car-wash::before{content:\"\\F010E\"}.mdi-car-windshield::before{content:\"\\F101B\"}.mdi-car-windshield-outline::before{content:\"\\F101C\"}.mdi-carabiner::before{content:\"\\F14C0\"}.mdi-caravan::before{content:\"\\F07AD\"}.mdi-card::before{content:\"\\F0B6F\"}.mdi-card-account-details::before{content:\"\\F05D2\"}.mdi-card-account-details-outline::before{content:\"\\F0DAB\"}.mdi-card-account-details-star::before{content:\"\\F02A3\"}.mdi-card-account-details-star-outline::before{content:\"\\F06DB\"}.mdi-card-account-mail::before{content:\"\\F018E\"}.mdi-card-account-mail-outline::before{content:\"\\F0E98\"}.mdi-card-account-phone::before{content:\"\\F0E99\"}.mdi-card-account-phone-outline::before{content:\"\\F0E9A\"}.mdi-card-bulleted::before{content:\"\\F0B70\"}.mdi-card-bulleted-off::before{content:\"\\F0B71\"}.mdi-card-bulleted-off-outline::before{content:\"\\F0B72\"}.mdi-card-bulleted-outline::before{content:\"\\F0B73\"}.mdi-card-bulleted-settings::before{content:\"\\F0B74\"}.mdi-card-bulleted-settings-outline::before{content:\"\\F0B75\"}.mdi-card-minus::before{content:\"\\F1600\"}.mdi-card-minus-outline::before{content:\"\\F1601\"}.mdi-card-off::before{content:\"\\F1602\"}.mdi-card-off-outline::before{content:\"\\F1603\"}.mdi-card-outline::before{content:\"\\F0B76\"}.mdi-card-plus::before{content:\"\\F11FF\"}.mdi-card-plus-outline::before{content:\"\\F1200\"}.mdi-card-remove::before{content:\"\\F1604\"}.mdi-card-remove-outline::before{content:\"\\F1605\"}.mdi-card-search::before{content:\"\\F1074\"}.mdi-card-search-outline::before{content:\"\\F1075\"}.mdi-card-text::before{content:\"\\F0B77\"}.mdi-card-text-outline::before{content:\"\\F0B78\"}.mdi-cards::before{content:\"\\F0638\"}.mdi-cards-club::before{content:\"\\F08CE\"}.mdi-cards-diamond::before{content:\"\\F08CF\"}.mdi-cards-diamond-outline::before{content:\"\\F101D\"}.mdi-cards-heart::before{content:\"\\F08D0\"}.mdi-cards-outline::before{content:\"\\F0639\"}.mdi-cards-playing-outline::before{content:\"\\F063A\"}.mdi-cards-spade::before{content:\"\\F08D1\"}.mdi-cards-variant::before{content:\"\\F06C7\"}.mdi-carrot::before{content:\"\\F010F\"}.mdi-cart::before{content:\"\\F0110\"}.mdi-cart-arrow-down::before{content:\"\\F0D66\"}.mdi-cart-arrow-right::before{content:\"\\F0C4E\"}.mdi-cart-arrow-up::before{content:\"\\F0D67\"}.mdi-cart-check::before{content:\"\\F15EA\"}.mdi-cart-minus::before{content:\"\\F0D68\"}.mdi-cart-off::before{content:\"\\F066B\"}.mdi-cart-outline::before{content:\"\\F0111\"}.mdi-cart-plus::before{content:\"\\F0112\"}.mdi-cart-remove::before{content:\"\\F0D69\"}.mdi-cart-variant::before{content:\"\\F15EB\"}.mdi-case-sensitive-alt::before{content:\"\\F0113\"}.mdi-cash::before{content:\"\\F0114\"}.mdi-cash-100::before{content:\"\\F0115\"}.mdi-cash-check::before{content:\"\\F14EE\"}.mdi-cash-lock::before{content:\"\\F14EA\"}.mdi-cash-lock-open::before{content:\"\\F14EB\"}.mdi-cash-marker::before{content:\"\\F0DB8\"}.mdi-cash-minus::before{content:\"\\F1260\"}.mdi-cash-multiple::before{content:\"\\F0116\"}.mdi-cash-plus::before{content:\"\\F1261\"}.mdi-cash-refund::before{content:\"\\F0A9C\"}.mdi-cash-register::before{content:\"\\F0CF4\"}.mdi-cash-remove::before{content:\"\\F1262\"}.mdi-cash-usd::before{content:\"\\F1176\"}.mdi-cash-usd-outline::before{content:\"\\F0117\"}.mdi-cassette::before{content:\"\\F09D4\"}.mdi-cast::before{content:\"\\F0118\"}.mdi-cast-audio::before{content:\"\\F101E\"}.mdi-cast-connected::before{content:\"\\F0119\"}.mdi-cast-education::before{content:\"\\F0E1D\"}.mdi-cast-off::before{content:\"\\F078A\"}.mdi-castle::before{content:\"\\F011A\"}.mdi-cat::before{content:\"\\F011B\"}.mdi-cctv::before{content:\"\\F07AE\"}.mdi-ceiling-light::before{content:\"\\F0769\"}.mdi-cellphone::before{content:\"\\F011C\"}.mdi-cellphone-android::before{content:\"\\F011D\"}.mdi-cellphone-arrow-down::before{content:\"\\F09D5\"}.mdi-cellphone-basic::before{content:\"\\F011E\"}.mdi-cellphone-charging::before{content:\"\\F1397\"}.mdi-cellphone-cog::before{content:\"\\F0951\"}.mdi-cellphone-dock::before{content:\"\\F011F\"}.mdi-cellphone-erase::before{content:\"\\F094D\"}.mdi-cellphone-information::before{content:\"\\F0F41\"}.mdi-cellphone-iphone::before{content:\"\\F0120\"}.mdi-cellphone-key::before{content:\"\\F094E\"}.mdi-cellphone-link::before{content:\"\\F0121\"}.mdi-cellphone-link-off::before{content:\"\\F0122\"}.mdi-cellphone-lock::before{content:\"\\F094F\"}.mdi-cellphone-message::before{content:\"\\F08D3\"}.mdi-cellphone-message-off::before{content:\"\\F10D2\"}.mdi-cellphone-nfc::before{content:\"\\F0E90\"}.mdi-cellphone-nfc-off::before{content:\"\\F12D8\"}.mdi-cellphone-off::before{content:\"\\F0950\"}.mdi-cellphone-play::before{content:\"\\F101F\"}.mdi-cellphone-screenshot::before{content:\"\\F0A35\"}.mdi-cellphone-settings::before{content:\"\\F0123\"}.mdi-cellphone-sound::before{content:\"\\F0952\"}.mdi-cellphone-text::before{content:\"\\F08D2\"}.mdi-cellphone-wireless::before{content:\"\\F0815\"}.mdi-celtic-cross::before{content:\"\\F0CF5\"}.mdi-centos::before{content:\"\\F111A\"}.mdi-certificate::before{content:\"\\F0124\"}.mdi-certificate-outline::before{content:\"\\F1188\"}.mdi-chair-rolling::before{content:\"\\F0F48\"}.mdi-chair-school::before{content:\"\\F0125\"}.mdi-charity::before{content:\"\\F0C4F\"}.mdi-chart-arc::before{content:\"\\F0126\"}.mdi-chart-areaspline::before{content:\"\\F0127\"}.mdi-chart-areaspline-variant::before{content:\"\\F0E91\"}.mdi-chart-bar::before{content:\"\\F0128\"}.mdi-chart-bar-stacked::before{content:\"\\F076A\"}.mdi-chart-bell-curve::before{content:\"\\F0C50\"}.mdi-chart-bell-curve-cumulative::before{content:\"\\F0FA7\"}.mdi-chart-box::before{content:\"\\F154D\"}.mdi-chart-box-outline::before{content:\"\\F154E\"}.mdi-chart-box-plus-outline::before{content:\"\\F154F\"}.mdi-chart-bubble::before{content:\"\\F05E3\"}.mdi-chart-donut::before{content:\"\\F07AF\"}.mdi-chart-donut-variant::before{content:\"\\F07B0\"}.mdi-chart-gantt::before{content:\"\\F066C\"}.mdi-chart-histogram::before{content:\"\\F0129\"}.mdi-chart-line::before{content:\"\\F012A\"}.mdi-chart-line-stacked::before{content:\"\\F076B\"}.mdi-chart-line-variant::before{content:\"\\F07B1\"}.mdi-chart-multiline::before{content:\"\\F08D4\"}.mdi-chart-multiple::before{content:\"\\F1213\"}.mdi-chart-pie::before{content:\"\\F012B\"}.mdi-chart-ppf::before{content:\"\\F1380\"}.mdi-chart-sankey::before{content:\"\\F11DF\"}.mdi-chart-sankey-variant::before{content:\"\\F11E0\"}.mdi-chart-scatter-plot::before{content:\"\\F0E92\"}.mdi-chart-scatter-plot-hexbin::before{content:\"\\F066D\"}.mdi-chart-timeline::before{content:\"\\F066E\"}.mdi-chart-timeline-variant::before{content:\"\\F0E93\"}.mdi-chart-timeline-variant-shimmer::before{content:\"\\F15B6\"}.mdi-chart-tree::before{content:\"\\F0E94\"}.mdi-chat::before{content:\"\\F0B79\"}.mdi-chat-alert::before{content:\"\\F0B7A\"}.mdi-chat-alert-outline::before{content:\"\\F12C9\"}.mdi-chat-minus::before{content:\"\\F1410\"}.mdi-chat-minus-outline::before{content:\"\\F1413\"}.mdi-chat-outline::before{content:\"\\F0EDE\"}.mdi-chat-plus::before{content:\"\\F140F\"}.mdi-chat-plus-outline::before{content:\"\\F1412\"}.mdi-chat-processing::before{content:\"\\F0B7B\"}.mdi-chat-processing-outline::before{content:\"\\F12CA\"}.mdi-chat-remove::before{content:\"\\F1411\"}.mdi-chat-remove-outline::before{content:\"\\F1414\"}.mdi-chat-sleep::before{content:\"\\F12D1\"}.mdi-chat-sleep-outline::before{content:\"\\F12D2\"}.mdi-check::before{content:\"\\F012C\"}.mdi-check-all::before{content:\"\\F012D\"}.mdi-check-bold::before{content:\"\\F0E1E\"}.mdi-check-box-multiple-outline::before{content:\"\\F0C51\"}.mdi-check-box-outline::before{content:\"\\F0C52\"}.mdi-check-circle::before{content:\"\\F05E0\"}.mdi-check-circle-outline::before{content:\"\\F05E1\"}.mdi-check-decagram::before{content:\"\\F0791\"}.mdi-check-network::before{content:\"\\F0C53\"}.mdi-check-network-outline::before{content:\"\\F0C54\"}.mdi-check-outline::before{content:\"\\F0855\"}.mdi-check-underline::before{content:\"\\F0E1F\"}.mdi-check-underline-circle::before{content:\"\\F0E20\"}.mdi-check-underline-circle-outline::before{content:\"\\F0E21\"}.mdi-checkbook::before{content:\"\\F0A9D\"}.mdi-checkbox-blank::before{content:\"\\F012E\"}.mdi-checkbox-blank-circle::before{content:\"\\F012F\"}.mdi-checkbox-blank-circle-outline::before{content:\"\\F0130\"}.mdi-checkbox-blank-off::before{content:\"\\F12EC\"}.mdi-checkbox-blank-off-outline::before{content:\"\\F12ED\"}.mdi-checkbox-blank-outline::before{content:\"\\F0131\"}.mdi-checkbox-intermediate::before{content:\"\\F0856\"}.mdi-checkbox-marked::before{content:\"\\F0132\"}.mdi-checkbox-marked-circle::before{content:\"\\F0133\"}.mdi-checkbox-marked-circle-outline::before{content:\"\\F0134\"}.mdi-checkbox-marked-outline::before{content:\"\\F0135\"}.mdi-checkbox-multiple-blank::before{content:\"\\F0136\"}.mdi-checkbox-multiple-blank-circle::before{content:\"\\F063B\"}.mdi-checkbox-multiple-blank-circle-outline::before{content:\"\\F063C\"}.mdi-checkbox-multiple-blank-outline::before{content:\"\\F0137\"}.mdi-checkbox-multiple-marked::before{content:\"\\F0138\"}.mdi-checkbox-multiple-marked-circle::before{content:\"\\F063D\"}.mdi-checkbox-multiple-marked-circle-outline::before{content:\"\\F063E\"}.mdi-checkbox-multiple-marked-outline::before{content:\"\\F0139\"}.mdi-checkerboard::before{content:\"\\F013A\"}.mdi-checkerboard-minus::before{content:\"\\F1202\"}.mdi-checkerboard-plus::before{content:\"\\F1201\"}.mdi-checkerboard-remove::before{content:\"\\F1203\"}.mdi-cheese::before{content:\"\\F12B9\"}.mdi-cheese-off::before{content:\"\\F13EE\"}.mdi-chef-hat::before{content:\"\\F0B7C\"}.mdi-chemical-weapon::before{content:\"\\F013B\"}.mdi-chess-bishop::before{content:\"\\F085C\"}.mdi-chess-king::before{content:\"\\F0857\"}.mdi-chess-knight::before{content:\"\\F0858\"}.mdi-chess-pawn::before{content:\"\\F0859\"}.mdi-chess-queen::before{content:\"\\F085A\"}.mdi-chess-rook::before{content:\"\\F085B\"}.mdi-chevron-double-down::before{content:\"\\F013C\"}.mdi-chevron-double-left::before{content:\"\\F013D\"}.mdi-chevron-double-right::before{content:\"\\F013E\"}.mdi-chevron-double-up::before{content:\"\\F013F\"}.mdi-chevron-down::before{content:\"\\F0140\"}.mdi-chevron-down-box::before{content:\"\\F09D6\"}.mdi-chevron-down-box-outline::before{content:\"\\F09D7\"}.mdi-chevron-down-circle::before{content:\"\\F0B26\"}.mdi-chevron-down-circle-outline::before{content:\"\\F0B27\"}.mdi-chevron-left::before{content:\"\\F0141\"}.mdi-chevron-left-box::before{content:\"\\F09D8\"}.mdi-chevron-left-box-outline::before{content:\"\\F09D9\"}.mdi-chevron-left-circle::before{content:\"\\F0B28\"}.mdi-chevron-left-circle-outline::before{content:\"\\F0B29\"}.mdi-chevron-right::before{content:\"\\F0142\"}.mdi-chevron-right-box::before{content:\"\\F09DA\"}.mdi-chevron-right-box-outline::before{content:\"\\F09DB\"}.mdi-chevron-right-circle::before{content:\"\\F0B2A\"}.mdi-chevron-right-circle-outline::before{content:\"\\F0B2B\"}.mdi-chevron-triple-down::before{content:\"\\F0DB9\"}.mdi-chevron-triple-left::before{content:\"\\F0DBA\"}.mdi-chevron-triple-right::before{content:\"\\F0DBB\"}.mdi-chevron-triple-up::before{content:\"\\F0DBC\"}.mdi-chevron-up::before{content:\"\\F0143\"}.mdi-chevron-up-box::before{content:\"\\F09DC\"}.mdi-chevron-up-box-outline::before{content:\"\\F09DD\"}.mdi-chevron-up-circle::before{content:\"\\F0B2C\"}.mdi-chevron-up-circle-outline::before{content:\"\\F0B2D\"}.mdi-chili-hot::before{content:\"\\F07B2\"}.mdi-chili-medium::before{content:\"\\F07B3\"}.mdi-chili-mild::before{content:\"\\F07B4\"}.mdi-chili-off::before{content:\"\\F1467\"}.mdi-chip::before{content:\"\\F061A\"}.mdi-christianity::before{content:\"\\F0953\"}.mdi-christianity-outline::before{content:\"\\F0CF6\"}.mdi-church::before{content:\"\\F0144\"}.mdi-cigar::before{content:\"\\F1189\"}.mdi-cigar-off::before{content:\"\\F141B\"}.mdi-circle::before{content:\"\\F0765\"}.mdi-circle-box::before{content:\"\\F15DC\"}.mdi-circle-box-outline::before{content:\"\\F15DD\"}.mdi-circle-double::before{content:\"\\F0E95\"}.mdi-circle-edit-outline::before{content:\"\\F08D5\"}.mdi-circle-expand::before{content:\"\\F0E96\"}.mdi-circle-half::before{content:\"\\F1395\"}.mdi-circle-half-full::before{content:\"\\F1396\"}.mdi-circle-medium::before{content:\"\\F09DE\"}.mdi-circle-multiple::before{content:\"\\F0B38\"}.mdi-circle-multiple-outline::before{content:\"\\F0695\"}.mdi-circle-off-outline::before{content:\"\\F10D3\"}.mdi-circle-outline::before{content:\"\\F0766\"}.mdi-circle-slice-1::before{content:\"\\F0A9E\"}.mdi-circle-slice-2::before{content:\"\\F0A9F\"}.mdi-circle-slice-3::before{content:\"\\F0AA0\"}.mdi-circle-slice-4::before{content:\"\\F0AA1\"}.mdi-circle-slice-5::before{content:\"\\F0AA2\"}.mdi-circle-slice-6::before{content:\"\\F0AA3\"}.mdi-circle-slice-7::before{content:\"\\F0AA4\"}.mdi-circle-slice-8::before{content:\"\\F0AA5\"}.mdi-circle-small::before{content:\"\\F09DF\"}.mdi-circular-saw::before{content:\"\\F0E22\"}.mdi-city::before{content:\"\\F0146\"}.mdi-city-variant::before{content:\"\\F0A36\"}.mdi-city-variant-outline::before{content:\"\\F0A37\"}.mdi-clipboard::before{content:\"\\F0147\"}.mdi-clipboard-account::before{content:\"\\F0148\"}.mdi-clipboard-account-outline::before{content:\"\\F0C55\"}.mdi-clipboard-alert::before{content:\"\\F0149\"}.mdi-clipboard-alert-outline::before{content:\"\\F0CF7\"}.mdi-clipboard-arrow-down::before{content:\"\\F014A\"}.mdi-clipboard-arrow-down-outline::before{content:\"\\F0C56\"}.mdi-clipboard-arrow-left::before{content:\"\\F014B\"}.mdi-clipboard-arrow-left-outline::before{content:\"\\F0CF8\"}.mdi-clipboard-arrow-right::before{content:\"\\F0CF9\"}.mdi-clipboard-arrow-right-outline::before{content:\"\\F0CFA\"}.mdi-clipboard-arrow-up::before{content:\"\\F0C57\"}.mdi-clipboard-arrow-up-outline::before{content:\"\\F0C58\"}.mdi-clipboard-check::before{content:\"\\F014E\"}.mdi-clipboard-check-multiple::before{content:\"\\F1263\"}.mdi-clipboard-check-multiple-outline::before{content:\"\\F1264\"}.mdi-clipboard-check-outline::before{content:\"\\F08A8\"}.mdi-clipboard-edit::before{content:\"\\F14E5\"}.mdi-clipboard-edit-outline::before{content:\"\\F14E6\"}.mdi-clipboard-file::before{content:\"\\F1265\"}.mdi-clipboard-file-outline::before{content:\"\\F1266\"}.mdi-clipboard-flow::before{content:\"\\F06C8\"}.mdi-clipboard-flow-outline::before{content:\"\\F1117\"}.mdi-clipboard-list::before{content:\"\\F10D4\"}.mdi-clipboard-list-outline::before{content:\"\\F10D5\"}.mdi-clipboard-minus::before{content:\"\\F1618\"}.mdi-clipboard-minus-outline::before{content:\"\\F1619\"}.mdi-clipboard-multiple::before{content:\"\\F1267\"}.mdi-clipboard-multiple-outline::before{content:\"\\F1268\"}.mdi-clipboard-off::before{content:\"\\F161A\"}.mdi-clipboard-off-outline::before{content:\"\\F161B\"}.mdi-clipboard-outline::before{content:\"\\F014C\"}.mdi-clipboard-play::before{content:\"\\F0C59\"}.mdi-clipboard-play-multiple::before{content:\"\\F1269\"}.mdi-clipboard-play-multiple-outline::before{content:\"\\F126A\"}.mdi-clipboard-play-outline::before{content:\"\\F0C5A\"}.mdi-clipboard-plus::before{content:\"\\F0751\"}.mdi-clipboard-plus-outline::before{content:\"\\F131F\"}.mdi-clipboard-pulse::before{content:\"\\F085D\"}.mdi-clipboard-pulse-outline::before{content:\"\\F085E\"}.mdi-clipboard-remove::before{content:\"\\F161C\"}.mdi-clipboard-remove-outline::before{content:\"\\F161D\"}.mdi-clipboard-search::before{content:\"\\F161E\"}.mdi-clipboard-search-outline::before{content:\"\\F161F\"}.mdi-clipboard-text::before{content:\"\\F014D\"}.mdi-clipboard-text-multiple::before{content:\"\\F126B\"}.mdi-clipboard-text-multiple-outline::before{content:\"\\F126C\"}.mdi-clipboard-text-off::before{content:\"\\F1620\"}.mdi-clipboard-text-off-outline::before{content:\"\\F1621\"}.mdi-clipboard-text-outline::before{content:\"\\F0A38\"}.mdi-clipboard-text-play::before{content:\"\\F0C5B\"}.mdi-clipboard-text-play-outline::before{content:\"\\F0C5C\"}.mdi-clipboard-text-search::before{content:\"\\F1622\"}.mdi-clipboard-text-search-outline::before{content:\"\\F1623\"}.mdi-clippy::before{content:\"\\F014F\"}.mdi-clock::before{content:\"\\F0954\"}.mdi-clock-alert::before{content:\"\\F0955\"}.mdi-clock-alert-outline::before{content:\"\\F05CE\"}.mdi-clock-check::before{content:\"\\F0FA8\"}.mdi-clock-check-outline::before{content:\"\\F0FA9\"}.mdi-clock-digital::before{content:\"\\F0E97\"}.mdi-clock-end::before{content:\"\\F0151\"}.mdi-clock-fast::before{content:\"\\F0152\"}.mdi-clock-in::before{content:\"\\F0153\"}.mdi-clock-out::before{content:\"\\F0154\"}.mdi-clock-outline::before{content:\"\\F0150\"}.mdi-clock-start::before{content:\"\\F0155\"}.mdi-clock-time-eight::before{content:\"\\F1446\"}.mdi-clock-time-eight-outline::before{content:\"\\F1452\"}.mdi-clock-time-eleven::before{content:\"\\F1449\"}.mdi-clock-time-eleven-outline::before{content:\"\\F1455\"}.mdi-clock-time-five::before{content:\"\\F1443\"}.mdi-clock-time-five-outline::before{content:\"\\F144F\"}.mdi-clock-time-four::before{content:\"\\F1442\"}.mdi-clock-time-four-outline::before{content:\"\\F144E\"}.mdi-clock-time-nine::before{content:\"\\F1447\"}.mdi-clock-time-nine-outline::before{content:\"\\F1453\"}.mdi-clock-time-one::before{content:\"\\F143F\"}.mdi-clock-time-one-outline::before{content:\"\\F144B\"}.mdi-clock-time-seven::before{content:\"\\F1445\"}.mdi-clock-time-seven-outline::before{content:\"\\F1451\"}.mdi-clock-time-six::before{content:\"\\F1444\"}.mdi-clock-time-six-outline::before{content:\"\\F1450\"}.mdi-clock-time-ten::before{content:\"\\F1448\"}.mdi-clock-time-ten-outline::before{content:\"\\F1454\"}.mdi-clock-time-three::before{content:\"\\F1441\"}.mdi-clock-time-three-outline::before{content:\"\\F144D\"}.mdi-clock-time-twelve::before{content:\"\\F144A\"}.mdi-clock-time-twelve-outline::before{content:\"\\F1456\"}.mdi-clock-time-two::before{content:\"\\F1440\"}.mdi-clock-time-two-outline::before{content:\"\\F144C\"}.mdi-close::before{content:\"\\F0156\"}.mdi-close-box::before{content:\"\\F0157\"}.mdi-close-box-multiple::before{content:\"\\F0C5D\"}.mdi-close-box-multiple-outline::before{content:\"\\F0C5E\"}.mdi-close-box-outline::before{content:\"\\F0158\"}.mdi-close-circle::before{content:\"\\F0159\"}.mdi-close-circle-multiple::before{content:\"\\F062A\"}.mdi-close-circle-multiple-outline::before{content:\"\\F0883\"}.mdi-close-circle-outline::before{content:\"\\F015A\"}.mdi-close-network::before{content:\"\\F015B\"}.mdi-close-network-outline::before{content:\"\\F0C5F\"}.mdi-close-octagon::before{content:\"\\F015C\"}.mdi-close-octagon-outline::before{content:\"\\F015D\"}.mdi-close-outline::before{content:\"\\F06C9\"}.mdi-close-thick::before{content:\"\\F1398\"}.mdi-closed-caption::before{content:\"\\F015E\"}.mdi-closed-caption-outline::before{content:\"\\F0DBD\"}.mdi-cloud::before{content:\"\\F015F\"}.mdi-cloud-alert::before{content:\"\\F09E0\"}.mdi-cloud-braces::before{content:\"\\F07B5\"}.mdi-cloud-check::before{content:\"\\F0160\"}.mdi-cloud-check-outline::before{content:\"\\F12CC\"}.mdi-cloud-circle::before{content:\"\\F0161\"}.mdi-cloud-download::before{content:\"\\F0162\"}.mdi-cloud-download-outline::before{content:\"\\F0B7D\"}.mdi-cloud-lock::before{content:\"\\F11F1\"}.mdi-cloud-lock-outline::before{content:\"\\F11F2\"}.mdi-cloud-off-outline::before{content:\"\\F0164\"}.mdi-cloud-outline::before{content:\"\\F0163\"}.mdi-cloud-print::before{content:\"\\F0165\"}.mdi-cloud-print-outline::before{content:\"\\F0166\"}.mdi-cloud-question::before{content:\"\\F0A39\"}.mdi-cloud-refresh::before{content:\"\\F052A\"}.mdi-cloud-search::before{content:\"\\F0956\"}.mdi-cloud-search-outline::before{content:\"\\F0957\"}.mdi-cloud-sync::before{content:\"\\F063F\"}.mdi-cloud-sync-outline::before{content:\"\\F12D6\"}.mdi-cloud-tags::before{content:\"\\F07B6\"}.mdi-cloud-upload::before{content:\"\\F0167\"}.mdi-cloud-upload-outline::before{content:\"\\F0B7E\"}.mdi-clover::before{content:\"\\F0816\"}.mdi-coach-lamp::before{content:\"\\F1020\"}.mdi-coat-rack::before{content:\"\\F109E\"}.mdi-code-array::before{content:\"\\F0168\"}.mdi-code-braces::before{content:\"\\F0169\"}.mdi-code-braces-box::before{content:\"\\F10D6\"}.mdi-code-brackets::before{content:\"\\F016A\"}.mdi-code-equal::before{content:\"\\F016B\"}.mdi-code-greater-than::before{content:\"\\F016C\"}.mdi-code-greater-than-or-equal::before{content:\"\\F016D\"}.mdi-code-json::before{content:\"\\F0626\"}.mdi-code-less-than::before{content:\"\\F016E\"}.mdi-code-less-than-or-equal::before{content:\"\\F016F\"}.mdi-code-not-equal::before{content:\"\\F0170\"}.mdi-code-not-equal-variant::before{content:\"\\F0171\"}.mdi-code-parentheses::before{content:\"\\F0172\"}.mdi-code-parentheses-box::before{content:\"\\F10D7\"}.mdi-code-string::before{content:\"\\F0173\"}.mdi-code-tags::before{content:\"\\F0174\"}.mdi-code-tags-check::before{content:\"\\F0694\"}.mdi-codepen::before{content:\"\\F0175\"}.mdi-coffee::before{content:\"\\F0176\"}.mdi-coffee-maker::before{content:\"\\F109F\"}.mdi-coffee-off::before{content:\"\\F0FAA\"}.mdi-coffee-off-outline::before{content:\"\\F0FAB\"}.mdi-coffee-outline::before{content:\"\\F06CA\"}.mdi-coffee-to-go::before{content:\"\\F0177\"}.mdi-coffee-to-go-outline::before{content:\"\\F130E\"}.mdi-coffin::before{content:\"\\F0B7F\"}.mdi-cog::before{content:\"\\F0493\"}.mdi-cog-box::before{content:\"\\F0494\"}.mdi-cog-clockwise::before{content:\"\\F11DD\"}.mdi-cog-counterclockwise::before{content:\"\\F11DE\"}.mdi-cog-off::before{content:\"\\F13CE\"}.mdi-cog-off-outline::before{content:\"\\F13CF\"}.mdi-cog-outline::before{content:\"\\F08BB\"}.mdi-cog-refresh::before{content:\"\\F145E\"}.mdi-cog-refresh-outline::before{content:\"\\F145F\"}.mdi-cog-sync::before{content:\"\\F1460\"}.mdi-cog-sync-outline::before{content:\"\\F1461\"}.mdi-cog-transfer::before{content:\"\\F105B\"}.mdi-cog-transfer-outline::before{content:\"\\F105C\"}.mdi-cogs::before{content:\"\\F08D6\"}.mdi-collage::before{content:\"\\F0640\"}.mdi-collapse-all::before{content:\"\\F0AA6\"}.mdi-collapse-all-outline::before{content:\"\\F0AA7\"}.mdi-color-helper::before{content:\"\\F0179\"}.mdi-comma::before{content:\"\\F0E23\"}.mdi-comma-box::before{content:\"\\F0E2B\"}.mdi-comma-box-outline::before{content:\"\\F0E24\"}.mdi-comma-circle::before{content:\"\\F0E25\"}.mdi-comma-circle-outline::before{content:\"\\F0E26\"}.mdi-comment::before{content:\"\\F017A\"}.mdi-comment-account::before{content:\"\\F017B\"}.mdi-comment-account-outline::before{content:\"\\F017C\"}.mdi-comment-alert::before{content:\"\\F017D\"}.mdi-comment-alert-outline::before{content:\"\\F017E\"}.mdi-comment-arrow-left::before{content:\"\\F09E1\"}.mdi-comment-arrow-left-outline::before{content:\"\\F09E2\"}.mdi-comment-arrow-right::before{content:\"\\F09E3\"}.mdi-comment-arrow-right-outline::before{content:\"\\F09E4\"}.mdi-comment-bookmark::before{content:\"\\F15AE\"}.mdi-comment-bookmark-outline::before{content:\"\\F15AF\"}.mdi-comment-check::before{content:\"\\F017F\"}.mdi-comment-check-outline::before{content:\"\\F0180\"}.mdi-comment-edit::before{content:\"\\F11BF\"}.mdi-comment-edit-outline::before{content:\"\\F12C4\"}.mdi-comment-eye::before{content:\"\\F0A3A\"}.mdi-comment-eye-outline::before{content:\"\\F0A3B\"}.mdi-comment-flash::before{content:\"\\F15B0\"}.mdi-comment-flash-outline::before{content:\"\\F15B1\"}.mdi-comment-minus::before{content:\"\\F15DF\"}.mdi-comment-minus-outline::before{content:\"\\F15E0\"}.mdi-comment-multiple::before{content:\"\\F085F\"}.mdi-comment-multiple-outline::before{content:\"\\F0181\"}.mdi-comment-off::before{content:\"\\F15E1\"}.mdi-comment-off-outline::before{content:\"\\F15E2\"}.mdi-comment-outline::before{content:\"\\F0182\"}.mdi-comment-plus::before{content:\"\\F09E5\"}.mdi-comment-plus-outline::before{content:\"\\F0183\"}.mdi-comment-processing::before{content:\"\\F0184\"}.mdi-comment-processing-outline::before{content:\"\\F0185\"}.mdi-comment-question::before{content:\"\\F0817\"}.mdi-comment-question-outline::before{content:\"\\F0186\"}.mdi-comment-quote::before{content:\"\\F1021\"}.mdi-comment-quote-outline::before{content:\"\\F1022\"}.mdi-comment-remove::before{content:\"\\F05DE\"}.mdi-comment-remove-outline::before{content:\"\\F0187\"}.mdi-comment-search::before{content:\"\\F0A3C\"}.mdi-comment-search-outline::before{content:\"\\F0A3D\"}.mdi-comment-text::before{content:\"\\F0188\"}.mdi-comment-text-multiple::before{content:\"\\F0860\"}.mdi-comment-text-multiple-outline::before{content:\"\\F0861\"}.mdi-comment-text-outline::before{content:\"\\F0189\"}.mdi-compare::before{content:\"\\F018A\"}.mdi-compare-horizontal::before{content:\"\\F1492\"}.mdi-compare-vertical::before{content:\"\\F1493\"}.mdi-compass::before{content:\"\\F018B\"}.mdi-compass-off::before{content:\"\\F0B80\"}.mdi-compass-off-outline::before{content:\"\\F0B81\"}.mdi-compass-outline::before{content:\"\\F018C\"}.mdi-compass-rose::before{content:\"\\F1382\"}.mdi-concourse-ci::before{content:\"\\F10A0\"}.mdi-connection::before{content:\"\\F1616\"}.mdi-console::before{content:\"\\F018D\"}.mdi-console-line::before{content:\"\\F07B7\"}.mdi-console-network::before{content:\"\\F08A9\"}.mdi-console-network-outline::before{content:\"\\F0C60\"}.mdi-consolidate::before{content:\"\\F10D8\"}.mdi-contactless-payment::before{content:\"\\F0D6A\"}.mdi-contactless-payment-circle::before{content:\"\\F0321\"}.mdi-contactless-payment-circle-outline::before{content:\"\\F0408\"}.mdi-contacts::before{content:\"\\F06CB\"}.mdi-contacts-outline::before{content:\"\\F05B8\"}.mdi-contain::before{content:\"\\F0A3E\"}.mdi-contain-end::before{content:\"\\F0A3F\"}.mdi-contain-start::before{content:\"\\F0A40\"}.mdi-content-copy::before{content:\"\\F018F\"}.mdi-content-cut::before{content:\"\\F0190\"}.mdi-content-duplicate::before{content:\"\\F0191\"}.mdi-content-paste::before{content:\"\\F0192\"}.mdi-content-save::before{content:\"\\F0193\"}.mdi-content-save-alert::before{content:\"\\F0F42\"}.mdi-content-save-alert-outline::before{content:\"\\F0F43\"}.mdi-content-save-all::before{content:\"\\F0194\"}.mdi-content-save-all-outline::before{content:\"\\F0F44\"}.mdi-content-save-cog::before{content:\"\\F145B\"}.mdi-content-save-cog-outline::before{content:\"\\F145C\"}.mdi-content-save-edit::before{content:\"\\F0CFB\"}.mdi-content-save-edit-outline::before{content:\"\\F0CFC\"}.mdi-content-save-move::before{content:\"\\F0E27\"}.mdi-content-save-move-outline::before{content:\"\\F0E28\"}.mdi-content-save-off::before{content:\"\\F1643\"}.mdi-content-save-off-outline::before{content:\"\\F1644\"}.mdi-content-save-outline::before{content:\"\\F0818\"}.mdi-content-save-settings::before{content:\"\\F061B\"}.mdi-content-save-settings-outline::before{content:\"\\F0B2E\"}.mdi-contrast::before{content:\"\\F0195\"}.mdi-contrast-box::before{content:\"\\F0196\"}.mdi-contrast-circle::before{content:\"\\F0197\"}.mdi-controller-classic::before{content:\"\\F0B82\"}.mdi-controller-classic-outline::before{content:\"\\F0B83\"}.mdi-cookie::before{content:\"\\F0198\"}.mdi-cookie-alert::before{content:\"\\F16D0\"}.mdi-cookie-alert-outline::before{content:\"\\F16D1\"}.mdi-cookie-check::before{content:\"\\F16D2\"}.mdi-cookie-check-outline::before{content:\"\\F16D3\"}.mdi-cookie-cog::before{content:\"\\F16D4\"}.mdi-cookie-cog-outline::before{content:\"\\F16D5\"}.mdi-cookie-minus::before{content:\"\\F16DA\"}.mdi-cookie-minus-outline::before{content:\"\\F16DB\"}.mdi-cookie-outline::before{content:\"\\F16DE\"}.mdi-cookie-plus::before{content:\"\\F16D6\"}.mdi-cookie-plus-outline::before{content:\"\\F16D7\"}.mdi-cookie-remove::before{content:\"\\F16D8\"}.mdi-cookie-remove-outline::before{content:\"\\F16D9\"}.mdi-cookie-settings::before{content:\"\\F16DC\"}.mdi-cookie-settings-outline::before{content:\"\\F16DD\"}.mdi-coolant-temperature::before{content:\"\\F03C8\"}.mdi-copyright::before{content:\"\\F05E6\"}.mdi-cordova::before{content:\"\\F0958\"}.mdi-corn::before{content:\"\\F07B8\"}.mdi-corn-off::before{content:\"\\F13EF\"}.mdi-cosine-wave::before{content:\"\\F1479\"}.mdi-counter::before{content:\"\\F0199\"}.mdi-cow::before{content:\"\\F019A\"}.mdi-cpu-32-bit::before{content:\"\\F0EDF\"}.mdi-cpu-64-bit::before{content:\"\\F0EE0\"}.mdi-crane::before{content:\"\\F0862\"}.mdi-creation::before{content:\"\\F0674\"}.mdi-creative-commons::before{content:\"\\F0D6B\"}.mdi-credit-card::before{content:\"\\F0FEF\"}.mdi-credit-card-check::before{content:\"\\F13D0\"}.mdi-credit-card-check-outline::before{content:\"\\F13D1\"}.mdi-credit-card-clock::before{content:\"\\F0EE1\"}.mdi-credit-card-clock-outline::before{content:\"\\F0EE2\"}.mdi-credit-card-marker::before{content:\"\\F06A8\"}.mdi-credit-card-marker-outline::before{content:\"\\F0DBE\"}.mdi-credit-card-minus::before{content:\"\\F0FAC\"}.mdi-credit-card-minus-outline::before{content:\"\\F0FAD\"}.mdi-credit-card-multiple::before{content:\"\\F0FF0\"}.mdi-credit-card-multiple-outline::before{content:\"\\F019C\"}.mdi-credit-card-off::before{content:\"\\F0FF1\"}.mdi-credit-card-off-outline::before{content:\"\\F05E4\"}.mdi-credit-card-outline::before{content:\"\\F019B\"}.mdi-credit-card-plus::before{content:\"\\F0FF2\"}.mdi-credit-card-plus-outline::before{content:\"\\F0676\"}.mdi-credit-card-refresh::before{content:\"\\F1645\"}.mdi-credit-card-refresh-outline::before{content:\"\\F1646\"}.mdi-credit-card-refund::before{content:\"\\F0FF3\"}.mdi-credit-card-refund-outline::before{content:\"\\F0AA8\"}.mdi-credit-card-remove::before{content:\"\\F0FAE\"}.mdi-credit-card-remove-outline::before{content:\"\\F0FAF\"}.mdi-credit-card-scan::before{content:\"\\F0FF4\"}.mdi-credit-card-scan-outline::before{content:\"\\F019D\"}.mdi-credit-card-search::before{content:\"\\F1647\"}.mdi-credit-card-search-outline::before{content:\"\\F1648\"}.mdi-credit-card-settings::before{content:\"\\F0FF5\"}.mdi-credit-card-settings-outline::before{content:\"\\F08D7\"}.mdi-credit-card-sync::before{content:\"\\F1649\"}.mdi-credit-card-sync-outline::before{content:\"\\F164A\"}.mdi-credit-card-wireless::before{content:\"\\F0802\"}.mdi-credit-card-wireless-off::before{content:\"\\F057A\"}.mdi-credit-card-wireless-off-outline::before{content:\"\\F057B\"}.mdi-credit-card-wireless-outline::before{content:\"\\F0D6C\"}.mdi-cricket::before{content:\"\\F0D6D\"}.mdi-crop::before{content:\"\\F019E\"}.mdi-crop-free::before{content:\"\\F019F\"}.mdi-crop-landscape::before{content:\"\\F01A0\"}.mdi-crop-portrait::before{content:\"\\F01A1\"}.mdi-crop-rotate::before{content:\"\\F0696\"}.mdi-crop-square::before{content:\"\\F01A2\"}.mdi-crosshairs::before{content:\"\\F01A3\"}.mdi-crosshairs-gps::before{content:\"\\F01A4\"}.mdi-crosshairs-off::before{content:\"\\F0F45\"}.mdi-crosshairs-question::before{content:\"\\F1136\"}.mdi-crown::before{content:\"\\F01A5\"}.mdi-crown-outline::before{content:\"\\F11D0\"}.mdi-cryengine::before{content:\"\\F0959\"}.mdi-crystal-ball::before{content:\"\\F0B2F\"}.mdi-cube::before{content:\"\\F01A6\"}.mdi-cube-off::before{content:\"\\F141C\"}.mdi-cube-off-outline::before{content:\"\\F141D\"}.mdi-cube-outline::before{content:\"\\F01A7\"}.mdi-cube-scan::before{content:\"\\F0B84\"}.mdi-cube-send::before{content:\"\\F01A8\"}.mdi-cube-unfolded::before{content:\"\\F01A9\"}.mdi-cup::before{content:\"\\F01AA\"}.mdi-cup-off::before{content:\"\\F05E5\"}.mdi-cup-off-outline::before{content:\"\\F137D\"}.mdi-cup-outline::before{content:\"\\F130F\"}.mdi-cup-water::before{content:\"\\F01AB\"}.mdi-cupboard::before{content:\"\\F0F46\"}.mdi-cupboard-outline::before{content:\"\\F0F47\"}.mdi-cupcake::before{content:\"\\F095A\"}.mdi-curling::before{content:\"\\F0863\"}.mdi-currency-bdt::before{content:\"\\F0864\"}.mdi-currency-brl::before{content:\"\\F0B85\"}.mdi-currency-btc::before{content:\"\\F01AC\"}.mdi-currency-cny::before{content:\"\\F07BA\"}.mdi-currency-eth::before{content:\"\\F07BB\"}.mdi-currency-eur::before{content:\"\\F01AD\"}.mdi-currency-eur-off::before{content:\"\\F1315\"}.mdi-currency-gbp::before{content:\"\\F01AE\"}.mdi-currency-ils::before{content:\"\\F0C61\"}.mdi-currency-inr::before{content:\"\\F01AF\"}.mdi-currency-jpy::before{content:\"\\F07BC\"}.mdi-currency-krw::before{content:\"\\F07BD\"}.mdi-currency-kzt::before{content:\"\\F0865\"}.mdi-currency-mnt::before{content:\"\\F1512\"}.mdi-currency-ngn::before{content:\"\\F01B0\"}.mdi-currency-php::before{content:\"\\F09E6\"}.mdi-currency-rial::before{content:\"\\F0E9C\"}.mdi-currency-rub::before{content:\"\\F01B1\"}.mdi-currency-sign::before{content:\"\\F07BE\"}.mdi-currency-try::before{content:\"\\F01B2\"}.mdi-currency-twd::before{content:\"\\F07BF\"}.mdi-currency-usd::before{content:\"\\F01C1\"}.mdi-currency-usd-circle::before{content:\"\\F116B\"}.mdi-currency-usd-circle-outline::before{content:\"\\F0178\"}.mdi-currency-usd-off::before{content:\"\\F067A\"}.mdi-current-ac::before{content:\"\\F1480\"}.mdi-current-dc::before{content:\"\\F095C\"}.mdi-cursor-default::before{content:\"\\F01C0\"}.mdi-cursor-default-click::before{content:\"\\F0CFD\"}.mdi-cursor-default-click-outline::before{content:\"\\F0CFE\"}.mdi-cursor-default-gesture::before{content:\"\\F1127\"}.mdi-cursor-default-gesture-outline::before{content:\"\\F1128\"}.mdi-cursor-default-outline::before{content:\"\\F01BF\"}.mdi-cursor-move::before{content:\"\\F01BE\"}.mdi-cursor-pointer::before{content:\"\\F01BD\"}.mdi-cursor-text::before{content:\"\\F05E7\"}.mdi-dance-ballroom::before{content:\"\\F15FB\"}.mdi-dance-pole::before{content:\"\\F1578\"}.mdi-data-matrix::before{content:\"\\F153C\"}.mdi-data-matrix-edit::before{content:\"\\F153D\"}.mdi-data-matrix-minus::before{content:\"\\F153E\"}.mdi-data-matrix-plus::before{content:\"\\F153F\"}.mdi-data-matrix-remove::before{content:\"\\F1540\"}.mdi-data-matrix-scan::before{content:\"\\F1541\"}.mdi-database::before{content:\"\\F01BC\"}.mdi-database-alert::before{content:\"\\F163A\"}.mdi-database-alert-outline::before{content:\"\\F1624\"}.mdi-database-arrow-down::before{content:\"\\F163B\"}.mdi-database-arrow-down-outline::before{content:\"\\F1625\"}.mdi-database-arrow-left::before{content:\"\\F163C\"}.mdi-database-arrow-left-outline::before{content:\"\\F1626\"}.mdi-database-arrow-right::before{content:\"\\F163D\"}.mdi-database-arrow-right-outline::before{content:\"\\F1627\"}.mdi-database-arrow-up::before{content:\"\\F163E\"}.mdi-database-arrow-up-outline::before{content:\"\\F1628\"}.mdi-database-check::before{content:\"\\F0AA9\"}.mdi-database-check-outline::before{content:\"\\F1629\"}.mdi-database-clock::before{content:\"\\F163F\"}.mdi-database-clock-outline::before{content:\"\\F162A\"}.mdi-database-cog::before{content:\"\\F164B\"}.mdi-database-cog-outline::before{content:\"\\F164C\"}.mdi-database-edit::before{content:\"\\F0B86\"}.mdi-database-edit-outline::before{content:\"\\F162B\"}.mdi-database-export::before{content:\"\\F095E\"}.mdi-database-export-outline::before{content:\"\\F162C\"}.mdi-database-import::before{content:\"\\F095D\"}.mdi-database-import-outline::before{content:\"\\F162D\"}.mdi-database-lock::before{content:\"\\F0AAA\"}.mdi-database-lock-outline::before{content:\"\\F162E\"}.mdi-database-marker::before{content:\"\\F12F6\"}.mdi-database-marker-outline::before{content:\"\\F162F\"}.mdi-database-minus::before{content:\"\\F01BB\"}.mdi-database-minus-outline::before{content:\"\\F1630\"}.mdi-database-off::before{content:\"\\F1640\"}.mdi-database-off-outline::before{content:\"\\F1631\"}.mdi-database-outline::before{content:\"\\F1632\"}.mdi-database-plus::before{content:\"\\F01BA\"}.mdi-database-plus-outline::before{content:\"\\F1633\"}.mdi-database-refresh::before{content:\"\\F05C2\"}.mdi-database-refresh-outline::before{content:\"\\F1634\"}.mdi-database-remove::before{content:\"\\F0D00\"}.mdi-database-remove-outline::before{content:\"\\F1635\"}.mdi-database-search::before{content:\"\\F0866\"}.mdi-database-search-outline::before{content:\"\\F1636\"}.mdi-database-settings::before{content:\"\\F0D01\"}.mdi-database-settings-outline::before{content:\"\\F1637\"}.mdi-database-sync::before{content:\"\\F0CFF\"}.mdi-database-sync-outline::before{content:\"\\F1638\"}.mdi-death-star::before{content:\"\\F08D8\"}.mdi-death-star-variant::before{content:\"\\F08D9\"}.mdi-deathly-hallows::before{content:\"\\F0B87\"}.mdi-debian::before{content:\"\\F08DA\"}.mdi-debug-step-into::before{content:\"\\F01B9\"}.mdi-debug-step-out::before{content:\"\\F01B8\"}.mdi-debug-step-over::before{content:\"\\F01B7\"}.mdi-decagram::before{content:\"\\F076C\"}.mdi-decagram-outline::before{content:\"\\F076D\"}.mdi-decimal::before{content:\"\\F10A1\"}.mdi-decimal-comma::before{content:\"\\F10A2\"}.mdi-decimal-comma-decrease::before{content:\"\\F10A3\"}.mdi-decimal-comma-increase::before{content:\"\\F10A4\"}.mdi-decimal-decrease::before{content:\"\\F01B6\"}.mdi-decimal-increase::before{content:\"\\F01B5\"}.mdi-delete::before{content:\"\\F01B4\"}.mdi-delete-alert::before{content:\"\\F10A5\"}.mdi-delete-alert-outline::before{content:\"\\F10A6\"}.mdi-delete-circle::before{content:\"\\F0683\"}.mdi-delete-circle-outline::before{content:\"\\F0B88\"}.mdi-delete-clock::before{content:\"\\F1556\"}.mdi-delete-clock-outline::before{content:\"\\F1557\"}.mdi-delete-empty::before{content:\"\\F06CC\"}.mdi-delete-empty-outline::before{content:\"\\F0E9D\"}.mdi-delete-forever::before{content:\"\\F05E8\"}.mdi-delete-forever-outline::before{content:\"\\F0B89\"}.mdi-delete-off::before{content:\"\\F10A7\"}.mdi-delete-off-outline::before{content:\"\\F10A8\"}.mdi-delete-outline::before{content:\"\\F09E7\"}.mdi-delete-restore::before{content:\"\\F0819\"}.mdi-delete-sweep::before{content:\"\\F05E9\"}.mdi-delete-sweep-outline::before{content:\"\\F0C62\"}.mdi-delete-variant::before{content:\"\\F01B3\"}.mdi-delta::before{content:\"\\F01C2\"}.mdi-desk::before{content:\"\\F1239\"}.mdi-desk-lamp::before{content:\"\\F095F\"}.mdi-deskphone::before{content:\"\\F01C3\"}.mdi-desktop-classic::before{content:\"\\F07C0\"}.mdi-desktop-mac::before{content:\"\\F01C4\"}.mdi-desktop-mac-dashboard::before{content:\"\\F09E8\"}.mdi-desktop-tower::before{content:\"\\F01C5\"}.mdi-desktop-tower-monitor::before{content:\"\\F0AAB\"}.mdi-details::before{content:\"\\F01C6\"}.mdi-dev-to::before{content:\"\\F0D6E\"}.mdi-developer-board::before{content:\"\\F0697\"}.mdi-deviantart::before{content:\"\\F01C7\"}.mdi-devices::before{content:\"\\F0FB0\"}.mdi-diabetes::before{content:\"\\F1126\"}.mdi-dialpad::before{content:\"\\F061C\"}.mdi-diameter::before{content:\"\\F0C63\"}.mdi-diameter-outline::before{content:\"\\F0C64\"}.mdi-diameter-variant::before{content:\"\\F0C65\"}.mdi-diamond::before{content:\"\\F0B8A\"}.mdi-diamond-outline::before{content:\"\\F0B8B\"}.mdi-diamond-stone::before{content:\"\\F01C8\"}.mdi-dice-1::before{content:\"\\F01CA\"}.mdi-dice-1-outline::before{content:\"\\F114A\"}.mdi-dice-2::before{content:\"\\F01CB\"}.mdi-dice-2-outline::before{content:\"\\F114B\"}.mdi-dice-3::before{content:\"\\F01CC\"}.mdi-dice-3-outline::before{content:\"\\F114C\"}.mdi-dice-4::before{content:\"\\F01CD\"}.mdi-dice-4-outline::before{content:\"\\F114D\"}.mdi-dice-5::before{content:\"\\F01CE\"}.mdi-dice-5-outline::before{content:\"\\F114E\"}.mdi-dice-6::before{content:\"\\F01CF\"}.mdi-dice-6-outline::before{content:\"\\F114F\"}.mdi-dice-d10::before{content:\"\\F1153\"}.mdi-dice-d10-outline::before{content:\"\\F076F\"}.mdi-dice-d12::before{content:\"\\F1154\"}.mdi-dice-d12-outline::before{content:\"\\F0867\"}.mdi-dice-d20::before{content:\"\\F1155\"}.mdi-dice-d20-outline::before{content:\"\\F05EA\"}.mdi-dice-d4::before{content:\"\\F1150\"}.mdi-dice-d4-outline::before{content:\"\\F05EB\"}.mdi-dice-d6::before{content:\"\\F1151\"}.mdi-dice-d6-outline::before{content:\"\\F05ED\"}.mdi-dice-d8::before{content:\"\\F1152\"}.mdi-dice-d8-outline::before{content:\"\\F05EC\"}.mdi-dice-multiple::before{content:\"\\F076E\"}.mdi-dice-multiple-outline::before{content:\"\\F1156\"}.mdi-digital-ocean::before{content:\"\\F1237\"}.mdi-dip-switch::before{content:\"\\F07C1\"}.mdi-directions::before{content:\"\\F01D0\"}.mdi-directions-fork::before{content:\"\\F0641\"}.mdi-disc::before{content:\"\\F05EE\"}.mdi-disc-alert::before{content:\"\\F01D1\"}.mdi-disc-player::before{content:\"\\F0960\"}.mdi-discord::before{content:\"\\F066F\"}.mdi-dishwasher::before{content:\"\\F0AAC\"}.mdi-dishwasher-alert::before{content:\"\\F11B8\"}.mdi-dishwasher-off::before{content:\"\\F11B9\"}.mdi-disqus::before{content:\"\\F01D2\"}.mdi-distribute-horizontal-center::before{content:\"\\F11C9\"}.mdi-distribute-horizontal-left::before{content:\"\\F11C8\"}.mdi-distribute-horizontal-right::before{content:\"\\F11CA\"}.mdi-distribute-vertical-bottom::before{content:\"\\F11CB\"}.mdi-distribute-vertical-center::before{content:\"\\F11CC\"}.mdi-distribute-vertical-top::before{content:\"\\F11CD\"}.mdi-diving-flippers::before{content:\"\\F0DBF\"}.mdi-diving-helmet::before{content:\"\\F0DC0\"}.mdi-diving-scuba::before{content:\"\\F0DC1\"}.mdi-diving-scuba-flag::before{content:\"\\F0DC2\"}.mdi-diving-scuba-tank::before{content:\"\\F0DC3\"}.mdi-diving-scuba-tank-multiple::before{content:\"\\F0DC4\"}.mdi-diving-snorkel::before{content:\"\\F0DC5\"}.mdi-division::before{content:\"\\F01D4\"}.mdi-division-box::before{content:\"\\F01D5\"}.mdi-dlna::before{content:\"\\F0A41\"}.mdi-dna::before{content:\"\\F0684\"}.mdi-dns::before{content:\"\\F01D6\"}.mdi-dns-outline::before{content:\"\\F0B8C\"}.mdi-do-not-disturb::before{content:\"\\F0698\"}.mdi-do-not-disturb-off::before{content:\"\\F0699\"}.mdi-dock-bottom::before{content:\"\\F10A9\"}.mdi-dock-left::before{content:\"\\F10AA\"}.mdi-dock-right::before{content:\"\\F10AB\"}.mdi-dock-top::before{content:\"\\F1513\"}.mdi-dock-window::before{content:\"\\F10AC\"}.mdi-docker::before{content:\"\\F0868\"}.mdi-doctor::before{content:\"\\F0A42\"}.mdi-dog::before{content:\"\\F0A43\"}.mdi-dog-service::before{content:\"\\F0AAD\"}.mdi-dog-side::before{content:\"\\F0A44\"}.mdi-dolby::before{content:\"\\F06B3\"}.mdi-dolly::before{content:\"\\F0E9E\"}.mdi-domain::before{content:\"\\F01D7\"}.mdi-domain-off::before{content:\"\\F0D6F\"}.mdi-domain-plus::before{content:\"\\F10AD\"}.mdi-domain-remove::before{content:\"\\F10AE\"}.mdi-dome-light::before{content:\"\\F141E\"}.mdi-domino-mask::before{content:\"\\F1023\"}.mdi-donkey::before{content:\"\\F07C2\"}.mdi-door::before{content:\"\\F081A\"}.mdi-door-closed::before{content:\"\\F081B\"}.mdi-door-closed-lock::before{content:\"\\F10AF\"}.mdi-door-open::before{content:\"\\F081C\"}.mdi-doorbell::before{content:\"\\F12E6\"}.mdi-doorbell-video::before{content:\"\\F0869\"}.mdi-dot-net::before{content:\"\\F0AAE\"}.mdi-dots-grid::before{content:\"\\F15FC\"}.mdi-dots-hexagon::before{content:\"\\F15FF\"}.mdi-dots-horizontal::before{content:\"\\F01D8\"}.mdi-dots-horizontal-circle::before{content:\"\\F07C3\"}.mdi-dots-horizontal-circle-outline::before{content:\"\\F0B8D\"}.mdi-dots-square::before{content:\"\\F15FD\"}.mdi-dots-triangle::before{content:\"\\F15FE\"}.mdi-dots-vertical::before{content:\"\\F01D9\"}.mdi-dots-vertical-circle::before{content:\"\\F07C4\"}.mdi-dots-vertical-circle-outline::before{content:\"\\F0B8E\"}.mdi-douban::before{content:\"\\F069A\"}.mdi-download::before{content:\"\\F01DA\"}.mdi-download-box::before{content:\"\\F1462\"}.mdi-download-box-outline::before{content:\"\\F1463\"}.mdi-download-circle::before{content:\"\\F1464\"}.mdi-download-circle-outline::before{content:\"\\F1465\"}.mdi-download-lock::before{content:\"\\F1320\"}.mdi-download-lock-outline::before{content:\"\\F1321\"}.mdi-download-multiple::before{content:\"\\F09E9\"}.mdi-download-network::before{content:\"\\F06F4\"}.mdi-download-network-outline::before{content:\"\\F0C66\"}.mdi-download-off::before{content:\"\\F10B0\"}.mdi-download-off-outline::before{content:\"\\F10B1\"}.mdi-download-outline::before{content:\"\\F0B8F\"}.mdi-drag::before{content:\"\\F01DB\"}.mdi-drag-horizontal::before{content:\"\\F01DC\"}.mdi-drag-horizontal-variant::before{content:\"\\F12F0\"}.mdi-drag-variant::before{content:\"\\F0B90\"}.mdi-drag-vertical::before{content:\"\\F01DD\"}.mdi-drag-vertical-variant::before{content:\"\\F12F1\"}.mdi-drama-masks::before{content:\"\\F0D02\"}.mdi-draw::before{content:\"\\F0F49\"}.mdi-drawing::before{content:\"\\F01DE\"}.mdi-drawing-box::before{content:\"\\F01DF\"}.mdi-dresser::before{content:\"\\F0F4A\"}.mdi-dresser-outline::before{content:\"\\F0F4B\"}.mdi-drone::before{content:\"\\F01E2\"}.mdi-dropbox::before{content:\"\\F01E3\"}.mdi-drupal::before{content:\"\\F01E4\"}.mdi-duck::before{content:\"\\F01E5\"}.mdi-dumbbell::before{content:\"\\F01E6\"}.mdi-dump-truck::before{content:\"\\F0C67\"}.mdi-ear-hearing::before{content:\"\\F07C5\"}.mdi-ear-hearing-off::before{content:\"\\F0A45\"}.mdi-earth::before{content:\"\\F01E7\"}.mdi-earth-arrow-right::before{content:\"\\F1311\"}.mdi-earth-box::before{content:\"\\F06CD\"}.mdi-earth-box-minus::before{content:\"\\F1407\"}.mdi-earth-box-off::before{content:\"\\F06CE\"}.mdi-earth-box-plus::before{content:\"\\F1406\"}.mdi-earth-box-remove::before{content:\"\\F1408\"}.mdi-earth-minus::before{content:\"\\F1404\"}.mdi-earth-off::before{content:\"\\F01E8\"}.mdi-earth-plus::before{content:\"\\F1403\"}.mdi-earth-remove::before{content:\"\\F1405\"}.mdi-egg::before{content:\"\\F0AAF\"}.mdi-egg-easter::before{content:\"\\F0AB0\"}.mdi-egg-off::before{content:\"\\F13F0\"}.mdi-egg-off-outline::before{content:\"\\F13F1\"}.mdi-egg-outline::before{content:\"\\F13F2\"}.mdi-eiffel-tower::before{content:\"\\F156B\"}.mdi-eight-track::before{content:\"\\F09EA\"}.mdi-eject::before{content:\"\\F01EA\"}.mdi-eject-outline::before{content:\"\\F0B91\"}.mdi-electric-switch::before{content:\"\\F0E9F\"}.mdi-electric-switch-closed::before{content:\"\\F10D9\"}.mdi-electron-framework::before{content:\"\\F1024\"}.mdi-elephant::before{content:\"\\F07C6\"}.mdi-elevation-decline::before{content:\"\\F01EB\"}.mdi-elevation-rise::before{content:\"\\F01EC\"}.mdi-elevator::before{content:\"\\F01ED\"}.mdi-elevator-down::before{content:\"\\F12C2\"}.mdi-elevator-passenger::before{content:\"\\F1381\"}.mdi-elevator-up::before{content:\"\\F12C1\"}.mdi-ellipse::before{content:\"\\F0EA0\"}.mdi-ellipse-outline::before{content:\"\\F0EA1\"}.mdi-email::before{content:\"\\F01EE\"}.mdi-email-alert::before{content:\"\\F06CF\"}.mdi-email-alert-outline::before{content:\"\\F0D42\"}.mdi-email-box::before{content:\"\\F0D03\"}.mdi-email-check::before{content:\"\\F0AB1\"}.mdi-email-check-outline::before{content:\"\\F0AB2\"}.mdi-email-edit::before{content:\"\\F0EE3\"}.mdi-email-edit-outline::before{content:\"\\F0EE4\"}.mdi-email-lock::before{content:\"\\F01F1\"}.mdi-email-mark-as-unread::before{content:\"\\F0B92\"}.mdi-email-minus::before{content:\"\\F0EE5\"}.mdi-email-minus-outline::before{content:\"\\F0EE6\"}.mdi-email-multiple::before{content:\"\\F0EE7\"}.mdi-email-multiple-outline::before{content:\"\\F0EE8\"}.mdi-email-newsletter::before{content:\"\\F0FB1\"}.mdi-email-off::before{content:\"\\F13E3\"}.mdi-email-off-outline::before{content:\"\\F13E4\"}.mdi-email-open::before{content:\"\\F01EF\"}.mdi-email-open-multiple::before{content:\"\\F0EE9\"}.mdi-email-open-multiple-outline::before{content:\"\\F0EEA\"}.mdi-email-open-outline::before{content:\"\\F05EF\"}.mdi-email-outline::before{content:\"\\F01F0\"}.mdi-email-plus::before{content:\"\\F09EB\"}.mdi-email-plus-outline::before{content:\"\\F09EC\"}.mdi-email-receive::before{content:\"\\F10DA\"}.mdi-email-receive-outline::before{content:\"\\F10DB\"}.mdi-email-remove::before{content:\"\\F1661\"}.mdi-email-remove-outline::before{content:\"\\F1662\"}.mdi-email-search::before{content:\"\\F0961\"}.mdi-email-search-outline::before{content:\"\\F0962\"}.mdi-email-send::before{content:\"\\F10DC\"}.mdi-email-send-outline::before{content:\"\\F10DD\"}.mdi-email-sync::before{content:\"\\F12C7\"}.mdi-email-sync-outline::before{content:\"\\F12C8\"}.mdi-email-variant::before{content:\"\\F05F0\"}.mdi-ember::before{content:\"\\F0B30\"}.mdi-emby::before{content:\"\\F06B4\"}.mdi-emoticon::before{content:\"\\F0C68\"}.mdi-emoticon-angry::before{content:\"\\F0C69\"}.mdi-emoticon-angry-outline::before{content:\"\\F0C6A\"}.mdi-emoticon-confused::before{content:\"\\F10DE\"}.mdi-emoticon-confused-outline::before{content:\"\\F10DF\"}.mdi-emoticon-cool::before{content:\"\\F0C6B\"}.mdi-emoticon-cool-outline::before{content:\"\\F01F3\"}.mdi-emoticon-cry::before{content:\"\\F0C6C\"}.mdi-emoticon-cry-outline::before{content:\"\\F0C6D\"}.mdi-emoticon-dead::before{content:\"\\F0C6E\"}.mdi-emoticon-dead-outline::before{content:\"\\F069B\"}.mdi-emoticon-devil::before{content:\"\\F0C6F\"}.mdi-emoticon-devil-outline::before{content:\"\\F01F4\"}.mdi-emoticon-excited::before{content:\"\\F0C70\"}.mdi-emoticon-excited-outline::before{content:\"\\F069C\"}.mdi-emoticon-frown::before{content:\"\\F0F4C\"}.mdi-emoticon-frown-outline::before{content:\"\\F0F4D\"}.mdi-emoticon-happy::before{content:\"\\F0C71\"}.mdi-emoticon-happy-outline::before{content:\"\\F01F5\"}.mdi-emoticon-kiss::before{content:\"\\F0C72\"}.mdi-emoticon-kiss-outline::before{content:\"\\F0C73\"}.mdi-emoticon-lol::before{content:\"\\F1214\"}.mdi-emoticon-lol-outline::before{content:\"\\F1215\"}.mdi-emoticon-neutral::before{content:\"\\F0C74\"}.mdi-emoticon-neutral-outline::before{content:\"\\F01F6\"}.mdi-emoticon-outline::before{content:\"\\F01F2\"}.mdi-emoticon-poop::before{content:\"\\F01F7\"}.mdi-emoticon-poop-outline::before{content:\"\\F0C75\"}.mdi-emoticon-sad::before{content:\"\\F0C76\"}.mdi-emoticon-sad-outline::before{content:\"\\F01F8\"}.mdi-emoticon-sick::before{content:\"\\F157C\"}.mdi-emoticon-sick-outline::before{content:\"\\F157D\"}.mdi-emoticon-tongue::before{content:\"\\F01F9\"}.mdi-emoticon-tongue-outline::before{content:\"\\F0C77\"}.mdi-emoticon-wink::before{content:\"\\F0C78\"}.mdi-emoticon-wink-outline::before{content:\"\\F0C79\"}.mdi-engine::before{content:\"\\F01FA\"}.mdi-engine-off::before{content:\"\\F0A46\"}.mdi-engine-off-outline::before{content:\"\\F0A47\"}.mdi-engine-outline::before{content:\"\\F01FB\"}.mdi-epsilon::before{content:\"\\F10E0\"}.mdi-equal::before{content:\"\\F01FC\"}.mdi-equal-box::before{content:\"\\F01FD\"}.mdi-equalizer::before{content:\"\\F0EA2\"}.mdi-equalizer-outline::before{content:\"\\F0EA3\"}.mdi-eraser::before{content:\"\\F01FE\"}.mdi-eraser-variant::before{content:\"\\F0642\"}.mdi-escalator::before{content:\"\\F01FF\"}.mdi-escalator-box::before{content:\"\\F1399\"}.mdi-escalator-down::before{content:\"\\F12C0\"}.mdi-escalator-up::before{content:\"\\F12BF\"}.mdi-eslint::before{content:\"\\F0C7A\"}.mdi-et::before{content:\"\\F0AB3\"}.mdi-ethereum::before{content:\"\\F086A\"}.mdi-ethernet::before{content:\"\\F0200\"}.mdi-ethernet-cable::before{content:\"\\F0201\"}.mdi-ethernet-cable-off::before{content:\"\\F0202\"}.mdi-ev-plug-ccs1::before{content:\"\\F1519\"}.mdi-ev-plug-ccs2::before{content:\"\\F151A\"}.mdi-ev-plug-chademo::before{content:\"\\F151B\"}.mdi-ev-plug-tesla::before{content:\"\\F151C\"}.mdi-ev-plug-type1::before{content:\"\\F151D\"}.mdi-ev-plug-type2::before{content:\"\\F151E\"}.mdi-ev-station::before{content:\"\\F05F1\"}.mdi-evernote::before{content:\"\\F0204\"}.mdi-excavator::before{content:\"\\F1025\"}.mdi-exclamation::before{content:\"\\F0205\"}.mdi-exclamation-thick::before{content:\"\\F1238\"}.mdi-exit-run::before{content:\"\\F0A48\"}.mdi-exit-to-app::before{content:\"\\F0206\"}.mdi-expand-all::before{content:\"\\F0AB4\"}.mdi-expand-all-outline::before{content:\"\\F0AB5\"}.mdi-expansion-card::before{content:\"\\F08AE\"}.mdi-expansion-card-variant::before{content:\"\\F0FB2\"}.mdi-exponent::before{content:\"\\F0963\"}.mdi-exponent-box::before{content:\"\\F0964\"}.mdi-export::before{content:\"\\F0207\"}.mdi-export-variant::before{content:\"\\F0B93\"}.mdi-eye::before{content:\"\\F0208\"}.mdi-eye-check::before{content:\"\\F0D04\"}.mdi-eye-check-outline::before{content:\"\\F0D05\"}.mdi-eye-circle::before{content:\"\\F0B94\"}.mdi-eye-circle-outline::before{content:\"\\F0B95\"}.mdi-eye-minus::before{content:\"\\F1026\"}.mdi-eye-minus-outline::before{content:\"\\F1027\"}.mdi-eye-off::before{content:\"\\F0209\"}.mdi-eye-off-outline::before{content:\"\\F06D1\"}.mdi-eye-outline::before{content:\"\\F06D0\"}.mdi-eye-plus::before{content:\"\\F086B\"}.mdi-eye-plus-outline::before{content:\"\\F086C\"}.mdi-eye-remove::before{content:\"\\F15E3\"}.mdi-eye-remove-outline::before{content:\"\\F15E4\"}.mdi-eye-settings::before{content:\"\\F086D\"}.mdi-eye-settings-outline::before{content:\"\\F086E\"}.mdi-eyedropper::before{content:\"\\F020A\"}.mdi-eyedropper-minus::before{content:\"\\F13DD\"}.mdi-eyedropper-off::before{content:\"\\F13DF\"}.mdi-eyedropper-plus::before{content:\"\\F13DC\"}.mdi-eyedropper-remove::before{content:\"\\F13DE\"}.mdi-eyedropper-variant::before{content:\"\\F020B\"}.mdi-face::before{content:\"\\F0643\"}.mdi-face-agent::before{content:\"\\F0D70\"}.mdi-face-mask::before{content:\"\\F1586\"}.mdi-face-mask-outline::before{content:\"\\F1587\"}.mdi-face-outline::before{content:\"\\F0B96\"}.mdi-face-profile::before{content:\"\\F0644\"}.mdi-face-profile-woman::before{content:\"\\F1076\"}.mdi-face-recognition::before{content:\"\\F0C7B\"}.mdi-face-shimmer::before{content:\"\\F15CC\"}.mdi-face-shimmer-outline::before{content:\"\\F15CD\"}.mdi-face-woman::before{content:\"\\F1077\"}.mdi-face-woman-outline::before{content:\"\\F1078\"}.mdi-face-woman-shimmer::before{content:\"\\F15CE\"}.mdi-face-woman-shimmer-outline::before{content:\"\\F15CF\"}.mdi-facebook::before{content:\"\\F020C\"}.mdi-facebook-gaming::before{content:\"\\F07DD\"}.mdi-facebook-messenger::before{content:\"\\F020E\"}.mdi-facebook-workplace::before{content:\"\\F0B31\"}.mdi-factory::before{content:\"\\F020F\"}.mdi-family-tree::before{content:\"\\F160E\"}.mdi-fan::before{content:\"\\F0210\"}.mdi-fan-alert::before{content:\"\\F146C\"}.mdi-fan-chevron-down::before{content:\"\\F146D\"}.mdi-fan-chevron-up::before{content:\"\\F146E\"}.mdi-fan-minus::before{content:\"\\F1470\"}.mdi-fan-off::before{content:\"\\F081D\"}.mdi-fan-plus::before{content:\"\\F146F\"}.mdi-fan-remove::before{content:\"\\F1471\"}.mdi-fan-speed-1::before{content:\"\\F1472\"}.mdi-fan-speed-2::before{content:\"\\F1473\"}.mdi-fan-speed-3::before{content:\"\\F1474\"}.mdi-fast-forward::before{content:\"\\F0211\"}.mdi-fast-forward-10::before{content:\"\\F0D71\"}.mdi-fast-forward-30::before{content:\"\\F0D06\"}.mdi-fast-forward-5::before{content:\"\\F11F8\"}.mdi-fast-forward-60::before{content:\"\\F160B\"}.mdi-fast-forward-outline::before{content:\"\\F06D2\"}.mdi-fax::before{content:\"\\F0212\"}.mdi-feather::before{content:\"\\F06D3\"}.mdi-feature-search::before{content:\"\\F0A49\"}.mdi-feature-search-outline::before{content:\"\\F0A4A\"}.mdi-fedora::before{content:\"\\F08DB\"}.mdi-fencing::before{content:\"\\F14C1\"}.mdi-ferris-wheel::before{content:\"\\F0EA4\"}.mdi-ferry::before{content:\"\\F0213\"}.mdi-file::before{content:\"\\F0214\"}.mdi-file-account::before{content:\"\\F073B\"}.mdi-file-account-outline::before{content:\"\\F1028\"}.mdi-file-alert::before{content:\"\\F0A4B\"}.mdi-file-alert-outline::before{content:\"\\F0A4C\"}.mdi-file-cabinet::before{content:\"\\F0AB6\"}.mdi-file-cad::before{content:\"\\F0EEB\"}.mdi-file-cad-box::before{content:\"\\F0EEC\"}.mdi-file-cancel::before{content:\"\\F0DC6\"}.mdi-file-cancel-outline::before{content:\"\\F0DC7\"}.mdi-file-certificate::before{content:\"\\F1186\"}.mdi-file-certificate-outline::before{content:\"\\F1187\"}.mdi-file-chart::before{content:\"\\F0215\"}.mdi-file-chart-outline::before{content:\"\\F1029\"}.mdi-file-check::before{content:\"\\F0216\"}.mdi-file-check-outline::before{content:\"\\F0E29\"}.mdi-file-clock::before{content:\"\\F12E1\"}.mdi-file-clock-outline::before{content:\"\\F12E2\"}.mdi-file-cloud::before{content:\"\\F0217\"}.mdi-file-cloud-outline::before{content:\"\\F102A\"}.mdi-file-code::before{content:\"\\F022E\"}.mdi-file-code-outline::before{content:\"\\F102B\"}.mdi-file-cog::before{content:\"\\F107B\"}.mdi-file-cog-outline::before{content:\"\\F107C\"}.mdi-file-compare::before{content:\"\\F08AA\"}.mdi-file-delimited::before{content:\"\\F0218\"}.mdi-file-delimited-outline::before{content:\"\\F0EA5\"}.mdi-file-document::before{content:\"\\F0219\"}.mdi-file-document-edit::before{content:\"\\F0DC8\"}.mdi-file-document-edit-outline::before{content:\"\\F0DC9\"}.mdi-file-document-multiple::before{content:\"\\F1517\"}.mdi-file-document-multiple-outline::before{content:\"\\F1518\"}.mdi-file-document-outline::before{content:\"\\F09EE\"}.mdi-file-download::before{content:\"\\F0965\"}.mdi-file-download-outline::before{content:\"\\F0966\"}.mdi-file-edit::before{content:\"\\F11E7\"}.mdi-file-edit-outline::before{content:\"\\F11E8\"}.mdi-file-excel::before{content:\"\\F021B\"}.mdi-file-excel-box::before{content:\"\\F021C\"}.mdi-file-excel-box-outline::before{content:\"\\F102C\"}.mdi-file-excel-outline::before{content:\"\\F102D\"}.mdi-file-export::before{content:\"\\F021D\"}.mdi-file-export-outline::before{content:\"\\F102E\"}.mdi-file-eye::before{content:\"\\F0DCA\"}.mdi-file-eye-outline::before{content:\"\\F0DCB\"}.mdi-file-find::before{content:\"\\F021E\"}.mdi-file-find-outline::before{content:\"\\F0B97\"}.mdi-file-hidden::before{content:\"\\F0613\"}.mdi-file-image::before{content:\"\\F021F\"}.mdi-file-image-outline::before{content:\"\\F0EB0\"}.mdi-file-import::before{content:\"\\F0220\"}.mdi-file-import-outline::before{content:\"\\F102F\"}.mdi-file-key::before{content:\"\\F1184\"}.mdi-file-key-outline::before{content:\"\\F1185\"}.mdi-file-link::before{content:\"\\F1177\"}.mdi-file-link-outline::before{content:\"\\F1178\"}.mdi-file-lock::before{content:\"\\F0221\"}.mdi-file-lock-outline::before{content:\"\\F1030\"}.mdi-file-move::before{content:\"\\F0AB9\"}.mdi-file-move-outline::before{content:\"\\F1031\"}.mdi-file-multiple::before{content:\"\\F0222\"}.mdi-file-multiple-outline::before{content:\"\\F1032\"}.mdi-file-music::before{content:\"\\F0223\"}.mdi-file-music-outline::before{content:\"\\F0E2A\"}.mdi-file-outline::before{content:\"\\F0224\"}.mdi-file-pdf::before{content:\"\\F0225\"}.mdi-file-pdf-box::before{content:\"\\F0226\"}.mdi-file-pdf-box-outline::before{content:\"\\F0FB3\"}.mdi-file-pdf-outline::before{content:\"\\F0E2D\"}.mdi-file-percent::before{content:\"\\F081E\"}.mdi-file-percent-outline::before{content:\"\\F1033\"}.mdi-file-phone::before{content:\"\\F1179\"}.mdi-file-phone-outline::before{content:\"\\F117A\"}.mdi-file-plus::before{content:\"\\F0752\"}.mdi-file-plus-outline::before{content:\"\\F0EED\"}.mdi-file-powerpoint::before{content:\"\\F0227\"}.mdi-file-powerpoint-box::before{content:\"\\F0228\"}.mdi-file-powerpoint-box-outline::before{content:\"\\F1034\"}.mdi-file-powerpoint-outline::before{content:\"\\F1035\"}.mdi-file-presentation-box::before{content:\"\\F0229\"}.mdi-file-question::before{content:\"\\F086F\"}.mdi-file-question-outline::before{content:\"\\F1036\"}.mdi-file-refresh::before{content:\"\\F0918\"}.mdi-file-refresh-outline::before{content:\"\\F0541\"}.mdi-file-remove::before{content:\"\\F0B98\"}.mdi-file-remove-outline::before{content:\"\\F1037\"}.mdi-file-replace::before{content:\"\\F0B32\"}.mdi-file-replace-outline::before{content:\"\\F0B33\"}.mdi-file-restore::before{content:\"\\F0670\"}.mdi-file-restore-outline::before{content:\"\\F1038\"}.mdi-file-search::before{content:\"\\F0C7C\"}.mdi-file-search-outline::before{content:\"\\F0C7D\"}.mdi-file-send::before{content:\"\\F022A\"}.mdi-file-send-outline::before{content:\"\\F1039\"}.mdi-file-settings::before{content:\"\\F1079\"}.mdi-file-settings-outline::before{content:\"\\F107A\"}.mdi-file-star::before{content:\"\\F103A\"}.mdi-file-star-outline::before{content:\"\\F103B\"}.mdi-file-swap::before{content:\"\\F0FB4\"}.mdi-file-swap-outline::before{content:\"\\F0FB5\"}.mdi-file-sync::before{content:\"\\F1216\"}.mdi-file-sync-outline::before{content:\"\\F1217\"}.mdi-file-table::before{content:\"\\F0C7E\"}.mdi-file-table-box::before{content:\"\\F10E1\"}.mdi-file-table-box-multiple::before{content:\"\\F10E2\"}.mdi-file-table-box-multiple-outline::before{content:\"\\F10E3\"}.mdi-file-table-box-outline::before{content:\"\\F10E4\"}.mdi-file-table-outline::before{content:\"\\F0C7F\"}.mdi-file-tree::before{content:\"\\F0645\"}.mdi-file-tree-outline::before{content:\"\\F13D2\"}.mdi-file-undo::before{content:\"\\F08DC\"}.mdi-file-undo-outline::before{content:\"\\F103C\"}.mdi-file-upload::before{content:\"\\F0A4D\"}.mdi-file-upload-outline::before{content:\"\\F0A4E\"}.mdi-file-video::before{content:\"\\F022B\"}.mdi-file-video-outline::before{content:\"\\F0E2C\"}.mdi-file-word::before{content:\"\\F022C\"}.mdi-file-word-box::before{content:\"\\F022D\"}.mdi-file-word-box-outline::before{content:\"\\F103D\"}.mdi-file-word-outline::before{content:\"\\F103E\"}.mdi-film::before{content:\"\\F022F\"}.mdi-filmstrip::before{content:\"\\F0230\"}.mdi-filmstrip-box::before{content:\"\\F0332\"}.mdi-filmstrip-box-multiple::before{content:\"\\F0D18\"}.mdi-filmstrip-off::before{content:\"\\F0231\"}.mdi-filter::before{content:\"\\F0232\"}.mdi-filter-menu::before{content:\"\\F10E5\"}.mdi-filter-menu-outline::before{content:\"\\F10E6\"}.mdi-filter-minus::before{content:\"\\F0EEE\"}.mdi-filter-minus-outline::before{content:\"\\F0EEF\"}.mdi-filter-off::before{content:\"\\F14EF\"}.mdi-filter-off-outline::before{content:\"\\F14F0\"}.mdi-filter-outline::before{content:\"\\F0233\"}.mdi-filter-plus::before{content:\"\\F0EF0\"}.mdi-filter-plus-outline::before{content:\"\\F0EF1\"}.mdi-filter-remove::before{content:\"\\F0234\"}.mdi-filter-remove-outline::before{content:\"\\F0235\"}.mdi-filter-variant::before{content:\"\\F0236\"}.mdi-filter-variant-minus::before{content:\"\\F1112\"}.mdi-filter-variant-plus::before{content:\"\\F1113\"}.mdi-filter-variant-remove::before{content:\"\\F103F\"}.mdi-finance::before{content:\"\\F081F\"}.mdi-find-replace::before{content:\"\\F06D4\"}.mdi-fingerprint::before{content:\"\\F0237\"}.mdi-fingerprint-off::before{content:\"\\F0EB1\"}.mdi-fire::before{content:\"\\F0238\"}.mdi-fire-alert::before{content:\"\\F15D7\"}.mdi-fire-extinguisher::before{content:\"\\F0EF2\"}.mdi-fire-hydrant::before{content:\"\\F1137\"}.mdi-fire-hydrant-alert::before{content:\"\\F1138\"}.mdi-fire-hydrant-off::before{content:\"\\F1139\"}.mdi-fire-truck::before{content:\"\\F08AB\"}.mdi-firebase::before{content:\"\\F0967\"}.mdi-firefox::before{content:\"\\F0239\"}.mdi-fireplace::before{content:\"\\F0E2E\"}.mdi-fireplace-off::before{content:\"\\F0E2F\"}.mdi-firework::before{content:\"\\F0E30\"}.mdi-fish::before{content:\"\\F023A\"}.mdi-fish-off::before{content:\"\\F13F3\"}.mdi-fishbowl::before{content:\"\\F0EF3\"}.mdi-fishbowl-outline::before{content:\"\\F0EF4\"}.mdi-fit-to-page::before{content:\"\\F0EF5\"}.mdi-fit-to-page-outline::before{content:\"\\F0EF6\"}.mdi-flag::before{content:\"\\F023B\"}.mdi-flag-checkered::before{content:\"\\F023C\"}.mdi-flag-minus::before{content:\"\\F0B99\"}.mdi-flag-minus-outline::before{content:\"\\F10B2\"}.mdi-flag-outline::before{content:\"\\F023D\"}.mdi-flag-plus::before{content:\"\\F0B9A\"}.mdi-flag-plus-outline::before{content:\"\\F10B3\"}.mdi-flag-remove::before{content:\"\\F0B9B\"}.mdi-flag-remove-outline::before{content:\"\\F10B4\"}.mdi-flag-triangle::before{content:\"\\F023F\"}.mdi-flag-variant::before{content:\"\\F0240\"}.mdi-flag-variant-outline::before{content:\"\\F023E\"}.mdi-flare::before{content:\"\\F0D72\"}.mdi-flash::before{content:\"\\F0241\"}.mdi-flash-alert::before{content:\"\\F0EF7\"}.mdi-flash-alert-outline::before{content:\"\\F0EF8\"}.mdi-flash-auto::before{content:\"\\F0242\"}.mdi-flash-circle::before{content:\"\\F0820\"}.mdi-flash-off::before{content:\"\\F0243\"}.mdi-flash-outline::before{content:\"\\F06D5\"}.mdi-flash-red-eye::before{content:\"\\F067B\"}.mdi-flashlight::before{content:\"\\F0244\"}.mdi-flashlight-off::before{content:\"\\F0245\"}.mdi-flask::before{content:\"\\F0093\"}.mdi-flask-empty::before{content:\"\\F0094\"}.mdi-flask-empty-minus::before{content:\"\\F123A\"}.mdi-flask-empty-minus-outline::before{content:\"\\F123B\"}.mdi-flask-empty-off::before{content:\"\\F13F4\"}.mdi-flask-empty-off-outline::before{content:\"\\F13F5\"}.mdi-flask-empty-outline::before{content:\"\\F0095\"}.mdi-flask-empty-plus::before{content:\"\\F123C\"}.mdi-flask-empty-plus-outline::before{content:\"\\F123D\"}.mdi-flask-empty-remove::before{content:\"\\F123E\"}.mdi-flask-empty-remove-outline::before{content:\"\\F123F\"}.mdi-flask-minus::before{content:\"\\F1240\"}.mdi-flask-minus-outline::before{content:\"\\F1241\"}.mdi-flask-off::before{content:\"\\F13F6\"}.mdi-flask-off-outline::before{content:\"\\F13F7\"}.mdi-flask-outline::before{content:\"\\F0096\"}.mdi-flask-plus::before{content:\"\\F1242\"}.mdi-flask-plus-outline::before{content:\"\\F1243\"}.mdi-flask-remove::before{content:\"\\F1244\"}.mdi-flask-remove-outline::before{content:\"\\F1245\"}.mdi-flask-round-bottom::before{content:\"\\F124B\"}.mdi-flask-round-bottom-empty::before{content:\"\\F124C\"}.mdi-flask-round-bottom-empty-outline::before{content:\"\\F124D\"}.mdi-flask-round-bottom-outline::before{content:\"\\F124E\"}.mdi-fleur-de-lis::before{content:\"\\F1303\"}.mdi-flip-horizontal::before{content:\"\\F10E7\"}.mdi-flip-to-back::before{content:\"\\F0247\"}.mdi-flip-to-front::before{content:\"\\F0248\"}.mdi-flip-vertical::before{content:\"\\F10E8\"}.mdi-floor-lamp::before{content:\"\\F08DD\"}.mdi-floor-lamp-dual::before{content:\"\\F1040\"}.mdi-floor-lamp-variant::before{content:\"\\F1041\"}.mdi-floor-plan::before{content:\"\\F0821\"}.mdi-floppy::before{content:\"\\F0249\"}.mdi-floppy-variant::before{content:\"\\F09EF\"}.mdi-flower::before{content:\"\\F024A\"}.mdi-flower-outline::before{content:\"\\F09F0\"}.mdi-flower-poppy::before{content:\"\\F0D08\"}.mdi-flower-tulip::before{content:\"\\F09F1\"}.mdi-flower-tulip-outline::before{content:\"\\F09F2\"}.mdi-focus-auto::before{content:\"\\F0F4E\"}.mdi-focus-field::before{content:\"\\F0F4F\"}.mdi-focus-field-horizontal::before{content:\"\\F0F50\"}.mdi-focus-field-vertical::before{content:\"\\F0F51\"}.mdi-folder::before{content:\"\\F024B\"}.mdi-folder-account::before{content:\"\\F024C\"}.mdi-folder-account-outline::before{content:\"\\F0B9C\"}.mdi-folder-alert::before{content:\"\\F0DCC\"}.mdi-folder-alert-outline::before{content:\"\\F0DCD\"}.mdi-folder-clock::before{content:\"\\F0ABA\"}.mdi-folder-clock-outline::before{content:\"\\F0ABB\"}.mdi-folder-cog::before{content:\"\\F107F\"}.mdi-folder-cog-outline::before{content:\"\\F1080\"}.mdi-folder-download::before{content:\"\\F024D\"}.mdi-folder-download-outline::before{content:\"\\F10E9\"}.mdi-folder-edit::before{content:\"\\F08DE\"}.mdi-folder-edit-outline::before{content:\"\\F0DCE\"}.mdi-folder-google-drive::before{content:\"\\F024E\"}.mdi-folder-heart::before{content:\"\\F10EA\"}.mdi-folder-heart-outline::before{content:\"\\F10EB\"}.mdi-folder-home::before{content:\"\\F10B5\"}.mdi-folder-home-outline::before{content:\"\\F10B6\"}.mdi-folder-image::before{content:\"\\F024F\"}.mdi-folder-information::before{content:\"\\F10B7\"}.mdi-folder-information-outline::before{content:\"\\F10B8\"}.mdi-folder-key::before{content:\"\\F08AC\"}.mdi-folder-key-network::before{content:\"\\F08AD\"}.mdi-folder-key-network-outline::before{content:\"\\F0C80\"}.mdi-folder-key-outline::before{content:\"\\F10EC\"}.mdi-folder-lock::before{content:\"\\F0250\"}.mdi-folder-lock-open::before{content:\"\\F0251\"}.mdi-folder-marker::before{content:\"\\F126D\"}.mdi-folder-marker-outline::before{content:\"\\F126E\"}.mdi-folder-move::before{content:\"\\F0252\"}.mdi-folder-move-outline::before{content:\"\\F1246\"}.mdi-folder-multiple::before{content:\"\\F0253\"}.mdi-folder-multiple-image::before{content:\"\\F0254\"}.mdi-folder-multiple-outline::before{content:\"\\F0255\"}.mdi-folder-multiple-plus::before{content:\"\\F147E\"}.mdi-folder-multiple-plus-outline::before{content:\"\\F147F\"}.mdi-folder-music::before{content:\"\\F1359\"}.mdi-folder-music-outline::before{content:\"\\F135A\"}.mdi-folder-network::before{content:\"\\F0870\"}.mdi-folder-network-outline::before{content:\"\\F0C81\"}.mdi-folder-open::before{content:\"\\F0770\"}.mdi-folder-open-outline::before{content:\"\\F0DCF\"}.mdi-folder-outline::before{content:\"\\F0256\"}.mdi-folder-plus::before{content:\"\\F0257\"}.mdi-folder-plus-outline::before{content:\"\\F0B9D\"}.mdi-folder-pound::before{content:\"\\F0D09\"}.mdi-folder-pound-outline::before{content:\"\\F0D0A\"}.mdi-folder-refresh::before{content:\"\\F0749\"}.mdi-folder-refresh-outline::before{content:\"\\F0542\"}.mdi-folder-remove::before{content:\"\\F0258\"}.mdi-folder-remove-outline::before{content:\"\\F0B9E\"}.mdi-folder-search::before{content:\"\\F0968\"}.mdi-folder-search-outline::before{content:\"\\F0969\"}.mdi-folder-settings::before{content:\"\\F107D\"}.mdi-folder-settings-outline::before{content:\"\\F107E\"}.mdi-folder-star::before{content:\"\\F069D\"}.mdi-folder-star-multiple::before{content:\"\\F13D3\"}.mdi-folder-star-multiple-outline::before{content:\"\\F13D4\"}.mdi-folder-star-outline::before{content:\"\\F0B9F\"}.mdi-folder-swap::before{content:\"\\F0FB6\"}.mdi-folder-swap-outline::before{content:\"\\F0FB7\"}.mdi-folder-sync::before{content:\"\\F0D0B\"}.mdi-folder-sync-outline::before{content:\"\\F0D0C\"}.mdi-folder-table::before{content:\"\\F12E3\"}.mdi-folder-table-outline::before{content:\"\\F12E4\"}.mdi-folder-text::before{content:\"\\F0C82\"}.mdi-folder-text-outline::before{content:\"\\F0C83\"}.mdi-folder-upload::before{content:\"\\F0259\"}.mdi-folder-upload-outline::before{content:\"\\F10ED\"}.mdi-folder-zip::before{content:\"\\F06EB\"}.mdi-folder-zip-outline::before{content:\"\\F07B9\"}.mdi-font-awesome::before{content:\"\\F003A\"}.mdi-food::before{content:\"\\F025A\"}.mdi-food-apple::before{content:\"\\F025B\"}.mdi-food-apple-outline::before{content:\"\\F0C84\"}.mdi-food-croissant::before{content:\"\\F07C8\"}.mdi-food-drumstick::before{content:\"\\F141F\"}.mdi-food-drumstick-off::before{content:\"\\F1468\"}.mdi-food-drumstick-off-outline::before{content:\"\\F1469\"}.mdi-food-drumstick-outline::before{content:\"\\F1420\"}.mdi-food-fork-drink::before{content:\"\\F05F2\"}.mdi-food-halal::before{content:\"\\F1572\"}.mdi-food-kosher::before{content:\"\\F1573\"}.mdi-food-off::before{content:\"\\F05F3\"}.mdi-food-steak::before{content:\"\\F146A\"}.mdi-food-steak-off::before{content:\"\\F146B\"}.mdi-food-variant::before{content:\"\\F025C\"}.mdi-food-variant-off::before{content:\"\\F13E5\"}.mdi-foot-print::before{content:\"\\F0F52\"}.mdi-football::before{content:\"\\F025D\"}.mdi-football-australian::before{content:\"\\F025E\"}.mdi-football-helmet::before{content:\"\\F025F\"}.mdi-forklift::before{content:\"\\F07C9\"}.mdi-form-dropdown::before{content:\"\\F1400\"}.mdi-form-select::before{content:\"\\F1401\"}.mdi-form-textarea::before{content:\"\\F1095\"}.mdi-form-textbox::before{content:\"\\F060E\"}.mdi-form-textbox-lock::before{content:\"\\F135D\"}.mdi-form-textbox-password::before{content:\"\\F07F5\"}.mdi-format-align-bottom::before{content:\"\\F0753\"}.mdi-format-align-center::before{content:\"\\F0260\"}.mdi-format-align-justify::before{content:\"\\F0261\"}.mdi-format-align-left::before{content:\"\\F0262\"}.mdi-format-align-middle::before{content:\"\\F0754\"}.mdi-format-align-right::before{content:\"\\F0263\"}.mdi-format-align-top::before{content:\"\\F0755\"}.mdi-format-annotation-minus::before{content:\"\\F0ABC\"}.mdi-format-annotation-plus::before{content:\"\\F0646\"}.mdi-format-bold::before{content:\"\\F0264\"}.mdi-format-clear::before{content:\"\\F0265\"}.mdi-format-color-fill::before{content:\"\\F0266\"}.mdi-format-color-highlight::before{content:\"\\F0E31\"}.mdi-format-color-marker-cancel::before{content:\"\\F1313\"}.mdi-format-color-text::before{content:\"\\F069E\"}.mdi-format-columns::before{content:\"\\F08DF\"}.mdi-format-float-center::before{content:\"\\F0267\"}.mdi-format-float-left::before{content:\"\\F0268\"}.mdi-format-float-none::before{content:\"\\F0269\"}.mdi-format-float-right::before{content:\"\\F026A\"}.mdi-format-font::before{content:\"\\F06D6\"}.mdi-format-font-size-decrease::before{content:\"\\F09F3\"}.mdi-format-font-size-increase::before{content:\"\\F09F4\"}.mdi-format-header-1::before{content:\"\\F026B\"}.mdi-format-header-2::before{content:\"\\F026C\"}.mdi-format-header-3::before{content:\"\\F026D\"}.mdi-format-header-4::before{content:\"\\F026E\"}.mdi-format-header-5::before{content:\"\\F026F\"}.mdi-format-header-6::before{content:\"\\F0270\"}.mdi-format-header-decrease::before{content:\"\\F0271\"}.mdi-format-header-equal::before{content:\"\\F0272\"}.mdi-format-header-increase::before{content:\"\\F0273\"}.mdi-format-header-pound::before{content:\"\\F0274\"}.mdi-format-horizontal-align-center::before{content:\"\\F061E\"}.mdi-format-horizontal-align-left::before{content:\"\\F061F\"}.mdi-format-horizontal-align-right::before{content:\"\\F0620\"}.mdi-format-indent-decrease::before{content:\"\\F0275\"}.mdi-format-indent-increase::before{content:\"\\F0276\"}.mdi-format-italic::before{content:\"\\F0277\"}.mdi-format-letter-case::before{content:\"\\F0B34\"}.mdi-format-letter-case-lower::before{content:\"\\F0B35\"}.mdi-format-letter-case-upper::before{content:\"\\F0B36\"}.mdi-format-letter-ends-with::before{content:\"\\F0FB8\"}.mdi-format-letter-matches::before{content:\"\\F0FB9\"}.mdi-format-letter-starts-with::before{content:\"\\F0FBA\"}.mdi-format-line-spacing::before{content:\"\\F0278\"}.mdi-format-line-style::before{content:\"\\F05C8\"}.mdi-format-line-weight::before{content:\"\\F05C9\"}.mdi-format-list-bulleted::before{content:\"\\F0279\"}.mdi-format-list-bulleted-square::before{content:\"\\F0DD0\"}.mdi-format-list-bulleted-triangle::before{content:\"\\F0EB2\"}.mdi-format-list-bulleted-type::before{content:\"\\F027A\"}.mdi-format-list-checkbox::before{content:\"\\F096A\"}.mdi-format-list-checks::before{content:\"\\F0756\"}.mdi-format-list-numbered::before{content:\"\\F027B\"}.mdi-format-list-numbered-rtl::before{content:\"\\F0D0D\"}.mdi-format-list-text::before{content:\"\\F126F\"}.mdi-format-overline::before{content:\"\\F0EB3\"}.mdi-format-page-break::before{content:\"\\F06D7\"}.mdi-format-paint::before{content:\"\\F027C\"}.mdi-format-paragraph::before{content:\"\\F027D\"}.mdi-format-pilcrow::before{content:\"\\F06D8\"}.mdi-format-quote-close::before{content:\"\\F027E\"}.mdi-format-quote-close-outline::before{content:\"\\F11A8\"}.mdi-format-quote-open::before{content:\"\\F0757\"}.mdi-format-quote-open-outline::before{content:\"\\F11A7\"}.mdi-format-rotate-90::before{content:\"\\F06AA\"}.mdi-format-section::before{content:\"\\F069F\"}.mdi-format-size::before{content:\"\\F027F\"}.mdi-format-strikethrough::before{content:\"\\F0280\"}.mdi-format-strikethrough-variant::before{content:\"\\F0281\"}.mdi-format-subscript::before{content:\"\\F0282\"}.mdi-format-superscript::before{content:\"\\F0283\"}.mdi-format-text::before{content:\"\\F0284\"}.mdi-format-text-rotation-angle-down::before{content:\"\\F0FBB\"}.mdi-format-text-rotation-angle-up::before{content:\"\\F0FBC\"}.mdi-format-text-rotation-down::before{content:\"\\F0D73\"}.mdi-format-text-rotation-down-vertical::before{content:\"\\F0FBD\"}.mdi-format-text-rotation-none::before{content:\"\\F0D74\"}.mdi-format-text-rotation-up::before{content:\"\\F0FBE\"}.mdi-format-text-rotation-vertical::before{content:\"\\F0FBF\"}.mdi-format-text-variant::before{content:\"\\F0E32\"}.mdi-format-text-variant-outline::before{content:\"\\F150F\"}.mdi-format-text-wrapping-clip::before{content:\"\\F0D0E\"}.mdi-format-text-wrapping-overflow::before{content:\"\\F0D0F\"}.mdi-format-text-wrapping-wrap::before{content:\"\\F0D10\"}.mdi-format-textbox::before{content:\"\\F0D11\"}.mdi-format-textdirection-l-to-r::before{content:\"\\F0285\"}.mdi-format-textdirection-r-to-l::before{content:\"\\F0286\"}.mdi-format-title::before{content:\"\\F05F4\"}.mdi-format-underline::before{content:\"\\F0287\"}.mdi-format-vertical-align-bottom::before{content:\"\\F0621\"}.mdi-format-vertical-align-center::before{content:\"\\F0622\"}.mdi-format-vertical-align-top::before{content:\"\\F0623\"}.mdi-format-wrap-inline::before{content:\"\\F0288\"}.mdi-format-wrap-square::before{content:\"\\F0289\"}.mdi-format-wrap-tight::before{content:\"\\F028A\"}.mdi-format-wrap-top-bottom::before{content:\"\\F028B\"}.mdi-forum::before{content:\"\\F028C\"}.mdi-forum-outline::before{content:\"\\F0822\"}.mdi-forward::before{content:\"\\F028D\"}.mdi-forwardburger::before{content:\"\\F0D75\"}.mdi-fountain::before{content:\"\\F096B\"}.mdi-fountain-pen::before{content:\"\\F0D12\"}.mdi-fountain-pen-tip::before{content:\"\\F0D13\"}.mdi-freebsd::before{content:\"\\F08E0\"}.mdi-frequently-asked-questions::before{content:\"\\F0EB4\"}.mdi-fridge::before{content:\"\\F0290\"}.mdi-fridge-alert::before{content:\"\\F11B1\"}.mdi-fridge-alert-outline::before{content:\"\\F11B2\"}.mdi-fridge-bottom::before{content:\"\\F0292\"}.mdi-fridge-industrial::before{content:\"\\F15EE\"}.mdi-fridge-industrial-alert::before{content:\"\\F15EF\"}.mdi-fridge-industrial-alert-outline::before{content:\"\\F15F0\"}.mdi-fridge-industrial-off::before{content:\"\\F15F1\"}.mdi-fridge-industrial-off-outline::before{content:\"\\F15F2\"}.mdi-fridge-industrial-outline::before{content:\"\\F15F3\"}.mdi-fridge-off::before{content:\"\\F11AF\"}.mdi-fridge-off-outline::before{content:\"\\F11B0\"}.mdi-fridge-outline::before{content:\"\\F028F\"}.mdi-fridge-top::before{content:\"\\F0291\"}.mdi-fridge-variant::before{content:\"\\F15F4\"}.mdi-fridge-variant-alert::before{content:\"\\F15F5\"}.mdi-fridge-variant-alert-outline::before{content:\"\\F15F6\"}.mdi-fridge-variant-off::before{content:\"\\F15F7\"}.mdi-fridge-variant-off-outline::before{content:\"\\F15F8\"}.mdi-fridge-variant-outline::before{content:\"\\F15F9\"}.mdi-fruit-cherries::before{content:\"\\F1042\"}.mdi-fruit-cherries-off::before{content:\"\\F13F8\"}.mdi-fruit-citrus::before{content:\"\\F1043\"}.mdi-fruit-citrus-off::before{content:\"\\F13F9\"}.mdi-fruit-grapes::before{content:\"\\F1044\"}.mdi-fruit-grapes-outline::before{content:\"\\F1045\"}.mdi-fruit-pineapple::before{content:\"\\F1046\"}.mdi-fruit-watermelon::before{content:\"\\F1047\"}.mdi-fuel::before{content:\"\\F07CA\"}.mdi-fullscreen::before{content:\"\\F0293\"}.mdi-fullscreen-exit::before{content:\"\\F0294\"}.mdi-function::before{content:\"\\F0295\"}.mdi-function-variant::before{content:\"\\F0871\"}.mdi-furigana-horizontal::before{content:\"\\F1081\"}.mdi-furigana-vertical::before{content:\"\\F1082\"}.mdi-fuse::before{content:\"\\F0C85\"}.mdi-fuse-alert::before{content:\"\\F142D\"}.mdi-fuse-blade::before{content:\"\\F0C86\"}.mdi-fuse-off::before{content:\"\\F142C\"}.mdi-gamepad::before{content:\"\\F0296\"}.mdi-gamepad-circle::before{content:\"\\F0E33\"}.mdi-gamepad-circle-down::before{content:\"\\F0E34\"}.mdi-gamepad-circle-left::before{content:\"\\F0E35\"}.mdi-gamepad-circle-outline::before{content:\"\\F0E36\"}.mdi-gamepad-circle-right::before{content:\"\\F0E37\"}.mdi-gamepad-circle-up::before{content:\"\\F0E38\"}.mdi-gamepad-down::before{content:\"\\F0E39\"}.mdi-gamepad-left::before{content:\"\\F0E3A\"}.mdi-gamepad-right::before{content:\"\\F0E3B\"}.mdi-gamepad-round::before{content:\"\\F0E3C\"}.mdi-gamepad-round-down::before{content:\"\\F0E3D\"}.mdi-gamepad-round-left::before{content:\"\\F0E3E\"}.mdi-gamepad-round-outline::before{content:\"\\F0E3F\"}.mdi-gamepad-round-right::before{content:\"\\F0E40\"}.mdi-gamepad-round-up::before{content:\"\\F0E41\"}.mdi-gamepad-square::before{content:\"\\F0EB5\"}.mdi-gamepad-square-outline::before{content:\"\\F0EB6\"}.mdi-gamepad-up::before{content:\"\\F0E42\"}.mdi-gamepad-variant::before{content:\"\\F0297\"}.mdi-gamepad-variant-outline::before{content:\"\\F0EB7\"}.mdi-gamma::before{content:\"\\F10EE\"}.mdi-gantry-crane::before{content:\"\\F0DD1\"}.mdi-garage::before{content:\"\\F06D9\"}.mdi-garage-alert::before{content:\"\\F0872\"}.mdi-garage-alert-variant::before{content:\"\\F12D5\"}.mdi-garage-open::before{content:\"\\F06DA\"}.mdi-garage-open-variant::before{content:\"\\F12D4\"}.mdi-garage-variant::before{content:\"\\F12D3\"}.mdi-gas-cylinder::before{content:\"\\F0647\"}.mdi-gas-station::before{content:\"\\F0298\"}.mdi-gas-station-off::before{content:\"\\F1409\"}.mdi-gas-station-off-outline::before{content:\"\\F140A\"}.mdi-gas-station-outline::before{content:\"\\F0EB8\"}.mdi-gate::before{content:\"\\F0299\"}.mdi-gate-and::before{content:\"\\F08E1\"}.mdi-gate-arrow-right::before{content:\"\\F1169\"}.mdi-gate-nand::before{content:\"\\F08E2\"}.mdi-gate-nor::before{content:\"\\F08E3\"}.mdi-gate-not::before{content:\"\\F08E4\"}.mdi-gate-open::before{content:\"\\F116A\"}.mdi-gate-or::before{content:\"\\F08E5\"}.mdi-gate-xnor::before{content:\"\\F08E6\"}.mdi-gate-xor::before{content:\"\\F08E7\"}.mdi-gatsby::before{content:\"\\F0E43\"}.mdi-gauge::before{content:\"\\F029A\"}.mdi-gauge-empty::before{content:\"\\F0873\"}.mdi-gauge-full::before{content:\"\\F0874\"}.mdi-gauge-low::before{content:\"\\F0875\"}.mdi-gavel::before{content:\"\\F029B\"}.mdi-gender-female::before{content:\"\\F029C\"}.mdi-gender-male::before{content:\"\\F029D\"}.mdi-gender-male-female::before{content:\"\\F029E\"}.mdi-gender-male-female-variant::before{content:\"\\F113F\"}.mdi-gender-non-binary::before{content:\"\\F1140\"}.mdi-gender-transgender::before{content:\"\\F029F\"}.mdi-gentoo::before{content:\"\\F08E8\"}.mdi-gesture::before{content:\"\\F07CB\"}.mdi-gesture-double-tap::before{content:\"\\F073C\"}.mdi-gesture-pinch::before{content:\"\\F0ABD\"}.mdi-gesture-spread::before{content:\"\\F0ABE\"}.mdi-gesture-swipe::before{content:\"\\F0D76\"}.mdi-gesture-swipe-down::before{content:\"\\F073D\"}.mdi-gesture-swipe-horizontal::before{content:\"\\F0ABF\"}.mdi-gesture-swipe-left::before{content:\"\\F073E\"}.mdi-gesture-swipe-right::before{content:\"\\F073F\"}.mdi-gesture-swipe-up::before{content:\"\\F0740\"}.mdi-gesture-swipe-vertical::before{content:\"\\F0AC0\"}.mdi-gesture-tap::before{content:\"\\F0741\"}.mdi-gesture-tap-box::before{content:\"\\F12A9\"}.mdi-gesture-tap-button::before{content:\"\\F12A8\"}.mdi-gesture-tap-hold::before{content:\"\\F0D77\"}.mdi-gesture-two-double-tap::before{content:\"\\F0742\"}.mdi-gesture-two-tap::before{content:\"\\F0743\"}.mdi-ghost::before{content:\"\\F02A0\"}.mdi-ghost-off::before{content:\"\\F09F5\"}.mdi-ghost-off-outline::before{content:\"\\F165C\"}.mdi-ghost-outline::before{content:\"\\F165D\"}.mdi-gif::before{content:\"\\F0D78\"}.mdi-gift::before{content:\"\\F0E44\"}.mdi-gift-outline::before{content:\"\\F02A1\"}.mdi-git::before{content:\"\\F02A2\"}.mdi-github::before{content:\"\\F02A4\"}.mdi-gitlab::before{content:\"\\F0BA0\"}.mdi-glass-cocktail::before{content:\"\\F0356\"}.mdi-glass-cocktail-off::before{content:\"\\F15E6\"}.mdi-glass-flute::before{content:\"\\F02A5\"}.mdi-glass-mug::before{content:\"\\F02A6\"}.mdi-glass-mug-off::before{content:\"\\F15E7\"}.mdi-glass-mug-variant::before{content:\"\\F1116\"}.mdi-glass-mug-variant-off::before{content:\"\\F15E8\"}.mdi-glass-pint-outline::before{content:\"\\F130D\"}.mdi-glass-stange::before{content:\"\\F02A7\"}.mdi-glass-tulip::before{content:\"\\F02A8\"}.mdi-glass-wine::before{content:\"\\F0876\"}.mdi-glasses::before{content:\"\\F02AA\"}.mdi-globe-light::before{content:\"\\F12D7\"}.mdi-globe-model::before{content:\"\\F08E9\"}.mdi-gmail::before{content:\"\\F02AB\"}.mdi-gnome::before{content:\"\\F02AC\"}.mdi-go-kart::before{content:\"\\F0D79\"}.mdi-go-kart-track::before{content:\"\\F0D7A\"}.mdi-gog::before{content:\"\\F0BA1\"}.mdi-gold::before{content:\"\\F124F\"}.mdi-golf::before{content:\"\\F0823\"}.mdi-golf-cart::before{content:\"\\F11A4\"}.mdi-golf-tee::before{content:\"\\F1083\"}.mdi-gondola::before{content:\"\\F0686\"}.mdi-goodreads::before{content:\"\\F0D7B\"}.mdi-google::before{content:\"\\F02AD\"}.mdi-google-ads::before{content:\"\\F0C87\"}.mdi-google-analytics::before{content:\"\\F07CC\"}.mdi-google-assistant::before{content:\"\\F07CD\"}.mdi-google-cardboard::before{content:\"\\F02AE\"}.mdi-google-chrome::before{content:\"\\F02AF\"}.mdi-google-circles::before{content:\"\\F02B0\"}.mdi-google-circles-communities::before{content:\"\\F02B1\"}.mdi-google-circles-extended::before{content:\"\\F02B2\"}.mdi-google-circles-group::before{content:\"\\F02B3\"}.mdi-google-classroom::before{content:\"\\F02C0\"}.mdi-google-cloud::before{content:\"\\F11F6\"}.mdi-google-controller::before{content:\"\\F02B4\"}.mdi-google-controller-off::before{content:\"\\F02B5\"}.mdi-google-downasaur::before{content:\"\\F1362\"}.mdi-google-drive::before{content:\"\\F02B6\"}.mdi-google-earth::before{content:\"\\F02B7\"}.mdi-google-fit::before{content:\"\\F096C\"}.mdi-google-glass::before{content:\"\\F02B8\"}.mdi-google-hangouts::before{content:\"\\F02C9\"}.mdi-google-home::before{content:\"\\F0824\"}.mdi-google-keep::before{content:\"\\F06DC\"}.mdi-google-lens::before{content:\"\\F09F6\"}.mdi-google-maps::before{content:\"\\F05F5\"}.mdi-google-my-business::before{content:\"\\F1048\"}.mdi-google-nearby::before{content:\"\\F02B9\"}.mdi-google-photos::before{content:\"\\F06DD\"}.mdi-google-play::before{content:\"\\F02BC\"}.mdi-google-plus::before{content:\"\\F02BD\"}.mdi-google-podcast::before{content:\"\\F0EB9\"}.mdi-google-spreadsheet::before{content:\"\\F09F7\"}.mdi-google-street-view::before{content:\"\\F0C88\"}.mdi-google-translate::before{content:\"\\F02BF\"}.mdi-gradient::before{content:\"\\F06A0\"}.mdi-grain::before{content:\"\\F0D7C\"}.mdi-graph::before{content:\"\\F1049\"}.mdi-graph-outline::before{content:\"\\F104A\"}.mdi-graphql::before{content:\"\\F0877\"}.mdi-grass::before{content:\"\\F1510\"}.mdi-grave-stone::before{content:\"\\F0BA2\"}.mdi-grease-pencil::before{content:\"\\F0648\"}.mdi-greater-than::before{content:\"\\F096D\"}.mdi-greater-than-or-equal::before{content:\"\\F096E\"}.mdi-grid::before{content:\"\\F02C1\"}.mdi-grid-large::before{content:\"\\F0758\"}.mdi-grid-off::before{content:\"\\F02C2\"}.mdi-grill::before{content:\"\\F0E45\"}.mdi-grill-outline::before{content:\"\\F118A\"}.mdi-group::before{content:\"\\F02C3\"}.mdi-guitar-acoustic::before{content:\"\\F0771\"}.mdi-guitar-electric::before{content:\"\\F02C4\"}.mdi-guitar-pick::before{content:\"\\F02C5\"}.mdi-guitar-pick-outline::before{content:\"\\F02C6\"}.mdi-guy-fawkes-mask::before{content:\"\\F0825\"}.mdi-hail::before{content:\"\\F0AC1\"}.mdi-hair-dryer::before{content:\"\\F10EF\"}.mdi-hair-dryer-outline::before{content:\"\\F10F0\"}.mdi-halloween::before{content:\"\\F0BA3\"}.mdi-hamburger::before{content:\"\\F0685\"}.mdi-hammer::before{content:\"\\F08EA\"}.mdi-hammer-screwdriver::before{content:\"\\F1322\"}.mdi-hammer-wrench::before{content:\"\\F1323\"}.mdi-hand::before{content:\"\\F0A4F\"}.mdi-hand-heart::before{content:\"\\F10F1\"}.mdi-hand-heart-outline::before{content:\"\\F157E\"}.mdi-hand-left::before{content:\"\\F0E46\"}.mdi-hand-okay::before{content:\"\\F0A50\"}.mdi-hand-peace::before{content:\"\\F0A51\"}.mdi-hand-peace-variant::before{content:\"\\F0A52\"}.mdi-hand-pointing-down::before{content:\"\\F0A53\"}.mdi-hand-pointing-left::before{content:\"\\F0A54\"}.mdi-hand-pointing-right::before{content:\"\\F02C7\"}.mdi-hand-pointing-up::before{content:\"\\F0A55\"}.mdi-hand-right::before{content:\"\\F0E47\"}.mdi-hand-saw::before{content:\"\\F0E48\"}.mdi-hand-wash::before{content:\"\\F157F\"}.mdi-hand-wash-outline::before{content:\"\\F1580\"}.mdi-hand-water::before{content:\"\\F139F\"}.mdi-handball::before{content:\"\\F0F53\"}.mdi-handcuffs::before{content:\"\\F113E\"}.mdi-handshake::before{content:\"\\F1218\"}.mdi-handshake-outline::before{content:\"\\F15A1\"}.mdi-hanger::before{content:\"\\F02C8\"}.mdi-hard-hat::before{content:\"\\F096F\"}.mdi-harddisk::before{content:\"\\F02CA\"}.mdi-harddisk-plus::before{content:\"\\F104B\"}.mdi-harddisk-remove::before{content:\"\\F104C\"}.mdi-hat-fedora::before{content:\"\\F0BA4\"}.mdi-hazard-lights::before{content:\"\\F0C89\"}.mdi-hdr::before{content:\"\\F0D7D\"}.mdi-hdr-off::before{content:\"\\F0D7E\"}.mdi-head::before{content:\"\\F135E\"}.mdi-head-alert::before{content:\"\\F1338\"}.mdi-head-alert-outline::before{content:\"\\F1339\"}.mdi-head-check::before{content:\"\\F133A\"}.mdi-head-check-outline::before{content:\"\\F133B\"}.mdi-head-cog::before{content:\"\\F133C\"}.mdi-head-cog-outline::before{content:\"\\F133D\"}.mdi-head-dots-horizontal::before{content:\"\\F133E\"}.mdi-head-dots-horizontal-outline::before{content:\"\\F133F\"}.mdi-head-flash::before{content:\"\\F1340\"}.mdi-head-flash-outline::before{content:\"\\F1341\"}.mdi-head-heart::before{content:\"\\F1342\"}.mdi-head-heart-outline::before{content:\"\\F1343\"}.mdi-head-lightbulb::before{content:\"\\F1344\"}.mdi-head-lightbulb-outline::before{content:\"\\F1345\"}.mdi-head-minus::before{content:\"\\F1346\"}.mdi-head-minus-outline::before{content:\"\\F1347\"}.mdi-head-outline::before{content:\"\\F135F\"}.mdi-head-plus::before{content:\"\\F1348\"}.mdi-head-plus-outline::before{content:\"\\F1349\"}.mdi-head-question::before{content:\"\\F134A\"}.mdi-head-question-outline::before{content:\"\\F134B\"}.mdi-head-remove::before{content:\"\\F134C\"}.mdi-head-remove-outline::before{content:\"\\F134D\"}.mdi-head-snowflake::before{content:\"\\F134E\"}.mdi-head-snowflake-outline::before{content:\"\\F134F\"}.mdi-head-sync::before{content:\"\\F1350\"}.mdi-head-sync-outline::before{content:\"\\F1351\"}.mdi-headphones::before{content:\"\\F02CB\"}.mdi-headphones-bluetooth::before{content:\"\\F0970\"}.mdi-headphones-box::before{content:\"\\F02CC\"}.mdi-headphones-off::before{content:\"\\F07CE\"}.mdi-headphones-settings::before{content:\"\\F02CD\"}.mdi-headset::before{content:\"\\F02CE\"}.mdi-headset-dock::before{content:\"\\F02CF\"}.mdi-headset-off::before{content:\"\\F02D0\"}.mdi-heart::before{content:\"\\F02D1\"}.mdi-heart-box::before{content:\"\\F02D2\"}.mdi-heart-box-outline::before{content:\"\\F02D3\"}.mdi-heart-broken::before{content:\"\\F02D4\"}.mdi-heart-broken-outline::before{content:\"\\F0D14\"}.mdi-heart-circle::before{content:\"\\F0971\"}.mdi-heart-circle-outline::before{content:\"\\F0972\"}.mdi-heart-cog::before{content:\"\\F1663\"}.mdi-heart-cog-outline::before{content:\"\\F1664\"}.mdi-heart-flash::before{content:\"\\F0EF9\"}.mdi-heart-half::before{content:\"\\F06DF\"}.mdi-heart-half-full::before{content:\"\\F06DE\"}.mdi-heart-half-outline::before{content:\"\\F06E0\"}.mdi-heart-minus::before{content:\"\\F142F\"}.mdi-heart-minus-outline::before{content:\"\\F1432\"}.mdi-heart-multiple::before{content:\"\\F0A56\"}.mdi-heart-multiple-outline::before{content:\"\\F0A57\"}.mdi-heart-off::before{content:\"\\F0759\"}.mdi-heart-off-outline::before{content:\"\\F1434\"}.mdi-heart-outline::before{content:\"\\F02D5\"}.mdi-heart-plus::before{content:\"\\F142E\"}.mdi-heart-plus-outline::before{content:\"\\F1431\"}.mdi-heart-pulse::before{content:\"\\F05F6\"}.mdi-heart-remove::before{content:\"\\F1430\"}.mdi-heart-remove-outline::before{content:\"\\F1433\"}.mdi-heart-settings::before{content:\"\\F1665\"}.mdi-heart-settings-outline::before{content:\"\\F1666\"}.mdi-helicopter::before{content:\"\\F0AC2\"}.mdi-help::before{content:\"\\F02D6\"}.mdi-help-box::before{content:\"\\F078B\"}.mdi-help-circle::before{content:\"\\F02D7\"}.mdi-help-circle-outline::before{content:\"\\F0625\"}.mdi-help-network::before{content:\"\\F06F5\"}.mdi-help-network-outline::before{content:\"\\F0C8A\"}.mdi-help-rhombus::before{content:\"\\F0BA5\"}.mdi-help-rhombus-outline::before{content:\"\\F0BA6\"}.mdi-hexadecimal::before{content:\"\\F12A7\"}.mdi-hexagon::before{content:\"\\F02D8\"}.mdi-hexagon-multiple::before{content:\"\\F06E1\"}.mdi-hexagon-multiple-outline::before{content:\"\\F10F2\"}.mdi-hexagon-outline::before{content:\"\\F02D9\"}.mdi-hexagon-slice-1::before{content:\"\\F0AC3\"}.mdi-hexagon-slice-2::before{content:\"\\F0AC4\"}.mdi-hexagon-slice-3::before{content:\"\\F0AC5\"}.mdi-hexagon-slice-4::before{content:\"\\F0AC6\"}.mdi-hexagon-slice-5::before{content:\"\\F0AC7\"}.mdi-hexagon-slice-6::before{content:\"\\F0AC8\"}.mdi-hexagram::before{content:\"\\F0AC9\"}.mdi-hexagram-outline::before{content:\"\\F0ACA\"}.mdi-high-definition::before{content:\"\\F07CF\"}.mdi-high-definition-box::before{content:\"\\F0878\"}.mdi-highway::before{content:\"\\F05F7\"}.mdi-hiking::before{content:\"\\F0D7F\"}.mdi-hinduism::before{content:\"\\F0973\"}.mdi-history::before{content:\"\\F02DA\"}.mdi-hockey-puck::before{content:\"\\F0879\"}.mdi-hockey-sticks::before{content:\"\\F087A\"}.mdi-hololens::before{content:\"\\F02DB\"}.mdi-home::before{content:\"\\F02DC\"}.mdi-home-account::before{content:\"\\F0826\"}.mdi-home-alert::before{content:\"\\F087B\"}.mdi-home-alert-outline::before{content:\"\\F15D0\"}.mdi-home-analytics::before{content:\"\\F0EBA\"}.mdi-home-assistant::before{content:\"\\F07D0\"}.mdi-home-automation::before{content:\"\\F07D1\"}.mdi-home-circle::before{content:\"\\F07D2\"}.mdi-home-circle-outline::before{content:\"\\F104D\"}.mdi-home-city::before{content:\"\\F0D15\"}.mdi-home-city-outline::before{content:\"\\F0D16\"}.mdi-home-currency-usd::before{content:\"\\F08AF\"}.mdi-home-edit::before{content:\"\\F1159\"}.mdi-home-edit-outline::before{content:\"\\F115A\"}.mdi-home-export-outline::before{content:\"\\F0F9B\"}.mdi-home-flood::before{content:\"\\F0EFA\"}.mdi-home-floor-0::before{content:\"\\F0DD2\"}.mdi-home-floor-1::before{content:\"\\F0D80\"}.mdi-home-floor-2::before{content:\"\\F0D81\"}.mdi-home-floor-3::before{content:\"\\F0D82\"}.mdi-home-floor-a::before{content:\"\\F0D83\"}.mdi-home-floor-b::before{content:\"\\F0D84\"}.mdi-home-floor-g::before{content:\"\\F0D85\"}.mdi-home-floor-l::before{content:\"\\F0D86\"}.mdi-home-floor-negative-1::before{content:\"\\F0DD3\"}.mdi-home-group::before{content:\"\\F0DD4\"}.mdi-home-heart::before{content:\"\\F0827\"}.mdi-home-import-outline::before{content:\"\\F0F9C\"}.mdi-home-lightbulb::before{content:\"\\F1251\"}.mdi-home-lightbulb-outline::before{content:\"\\F1252\"}.mdi-home-lock::before{content:\"\\F08EB\"}.mdi-home-lock-open::before{content:\"\\F08EC\"}.mdi-home-map-marker::before{content:\"\\F05F8\"}.mdi-home-minus::before{content:\"\\F0974\"}.mdi-home-minus-outline::before{content:\"\\F13D5\"}.mdi-home-modern::before{content:\"\\F02DD\"}.mdi-home-outline::before{content:\"\\F06A1\"}.mdi-home-plus::before{content:\"\\F0975\"}.mdi-home-plus-outline::before{content:\"\\F13D6\"}.mdi-home-remove::before{content:\"\\F1247\"}.mdi-home-remove-outline::before{content:\"\\F13D7\"}.mdi-home-roof::before{content:\"\\F112B\"}.mdi-home-search::before{content:\"\\F13B0\"}.mdi-home-search-outline::before{content:\"\\F13B1\"}.mdi-home-thermometer::before{content:\"\\F0F54\"}.mdi-home-thermometer-outline::before{content:\"\\F0F55\"}.mdi-home-variant::before{content:\"\\F02DE\"}.mdi-home-variant-outline::before{content:\"\\F0BA7\"}.mdi-hook::before{content:\"\\F06E2\"}.mdi-hook-off::before{content:\"\\F06E3\"}.mdi-hops::before{content:\"\\F02DF\"}.mdi-horizontal-rotate-clockwise::before{content:\"\\F10F3\"}.mdi-horizontal-rotate-counterclockwise::before{content:\"\\F10F4\"}.mdi-horse::before{content:\"\\F15BF\"}.mdi-horse-human::before{content:\"\\F15C0\"}.mdi-horse-variant::before{content:\"\\F15C1\"}.mdi-horseshoe::before{content:\"\\F0A58\"}.mdi-hospital::before{content:\"\\F0FF6\"}.mdi-hospital-box::before{content:\"\\F02E0\"}.mdi-hospital-box-outline::before{content:\"\\F0FF7\"}.mdi-hospital-building::before{content:\"\\F02E1\"}.mdi-hospital-marker::before{content:\"\\F02E2\"}.mdi-hot-tub::before{content:\"\\F0828\"}.mdi-hours-24::before{content:\"\\F1478\"}.mdi-hubspot::before{content:\"\\F0D17\"}.mdi-hulu::before{content:\"\\F0829\"}.mdi-human::before{content:\"\\F02E6\"}.mdi-human-baby-changing-table::before{content:\"\\F138B\"}.mdi-human-cane::before{content:\"\\F1581\"}.mdi-human-capacity-decrease::before{content:\"\\F159B\"}.mdi-human-capacity-increase::before{content:\"\\F159C\"}.mdi-human-child::before{content:\"\\F02E7\"}.mdi-human-edit::before{content:\"\\F14E8\"}.mdi-human-female::before{content:\"\\F0649\"}.mdi-human-female-boy::before{content:\"\\F0A59\"}.mdi-human-female-dance::before{content:\"\\F15C9\"}.mdi-human-female-female::before{content:\"\\F0A5A\"}.mdi-human-female-girl::before{content:\"\\F0A5B\"}.mdi-human-greeting::before{content:\"\\F064A\"}.mdi-human-greeting-proximity::before{content:\"\\F159D\"}.mdi-human-handsdown::before{content:\"\\F064B\"}.mdi-human-handsup::before{content:\"\\F064C\"}.mdi-human-male::before{content:\"\\F064D\"}.mdi-human-male-boy::before{content:\"\\F0A5C\"}.mdi-human-male-child::before{content:\"\\F138C\"}.mdi-human-male-female::before{content:\"\\F02E8\"}.mdi-human-male-girl::before{content:\"\\F0A5D\"}.mdi-human-male-height::before{content:\"\\F0EFB\"}.mdi-human-male-height-variant::before{content:\"\\F0EFC\"}.mdi-human-male-male::before{content:\"\\F0A5E\"}.mdi-human-pregnant::before{content:\"\\F05CF\"}.mdi-human-queue::before{content:\"\\F1571\"}.mdi-human-scooter::before{content:\"\\F11E9\"}.mdi-human-wheelchair::before{content:\"\\F138D\"}.mdi-humble-bundle::before{content:\"\\F0744\"}.mdi-hvac::before{content:\"\\F1352\"}.mdi-hvac-off::before{content:\"\\F159E\"}.mdi-hydraulic-oil-level::before{content:\"\\F1324\"}.mdi-hydraulic-oil-temperature::before{content:\"\\F1325\"}.mdi-hydro-power::before{content:\"\\F12E5\"}.mdi-ice-cream::before{content:\"\\F082A\"}.mdi-ice-cream-off::before{content:\"\\F0E52\"}.mdi-ice-pop::before{content:\"\\F0EFD\"}.mdi-id-card::before{content:\"\\F0FC0\"}.mdi-identifier::before{content:\"\\F0EFE\"}.mdi-ideogram-cjk::before{content:\"\\F1331\"}.mdi-ideogram-cjk-variant::before{content:\"\\F1332\"}.mdi-iframe::before{content:\"\\F0C8B\"}.mdi-iframe-array::before{content:\"\\F10F5\"}.mdi-iframe-array-outline::before{content:\"\\F10F6\"}.mdi-iframe-braces::before{content:\"\\F10F7\"}.mdi-iframe-braces-outline::before{content:\"\\F10F8\"}.mdi-iframe-outline::before{content:\"\\F0C8C\"}.mdi-iframe-parentheses::before{content:\"\\F10F9\"}.mdi-iframe-parentheses-outline::before{content:\"\\F10FA\"}.mdi-iframe-variable::before{content:\"\\F10FB\"}.mdi-iframe-variable-outline::before{content:\"\\F10FC\"}.mdi-image::before{content:\"\\F02E9\"}.mdi-image-album::before{content:\"\\F02EA\"}.mdi-image-area::before{content:\"\\F02EB\"}.mdi-image-area-close::before{content:\"\\F02EC\"}.mdi-image-auto-adjust::before{content:\"\\F0FC1\"}.mdi-image-broken::before{content:\"\\F02ED\"}.mdi-image-broken-variant::before{content:\"\\F02EE\"}.mdi-image-edit::before{content:\"\\F11E3\"}.mdi-image-edit-outline::before{content:\"\\F11E4\"}.mdi-image-filter-black-white::before{content:\"\\F02F0\"}.mdi-image-filter-center-focus::before{content:\"\\F02F1\"}.mdi-image-filter-center-focus-strong::before{content:\"\\F0EFF\"}.mdi-image-filter-center-focus-strong-outline::before{content:\"\\F0F00\"}.mdi-image-filter-center-focus-weak::before{content:\"\\F02F2\"}.mdi-image-filter-drama::before{content:\"\\F02F3\"}.mdi-image-filter-frames::before{content:\"\\F02F4\"}.mdi-image-filter-hdr::before{content:\"\\F02F5\"}.mdi-image-filter-none::before{content:\"\\F02F6\"}.mdi-image-filter-tilt-shift::before{content:\"\\F02F7\"}.mdi-image-filter-vintage::before{content:\"\\F02F8\"}.mdi-image-frame::before{content:\"\\F0E49\"}.mdi-image-minus::before{content:\"\\F1419\"}.mdi-image-move::before{content:\"\\F09F8\"}.mdi-image-multiple::before{content:\"\\F02F9\"}.mdi-image-multiple-outline::before{content:\"\\F02EF\"}.mdi-image-off::before{content:\"\\F082B\"}.mdi-image-off-outline::before{content:\"\\F11D1\"}.mdi-image-outline::before{content:\"\\F0976\"}.mdi-image-plus::before{content:\"\\F087C\"}.mdi-image-remove::before{content:\"\\F1418\"}.mdi-image-search::before{content:\"\\F0977\"}.mdi-image-search-outline::before{content:\"\\F0978\"}.mdi-image-size-select-actual::before{content:\"\\F0C8D\"}.mdi-image-size-select-large::before{content:\"\\F0C8E\"}.mdi-image-size-select-small::before{content:\"\\F0C8F\"}.mdi-image-text::before{content:\"\\F160D\"}.mdi-import::before{content:\"\\F02FA\"}.mdi-inbox::before{content:\"\\F0687\"}.mdi-inbox-arrow-down::before{content:\"\\F02FB\"}.mdi-inbox-arrow-down-outline::before{content:\"\\F1270\"}.mdi-inbox-arrow-up::before{content:\"\\F03D1\"}.mdi-inbox-arrow-up-outline::before{content:\"\\F1271\"}.mdi-inbox-full::before{content:\"\\F1272\"}.mdi-inbox-full-outline::before{content:\"\\F1273\"}.mdi-inbox-multiple::before{content:\"\\F08B0\"}.mdi-inbox-multiple-outline::before{content:\"\\F0BA8\"}.mdi-inbox-outline::before{content:\"\\F1274\"}.mdi-inbox-remove::before{content:\"\\F159F\"}.mdi-inbox-remove-outline::before{content:\"\\F15A0\"}.mdi-incognito::before{content:\"\\F05F9\"}.mdi-incognito-circle::before{content:\"\\F1421\"}.mdi-incognito-circle-off::before{content:\"\\F1422\"}.mdi-incognito-off::before{content:\"\\F0075\"}.mdi-infinity::before{content:\"\\F06E4\"}.mdi-information::before{content:\"\\F02FC\"}.mdi-information-outline::before{content:\"\\F02FD\"}.mdi-information-variant::before{content:\"\\F064E\"}.mdi-instagram::before{content:\"\\F02FE\"}.mdi-instrument-triangle::before{content:\"\\F104E\"}.mdi-invert-colors::before{content:\"\\F0301\"}.mdi-invert-colors-off::before{content:\"\\F0E4A\"}.mdi-iobroker::before{content:\"\\F12E8\"}.mdi-ip::before{content:\"\\F0A5F\"}.mdi-ip-network::before{content:\"\\F0A60\"}.mdi-ip-network-outline::before{content:\"\\F0C90\"}.mdi-ipod::before{content:\"\\F0C91\"}.mdi-islam::before{content:\"\\F0979\"}.mdi-island::before{content:\"\\F104F\"}.mdi-iv-bag::before{content:\"\\F10B9\"}.mdi-jabber::before{content:\"\\F0DD5\"}.mdi-jeepney::before{content:\"\\F0302\"}.mdi-jellyfish::before{content:\"\\F0F01\"}.mdi-jellyfish-outline::before{content:\"\\F0F02\"}.mdi-jira::before{content:\"\\F0303\"}.mdi-jquery::before{content:\"\\F087D\"}.mdi-jsfiddle::before{content:\"\\F0304\"}.mdi-judaism::before{content:\"\\F097A\"}.mdi-jump-rope::before{content:\"\\F12FF\"}.mdi-kabaddi::before{content:\"\\F0D87\"}.mdi-kangaroo::before{content:\"\\F1558\"}.mdi-karate::before{content:\"\\F082C\"}.mdi-keg::before{content:\"\\F0305\"}.mdi-kettle::before{content:\"\\F05FA\"}.mdi-kettle-alert::before{content:\"\\F1317\"}.mdi-kettle-alert-outline::before{content:\"\\F1318\"}.mdi-kettle-off::before{content:\"\\F131B\"}.mdi-kettle-off-outline::before{content:\"\\F131C\"}.mdi-kettle-outline::before{content:\"\\F0F56\"}.mdi-kettle-steam::before{content:\"\\F1319\"}.mdi-kettle-steam-outline::before{content:\"\\F131A\"}.mdi-kettlebell::before{content:\"\\F1300\"}.mdi-key::before{content:\"\\F0306\"}.mdi-key-arrow-right::before{content:\"\\F1312\"}.mdi-key-chain::before{content:\"\\F1574\"}.mdi-key-chain-variant::before{content:\"\\F1575\"}.mdi-key-change::before{content:\"\\F0307\"}.mdi-key-link::before{content:\"\\F119F\"}.mdi-key-minus::before{content:\"\\F0308\"}.mdi-key-outline::before{content:\"\\F0DD6\"}.mdi-key-plus::before{content:\"\\F0309\"}.mdi-key-remove::before{content:\"\\F030A\"}.mdi-key-star::before{content:\"\\F119E\"}.mdi-key-variant::before{content:\"\\F030B\"}.mdi-key-wireless::before{content:\"\\F0FC2\"}.mdi-keyboard::before{content:\"\\F030C\"}.mdi-keyboard-backspace::before{content:\"\\F030D\"}.mdi-keyboard-caps::before{content:\"\\F030E\"}.mdi-keyboard-close::before{content:\"\\F030F\"}.mdi-keyboard-esc::before{content:\"\\F12B7\"}.mdi-keyboard-f1::before{content:\"\\F12AB\"}.mdi-keyboard-f10::before{content:\"\\F12B4\"}.mdi-keyboard-f11::before{content:\"\\F12B5\"}.mdi-keyboard-f12::before{content:\"\\F12B6\"}.mdi-keyboard-f2::before{content:\"\\F12AC\"}.mdi-keyboard-f3::before{content:\"\\F12AD\"}.mdi-keyboard-f4::before{content:\"\\F12AE\"}.mdi-keyboard-f5::before{content:\"\\F12AF\"}.mdi-keyboard-f6::before{content:\"\\F12B0\"}.mdi-keyboard-f7::before{content:\"\\F12B1\"}.mdi-keyboard-f8::before{content:\"\\F12B2\"}.mdi-keyboard-f9::before{content:\"\\F12B3\"}.mdi-keyboard-off::before{content:\"\\F0310\"}.mdi-keyboard-off-outline::before{content:\"\\F0E4B\"}.mdi-keyboard-outline::before{content:\"\\F097B\"}.mdi-keyboard-return::before{content:\"\\F0311\"}.mdi-keyboard-settings::before{content:\"\\F09F9\"}.mdi-keyboard-settings-outline::before{content:\"\\F09FA\"}.mdi-keyboard-space::before{content:\"\\F1050\"}.mdi-keyboard-tab::before{content:\"\\F0312\"}.mdi-keyboard-variant::before{content:\"\\F0313\"}.mdi-khanda::before{content:\"\\F10FD\"}.mdi-kickstarter::before{content:\"\\F0745\"}.mdi-klingon::before{content:\"\\F135B\"}.mdi-knife::before{content:\"\\F09FB\"}.mdi-knife-military::before{content:\"\\F09FC\"}.mdi-kodi::before{content:\"\\F0314\"}.mdi-kubernetes::before{content:\"\\F10FE\"}.mdi-label::before{content:\"\\F0315\"}.mdi-label-multiple::before{content:\"\\F1375\"}.mdi-label-multiple-outline::before{content:\"\\F1376\"}.mdi-label-off::before{content:\"\\F0ACB\"}.mdi-label-off-outline::before{content:\"\\F0ACC\"}.mdi-label-outline::before{content:\"\\F0316\"}.mdi-label-percent::before{content:\"\\F12EA\"}.mdi-label-percent-outline::before{content:\"\\F12EB\"}.mdi-label-variant::before{content:\"\\F0ACD\"}.mdi-label-variant-outline::before{content:\"\\F0ACE\"}.mdi-ladder::before{content:\"\\F15A2\"}.mdi-ladybug::before{content:\"\\F082D\"}.mdi-lambda::before{content:\"\\F0627\"}.mdi-lamp::before{content:\"\\F06B5\"}.mdi-lamps::before{content:\"\\F1576\"}.mdi-lan::before{content:\"\\F0317\"}.mdi-lan-check::before{content:\"\\F12AA\"}.mdi-lan-connect::before{content:\"\\F0318\"}.mdi-lan-disconnect::before{content:\"\\F0319\"}.mdi-lan-pending::before{content:\"\\F031A\"}.mdi-language-c::before{content:\"\\F0671\"}.mdi-language-cpp::before{content:\"\\F0672\"}.mdi-language-csharp::before{content:\"\\F031B\"}.mdi-language-css3::before{content:\"\\F031C\"}.mdi-language-fortran::before{content:\"\\F121A\"}.mdi-language-go::before{content:\"\\F07D3\"}.mdi-language-haskell::before{content:\"\\F0C92\"}.mdi-language-html5::before{content:\"\\F031D\"}.mdi-language-java::before{content:\"\\F0B37\"}.mdi-language-javascript::before{content:\"\\F031E\"}.mdi-language-kotlin::before{content:\"\\F1219\"}.mdi-language-lua::before{content:\"\\F08B1\"}.mdi-language-markdown::before{content:\"\\F0354\"}.mdi-language-markdown-outline::before{content:\"\\F0F5B\"}.mdi-language-php::before{content:\"\\F031F\"}.mdi-language-python::before{content:\"\\F0320\"}.mdi-language-r::before{content:\"\\F07D4\"}.mdi-language-ruby::before{content:\"\\F0D2D\"}.mdi-language-ruby-on-rails::before{content:\"\\F0ACF\"}.mdi-language-rust::before{content:\"\\F1617\"}.mdi-language-swift::before{content:\"\\F06E5\"}.mdi-language-typescript::before{content:\"\\F06E6\"}.mdi-language-xaml::before{content:\"\\F0673\"}.mdi-laptop::before{content:\"\\F0322\"}.mdi-laptop-chromebook::before{content:\"\\F0323\"}.mdi-laptop-mac::before{content:\"\\F0324\"}.mdi-laptop-off::before{content:\"\\F06E7\"}.mdi-laptop-windows::before{content:\"\\F0325\"}.mdi-laravel::before{content:\"\\F0AD0\"}.mdi-laser-pointer::before{content:\"\\F1484\"}.mdi-lasso::before{content:\"\\F0F03\"}.mdi-lastpass::before{content:\"\\F0446\"}.mdi-latitude::before{content:\"\\F0F57\"}.mdi-launch::before{content:\"\\F0327\"}.mdi-lava-lamp::before{content:\"\\F07D5\"}.mdi-layers::before{content:\"\\F0328\"}.mdi-layers-minus::before{content:\"\\F0E4C\"}.mdi-layers-off::before{content:\"\\F0329\"}.mdi-layers-off-outline::before{content:\"\\F09FD\"}.mdi-layers-outline::before{content:\"\\F09FE\"}.mdi-layers-plus::before{content:\"\\F0E4D\"}.mdi-layers-remove::before{content:\"\\F0E4E\"}.mdi-layers-search::before{content:\"\\F1206\"}.mdi-layers-search-outline::before{content:\"\\F1207\"}.mdi-layers-triple::before{content:\"\\F0F58\"}.mdi-layers-triple-outline::before{content:\"\\F0F59\"}.mdi-lead-pencil::before{content:\"\\F064F\"}.mdi-leaf::before{content:\"\\F032A\"}.mdi-leaf-maple::before{content:\"\\F0C93\"}.mdi-leaf-maple-off::before{content:\"\\F12DA\"}.mdi-leaf-off::before{content:\"\\F12D9\"}.mdi-leak::before{content:\"\\F0DD7\"}.mdi-leak-off::before{content:\"\\F0DD8\"}.mdi-led-off::before{content:\"\\F032B\"}.mdi-led-on::before{content:\"\\F032C\"}.mdi-led-outline::before{content:\"\\F032D\"}.mdi-led-strip::before{content:\"\\F07D6\"}.mdi-led-strip-variant::before{content:\"\\F1051\"}.mdi-led-variant-off::before{content:\"\\F032E\"}.mdi-led-variant-on::before{content:\"\\F032F\"}.mdi-led-variant-outline::before{content:\"\\F0330\"}.mdi-leek::before{content:\"\\F117D\"}.mdi-less-than::before{content:\"\\F097C\"}.mdi-less-than-or-equal::before{content:\"\\F097D\"}.mdi-library::before{content:\"\\F0331\"}.mdi-library-shelves::before{content:\"\\F0BA9\"}.mdi-license::before{content:\"\\F0FC3\"}.mdi-lifebuoy::before{content:\"\\F087E\"}.mdi-light-switch::before{content:\"\\F097E\"}.mdi-lightbulb::before{content:\"\\F0335\"}.mdi-lightbulb-cfl::before{content:\"\\F1208\"}.mdi-lightbulb-cfl-off::before{content:\"\\F1209\"}.mdi-lightbulb-cfl-spiral::before{content:\"\\F1275\"}.mdi-lightbulb-cfl-spiral-off::before{content:\"\\F12C3\"}.mdi-lightbulb-group::before{content:\"\\F1253\"}.mdi-lightbulb-group-off::before{content:\"\\F12CD\"}.mdi-lightbulb-group-off-outline::before{content:\"\\F12CE\"}.mdi-lightbulb-group-outline::before{content:\"\\F1254\"}.mdi-lightbulb-multiple::before{content:\"\\F1255\"}.mdi-lightbulb-multiple-off::before{content:\"\\F12CF\"}.mdi-lightbulb-multiple-off-outline::before{content:\"\\F12D0\"}.mdi-lightbulb-multiple-outline::before{content:\"\\F1256\"}.mdi-lightbulb-off::before{content:\"\\F0E4F\"}.mdi-lightbulb-off-outline::before{content:\"\\F0E50\"}.mdi-lightbulb-on::before{content:\"\\F06E8\"}.mdi-lightbulb-on-outline::before{content:\"\\F06E9\"}.mdi-lightbulb-outline::before{content:\"\\F0336\"}.mdi-lighthouse::before{content:\"\\F09FF\"}.mdi-lighthouse-on::before{content:\"\\F0A00\"}.mdi-lightning-bolt::before{content:\"\\F140B\"}.mdi-lightning-bolt-outline::before{content:\"\\F140C\"}.mdi-lingerie::before{content:\"\\F1476\"}.mdi-link::before{content:\"\\F0337\"}.mdi-link-box::before{content:\"\\F0D1A\"}.mdi-link-box-outline::before{content:\"\\F0D1B\"}.mdi-link-box-variant::before{content:\"\\F0D1C\"}.mdi-link-box-variant-outline::before{content:\"\\F0D1D\"}.mdi-link-lock::before{content:\"\\F10BA\"}.mdi-link-off::before{content:\"\\F0338\"}.mdi-link-plus::before{content:\"\\F0C94\"}.mdi-link-variant::before{content:\"\\F0339\"}.mdi-link-variant-minus::before{content:\"\\F10FF\"}.mdi-link-variant-off::before{content:\"\\F033A\"}.mdi-link-variant-plus::before{content:\"\\F1100\"}.mdi-link-variant-remove::before{content:\"\\F1101\"}.mdi-linkedin::before{content:\"\\F033B\"}.mdi-linux::before{content:\"\\F033D\"}.mdi-linux-mint::before{content:\"\\F08ED\"}.mdi-lipstick::before{content:\"\\F13B5\"}.mdi-list-status::before{content:\"\\F15AB\"}.mdi-litecoin::before{content:\"\\F0A61\"}.mdi-loading::before{content:\"\\F0772\"}.mdi-location-enter::before{content:\"\\F0FC4\"}.mdi-location-exit::before{content:\"\\F0FC5\"}.mdi-lock::before{content:\"\\F033E\"}.mdi-lock-alert::before{content:\"\\F08EE\"}.mdi-lock-alert-outline::before{content:\"\\F15D1\"}.mdi-lock-check::before{content:\"\\F139A\"}.mdi-lock-check-outline::before{content:\"\\F16A8\"}.mdi-lock-clock::before{content:\"\\F097F\"}.mdi-lock-minus::before{content:\"\\F16A9\"}.mdi-lock-minus-outline::before{content:\"\\F16AA\"}.mdi-lock-off::before{content:\"\\F1671\"}.mdi-lock-off-outline::before{content:\"\\F1672\"}.mdi-lock-open::before{content:\"\\F033F\"}.mdi-lock-open-alert::before{content:\"\\F139B\"}.mdi-lock-open-alert-outline::before{content:\"\\F15D2\"}.mdi-lock-open-check::before{content:\"\\F139C\"}.mdi-lock-open-check-outline::before{content:\"\\F16AB\"}.mdi-lock-open-minus::before{content:\"\\F16AC\"}.mdi-lock-open-minus-outline::before{content:\"\\F16AD\"}.mdi-lock-open-outline::before{content:\"\\F0340\"}.mdi-lock-open-plus::before{content:\"\\F16AE\"}.mdi-lock-open-plus-outline::before{content:\"\\F16AF\"}.mdi-lock-open-remove::before{content:\"\\F16B0\"}.mdi-lock-open-remove-outline::before{content:\"\\F16B1\"}.mdi-lock-open-variant::before{content:\"\\F0FC6\"}.mdi-lock-open-variant-outline::before{content:\"\\F0FC7\"}.mdi-lock-outline::before{content:\"\\F0341\"}.mdi-lock-pattern::before{content:\"\\F06EA\"}.mdi-lock-plus::before{content:\"\\F05FB\"}.mdi-lock-plus-outline::before{content:\"\\F16B2\"}.mdi-lock-question::before{content:\"\\F08EF\"}.mdi-lock-remove::before{content:\"\\F16B3\"}.mdi-lock-remove-outline::before{content:\"\\F16B4\"}.mdi-lock-reset::before{content:\"\\F0773\"}.mdi-lock-smart::before{content:\"\\F08B2\"}.mdi-locker::before{content:\"\\F07D7\"}.mdi-locker-multiple::before{content:\"\\F07D8\"}.mdi-login::before{content:\"\\F0342\"}.mdi-login-variant::before{content:\"\\F05FC\"}.mdi-logout::before{content:\"\\F0343\"}.mdi-logout-variant::before{content:\"\\F05FD\"}.mdi-longitude::before{content:\"\\F0F5A\"}.mdi-looks::before{content:\"\\F0344\"}.mdi-lotion::before{content:\"\\F1582\"}.mdi-lotion-outline::before{content:\"\\F1583\"}.mdi-lotion-plus::before{content:\"\\F1584\"}.mdi-lotion-plus-outline::before{content:\"\\F1585\"}.mdi-loupe::before{content:\"\\F0345\"}.mdi-lumx::before{content:\"\\F0346\"}.mdi-lungs::before{content:\"\\F1084\"}.mdi-magnet::before{content:\"\\F0347\"}.mdi-magnet-on::before{content:\"\\F0348\"}.mdi-magnify::before{content:\"\\F0349\"}.mdi-magnify-close::before{content:\"\\F0980\"}.mdi-magnify-minus::before{content:\"\\F034A\"}.mdi-magnify-minus-cursor::before{content:\"\\F0A62\"}.mdi-magnify-minus-outline::before{content:\"\\F06EC\"}.mdi-magnify-plus::before{content:\"\\F034B\"}.mdi-magnify-plus-cursor::before{content:\"\\F0A63\"}.mdi-magnify-plus-outline::before{content:\"\\F06ED\"}.mdi-magnify-remove-cursor::before{content:\"\\F120C\"}.mdi-magnify-remove-outline::before{content:\"\\F120D\"}.mdi-magnify-scan::before{content:\"\\F1276\"}.mdi-mail::before{content:\"\\F0EBB\"}.mdi-mailbox::before{content:\"\\F06EE\"}.mdi-mailbox-open::before{content:\"\\F0D88\"}.mdi-mailbox-open-outline::before{content:\"\\F0D89\"}.mdi-mailbox-open-up::before{content:\"\\F0D8A\"}.mdi-mailbox-open-up-outline::before{content:\"\\F0D8B\"}.mdi-mailbox-outline::before{content:\"\\F0D8C\"}.mdi-mailbox-up::before{content:\"\\F0D8D\"}.mdi-mailbox-up-outline::before{content:\"\\F0D8E\"}.mdi-manjaro::before{content:\"\\F160A\"}.mdi-map::before{content:\"\\F034D\"}.mdi-map-check::before{content:\"\\F0EBC\"}.mdi-map-check-outline::before{content:\"\\F0EBD\"}.mdi-map-clock::before{content:\"\\F0D1E\"}.mdi-map-clock-outline::before{content:\"\\F0D1F\"}.mdi-map-legend::before{content:\"\\F0A01\"}.mdi-map-marker::before{content:\"\\F034E\"}.mdi-map-marker-alert::before{content:\"\\F0F05\"}.mdi-map-marker-alert-outline::before{content:\"\\F0F06\"}.mdi-map-marker-check::before{content:\"\\F0C95\"}.mdi-map-marker-check-outline::before{content:\"\\F12FB\"}.mdi-map-marker-circle::before{content:\"\\F034F\"}.mdi-map-marker-distance::before{content:\"\\F08F0\"}.mdi-map-marker-down::before{content:\"\\F1102\"}.mdi-map-marker-left::before{content:\"\\F12DB\"}.mdi-map-marker-left-outline::before{content:\"\\F12DD\"}.mdi-map-marker-minus::before{content:\"\\F0650\"}.mdi-map-marker-minus-outline::before{content:\"\\F12F9\"}.mdi-map-marker-multiple::before{content:\"\\F0350\"}.mdi-map-marker-multiple-outline::before{content:\"\\F1277\"}.mdi-map-marker-off::before{content:\"\\F0351\"}.mdi-map-marker-off-outline::before{content:\"\\F12FD\"}.mdi-map-marker-outline::before{content:\"\\F07D9\"}.mdi-map-marker-path::before{content:\"\\F0D20\"}.mdi-map-marker-plus::before{content:\"\\F0651\"}.mdi-map-marker-plus-outline::before{content:\"\\F12F8\"}.mdi-map-marker-question::before{content:\"\\F0F07\"}.mdi-map-marker-question-outline::before{content:\"\\F0F08\"}.mdi-map-marker-radius::before{content:\"\\F0352\"}.mdi-map-marker-radius-outline::before{content:\"\\F12FC\"}.mdi-map-marker-remove::before{content:\"\\F0F09\"}.mdi-map-marker-remove-outline::before{content:\"\\F12FA\"}.mdi-map-marker-remove-variant::before{content:\"\\F0F0A\"}.mdi-map-marker-right::before{content:\"\\F12DC\"}.mdi-map-marker-right-outline::before{content:\"\\F12DE\"}.mdi-map-marker-star::before{content:\"\\F1608\"}.mdi-map-marker-star-outline::before{content:\"\\F1609\"}.mdi-map-marker-up::before{content:\"\\F1103\"}.mdi-map-minus::before{content:\"\\F0981\"}.mdi-map-outline::before{content:\"\\F0982\"}.mdi-map-plus::before{content:\"\\F0983\"}.mdi-map-search::before{content:\"\\F0984\"}.mdi-map-search-outline::before{content:\"\\F0985\"}.mdi-mapbox::before{content:\"\\F0BAA\"}.mdi-margin::before{content:\"\\F0353\"}.mdi-marker::before{content:\"\\F0652\"}.mdi-marker-cancel::before{content:\"\\F0DD9\"}.mdi-marker-check::before{content:\"\\F0355\"}.mdi-mastodon::before{content:\"\\F0AD1\"}.mdi-material-design::before{content:\"\\F0986\"}.mdi-material-ui::before{content:\"\\F0357\"}.mdi-math-compass::before{content:\"\\F0358\"}.mdi-math-cos::before{content:\"\\F0C96\"}.mdi-math-integral::before{content:\"\\F0FC8\"}.mdi-math-integral-box::before{content:\"\\F0FC9\"}.mdi-math-log::before{content:\"\\F1085\"}.mdi-math-norm::before{content:\"\\F0FCA\"}.mdi-math-norm-box::before{content:\"\\F0FCB\"}.mdi-math-sin::before{content:\"\\F0C97\"}.mdi-math-tan::before{content:\"\\F0C98\"}.mdi-matrix::before{content:\"\\F0628\"}.mdi-medal::before{content:\"\\F0987\"}.mdi-medal-outline::before{content:\"\\F1326\"}.mdi-medical-bag::before{content:\"\\F06EF\"}.mdi-meditation::before{content:\"\\F117B\"}.mdi-memory::before{content:\"\\F035B\"}.mdi-menu::before{content:\"\\F035C\"}.mdi-menu-down::before{content:\"\\F035D\"}.mdi-menu-down-outline::before{content:\"\\F06B6\"}.mdi-menu-left::before{content:\"\\F035E\"}.mdi-menu-left-outline::before{content:\"\\F0A02\"}.mdi-menu-open::before{content:\"\\F0BAB\"}.mdi-menu-right::before{content:\"\\F035F\"}.mdi-menu-right-outline::before{content:\"\\F0A03\"}.mdi-menu-swap::before{content:\"\\F0A64\"}.mdi-menu-swap-outline::before{content:\"\\F0A65\"}.mdi-menu-up::before{content:\"\\F0360\"}.mdi-menu-up-outline::before{content:\"\\F06B7\"}.mdi-merge::before{content:\"\\F0F5C\"}.mdi-message::before{content:\"\\F0361\"}.mdi-message-alert::before{content:\"\\F0362\"}.mdi-message-alert-outline::before{content:\"\\F0A04\"}.mdi-message-arrow-left::before{content:\"\\F12F2\"}.mdi-message-arrow-left-outline::before{content:\"\\F12F3\"}.mdi-message-arrow-right::before{content:\"\\F12F4\"}.mdi-message-arrow-right-outline::before{content:\"\\F12F5\"}.mdi-message-bookmark::before{content:\"\\F15AC\"}.mdi-message-bookmark-outline::before{content:\"\\F15AD\"}.mdi-message-bulleted::before{content:\"\\F06A2\"}.mdi-message-bulleted-off::before{content:\"\\F06A3\"}.mdi-message-cog::before{content:\"\\F06F1\"}.mdi-message-cog-outline::before{content:\"\\F1172\"}.mdi-message-draw::before{content:\"\\F0363\"}.mdi-message-flash::before{content:\"\\F15A9\"}.mdi-message-flash-outline::before{content:\"\\F15AA\"}.mdi-message-image::before{content:\"\\F0364\"}.mdi-message-image-outline::before{content:\"\\F116C\"}.mdi-message-lock::before{content:\"\\F0FCC\"}.mdi-message-lock-outline::before{content:\"\\F116D\"}.mdi-message-minus::before{content:\"\\F116E\"}.mdi-message-minus-outline::before{content:\"\\F116F\"}.mdi-message-off::before{content:\"\\F164D\"}.mdi-message-off-outline::before{content:\"\\F164E\"}.mdi-message-outline::before{content:\"\\F0365\"}.mdi-message-plus::before{content:\"\\F0653\"}.mdi-message-plus-outline::before{content:\"\\F10BB\"}.mdi-message-processing::before{content:\"\\F0366\"}.mdi-message-processing-outline::before{content:\"\\F1170\"}.mdi-message-reply::before{content:\"\\F0367\"}.mdi-message-reply-text::before{content:\"\\F0368\"}.mdi-message-settings::before{content:\"\\F06F0\"}.mdi-message-settings-outline::before{content:\"\\F1171\"}.mdi-message-text::before{content:\"\\F0369\"}.mdi-message-text-clock::before{content:\"\\F1173\"}.mdi-message-text-clock-outline::before{content:\"\\F1174\"}.mdi-message-text-lock::before{content:\"\\F0FCD\"}.mdi-message-text-lock-outline::before{content:\"\\F1175\"}.mdi-message-text-outline::before{content:\"\\F036A\"}.mdi-message-video::before{content:\"\\F036B\"}.mdi-meteor::before{content:\"\\F0629\"}.mdi-metronome::before{content:\"\\F07DA\"}.mdi-metronome-tick::before{content:\"\\F07DB\"}.mdi-micro-sd::before{content:\"\\F07DC\"}.mdi-microphone::before{content:\"\\F036C\"}.mdi-microphone-minus::before{content:\"\\F08B3\"}.mdi-microphone-off::before{content:\"\\F036D\"}.mdi-microphone-outline::before{content:\"\\F036E\"}.mdi-microphone-plus::before{content:\"\\F08B4\"}.mdi-microphone-settings::before{content:\"\\F036F\"}.mdi-microphone-variant::before{content:\"\\F0370\"}.mdi-microphone-variant-off::before{content:\"\\F0371\"}.mdi-microscope::before{content:\"\\F0654\"}.mdi-microsoft::before{content:\"\\F0372\"}.mdi-microsoft-access::before{content:\"\\F138E\"}.mdi-microsoft-azure::before{content:\"\\F0805\"}.mdi-microsoft-azure-devops::before{content:\"\\F0FD5\"}.mdi-microsoft-bing::before{content:\"\\F00A4\"}.mdi-microsoft-dynamics-365::before{content:\"\\F0988\"}.mdi-microsoft-edge::before{content:\"\\F01E9\"}.mdi-microsoft-edge-legacy::before{content:\"\\F1250\"}.mdi-microsoft-excel::before{content:\"\\F138F\"}.mdi-microsoft-internet-explorer::before{content:\"\\F0300\"}.mdi-microsoft-office::before{content:\"\\F03C6\"}.mdi-microsoft-onedrive::before{content:\"\\F03CA\"}.mdi-microsoft-onenote::before{content:\"\\F0747\"}.mdi-microsoft-outlook::before{content:\"\\F0D22\"}.mdi-microsoft-powerpoint::before{content:\"\\F1390\"}.mdi-microsoft-sharepoint::before{content:\"\\F1391\"}.mdi-microsoft-teams::before{content:\"\\F02BB\"}.mdi-microsoft-visual-studio::before{content:\"\\F0610\"}.mdi-microsoft-visual-studio-code::before{content:\"\\F0A1E\"}.mdi-microsoft-windows::before{content:\"\\F05B3\"}.mdi-microsoft-windows-classic::before{content:\"\\F0A21\"}.mdi-microsoft-word::before{content:\"\\F1392\"}.mdi-microsoft-xbox::before{content:\"\\F05B9\"}.mdi-microsoft-xbox-controller::before{content:\"\\F05BA\"}.mdi-microsoft-xbox-controller-battery-alert::before{content:\"\\F074B\"}.mdi-microsoft-xbox-controller-battery-charging::before{content:\"\\F0A22\"}.mdi-microsoft-xbox-controller-battery-empty::before{content:\"\\F074C\"}.mdi-microsoft-xbox-controller-battery-full::before{content:\"\\F074D\"}.mdi-microsoft-xbox-controller-battery-low::before{content:\"\\F074E\"}.mdi-microsoft-xbox-controller-battery-medium::before{content:\"\\F074F\"}.mdi-microsoft-xbox-controller-battery-unknown::before{content:\"\\F0750\"}.mdi-microsoft-xbox-controller-menu::before{content:\"\\F0E6F\"}.mdi-microsoft-xbox-controller-off::before{content:\"\\F05BB\"}.mdi-microsoft-xbox-controller-view::before{content:\"\\F0E70\"}.mdi-microsoft-yammer::before{content:\"\\F0789\"}.mdi-microwave::before{content:\"\\F0C99\"}.mdi-microwave-off::before{content:\"\\F1423\"}.mdi-middleware::before{content:\"\\F0F5D\"}.mdi-middleware-outline::before{content:\"\\F0F5E\"}.mdi-midi::before{content:\"\\F08F1\"}.mdi-midi-port::before{content:\"\\F08F2\"}.mdi-mine::before{content:\"\\F0DDA\"}.mdi-minecraft::before{content:\"\\F0373\"}.mdi-mini-sd::before{content:\"\\F0A05\"}.mdi-minidisc::before{content:\"\\F0A06\"}.mdi-minus::before{content:\"\\F0374\"}.mdi-minus-box::before{content:\"\\F0375\"}.mdi-minus-box-multiple::before{content:\"\\F1141\"}.mdi-minus-box-multiple-outline::before{content:\"\\F1142\"}.mdi-minus-box-outline::before{content:\"\\F06F2\"}.mdi-minus-circle::before{content:\"\\F0376\"}.mdi-minus-circle-multiple::before{content:\"\\F035A\"}.mdi-minus-circle-multiple-outline::before{content:\"\\F0AD3\"}.mdi-minus-circle-off::before{content:\"\\F1459\"}.mdi-minus-circle-off-outline::before{content:\"\\F145A\"}.mdi-minus-circle-outline::before{content:\"\\F0377\"}.mdi-minus-network::before{content:\"\\F0378\"}.mdi-minus-network-outline::before{content:\"\\F0C9A\"}.mdi-minus-thick::before{content:\"\\F1639\"}.mdi-mirror::before{content:\"\\F11FD\"}.mdi-mixed-martial-arts::before{content:\"\\F0D8F\"}.mdi-mixed-reality::before{content:\"\\F087F\"}.mdi-molecule::before{content:\"\\F0BAC\"}.mdi-molecule-co::before{content:\"\\F12FE\"}.mdi-molecule-co2::before{content:\"\\F07E4\"}.mdi-monitor::before{content:\"\\F0379\"}.mdi-monitor-cellphone::before{content:\"\\F0989\"}.mdi-monitor-cellphone-star::before{content:\"\\F098A\"}.mdi-monitor-clean::before{content:\"\\F1104\"}.mdi-monitor-dashboard::before{content:\"\\F0A07\"}.mdi-monitor-edit::before{content:\"\\F12C6\"}.mdi-monitor-eye::before{content:\"\\F13B4\"}.mdi-monitor-lock::before{content:\"\\F0DDB\"}.mdi-monitor-multiple::before{content:\"\\F037A\"}.mdi-monitor-off::before{content:\"\\F0D90\"}.mdi-monitor-screenshot::before{content:\"\\F0E51\"}.mdi-monitor-share::before{content:\"\\F1483\"}.mdi-monitor-speaker::before{content:\"\\F0F5F\"}.mdi-monitor-speaker-off::before{content:\"\\F0F60\"}.mdi-monitor-star::before{content:\"\\F0DDC\"}.mdi-moon-first-quarter::before{content:\"\\F0F61\"}.mdi-moon-full::before{content:\"\\F0F62\"}.mdi-moon-last-quarter::before{content:\"\\F0F63\"}.mdi-moon-new::before{content:\"\\F0F64\"}.mdi-moon-waning-crescent::before{content:\"\\F0F65\"}.mdi-moon-waning-gibbous::before{content:\"\\F0F66\"}.mdi-moon-waxing-crescent::before{content:\"\\F0F67\"}.mdi-moon-waxing-gibbous::before{content:\"\\F0F68\"}.mdi-moped::before{content:\"\\F1086\"}.mdi-moped-electric::before{content:\"\\F15B7\"}.mdi-moped-electric-outline::before{content:\"\\F15B8\"}.mdi-moped-outline::before{content:\"\\F15B9\"}.mdi-more::before{content:\"\\F037B\"}.mdi-mother-heart::before{content:\"\\F1314\"}.mdi-mother-nurse::before{content:\"\\F0D21\"}.mdi-motion::before{content:\"\\F15B2\"}.mdi-motion-outline::before{content:\"\\F15B3\"}.mdi-motion-pause::before{content:\"\\F1590\"}.mdi-motion-pause-outline::before{content:\"\\F1592\"}.mdi-motion-play::before{content:\"\\F158F\"}.mdi-motion-play-outline::before{content:\"\\F1591\"}.mdi-motion-sensor::before{content:\"\\F0D91\"}.mdi-motion-sensor-off::before{content:\"\\F1435\"}.mdi-motorbike::before{content:\"\\F037C\"}.mdi-motorbike-electric::before{content:\"\\F15BA\"}.mdi-mouse::before{content:\"\\F037D\"}.mdi-mouse-bluetooth::before{content:\"\\F098B\"}.mdi-mouse-move-down::before{content:\"\\F1550\"}.mdi-mouse-move-up::before{content:\"\\F1551\"}.mdi-mouse-move-vertical::before{content:\"\\F1552\"}.mdi-mouse-off::before{content:\"\\F037E\"}.mdi-mouse-variant::before{content:\"\\F037F\"}.mdi-mouse-variant-off::before{content:\"\\F0380\"}.mdi-move-resize::before{content:\"\\F0655\"}.mdi-move-resize-variant::before{content:\"\\F0656\"}.mdi-movie::before{content:\"\\F0381\"}.mdi-movie-edit::before{content:\"\\F1122\"}.mdi-movie-edit-outline::before{content:\"\\F1123\"}.mdi-movie-filter::before{content:\"\\F1124\"}.mdi-movie-filter-outline::before{content:\"\\F1125\"}.mdi-movie-open::before{content:\"\\F0FCE\"}.mdi-movie-open-outline::before{content:\"\\F0FCF\"}.mdi-movie-outline::before{content:\"\\F0DDD\"}.mdi-movie-roll::before{content:\"\\F07DE\"}.mdi-movie-search::before{content:\"\\F11D2\"}.mdi-movie-search-outline::before{content:\"\\F11D3\"}.mdi-mower::before{content:\"\\F166F\"}.mdi-mower-bag::before{content:\"\\F1670\"}.mdi-muffin::before{content:\"\\F098C\"}.mdi-multiplication::before{content:\"\\F0382\"}.mdi-multiplication-box::before{content:\"\\F0383\"}.mdi-mushroom::before{content:\"\\F07DF\"}.mdi-mushroom-off::before{content:\"\\F13FA\"}.mdi-mushroom-off-outline::before{content:\"\\F13FB\"}.mdi-mushroom-outline::before{content:\"\\F07E0\"}.mdi-music::before{content:\"\\F075A\"}.mdi-music-accidental-double-flat::before{content:\"\\F0F69\"}.mdi-music-accidental-double-sharp::before{content:\"\\F0F6A\"}.mdi-music-accidental-flat::before{content:\"\\F0F6B\"}.mdi-music-accidental-natural::before{content:\"\\F0F6C\"}.mdi-music-accidental-sharp::before{content:\"\\F0F6D\"}.mdi-music-box::before{content:\"\\F0384\"}.mdi-music-box-multiple::before{content:\"\\F0333\"}.mdi-music-box-multiple-outline::before{content:\"\\F0F04\"}.mdi-music-box-outline::before{content:\"\\F0385\"}.mdi-music-circle::before{content:\"\\F0386\"}.mdi-music-circle-outline::before{content:\"\\F0AD4\"}.mdi-music-clef-alto::before{content:\"\\F0F6E\"}.mdi-music-clef-bass::before{content:\"\\F0F6F\"}.mdi-music-clef-treble::before{content:\"\\F0F70\"}.mdi-music-note::before{content:\"\\F0387\"}.mdi-music-note-bluetooth::before{content:\"\\F05FE\"}.mdi-music-note-bluetooth-off::before{content:\"\\F05FF\"}.mdi-music-note-eighth::before{content:\"\\F0388\"}.mdi-music-note-eighth-dotted::before{content:\"\\F0F71\"}.mdi-music-note-half::before{content:\"\\F0389\"}.mdi-music-note-half-dotted::before{content:\"\\F0F72\"}.mdi-music-note-off::before{content:\"\\F038A\"}.mdi-music-note-off-outline::before{content:\"\\F0F73\"}.mdi-music-note-outline::before{content:\"\\F0F74\"}.mdi-music-note-plus::before{content:\"\\F0DDE\"}.mdi-music-note-quarter::before{content:\"\\F038B\"}.mdi-music-note-quarter-dotted::before{content:\"\\F0F75\"}.mdi-music-note-sixteenth::before{content:\"\\F038C\"}.mdi-music-note-sixteenth-dotted::before{content:\"\\F0F76\"}.mdi-music-note-whole::before{content:\"\\F038D\"}.mdi-music-note-whole-dotted::before{content:\"\\F0F77\"}.mdi-music-off::before{content:\"\\F075B\"}.mdi-music-rest-eighth::before{content:\"\\F0F78\"}.mdi-music-rest-half::before{content:\"\\F0F79\"}.mdi-music-rest-quarter::before{content:\"\\F0F7A\"}.mdi-music-rest-sixteenth::before{content:\"\\F0F7B\"}.mdi-music-rest-whole::before{content:\"\\F0F7C\"}.mdi-mustache::before{content:\"\\F15DE\"}.mdi-nail::before{content:\"\\F0DDF\"}.mdi-nas::before{content:\"\\F08F3\"}.mdi-nativescript::before{content:\"\\F0880\"}.mdi-nature::before{content:\"\\F038E\"}.mdi-nature-people::before{content:\"\\F038F\"}.mdi-navigation::before{content:\"\\F0390\"}.mdi-navigation-outline::before{content:\"\\F1607\"}.mdi-near-me::before{content:\"\\F05CD\"}.mdi-necklace::before{content:\"\\F0F0B\"}.mdi-needle::before{content:\"\\F0391\"}.mdi-netflix::before{content:\"\\F0746\"}.mdi-network::before{content:\"\\F06F3\"}.mdi-network-off::before{content:\"\\F0C9B\"}.mdi-network-off-outline::before{content:\"\\F0C9C\"}.mdi-network-outline::before{content:\"\\F0C9D\"}.mdi-network-strength-1::before{content:\"\\F08F4\"}.mdi-network-strength-1-alert::before{content:\"\\F08F5\"}.mdi-network-strength-2::before{content:\"\\F08F6\"}.mdi-network-strength-2-alert::before{content:\"\\F08F7\"}.mdi-network-strength-3::before{content:\"\\F08F8\"}.mdi-network-strength-3-alert::before{content:\"\\F08F9\"}.mdi-network-strength-4::before{content:\"\\F08FA\"}.mdi-network-strength-4-alert::before{content:\"\\F08FB\"}.mdi-network-strength-off::before{content:\"\\F08FC\"}.mdi-network-strength-off-outline::before{content:\"\\F08FD\"}.mdi-network-strength-outline::before{content:\"\\F08FE\"}.mdi-new-box::before{content:\"\\F0394\"}.mdi-newspaper::before{content:\"\\F0395\"}.mdi-newspaper-minus::before{content:\"\\F0F0C\"}.mdi-newspaper-plus::before{content:\"\\F0F0D\"}.mdi-newspaper-variant::before{content:\"\\F1001\"}.mdi-newspaper-variant-multiple::before{content:\"\\F1002\"}.mdi-newspaper-variant-multiple-outline::before{content:\"\\F1003\"}.mdi-newspaper-variant-outline::before{content:\"\\F1004\"}.mdi-nfc::before{content:\"\\F0396\"}.mdi-nfc-search-variant::before{content:\"\\F0E53\"}.mdi-nfc-tap::before{content:\"\\F0397\"}.mdi-nfc-variant::before{content:\"\\F0398\"}.mdi-nfc-variant-off::before{content:\"\\F0E54\"}.mdi-ninja::before{content:\"\\F0774\"}.mdi-nintendo-game-boy::before{content:\"\\F1393\"}.mdi-nintendo-switch::before{content:\"\\F07E1\"}.mdi-nintendo-wii::before{content:\"\\F05AB\"}.mdi-nintendo-wiiu::before{content:\"\\F072D\"}.mdi-nix::before{content:\"\\F1105\"}.mdi-nodejs::before{content:\"\\F0399\"}.mdi-noodles::before{content:\"\\F117E\"}.mdi-not-equal::before{content:\"\\F098D\"}.mdi-not-equal-variant::before{content:\"\\F098E\"}.mdi-note::before{content:\"\\F039A\"}.mdi-note-minus::before{content:\"\\F164F\"}.mdi-note-minus-outline::before{content:\"\\F1650\"}.mdi-note-multiple::before{content:\"\\F06B8\"}.mdi-note-multiple-outline::before{content:\"\\F06B9\"}.mdi-note-outline::before{content:\"\\F039B\"}.mdi-note-plus::before{content:\"\\F039C\"}.mdi-note-plus-outline::before{content:\"\\F039D\"}.mdi-note-remove::before{content:\"\\F1651\"}.mdi-note-remove-outline::before{content:\"\\F1652\"}.mdi-note-search::before{content:\"\\F1653\"}.mdi-note-search-outline::before{content:\"\\F1654\"}.mdi-note-text::before{content:\"\\F039E\"}.mdi-note-text-outline::before{content:\"\\F11D7\"}.mdi-notebook::before{content:\"\\F082E\"}.mdi-notebook-check::before{content:\"\\F14F5\"}.mdi-notebook-check-outline::before{content:\"\\F14F6\"}.mdi-notebook-edit::before{content:\"\\F14E7\"}.mdi-notebook-edit-outline::before{content:\"\\F14E9\"}.mdi-notebook-minus::before{content:\"\\F1610\"}.mdi-notebook-minus-outline::before{content:\"\\F1611\"}.mdi-notebook-multiple::before{content:\"\\F0E55\"}.mdi-notebook-outline::before{content:\"\\F0EBF\"}.mdi-notebook-plus::before{content:\"\\F1612\"}.mdi-notebook-plus-outline::before{content:\"\\F1613\"}.mdi-notebook-remove::before{content:\"\\F1614\"}.mdi-notebook-remove-outline::before{content:\"\\F1615\"}.mdi-notification-clear-all::before{content:\"\\F039F\"}.mdi-npm::before{content:\"\\F06F7\"}.mdi-nuke::before{content:\"\\F06A4\"}.mdi-null::before{content:\"\\F07E2\"}.mdi-numeric::before{content:\"\\F03A0\"}.mdi-numeric-0::before{content:\"\\F0B39\"}.mdi-numeric-0-box::before{content:\"\\F03A1\"}.mdi-numeric-0-box-multiple::before{content:\"\\F0F0E\"}.mdi-numeric-0-box-multiple-outline::before{content:\"\\F03A2\"}.mdi-numeric-0-box-outline::before{content:\"\\F03A3\"}.mdi-numeric-0-circle::before{content:\"\\F0C9E\"}.mdi-numeric-0-circle-outline::before{content:\"\\F0C9F\"}.mdi-numeric-1::before{content:\"\\F0B3A\"}.mdi-numeric-1-box::before{content:\"\\F03A4\"}.mdi-numeric-1-box-multiple::before{content:\"\\F0F0F\"}.mdi-numeric-1-box-multiple-outline::before{content:\"\\F03A5\"}.mdi-numeric-1-box-outline::before{content:\"\\F03A6\"}.mdi-numeric-1-circle::before{content:\"\\F0CA0\"}.mdi-numeric-1-circle-outline::before{content:\"\\F0CA1\"}.mdi-numeric-10::before{content:\"\\F0FE9\"}.mdi-numeric-10-box::before{content:\"\\F0F7D\"}.mdi-numeric-10-box-multiple::before{content:\"\\F0FEA\"}.mdi-numeric-10-box-multiple-outline::before{content:\"\\F0FEB\"}.mdi-numeric-10-box-outline::before{content:\"\\F0F7E\"}.mdi-numeric-10-circle::before{content:\"\\F0FEC\"}.mdi-numeric-10-circle-outline::before{content:\"\\F0FED\"}.mdi-numeric-2::before{content:\"\\F0B3B\"}.mdi-numeric-2-box::before{content:\"\\F03A7\"}.mdi-numeric-2-box-multiple::before{content:\"\\F0F10\"}.mdi-numeric-2-box-multiple-outline::before{content:\"\\F03A8\"}.mdi-numeric-2-box-outline::before{content:\"\\F03A9\"}.mdi-numeric-2-circle::before{content:\"\\F0CA2\"}.mdi-numeric-2-circle-outline::before{content:\"\\F0CA3\"}.mdi-numeric-3::before{content:\"\\F0B3C\"}.mdi-numeric-3-box::before{content:\"\\F03AA\"}.mdi-numeric-3-box-multiple::before{content:\"\\F0F11\"}.mdi-numeric-3-box-multiple-outline::before{content:\"\\F03AB\"}.mdi-numeric-3-box-outline::before{content:\"\\F03AC\"}.mdi-numeric-3-circle::before{content:\"\\F0CA4\"}.mdi-numeric-3-circle-outline::before{content:\"\\F0CA5\"}.mdi-numeric-4::before{content:\"\\F0B3D\"}.mdi-numeric-4-box::before{content:\"\\F03AD\"}.mdi-numeric-4-box-multiple::before{content:\"\\F0F12\"}.mdi-numeric-4-box-multiple-outline::before{content:\"\\F03B2\"}.mdi-numeric-4-box-outline::before{content:\"\\F03AE\"}.mdi-numeric-4-circle::before{content:\"\\F0CA6\"}.mdi-numeric-4-circle-outline::before{content:\"\\F0CA7\"}.mdi-numeric-5::before{content:\"\\F0B3E\"}.mdi-numeric-5-box::before{content:\"\\F03B1\"}.mdi-numeric-5-box-multiple::before{content:\"\\F0F13\"}.mdi-numeric-5-box-multiple-outline::before{content:\"\\F03AF\"}.mdi-numeric-5-box-outline::before{content:\"\\F03B0\"}.mdi-numeric-5-circle::before{content:\"\\F0CA8\"}.mdi-numeric-5-circle-outline::before{content:\"\\F0CA9\"}.mdi-numeric-6::before{content:\"\\F0B3F\"}.mdi-numeric-6-box::before{content:\"\\F03B3\"}.mdi-numeric-6-box-multiple::before{content:\"\\F0F14\"}.mdi-numeric-6-box-multiple-outline::before{content:\"\\F03B4\"}.mdi-numeric-6-box-outline::before{content:\"\\F03B5\"}.mdi-numeric-6-circle::before{content:\"\\F0CAA\"}.mdi-numeric-6-circle-outline::before{content:\"\\F0CAB\"}.mdi-numeric-7::before{content:\"\\F0B40\"}.mdi-numeric-7-box::before{content:\"\\F03B6\"}.mdi-numeric-7-box-multiple::before{content:\"\\F0F15\"}.mdi-numeric-7-box-multiple-outline::before{content:\"\\F03B7\"}.mdi-numeric-7-box-outline::before{content:\"\\F03B8\"}.mdi-numeric-7-circle::before{content:\"\\F0CAC\"}.mdi-numeric-7-circle-outline::before{content:\"\\F0CAD\"}.mdi-numeric-8::before{content:\"\\F0B41\"}.mdi-numeric-8-box::before{content:\"\\F03B9\"}.mdi-numeric-8-box-multiple::before{content:\"\\F0F16\"}.mdi-numeric-8-box-multiple-outline::before{content:\"\\F03BA\"}.mdi-numeric-8-box-outline::before{content:\"\\F03BB\"}.mdi-numeric-8-circle::before{content:\"\\F0CAE\"}.mdi-numeric-8-circle-outline::before{content:\"\\F0CAF\"}.mdi-numeric-9::before{content:\"\\F0B42\"}.mdi-numeric-9-box::before{content:\"\\F03BC\"}.mdi-numeric-9-box-multiple::before{content:\"\\F0F17\"}.mdi-numeric-9-box-multiple-outline::before{content:\"\\F03BD\"}.mdi-numeric-9-box-outline::before{content:\"\\F03BE\"}.mdi-numeric-9-circle::before{content:\"\\F0CB0\"}.mdi-numeric-9-circle-outline::before{content:\"\\F0CB1\"}.mdi-numeric-9-plus::before{content:\"\\F0FEE\"}.mdi-numeric-9-plus-box::before{content:\"\\F03BF\"}.mdi-numeric-9-plus-box-multiple::before{content:\"\\F0F18\"}.mdi-numeric-9-plus-box-multiple-outline::before{content:\"\\F03C0\"}.mdi-numeric-9-plus-box-outline::before{content:\"\\F03C1\"}.mdi-numeric-9-plus-circle::before{content:\"\\F0CB2\"}.mdi-numeric-9-plus-circle-outline::before{content:\"\\F0CB3\"}.mdi-numeric-negative-1::before{content:\"\\F1052\"}.mdi-numeric-positive-1::before{content:\"\\F15CB\"}.mdi-nut::before{content:\"\\F06F8\"}.mdi-nutrition::before{content:\"\\F03C2\"}.mdi-nuxt::before{content:\"\\F1106\"}.mdi-oar::before{content:\"\\F067C\"}.mdi-ocarina::before{content:\"\\F0DE0\"}.mdi-oci::before{content:\"\\F12E9\"}.mdi-ocr::before{content:\"\\F113A\"}.mdi-octagon::before{content:\"\\F03C3\"}.mdi-octagon-outline::before{content:\"\\F03C4\"}.mdi-octagram::before{content:\"\\F06F9\"}.mdi-octagram-outline::before{content:\"\\F0775\"}.mdi-odnoklassniki::before{content:\"\\F03C5\"}.mdi-offer::before{content:\"\\F121B\"}.mdi-office-building::before{content:\"\\F0991\"}.mdi-office-building-marker::before{content:\"\\F1520\"}.mdi-office-building-marker-outline::before{content:\"\\F1521\"}.mdi-office-building-outline::before{content:\"\\F151F\"}.mdi-oil::before{content:\"\\F03C7\"}.mdi-oil-lamp::before{content:\"\\F0F19\"}.mdi-oil-level::before{content:\"\\F1053\"}.mdi-oil-temperature::before{content:\"\\F0FF8\"}.mdi-omega::before{content:\"\\F03C9\"}.mdi-one-up::before{content:\"\\F0BAD\"}.mdi-onepassword::before{content:\"\\F0881\"}.mdi-opacity::before{content:\"\\F05CC\"}.mdi-open-in-app::before{content:\"\\F03CB\"}.mdi-open-in-new::before{content:\"\\F03CC\"}.mdi-open-source-initiative::before{content:\"\\F0BAE\"}.mdi-openid::before{content:\"\\F03CD\"}.mdi-opera::before{content:\"\\F03CE\"}.mdi-orbit::before{content:\"\\F0018\"}.mdi-orbit-variant::before{content:\"\\F15DB\"}.mdi-order-alphabetical-ascending::before{content:\"\\F020D\"}.mdi-order-alphabetical-descending::before{content:\"\\F0D07\"}.mdi-order-bool-ascending::before{content:\"\\F02BE\"}.mdi-order-bool-ascending-variant::before{content:\"\\F098F\"}.mdi-order-bool-descending::before{content:\"\\F1384\"}.mdi-order-bool-descending-variant::before{content:\"\\F0990\"}.mdi-order-numeric-ascending::before{content:\"\\F0545\"}.mdi-order-numeric-descending::before{content:\"\\F0546\"}.mdi-origin::before{content:\"\\F0B43\"}.mdi-ornament::before{content:\"\\F03CF\"}.mdi-ornament-variant::before{content:\"\\F03D0\"}.mdi-outdoor-lamp::before{content:\"\\F1054\"}.mdi-overscan::before{content:\"\\F1005\"}.mdi-owl::before{content:\"\\F03D2\"}.mdi-pac-man::before{content:\"\\F0BAF\"}.mdi-package::before{content:\"\\F03D3\"}.mdi-package-down::before{content:\"\\F03D4\"}.mdi-package-up::before{content:\"\\F03D5\"}.mdi-package-variant::before{content:\"\\F03D6\"}.mdi-package-variant-closed::before{content:\"\\F03D7\"}.mdi-page-first::before{content:\"\\F0600\"}.mdi-page-last::before{content:\"\\F0601\"}.mdi-page-layout-body::before{content:\"\\F06FA\"}.mdi-page-layout-footer::before{content:\"\\F06FB\"}.mdi-page-layout-header::before{content:\"\\F06FC\"}.mdi-page-layout-header-footer::before{content:\"\\F0F7F\"}.mdi-page-layout-sidebar-left::before{content:\"\\F06FD\"}.mdi-page-layout-sidebar-right::before{content:\"\\F06FE\"}.mdi-page-next::before{content:\"\\F0BB0\"}.mdi-page-next-outline::before{content:\"\\F0BB1\"}.mdi-page-previous::before{content:\"\\F0BB2\"}.mdi-page-previous-outline::before{content:\"\\F0BB3\"}.mdi-pail::before{content:\"\\F1417\"}.mdi-pail-minus::before{content:\"\\F1437\"}.mdi-pail-minus-outline::before{content:\"\\F143C\"}.mdi-pail-off::before{content:\"\\F1439\"}.mdi-pail-off-outline::before{content:\"\\F143E\"}.mdi-pail-outline::before{content:\"\\F143A\"}.mdi-pail-plus::before{content:\"\\F1436\"}.mdi-pail-plus-outline::before{content:\"\\F143B\"}.mdi-pail-remove::before{content:\"\\F1438\"}.mdi-pail-remove-outline::before{content:\"\\F143D\"}.mdi-palette::before{content:\"\\F03D8\"}.mdi-palette-advanced::before{content:\"\\F03D9\"}.mdi-palette-outline::before{content:\"\\F0E0C\"}.mdi-palette-swatch::before{content:\"\\F08B5\"}.mdi-palette-swatch-outline::before{content:\"\\F135C\"}.mdi-palm-tree::before{content:\"\\F1055\"}.mdi-pan::before{content:\"\\F0BB4\"}.mdi-pan-bottom-left::before{content:\"\\F0BB5\"}.mdi-pan-bottom-right::before{content:\"\\F0BB6\"}.mdi-pan-down::before{content:\"\\F0BB7\"}.mdi-pan-horizontal::before{content:\"\\F0BB8\"}.mdi-pan-left::before{content:\"\\F0BB9\"}.mdi-pan-right::before{content:\"\\F0BBA\"}.mdi-pan-top-left::before{content:\"\\F0BBB\"}.mdi-pan-top-right::before{content:\"\\F0BBC\"}.mdi-pan-up::before{content:\"\\F0BBD\"}.mdi-pan-vertical::before{content:\"\\F0BBE\"}.mdi-panda::before{content:\"\\F03DA\"}.mdi-pandora::before{content:\"\\F03DB\"}.mdi-panorama::before{content:\"\\F03DC\"}.mdi-panorama-fisheye::before{content:\"\\F03DD\"}.mdi-panorama-horizontal::before{content:\"\\F03DE\"}.mdi-panorama-vertical::before{content:\"\\F03DF\"}.mdi-panorama-wide-angle::before{content:\"\\F03E0\"}.mdi-paper-cut-vertical::before{content:\"\\F03E1\"}.mdi-paper-roll::before{content:\"\\F1157\"}.mdi-paper-roll-outline::before{content:\"\\F1158\"}.mdi-paperclip::before{content:\"\\F03E2\"}.mdi-parachute::before{content:\"\\F0CB4\"}.mdi-parachute-outline::before{content:\"\\F0CB5\"}.mdi-parking::before{content:\"\\F03E3\"}.mdi-party-popper::before{content:\"\\F1056\"}.mdi-passport::before{content:\"\\F07E3\"}.mdi-passport-biometric::before{content:\"\\F0DE1\"}.mdi-pasta::before{content:\"\\F1160\"}.mdi-patio-heater::before{content:\"\\F0F80\"}.mdi-patreon::before{content:\"\\F0882\"}.mdi-pause::before{content:\"\\F03E4\"}.mdi-pause-circle::before{content:\"\\F03E5\"}.mdi-pause-circle-outline::before{content:\"\\F03E6\"}.mdi-pause-octagon::before{content:\"\\F03E7\"}.mdi-pause-octagon-outline::before{content:\"\\F03E8\"}.mdi-paw::before{content:\"\\F03E9\"}.mdi-paw-off::before{content:\"\\F0657\"}.mdi-paw-off-outline::before{content:\"\\F1676\"}.mdi-paw-outline::before{content:\"\\F1675\"}.mdi-pdf-box::before{content:\"\\F0E56\"}.mdi-peace::before{content:\"\\F0884\"}.mdi-peanut::before{content:\"\\F0FFC\"}.mdi-peanut-off::before{content:\"\\F0FFD\"}.mdi-peanut-off-outline::before{content:\"\\F0FFF\"}.mdi-peanut-outline::before{content:\"\\F0FFE\"}.mdi-pen::before{content:\"\\F03EA\"}.mdi-pen-lock::before{content:\"\\F0DE2\"}.mdi-pen-minus::before{content:\"\\F0DE3\"}.mdi-pen-off::before{content:\"\\F0DE4\"}.mdi-pen-plus::before{content:\"\\F0DE5\"}.mdi-pen-remove::before{content:\"\\F0DE6\"}.mdi-pencil::before{content:\"\\F03EB\"}.mdi-pencil-box::before{content:\"\\F03EC\"}.mdi-pencil-box-multiple::before{content:\"\\F1144\"}.mdi-pencil-box-multiple-outline::before{content:\"\\F1145\"}.mdi-pencil-box-outline::before{content:\"\\F03ED\"}.mdi-pencil-circle::before{content:\"\\F06FF\"}.mdi-pencil-circle-outline::before{content:\"\\F0776\"}.mdi-pencil-lock::before{content:\"\\F03EE\"}.mdi-pencil-lock-outline::before{content:\"\\F0DE7\"}.mdi-pencil-minus::before{content:\"\\F0DE8\"}.mdi-pencil-minus-outline::before{content:\"\\F0DE9\"}.mdi-pencil-off::before{content:\"\\F03EF\"}.mdi-pencil-off-outline::before{content:\"\\F0DEA\"}.mdi-pencil-outline::before{content:\"\\F0CB6\"}.mdi-pencil-plus::before{content:\"\\F0DEB\"}.mdi-pencil-plus-outline::before{content:\"\\F0DEC\"}.mdi-pencil-remove::before{content:\"\\F0DED\"}.mdi-pencil-remove-outline::before{content:\"\\F0DEE\"}.mdi-pencil-ruler::before{content:\"\\F1353\"}.mdi-penguin::before{content:\"\\F0EC0\"}.mdi-pentagon::before{content:\"\\F0701\"}.mdi-pentagon-outline::before{content:\"\\F0700\"}.mdi-pentagram::before{content:\"\\F1667\"}.mdi-percent::before{content:\"\\F03F0\"}.mdi-percent-outline::before{content:\"\\F1278\"}.mdi-periodic-table::before{content:\"\\F08B6\"}.mdi-perspective-less::before{content:\"\\F0D23\"}.mdi-perspective-more::before{content:\"\\F0D24\"}.mdi-pharmacy::before{content:\"\\F03F1\"}.mdi-phone::before{content:\"\\F03F2\"}.mdi-phone-alert::before{content:\"\\F0F1A\"}.mdi-phone-alert-outline::before{content:\"\\F118E\"}.mdi-phone-bluetooth::before{content:\"\\F03F3\"}.mdi-phone-bluetooth-outline::before{content:\"\\F118F\"}.mdi-phone-cancel::before{content:\"\\F10BC\"}.mdi-phone-cancel-outline::before{content:\"\\F1190\"}.mdi-phone-check::before{content:\"\\F11A9\"}.mdi-phone-check-outline::before{content:\"\\F11AA\"}.mdi-phone-classic::before{content:\"\\F0602\"}.mdi-phone-classic-off::before{content:\"\\F1279\"}.mdi-phone-dial::before{content:\"\\F1559\"}.mdi-phone-dial-outline::before{content:\"\\F155A\"}.mdi-phone-forward::before{content:\"\\F03F4\"}.mdi-phone-forward-outline::before{content:\"\\F1191\"}.mdi-phone-hangup::before{content:\"\\F03F5\"}.mdi-phone-hangup-outline::before{content:\"\\F1192\"}.mdi-phone-in-talk::before{content:\"\\F03F6\"}.mdi-phone-in-talk-outline::before{content:\"\\F1182\"}.mdi-phone-incoming::before{content:\"\\F03F7\"}.mdi-phone-incoming-outline::before{content:\"\\F1193\"}.mdi-phone-lock::before{content:\"\\F03F8\"}.mdi-phone-lock-outline::before{content:\"\\F1194\"}.mdi-phone-log::before{content:\"\\F03F9\"}.mdi-phone-log-outline::before{content:\"\\F1195\"}.mdi-phone-message::before{content:\"\\F1196\"}.mdi-phone-message-outline::before{content:\"\\F1197\"}.mdi-phone-minus::before{content:\"\\F0658\"}.mdi-phone-minus-outline::before{content:\"\\F1198\"}.mdi-phone-missed::before{content:\"\\F03FA\"}.mdi-phone-missed-outline::before{content:\"\\F11A5\"}.mdi-phone-off::before{content:\"\\F0DEF\"}.mdi-phone-off-outline::before{content:\"\\F11A6\"}.mdi-phone-outgoing::before{content:\"\\F03FB\"}.mdi-phone-outgoing-outline::before{content:\"\\F1199\"}.mdi-phone-outline::before{content:\"\\F0DF0\"}.mdi-phone-paused::before{content:\"\\F03FC\"}.mdi-phone-paused-outline::before{content:\"\\F119A\"}.mdi-phone-plus::before{content:\"\\F0659\"}.mdi-phone-plus-outline::before{content:\"\\F119B\"}.mdi-phone-remove::before{content:\"\\F152F\"}.mdi-phone-remove-outline::before{content:\"\\F1530\"}.mdi-phone-return::before{content:\"\\F082F\"}.mdi-phone-return-outline::before{content:\"\\F119C\"}.mdi-phone-ring::before{content:\"\\F11AB\"}.mdi-phone-ring-outline::before{content:\"\\F11AC\"}.mdi-phone-rotate-landscape::before{content:\"\\F0885\"}.mdi-phone-rotate-portrait::before{content:\"\\F0886\"}.mdi-phone-settings::before{content:\"\\F03FD\"}.mdi-phone-settings-outline::before{content:\"\\F119D\"}.mdi-phone-voip::before{content:\"\\F03FE\"}.mdi-pi::before{content:\"\\F03FF\"}.mdi-pi-box::before{content:\"\\F0400\"}.mdi-pi-hole::before{content:\"\\F0DF1\"}.mdi-piano::before{content:\"\\F067D\"}.mdi-pickaxe::before{content:\"\\F08B7\"}.mdi-picture-in-picture-bottom-right::before{content:\"\\F0E57\"}.mdi-picture-in-picture-bottom-right-outline::before{content:\"\\F0E58\"}.mdi-picture-in-picture-top-right::before{content:\"\\F0E59\"}.mdi-picture-in-picture-top-right-outline::before{content:\"\\F0E5A\"}.mdi-pier::before{content:\"\\F0887\"}.mdi-pier-crane::before{content:\"\\F0888\"}.mdi-pig::before{content:\"\\F0401\"}.mdi-pig-variant::before{content:\"\\F1006\"}.mdi-pig-variant-outline::before{content:\"\\F1678\"}.mdi-piggy-bank::before{content:\"\\F1007\"}.mdi-piggy-bank-outline::before{content:\"\\F1679\"}.mdi-pill::before{content:\"\\F0402\"}.mdi-pillar::before{content:\"\\F0702\"}.mdi-pin::before{content:\"\\F0403\"}.mdi-pin-off::before{content:\"\\F0404\"}.mdi-pin-off-outline::before{content:\"\\F0930\"}.mdi-pin-outline::before{content:\"\\F0931\"}.mdi-pine-tree::before{content:\"\\F0405\"}.mdi-pine-tree-box::before{content:\"\\F0406\"}.mdi-pine-tree-fire::before{content:\"\\F141A\"}.mdi-pinterest::before{content:\"\\F0407\"}.mdi-pinwheel::before{content:\"\\F0AD5\"}.mdi-pinwheel-outline::before{content:\"\\F0AD6\"}.mdi-pipe::before{content:\"\\F07E5\"}.mdi-pipe-disconnected::before{content:\"\\F07E6\"}.mdi-pipe-leak::before{content:\"\\F0889\"}.mdi-pipe-wrench::before{content:\"\\F1354\"}.mdi-pirate::before{content:\"\\F0A08\"}.mdi-pistol::before{content:\"\\F0703\"}.mdi-piston::before{content:\"\\F088A\"}.mdi-pitchfork::before{content:\"\\F1553\"}.mdi-pizza::before{content:\"\\F0409\"}.mdi-play::before{content:\"\\F040A\"}.mdi-play-box::before{content:\"\\F127A\"}.mdi-play-box-multiple::before{content:\"\\F0D19\"}.mdi-play-box-multiple-outline::before{content:\"\\F13E6\"}.mdi-play-box-outline::before{content:\"\\F040B\"}.mdi-play-circle::before{content:\"\\F040C\"}.mdi-play-circle-outline::before{content:\"\\F040D\"}.mdi-play-network::before{content:\"\\F088B\"}.mdi-play-network-outline::before{content:\"\\F0CB7\"}.mdi-play-outline::before{content:\"\\F0F1B\"}.mdi-play-pause::before{content:\"\\F040E\"}.mdi-play-protected-content::before{content:\"\\F040F\"}.mdi-play-speed::before{content:\"\\F08FF\"}.mdi-playlist-check::before{content:\"\\F05C7\"}.mdi-playlist-edit::before{content:\"\\F0900\"}.mdi-playlist-minus::before{content:\"\\F0410\"}.mdi-playlist-music::before{content:\"\\F0CB8\"}.mdi-playlist-music-outline::before{content:\"\\F0CB9\"}.mdi-playlist-play::before{content:\"\\F0411\"}.mdi-playlist-plus::before{content:\"\\F0412\"}.mdi-playlist-remove::before{content:\"\\F0413\"}.mdi-playlist-star::before{content:\"\\F0DF2\"}.mdi-plex::before{content:\"\\F06BA\"}.mdi-plus::before{content:\"\\F0415\"}.mdi-plus-box::before{content:\"\\F0416\"}.mdi-plus-box-multiple::before{content:\"\\F0334\"}.mdi-plus-box-multiple-outline::before{content:\"\\F1143\"}.mdi-plus-box-outline::before{content:\"\\F0704\"}.mdi-plus-circle::before{content:\"\\F0417\"}.mdi-plus-circle-multiple::before{content:\"\\F034C\"}.mdi-plus-circle-multiple-outline::before{content:\"\\F0418\"}.mdi-plus-circle-outline::before{content:\"\\F0419\"}.mdi-plus-minus::before{content:\"\\F0992\"}.mdi-plus-minus-box::before{content:\"\\F0993\"}.mdi-plus-minus-variant::before{content:\"\\F14C9\"}.mdi-plus-network::before{content:\"\\F041A\"}.mdi-plus-network-outline::before{content:\"\\F0CBA\"}.mdi-plus-one::before{content:\"\\F041B\"}.mdi-plus-outline::before{content:\"\\F0705\"}.mdi-plus-thick::before{content:\"\\F11EC\"}.mdi-podcast::before{content:\"\\F0994\"}.mdi-podium::before{content:\"\\F0D25\"}.mdi-podium-bronze::before{content:\"\\F0D26\"}.mdi-podium-gold::before{content:\"\\F0D27\"}.mdi-podium-silver::before{content:\"\\F0D28\"}.mdi-point-of-sale::before{content:\"\\F0D92\"}.mdi-pokeball::before{content:\"\\F041D\"}.mdi-pokemon-go::before{content:\"\\F0A09\"}.mdi-poker-chip::before{content:\"\\F0830\"}.mdi-polaroid::before{content:\"\\F041E\"}.mdi-police-badge::before{content:\"\\F1167\"}.mdi-police-badge-outline::before{content:\"\\F1168\"}.mdi-poll::before{content:\"\\F041F\"}.mdi-poll-box::before{content:\"\\F0420\"}.mdi-poll-box-outline::before{content:\"\\F127B\"}.mdi-polo::before{content:\"\\F14C3\"}.mdi-polymer::before{content:\"\\F0421\"}.mdi-pool::before{content:\"\\F0606\"}.mdi-popcorn::before{content:\"\\F0422\"}.mdi-post::before{content:\"\\F1008\"}.mdi-post-outline::before{content:\"\\F1009\"}.mdi-postage-stamp::before{content:\"\\F0CBB\"}.mdi-pot::before{content:\"\\F02E5\"}.mdi-pot-mix::before{content:\"\\F065B\"}.mdi-pot-mix-outline::before{content:\"\\F0677\"}.mdi-pot-outline::before{content:\"\\F02FF\"}.mdi-pot-steam::before{content:\"\\F065A\"}.mdi-pot-steam-outline::before{content:\"\\F0326\"}.mdi-pound::before{content:\"\\F0423\"}.mdi-pound-box::before{content:\"\\F0424\"}.mdi-pound-box-outline::before{content:\"\\F117F\"}.mdi-power::before{content:\"\\F0425\"}.mdi-power-cycle::before{content:\"\\F0901\"}.mdi-power-off::before{content:\"\\F0902\"}.mdi-power-on::before{content:\"\\F0903\"}.mdi-power-plug::before{content:\"\\F06A5\"}.mdi-power-plug-off::before{content:\"\\F06A6\"}.mdi-power-plug-off-outline::before{content:\"\\F1424\"}.mdi-power-plug-outline::before{content:\"\\F1425\"}.mdi-power-settings::before{content:\"\\F0426\"}.mdi-power-sleep::before{content:\"\\F0904\"}.mdi-power-socket::before{content:\"\\F0427\"}.mdi-power-socket-au::before{content:\"\\F0905\"}.mdi-power-socket-de::before{content:\"\\F1107\"}.mdi-power-socket-eu::before{content:\"\\F07E7\"}.mdi-power-socket-fr::before{content:\"\\F1108\"}.mdi-power-socket-it::before{content:\"\\F14FF\"}.mdi-power-socket-jp::before{content:\"\\F1109\"}.mdi-power-socket-uk::before{content:\"\\F07E8\"}.mdi-power-socket-us::before{content:\"\\F07E9\"}.mdi-power-standby::before{content:\"\\F0906\"}.mdi-powershell::before{content:\"\\F0A0A\"}.mdi-prescription::before{content:\"\\F0706\"}.mdi-presentation::before{content:\"\\F0428\"}.mdi-presentation-play::before{content:\"\\F0429\"}.mdi-pretzel::before{content:\"\\F1562\"}.mdi-printer::before{content:\"\\F042A\"}.mdi-printer-3d::before{content:\"\\F042B\"}.mdi-printer-3d-nozzle::before{content:\"\\F0E5B\"}.mdi-printer-3d-nozzle-alert::before{content:\"\\F11C0\"}.mdi-printer-3d-nozzle-alert-outline::before{content:\"\\F11C1\"}.mdi-printer-3d-nozzle-outline::before{content:\"\\F0E5C\"}.mdi-printer-alert::before{content:\"\\F042C\"}.mdi-printer-check::before{content:\"\\F1146\"}.mdi-printer-eye::before{content:\"\\F1458\"}.mdi-printer-off::before{content:\"\\F0E5D\"}.mdi-printer-pos::before{content:\"\\F1057\"}.mdi-printer-search::before{content:\"\\F1457\"}.mdi-printer-settings::before{content:\"\\F0707\"}.mdi-printer-wireless::before{content:\"\\F0A0B\"}.mdi-priority-high::before{content:\"\\F0603\"}.mdi-priority-low::before{content:\"\\F0604\"}.mdi-professional-hexagon::before{content:\"\\F042D\"}.mdi-progress-alert::before{content:\"\\F0CBC\"}.mdi-progress-check::before{content:\"\\F0995\"}.mdi-progress-clock::before{content:\"\\F0996\"}.mdi-progress-close::before{content:\"\\F110A\"}.mdi-progress-download::before{content:\"\\F0997\"}.mdi-progress-question::before{content:\"\\F1522\"}.mdi-progress-upload::before{content:\"\\F0998\"}.mdi-progress-wrench::before{content:\"\\F0CBD\"}.mdi-projector::before{content:\"\\F042E\"}.mdi-projector-screen::before{content:\"\\F042F\"}.mdi-propane-tank::before{content:\"\\F1357\"}.mdi-propane-tank-outline::before{content:\"\\F1358\"}.mdi-protocol::before{content:\"\\F0FD8\"}.mdi-publish::before{content:\"\\F06A7\"}.mdi-pulse::before{content:\"\\F0430\"}.mdi-pump::before{content:\"\\F1402\"}.mdi-pumpkin::before{content:\"\\F0BBF\"}.mdi-purse::before{content:\"\\F0F1C\"}.mdi-purse-outline::before{content:\"\\F0F1D\"}.mdi-puzzle::before{content:\"\\F0431\"}.mdi-puzzle-check::before{content:\"\\F1426\"}.mdi-puzzle-check-outline::before{content:\"\\F1427\"}.mdi-puzzle-edit::before{content:\"\\F14D3\"}.mdi-puzzle-edit-outline::before{content:\"\\F14D9\"}.mdi-puzzle-heart::before{content:\"\\F14D4\"}.mdi-puzzle-heart-outline::before{content:\"\\F14DA\"}.mdi-puzzle-minus::before{content:\"\\F14D1\"}.mdi-puzzle-minus-outline::before{content:\"\\F14D7\"}.mdi-puzzle-outline::before{content:\"\\F0A66\"}.mdi-puzzle-plus::before{content:\"\\F14D0\"}.mdi-puzzle-plus-outline::before{content:\"\\F14D6\"}.mdi-puzzle-remove::before{content:\"\\F14D2\"}.mdi-puzzle-remove-outline::before{content:\"\\F14D8\"}.mdi-puzzle-star::before{content:\"\\F14D5\"}.mdi-puzzle-star-outline::before{content:\"\\F14DB\"}.mdi-qi::before{content:\"\\F0999\"}.mdi-qqchat::before{content:\"\\F0605\"}.mdi-qrcode::before{content:\"\\F0432\"}.mdi-qrcode-edit::before{content:\"\\F08B8\"}.mdi-qrcode-minus::before{content:\"\\F118C\"}.mdi-qrcode-plus::before{content:\"\\F118B\"}.mdi-qrcode-remove::before{content:\"\\F118D\"}.mdi-qrcode-scan::before{content:\"\\F0433\"}.mdi-quadcopter::before{content:\"\\F0434\"}.mdi-quality-high::before{content:\"\\F0435\"}.mdi-quality-low::before{content:\"\\F0A0C\"}.mdi-quality-medium::before{content:\"\\F0A0D\"}.mdi-quora::before{content:\"\\F0D29\"}.mdi-rabbit::before{content:\"\\F0907\"}.mdi-racing-helmet::before{content:\"\\F0D93\"}.mdi-racquetball::before{content:\"\\F0D94\"}.mdi-radar::before{content:\"\\F0437\"}.mdi-radiator::before{content:\"\\F0438\"}.mdi-radiator-disabled::before{content:\"\\F0AD7\"}.mdi-radiator-off::before{content:\"\\F0AD8\"}.mdi-radio::before{content:\"\\F0439\"}.mdi-radio-am::before{content:\"\\F0CBE\"}.mdi-radio-fm::before{content:\"\\F0CBF\"}.mdi-radio-handheld::before{content:\"\\F043A\"}.mdi-radio-off::before{content:\"\\F121C\"}.mdi-radio-tower::before{content:\"\\F043B\"}.mdi-radioactive::before{content:\"\\F043C\"}.mdi-radioactive-off::before{content:\"\\F0EC1\"}.mdi-radiobox-blank::before{content:\"\\F043D\"}.mdi-radiobox-marked::before{content:\"\\F043E\"}.mdi-radiology-box::before{content:\"\\F14C5\"}.mdi-radiology-box-outline::before{content:\"\\F14C6\"}.mdi-radius::before{content:\"\\F0CC0\"}.mdi-radius-outline::before{content:\"\\F0CC1\"}.mdi-railroad-light::before{content:\"\\F0F1E\"}.mdi-rake::before{content:\"\\F1544\"}.mdi-raspberry-pi::before{content:\"\\F043F\"}.mdi-ray-end::before{content:\"\\F0440\"}.mdi-ray-end-arrow::before{content:\"\\F0441\"}.mdi-ray-start::before{content:\"\\F0442\"}.mdi-ray-start-arrow::before{content:\"\\F0443\"}.mdi-ray-start-end::before{content:\"\\F0444\"}.mdi-ray-start-vertex-end::before{content:\"\\F15D8\"}.mdi-ray-vertex::before{content:\"\\F0445\"}.mdi-react::before{content:\"\\F0708\"}.mdi-read::before{content:\"\\F0447\"}.mdi-receipt::before{content:\"\\F0449\"}.mdi-record::before{content:\"\\F044A\"}.mdi-record-circle::before{content:\"\\F0EC2\"}.mdi-record-circle-outline::before{content:\"\\F0EC3\"}.mdi-record-player::before{content:\"\\F099A\"}.mdi-record-rec::before{content:\"\\F044B\"}.mdi-rectangle::before{content:\"\\F0E5E\"}.mdi-rectangle-outline::before{content:\"\\F0E5F\"}.mdi-recycle::before{content:\"\\F044C\"}.mdi-recycle-variant::before{content:\"\\F139D\"}.mdi-reddit::before{content:\"\\F044D\"}.mdi-redhat::before{content:\"\\F111B\"}.mdi-redo::before{content:\"\\F044E\"}.mdi-redo-variant::before{content:\"\\F044F\"}.mdi-reflect-horizontal::before{content:\"\\F0A0E\"}.mdi-reflect-vertical::before{content:\"\\F0A0F\"}.mdi-refresh::before{content:\"\\F0450\"}.mdi-refresh-circle::before{content:\"\\F1377\"}.mdi-regex::before{content:\"\\F0451\"}.mdi-registered-trademark::before{content:\"\\F0A67\"}.mdi-reiterate::before{content:\"\\F1588\"}.mdi-relation-many-to-many::before{content:\"\\F1496\"}.mdi-relation-many-to-one::before{content:\"\\F1497\"}.mdi-relation-many-to-one-or-many::before{content:\"\\F1498\"}.mdi-relation-many-to-only-one::before{content:\"\\F1499\"}.mdi-relation-many-to-zero-or-many::before{content:\"\\F149A\"}.mdi-relation-many-to-zero-or-one::before{content:\"\\F149B\"}.mdi-relation-one-or-many-to-many::before{content:\"\\F149C\"}.mdi-relation-one-or-many-to-one::before{content:\"\\F149D\"}.mdi-relation-one-or-many-to-one-or-many::before{content:\"\\F149E\"}.mdi-relation-one-or-many-to-only-one::before{content:\"\\F149F\"}.mdi-relation-one-or-many-to-zero-or-many::before{content:\"\\F14A0\"}.mdi-relation-one-or-many-to-zero-or-one::before{content:\"\\F14A1\"}.mdi-relation-one-to-many::before{content:\"\\F14A2\"}.mdi-relation-one-to-one::before{content:\"\\F14A3\"}.mdi-relation-one-to-one-or-many::before{content:\"\\F14A4\"}.mdi-relation-one-to-only-one::before{content:\"\\F14A5\"}.mdi-relation-one-to-zero-or-many::before{content:\"\\F14A6\"}.mdi-relation-one-to-zero-or-one::before{content:\"\\F14A7\"}.mdi-relation-only-one-to-many::before{content:\"\\F14A8\"}.mdi-relation-only-one-to-one::before{content:\"\\F14A9\"}.mdi-relation-only-one-to-one-or-many::before{content:\"\\F14AA\"}.mdi-relation-only-one-to-only-one::before{content:\"\\F14AB\"}.mdi-relation-only-one-to-zero-or-many::before{content:\"\\F14AC\"}.mdi-relation-only-one-to-zero-or-one::before{content:\"\\F14AD\"}.mdi-relation-zero-or-many-to-many::before{content:\"\\F14AE\"}.mdi-relation-zero-or-many-to-one::before{content:\"\\F14AF\"}.mdi-relation-zero-or-many-to-one-or-many::before{content:\"\\F14B0\"}.mdi-relation-zero-or-many-to-only-one::before{content:\"\\F14B1\"}.mdi-relation-zero-or-many-to-zero-or-many::before{content:\"\\F14B2\"}.mdi-relation-zero-or-many-to-zero-or-one::before{content:\"\\F14B3\"}.mdi-relation-zero-or-one-to-many::before{content:\"\\F14B4\"}.mdi-relation-zero-or-one-to-one::before{content:\"\\F14B5\"}.mdi-relation-zero-or-one-to-one-or-many::before{content:\"\\F14B6\"}.mdi-relation-zero-or-one-to-only-one::before{content:\"\\F14B7\"}.mdi-relation-zero-or-one-to-zero-or-many::before{content:\"\\F14B8\"}.mdi-relation-zero-or-one-to-zero-or-one::before{content:\"\\F14B9\"}.mdi-relative-scale::before{content:\"\\F0452\"}.mdi-reload::before{content:\"\\F0453\"}.mdi-reload-alert::before{content:\"\\F110B\"}.mdi-reminder::before{content:\"\\F088C\"}.mdi-remote::before{content:\"\\F0454\"}.mdi-remote-desktop::before{content:\"\\F08B9\"}.mdi-remote-off::before{content:\"\\F0EC4\"}.mdi-remote-tv::before{content:\"\\F0EC5\"}.mdi-remote-tv-off::before{content:\"\\F0EC6\"}.mdi-rename-box::before{content:\"\\F0455\"}.mdi-reorder-horizontal::before{content:\"\\F0688\"}.mdi-reorder-vertical::before{content:\"\\F0689\"}.mdi-repeat::before{content:\"\\F0456\"}.mdi-repeat-off::before{content:\"\\F0457\"}.mdi-repeat-once::before{content:\"\\F0458\"}.mdi-replay::before{content:\"\\F0459\"}.mdi-reply::before{content:\"\\F045A\"}.mdi-reply-all::before{content:\"\\F045B\"}.mdi-reply-all-outline::before{content:\"\\F0F1F\"}.mdi-reply-circle::before{content:\"\\F11AE\"}.mdi-reply-outline::before{content:\"\\F0F20\"}.mdi-reproduction::before{content:\"\\F045C\"}.mdi-resistor::before{content:\"\\F0B44\"}.mdi-resistor-nodes::before{content:\"\\F0B45\"}.mdi-resize::before{content:\"\\F0A68\"}.mdi-resize-bottom-right::before{content:\"\\F045D\"}.mdi-responsive::before{content:\"\\F045E\"}.mdi-restart::before{content:\"\\F0709\"}.mdi-restart-alert::before{content:\"\\F110C\"}.mdi-restart-off::before{content:\"\\F0D95\"}.mdi-restore::before{content:\"\\F099B\"}.mdi-restore-alert::before{content:\"\\F110D\"}.mdi-rewind::before{content:\"\\F045F\"}.mdi-rewind-10::before{content:\"\\F0D2A\"}.mdi-rewind-30::before{content:\"\\F0D96\"}.mdi-rewind-5::before{content:\"\\F11F9\"}.mdi-rewind-60::before{content:\"\\F160C\"}.mdi-rewind-outline::before{content:\"\\F070A\"}.mdi-rhombus::before{content:\"\\F070B\"}.mdi-rhombus-medium::before{content:\"\\F0A10\"}.mdi-rhombus-medium-outline::before{content:\"\\F14DC\"}.mdi-rhombus-outline::before{content:\"\\F070C\"}.mdi-rhombus-split::before{content:\"\\F0A11\"}.mdi-rhombus-split-outline::before{content:\"\\F14DD\"}.mdi-ribbon::before{content:\"\\F0460\"}.mdi-rice::before{content:\"\\F07EA\"}.mdi-rickshaw::before{content:\"\\F15BB\"}.mdi-rickshaw-electric::before{content:\"\\F15BC\"}.mdi-ring::before{content:\"\\F07EB\"}.mdi-rivet::before{content:\"\\F0E60\"}.mdi-road::before{content:\"\\F0461\"}.mdi-road-variant::before{content:\"\\F0462\"}.mdi-robber::before{content:\"\\F1058\"}.mdi-robot::before{content:\"\\F06A9\"}.mdi-robot-angry::before{content:\"\\F169D\"}.mdi-robot-angry-outline::before{content:\"\\F169E\"}.mdi-robot-confused::before{content:\"\\F169F\"}.mdi-robot-confused-outline::before{content:\"\\F16A0\"}.mdi-robot-dead::before{content:\"\\F16A1\"}.mdi-robot-dead-outline::before{content:\"\\F16A2\"}.mdi-robot-excited::before{content:\"\\F16A3\"}.mdi-robot-excited-outline::before{content:\"\\F16A4\"}.mdi-robot-industrial::before{content:\"\\F0B46\"}.mdi-robot-love::before{content:\"\\F16A5\"}.mdi-robot-love-outline::before{content:\"\\F16A6\"}.mdi-robot-mower::before{content:\"\\F11F7\"}.mdi-robot-mower-outline::before{content:\"\\F11F3\"}.mdi-robot-off::before{content:\"\\F16A7\"}.mdi-robot-off-outline::before{content:\"\\F167B\"}.mdi-robot-outline::before{content:\"\\F167A\"}.mdi-robot-vacuum::before{content:\"\\F070D\"}.mdi-robot-vacuum-variant::before{content:\"\\F0908\"}.mdi-rocket::before{content:\"\\F0463\"}.mdi-rocket-launch::before{content:\"\\F14DE\"}.mdi-rocket-launch-outline::before{content:\"\\F14DF\"}.mdi-rocket-outline::before{content:\"\\F13AF\"}.mdi-rodent::before{content:\"\\F1327\"}.mdi-roller-skate::before{content:\"\\F0D2B\"}.mdi-roller-skate-off::before{content:\"\\F0145\"}.mdi-rollerblade::before{content:\"\\F0D2C\"}.mdi-rollerblade-off::before{content:\"\\F002E\"}.mdi-rollupjs::before{content:\"\\F0BC0\"}.mdi-roman-numeral-1::before{content:\"\\F1088\"}.mdi-roman-numeral-10::before{content:\"\\F1091\"}.mdi-roman-numeral-2::before{content:\"\\F1089\"}.mdi-roman-numeral-3::before{content:\"\\F108A\"}.mdi-roman-numeral-4::before{content:\"\\F108B\"}.mdi-roman-numeral-5::before{content:\"\\F108C\"}.mdi-roman-numeral-6::before{content:\"\\F108D\"}.mdi-roman-numeral-7::before{content:\"\\F108E\"}.mdi-roman-numeral-8::before{content:\"\\F108F\"}.mdi-roman-numeral-9::before{content:\"\\F1090\"}.mdi-room-service::before{content:\"\\F088D\"}.mdi-room-service-outline::before{content:\"\\F0D97\"}.mdi-rotate-3d::before{content:\"\\F0EC7\"}.mdi-rotate-3d-variant::before{content:\"\\F0464\"}.mdi-rotate-left::before{content:\"\\F0465\"}.mdi-rotate-left-variant::before{content:\"\\F0466\"}.mdi-rotate-orbit::before{content:\"\\F0D98\"}.mdi-rotate-right::before{content:\"\\F0467\"}.mdi-rotate-right-variant::before{content:\"\\F0468\"}.mdi-rounded-corner::before{content:\"\\F0607\"}.mdi-router::before{content:\"\\F11E2\"}.mdi-router-network::before{content:\"\\F1087\"}.mdi-router-wireless::before{content:\"\\F0469\"}.mdi-router-wireless-off::before{content:\"\\F15A3\"}.mdi-router-wireless-settings::before{content:\"\\F0A69\"}.mdi-routes::before{content:\"\\F046A\"}.mdi-routes-clock::before{content:\"\\F1059\"}.mdi-rowing::before{content:\"\\F0608\"}.mdi-rss::before{content:\"\\F046B\"}.mdi-rss-box::before{content:\"\\F046C\"}.mdi-rss-off::before{content:\"\\F0F21\"}.mdi-rug::before{content:\"\\F1475\"}.mdi-rugby::before{content:\"\\F0D99\"}.mdi-ruler::before{content:\"\\F046D\"}.mdi-ruler-square::before{content:\"\\F0CC2\"}.mdi-ruler-square-compass::before{content:\"\\F0EBE\"}.mdi-run::before{content:\"\\F070E\"}.mdi-run-fast::before{content:\"\\F046E\"}.mdi-rv-truck::before{content:\"\\F11D4\"}.mdi-sack::before{content:\"\\F0D2E\"}.mdi-sack-percent::before{content:\"\\F0D2F\"}.mdi-safe::before{content:\"\\F0A6A\"}.mdi-safe-square::before{content:\"\\F127C\"}.mdi-safe-square-outline::before{content:\"\\F127D\"}.mdi-safety-goggles::before{content:\"\\F0D30\"}.mdi-sail-boat::before{content:\"\\F0EC8\"}.mdi-sale::before{content:\"\\F046F\"}.mdi-salesforce::before{content:\"\\F088E\"}.mdi-sass::before{content:\"\\F07EC\"}.mdi-satellite::before{content:\"\\F0470\"}.mdi-satellite-uplink::before{content:\"\\F0909\"}.mdi-satellite-variant::before{content:\"\\F0471\"}.mdi-sausage::before{content:\"\\F08BA\"}.mdi-saw-blade::before{content:\"\\F0E61\"}.mdi-sawtooth-wave::before{content:\"\\F147A\"}.mdi-saxophone::before{content:\"\\F0609\"}.mdi-scale::before{content:\"\\F0472\"}.mdi-scale-balance::before{content:\"\\F05D1\"}.mdi-scale-bathroom::before{content:\"\\F0473\"}.mdi-scale-off::before{content:\"\\F105A\"}.mdi-scan-helper::before{content:\"\\F13D8\"}.mdi-scanner::before{content:\"\\F06AB\"}.mdi-scanner-off::before{content:\"\\F090A\"}.mdi-scatter-plot::before{content:\"\\F0EC9\"}.mdi-scatter-plot-outline::before{content:\"\\F0ECA\"}.mdi-school::before{content:\"\\F0474\"}.mdi-school-outline::before{content:\"\\F1180\"}.mdi-scissors-cutting::before{content:\"\\F0A6B\"}.mdi-scooter::before{content:\"\\F15BD\"}.mdi-scooter-electric::before{content:\"\\F15BE\"}.mdi-scoreboard::before{content:\"\\F127E\"}.mdi-scoreboard-outline::before{content:\"\\F127F\"}.mdi-screen-rotation::before{content:\"\\F0475\"}.mdi-screen-rotation-lock::before{content:\"\\F0478\"}.mdi-screw-flat-top::before{content:\"\\F0DF3\"}.mdi-screw-lag::before{content:\"\\F0DF4\"}.mdi-screw-machine-flat-top::before{content:\"\\F0DF5\"}.mdi-screw-machine-round-top::before{content:\"\\F0DF6\"}.mdi-screw-round-top::before{content:\"\\F0DF7\"}.mdi-screwdriver::before{content:\"\\F0476\"}.mdi-script::before{content:\"\\F0BC1\"}.mdi-script-outline::before{content:\"\\F0477\"}.mdi-script-text::before{content:\"\\F0BC2\"}.mdi-script-text-outline::before{content:\"\\F0BC3\"}.mdi-sd::before{content:\"\\F0479\"}.mdi-seal::before{content:\"\\F047A\"}.mdi-seal-variant::before{content:\"\\F0FD9\"}.mdi-search-web::before{content:\"\\F070F\"}.mdi-seat::before{content:\"\\F0CC3\"}.mdi-seat-flat::before{content:\"\\F047B\"}.mdi-seat-flat-angled::before{content:\"\\F047C\"}.mdi-seat-individual-suite::before{content:\"\\F047D\"}.mdi-seat-legroom-extra::before{content:\"\\F047E\"}.mdi-seat-legroom-normal::before{content:\"\\F047F\"}.mdi-seat-legroom-reduced::before{content:\"\\F0480\"}.mdi-seat-outline::before{content:\"\\F0CC4\"}.mdi-seat-passenger::before{content:\"\\F1249\"}.mdi-seat-recline-extra::before{content:\"\\F0481\"}.mdi-seat-recline-normal::before{content:\"\\F0482\"}.mdi-seatbelt::before{content:\"\\F0CC5\"}.mdi-security::before{content:\"\\F0483\"}.mdi-security-network::before{content:\"\\F0484\"}.mdi-seed::before{content:\"\\F0E62\"}.mdi-seed-off::before{content:\"\\F13FD\"}.mdi-seed-off-outline::before{content:\"\\F13FE\"}.mdi-seed-outline::before{content:\"\\F0E63\"}.mdi-seesaw::before{content:\"\\F15A4\"}.mdi-segment::before{content:\"\\F0ECB\"}.mdi-select::before{content:\"\\F0485\"}.mdi-select-all::before{content:\"\\F0486\"}.mdi-select-color::before{content:\"\\F0D31\"}.mdi-select-compare::before{content:\"\\F0AD9\"}.mdi-select-drag::before{content:\"\\F0A6C\"}.mdi-select-group::before{content:\"\\F0F82\"}.mdi-select-inverse::before{content:\"\\F0487\"}.mdi-select-marker::before{content:\"\\F1280\"}.mdi-select-multiple::before{content:\"\\F1281\"}.mdi-select-multiple-marker::before{content:\"\\F1282\"}.mdi-select-off::before{content:\"\\F0488\"}.mdi-select-place::before{content:\"\\F0FDA\"}.mdi-select-search::before{content:\"\\F1204\"}.mdi-selection::before{content:\"\\F0489\"}.mdi-selection-drag::before{content:\"\\F0A6D\"}.mdi-selection-ellipse::before{content:\"\\F0D32\"}.mdi-selection-ellipse-arrow-inside::before{content:\"\\F0F22\"}.mdi-selection-marker::before{content:\"\\F1283\"}.mdi-selection-multiple::before{content:\"\\F1285\"}.mdi-selection-multiple-marker::before{content:\"\\F1284\"}.mdi-selection-off::before{content:\"\\F0777\"}.mdi-selection-search::before{content:\"\\F1205\"}.mdi-semantic-web::before{content:\"\\F1316\"}.mdi-send::before{content:\"\\F048A\"}.mdi-send-check::before{content:\"\\F1161\"}.mdi-send-check-outline::before{content:\"\\F1162\"}.mdi-send-circle::before{content:\"\\F0DF8\"}.mdi-send-circle-outline::before{content:\"\\F0DF9\"}.mdi-send-clock::before{content:\"\\F1163\"}.mdi-send-clock-outline::before{content:\"\\F1164\"}.mdi-send-lock::before{content:\"\\F07ED\"}.mdi-send-lock-outline::before{content:\"\\F1166\"}.mdi-send-outline::before{content:\"\\F1165\"}.mdi-serial-port::before{content:\"\\F065C\"}.mdi-server::before{content:\"\\F048B\"}.mdi-server-minus::before{content:\"\\F048C\"}.mdi-server-network::before{content:\"\\F048D\"}.mdi-server-network-off::before{content:\"\\F048E\"}.mdi-server-off::before{content:\"\\F048F\"}.mdi-server-plus::before{content:\"\\F0490\"}.mdi-server-remove::before{content:\"\\F0491\"}.mdi-server-security::before{content:\"\\F0492\"}.mdi-set-all::before{content:\"\\F0778\"}.mdi-set-center::before{content:\"\\F0779\"}.mdi-set-center-right::before{content:\"\\F077A\"}.mdi-set-left::before{content:\"\\F077B\"}.mdi-set-left-center::before{content:\"\\F077C\"}.mdi-set-left-right::before{content:\"\\F077D\"}.mdi-set-merge::before{content:\"\\F14E0\"}.mdi-set-none::before{content:\"\\F077E\"}.mdi-set-right::before{content:\"\\F077F\"}.mdi-set-split::before{content:\"\\F14E1\"}.mdi-set-square::before{content:\"\\F145D\"}.mdi-set-top-box::before{content:\"\\F099F\"}.mdi-settings-helper::before{content:\"\\F0A6E\"}.mdi-shaker::before{content:\"\\F110E\"}.mdi-shaker-outline::before{content:\"\\F110F\"}.mdi-shape::before{content:\"\\F0831\"}.mdi-shape-circle-plus::before{content:\"\\F065D\"}.mdi-shape-outline::before{content:\"\\F0832\"}.mdi-shape-oval-plus::before{content:\"\\F11FA\"}.mdi-shape-plus::before{content:\"\\F0495\"}.mdi-shape-polygon-plus::before{content:\"\\F065E\"}.mdi-shape-rectangle-plus::before{content:\"\\F065F\"}.mdi-shape-square-plus::before{content:\"\\F0660\"}.mdi-shape-square-rounded-plus::before{content:\"\\F14FA\"}.mdi-share::before{content:\"\\F0496\"}.mdi-share-all::before{content:\"\\F11F4\"}.mdi-share-all-outline::before{content:\"\\F11F5\"}.mdi-share-circle::before{content:\"\\F11AD\"}.mdi-share-off::before{content:\"\\F0F23\"}.mdi-share-off-outline::before{content:\"\\F0F24\"}.mdi-share-outline::before{content:\"\\F0932\"}.mdi-share-variant::before{content:\"\\F0497\"}.mdi-share-variant-outline::before{content:\"\\F1514\"}.mdi-shark-fin::before{content:\"\\F1673\"}.mdi-shark-fin-outline::before{content:\"\\F1674\"}.mdi-sheep::before{content:\"\\F0CC6\"}.mdi-shield::before{content:\"\\F0498\"}.mdi-shield-account::before{content:\"\\F088F\"}.mdi-shield-account-outline::before{content:\"\\F0A12\"}.mdi-shield-account-variant::before{content:\"\\F15A7\"}.mdi-shield-account-variant-outline::before{content:\"\\F15A8\"}.mdi-shield-airplane::before{content:\"\\F06BB\"}.mdi-shield-airplane-outline::before{content:\"\\F0CC7\"}.mdi-shield-alert::before{content:\"\\F0ECC\"}.mdi-shield-alert-outline::before{content:\"\\F0ECD\"}.mdi-shield-bug::before{content:\"\\F13DA\"}.mdi-shield-bug-outline::before{content:\"\\F13DB\"}.mdi-shield-car::before{content:\"\\F0F83\"}.mdi-shield-check::before{content:\"\\F0565\"}.mdi-shield-check-outline::before{content:\"\\F0CC8\"}.mdi-shield-cross::before{content:\"\\F0CC9\"}.mdi-shield-cross-outline::before{content:\"\\F0CCA\"}.mdi-shield-edit::before{content:\"\\F11A0\"}.mdi-shield-edit-outline::before{content:\"\\F11A1\"}.mdi-shield-half::before{content:\"\\F1360\"}.mdi-shield-half-full::before{content:\"\\F0780\"}.mdi-shield-home::before{content:\"\\F068A\"}.mdi-shield-home-outline::before{content:\"\\F0CCB\"}.mdi-shield-key::before{content:\"\\F0BC4\"}.mdi-shield-key-outline::before{content:\"\\F0BC5\"}.mdi-shield-link-variant::before{content:\"\\F0D33\"}.mdi-shield-link-variant-outline::before{content:\"\\F0D34\"}.mdi-shield-lock::before{content:\"\\F099D\"}.mdi-shield-lock-outline::before{content:\"\\F0CCC\"}.mdi-shield-off::before{content:\"\\F099E\"}.mdi-shield-off-outline::before{content:\"\\F099C\"}.mdi-shield-outline::before{content:\"\\F0499\"}.mdi-shield-plus::before{content:\"\\F0ADA\"}.mdi-shield-plus-outline::before{content:\"\\F0ADB\"}.mdi-shield-refresh::before{content:\"\\F00AA\"}.mdi-shield-refresh-outline::before{content:\"\\F01E0\"}.mdi-shield-remove::before{content:\"\\F0ADC\"}.mdi-shield-remove-outline::before{content:\"\\F0ADD\"}.mdi-shield-search::before{content:\"\\F0D9A\"}.mdi-shield-star::before{content:\"\\F113B\"}.mdi-shield-star-outline::before{content:\"\\F113C\"}.mdi-shield-sun::before{content:\"\\F105D\"}.mdi-shield-sun-outline::before{content:\"\\F105E\"}.mdi-shield-sync::before{content:\"\\F11A2\"}.mdi-shield-sync-outline::before{content:\"\\F11A3\"}.mdi-ship-wheel::before{content:\"\\F0833\"}.mdi-shoe-ballet::before{content:\"\\F15CA\"}.mdi-shoe-cleat::before{content:\"\\F15C7\"}.mdi-shoe-formal::before{content:\"\\F0B47\"}.mdi-shoe-heel::before{content:\"\\F0B48\"}.mdi-shoe-print::before{content:\"\\F0DFA\"}.mdi-shoe-sneaker::before{content:\"\\F15C8\"}.mdi-shopping::before{content:\"\\F049A\"}.mdi-shopping-music::before{content:\"\\F049B\"}.mdi-shopping-outline::before{content:\"\\F11D5\"}.mdi-shopping-search::before{content:\"\\F0F84\"}.mdi-shore::before{content:\"\\F14F9\"}.mdi-shovel::before{content:\"\\F0710\"}.mdi-shovel-off::before{content:\"\\F0711\"}.mdi-shower::before{content:\"\\F09A0\"}.mdi-shower-head::before{content:\"\\F09A1\"}.mdi-shredder::before{content:\"\\F049C\"}.mdi-shuffle::before{content:\"\\F049D\"}.mdi-shuffle-disabled::before{content:\"\\F049E\"}.mdi-shuffle-variant::before{content:\"\\F049F\"}.mdi-shuriken::before{content:\"\\F137F\"}.mdi-sigma::before{content:\"\\F04A0\"}.mdi-sigma-lower::before{content:\"\\F062B\"}.mdi-sign-caution::before{content:\"\\F04A1\"}.mdi-sign-direction::before{content:\"\\F0781\"}.mdi-sign-direction-minus::before{content:\"\\F1000\"}.mdi-sign-direction-plus::before{content:\"\\F0FDC\"}.mdi-sign-direction-remove::before{content:\"\\F0FDD\"}.mdi-sign-pole::before{content:\"\\F14F8\"}.mdi-sign-real-estate::before{content:\"\\F1118\"}.mdi-sign-text::before{content:\"\\F0782\"}.mdi-signal::before{content:\"\\F04A2\"}.mdi-signal-2g::before{content:\"\\F0712\"}.mdi-signal-3g::before{content:\"\\F0713\"}.mdi-signal-4g::before{content:\"\\F0714\"}.mdi-signal-5g::before{content:\"\\F0A6F\"}.mdi-signal-cellular-1::before{content:\"\\F08BC\"}.mdi-signal-cellular-2::before{content:\"\\F08BD\"}.mdi-signal-cellular-3::before{content:\"\\F08BE\"}.mdi-signal-cellular-outline::before{content:\"\\F08BF\"}.mdi-signal-distance-variant::before{content:\"\\F0E64\"}.mdi-signal-hspa::before{content:\"\\F0715\"}.mdi-signal-hspa-plus::before{content:\"\\F0716\"}.mdi-signal-off::before{content:\"\\F0783\"}.mdi-signal-variant::before{content:\"\\F060A\"}.mdi-signature::before{content:\"\\F0DFB\"}.mdi-signature-freehand::before{content:\"\\F0DFC\"}.mdi-signature-image::before{content:\"\\F0DFD\"}.mdi-signature-text::before{content:\"\\F0DFE\"}.mdi-silo::before{content:\"\\F0B49\"}.mdi-silverware::before{content:\"\\F04A3\"}.mdi-silverware-clean::before{content:\"\\F0FDE\"}.mdi-silverware-fork::before{content:\"\\F04A4\"}.mdi-silverware-fork-knife::before{content:\"\\F0A70\"}.mdi-silverware-spoon::before{content:\"\\F04A5\"}.mdi-silverware-variant::before{content:\"\\F04A6\"}.mdi-sim::before{content:\"\\F04A7\"}.mdi-sim-alert::before{content:\"\\F04A8\"}.mdi-sim-alert-outline::before{content:\"\\F15D3\"}.mdi-sim-off::before{content:\"\\F04A9\"}.mdi-sim-off-outline::before{content:\"\\F15D4\"}.mdi-sim-outline::before{content:\"\\F15D5\"}.mdi-simple-icons::before{content:\"\\F131D\"}.mdi-sina-weibo::before{content:\"\\F0ADF\"}.mdi-sine-wave::before{content:\"\\F095B\"}.mdi-sitemap::before{content:\"\\F04AA\"}.mdi-size-l::before{content:\"\\F13A6\"}.mdi-size-m::before{content:\"\\F13A5\"}.mdi-size-s::before{content:\"\\F13A4\"}.mdi-size-xl::before{content:\"\\F13A7\"}.mdi-size-xs::before{content:\"\\F13A3\"}.mdi-size-xxl::before{content:\"\\F13A8\"}.mdi-size-xxs::before{content:\"\\F13A2\"}.mdi-size-xxxl::before{content:\"\\F13A9\"}.mdi-skate::before{content:\"\\F0D35\"}.mdi-skateboard::before{content:\"\\F14C2\"}.mdi-skew-less::before{content:\"\\F0D36\"}.mdi-skew-more::before{content:\"\\F0D37\"}.mdi-ski::before{content:\"\\F1304\"}.mdi-ski-cross-country::before{content:\"\\F1305\"}.mdi-ski-water::before{content:\"\\F1306\"}.mdi-skip-backward::before{content:\"\\F04AB\"}.mdi-skip-backward-outline::before{content:\"\\F0F25\"}.mdi-skip-forward::before{content:\"\\F04AC\"}.mdi-skip-forward-outline::before{content:\"\\F0F26\"}.mdi-skip-next::before{content:\"\\F04AD\"}.mdi-skip-next-circle::before{content:\"\\F0661\"}.mdi-skip-next-circle-outline::before{content:\"\\F0662\"}.mdi-skip-next-outline::before{content:\"\\F0F27\"}.mdi-skip-previous::before{content:\"\\F04AE\"}.mdi-skip-previous-circle::before{content:\"\\F0663\"}.mdi-skip-previous-circle-outline::before{content:\"\\F0664\"}.mdi-skip-previous-outline::before{content:\"\\F0F28\"}.mdi-skull::before{content:\"\\F068C\"}.mdi-skull-crossbones::before{content:\"\\F0BC6\"}.mdi-skull-crossbones-outline::before{content:\"\\F0BC7\"}.mdi-skull-outline::before{content:\"\\F0BC8\"}.mdi-skull-scan::before{content:\"\\F14C7\"}.mdi-skull-scan-outline::before{content:\"\\F14C8\"}.mdi-skype::before{content:\"\\F04AF\"}.mdi-skype-business::before{content:\"\\F04B0\"}.mdi-slack::before{content:\"\\F04B1\"}.mdi-slash-forward::before{content:\"\\F0FDF\"}.mdi-slash-forward-box::before{content:\"\\F0FE0\"}.mdi-sleep::before{content:\"\\F04B2\"}.mdi-sleep-off::before{content:\"\\F04B3\"}.mdi-slide::before{content:\"\\F15A5\"}.mdi-slope-downhill::before{content:\"\\F0DFF\"}.mdi-slope-uphill::before{content:\"\\F0E00\"}.mdi-slot-machine::before{content:\"\\F1114\"}.mdi-slot-machine-outline::before{content:\"\\F1115\"}.mdi-smart-card::before{content:\"\\F10BD\"}.mdi-smart-card-outline::before{content:\"\\F10BE\"}.mdi-smart-card-reader::before{content:\"\\F10BF\"}.mdi-smart-card-reader-outline::before{content:\"\\F10C0\"}.mdi-smog::before{content:\"\\F0A71\"}.mdi-smoke-detector::before{content:\"\\F0392\"}.mdi-smoking::before{content:\"\\F04B4\"}.mdi-smoking-off::before{content:\"\\F04B5\"}.mdi-smoking-pipe::before{content:\"\\F140D\"}.mdi-smoking-pipe-off::before{content:\"\\F1428\"}.mdi-snail::before{content:\"\\F1677\"}.mdi-snake::before{content:\"\\F150E\"}.mdi-snapchat::before{content:\"\\F04B6\"}.mdi-snowboard::before{content:\"\\F1307\"}.mdi-snowflake::before{content:\"\\F0717\"}.mdi-snowflake-alert::before{content:\"\\F0F29\"}.mdi-snowflake-melt::before{content:\"\\F12CB\"}.mdi-snowflake-off::before{content:\"\\F14E3\"}.mdi-snowflake-variant::before{content:\"\\F0F2A\"}.mdi-snowman::before{content:\"\\F04B7\"}.mdi-soccer::before{content:\"\\F04B8\"}.mdi-soccer-field::before{content:\"\\F0834\"}.mdi-social-distance-2-meters::before{content:\"\\F1579\"}.mdi-social-distance-6-feet::before{content:\"\\F157A\"}.mdi-sofa::before{content:\"\\F04B9\"}.mdi-sofa-outline::before{content:\"\\F156D\"}.mdi-sofa-single::before{content:\"\\F156E\"}.mdi-sofa-single-outline::before{content:\"\\F156F\"}.mdi-solar-panel::before{content:\"\\F0D9B\"}.mdi-solar-panel-large::before{content:\"\\F0D9C\"}.mdi-solar-power::before{content:\"\\F0A72\"}.mdi-soldering-iron::before{content:\"\\F1092\"}.mdi-solid::before{content:\"\\F068D\"}.mdi-sony-playstation::before{content:\"\\F0414\"}.mdi-sort::before{content:\"\\F04BA\"}.mdi-sort-alphabetical-ascending::before{content:\"\\F05BD\"}.mdi-sort-alphabetical-ascending-variant::before{content:\"\\F1148\"}.mdi-sort-alphabetical-descending::before{content:\"\\F05BF\"}.mdi-sort-alphabetical-descending-variant::before{content:\"\\F1149\"}.mdi-sort-alphabetical-variant::before{content:\"\\F04BB\"}.mdi-sort-ascending::before{content:\"\\F04BC\"}.mdi-sort-bool-ascending::before{content:\"\\F1385\"}.mdi-sort-bool-ascending-variant::before{content:\"\\F1386\"}.mdi-sort-bool-descending::before{content:\"\\F1387\"}.mdi-sort-bool-descending-variant::before{content:\"\\F1388\"}.mdi-sort-calendar-ascending::before{content:\"\\F1547\"}.mdi-sort-calendar-descending::before{content:\"\\F1548\"}.mdi-sort-clock-ascending::before{content:\"\\F1549\"}.mdi-sort-clock-ascending-outline::before{content:\"\\F154A\"}.mdi-sort-clock-descending::before{content:\"\\F154B\"}.mdi-sort-clock-descending-outline::before{content:\"\\F154C\"}.mdi-sort-descending::before{content:\"\\F04BD\"}.mdi-sort-numeric-ascending::before{content:\"\\F1389\"}.mdi-sort-numeric-ascending-variant::before{content:\"\\F090D\"}.mdi-sort-numeric-descending::before{content:\"\\F138A\"}.mdi-sort-numeric-descending-variant::before{content:\"\\F0AD2\"}.mdi-sort-numeric-variant::before{content:\"\\F04BE\"}.mdi-sort-reverse-variant::before{content:\"\\F033C\"}.mdi-sort-variant::before{content:\"\\F04BF\"}.mdi-sort-variant-lock::before{content:\"\\F0CCD\"}.mdi-sort-variant-lock-open::before{content:\"\\F0CCE\"}.mdi-sort-variant-remove::before{content:\"\\F1147\"}.mdi-soundcloud::before{content:\"\\F04C0\"}.mdi-source-branch::before{content:\"\\F062C\"}.mdi-source-branch-check::before{content:\"\\F14CF\"}.mdi-source-branch-minus::before{content:\"\\F14CB\"}.mdi-source-branch-plus::before{content:\"\\F14CA\"}.mdi-source-branch-refresh::before{content:\"\\F14CD\"}.mdi-source-branch-remove::before{content:\"\\F14CC\"}.mdi-source-branch-sync::before{content:\"\\F14CE\"}.mdi-source-commit::before{content:\"\\F0718\"}.mdi-source-commit-end::before{content:\"\\F0719\"}.mdi-source-commit-end-local::before{content:\"\\F071A\"}.mdi-source-commit-local::before{content:\"\\F071B\"}.mdi-source-commit-next-local::before{content:\"\\F071C\"}.mdi-source-commit-start::before{content:\"\\F071D\"}.mdi-source-commit-start-next-local::before{content:\"\\F071E\"}.mdi-source-fork::before{content:\"\\F04C1\"}.mdi-source-merge::before{content:\"\\F062D\"}.mdi-source-pull::before{content:\"\\F04C2\"}.mdi-source-repository::before{content:\"\\F0CCF\"}.mdi-source-repository-multiple::before{content:\"\\F0CD0\"}.mdi-soy-sauce::before{content:\"\\F07EE\"}.mdi-soy-sauce-off::before{content:\"\\F13FC\"}.mdi-spa::before{content:\"\\F0CD1\"}.mdi-spa-outline::before{content:\"\\F0CD2\"}.mdi-space-invaders::before{content:\"\\F0BC9\"}.mdi-space-station::before{content:\"\\F1383\"}.mdi-spade::before{content:\"\\F0E65\"}.mdi-sparkles::before{content:\"\\F1545\"}.mdi-speaker::before{content:\"\\F04C3\"}.mdi-speaker-bluetooth::before{content:\"\\F09A2\"}.mdi-speaker-multiple::before{content:\"\\F0D38\"}.mdi-speaker-off::before{content:\"\\F04C4\"}.mdi-speaker-wireless::before{content:\"\\F071F\"}.mdi-speedometer::before{content:\"\\F04C5\"}.mdi-speedometer-medium::before{content:\"\\F0F85\"}.mdi-speedometer-slow::before{content:\"\\F0F86\"}.mdi-spellcheck::before{content:\"\\F04C6\"}.mdi-spider::before{content:\"\\F11EA\"}.mdi-spider-thread::before{content:\"\\F11EB\"}.mdi-spider-web::before{content:\"\\F0BCA\"}.mdi-spirit-level::before{content:\"\\F14F1\"}.mdi-spoon-sugar::before{content:\"\\F1429\"}.mdi-spotify::before{content:\"\\F04C7\"}.mdi-spotlight::before{content:\"\\F04C8\"}.mdi-spotlight-beam::before{content:\"\\F04C9\"}.mdi-spray::before{content:\"\\F0665\"}.mdi-spray-bottle::before{content:\"\\F0AE0\"}.mdi-sprinkler::before{content:\"\\F105F\"}.mdi-sprinkler-variant::before{content:\"\\F1060\"}.mdi-sprout::before{content:\"\\F0E66\"}.mdi-sprout-outline::before{content:\"\\F0E67\"}.mdi-square::before{content:\"\\F0764\"}.mdi-square-circle::before{content:\"\\F1500\"}.mdi-square-edit-outline::before{content:\"\\F090C\"}.mdi-square-medium::before{content:\"\\F0A13\"}.mdi-square-medium-outline::before{content:\"\\F0A14\"}.mdi-square-off::before{content:\"\\F12EE\"}.mdi-square-off-outline::before{content:\"\\F12EF\"}.mdi-square-outline::before{content:\"\\F0763\"}.mdi-square-root::before{content:\"\\F0784\"}.mdi-square-root-box::before{content:\"\\F09A3\"}.mdi-square-rounded::before{content:\"\\F14FB\"}.mdi-square-rounded-outline::before{content:\"\\F14FC\"}.mdi-square-small::before{content:\"\\F0A15\"}.mdi-square-wave::before{content:\"\\F147B\"}.mdi-squeegee::before{content:\"\\F0AE1\"}.mdi-ssh::before{content:\"\\F08C0\"}.mdi-stack-exchange::before{content:\"\\F060B\"}.mdi-stack-overflow::before{content:\"\\F04CC\"}.mdi-stackpath::before{content:\"\\F0359\"}.mdi-stadium::before{content:\"\\F0FF9\"}.mdi-stadium-variant::before{content:\"\\F0720\"}.mdi-stairs::before{content:\"\\F04CD\"}.mdi-stairs-box::before{content:\"\\F139E\"}.mdi-stairs-down::before{content:\"\\F12BE\"}.mdi-stairs-up::before{content:\"\\F12BD\"}.mdi-stamper::before{content:\"\\F0D39\"}.mdi-standard-definition::before{content:\"\\F07EF\"}.mdi-star::before{content:\"\\F04CE\"}.mdi-star-box::before{content:\"\\F0A73\"}.mdi-star-box-multiple::before{content:\"\\F1286\"}.mdi-star-box-multiple-outline::before{content:\"\\F1287\"}.mdi-star-box-outline::before{content:\"\\F0A74\"}.mdi-star-check::before{content:\"\\F1566\"}.mdi-star-check-outline::before{content:\"\\F156A\"}.mdi-star-circle::before{content:\"\\F04CF\"}.mdi-star-circle-outline::before{content:\"\\F09A4\"}.mdi-star-cog::before{content:\"\\F1668\"}.mdi-star-cog-outline::before{content:\"\\F1669\"}.mdi-star-face::before{content:\"\\F09A5\"}.mdi-star-four-points::before{content:\"\\F0AE2\"}.mdi-star-four-points-outline::before{content:\"\\F0AE3\"}.mdi-star-half::before{content:\"\\F0246\"}.mdi-star-half-full::before{content:\"\\F04D0\"}.mdi-star-minus::before{content:\"\\F1564\"}.mdi-star-minus-outline::before{content:\"\\F1568\"}.mdi-star-off::before{content:\"\\F04D1\"}.mdi-star-off-outline::before{content:\"\\F155B\"}.mdi-star-outline::before{content:\"\\F04D2\"}.mdi-star-plus::before{content:\"\\F1563\"}.mdi-star-plus-outline::before{content:\"\\F1567\"}.mdi-star-remove::before{content:\"\\F1565\"}.mdi-star-remove-outline::before{content:\"\\F1569\"}.mdi-star-settings::before{content:\"\\F166A\"}.mdi-star-settings-outline::before{content:\"\\F166B\"}.mdi-star-three-points::before{content:\"\\F0AE4\"}.mdi-star-three-points-outline::before{content:\"\\F0AE5\"}.mdi-state-machine::before{content:\"\\F11EF\"}.mdi-steam::before{content:\"\\F04D3\"}.mdi-steering::before{content:\"\\F04D4\"}.mdi-steering-off::before{content:\"\\F090E\"}.mdi-step-backward::before{content:\"\\F04D5\"}.mdi-step-backward-2::before{content:\"\\F04D6\"}.mdi-step-forward::before{content:\"\\F04D7\"}.mdi-step-forward-2::before{content:\"\\F04D8\"}.mdi-stethoscope::before{content:\"\\F04D9\"}.mdi-sticker::before{content:\"\\F1364\"}.mdi-sticker-alert::before{content:\"\\F1365\"}.mdi-sticker-alert-outline::before{content:\"\\F1366\"}.mdi-sticker-check::before{content:\"\\F1367\"}.mdi-sticker-check-outline::before{content:\"\\F1368\"}.mdi-sticker-circle-outline::before{content:\"\\F05D0\"}.mdi-sticker-emoji::before{content:\"\\F0785\"}.mdi-sticker-minus::before{content:\"\\F1369\"}.mdi-sticker-minus-outline::before{content:\"\\F136A\"}.mdi-sticker-outline::before{content:\"\\F136B\"}.mdi-sticker-plus::before{content:\"\\F136C\"}.mdi-sticker-plus-outline::before{content:\"\\F136D\"}.mdi-sticker-remove::before{content:\"\\F136E\"}.mdi-sticker-remove-outline::before{content:\"\\F136F\"}.mdi-stocking::before{content:\"\\F04DA\"}.mdi-stomach::before{content:\"\\F1093\"}.mdi-stop::before{content:\"\\F04DB\"}.mdi-stop-circle::before{content:\"\\F0666\"}.mdi-stop-circle-outline::before{content:\"\\F0667\"}.mdi-store::before{content:\"\\F04DC\"}.mdi-store-24-hour::before{content:\"\\F04DD\"}.mdi-store-minus::before{content:\"\\F165E\"}.mdi-store-outline::before{content:\"\\F1361\"}.mdi-store-plus::before{content:\"\\F165F\"}.mdi-store-remove::before{content:\"\\F1660\"}.mdi-storefront::before{content:\"\\F07C7\"}.mdi-storefront-outline::before{content:\"\\F10C1\"}.mdi-stove::before{content:\"\\F04DE\"}.mdi-strategy::before{content:\"\\F11D6\"}.mdi-stretch-to-page::before{content:\"\\F0F2B\"}.mdi-stretch-to-page-outline::before{content:\"\\F0F2C\"}.mdi-string-lights::before{content:\"\\F12BA\"}.mdi-string-lights-off::before{content:\"\\F12BB\"}.mdi-subdirectory-arrow-left::before{content:\"\\F060C\"}.mdi-subdirectory-arrow-right::before{content:\"\\F060D\"}.mdi-submarine::before{content:\"\\F156C\"}.mdi-subtitles::before{content:\"\\F0A16\"}.mdi-subtitles-outline::before{content:\"\\F0A17\"}.mdi-subway::before{content:\"\\F06AC\"}.mdi-subway-alert-variant::before{content:\"\\F0D9D\"}.mdi-subway-variant::before{content:\"\\F04DF\"}.mdi-summit::before{content:\"\\F0786\"}.mdi-sunglasses::before{content:\"\\F04E0\"}.mdi-surround-sound::before{content:\"\\F05C5\"}.mdi-surround-sound-2-0::before{content:\"\\F07F0\"}.mdi-surround-sound-3-1::before{content:\"\\F07F1\"}.mdi-surround-sound-5-1::before{content:\"\\F07F2\"}.mdi-surround-sound-7-1::before{content:\"\\F07F3\"}.mdi-svg::before{content:\"\\F0721\"}.mdi-swap-horizontal::before{content:\"\\F04E1\"}.mdi-swap-horizontal-bold::before{content:\"\\F0BCD\"}.mdi-swap-horizontal-circle::before{content:\"\\F0FE1\"}.mdi-swap-horizontal-circle-outline::before{content:\"\\F0FE2\"}.mdi-swap-horizontal-variant::before{content:\"\\F08C1\"}.mdi-swap-vertical::before{content:\"\\F04E2\"}.mdi-swap-vertical-bold::before{content:\"\\F0BCE\"}.mdi-swap-vertical-circle::before{content:\"\\F0FE3\"}.mdi-swap-vertical-circle-outline::before{content:\"\\F0FE4\"}.mdi-swap-vertical-variant::before{content:\"\\F08C2\"}.mdi-swim::before{content:\"\\F04E3\"}.mdi-switch::before{content:\"\\F04E4\"}.mdi-sword::before{content:\"\\F04E5\"}.mdi-sword-cross::before{content:\"\\F0787\"}.mdi-syllabary-hangul::before{content:\"\\F1333\"}.mdi-syllabary-hiragana::before{content:\"\\F1334\"}.mdi-syllabary-katakana::before{content:\"\\F1335\"}.mdi-syllabary-katakana-halfwidth::before{content:\"\\F1336\"}.mdi-symbol::before{content:\"\\F1501\"}.mdi-symfony::before{content:\"\\F0AE6\"}.mdi-sync::before{content:\"\\F04E6\"}.mdi-sync-alert::before{content:\"\\F04E7\"}.mdi-sync-circle::before{content:\"\\F1378\"}.mdi-sync-off::before{content:\"\\F04E8\"}.mdi-tab::before{content:\"\\F04E9\"}.mdi-tab-minus::before{content:\"\\F0B4B\"}.mdi-tab-plus::before{content:\"\\F075C\"}.mdi-tab-remove::before{content:\"\\F0B4C\"}.mdi-tab-unselected::before{content:\"\\F04EA\"}.mdi-table::before{content:\"\\F04EB\"}.mdi-table-account::before{content:\"\\F13B9\"}.mdi-table-alert::before{content:\"\\F13BA\"}.mdi-table-arrow-down::before{content:\"\\F13BB\"}.mdi-table-arrow-left::before{content:\"\\F13BC\"}.mdi-table-arrow-right::before{content:\"\\F13BD\"}.mdi-table-arrow-up::before{content:\"\\F13BE\"}.mdi-table-border::before{content:\"\\F0A18\"}.mdi-table-cancel::before{content:\"\\F13BF\"}.mdi-table-chair::before{content:\"\\F1061\"}.mdi-table-check::before{content:\"\\F13C0\"}.mdi-table-clock::before{content:\"\\F13C1\"}.mdi-table-cog::before{content:\"\\F13C2\"}.mdi-table-column::before{content:\"\\F0835\"}.mdi-table-column-plus-after::before{content:\"\\F04EC\"}.mdi-table-column-plus-before::before{content:\"\\F04ED\"}.mdi-table-column-remove::before{content:\"\\F04EE\"}.mdi-table-column-width::before{content:\"\\F04EF\"}.mdi-table-edit::before{content:\"\\F04F0\"}.mdi-table-eye::before{content:\"\\F1094\"}.mdi-table-eye-off::before{content:\"\\F13C3\"}.mdi-table-furniture::before{content:\"\\F05BC\"}.mdi-table-headers-eye::before{content:\"\\F121D\"}.mdi-table-headers-eye-off::before{content:\"\\F121E\"}.mdi-table-heart::before{content:\"\\F13C4\"}.mdi-table-key::before{content:\"\\F13C5\"}.mdi-table-large::before{content:\"\\F04F1\"}.mdi-table-large-plus::before{content:\"\\F0F87\"}.mdi-table-large-remove::before{content:\"\\F0F88\"}.mdi-table-lock::before{content:\"\\F13C6\"}.mdi-table-merge-cells::before{content:\"\\F09A6\"}.mdi-table-minus::before{content:\"\\F13C7\"}.mdi-table-multiple::before{content:\"\\F13C8\"}.mdi-table-network::before{content:\"\\F13C9\"}.mdi-table-of-contents::before{content:\"\\F0836\"}.mdi-table-off::before{content:\"\\F13CA\"}.mdi-table-plus::before{content:\"\\F0A75\"}.mdi-table-refresh::before{content:\"\\F13A0\"}.mdi-table-remove::before{content:\"\\F0A76\"}.mdi-table-row::before{content:\"\\F0837\"}.mdi-table-row-height::before{content:\"\\F04F2\"}.mdi-table-row-plus-after::before{content:\"\\F04F3\"}.mdi-table-row-plus-before::before{content:\"\\F04F4\"}.mdi-table-row-remove::before{content:\"\\F04F5\"}.mdi-table-search::before{content:\"\\F090F\"}.mdi-table-settings::before{content:\"\\F0838\"}.mdi-table-split-cell::before{content:\"\\F142A\"}.mdi-table-star::before{content:\"\\F13CB\"}.mdi-table-sync::before{content:\"\\F13A1\"}.mdi-table-tennis::before{content:\"\\F0E68\"}.mdi-tablet::before{content:\"\\F04F6\"}.mdi-tablet-android::before{content:\"\\F04F7\"}.mdi-tablet-cellphone::before{content:\"\\F09A7\"}.mdi-tablet-dashboard::before{content:\"\\F0ECE\"}.mdi-tablet-ipad::before{content:\"\\F04F8\"}.mdi-taco::before{content:\"\\F0762\"}.mdi-tag::before{content:\"\\F04F9\"}.mdi-tag-faces::before{content:\"\\F04FA\"}.mdi-tag-heart::before{content:\"\\F068B\"}.mdi-tag-heart-outline::before{content:\"\\F0BCF\"}.mdi-tag-minus::before{content:\"\\F0910\"}.mdi-tag-minus-outline::before{content:\"\\F121F\"}.mdi-tag-multiple::before{content:\"\\F04FB\"}.mdi-tag-multiple-outline::before{content:\"\\F12F7\"}.mdi-tag-off::before{content:\"\\F1220\"}.mdi-tag-off-outline::before{content:\"\\F1221\"}.mdi-tag-outline::before{content:\"\\F04FC\"}.mdi-tag-plus::before{content:\"\\F0722\"}.mdi-tag-plus-outline::before{content:\"\\F1222\"}.mdi-tag-remove::before{content:\"\\F0723\"}.mdi-tag-remove-outline::before{content:\"\\F1223\"}.mdi-tag-text::before{content:\"\\F1224\"}.mdi-tag-text-outline::before{content:\"\\F04FD\"}.mdi-tailwind::before{content:\"\\F13FF\"}.mdi-tank::before{content:\"\\F0D3A\"}.mdi-tanker-truck::before{content:\"\\F0FE5\"}.mdi-tape-drive::before{content:\"\\F16DF\"}.mdi-tape-measure::before{content:\"\\F0B4D\"}.mdi-target::before{content:\"\\F04FE\"}.mdi-target-account::before{content:\"\\F0BD0\"}.mdi-target-variant::before{content:\"\\F0A77\"}.mdi-taxi::before{content:\"\\F04FF\"}.mdi-tea::before{content:\"\\F0D9E\"}.mdi-tea-outline::before{content:\"\\F0D9F\"}.mdi-teach::before{content:\"\\F0890\"}.mdi-teamviewer::before{content:\"\\F0500\"}.mdi-telegram::before{content:\"\\F0501\"}.mdi-telescope::before{content:\"\\F0B4E\"}.mdi-television::before{content:\"\\F0502\"}.mdi-television-ambient-light::before{content:\"\\F1356\"}.mdi-television-box::before{content:\"\\F0839\"}.mdi-television-classic::before{content:\"\\F07F4\"}.mdi-television-classic-off::before{content:\"\\F083A\"}.mdi-television-clean::before{content:\"\\F1110\"}.mdi-television-guide::before{content:\"\\F0503\"}.mdi-television-off::before{content:\"\\F083B\"}.mdi-television-pause::before{content:\"\\F0F89\"}.mdi-television-play::before{content:\"\\F0ECF\"}.mdi-television-stop::before{content:\"\\F0F8A\"}.mdi-temperature-celsius::before{content:\"\\F0504\"}.mdi-temperature-fahrenheit::before{content:\"\\F0505\"}.mdi-temperature-kelvin::before{content:\"\\F0506\"}.mdi-tennis::before{content:\"\\F0DA0\"}.mdi-tennis-ball::before{content:\"\\F0507\"}.mdi-tent::before{content:\"\\F0508\"}.mdi-terraform::before{content:\"\\F1062\"}.mdi-terrain::before{content:\"\\F0509\"}.mdi-test-tube::before{content:\"\\F0668\"}.mdi-test-tube-empty::before{content:\"\\F0911\"}.mdi-test-tube-off::before{content:\"\\F0912\"}.mdi-text::before{content:\"\\F09A8\"}.mdi-text-account::before{content:\"\\F1570\"}.mdi-text-box::before{content:\"\\F021A\"}.mdi-text-box-check::before{content:\"\\F0EA6\"}.mdi-text-box-check-outline::before{content:\"\\F0EA7\"}.mdi-text-box-minus::before{content:\"\\F0EA8\"}.mdi-text-box-minus-outline::before{content:\"\\F0EA9\"}.mdi-text-box-multiple::before{content:\"\\F0AB7\"}.mdi-text-box-multiple-outline::before{content:\"\\F0AB8\"}.mdi-text-box-outline::before{content:\"\\F09ED\"}.mdi-text-box-plus::before{content:\"\\F0EAA\"}.mdi-text-box-plus-outline::before{content:\"\\F0EAB\"}.mdi-text-box-remove::before{content:\"\\F0EAC\"}.mdi-text-box-remove-outline::before{content:\"\\F0EAD\"}.mdi-text-box-search::before{content:\"\\F0EAE\"}.mdi-text-box-search-outline::before{content:\"\\F0EAF\"}.mdi-text-recognition::before{content:\"\\F113D\"}.mdi-text-search::before{content:\"\\F13B8\"}.mdi-text-shadow::before{content:\"\\F0669\"}.mdi-text-short::before{content:\"\\F09A9\"}.mdi-text-subject::before{content:\"\\F09AA\"}.mdi-text-to-speech::before{content:\"\\F050A\"}.mdi-text-to-speech-off::before{content:\"\\F050B\"}.mdi-texture::before{content:\"\\F050C\"}.mdi-texture-box::before{content:\"\\F0FE6\"}.mdi-theater::before{content:\"\\F050D\"}.mdi-theme-light-dark::before{content:\"\\F050E\"}.mdi-thermometer::before{content:\"\\F050F\"}.mdi-thermometer-alert::before{content:\"\\F0E01\"}.mdi-thermometer-chevron-down::before{content:\"\\F0E02\"}.mdi-thermometer-chevron-up::before{content:\"\\F0E03\"}.mdi-thermometer-high::before{content:\"\\F10C2\"}.mdi-thermometer-lines::before{content:\"\\F0510\"}.mdi-thermometer-low::before{content:\"\\F10C3\"}.mdi-thermometer-minus::before{content:\"\\F0E04\"}.mdi-thermometer-off::before{content:\"\\F1531\"}.mdi-thermometer-plus::before{content:\"\\F0E05\"}.mdi-thermostat::before{content:\"\\F0393\"}.mdi-thermostat-box::before{content:\"\\F0891\"}.mdi-thought-bubble::before{content:\"\\F07F6\"}.mdi-thought-bubble-outline::before{content:\"\\F07F7\"}.mdi-thumb-down::before{content:\"\\F0511\"}.mdi-thumb-down-outline::before{content:\"\\F0512\"}.mdi-thumb-up::before{content:\"\\F0513\"}.mdi-thumb-up-outline::before{content:\"\\F0514\"}.mdi-thumbs-up-down::before{content:\"\\F0515\"}.mdi-ticket::before{content:\"\\F0516\"}.mdi-ticket-account::before{content:\"\\F0517\"}.mdi-ticket-confirmation::before{content:\"\\F0518\"}.mdi-ticket-confirmation-outline::before{content:\"\\F13AA\"}.mdi-ticket-outline::before{content:\"\\F0913\"}.mdi-ticket-percent::before{content:\"\\F0724\"}.mdi-ticket-percent-outline::before{content:\"\\F142B\"}.mdi-tie::before{content:\"\\F0519\"}.mdi-tilde::before{content:\"\\F0725\"}.mdi-timelapse::before{content:\"\\F051A\"}.mdi-timeline::before{content:\"\\F0BD1\"}.mdi-timeline-alert::before{content:\"\\F0F95\"}.mdi-timeline-alert-outline::before{content:\"\\F0F98\"}.mdi-timeline-check::before{content:\"\\F1532\"}.mdi-timeline-check-outline::before{content:\"\\F1533\"}.mdi-timeline-clock::before{content:\"\\F11FB\"}.mdi-timeline-clock-outline::before{content:\"\\F11FC\"}.mdi-timeline-help::before{content:\"\\F0F99\"}.mdi-timeline-help-outline::before{content:\"\\F0F9A\"}.mdi-timeline-minus::before{content:\"\\F1534\"}.mdi-timeline-minus-outline::before{content:\"\\F1535\"}.mdi-timeline-outline::before{content:\"\\F0BD2\"}.mdi-timeline-plus::before{content:\"\\F0F96\"}.mdi-timeline-plus-outline::before{content:\"\\F0F97\"}.mdi-timeline-remove::before{content:\"\\F1536\"}.mdi-timeline-remove-outline::before{content:\"\\F1537\"}.mdi-timeline-text::before{content:\"\\F0BD3\"}.mdi-timeline-text-outline::before{content:\"\\F0BD4\"}.mdi-timer::before{content:\"\\F13AB\"}.mdi-timer-10::before{content:\"\\F051C\"}.mdi-timer-3::before{content:\"\\F051D\"}.mdi-timer-off::before{content:\"\\F13AC\"}.mdi-timer-off-outline::before{content:\"\\F051E\"}.mdi-timer-outline::before{content:\"\\F051B\"}.mdi-timer-sand::before{content:\"\\F051F\"}.mdi-timer-sand-empty::before{content:\"\\F06AD\"}.mdi-timer-sand-full::before{content:\"\\F078C\"}.mdi-timetable::before{content:\"\\F0520\"}.mdi-toaster::before{content:\"\\F1063\"}.mdi-toaster-off::before{content:\"\\F11B7\"}.mdi-toaster-oven::before{content:\"\\F0CD3\"}.mdi-toggle-switch::before{content:\"\\F0521\"}.mdi-toggle-switch-off::before{content:\"\\F0522\"}.mdi-toggle-switch-off-outline::before{content:\"\\F0A19\"}.mdi-toggle-switch-outline::before{content:\"\\F0A1A\"}.mdi-toilet::before{content:\"\\F09AB\"}.mdi-toolbox::before{content:\"\\F09AC\"}.mdi-toolbox-outline::before{content:\"\\F09AD\"}.mdi-tools::before{content:\"\\F1064\"}.mdi-tooltip::before{content:\"\\F0523\"}.mdi-tooltip-account::before{content:\"\\F000C\"}.mdi-tooltip-check::before{content:\"\\F155C\"}.mdi-tooltip-check-outline::before{content:\"\\F155D\"}.mdi-tooltip-edit::before{content:\"\\F0524\"}.mdi-tooltip-edit-outline::before{content:\"\\F12C5\"}.mdi-tooltip-image::before{content:\"\\F0525\"}.mdi-tooltip-image-outline::before{content:\"\\F0BD5\"}.mdi-tooltip-minus::before{content:\"\\F155E\"}.mdi-tooltip-minus-outline::before{content:\"\\F155F\"}.mdi-tooltip-outline::before{content:\"\\F0526\"}.mdi-tooltip-plus::before{content:\"\\F0BD6\"}.mdi-tooltip-plus-outline::before{content:\"\\F0527\"}.mdi-tooltip-remove::before{content:\"\\F1560\"}.mdi-tooltip-remove-outline::before{content:\"\\F1561\"}.mdi-tooltip-text::before{content:\"\\F0528\"}.mdi-tooltip-text-outline::before{content:\"\\F0BD7\"}.mdi-tooth::before{content:\"\\F08C3\"}.mdi-tooth-outline::before{content:\"\\F0529\"}.mdi-toothbrush::before{content:\"\\F1129\"}.mdi-toothbrush-electric::before{content:\"\\F112C\"}.mdi-toothbrush-paste::before{content:\"\\F112A\"}.mdi-torch::before{content:\"\\F1606\"}.mdi-tortoise::before{content:\"\\F0D3B\"}.mdi-toslink::before{content:\"\\F12B8\"}.mdi-tournament::before{content:\"\\F09AE\"}.mdi-tow-truck::before{content:\"\\F083C\"}.mdi-tower-beach::before{content:\"\\F0681\"}.mdi-tower-fire::before{content:\"\\F0682\"}.mdi-toy-brick::before{content:\"\\F1288\"}.mdi-toy-brick-marker::before{content:\"\\F1289\"}.mdi-toy-brick-marker-outline::before{content:\"\\F128A\"}.mdi-toy-brick-minus::before{content:\"\\F128B\"}.mdi-toy-brick-minus-outline::before{content:\"\\F128C\"}.mdi-toy-brick-outline::before{content:\"\\F128D\"}.mdi-toy-brick-plus::before{content:\"\\F128E\"}.mdi-toy-brick-plus-outline::before{content:\"\\F128F\"}.mdi-toy-brick-remove::before{content:\"\\F1290\"}.mdi-toy-brick-remove-outline::before{content:\"\\F1291\"}.mdi-toy-brick-search::before{content:\"\\F1292\"}.mdi-toy-brick-search-outline::before{content:\"\\F1293\"}.mdi-track-light::before{content:\"\\F0914\"}.mdi-trackpad::before{content:\"\\F07F8\"}.mdi-trackpad-lock::before{content:\"\\F0933\"}.mdi-tractor::before{content:\"\\F0892\"}.mdi-tractor-variant::before{content:\"\\F14C4\"}.mdi-trademark::before{content:\"\\F0A78\"}.mdi-traffic-cone::before{content:\"\\F137C\"}.mdi-traffic-light::before{content:\"\\F052B\"}.mdi-train::before{content:\"\\F052C\"}.mdi-train-car::before{content:\"\\F0BD8\"}.mdi-train-variant::before{content:\"\\F08C4\"}.mdi-tram::before{content:\"\\F052D\"}.mdi-tram-side::before{content:\"\\F0FE7\"}.mdi-transcribe::before{content:\"\\F052E\"}.mdi-transcribe-close::before{content:\"\\F052F\"}.mdi-transfer::before{content:\"\\F1065\"}.mdi-transfer-down::before{content:\"\\F0DA1\"}.mdi-transfer-left::before{content:\"\\F0DA2\"}.mdi-transfer-right::before{content:\"\\F0530\"}.mdi-transfer-up::before{content:\"\\F0DA3\"}.mdi-transit-connection::before{content:\"\\F0D3C\"}.mdi-transit-connection-horizontal::before{content:\"\\F1546\"}.mdi-transit-connection-variant::before{content:\"\\F0D3D\"}.mdi-transit-detour::before{content:\"\\F0F8B\"}.mdi-transit-skip::before{content:\"\\F1515\"}.mdi-transit-transfer::before{content:\"\\F06AE\"}.mdi-transition::before{content:\"\\F0915\"}.mdi-transition-masked::before{content:\"\\F0916\"}.mdi-translate::before{content:\"\\F05CA\"}.mdi-translate-off::before{content:\"\\F0E06\"}.mdi-transmission-tower::before{content:\"\\F0D3E\"}.mdi-trash-can::before{content:\"\\F0A79\"}.mdi-trash-can-outline::before{content:\"\\F0A7A\"}.mdi-tray::before{content:\"\\F1294\"}.mdi-tray-alert::before{content:\"\\F1295\"}.mdi-tray-full::before{content:\"\\F1296\"}.mdi-tray-minus::before{content:\"\\F1297\"}.mdi-tray-plus::before{content:\"\\F1298\"}.mdi-tray-remove::before{content:\"\\F1299\"}.mdi-treasure-chest::before{content:\"\\F0726\"}.mdi-tree::before{content:\"\\F0531\"}.mdi-tree-outline::before{content:\"\\F0E69\"}.mdi-trello::before{content:\"\\F0532\"}.mdi-trending-down::before{content:\"\\F0533\"}.mdi-trending-neutral::before{content:\"\\F0534\"}.mdi-trending-up::before{content:\"\\F0535\"}.mdi-triangle::before{content:\"\\F0536\"}.mdi-triangle-outline::before{content:\"\\F0537\"}.mdi-triangle-wave::before{content:\"\\F147C\"}.mdi-triforce::before{content:\"\\F0BD9\"}.mdi-trophy::before{content:\"\\F0538\"}.mdi-trophy-award::before{content:\"\\F0539\"}.mdi-trophy-broken::before{content:\"\\F0DA4\"}.mdi-trophy-outline::before{content:\"\\F053A\"}.mdi-trophy-variant::before{content:\"\\F053B\"}.mdi-trophy-variant-outline::before{content:\"\\F053C\"}.mdi-truck::before{content:\"\\F053D\"}.mdi-truck-check::before{content:\"\\F0CD4\"}.mdi-truck-check-outline::before{content:\"\\F129A\"}.mdi-truck-delivery::before{content:\"\\F053E\"}.mdi-truck-delivery-outline::before{content:\"\\F129B\"}.mdi-truck-fast::before{content:\"\\F0788\"}.mdi-truck-fast-outline::before{content:\"\\F129C\"}.mdi-truck-outline::before{content:\"\\F129D\"}.mdi-truck-trailer::before{content:\"\\F0727\"}.mdi-trumpet::before{content:\"\\F1096\"}.mdi-tshirt-crew::before{content:\"\\F0A7B\"}.mdi-tshirt-crew-outline::before{content:\"\\F053F\"}.mdi-tshirt-v::before{content:\"\\F0A7C\"}.mdi-tshirt-v-outline::before{content:\"\\F0540\"}.mdi-tumble-dryer::before{content:\"\\F0917\"}.mdi-tumble-dryer-alert::before{content:\"\\F11BA\"}.mdi-tumble-dryer-off::before{content:\"\\F11BB\"}.mdi-tune::before{content:\"\\F062E\"}.mdi-tune-variant::before{content:\"\\F1542\"}.mdi-tune-vertical::before{content:\"\\F066A\"}.mdi-tune-vertical-variant::before{content:\"\\F1543\"}.mdi-turnstile::before{content:\"\\F0CD5\"}.mdi-turnstile-outline::before{content:\"\\F0CD6\"}.mdi-turtle::before{content:\"\\F0CD7\"}.mdi-twitch::before{content:\"\\F0543\"}.mdi-twitter::before{content:\"\\F0544\"}.mdi-twitter-retweet::before{content:\"\\F0547\"}.mdi-two-factor-authentication::before{content:\"\\F09AF\"}.mdi-typewriter::before{content:\"\\F0F2D\"}.mdi-ubisoft::before{content:\"\\F0BDA\"}.mdi-ubuntu::before{content:\"\\F0548\"}.mdi-ufo::before{content:\"\\F10C4\"}.mdi-ufo-outline::before{content:\"\\F10C5\"}.mdi-ultra-high-definition::before{content:\"\\F07F9\"}.mdi-umbraco::before{content:\"\\F0549\"}.mdi-umbrella::before{content:\"\\F054A\"}.mdi-umbrella-closed::before{content:\"\\F09B0\"}.mdi-umbrella-closed-outline::before{content:\"\\F13E2\"}.mdi-umbrella-closed-variant::before{content:\"\\F13E1\"}.mdi-umbrella-outline::before{content:\"\\F054B\"}.mdi-undo::before{content:\"\\F054C\"}.mdi-undo-variant::before{content:\"\\F054D\"}.mdi-unfold-less-horizontal::before{content:\"\\F054E\"}.mdi-unfold-less-vertical::before{content:\"\\F0760\"}.mdi-unfold-more-horizontal::before{content:\"\\F054F\"}.mdi-unfold-more-vertical::before{content:\"\\F0761\"}.mdi-ungroup::before{content:\"\\F0550\"}.mdi-unicode::before{content:\"\\F0ED0\"}.mdi-unicorn::before{content:\"\\F15C2\"}.mdi-unicorn-variant::before{content:\"\\F15C3\"}.mdi-unicycle::before{content:\"\\F15E5\"}.mdi-unity::before{content:\"\\F06AF\"}.mdi-unreal::before{content:\"\\F09B1\"}.mdi-untappd::before{content:\"\\F0551\"}.mdi-update::before{content:\"\\F06B0\"}.mdi-upload::before{content:\"\\F0552\"}.mdi-upload-lock::before{content:\"\\F1373\"}.mdi-upload-lock-outline::before{content:\"\\F1374\"}.mdi-upload-multiple::before{content:\"\\F083D\"}.mdi-upload-network::before{content:\"\\F06F6\"}.mdi-upload-network-outline::before{content:\"\\F0CD8\"}.mdi-upload-off::before{content:\"\\F10C6\"}.mdi-upload-off-outline::before{content:\"\\F10C7\"}.mdi-upload-outline::before{content:\"\\F0E07\"}.mdi-usb::before{content:\"\\F0553\"}.mdi-usb-flash-drive::before{content:\"\\F129E\"}.mdi-usb-flash-drive-outline::before{content:\"\\F129F\"}.mdi-usb-port::before{content:\"\\F11F0\"}.mdi-valve::before{content:\"\\F1066\"}.mdi-valve-closed::before{content:\"\\F1067\"}.mdi-valve-open::before{content:\"\\F1068\"}.mdi-van-passenger::before{content:\"\\F07FA\"}.mdi-van-utility::before{content:\"\\F07FB\"}.mdi-vanish::before{content:\"\\F07FC\"}.mdi-vanish-quarter::before{content:\"\\F1554\"}.mdi-vanity-light::before{content:\"\\F11E1\"}.mdi-variable::before{content:\"\\F0AE7\"}.mdi-variable-box::before{content:\"\\F1111\"}.mdi-vector-arrange-above::before{content:\"\\F0554\"}.mdi-vector-arrange-below::before{content:\"\\F0555\"}.mdi-vector-bezier::before{content:\"\\F0AE8\"}.mdi-vector-circle::before{content:\"\\F0556\"}.mdi-vector-circle-variant::before{content:\"\\F0557\"}.mdi-vector-combine::before{content:\"\\F0558\"}.mdi-vector-curve::before{content:\"\\F0559\"}.mdi-vector-difference::before{content:\"\\F055A\"}.mdi-vector-difference-ab::before{content:\"\\F055B\"}.mdi-vector-difference-ba::before{content:\"\\F055C\"}.mdi-vector-ellipse::before{content:\"\\F0893\"}.mdi-vector-intersection::before{content:\"\\F055D\"}.mdi-vector-line::before{content:\"\\F055E\"}.mdi-vector-link::before{content:\"\\F0FE8\"}.mdi-vector-point::before{content:\"\\F055F\"}.mdi-vector-polygon::before{content:\"\\F0560\"}.mdi-vector-polyline::before{content:\"\\F0561\"}.mdi-vector-polyline-edit::before{content:\"\\F1225\"}.mdi-vector-polyline-minus::before{content:\"\\F1226\"}.mdi-vector-polyline-plus::before{content:\"\\F1227\"}.mdi-vector-polyline-remove::before{content:\"\\F1228\"}.mdi-vector-radius::before{content:\"\\F074A\"}.mdi-vector-rectangle::before{content:\"\\F05C6\"}.mdi-vector-selection::before{content:\"\\F0562\"}.mdi-vector-square::before{content:\"\\F0001\"}.mdi-vector-triangle::before{content:\"\\F0563\"}.mdi-vector-union::before{content:\"\\F0564\"}.mdi-vhs::before{content:\"\\F0A1B\"}.mdi-vibrate::before{content:\"\\F0566\"}.mdi-vibrate-off::before{content:\"\\F0CD9\"}.mdi-video::before{content:\"\\F0567\"}.mdi-video-3d::before{content:\"\\F07FD\"}.mdi-video-3d-off::before{content:\"\\F13D9\"}.mdi-video-3d-variant::before{content:\"\\F0ED1\"}.mdi-video-4k-box::before{content:\"\\F083E\"}.mdi-video-account::before{content:\"\\F0919\"}.mdi-video-box::before{content:\"\\F00FD\"}.mdi-video-box-off::before{content:\"\\F00FE\"}.mdi-video-check::before{content:\"\\F1069\"}.mdi-video-check-outline::before{content:\"\\F106A\"}.mdi-video-high-definition::before{content:\"\\F152E\"}.mdi-video-image::before{content:\"\\F091A\"}.mdi-video-input-antenna::before{content:\"\\F083F\"}.mdi-video-input-component::before{content:\"\\F0840\"}.mdi-video-input-hdmi::before{content:\"\\F0841\"}.mdi-video-input-scart::before{content:\"\\F0F8C\"}.mdi-video-input-svideo::before{content:\"\\F0842\"}.mdi-video-minus::before{content:\"\\F09B2\"}.mdi-video-minus-outline::before{content:\"\\F02BA\"}.mdi-video-off::before{content:\"\\F0568\"}.mdi-video-off-outline::before{content:\"\\F0BDB\"}.mdi-video-outline::before{content:\"\\F0BDC\"}.mdi-video-plus::before{content:\"\\F09B3\"}.mdi-video-plus-outline::before{content:\"\\F01D3\"}.mdi-video-stabilization::before{content:\"\\F091B\"}.mdi-video-switch::before{content:\"\\F0569\"}.mdi-video-switch-outline::before{content:\"\\F0790\"}.mdi-video-vintage::before{content:\"\\F0A1C\"}.mdi-video-wireless::before{content:\"\\F0ED2\"}.mdi-video-wireless-outline::before{content:\"\\F0ED3\"}.mdi-view-agenda::before{content:\"\\F056A\"}.mdi-view-agenda-outline::before{content:\"\\F11D8\"}.mdi-view-array::before{content:\"\\F056B\"}.mdi-view-array-outline::before{content:\"\\F1485\"}.mdi-view-carousel::before{content:\"\\F056C\"}.mdi-view-carousel-outline::before{content:\"\\F1486\"}.mdi-view-column::before{content:\"\\F056D\"}.mdi-view-column-outline::before{content:\"\\F1487\"}.mdi-view-comfy::before{content:\"\\F0E6A\"}.mdi-view-comfy-outline::before{content:\"\\F1488\"}.mdi-view-compact::before{content:\"\\F0E6B\"}.mdi-view-compact-outline::before{content:\"\\F0E6C\"}.mdi-view-dashboard::before{content:\"\\F056E\"}.mdi-view-dashboard-outline::before{content:\"\\F0A1D\"}.mdi-view-dashboard-variant::before{content:\"\\F0843\"}.mdi-view-dashboard-variant-outline::before{content:\"\\F1489\"}.mdi-view-day::before{content:\"\\F056F\"}.mdi-view-day-outline::before{content:\"\\F148A\"}.mdi-view-grid::before{content:\"\\F0570\"}.mdi-view-grid-outline::before{content:\"\\F11D9\"}.mdi-view-grid-plus::before{content:\"\\F0F8D\"}.mdi-view-grid-plus-outline::before{content:\"\\F11DA\"}.mdi-view-headline::before{content:\"\\F0571\"}.mdi-view-list::before{content:\"\\F0572\"}.mdi-view-list-outline::before{content:\"\\F148B\"}.mdi-view-module::before{content:\"\\F0573\"}.mdi-view-module-outline::before{content:\"\\F148C\"}.mdi-view-parallel::before{content:\"\\F0728\"}.mdi-view-parallel-outline::before{content:\"\\F148D\"}.mdi-view-quilt::before{content:\"\\F0574\"}.mdi-view-quilt-outline::before{content:\"\\F148E\"}.mdi-view-sequential::before{content:\"\\F0729\"}.mdi-view-sequential-outline::before{content:\"\\F148F\"}.mdi-view-split-horizontal::before{content:\"\\F0BCB\"}.mdi-view-split-vertical::before{content:\"\\F0BCC\"}.mdi-view-stream::before{content:\"\\F0575\"}.mdi-view-stream-outline::before{content:\"\\F1490\"}.mdi-view-week::before{content:\"\\F0576\"}.mdi-view-week-outline::before{content:\"\\F1491\"}.mdi-vimeo::before{content:\"\\F0577\"}.mdi-violin::before{content:\"\\F060F\"}.mdi-virtual-reality::before{content:\"\\F0894\"}.mdi-virus::before{content:\"\\F13B6\"}.mdi-virus-outline::before{content:\"\\F13B7\"}.mdi-vk::before{content:\"\\F0579\"}.mdi-vlc::before{content:\"\\F057C\"}.mdi-voice-off::before{content:\"\\F0ED4\"}.mdi-voicemail::before{content:\"\\F057D\"}.mdi-volleyball::before{content:\"\\F09B4\"}.mdi-volume-high::before{content:\"\\F057E\"}.mdi-volume-low::before{content:\"\\F057F\"}.mdi-volume-medium::before{content:\"\\F0580\"}.mdi-volume-minus::before{content:\"\\F075E\"}.mdi-volume-mute::before{content:\"\\F075F\"}.mdi-volume-off::before{content:\"\\F0581\"}.mdi-volume-plus::before{content:\"\\F075D\"}.mdi-volume-source::before{content:\"\\F1120\"}.mdi-volume-variant-off::before{content:\"\\F0E08\"}.mdi-volume-vibrate::before{content:\"\\F1121\"}.mdi-vote::before{content:\"\\F0A1F\"}.mdi-vote-outline::before{content:\"\\F0A20\"}.mdi-vpn::before{content:\"\\F0582\"}.mdi-vuejs::before{content:\"\\F0844\"}.mdi-vuetify::before{content:\"\\F0E6D\"}.mdi-walk::before{content:\"\\F0583\"}.mdi-wall::before{content:\"\\F07FE\"}.mdi-wall-sconce::before{content:\"\\F091C\"}.mdi-wall-sconce-flat::before{content:\"\\F091D\"}.mdi-wall-sconce-flat-variant::before{content:\"\\F041C\"}.mdi-wall-sconce-round::before{content:\"\\F0748\"}.mdi-wall-sconce-round-variant::before{content:\"\\F091E\"}.mdi-wallet::before{content:\"\\F0584\"}.mdi-wallet-giftcard::before{content:\"\\F0585\"}.mdi-wallet-membership::before{content:\"\\F0586\"}.mdi-wallet-outline::before{content:\"\\F0BDD\"}.mdi-wallet-plus::before{content:\"\\F0F8E\"}.mdi-wallet-plus-outline::before{content:\"\\F0F8F\"}.mdi-wallet-travel::before{content:\"\\F0587\"}.mdi-wallpaper::before{content:\"\\F0E09\"}.mdi-wan::before{content:\"\\F0588\"}.mdi-wardrobe::before{content:\"\\F0F90\"}.mdi-wardrobe-outline::before{content:\"\\F0F91\"}.mdi-warehouse::before{content:\"\\F0F81\"}.mdi-washing-machine::before{content:\"\\F072A\"}.mdi-washing-machine-alert::before{content:\"\\F11BC\"}.mdi-washing-machine-off::before{content:\"\\F11BD\"}.mdi-watch::before{content:\"\\F0589\"}.mdi-watch-export::before{content:\"\\F058A\"}.mdi-watch-export-variant::before{content:\"\\F0895\"}.mdi-watch-import::before{content:\"\\F058B\"}.mdi-watch-import-variant::before{content:\"\\F0896\"}.mdi-watch-variant::before{content:\"\\F0897\"}.mdi-watch-vibrate::before{content:\"\\F06B1\"}.mdi-watch-vibrate-off::before{content:\"\\F0CDA\"}.mdi-water::before{content:\"\\F058C\"}.mdi-water-alert::before{content:\"\\F1502\"}.mdi-water-alert-outline::before{content:\"\\F1503\"}.mdi-water-boiler::before{content:\"\\F0F92\"}.mdi-water-boiler-alert::before{content:\"\\F11B3\"}.mdi-water-boiler-off::before{content:\"\\F11B4\"}.mdi-water-check::before{content:\"\\F1504\"}.mdi-water-check-outline::before{content:\"\\F1505\"}.mdi-water-minus::before{content:\"\\F1506\"}.mdi-water-minus-outline::before{content:\"\\F1507\"}.mdi-water-off::before{content:\"\\F058D\"}.mdi-water-off-outline::before{content:\"\\F1508\"}.mdi-water-outline::before{content:\"\\F0E0A\"}.mdi-water-percent::before{content:\"\\F058E\"}.mdi-water-percent-alert::before{content:\"\\F1509\"}.mdi-water-plus::before{content:\"\\F150A\"}.mdi-water-plus-outline::before{content:\"\\F150B\"}.mdi-water-polo::before{content:\"\\F12A0\"}.mdi-water-pump::before{content:\"\\F058F\"}.mdi-water-pump-off::before{content:\"\\F0F93\"}.mdi-water-remove::before{content:\"\\F150C\"}.mdi-water-remove-outline::before{content:\"\\F150D\"}.mdi-water-well::before{content:\"\\F106B\"}.mdi-water-well-outline::before{content:\"\\F106C\"}.mdi-watering-can::before{content:\"\\F1481\"}.mdi-watering-can-outline::before{content:\"\\F1482\"}.mdi-watermark::before{content:\"\\F0612\"}.mdi-wave::before{content:\"\\F0F2E\"}.mdi-waveform::before{content:\"\\F147D\"}.mdi-waves::before{content:\"\\F078D\"}.mdi-waze::before{content:\"\\F0BDE\"}.mdi-weather-cloudy::before{content:\"\\F0590\"}.mdi-weather-cloudy-alert::before{content:\"\\F0F2F\"}.mdi-weather-cloudy-arrow-right::before{content:\"\\F0E6E\"}.mdi-weather-fog::before{content:\"\\F0591\"}.mdi-weather-hail::before{content:\"\\F0592\"}.mdi-weather-hazy::before{content:\"\\F0F30\"}.mdi-weather-hurricane::before{content:\"\\F0898\"}.mdi-weather-lightning::before{content:\"\\F0593\"}.mdi-weather-lightning-rainy::before{content:\"\\F067E\"}.mdi-weather-night::before{content:\"\\F0594\"}.mdi-weather-night-partly-cloudy::before{content:\"\\F0F31\"}.mdi-weather-partly-cloudy::before{content:\"\\F0595\"}.mdi-weather-partly-lightning::before{content:\"\\F0F32\"}.mdi-weather-partly-rainy::before{content:\"\\F0F33\"}.mdi-weather-partly-snowy::before{content:\"\\F0F34\"}.mdi-weather-partly-snowy-rainy::before{content:\"\\F0F35\"}.mdi-weather-pouring::before{content:\"\\F0596\"}.mdi-weather-rainy::before{content:\"\\F0597\"}.mdi-weather-snowy::before{content:\"\\F0598\"}.mdi-weather-snowy-heavy::before{content:\"\\F0F36\"}.mdi-weather-snowy-rainy::before{content:\"\\F067F\"}.mdi-weather-sunny::before{content:\"\\F0599\"}.mdi-weather-sunny-alert::before{content:\"\\F0F37\"}.mdi-weather-sunny-off::before{content:\"\\F14E4\"}.mdi-weather-sunset::before{content:\"\\F059A\"}.mdi-weather-sunset-down::before{content:\"\\F059B\"}.mdi-weather-sunset-up::before{content:\"\\F059C\"}.mdi-weather-tornado::before{content:\"\\F0F38\"}.mdi-weather-windy::before{content:\"\\F059D\"}.mdi-weather-windy-variant::before{content:\"\\F059E\"}.mdi-web::before{content:\"\\F059F\"}.mdi-web-box::before{content:\"\\F0F94\"}.mdi-web-clock::before{content:\"\\F124A\"}.mdi-webcam::before{content:\"\\F05A0\"}.mdi-webhook::before{content:\"\\F062F\"}.mdi-webpack::before{content:\"\\F072B\"}.mdi-webrtc::before{content:\"\\F1248\"}.mdi-wechat::before{content:\"\\F0611\"}.mdi-weight::before{content:\"\\F05A1\"}.mdi-weight-gram::before{content:\"\\F0D3F\"}.mdi-weight-kilogram::before{content:\"\\F05A2\"}.mdi-weight-lifter::before{content:\"\\F115D\"}.mdi-weight-pound::before{content:\"\\F09B5\"}.mdi-whatsapp::before{content:\"\\F05A3\"}.mdi-wheel-barrow::before{content:\"\\F14F2\"}.mdi-wheelchair-accessibility::before{content:\"\\F05A4\"}.mdi-whistle::before{content:\"\\F09B6\"}.mdi-whistle-outline::before{content:\"\\F12BC\"}.mdi-white-balance-auto::before{content:\"\\F05A5\"}.mdi-white-balance-incandescent::before{content:\"\\F05A6\"}.mdi-white-balance-iridescent::before{content:\"\\F05A7\"}.mdi-white-balance-sunny::before{content:\"\\F05A8\"}.mdi-widgets::before{content:\"\\F072C\"}.mdi-widgets-outline::before{content:\"\\F1355\"}.mdi-wifi::before{content:\"\\F05A9\"}.mdi-wifi-alert::before{content:\"\\F16B5\"}.mdi-wifi-arrow-down::before{content:\"\\F16B6\"}.mdi-wifi-arrow-left::before{content:\"\\F16B7\"}.mdi-wifi-arrow-left-right::before{content:\"\\F16B8\"}.mdi-wifi-arrow-right::before{content:\"\\F16B9\"}.mdi-wifi-arrow-up::before{content:\"\\F16BA\"}.mdi-wifi-arrow-up-down::before{content:\"\\F16BB\"}.mdi-wifi-cancel::before{content:\"\\F16BC\"}.mdi-wifi-check::before{content:\"\\F16BD\"}.mdi-wifi-cog::before{content:\"\\F16BE\"}.mdi-wifi-lock::before{content:\"\\F16BF\"}.mdi-wifi-lock-open::before{content:\"\\F16C0\"}.mdi-wifi-marker::before{content:\"\\F16C1\"}.mdi-wifi-minus::before{content:\"\\F16C2\"}.mdi-wifi-off::before{content:\"\\F05AA\"}.mdi-wifi-plus::before{content:\"\\F16C3\"}.mdi-wifi-refresh::before{content:\"\\F16C4\"}.mdi-wifi-remove::before{content:\"\\F16C5\"}.mdi-wifi-settings::before{content:\"\\F16C6\"}.mdi-wifi-star::before{content:\"\\F0E0B\"}.mdi-wifi-strength-1::before{content:\"\\F091F\"}.mdi-wifi-strength-1-alert::before{content:\"\\F0920\"}.mdi-wifi-strength-1-lock::before{content:\"\\F0921\"}.mdi-wifi-strength-1-lock-open::before{content:\"\\F16CB\"}.mdi-wifi-strength-2::before{content:\"\\F0922\"}.mdi-wifi-strength-2-alert::before{content:\"\\F0923\"}.mdi-wifi-strength-2-lock::before{content:\"\\F0924\"}.mdi-wifi-strength-2-lock-open::before{content:\"\\F16CC\"}.mdi-wifi-strength-3::before{content:\"\\F0925\"}.mdi-wifi-strength-3-alert::before{content:\"\\F0926\"}.mdi-wifi-strength-3-lock::before{content:\"\\F0927\"}.mdi-wifi-strength-3-lock-open::before{content:\"\\F16CD\"}.mdi-wifi-strength-4::before{content:\"\\F0928\"}.mdi-wifi-strength-4-alert::before{content:\"\\F0929\"}.mdi-wifi-strength-4-lock::before{content:\"\\F092A\"}.mdi-wifi-strength-4-lock-open::before{content:\"\\F16CE\"}.mdi-wifi-strength-alert-outline::before{content:\"\\F092B\"}.mdi-wifi-strength-lock-open-outline::before{content:\"\\F16CF\"}.mdi-wifi-strength-lock-outline::before{content:\"\\F092C\"}.mdi-wifi-strength-off::before{content:\"\\F092D\"}.mdi-wifi-strength-off-outline::before{content:\"\\F092E\"}.mdi-wifi-strength-outline::before{content:\"\\F092F\"}.mdi-wifi-sync::before{content:\"\\F16C7\"}.mdi-wikipedia::before{content:\"\\F05AC\"}.mdi-wind-turbine::before{content:\"\\F0DA5\"}.mdi-window-close::before{content:\"\\F05AD\"}.mdi-window-closed::before{content:\"\\F05AE\"}.mdi-window-closed-variant::before{content:\"\\F11DB\"}.mdi-window-maximize::before{content:\"\\F05AF\"}.mdi-window-minimize::before{content:\"\\F05B0\"}.mdi-window-open::before{content:\"\\F05B1\"}.mdi-window-open-variant::before{content:\"\\F11DC\"}.mdi-window-restore::before{content:\"\\F05B2\"}.mdi-window-shutter::before{content:\"\\F111C\"}.mdi-window-shutter-alert::before{content:\"\\F111D\"}.mdi-window-shutter-open::before{content:\"\\F111E\"}.mdi-windsock::before{content:\"\\F15FA\"}.mdi-wiper::before{content:\"\\F0AE9\"}.mdi-wiper-wash::before{content:\"\\F0DA6\"}.mdi-wizard-hat::before{content:\"\\F1477\"}.mdi-wordpress::before{content:\"\\F05B4\"}.mdi-wrap::before{content:\"\\F05B6\"}.mdi-wrap-disabled::before{content:\"\\F0BDF\"}.mdi-wrench::before{content:\"\\F05B7\"}.mdi-wrench-outline::before{content:\"\\F0BE0\"}.mdi-xamarin::before{content:\"\\F0845\"}.mdi-xamarin-outline::before{content:\"\\F0846\"}.mdi-xing::before{content:\"\\F05BE\"}.mdi-xml::before{content:\"\\F05C0\"}.mdi-xmpp::before{content:\"\\F07FF\"}.mdi-y-combinator::before{content:\"\\F0624\"}.mdi-yahoo::before{content:\"\\F0B4F\"}.mdi-yeast::before{content:\"\\F05C1\"}.mdi-yin-yang::before{content:\"\\F0680\"}.mdi-yoga::before{content:\"\\F117C\"}.mdi-youtube::before{content:\"\\F05C3\"}.mdi-youtube-gaming::before{content:\"\\F0848\"}.mdi-youtube-studio::before{content:\"\\F0847\"}.mdi-youtube-subscription::before{content:\"\\F0D40\"}.mdi-youtube-tv::before{content:\"\\F0448\"}.mdi-yurt::before{content:\"\\F1516\"}.mdi-z-wave::before{content:\"\\F0AEA\"}.mdi-zend::before{content:\"\\F0AEB\"}.mdi-zigbee::before{content:\"\\F0D41\"}.mdi-zip-box::before{content:\"\\F05C4\"}.mdi-zip-box-outline::before{content:\"\\F0FFA\"}.mdi-zip-disk::before{content:\"\\F0A23\"}.mdi-zodiac-aquarius::before{content:\"\\F0A7D\"}.mdi-zodiac-aries::before{content:\"\\F0A7E\"}.mdi-zodiac-cancer::before{content:\"\\F0A7F\"}.mdi-zodiac-capricorn::before{content:\"\\F0A80\"}.mdi-zodiac-gemini::before{content:\"\\F0A81\"}.mdi-zodiac-leo::before{content:\"\\F0A82\"}.mdi-zodiac-libra::before{content:\"\\F0A83\"}.mdi-zodiac-pisces::before{content:\"\\F0A84\"}.mdi-zodiac-sagittarius::before{content:\"\\F0A85\"}.mdi-zodiac-scorpio::before{content:\"\\F0A86\"}.mdi-zodiac-taurus::before{content:\"\\F0A87\"}.mdi-zodiac-virgo::before{content:\"\\F0A88\"}.mdi-blank::before{content:\"\\F68C\";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:rgba(0,0,0,0.54)}.mdi-dark.mdi-inactive:before{color:rgba(0,0,0,0.26)}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:rgba(255,255,255,0.3)}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:\"FlipH\"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:\"FlipV\"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}\n\n/*# sourceMappingURL=materialdesignicons.min.css.map */\n"], - "mappings": "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C,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,WAAW,QAAS,QAAQ,QAAQ,CAAC,CAAC,eAAe,QAAS,QAAQ,QAAQ,CAAC,CAAC,uBAAuB,QAAS,QAAQ,QAAQ,CAAC,CAAC,kBAAkB,QAAS,QAAQ,QAAQ,CAAC,CAAC,0BAA0B,QAAS,QAAQ,QAAQ,CAAC,CAAC,qBAAqB,QAAS,QAAQ,QAAQ,CAAC,CAAC,qBAAqB,Q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", - "names": [] -} diff --git a/themes/buck/src/archive.css b/themes/buck/src/archive.css deleted file mode 100644 index 5f161ff..0000000 --- a/themes/buck/src/archive.css +++ /dev/null @@ -1,40 +0,0 @@ -@import "./styles/material.css"; - -#_layout { - display: grid; - margin-inline: 60px; - padding-block: 24px; -} - -@media (max-width: 720px) { - #_layout { - margin-inline: 8px; - } -} - -#_layout> :first-child { - max-width: 560px; -} - -.archive-list { - display: flex; - flex-flow: column nowrap; - gap: 12px; - padding: 0; -} - -.archive-list-item { - display: flex; - flex-flow: row wrap; - justify-content: space-between; - align-items: center; - border-bottom: 1px solid var(--palette-grey-500); -} - -a.archive-list-link { - font: var(--typ-title); - line-height: 2; - padding-right: 48px; - padding-left: 16px; - text-align: start; -} diff --git a/themes/buck/src/assets/mastodon-purple.svg b/themes/buck/src/assets/mastodon-purple.svg deleted file mode 100644 index 0f8baeb..0000000 --- a/themes/buck/src/assets/mastodon-purple.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/themes/buck/src/fonts/Roboto/LICENSE.txt b/themes/buck/src/fonts/Roboto/LICENSE.txt deleted file mode 100644 index 75b5248..0000000 --- a/themes/buck/src/fonts/Roboto/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/themes/buck/src/fonts/Roboto/Roboto-Black.ttf b/themes/buck/src/fonts/Roboto/Roboto-Black.ttf deleted file mode 100644 index 0112e7d..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Black.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-BlackItalic.ttf b/themes/buck/src/fonts/Roboto/Roboto-BlackItalic.ttf deleted file mode 100644 index b2c6aca..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-Bold.ttf b/themes/buck/src/fonts/Roboto/Roboto-Bold.ttf deleted file mode 100644 index 43da14d..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-BoldItalic.ttf b/themes/buck/src/fonts/Roboto/Roboto-BoldItalic.ttf deleted file mode 100644 index bcfdab4..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-Italic.ttf b/themes/buck/src/fonts/Roboto/Roboto-Italic.ttf deleted file mode 100644 index 1b5eaa3..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Italic.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-Light.ttf b/themes/buck/src/fonts/Roboto/Roboto-Light.ttf deleted file mode 100644 index e7307e7..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Light.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-LightItalic.ttf b/themes/buck/src/fonts/Roboto/Roboto-LightItalic.ttf deleted file mode 100644 index 2d277af..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-LightItalic.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-Medium.ttf b/themes/buck/src/fonts/Roboto/Roboto-Medium.ttf deleted file mode 100644 index ac0f908..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-MediumItalic.ttf b/themes/buck/src/fonts/Roboto/Roboto-MediumItalic.ttf deleted file mode 100644 index fc36a47..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-Regular.ttf b/themes/buck/src/fonts/Roboto/Roboto-Regular.ttf deleted file mode 100644 index ddf4bfa..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-Thin.ttf b/themes/buck/src/fonts/Roboto/Roboto-Thin.ttf deleted file mode 100644 index 2e0dee6..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/Roboto/Roboto-ThinItalic.ttf b/themes/buck/src/fonts/Roboto/Roboto-ThinItalic.ttf deleted file mode 100644 index 084f9c0..0000000 Binary files a/themes/buck/src/fonts/Roboto/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/materialdesignicons-webfont.eot b/themes/buck/src/fonts/materialdesignicons-webfont.eot deleted file mode 100644 index 079d5a0..0000000 Binary files a/themes/buck/src/fonts/materialdesignicons-webfont.eot and /dev/null differ diff --git a/themes/buck/src/fonts/materialdesignicons-webfont.ttf b/themes/buck/src/fonts/materialdesignicons-webfont.ttf deleted file mode 100644 index 761dfaf..0000000 Binary files a/themes/buck/src/fonts/materialdesignicons-webfont.ttf and /dev/null differ diff --git a/themes/buck/src/fonts/materialdesignicons-webfont.woff b/themes/buck/src/fonts/materialdesignicons-webfont.woff deleted file mode 100644 index c98a100..0000000 Binary files a/themes/buck/src/fonts/materialdesignicons-webfont.woff and /dev/null differ diff --git a/themes/buck/src/fonts/materialdesignicons-webfont.woff2 b/themes/buck/src/fonts/materialdesignicons-webfont.woff2 deleted file mode 100644 index 9ef1ab3..0000000 Binary files a/themes/buck/src/fonts/materialdesignicons-webfont.woff2 and /dev/null differ diff --git a/themes/buck/src/index.css b/themes/buck/src/index.css deleted file mode 100644 index 9e0a708..0000000 --- a/themes/buck/src/index.css +++ /dev/null @@ -1,127 +0,0 @@ -@import "./styles/material.css"; -@import "./styles/posts.css"; -@import "./styles/pager.css"; -@import "./styles/content.css"; - -#_layout { - display: grid; - grid-template-columns: auto 1fr; - margin-inline: 60px; - padding-block: 24px; - gap: 8px; - row-gap: 0; -} - -@media (max-width: 720px) { - #_layout { - margin-inline: 8px; - grid-template-columns: 1fr; - } -} - -#_layout> :first-child { - max-width: 560px; -} - -.avatar { - width: 60px; - height: 60px; -} - -.card { - background-color: var(--palette-white); - box-shadow: var(--box-shadow-2); - padding: 8px 0 16px; - border: 1px solid var(--palette-grey-300); - - & > * { - margin-inline: 8px; - } - - &:hover { - box-shadow: var(--box-shadow-4); - } -} - -.author-head { - display: grid; - grid-template-columns: 60px 1fr; - grid-template-rows: 1fr auto; - align-items: center; - column-gap: 12px; - - &>:first-child { - grid-row: 1 /3; - grid-column: 1/1; - } - - &>* { - grid-column: 2/2; - } - - &>:nth-child(2) { - grid-row: 1 / 1; - } - - &>:nth-child(3) { - grid-row: 2/ 2; - } -} - -.link-list { - display: flex; - flex-direction: column; - list-style: none; - padding: 0; - gap: 16px; - - > li { - display: flex; - &::before { - display: inherit; - width: 1.25rem; - height: 1.25rem; - padding: 4px; - content: ""; - object-fit: contain; - overflow: hidden; - } - - &.mastodon::before { - content: url("./assets/mastodon-purple.svg"); - } - } -} - -.chip-group { - display: flex; - flex-flow: row wrap; - gap: 16px; - column-gap: 8px; -} - -:where(ul, ol).chip-group { - > * { - display: inline-block; - } -} - -.chip { - border-radius: 1.5rem; - padding: 0 12px; - line-height: 2rem; - font-size: 0.8125rem; - text-align: center; -} - -.hottag-chip { - background-color: var(--p-secondary); - color: var(--p-secondary-fg); - - &:is(:hover, :focus) { - background-color: var(--p-secondary); - color: var(--p-secondary-fg); - filter: saturate(0.65); - } -} - diff --git a/themes/buck/src/index.ts b/themes/buck/src/index.ts deleted file mode 100644 index 123ddc3..0000000 --- a/themes/buck/src/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { createRoot } from "solid-js"; -import { renderLocalTimeOn } from "./uxaddon/time.js"; - -createRoot(() => { - renderLocalTimeOn(document.querySelectorAll(".post-item-title > time")); -}); diff --git a/themes/buck/src/page.css b/themes/buck/src/page.css deleted file mode 100644 index b67fc61..0000000 --- a/themes/buck/src/page.css +++ /dev/null @@ -1,40 +0,0 @@ -@import "./styles/material.css"; -@import "./styles/content.css"; - -:root { - background-color: var(--palette-grey-200); -} - -#_layout { - display: grid; - grid-template-columns: 1fr auto 1fr; - margin: auto; - - &>* { - overflow: hidden; - word-wrap: normal; - } -} - -.page-metadata { - display: grid; - justify-content: flex-end; - margin-inline: 16px; - gap: 4px; - color: var(--palette-grey-700); - - > * { - display: flex; - gap: 2px; - justify-content: flex-end; - } -} - -main { - max-width: 70rem; - margin-top: 32px; - margin-bottom: calc(env(safe-area-insets-bottom, 16px) + 16px); - background-color: var(--palette-grey-50); - padding-block: 16px; - border-radius: 2px; -} diff --git a/themes/buck/src/page.ts b/themes/buck/src/page.ts deleted file mode 100644 index d1a1a80..0000000 --- a/themes/buck/src/page.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { createRoot } from "solid-js"; -import { renderLocalTimeOn } from "./uxaddon/time.js"; -import { wrapElementsInClass } from "./uxaddon/dom.js"; -import { renderAdvancedTablesOn } from "./uxaddon/table.js"; - -createRoot(() => { - renderLocalTimeOn(document.querySelectorAll("[data-time-format]")) - wrapElementsInClass(document.querySelectorAll("main > table"), ["table-responsive"]) - renderAdvancedTablesOn(document.querySelectorAll("main > .table-responsive > table")) -}) diff --git a/themes/buck/src/styles/codehighlight/xcode.css b/themes/buck/src/styles/codehighlight/xcode.css deleted file mode 100644 index 23e888b..0000000 --- a/themes/buck/src/styles/codehighlight/xcode.css +++ /dev/null @@ -1,106 +0,0 @@ -/* - -XCode style (c) Angel Garcia - -Ported to Hexo highlight.js system by Rubicon - -*/ - -.highlight { - display: block; - overflow-x: auto; - padding: 0.5em; - background: #fff; - color: black; -} - -/* Gray DOCTYPE selectors like WebKit */ -.code .xml .meta { - color: #c0c0c0; -} - -.code .comment, -.code .quote { - color: #007400; -} - -.code .tag, -.code .attribute, -.code .keyword, -.code .selector-tag, -.code .literal, -.code .name { - color: #aa0d91; -} - -.code .variable, -.code .template-variable { - color: #3F6E74; -} - -.code .code, -.code .string, -.code .meta-string { - color: #c41a16; -} - -.code .regexp, -.code .link { - color: #0E0EFF; -} - -.code .title, -.code .symbol, -.code .bullet, -.code .number { - color: #1c00cf; -} - -.code .section, -.code .meta { - color: #643820; -} - - -.code .class .title, -.code .type, -.code .built_in, -.code .builtin-name, -.code .params { - color: #5c2699; -} - -.code .attr { - color: #836C28; -} - -.code .subst { - color: #000; -} - -.code .formula { - background-color: #eee; - font-style: italic; -} - -.code .addition { - background-color: #baeeba; -} - -.code .deletion { - background-color: #ffc8bd; -} - -.code .selector-id, -.code .selector-class { - color: #9b703f; -} - -.code .doctag, -.code .strong { - font-weight: bold; -} - -.code .emphasis { - font-style: italic; -} diff --git a/themes/buck/src/styles/content.css b/themes/buck/src/styles/content.css deleted file mode 100644 index a960a93..0000000 --- a/themes/buck/src/styles/content.css +++ /dev/null @@ -1,227 +0,0 @@ -@import "./codehighlight/xcode.css"; - -.content { - line-height: 1.5; - - >p { - padding: 16px; - - >img { - width: 100%; - object-fit: contain; - object-position: 50% 50%; - min-height: 44px; - max-height: 40vh; - } - - >a>img { - max-width: 100%; - object-fit: contain; - } - } - - > :where(h1, h2, h3, h4, h5, h6) { - margin-inline: 16px; - hyphens: auto; - text-wrap: wrap; - text-wrap: pretty; - } - - >#more { - display: block; - width: 100%; - border-top: 1px solid var(--palette-grey-200); - } - - > :where(ul, ol) { - background-color: var(--palette-white); - line-height: 1.5; - - >li { - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - transition: border-color 220ms ease-in-out; - - &:hover { - border-top-color: var(--palette-grey-200); - border-bottom-color: var(--palette-grey-400); - - &+li { - border-bottom-color: var(--palette-grey-200); - } - } - } - } - - hr { - border: none; - border-top: 1px solid var(--palette-grey-300); - margin-inline: 16px; - } - - > :where(h2, h3, h4, h5, h6) { - margin-top: 16px; - margin-bottom: 8px; - } -} - -.table-responsive { - max-width: 100%; - overflow-y: auto; -} - -:where(.content > table, .content > .table-responsive > table) { - background-color: var(--table-background-color); - width: 100%; - white-space: nowrap; - border: 1px solid var(--palette-grey-300); - border-collapse: collapse; - - > :where(thead, tbody) > tr { - & > :first-child { - padding-inline-start: 16px; - } - - & > :last-child { - padding-inline-end: 16px; - } - } - - >thead { - color: var(--table-header-color); - - >tr { - border-bottom: 1px solid var(--palette-grey-300); - >th { - padding-block: 15px; - text-align: start; - - &:hover, &.table-column-hover { - color: var(--table-content-color); - } - - &[align="center"] { - text-align: center; - } - - &[align="right"] { - text-align: end; - } - } - } - } - - >tbody { - color: var(--table-content-color); - - >tr { - >td { - padding-block: 15px; - text-align: start; - - &[align="center"] { - text-align: center; - } - - &[align="right"] { - text-align: end; - } - } - - &:first-child { - border-top: 1px solid transparent; - } - - &+& { - border-top: 1px solid var(--palette-grey-300); - } - - &:hover { - background-color: var(--palette-grey-200); - } - } - } -} - -.content figure { - border-radius: 2px; - - &.highlight { - padding: 0 8px; - outline: 1px solid var(--palette-grey-300); - transition: box-shadow 220ms ease-in-out; - line-height: 1.25; - min-height: 44px; - - &:hover { - box-shadow: var(--box-shadow-4); - } - - .gutter { - border-inline-end: 1px solid var(--palette-grey-200); - margin-inline-end: 8px; - - >pre { - >.line { - display: block; - width: 100%; - text-align: end; - } - - >br { - display: none; - } - } - } - - .code { - .line { - border-bottom: 1px solid transparent; - - &:hover { - border-bottom: 1px solid var(--palette-grey-500); - } - } - } - } -} - -.content kbd { - padding: 6px; - margin-inline: 2px; - background-color: var(--palette-black); - color: var(--palette-white); - border-radius: 4px; -} - -.content dl { - >dt { - font: var(--typ-body2); - margin-left: 16px; - } - - >dd { - margin-left: 32px; - } -} - -.content blockquote { - background-color: white; - padding-left: 12px; - margin-block: 16px; - border: 1px solid var(--palette-grey-200); - border-left: 4px solid var(--p-secondary); - - &:hover, &:focus { - outline: 1px solid var(--palette-grey-400); - } -} - -.content .video-container { - width: 100%; - border: 1px solid var(--palette-grey-200); - - > iframe { - width: 100%; - } -} diff --git a/themes/buck/src/styles/material.css b/themes/buck/src/styles/material.css deleted file mode 100644 index 9ba3e69..0000000 --- a/themes/buck/src/styles/material.css +++ /dev/null @@ -1,256 +0,0 @@ -@import "./palette.css"; -@import "@fontsource/roboto/400.css"; -@import "@fontsource/roboto/100.css"; - -* { - margin: 0; - box-sizing: border-box; - font-family: var(--font-family-sans); -} - -:root { - --font-family-sans: Roboto, "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; - --p-primary: var(--palette-blue-500); - --p-primary-fg: var(--palette-blue-500-fg); - --p-secondary: var(--palette-pink-500); - --p-secondary-fg: var(--palette-pink-500-fg); - - --typ-r-display4: lighter 7rem / 7rem var(--font-family-sans); - --typ-r-display3: normal 3.5rem / 3.5rem var(--font-family-sans); - --typ-r-display2: normal 2.8125rem / 2.8125rem var(--font-family-sans); - --typ-r-display1: normal 2.125rem / 2.125rem var(--font-family-sans); - --typ-r-headline: bold 1.5rem / 1.5rem var(--font-family-sans); - --typ-r-title: bold 1.25rem / 1.25rem var(--font-family-sans); - --typ-r-subheading: normal 1rem / 1rem var(--font-family-sans); - --typ-r-body2: bold 0.875rem / 0.875rem var(--font-family-sans); - --typ-r-body1: normal 0.875rem / 0.875rem var(--font-family-sans); - --typ-r-caption: normal 0.75rem / 0.75rem var(--font-family-sans); - --typ-r-button: bold 0.875rem / 0.875rem var(--font-family-sans); - - --typ-d-display4: var(--typ-r-display4); - --typ-d-display3: var(--typ-r-display3); - --typ-d-display2: var(--typ-r-display2); - --typ-d-display1: var(--typ-r-display1); - --typ-d-headline: var(--typ-r-headline); - --typ-d-title: bold 1.3125rem / 1.3125rem var(--font-family-sans); - --typ-d-subheading: normal 1.0625rem / 1.0625rem var(--font-family-sans); - --typ-d-body2: bold 0.9375rem / 0.9375rem var(--font-family-sans); - --typ-d-body1: normal 0.9375rem / 0.9375rem var(--font-family-sans); - --typ-d-caption: normal 0.8125rem / 0.8125rem var(--font-family-sans); - --typ-d-button: bold 0.9375rem / 0.9375rem var(--font-family-sans); - - & { - --typ-display4: var(--typ-r-display4); - --typ-display3: var(--typ-r-display3); - --typ-display2: var(--typ-r-display2); - --typ-display1: var(--typ-r-display1); - --typ-headline: var(--typ-r-display1); - --typ-title: var(--typ-r-title); - --typ-subheading: var(--typ-r-subheading); - --typ-body2: var(--typ-r-body2); - --typ-body1: var(--typ-r-body1); - --typ-caption: var(--typ-r-caption); - --typ-button: var(--typ-r-button); - } - - &[lang~="zh"], - &[lang~="ja"], - &[lang~="kr"] { - --typ-title: var(--typ-d-headline); - --typ-subheading: var(--typ-d-subheading); - --typ-body2: var(--typ-d-body2); - --typ-body1: var(--typ-d-body1); - --typ-caption: var(--typ-d-caption); - --typ-button: var(--typ-d-button); - } - - --elevation-0: 0px; - --elevation-1: 1px; - --elevation-2: 2px; - --elevation-3: 3px; - --elevation-4: 4px; - --elevation-5: 6px; - --elevation-6: 8px; - --elevation-7: 9px; - --elevation-8: 12px; - --elevation-9: 16px; - --elevation-10: 24px; - - --box-shadow-2: 0 var(--elevation-2) var(--elevation-2) rgba(0, 0, 0, 0.15); - --box-shadow-4: 0 var(--elevation-4) var(--elevation-4) rgba(0, 0, 0, 0.15); - --box-shadow-6: 0 var(--elevation-6) var(--elevation-6) rgba(0, 0, 0, 0.15); - --box-shadow-9: 0 var(--elevation-9) var(--elevation-9) rgba(0, 0, 0, 0.15); - - --link-bg: var(--palette-blue-50); - --link-color: var(--palette-blue-50-fg); - --link-bg-hover: var(--palette-blue-100); - --link-color-hover: var(--palette-blue-100-fg); -} - -table { - --table-header-color: rgba(0, 0, 0, 0.54); - --table-content-color: rgba(0, 0, 0, 0.87); - --table-background-color: white; -} - -:root { - font: var(--typ-body1); -} - -h1 { - font: var(--typ-display4); -} - -h2 { - font: var(--typ-display3); -} - -h3 { - font: var(--typ-display2); -} - -h4 { - font: var(--typ-display1); -} - -h5 { - font: var(--typ-headline); -} - -h6 { - font: var(--typ-title); -} - -.container { - width: 80%; - margin: auto; -} - -@media (max-width: 600px) { - .container { - width: 100%; - } -} - -.nav-wrapper { - background-color: var(--p-primary); - box-shadow: var(--box-shadow-4); -} - -nav.site { - --nav-site-height: 4rem; - - display: flex; - flex-wrap: wrap-reverse; - justify-content: space-between; - white-space: nowrap; - - min-height: var(--nav-site-height); - color: var(--palette-white); - width: 80%; - margin: auto; - padding-inline: 8px; - - >* { - display: flex; - align-items: center; - } -} - -@media (max-width: 1280px) { - nav.site { - width: 90%; - } -} - -@media (max-width: 600px) { - nav.site { - width: 100%; - } -} - -nav.site a { - font: var(--typ-button); - display: inline-block; - line-height: var(--nav-site-height); - padding: 0 16px; - transition: background-color .2s ease-in-out; - background-color: transparent; - color: var(--palette-white); - - &:hover { - color: inherit; - background-color: rgba(0, 0, 0, 0.1); - } -} - -:where(a):not([href^="#"]) { - display: inline-block; - color: var(--link-color); - text-decoration: none; - background-color: var(--link-bg); - border-radius: 4px; - padding: 4px 8px; - transition: background-color .2s ease-in-out, color .2s ease-in-out; - min-width: 44px; - - &:hover { - background-color: var(--link-bg-hover); - color: var(--link-color-hover); - } - - &[target="_blank"]::after { - content: url('data:image/svg+xml,open-in-new'); - display: inline-block; - width: 1rem; - height: 1rem; - } - -} - -nav.site .textinput-lg { - background-color: rgba(255, 255, 255, 0.25); - border: none; - outline: none; - border-radius: 2px; - font-size: 1rem; - line-height: 2rem; - vertical-align: middle; - flex-grow: 1; - transition: background-color .2s ease-in-out, width .2s ease-in-out, box-shadow .2s ease-in-out; - padding-inline: 1rem; - - &::placeholder { - color: white; - } - - &:focus { - background-color: white; - box-shadow: var(--box-shadow-9); - - &::placeholder { - color: transparent; - text-align: center; - } - } -} - -@media (max-width: 600px) { - nav.site .textinput-lg { - width: 100%; - } -} - -nav.site > *:first-child > *:first-child { - padding-left: 16px; -} - -nav.site :where(h1, h2, h3, h4, h5, h6) { - text-overflow: ellipsis; - overflow: hidden; - line-height: var(--nav-site-height); -} - -.circle { - border-radius: 50% 50%; -} diff --git a/themes/buck/src/styles/materialdesignicons.min.css b/themes/buck/src/styles/materialdesignicons.min.css deleted file mode 100644 index 35f775c..0000000 --- a/themes/buck/src/styles/materialdesignicons.min.css +++ /dev/null @@ -1,3 +0,0 @@ -@font-face{font-family:"Material Design Icons";src:url("../fonts/materialdesignicons-webfont.eot?v=5.8.55");src:url("../fonts/materialdesignicons-webfont.eot?#iefix&v=5.8.55") format("embedded-opentype"),url("../fonts/materialdesignicons-webfont.woff2?v=5.8.55") format("woff2"),url("../fonts/materialdesignicons-webfont.woff?v=5.8.55") format("woff"),url("../fonts/materialdesignicons-webfont.ttf?v=5.8.55") format("truetype");font-weight:normal;font-style:normal; font-display: swap; }.mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 "Material Design Icons";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing::before{content:"\F01C9"}.mdi-abjad-arabic::before{content:"\F1328"}.mdi-abjad-hebrew::before{content:"\F1329"}.mdi-abugida-devanagari::before{content:"\F132A"}.mdi-abugida-thai::before{content:"\F132B"}.mdi-access-point::before{content:"\F0003"}.mdi-access-point-check::before{content:"\F1538"}.mdi-access-point-minus::before{content:"\F1539"}.mdi-access-point-network::before{content:"\F0002"}.mdi-access-point-network-off::before{content:"\F0BE1"}.mdi-access-point-off::before{content:"\F1511"}.mdi-access-point-plus::before{content:"\F153A"}.mdi-access-point-remove::before{content:"\F153B"}.mdi-account::before{content:"\F0004"}.mdi-account-alert::before{content:"\F0005"}.mdi-account-alert-outline::before{content:"\F0B50"}.mdi-account-arrow-left::before{content:"\F0B51"}.mdi-account-arrow-left-outline::before{content:"\F0B52"}.mdi-account-arrow-right::before{content:"\F0B53"}.mdi-account-arrow-right-outline::before{content:"\F0B54"}.mdi-account-box::before{content:"\F0006"}.mdi-account-box-multiple::before{content:"\F0934"}.mdi-account-box-multiple-outline::before{content:"\F100A"}.mdi-account-box-outline::before{content:"\F0007"}.mdi-account-cancel::before{content:"\F12DF"}.mdi-account-cancel-outline::before{content:"\F12E0"}.mdi-account-cash::before{content:"\F1097"}.mdi-account-cash-outline::before{content:"\F1098"}.mdi-account-check::before{content:"\F0008"}.mdi-account-check-outline::before{content:"\F0BE2"}.mdi-account-child::before{content:"\F0A89"}.mdi-account-child-circle::before{content:"\F0A8A"}.mdi-account-child-outline::before{content:"\F10C8"}.mdi-account-circle::before{content:"\F0009"}.mdi-account-circle-outline::before{content:"\F0B55"}.mdi-account-clock::before{content:"\F0B56"}.mdi-account-clock-outline::before{content:"\F0B57"}.mdi-account-cog::before{content:"\F1370"}.mdi-account-cog-outline::before{content:"\F1371"}.mdi-account-convert::before{content:"\F000A"}.mdi-account-convert-outline::before{content:"\F1301"}.mdi-account-cowboy-hat::before{content:"\F0E9B"}.mdi-account-details::before{content:"\F0631"}.mdi-account-details-outline::before{content:"\F1372"}.mdi-account-edit::before{content:"\F06BC"}.mdi-account-edit-outline::before{content:"\F0FFB"}.mdi-account-group::before{content:"\F0849"}.mdi-account-group-outline::before{content:"\F0B58"}.mdi-account-hard-hat::before{content:"\F05B5"}.mdi-account-heart::before{content:"\F0899"}.mdi-account-heart-outline::before{content:"\F0BE3"}.mdi-account-key::before{content:"\F000B"}.mdi-account-key-outline::before{content:"\F0BE4"}.mdi-account-lock::before{content:"\F115E"}.mdi-account-lock-outline::before{content:"\F115F"}.mdi-account-minus::before{content:"\F000D"}.mdi-account-minus-outline::before{content:"\F0AEC"}.mdi-account-multiple::before{content:"\F000E"}.mdi-account-multiple-check::before{content:"\F08C5"}.mdi-account-multiple-check-outline::before{content:"\F11FE"}.mdi-account-multiple-minus::before{content:"\F05D3"}.mdi-account-multiple-minus-outline::before{content:"\F0BE5"}.mdi-account-multiple-outline::before{content:"\F000F"}.mdi-account-multiple-plus::before{content:"\F0010"}.mdi-account-multiple-plus-outline::before{content:"\F0800"}.mdi-account-multiple-remove::before{content:"\F120A"}.mdi-account-multiple-remove-outline::before{content:"\F120B"}.mdi-account-music::before{content:"\F0803"}.mdi-account-music-outline::before{content:"\F0CE9"}.mdi-account-network::before{content:"\F0011"}.mdi-account-network-outline::before{content:"\F0BE6"}.mdi-account-off::before{content:"\F0012"}.mdi-account-off-outline::before{content:"\F0BE7"}.mdi-account-outline::before{content:"\F0013"}.mdi-account-plus::before{content:"\F0014"}.mdi-account-plus-outline::before{content:"\F0801"}.mdi-account-question::before{content:"\F0B59"}.mdi-account-question-outline::before{content:"\F0B5A"}.mdi-account-reactivate::before{content:"\F152B"}.mdi-account-reactivate-outline::before{content:"\F152C"}.mdi-account-remove::before{content:"\F0015"}.mdi-account-remove-outline::before{content:"\F0AED"}.mdi-account-search::before{content:"\F0016"}.mdi-account-search-outline::before{content:"\F0935"}.mdi-account-settings::before{content:"\F0630"}.mdi-account-settings-outline::before{content:"\F10C9"}.mdi-account-star::before{content:"\F0017"}.mdi-account-star-outline::before{content:"\F0BE8"}.mdi-account-supervisor::before{content:"\F0A8B"}.mdi-account-supervisor-circle::before{content:"\F0A8C"}.mdi-account-supervisor-circle-outline::before{content:"\F14EC"}.mdi-account-supervisor-outline::before{content:"\F112D"}.mdi-account-switch::before{content:"\F0019"}.mdi-account-switch-outline::before{content:"\F04CB"}.mdi-account-tie::before{content:"\F0CE3"}.mdi-account-tie-outline::before{content:"\F10CA"}.mdi-account-tie-voice::before{content:"\F1308"}.mdi-account-tie-voice-off::before{content:"\F130A"}.mdi-account-tie-voice-off-outline::before{content:"\F130B"}.mdi-account-tie-voice-outline::before{content:"\F1309"}.mdi-account-voice::before{content:"\F05CB"}.mdi-adjust::before{content:"\F001A"}.mdi-adobe::before{content:"\F0936"}.mdi-adobe-acrobat::before{content:"\F0F9D"}.mdi-air-conditioner::before{content:"\F001B"}.mdi-air-filter::before{content:"\F0D43"}.mdi-air-horn::before{content:"\F0DAC"}.mdi-air-humidifier::before{content:"\F1099"}.mdi-air-humidifier-off::before{content:"\F1466"}.mdi-air-purifier::before{content:"\F0D44"}.mdi-airbag::before{content:"\F0BE9"}.mdi-airballoon::before{content:"\F001C"}.mdi-airballoon-outline::before{content:"\F100B"}.mdi-airplane::before{content:"\F001D"}.mdi-airplane-landing::before{content:"\F05D4"}.mdi-airplane-off::before{content:"\F001E"}.mdi-airplane-takeoff::before{content:"\F05D5"}.mdi-airport::before{content:"\F084B"}.mdi-alarm::before{content:"\F0020"}.mdi-alarm-bell::before{content:"\F078E"}.mdi-alarm-check::before{content:"\F0021"}.mdi-alarm-light::before{content:"\F078F"}.mdi-alarm-light-outline::before{content:"\F0BEA"}.mdi-alarm-multiple::before{content:"\F0022"}.mdi-alarm-note::before{content:"\F0E71"}.mdi-alarm-note-off::before{content:"\F0E72"}.mdi-alarm-off::before{content:"\F0023"}.mdi-alarm-panel::before{content:"\F15C4"}.mdi-alarm-panel-outline::before{content:"\F15C5"}.mdi-alarm-plus::before{content:"\F0024"}.mdi-alarm-snooze::before{content:"\F068E"}.mdi-album::before{content:"\F0025"}.mdi-alert::before{content:"\F0026"}.mdi-alert-box::before{content:"\F0027"}.mdi-alert-box-outline::before{content:"\F0CE4"}.mdi-alert-circle::before{content:"\F0028"}.mdi-alert-circle-check::before{content:"\F11ED"}.mdi-alert-circle-check-outline::before{content:"\F11EE"}.mdi-alert-circle-outline::before{content:"\F05D6"}.mdi-alert-decagram::before{content:"\F06BD"}.mdi-alert-decagram-outline::before{content:"\F0CE5"}.mdi-alert-minus::before{content:"\F14BB"}.mdi-alert-minus-outline::before{content:"\F14BE"}.mdi-alert-octagon::before{content:"\F0029"}.mdi-alert-octagon-outline::before{content:"\F0CE6"}.mdi-alert-octagram::before{content:"\F0767"}.mdi-alert-octagram-outline::before{content:"\F0CE7"}.mdi-alert-outline::before{content:"\F002A"}.mdi-alert-plus::before{content:"\F14BA"}.mdi-alert-plus-outline::before{content:"\F14BD"}.mdi-alert-remove::before{content:"\F14BC"}.mdi-alert-remove-outline::before{content:"\F14BF"}.mdi-alert-rhombus::before{content:"\F11CE"}.mdi-alert-rhombus-outline::before{content:"\F11CF"}.mdi-alien::before{content:"\F089A"}.mdi-alien-outline::before{content:"\F10CB"}.mdi-align-horizontal-center::before{content:"\F11C3"}.mdi-align-horizontal-left::before{content:"\F11C2"}.mdi-align-horizontal-right::before{content:"\F11C4"}.mdi-align-vertical-bottom::before{content:"\F11C5"}.mdi-align-vertical-center::before{content:"\F11C6"}.mdi-align-vertical-top::before{content:"\F11C7"}.mdi-all-inclusive::before{content:"\F06BE"}.mdi-allergy::before{content:"\F1258"}.mdi-alpha::before{content:"\F002B"}.mdi-alpha-a::before{content:"\F0AEE"}.mdi-alpha-a-box::before{content:"\F0B08"}.mdi-alpha-a-box-outline::before{content:"\F0BEB"}.mdi-alpha-a-circle::before{content:"\F0BEC"}.mdi-alpha-a-circle-outline::before{content:"\F0BED"}.mdi-alpha-b::before{content:"\F0AEF"}.mdi-alpha-b-box::before{content:"\F0B09"}.mdi-alpha-b-box-outline::before{content:"\F0BEE"}.mdi-alpha-b-circle::before{content:"\F0BEF"}.mdi-alpha-b-circle-outline::before{content:"\F0BF0"}.mdi-alpha-c::before{content:"\F0AF0"}.mdi-alpha-c-box::before{content:"\F0B0A"}.mdi-alpha-c-box-outline::before{content:"\F0BF1"}.mdi-alpha-c-circle::before{content:"\F0BF2"}.mdi-alpha-c-circle-outline::before{content:"\F0BF3"}.mdi-alpha-d::before{content:"\F0AF1"}.mdi-alpha-d-box::before{content:"\F0B0B"}.mdi-alpha-d-box-outline::before{content:"\F0BF4"}.mdi-alpha-d-circle::before{content:"\F0BF5"}.mdi-alpha-d-circle-outline::before{content:"\F0BF6"}.mdi-alpha-e::before{content:"\F0AF2"}.mdi-alpha-e-box::before{content:"\F0B0C"}.mdi-alpha-e-box-outline::before{content:"\F0BF7"}.mdi-alpha-e-circle::before{content:"\F0BF8"}.mdi-alpha-e-circle-outline::before{content:"\F0BF9"}.mdi-alpha-f::before{content:"\F0AF3"}.mdi-alpha-f-box::before{content:"\F0B0D"}.mdi-alpha-f-box-outline::before{content:"\F0BFA"}.mdi-alpha-f-circle::before{content:"\F0BFB"}.mdi-alpha-f-circle-outline::before{content:"\F0BFC"}.mdi-alpha-g::before{content:"\F0AF4"}.mdi-alpha-g-box::before{content:"\F0B0E"}.mdi-alpha-g-box-outline::before{content:"\F0BFD"}.mdi-alpha-g-circle::before{content:"\F0BFE"}.mdi-alpha-g-circle-outline::before{content:"\F0BFF"}.mdi-alpha-h::before{content:"\F0AF5"}.mdi-alpha-h-box::before{content:"\F0B0F"}.mdi-alpha-h-box-outline::before{content:"\F0C00"}.mdi-alpha-h-circle::before{content:"\F0C01"}.mdi-alpha-h-circle-outline::before{content:"\F0C02"}.mdi-alpha-i::before{content:"\F0AF6"}.mdi-alpha-i-box::before{content:"\F0B10"}.mdi-alpha-i-box-outline::before{content:"\F0C03"}.mdi-alpha-i-circle::before{content:"\F0C04"}.mdi-alpha-i-circle-outline::before{content:"\F0C05"}.mdi-alpha-j::before{content:"\F0AF7"}.mdi-alpha-j-box::before{content:"\F0B11"}.mdi-alpha-j-box-outline::before{content:"\F0C06"}.mdi-alpha-j-circle::before{content:"\F0C07"}.mdi-alpha-j-circle-outline::before{content:"\F0C08"}.mdi-alpha-k::before{content:"\F0AF8"}.mdi-alpha-k-box::before{content:"\F0B12"}.mdi-alpha-k-box-outline::before{content:"\F0C09"}.mdi-alpha-k-circle::before{content:"\F0C0A"}.mdi-alpha-k-circle-outline::before{content:"\F0C0B"}.mdi-alpha-l::before{content:"\F0AF9"}.mdi-alpha-l-box::before{content:"\F0B13"}.mdi-alpha-l-box-outline::before{content:"\F0C0C"}.mdi-alpha-l-circle::before{content:"\F0C0D"}.mdi-alpha-l-circle-outline::before{content:"\F0C0E"}.mdi-alpha-m::before{content:"\F0AFA"}.mdi-alpha-m-box::before{content:"\F0B14"}.mdi-alpha-m-box-outline::before{content:"\F0C0F"}.mdi-alpha-m-circle::before{content:"\F0C10"}.mdi-alpha-m-circle-outline::before{content:"\F0C11"}.mdi-alpha-n::before{content:"\F0AFB"}.mdi-alpha-n-box::before{content:"\F0B15"}.mdi-alpha-n-box-outline::before{content:"\F0C12"}.mdi-alpha-n-circle::before{content:"\F0C13"}.mdi-alpha-n-circle-outline::before{content:"\F0C14"}.mdi-alpha-o::before{content:"\F0AFC"}.mdi-alpha-o-box::before{content:"\F0B16"}.mdi-alpha-o-box-outline::before{content:"\F0C15"}.mdi-alpha-o-circle::before{content:"\F0C16"}.mdi-alpha-o-circle-outline::before{content:"\F0C17"}.mdi-alpha-p::before{content:"\F0AFD"}.mdi-alpha-p-box::before{content:"\F0B17"}.mdi-alpha-p-box-outline::before{content:"\F0C18"}.mdi-alpha-p-circle::before{content:"\F0C19"}.mdi-alpha-p-circle-outline::before{content:"\F0C1A"}.mdi-alpha-q::before{content:"\F0AFE"}.mdi-alpha-q-box::before{content:"\F0B18"}.mdi-alpha-q-box-outline::before{content:"\F0C1B"}.mdi-alpha-q-circle::before{content:"\F0C1C"}.mdi-alpha-q-circle-outline::before{content:"\F0C1D"}.mdi-alpha-r::before{content:"\F0AFF"}.mdi-alpha-r-box::before{content:"\F0B19"}.mdi-alpha-r-box-outline::before{content:"\F0C1E"}.mdi-alpha-r-circle::before{content:"\F0C1F"}.mdi-alpha-r-circle-outline::before{content:"\F0C20"}.mdi-alpha-s::before{content:"\F0B00"}.mdi-alpha-s-box::before{content:"\F0B1A"}.mdi-alpha-s-box-outline::before{content:"\F0C21"}.mdi-alpha-s-circle::before{content:"\F0C22"}.mdi-alpha-s-circle-outline::before{content:"\F0C23"}.mdi-alpha-t::before{content:"\F0B01"}.mdi-alpha-t-box::before{content:"\F0B1B"}.mdi-alpha-t-box-outline::before{content:"\F0C24"}.mdi-alpha-t-circle::before{content:"\F0C25"}.mdi-alpha-t-circle-outline::before{content:"\F0C26"}.mdi-alpha-u::before{content:"\F0B02"}.mdi-alpha-u-box::before{content:"\F0B1C"}.mdi-alpha-u-box-outline::before{content:"\F0C27"}.mdi-alpha-u-circle::before{content:"\F0C28"}.mdi-alpha-u-circle-outline::before{content:"\F0C29"}.mdi-alpha-v::before{content:"\F0B03"}.mdi-alpha-v-box::before{content:"\F0B1D"}.mdi-alpha-v-box-outline::before{content:"\F0C2A"}.mdi-alpha-v-circle::before{content:"\F0C2B"}.mdi-alpha-v-circle-outline::before{content:"\F0C2C"}.mdi-alpha-w::before{content:"\F0B04"}.mdi-alpha-w-box::before{content:"\F0B1E"}.mdi-alpha-w-box-outline::before{content:"\F0C2D"}.mdi-alpha-w-circle::before{content:"\F0C2E"}.mdi-alpha-w-circle-outline::before{content:"\F0C2F"}.mdi-alpha-x::before{content:"\F0B05"}.mdi-alpha-x-box::before{content:"\F0B1F"}.mdi-alpha-x-box-outline::before{content:"\F0C30"}.mdi-alpha-x-circle::before{content:"\F0C31"}.mdi-alpha-x-circle-outline::before{content:"\F0C32"}.mdi-alpha-y::before{content:"\F0B06"}.mdi-alpha-y-box::before{content:"\F0B20"}.mdi-alpha-y-box-outline::before{content:"\F0C33"}.mdi-alpha-y-circle::before{content:"\F0C34"}.mdi-alpha-y-circle-outline::before{content:"\F0C35"}.mdi-alpha-z::before{content:"\F0B07"}.mdi-alpha-z-box::before{content:"\F0B21"}.mdi-alpha-z-box-outline::before{content:"\F0C36"}.mdi-alpha-z-circle::before{content:"\F0C37"}.mdi-alpha-z-circle-outline::before{content:"\F0C38"}.mdi-alphabet-aurebesh::before{content:"\F132C"}.mdi-alphabet-cyrillic::before{content:"\F132D"}.mdi-alphabet-greek::before{content:"\F132E"}.mdi-alphabet-latin::before{content:"\F132F"}.mdi-alphabet-piqad::before{content:"\F1330"}.mdi-alphabet-tengwar::before{content:"\F1337"}.mdi-alphabetical::before{content:"\F002C"}.mdi-alphabetical-off::before{content:"\F100C"}.mdi-alphabetical-variant::before{content:"\F100D"}.mdi-alphabetical-variant-off::before{content:"\F100E"}.mdi-altimeter::before{content:"\F05D7"}.mdi-amazon::before{content:"\F002D"}.mdi-amazon-alexa::before{content:"\F08C6"}.mdi-ambulance::before{content:"\F002F"}.mdi-ammunition::before{content:"\F0CE8"}.mdi-ampersand::before{content:"\F0A8D"}.mdi-amplifier::before{content:"\F0030"}.mdi-amplifier-off::before{content:"\F11B5"}.mdi-anchor::before{content:"\F0031"}.mdi-android::before{content:"\F0032"}.mdi-android-auto::before{content:"\F0A8E"}.mdi-android-debug-bridge::before{content:"\F0033"}.mdi-android-messages::before{content:"\F0D45"}.mdi-android-studio::before{content:"\F0034"}.mdi-angle-acute::before{content:"\F0937"}.mdi-angle-obtuse::before{content:"\F0938"}.mdi-angle-right::before{content:"\F0939"}.mdi-angular::before{content:"\F06B2"}.mdi-angularjs::before{content:"\F06BF"}.mdi-animation::before{content:"\F05D8"}.mdi-animation-outline::before{content:"\F0A8F"}.mdi-animation-play::before{content:"\F093A"}.mdi-animation-play-outline::before{content:"\F0A90"}.mdi-ansible::before{content:"\F109A"}.mdi-antenna::before{content:"\F1119"}.mdi-anvil::before{content:"\F089B"}.mdi-apache-kafka::before{content:"\F100F"}.mdi-api::before{content:"\F109B"}.mdi-api-off::before{content:"\F1257"}.mdi-apple::before{content:"\F0035"}.mdi-apple-airplay::before{content:"\F001F"}.mdi-apple-finder::before{content:"\F0036"}.mdi-apple-icloud::before{content:"\F0038"}.mdi-apple-ios::before{content:"\F0037"}.mdi-apple-keyboard-caps::before{content:"\F0632"}.mdi-apple-keyboard-command::before{content:"\F0633"}.mdi-apple-keyboard-control::before{content:"\F0634"}.mdi-apple-keyboard-option::before{content:"\F0635"}.mdi-apple-keyboard-shift::before{content:"\F0636"}.mdi-apple-safari::before{content:"\F0039"}.mdi-application::before{content:"\F0614"}.mdi-application-cog::before{content:"\F1577"}.mdi-application-export::before{content:"\F0DAD"}.mdi-application-import::before{content:"\F0DAE"}.mdi-application-settings::before{content:"\F1555"}.mdi-approximately-equal::before{content:"\F0F9E"}.mdi-approximately-equal-box::before{content:"\F0F9F"}.mdi-apps::before{content:"\F003B"}.mdi-apps-box::before{content:"\F0D46"}.mdi-arch::before{content:"\F08C7"}.mdi-archive::before{content:"\F003C"}.mdi-archive-alert::before{content:"\F14FD"}.mdi-archive-alert-outline::before{content:"\F14FE"}.mdi-archive-arrow-down::before{content:"\F1259"}.mdi-archive-arrow-down-outline::before{content:"\F125A"}.mdi-archive-arrow-up::before{content:"\F125B"}.mdi-archive-arrow-up-outline::before{content:"\F125C"}.mdi-archive-outline::before{content:"\F120E"}.mdi-arm-flex::before{content:"\F0FD7"}.mdi-arm-flex-outline::before{content:"\F0FD6"}.mdi-arrange-bring-forward::before{content:"\F003D"}.mdi-arrange-bring-to-front::before{content:"\F003E"}.mdi-arrange-send-backward::before{content:"\F003F"}.mdi-arrange-send-to-back::before{content:"\F0040"}.mdi-arrow-all::before{content:"\F0041"}.mdi-arrow-bottom-left::before{content:"\F0042"}.mdi-arrow-bottom-left-bold-outline::before{content:"\F09B7"}.mdi-arrow-bottom-left-thick::before{content:"\F09B8"}.mdi-arrow-bottom-left-thin-circle-outline::before{content:"\F1596"}.mdi-arrow-bottom-right::before{content:"\F0043"}.mdi-arrow-bottom-right-bold-outline::before{content:"\F09B9"}.mdi-arrow-bottom-right-thick::before{content:"\F09BA"}.mdi-arrow-bottom-right-thin-circle-outline::before{content:"\F1595"}.mdi-arrow-collapse::before{content:"\F0615"}.mdi-arrow-collapse-all::before{content:"\F0044"}.mdi-arrow-collapse-down::before{content:"\F0792"}.mdi-arrow-collapse-horizontal::before{content:"\F084C"}.mdi-arrow-collapse-left::before{content:"\F0793"}.mdi-arrow-collapse-right::before{content:"\F0794"}.mdi-arrow-collapse-up::before{content:"\F0795"}.mdi-arrow-collapse-vertical::before{content:"\F084D"}.mdi-arrow-decision::before{content:"\F09BB"}.mdi-arrow-decision-auto::before{content:"\F09BC"}.mdi-arrow-decision-auto-outline::before{content:"\F09BD"}.mdi-arrow-decision-outline::before{content:"\F09BE"}.mdi-arrow-down::before{content:"\F0045"}.mdi-arrow-down-bold::before{content:"\F072E"}.mdi-arrow-down-bold-box::before{content:"\F072F"}.mdi-arrow-down-bold-box-outline::before{content:"\F0730"}.mdi-arrow-down-bold-circle::before{content:"\F0047"}.mdi-arrow-down-bold-circle-outline::before{content:"\F0048"}.mdi-arrow-down-bold-hexagon-outline::before{content:"\F0049"}.mdi-arrow-down-bold-outline::before{content:"\F09BF"}.mdi-arrow-down-box::before{content:"\F06C0"}.mdi-arrow-down-circle::before{content:"\F0CDB"}.mdi-arrow-down-circle-outline::before{content:"\F0CDC"}.mdi-arrow-down-drop-circle::before{content:"\F004A"}.mdi-arrow-down-drop-circle-outline::before{content:"\F004B"}.mdi-arrow-down-thick::before{content:"\F0046"}.mdi-arrow-down-thin-circle-outline::before{content:"\F1599"}.mdi-arrow-expand::before{content:"\F0616"}.mdi-arrow-expand-all::before{content:"\F004C"}.mdi-arrow-expand-down::before{content:"\F0796"}.mdi-arrow-expand-horizontal::before{content:"\F084E"}.mdi-arrow-expand-left::before{content:"\F0797"}.mdi-arrow-expand-right::before{content:"\F0798"}.mdi-arrow-expand-up::before{content:"\F0799"}.mdi-arrow-expand-vertical::before{content:"\F084F"}.mdi-arrow-horizontal-lock::before{content:"\F115B"}.mdi-arrow-left::before{content:"\F004D"}.mdi-arrow-left-bold::before{content:"\F0731"}.mdi-arrow-left-bold-box::before{content:"\F0732"}.mdi-arrow-left-bold-box-outline::before{content:"\F0733"}.mdi-arrow-left-bold-circle::before{content:"\F004F"}.mdi-arrow-left-bold-circle-outline::before{content:"\F0050"}.mdi-arrow-left-bold-hexagon-outline::before{content:"\F0051"}.mdi-arrow-left-bold-outline::before{content:"\F09C0"}.mdi-arrow-left-box::before{content:"\F06C1"}.mdi-arrow-left-circle::before{content:"\F0CDD"}.mdi-arrow-left-circle-outline::before{content:"\F0CDE"}.mdi-arrow-left-drop-circle::before{content:"\F0052"}.mdi-arrow-left-drop-circle-outline::before{content:"\F0053"}.mdi-arrow-left-right::before{content:"\F0E73"}.mdi-arrow-left-right-bold::before{content:"\F0E74"}.mdi-arrow-left-right-bold-outline::before{content:"\F09C1"}.mdi-arrow-left-thick::before{content:"\F004E"}.mdi-arrow-left-thin-circle-outline::before{content:"\F159A"}.mdi-arrow-right::before{content:"\F0054"}.mdi-arrow-right-bold::before{content:"\F0734"}.mdi-arrow-right-bold-box::before{content:"\F0735"}.mdi-arrow-right-bold-box-outline::before{content:"\F0736"}.mdi-arrow-right-bold-circle::before{content:"\F0056"}.mdi-arrow-right-bold-circle-outline::before{content:"\F0057"}.mdi-arrow-right-bold-hexagon-outline::before{content:"\F0058"}.mdi-arrow-right-bold-outline::before{content:"\F09C2"}.mdi-arrow-right-box::before{content:"\F06C2"}.mdi-arrow-right-circle::before{content:"\F0CDF"}.mdi-arrow-right-circle-outline::before{content:"\F0CE0"}.mdi-arrow-right-drop-circle::before{content:"\F0059"}.mdi-arrow-right-drop-circle-outline::before{content:"\F005A"}.mdi-arrow-right-thick::before{content:"\F0055"}.mdi-arrow-right-thin-circle-outline::before{content:"\F1598"}.mdi-arrow-split-horizontal::before{content:"\F093B"}.mdi-arrow-split-vertical::before{content:"\F093C"}.mdi-arrow-top-left::before{content:"\F005B"}.mdi-arrow-top-left-bold-outline::before{content:"\F09C3"}.mdi-arrow-top-left-bottom-right::before{content:"\F0E75"}.mdi-arrow-top-left-bottom-right-bold::before{content:"\F0E76"}.mdi-arrow-top-left-thick::before{content:"\F09C4"}.mdi-arrow-top-left-thin-circle-outline::before{content:"\F1593"}.mdi-arrow-top-right::before{content:"\F005C"}.mdi-arrow-top-right-bold-outline::before{content:"\F09C5"}.mdi-arrow-top-right-bottom-left::before{content:"\F0E77"}.mdi-arrow-top-right-bottom-left-bold::before{content:"\F0E78"}.mdi-arrow-top-right-thick::before{content:"\F09C6"}.mdi-arrow-top-right-thin-circle-outline::before{content:"\F1594"}.mdi-arrow-up::before{content:"\F005D"}.mdi-arrow-up-bold::before{content:"\F0737"}.mdi-arrow-up-bold-box::before{content:"\F0738"}.mdi-arrow-up-bold-box-outline::before{content:"\F0739"}.mdi-arrow-up-bold-circle::before{content:"\F005F"}.mdi-arrow-up-bold-circle-outline::before{content:"\F0060"}.mdi-arrow-up-bold-hexagon-outline::before{content:"\F0061"}.mdi-arrow-up-bold-outline::before{content:"\F09C7"}.mdi-arrow-up-box::before{content:"\F06C3"}.mdi-arrow-up-circle::before{content:"\F0CE1"}.mdi-arrow-up-circle-outline::before{content:"\F0CE2"}.mdi-arrow-up-down::before{content:"\F0E79"}.mdi-arrow-up-down-bold::before{content:"\F0E7A"}.mdi-arrow-up-down-bold-outline::before{content:"\F09C8"}.mdi-arrow-up-drop-circle::before{content:"\F0062"}.mdi-arrow-up-drop-circle-outline::before{content:"\F0063"}.mdi-arrow-up-thick::before{content:"\F005E"}.mdi-arrow-up-thin-circle-outline::before{content:"\F1597"}.mdi-arrow-vertical-lock::before{content:"\F115C"}.mdi-artstation::before{content:"\F0B5B"}.mdi-aspect-ratio::before{content:"\F0A24"}.mdi-assistant::before{content:"\F0064"}.mdi-asterisk::before{content:"\F06C4"}.mdi-at::before{content:"\F0065"}.mdi-atlassian::before{content:"\F0804"}.mdi-atm::before{content:"\F0D47"}.mdi-atom::before{content:"\F0768"}.mdi-atom-variant::before{content:"\F0E7B"}.mdi-attachment::before{content:"\F0066"}.mdi-audio-video::before{content:"\F093D"}.mdi-audio-video-off::before{content:"\F11B6"}.mdi-augmented-reality::before{content:"\F0850"}.mdi-auto-download::before{content:"\F137E"}.mdi-auto-fix::before{content:"\F0068"}.mdi-auto-upload::before{content:"\F0069"}.mdi-autorenew::before{content:"\F006A"}.mdi-av-timer::before{content:"\F006B"}.mdi-aws::before{content:"\F0E0F"}.mdi-axe::before{content:"\F08C8"}.mdi-axis::before{content:"\F0D48"}.mdi-axis-arrow::before{content:"\F0D49"}.mdi-axis-arrow-info::before{content:"\F140E"}.mdi-axis-arrow-lock::before{content:"\F0D4A"}.mdi-axis-lock::before{content:"\F0D4B"}.mdi-axis-x-arrow::before{content:"\F0D4C"}.mdi-axis-x-arrow-lock::before{content:"\F0D4D"}.mdi-axis-x-rotate-clockwise::before{content:"\F0D4E"}.mdi-axis-x-rotate-counterclockwise::before{content:"\F0D4F"}.mdi-axis-x-y-arrow-lock::before{content:"\F0D50"}.mdi-axis-y-arrow::before{content:"\F0D51"}.mdi-axis-y-arrow-lock::before{content:"\F0D52"}.mdi-axis-y-rotate-clockwise::before{content:"\F0D53"}.mdi-axis-y-rotate-counterclockwise::before{content:"\F0D54"}.mdi-axis-z-arrow::before{content:"\F0D55"}.mdi-axis-z-arrow-lock::before{content:"\F0D56"}.mdi-axis-z-rotate-clockwise::before{content:"\F0D57"}.mdi-axis-z-rotate-counterclockwise::before{content:"\F0D58"}.mdi-babel::before{content:"\F0A25"}.mdi-baby::before{content:"\F006C"}.mdi-baby-bottle::before{content:"\F0F39"}.mdi-baby-bottle-outline::before{content:"\F0F3A"}.mdi-baby-buggy::before{content:"\F13E0"}.mdi-baby-carriage::before{content:"\F068F"}.mdi-baby-carriage-off::before{content:"\F0FA0"}.mdi-baby-face::before{content:"\F0E7C"}.mdi-baby-face-outline::before{content:"\F0E7D"}.mdi-backburger::before{content:"\F006D"}.mdi-backspace::before{content:"\F006E"}.mdi-backspace-outline::before{content:"\F0B5C"}.mdi-backspace-reverse::before{content:"\F0E7E"}.mdi-backspace-reverse-outline::before{content:"\F0E7F"}.mdi-backup-restore::before{content:"\F006F"}.mdi-bacteria::before{content:"\F0ED5"}.mdi-bacteria-outline::before{content:"\F0ED6"}.mdi-badge-account::before{content:"\F0DA7"}.mdi-badge-account-alert::before{content:"\F0DA8"}.mdi-badge-account-alert-outline::before{content:"\F0DA9"}.mdi-badge-account-horizontal::before{content:"\F0E0D"}.mdi-badge-account-horizontal-outline::before{content:"\F0E0E"}.mdi-badge-account-outline::before{content:"\F0DAA"}.mdi-badminton::before{content:"\F0851"}.mdi-bag-carry-on::before{content:"\F0F3B"}.mdi-bag-carry-on-check::before{content:"\F0D65"}.mdi-bag-carry-on-off::before{content:"\F0F3C"}.mdi-bag-checked::before{content:"\F0F3D"}.mdi-bag-personal::before{content:"\F0E10"}.mdi-bag-personal-off::before{content:"\F0E11"}.mdi-bag-personal-off-outline::before{content:"\F0E12"}.mdi-bag-personal-outline::before{content:"\F0E13"}.mdi-bag-suitcase::before{content:"\F158B"}.mdi-bag-suitcase-off::before{content:"\F158D"}.mdi-bag-suitcase-off-outline::before{content:"\F158E"}.mdi-bag-suitcase-outline::before{content:"\F158C"}.mdi-baguette::before{content:"\F0F3E"}.mdi-balloon::before{content:"\F0A26"}.mdi-ballot::before{content:"\F09C9"}.mdi-ballot-outline::before{content:"\F09CA"}.mdi-ballot-recount::before{content:"\F0C39"}.mdi-ballot-recount-outline::before{content:"\F0C3A"}.mdi-bandage::before{content:"\F0DAF"}.mdi-bandcamp::before{content:"\F0675"}.mdi-bank::before{content:"\F0070"}.mdi-bank-check::before{content:"\F1655"}.mdi-bank-minus::before{content:"\F0DB0"}.mdi-bank-off::before{content:"\F1656"}.mdi-bank-off-outline::before{content:"\F1657"}.mdi-bank-outline::before{content:"\F0E80"}.mdi-bank-plus::before{content:"\F0DB1"}.mdi-bank-remove::before{content:"\F0DB2"}.mdi-bank-transfer::before{content:"\F0A27"}.mdi-bank-transfer-in::before{content:"\F0A28"}.mdi-bank-transfer-out::before{content:"\F0A29"}.mdi-barcode::before{content:"\F0071"}.mdi-barcode-off::before{content:"\F1236"}.mdi-barcode-scan::before{content:"\F0072"}.mdi-barley::before{content:"\F0073"}.mdi-barley-off::before{content:"\F0B5D"}.mdi-barn::before{content:"\F0B5E"}.mdi-barrel::before{content:"\F0074"}.mdi-baseball::before{content:"\F0852"}.mdi-baseball-bat::before{content:"\F0853"}.mdi-baseball-diamond::before{content:"\F15EC"}.mdi-baseball-diamond-outline::before{content:"\F15ED"}.mdi-bash::before{content:"\F1183"}.mdi-basket::before{content:"\F0076"}.mdi-basket-fill::before{content:"\F0077"}.mdi-basket-minus::before{content:"\F1523"}.mdi-basket-minus-outline::before{content:"\F1524"}.mdi-basket-off::before{content:"\F1525"}.mdi-basket-off-outline::before{content:"\F1526"}.mdi-basket-outline::before{content:"\F1181"}.mdi-basket-plus::before{content:"\F1527"}.mdi-basket-plus-outline::before{content:"\F1528"}.mdi-basket-remove::before{content:"\F1529"}.mdi-basket-remove-outline::before{content:"\F152A"}.mdi-basket-unfill::before{content:"\F0078"}.mdi-basketball::before{content:"\F0806"}.mdi-basketball-hoop::before{content:"\F0C3B"}.mdi-basketball-hoop-outline::before{content:"\F0C3C"}.mdi-bat::before{content:"\F0B5F"}.mdi-battery::before{content:"\F0079"}.mdi-battery-10::before{content:"\F007A"}.mdi-battery-10-bluetooth::before{content:"\F093E"}.mdi-battery-20::before{content:"\F007B"}.mdi-battery-20-bluetooth::before{content:"\F093F"}.mdi-battery-30::before{content:"\F007C"}.mdi-battery-30-bluetooth::before{content:"\F0940"}.mdi-battery-40::before{content:"\F007D"}.mdi-battery-40-bluetooth::before{content:"\F0941"}.mdi-battery-50::before{content:"\F007E"}.mdi-battery-50-bluetooth::before{content:"\F0942"}.mdi-battery-60::before{content:"\F007F"}.mdi-battery-60-bluetooth::before{content:"\F0943"}.mdi-battery-70::before{content:"\F0080"}.mdi-battery-70-bluetooth::before{content:"\F0944"}.mdi-battery-80::before{content:"\F0081"}.mdi-battery-80-bluetooth::before{content:"\F0945"}.mdi-battery-90::before{content:"\F0082"}.mdi-battery-90-bluetooth::before{content:"\F0946"}.mdi-battery-alert::before{content:"\F0083"}.mdi-battery-alert-bluetooth::before{content:"\F0947"}.mdi-battery-alert-variant::before{content:"\F10CC"}.mdi-battery-alert-variant-outline::before{content:"\F10CD"}.mdi-battery-bluetooth::before{content:"\F0948"}.mdi-battery-bluetooth-variant::before{content:"\F0949"}.mdi-battery-charging::before{content:"\F0084"}.mdi-battery-charging-10::before{content:"\F089C"}.mdi-battery-charging-100::before{content:"\F0085"}.mdi-battery-charging-20::before{content:"\F0086"}.mdi-battery-charging-30::before{content:"\F0087"}.mdi-battery-charging-40::before{content:"\F0088"}.mdi-battery-charging-50::before{content:"\F089D"}.mdi-battery-charging-60::before{content:"\F0089"}.mdi-battery-charging-70::before{content:"\F089E"}.mdi-battery-charging-80::before{content:"\F008A"}.mdi-battery-charging-90::before{content:"\F008B"}.mdi-battery-charging-high::before{content:"\F12A6"}.mdi-battery-charging-low::before{content:"\F12A4"}.mdi-battery-charging-medium::before{content:"\F12A5"}.mdi-battery-charging-outline::before{content:"\F089F"}.mdi-battery-charging-wireless::before{content:"\F0807"}.mdi-battery-charging-wireless-10::before{content:"\F0808"}.mdi-battery-charging-wireless-20::before{content:"\F0809"}.mdi-battery-charging-wireless-30::before{content:"\F080A"}.mdi-battery-charging-wireless-40::before{content:"\F080B"}.mdi-battery-charging-wireless-50::before{content:"\F080C"}.mdi-battery-charging-wireless-60::before{content:"\F080D"}.mdi-battery-charging-wireless-70::before{content:"\F080E"}.mdi-battery-charging-wireless-80::before{content:"\F080F"}.mdi-battery-charging-wireless-90::before{content:"\F0810"}.mdi-battery-charging-wireless-alert::before{content:"\F0811"}.mdi-battery-charging-wireless-outline::before{content:"\F0812"}.mdi-battery-heart::before{content:"\F120F"}.mdi-battery-heart-outline::before{content:"\F1210"}.mdi-battery-heart-variant::before{content:"\F1211"}.mdi-battery-high::before{content:"\F12A3"}.mdi-battery-low::before{content:"\F12A1"}.mdi-battery-medium::before{content:"\F12A2"}.mdi-battery-minus::before{content:"\F008C"}.mdi-battery-negative::before{content:"\F008D"}.mdi-battery-off::before{content:"\F125D"}.mdi-battery-off-outline::before{content:"\F125E"}.mdi-battery-outline::before{content:"\F008E"}.mdi-battery-plus::before{content:"\F008F"}.mdi-battery-positive::before{content:"\F0090"}.mdi-battery-unknown::before{content:"\F0091"}.mdi-battery-unknown-bluetooth::before{content:"\F094A"}.mdi-battlenet::before{content:"\F0B60"}.mdi-beach::before{content:"\F0092"}.mdi-beaker::before{content:"\F0CEA"}.mdi-beaker-alert::before{content:"\F1229"}.mdi-beaker-alert-outline::before{content:"\F122A"}.mdi-beaker-check::before{content:"\F122B"}.mdi-beaker-check-outline::before{content:"\F122C"}.mdi-beaker-minus::before{content:"\F122D"}.mdi-beaker-minus-outline::before{content:"\F122E"}.mdi-beaker-outline::before{content:"\F0690"}.mdi-beaker-plus::before{content:"\F122F"}.mdi-beaker-plus-outline::before{content:"\F1230"}.mdi-beaker-question::before{content:"\F1231"}.mdi-beaker-question-outline::before{content:"\F1232"}.mdi-beaker-remove::before{content:"\F1233"}.mdi-beaker-remove-outline::before{content:"\F1234"}.mdi-bed::before{content:"\F02E3"}.mdi-bed-double::before{content:"\F0FD4"}.mdi-bed-double-outline::before{content:"\F0FD3"}.mdi-bed-empty::before{content:"\F08A0"}.mdi-bed-king::before{content:"\F0FD2"}.mdi-bed-king-outline::before{content:"\F0FD1"}.mdi-bed-outline::before{content:"\F0099"}.mdi-bed-queen::before{content:"\F0FD0"}.mdi-bed-queen-outline::before{content:"\F0FDB"}.mdi-bed-single::before{content:"\F106D"}.mdi-bed-single-outline::before{content:"\F106E"}.mdi-bee::before{content:"\F0FA1"}.mdi-bee-flower::before{content:"\F0FA2"}.mdi-beehive-off-outline::before{content:"\F13ED"}.mdi-beehive-outline::before{content:"\F10CE"}.mdi-beekeeper::before{content:"\F14E2"}.mdi-beer::before{content:"\F0098"}.mdi-beer-outline::before{content:"\F130C"}.mdi-bell::before{content:"\F009A"}.mdi-bell-alert::before{content:"\F0D59"}.mdi-bell-alert-outline::before{content:"\F0E81"}.mdi-bell-cancel::before{content:"\F13E7"}.mdi-bell-cancel-outline::before{content:"\F13E8"}.mdi-bell-check::before{content:"\F11E5"}.mdi-bell-check-outline::before{content:"\F11E6"}.mdi-bell-circle::before{content:"\F0D5A"}.mdi-bell-circle-outline::before{content:"\F0D5B"}.mdi-bell-minus::before{content:"\F13E9"}.mdi-bell-minus-outline::before{content:"\F13EA"}.mdi-bell-off::before{content:"\F009B"}.mdi-bell-off-outline::before{content:"\F0A91"}.mdi-bell-outline::before{content:"\F009C"}.mdi-bell-plus::before{content:"\F009D"}.mdi-bell-plus-outline::before{content:"\F0A92"}.mdi-bell-remove::before{content:"\F13EB"}.mdi-bell-remove-outline::before{content:"\F13EC"}.mdi-bell-ring::before{content:"\F009E"}.mdi-bell-ring-outline::before{content:"\F009F"}.mdi-bell-sleep::before{content:"\F00A0"}.mdi-bell-sleep-outline::before{content:"\F0A93"}.mdi-beta::before{content:"\F00A1"}.mdi-betamax::before{content:"\F09CB"}.mdi-biathlon::before{content:"\F0E14"}.mdi-bicycle::before{content:"\F109C"}.mdi-bicycle-basket::before{content:"\F1235"}.mdi-bicycle-electric::before{content:"\F15B4"}.mdi-bicycle-penny-farthing::before{content:"\F15E9"}.mdi-bike::before{content:"\F00A3"}.mdi-bike-fast::before{content:"\F111F"}.mdi-billboard::before{content:"\F1010"}.mdi-billiards::before{content:"\F0B61"}.mdi-billiards-rack::before{content:"\F0B62"}.mdi-binoculars::before{content:"\F00A5"}.mdi-bio::before{content:"\F00A6"}.mdi-biohazard::before{content:"\F00A7"}.mdi-bird::before{content:"\F15C6"}.mdi-bitbucket::before{content:"\F00A8"}.mdi-bitcoin::before{content:"\F0813"}.mdi-black-mesa::before{content:"\F00A9"}.mdi-blender::before{content:"\F0CEB"}.mdi-blender-software::before{content:"\F00AB"}.mdi-blinds::before{content:"\F00AC"}.mdi-blinds-open::before{content:"\F1011"}.mdi-block-helper::before{content:"\F00AD"}.mdi-blogger::before{content:"\F00AE"}.mdi-blood-bag::before{content:"\F0CEC"}.mdi-bluetooth::before{content:"\F00AF"}.mdi-bluetooth-audio::before{content:"\F00B0"}.mdi-bluetooth-connect::before{content:"\F00B1"}.mdi-bluetooth-off::before{content:"\F00B2"}.mdi-bluetooth-settings::before{content:"\F00B3"}.mdi-bluetooth-transfer::before{content:"\F00B4"}.mdi-blur::before{content:"\F00B5"}.mdi-blur-linear::before{content:"\F00B6"}.mdi-blur-off::before{content:"\F00B7"}.mdi-blur-radial::before{content:"\F00B8"}.mdi-bolnisi-cross::before{content:"\F0CED"}.mdi-bolt::before{content:"\F0DB3"}.mdi-bomb::before{content:"\F0691"}.mdi-bomb-off::before{content:"\F06C5"}.mdi-bone::before{content:"\F00B9"}.mdi-book::before{content:"\F00BA"}.mdi-book-account::before{content:"\F13AD"}.mdi-book-account-outline::before{content:"\F13AE"}.mdi-book-alert::before{content:"\F167C"}.mdi-book-alert-outline::before{content:"\F167D"}.mdi-book-alphabet::before{content:"\F061D"}.mdi-book-arrow-down::before{content:"\F167E"}.mdi-book-arrow-down-outline::before{content:"\F167F"}.mdi-book-arrow-left::before{content:"\F1680"}.mdi-book-arrow-left-outline::before{content:"\F1681"}.mdi-book-arrow-right::before{content:"\F1682"}.mdi-book-arrow-right-outline::before{content:"\F1683"}.mdi-book-arrow-up::before{content:"\F1684"}.mdi-book-arrow-up-outline::before{content:"\F1685"}.mdi-book-cancel::before{content:"\F1686"}.mdi-book-cancel-outline::before{content:"\F1687"}.mdi-book-check::before{content:"\F14F3"}.mdi-book-check-outline::before{content:"\F14F4"}.mdi-book-clock::before{content:"\F1688"}.mdi-book-clock-outline::before{content:"\F1689"}.mdi-book-cog::before{content:"\F168A"}.mdi-book-cog-outline::before{content:"\F168B"}.mdi-book-cross::before{content:"\F00A2"}.mdi-book-edit::before{content:"\F168C"}.mdi-book-edit-outline::before{content:"\F168D"}.mdi-book-education::before{content:"\F16C9"}.mdi-book-education-outline::before{content:"\F16CA"}.mdi-book-information-variant::before{content:"\F106F"}.mdi-book-lock::before{content:"\F079A"}.mdi-book-lock-open::before{content:"\F079B"}.mdi-book-lock-open-outline::before{content:"\F168E"}.mdi-book-lock-outline::before{content:"\F168F"}.mdi-book-marker::before{content:"\F1690"}.mdi-book-marker-outline::before{content:"\F1691"}.mdi-book-minus::before{content:"\F05D9"}.mdi-book-minus-multiple::before{content:"\F0A94"}.mdi-book-minus-multiple-outline::before{content:"\F090B"}.mdi-book-minus-outline::before{content:"\F1692"}.mdi-book-multiple::before{content:"\F00BB"}.mdi-book-multiple-outline::before{content:"\F0436"}.mdi-book-music::before{content:"\F0067"}.mdi-book-music-outline::before{content:"\F1693"}.mdi-book-off::before{content:"\F1694"}.mdi-book-off-outline::before{content:"\F1695"}.mdi-book-open::before{content:"\F00BD"}.mdi-book-open-blank-variant::before{content:"\F00BE"}.mdi-book-open-outline::before{content:"\F0B63"}.mdi-book-open-page-variant::before{content:"\F05DA"}.mdi-book-open-page-variant-outline::before{content:"\F15D6"}.mdi-book-open-variant::before{content:"\F14F7"}.mdi-book-outline::before{content:"\F0B64"}.mdi-book-play::before{content:"\F0E82"}.mdi-book-play-outline::before{content:"\F0E83"}.mdi-book-plus::before{content:"\F05DB"}.mdi-book-plus-multiple::before{content:"\F0A95"}.mdi-book-plus-multiple-outline::before{content:"\F0ADE"}.mdi-book-plus-outline::before{content:"\F1696"}.mdi-book-refresh::before{content:"\F1697"}.mdi-book-refresh-outline::before{content:"\F1698"}.mdi-book-remove::before{content:"\F0A97"}.mdi-book-remove-multiple::before{content:"\F0A96"}.mdi-book-remove-multiple-outline::before{content:"\F04CA"}.mdi-book-remove-outline::before{content:"\F1699"}.mdi-book-search::before{content:"\F0E84"}.mdi-book-search-outline::before{content:"\F0E85"}.mdi-book-settings::before{content:"\F169A"}.mdi-book-settings-outline::before{content:"\F169B"}.mdi-book-sync::before{content:"\F169C"}.mdi-book-sync-outline::before{content:"\F16C8"}.mdi-book-variant::before{content:"\F00BF"}.mdi-book-variant-multiple::before{content:"\F00BC"}.mdi-bookmark::before{content:"\F00C0"}.mdi-bookmark-check::before{content:"\F00C1"}.mdi-bookmark-check-outline::before{content:"\F137B"}.mdi-bookmark-minus::before{content:"\F09CC"}.mdi-bookmark-minus-outline::before{content:"\F09CD"}.mdi-bookmark-multiple::before{content:"\F0E15"}.mdi-bookmark-multiple-outline::before{content:"\F0E16"}.mdi-bookmark-music::before{content:"\F00C2"}.mdi-bookmark-music-outline::before{content:"\F1379"}.mdi-bookmark-off::before{content:"\F09CE"}.mdi-bookmark-off-outline::before{content:"\F09CF"}.mdi-bookmark-outline::before{content:"\F00C3"}.mdi-bookmark-plus::before{content:"\F00C5"}.mdi-bookmark-plus-outline::before{content:"\F00C4"}.mdi-bookmark-remove::before{content:"\F00C6"}.mdi-bookmark-remove-outline::before{content:"\F137A"}.mdi-bookshelf::before{content:"\F125F"}.mdi-boom-gate::before{content:"\F0E86"}.mdi-boom-gate-alert::before{content:"\F0E87"}.mdi-boom-gate-alert-outline::before{content:"\F0E88"}.mdi-boom-gate-down::before{content:"\F0E89"}.mdi-boom-gate-down-outline::before{content:"\F0E8A"}.mdi-boom-gate-outline::before{content:"\F0E8B"}.mdi-boom-gate-up::before{content:"\F0E8C"}.mdi-boom-gate-up-outline::before{content:"\F0E8D"}.mdi-boombox::before{content:"\F05DC"}.mdi-boomerang::before{content:"\F10CF"}.mdi-bootstrap::before{content:"\F06C6"}.mdi-border-all::before{content:"\F00C7"}.mdi-border-all-variant::before{content:"\F08A1"}.mdi-border-bottom::before{content:"\F00C8"}.mdi-border-bottom-variant::before{content:"\F08A2"}.mdi-border-color::before{content:"\F00C9"}.mdi-border-horizontal::before{content:"\F00CA"}.mdi-border-inside::before{content:"\F00CB"}.mdi-border-left::before{content:"\F00CC"}.mdi-border-left-variant::before{content:"\F08A3"}.mdi-border-none::before{content:"\F00CD"}.mdi-border-none-variant::before{content:"\F08A4"}.mdi-border-outside::before{content:"\F00CE"}.mdi-border-right::before{content:"\F00CF"}.mdi-border-right-variant::before{content:"\F08A5"}.mdi-border-style::before{content:"\F00D0"}.mdi-border-top::before{content:"\F00D1"}.mdi-border-top-variant::before{content:"\F08A6"}.mdi-border-vertical::before{content:"\F00D2"}.mdi-bottle-soda::before{content:"\F1070"}.mdi-bottle-soda-classic::before{content:"\F1071"}.mdi-bottle-soda-classic-outline::before{content:"\F1363"}.mdi-bottle-soda-outline::before{content:"\F1072"}.mdi-bottle-tonic::before{content:"\F112E"}.mdi-bottle-tonic-outline::before{content:"\F112F"}.mdi-bottle-tonic-plus::before{content:"\F1130"}.mdi-bottle-tonic-plus-outline::before{content:"\F1131"}.mdi-bottle-tonic-skull::before{content:"\F1132"}.mdi-bottle-tonic-skull-outline::before{content:"\F1133"}.mdi-bottle-wine::before{content:"\F0854"}.mdi-bottle-wine-outline::before{content:"\F1310"}.mdi-bow-tie::before{content:"\F0678"}.mdi-bowl::before{content:"\F028E"}.mdi-bowl-mix::before{content:"\F0617"}.mdi-bowl-mix-outline::before{content:"\F02E4"}.mdi-bowl-outline::before{content:"\F02A9"}.mdi-bowling::before{content:"\F00D3"}.mdi-box::before{content:"\F00D4"}.mdi-box-cutter::before{content:"\F00D5"}.mdi-box-cutter-off::before{content:"\F0B4A"}.mdi-box-shadow::before{content:"\F0637"}.mdi-boxing-glove::before{content:"\F0B65"}.mdi-braille::before{content:"\F09D0"}.mdi-brain::before{content:"\F09D1"}.mdi-bread-slice::before{content:"\F0CEE"}.mdi-bread-slice-outline::before{content:"\F0CEF"}.mdi-bridge::before{content:"\F0618"}.mdi-briefcase::before{content:"\F00D6"}.mdi-briefcase-account::before{content:"\F0CF0"}.mdi-briefcase-account-outline::before{content:"\F0CF1"}.mdi-briefcase-check::before{content:"\F00D7"}.mdi-briefcase-check-outline::before{content:"\F131E"}.mdi-briefcase-clock::before{content:"\F10D0"}.mdi-briefcase-clock-outline::before{content:"\F10D1"}.mdi-briefcase-download::before{content:"\F00D8"}.mdi-briefcase-download-outline::before{content:"\F0C3D"}.mdi-briefcase-edit::before{content:"\F0A98"}.mdi-briefcase-edit-outline::before{content:"\F0C3E"}.mdi-briefcase-minus::before{content:"\F0A2A"}.mdi-briefcase-minus-outline::before{content:"\F0C3F"}.mdi-briefcase-off::before{content:"\F1658"}.mdi-briefcase-off-outline::before{content:"\F1659"}.mdi-briefcase-outline::before{content:"\F0814"}.mdi-briefcase-plus::before{content:"\F0A2B"}.mdi-briefcase-plus-outline::before{content:"\F0C40"}.mdi-briefcase-remove::before{content:"\F0A2C"}.mdi-briefcase-remove-outline::before{content:"\F0C41"}.mdi-briefcase-search::before{content:"\F0A2D"}.mdi-briefcase-search-outline::before{content:"\F0C42"}.mdi-briefcase-upload::before{content:"\F00D9"}.mdi-briefcase-upload-outline::before{content:"\F0C43"}.mdi-briefcase-variant::before{content:"\F1494"}.mdi-briefcase-variant-off::before{content:"\F165A"}.mdi-briefcase-variant-off-outline::before{content:"\F165B"}.mdi-briefcase-variant-outline::before{content:"\F1495"}.mdi-brightness-1::before{content:"\F00DA"}.mdi-brightness-2::before{content:"\F00DB"}.mdi-brightness-3::before{content:"\F00DC"}.mdi-brightness-4::before{content:"\F00DD"}.mdi-brightness-5::before{content:"\F00DE"}.mdi-brightness-6::before{content:"\F00DF"}.mdi-brightness-7::before{content:"\F00E0"}.mdi-brightness-auto::before{content:"\F00E1"}.mdi-brightness-percent::before{content:"\F0CF2"}.mdi-broom::before{content:"\F00E2"}.mdi-brush::before{content:"\F00E3"}.mdi-bucket::before{content:"\F1415"}.mdi-bucket-outline::before{content:"\F1416"}.mdi-buddhism::before{content:"\F094B"}.mdi-buffer::before{content:"\F0619"}.mdi-buffet::before{content:"\F0578"}.mdi-bug::before{content:"\F00E4"}.mdi-bug-check::before{content:"\F0A2E"}.mdi-bug-check-outline::before{content:"\F0A2F"}.mdi-bug-outline::before{content:"\F0A30"}.mdi-bugle::before{content:"\F0DB4"}.mdi-bulldozer::before{content:"\F0B22"}.mdi-bullet::before{content:"\F0CF3"}.mdi-bulletin-board::before{content:"\F00E5"}.mdi-bullhorn::before{content:"\F00E6"}.mdi-bullhorn-outline::before{content:"\F0B23"}.mdi-bullseye::before{content:"\F05DD"}.mdi-bullseye-arrow::before{content:"\F08C9"}.mdi-bulma::before{content:"\F12E7"}.mdi-bunk-bed::before{content:"\F1302"}.mdi-bunk-bed-outline::before{content:"\F0097"}.mdi-bus::before{content:"\F00E7"}.mdi-bus-alert::before{content:"\F0A99"}.mdi-bus-articulated-end::before{content:"\F079C"}.mdi-bus-articulated-front::before{content:"\F079D"}.mdi-bus-clock::before{content:"\F08CA"}.mdi-bus-double-decker::before{content:"\F079E"}.mdi-bus-marker::before{content:"\F1212"}.mdi-bus-multiple::before{content:"\F0F3F"}.mdi-bus-school::before{content:"\F079F"}.mdi-bus-side::before{content:"\F07A0"}.mdi-bus-stop::before{content:"\F1012"}.mdi-bus-stop-covered::before{content:"\F1013"}.mdi-bus-stop-uncovered::before{content:"\F1014"}.mdi-butterfly::before{content:"\F1589"}.mdi-butterfly-outline::before{content:"\F158A"}.mdi-cable-data::before{content:"\F1394"}.mdi-cached::before{content:"\F00E8"}.mdi-cactus::before{content:"\F0DB5"}.mdi-cake::before{content:"\F00E9"}.mdi-cake-layered::before{content:"\F00EA"}.mdi-cake-variant::before{content:"\F00EB"}.mdi-calculator::before{content:"\F00EC"}.mdi-calculator-variant::before{content:"\F0A9A"}.mdi-calculator-variant-outline::before{content:"\F15A6"}.mdi-calendar::before{content:"\F00ED"}.mdi-calendar-account::before{content:"\F0ED7"}.mdi-calendar-account-outline::before{content:"\F0ED8"}.mdi-calendar-alert::before{content:"\F0A31"}.mdi-calendar-arrow-left::before{content:"\F1134"}.mdi-calendar-arrow-right::before{content:"\F1135"}.mdi-calendar-blank::before{content:"\F00EE"}.mdi-calendar-blank-multiple::before{content:"\F1073"}.mdi-calendar-blank-outline::before{content:"\F0B66"}.mdi-calendar-check::before{content:"\F00EF"}.mdi-calendar-check-outline::before{content:"\F0C44"}.mdi-calendar-clock::before{content:"\F00F0"}.mdi-calendar-cursor::before{content:"\F157B"}.mdi-calendar-edit::before{content:"\F08A7"}.mdi-calendar-end::before{content:"\F166C"}.mdi-calendar-export::before{content:"\F0B24"}.mdi-calendar-heart::before{content:"\F09D2"}.mdi-calendar-import::before{content:"\F0B25"}.mdi-calendar-lock::before{content:"\F1641"}.mdi-calendar-lock-outline::before{content:"\F1642"}.mdi-calendar-minus::before{content:"\F0D5C"}.mdi-calendar-month::before{content:"\F0E17"}.mdi-calendar-month-outline::before{content:"\F0E18"}.mdi-calendar-multiple::before{content:"\F00F1"}.mdi-calendar-multiple-check::before{content:"\F00F2"}.mdi-calendar-multiselect::before{content:"\F0A32"}.mdi-calendar-outline::before{content:"\F0B67"}.mdi-calendar-plus::before{content:"\F00F3"}.mdi-calendar-question::before{content:"\F0692"}.mdi-calendar-range::before{content:"\F0679"}.mdi-calendar-range-outline::before{content:"\F0B68"}.mdi-calendar-refresh::before{content:"\F01E1"}.mdi-calendar-refresh-outline::before{content:"\F0203"}.mdi-calendar-remove::before{content:"\F00F4"}.mdi-calendar-remove-outline::before{content:"\F0C45"}.mdi-calendar-search::before{content:"\F094C"}.mdi-calendar-star::before{content:"\F09D3"}.mdi-calendar-start::before{content:"\F166D"}.mdi-calendar-sync::before{content:"\F0E8E"}.mdi-calendar-sync-outline::before{content:"\F0E8F"}.mdi-calendar-text::before{content:"\F00F5"}.mdi-calendar-text-outline::before{content:"\F0C46"}.mdi-calendar-today::before{content:"\F00F6"}.mdi-calendar-week::before{content:"\F0A33"}.mdi-calendar-week-begin::before{content:"\F0A34"}.mdi-calendar-weekend::before{content:"\F0ED9"}.mdi-calendar-weekend-outline::before{content:"\F0EDA"}.mdi-call-made::before{content:"\F00F7"}.mdi-call-merge::before{content:"\F00F8"}.mdi-call-missed::before{content:"\F00F9"}.mdi-call-received::before{content:"\F00FA"}.mdi-call-split::before{content:"\F00FB"}.mdi-camcorder::before{content:"\F00FC"}.mdi-camcorder-off::before{content:"\F00FF"}.mdi-camera::before{content:"\F0100"}.mdi-camera-account::before{content:"\F08CB"}.mdi-camera-burst::before{content:"\F0693"}.mdi-camera-control::before{content:"\F0B69"}.mdi-camera-enhance::before{content:"\F0101"}.mdi-camera-enhance-outline::before{content:"\F0B6A"}.mdi-camera-flip::before{content:"\F15D9"}.mdi-camera-flip-outline::before{content:"\F15DA"}.mdi-camera-front::before{content:"\F0102"}.mdi-camera-front-variant::before{content:"\F0103"}.mdi-camera-gopro::before{content:"\F07A1"}.mdi-camera-image::before{content:"\F08CC"}.mdi-camera-iris::before{content:"\F0104"}.mdi-camera-metering-center::before{content:"\F07A2"}.mdi-camera-metering-matrix::before{content:"\F07A3"}.mdi-camera-metering-partial::before{content:"\F07A4"}.mdi-camera-metering-spot::before{content:"\F07A5"}.mdi-camera-off::before{content:"\F05DF"}.mdi-camera-outline::before{content:"\F0D5D"}.mdi-camera-party-mode::before{content:"\F0105"}.mdi-camera-plus::before{content:"\F0EDB"}.mdi-camera-plus-outline::before{content:"\F0EDC"}.mdi-camera-rear::before{content:"\F0106"}.mdi-camera-rear-variant::before{content:"\F0107"}.mdi-camera-retake::before{content:"\F0E19"}.mdi-camera-retake-outline::before{content:"\F0E1A"}.mdi-camera-switch::before{content:"\F0108"}.mdi-camera-switch-outline::before{content:"\F084A"}.mdi-camera-timer::before{content:"\F0109"}.mdi-camera-wireless::before{content:"\F0DB6"}.mdi-camera-wireless-outline::before{content:"\F0DB7"}.mdi-campfire::before{content:"\F0EDD"}.mdi-cancel::before{content:"\F073A"}.mdi-candle::before{content:"\F05E2"}.mdi-candycane::before{content:"\F010A"}.mdi-cannabis::before{content:"\F07A6"}.mdi-cannabis-off::before{content:"\F166E"}.mdi-caps-lock::before{content:"\F0A9B"}.mdi-car::before{content:"\F010B"}.mdi-car-2-plus::before{content:"\F1015"}.mdi-car-3-plus::before{content:"\F1016"}.mdi-car-arrow-left::before{content:"\F13B2"}.mdi-car-arrow-right::before{content:"\F13B3"}.mdi-car-back::before{content:"\F0E1B"}.mdi-car-battery::before{content:"\F010C"}.mdi-car-brake-abs::before{content:"\F0C47"}.mdi-car-brake-alert::before{content:"\F0C48"}.mdi-car-brake-hold::before{content:"\F0D5E"}.mdi-car-brake-parking::before{content:"\F0D5F"}.mdi-car-brake-retarder::before{content:"\F1017"}.mdi-car-child-seat::before{content:"\F0FA3"}.mdi-car-clutch::before{content:"\F1018"}.mdi-car-cog::before{content:"\F13CC"}.mdi-car-connected::before{content:"\F010D"}.mdi-car-convertible::before{content:"\F07A7"}.mdi-car-coolant-level::before{content:"\F1019"}.mdi-car-cruise-control::before{content:"\F0D60"}.mdi-car-defrost-front::before{content:"\F0D61"}.mdi-car-defrost-rear::before{content:"\F0D62"}.mdi-car-door::before{content:"\F0B6B"}.mdi-car-door-lock::before{content:"\F109D"}.mdi-car-electric::before{content:"\F0B6C"}.mdi-car-electric-outline::before{content:"\F15B5"}.mdi-car-emergency::before{content:"\F160F"}.mdi-car-esp::before{content:"\F0C49"}.mdi-car-estate::before{content:"\F07A8"}.mdi-car-hatchback::before{content:"\F07A9"}.mdi-car-info::before{content:"\F11BE"}.mdi-car-key::before{content:"\F0B6D"}.mdi-car-lifted-pickup::before{content:"\F152D"}.mdi-car-light-dimmed::before{content:"\F0C4A"}.mdi-car-light-fog::before{content:"\F0C4B"}.mdi-car-light-high::before{content:"\F0C4C"}.mdi-car-limousine::before{content:"\F08CD"}.mdi-car-multiple::before{content:"\F0B6E"}.mdi-car-off::before{content:"\F0E1C"}.mdi-car-outline::before{content:"\F14ED"}.mdi-car-parking-lights::before{content:"\F0D63"}.mdi-car-pickup::before{content:"\F07AA"}.mdi-car-seat::before{content:"\F0FA4"}.mdi-car-seat-cooler::before{content:"\F0FA5"}.mdi-car-seat-heater::before{content:"\F0FA6"}.mdi-car-settings::before{content:"\F13CD"}.mdi-car-shift-pattern::before{content:"\F0F40"}.mdi-car-side::before{content:"\F07AB"}.mdi-car-sports::before{content:"\F07AC"}.mdi-car-tire-alert::before{content:"\F0C4D"}.mdi-car-traction-control::before{content:"\F0D64"}.mdi-car-turbocharger::before{content:"\F101A"}.mdi-car-wash::before{content:"\F010E"}.mdi-car-windshield::before{content:"\F101B"}.mdi-car-windshield-outline::before{content:"\F101C"}.mdi-carabiner::before{content:"\F14C0"}.mdi-caravan::before{content:"\F07AD"}.mdi-card::before{content:"\F0B6F"}.mdi-card-account-details::before{content:"\F05D2"}.mdi-card-account-details-outline::before{content:"\F0DAB"}.mdi-card-account-details-star::before{content:"\F02A3"}.mdi-card-account-details-star-outline::before{content:"\F06DB"}.mdi-card-account-mail::before{content:"\F018E"}.mdi-card-account-mail-outline::before{content:"\F0E98"}.mdi-card-account-phone::before{content:"\F0E99"}.mdi-card-account-phone-outline::before{content:"\F0E9A"}.mdi-card-bulleted::before{content:"\F0B70"}.mdi-card-bulleted-off::before{content:"\F0B71"}.mdi-card-bulleted-off-outline::before{content:"\F0B72"}.mdi-card-bulleted-outline::before{content:"\F0B73"}.mdi-card-bulleted-settings::before{content:"\F0B74"}.mdi-card-bulleted-settings-outline::before{content:"\F0B75"}.mdi-card-minus::before{content:"\F1600"}.mdi-card-minus-outline::before{content:"\F1601"}.mdi-card-off::before{content:"\F1602"}.mdi-card-off-outline::before{content:"\F1603"}.mdi-card-outline::before{content:"\F0B76"}.mdi-card-plus::before{content:"\F11FF"}.mdi-card-plus-outline::before{content:"\F1200"}.mdi-card-remove::before{content:"\F1604"}.mdi-card-remove-outline::before{content:"\F1605"}.mdi-card-search::before{content:"\F1074"}.mdi-card-search-outline::before{content:"\F1075"}.mdi-card-text::before{content:"\F0B77"}.mdi-card-text-outline::before{content:"\F0B78"}.mdi-cards::before{content:"\F0638"}.mdi-cards-club::before{content:"\F08CE"}.mdi-cards-diamond::before{content:"\F08CF"}.mdi-cards-diamond-outline::before{content:"\F101D"}.mdi-cards-heart::before{content:"\F08D0"}.mdi-cards-outline::before{content:"\F0639"}.mdi-cards-playing-outline::before{content:"\F063A"}.mdi-cards-spade::before{content:"\F08D1"}.mdi-cards-variant::before{content:"\F06C7"}.mdi-carrot::before{content:"\F010F"}.mdi-cart::before{content:"\F0110"}.mdi-cart-arrow-down::before{content:"\F0D66"}.mdi-cart-arrow-right::before{content:"\F0C4E"}.mdi-cart-arrow-up::before{content:"\F0D67"}.mdi-cart-check::before{content:"\F15EA"}.mdi-cart-minus::before{content:"\F0D68"}.mdi-cart-off::before{content:"\F066B"}.mdi-cart-outline::before{content:"\F0111"}.mdi-cart-plus::before{content:"\F0112"}.mdi-cart-remove::before{content:"\F0D69"}.mdi-cart-variant::before{content:"\F15EB"}.mdi-case-sensitive-alt::before{content:"\F0113"}.mdi-cash::before{content:"\F0114"}.mdi-cash-100::before{content:"\F0115"}.mdi-cash-check::before{content:"\F14EE"}.mdi-cash-lock::before{content:"\F14EA"}.mdi-cash-lock-open::before{content:"\F14EB"}.mdi-cash-marker::before{content:"\F0DB8"}.mdi-cash-minus::before{content:"\F1260"}.mdi-cash-multiple::before{content:"\F0116"}.mdi-cash-plus::before{content:"\F1261"}.mdi-cash-refund::before{content:"\F0A9C"}.mdi-cash-register::before{content:"\F0CF4"}.mdi-cash-remove::before{content:"\F1262"}.mdi-cash-usd::before{content:"\F1176"}.mdi-cash-usd-outline::before{content:"\F0117"}.mdi-cassette::before{content:"\F09D4"}.mdi-cast::before{content:"\F0118"}.mdi-cast-audio::before{content:"\F101E"}.mdi-cast-connected::before{content:"\F0119"}.mdi-cast-education::before{content:"\F0E1D"}.mdi-cast-off::before{content:"\F078A"}.mdi-castle::before{content:"\F011A"}.mdi-cat::before{content:"\F011B"}.mdi-cctv::before{content:"\F07AE"}.mdi-ceiling-light::before{content:"\F0769"}.mdi-cellphone::before{content:"\F011C"}.mdi-cellphone-android::before{content:"\F011D"}.mdi-cellphone-arrow-down::before{content:"\F09D5"}.mdi-cellphone-basic::before{content:"\F011E"}.mdi-cellphone-charging::before{content:"\F1397"}.mdi-cellphone-cog::before{content:"\F0951"}.mdi-cellphone-dock::before{content:"\F011F"}.mdi-cellphone-erase::before{content:"\F094D"}.mdi-cellphone-information::before{content:"\F0F41"}.mdi-cellphone-iphone::before{content:"\F0120"}.mdi-cellphone-key::before{content:"\F094E"}.mdi-cellphone-link::before{content:"\F0121"}.mdi-cellphone-link-off::before{content:"\F0122"}.mdi-cellphone-lock::before{content:"\F094F"}.mdi-cellphone-message::before{content:"\F08D3"}.mdi-cellphone-message-off::before{content:"\F10D2"}.mdi-cellphone-nfc::before{content:"\F0E90"}.mdi-cellphone-nfc-off::before{content:"\F12D8"}.mdi-cellphone-off::before{content:"\F0950"}.mdi-cellphone-play::before{content:"\F101F"}.mdi-cellphone-screenshot::before{content:"\F0A35"}.mdi-cellphone-settings::before{content:"\F0123"}.mdi-cellphone-sound::before{content:"\F0952"}.mdi-cellphone-text::before{content:"\F08D2"}.mdi-cellphone-wireless::before{content:"\F0815"}.mdi-celtic-cross::before{content:"\F0CF5"}.mdi-centos::before{content:"\F111A"}.mdi-certificate::before{content:"\F0124"}.mdi-certificate-outline::before{content:"\F1188"}.mdi-chair-rolling::before{content:"\F0F48"}.mdi-chair-school::before{content:"\F0125"}.mdi-charity::before{content:"\F0C4F"}.mdi-chart-arc::before{content:"\F0126"}.mdi-chart-areaspline::before{content:"\F0127"}.mdi-chart-areaspline-variant::before{content:"\F0E91"}.mdi-chart-bar::before{content:"\F0128"}.mdi-chart-bar-stacked::before{content:"\F076A"}.mdi-chart-bell-curve::before{content:"\F0C50"}.mdi-chart-bell-curve-cumulative::before{content:"\F0FA7"}.mdi-chart-box::before{content:"\F154D"}.mdi-chart-box-outline::before{content:"\F154E"}.mdi-chart-box-plus-outline::before{content:"\F154F"}.mdi-chart-bubble::before{content:"\F05E3"}.mdi-chart-donut::before{content:"\F07AF"}.mdi-chart-donut-variant::before{content:"\F07B0"}.mdi-chart-gantt::before{content:"\F066C"}.mdi-chart-histogram::before{content:"\F0129"}.mdi-chart-line::before{content:"\F012A"}.mdi-chart-line-stacked::before{content:"\F076B"}.mdi-chart-line-variant::before{content:"\F07B1"}.mdi-chart-multiline::before{content:"\F08D4"}.mdi-chart-multiple::before{content:"\F1213"}.mdi-chart-pie::before{content:"\F012B"}.mdi-chart-ppf::before{content:"\F1380"}.mdi-chart-sankey::before{content:"\F11DF"}.mdi-chart-sankey-variant::before{content:"\F11E0"}.mdi-chart-scatter-plot::before{content:"\F0E92"}.mdi-chart-scatter-plot-hexbin::before{content:"\F066D"}.mdi-chart-timeline::before{content:"\F066E"}.mdi-chart-timeline-variant::before{content:"\F0E93"}.mdi-chart-timeline-variant-shimmer::before{content:"\F15B6"}.mdi-chart-tree::before{content:"\F0E94"}.mdi-chat::before{content:"\F0B79"}.mdi-chat-alert::before{content:"\F0B7A"}.mdi-chat-alert-outline::before{content:"\F12C9"}.mdi-chat-minus::before{content:"\F1410"}.mdi-chat-minus-outline::before{content:"\F1413"}.mdi-chat-outline::before{content:"\F0EDE"}.mdi-chat-plus::before{content:"\F140F"}.mdi-chat-plus-outline::before{content:"\F1412"}.mdi-chat-processing::before{content:"\F0B7B"}.mdi-chat-processing-outline::before{content:"\F12CA"}.mdi-chat-remove::before{content:"\F1411"}.mdi-chat-remove-outline::before{content:"\F1414"}.mdi-chat-sleep::before{content:"\F12D1"}.mdi-chat-sleep-outline::before{content:"\F12D2"}.mdi-check::before{content:"\F012C"}.mdi-check-all::before{content:"\F012D"}.mdi-check-bold::before{content:"\F0E1E"}.mdi-check-box-multiple-outline::before{content:"\F0C51"}.mdi-check-box-outline::before{content:"\F0C52"}.mdi-check-circle::before{content:"\F05E0"}.mdi-check-circle-outline::before{content:"\F05E1"}.mdi-check-decagram::before{content:"\F0791"}.mdi-check-network::before{content:"\F0C53"}.mdi-check-network-outline::before{content:"\F0C54"}.mdi-check-outline::before{content:"\F0855"}.mdi-check-underline::before{content:"\F0E1F"}.mdi-check-underline-circle::before{content:"\F0E20"}.mdi-check-underline-circle-outline::before{content:"\F0E21"}.mdi-checkbook::before{content:"\F0A9D"}.mdi-checkbox-blank::before{content:"\F012E"}.mdi-checkbox-blank-circle::before{content:"\F012F"}.mdi-checkbox-blank-circle-outline::before{content:"\F0130"}.mdi-checkbox-blank-off::before{content:"\F12EC"}.mdi-checkbox-blank-off-outline::before{content:"\F12ED"}.mdi-checkbox-blank-outline::before{content:"\F0131"}.mdi-checkbox-intermediate::before{content:"\F0856"}.mdi-checkbox-marked::before{content:"\F0132"}.mdi-checkbox-marked-circle::before{content:"\F0133"}.mdi-checkbox-marked-circle-outline::before{content:"\F0134"}.mdi-checkbox-marked-outline::before{content:"\F0135"}.mdi-checkbox-multiple-blank::before{content:"\F0136"}.mdi-checkbox-multiple-blank-circle::before{content:"\F063B"}.mdi-checkbox-multiple-blank-circle-outline::before{content:"\F063C"}.mdi-checkbox-multiple-blank-outline::before{content:"\F0137"}.mdi-checkbox-multiple-marked::before{content:"\F0138"}.mdi-checkbox-multiple-marked-circle::before{content:"\F063D"}.mdi-checkbox-multiple-marked-circle-outline::before{content:"\F063E"}.mdi-checkbox-multiple-marked-outline::before{content:"\F0139"}.mdi-checkerboard::before{content:"\F013A"}.mdi-checkerboard-minus::before{content:"\F1202"}.mdi-checkerboard-plus::before{content:"\F1201"}.mdi-checkerboard-remove::before{content:"\F1203"}.mdi-cheese::before{content:"\F12B9"}.mdi-cheese-off::before{content:"\F13EE"}.mdi-chef-hat::before{content:"\F0B7C"}.mdi-chemical-weapon::before{content:"\F013B"}.mdi-chess-bishop::before{content:"\F085C"}.mdi-chess-king::before{content:"\F0857"}.mdi-chess-knight::before{content:"\F0858"}.mdi-chess-pawn::before{content:"\F0859"}.mdi-chess-queen::before{content:"\F085A"}.mdi-chess-rook::before{content:"\F085B"}.mdi-chevron-double-down::before{content:"\F013C"}.mdi-chevron-double-left::before{content:"\F013D"}.mdi-chevron-double-right::before{content:"\F013E"}.mdi-chevron-double-up::before{content:"\F013F"}.mdi-chevron-down::before{content:"\F0140"}.mdi-chevron-down-box::before{content:"\F09D6"}.mdi-chevron-down-box-outline::before{content:"\F09D7"}.mdi-chevron-down-circle::before{content:"\F0B26"}.mdi-chevron-down-circle-outline::before{content:"\F0B27"}.mdi-chevron-left::before{content:"\F0141"}.mdi-chevron-left-box::before{content:"\F09D8"}.mdi-chevron-left-box-outline::before{content:"\F09D9"}.mdi-chevron-left-circle::before{content:"\F0B28"}.mdi-chevron-left-circle-outline::before{content:"\F0B29"}.mdi-chevron-right::before{content:"\F0142"}.mdi-chevron-right-box::before{content:"\F09DA"}.mdi-chevron-right-box-outline::before{content:"\F09DB"}.mdi-chevron-right-circle::before{content:"\F0B2A"}.mdi-chevron-right-circle-outline::before{content:"\F0B2B"}.mdi-chevron-triple-down::before{content:"\F0DB9"}.mdi-chevron-triple-left::before{content:"\F0DBA"}.mdi-chevron-triple-right::before{content:"\F0DBB"}.mdi-chevron-triple-up::before{content:"\F0DBC"}.mdi-chevron-up::before{content:"\F0143"}.mdi-chevron-up-box::before{content:"\F09DC"}.mdi-chevron-up-box-outline::before{content:"\F09DD"}.mdi-chevron-up-circle::before{content:"\F0B2C"}.mdi-chevron-up-circle-outline::before{content:"\F0B2D"}.mdi-chili-hot::before{content:"\F07B2"}.mdi-chili-medium::before{content:"\F07B3"}.mdi-chili-mild::before{content:"\F07B4"}.mdi-chili-off::before{content:"\F1467"}.mdi-chip::before{content:"\F061A"}.mdi-christianity::before{content:"\F0953"}.mdi-christianity-outline::before{content:"\F0CF6"}.mdi-church::before{content:"\F0144"}.mdi-cigar::before{content:"\F1189"}.mdi-cigar-off::before{content:"\F141B"}.mdi-circle::before{content:"\F0765"}.mdi-circle-box::before{content:"\F15DC"}.mdi-circle-box-outline::before{content:"\F15DD"}.mdi-circle-double::before{content:"\F0E95"}.mdi-circle-edit-outline::before{content:"\F08D5"}.mdi-circle-expand::before{content:"\F0E96"}.mdi-circle-half::before{content:"\F1395"}.mdi-circle-half-full::before{content:"\F1396"}.mdi-circle-medium::before{content:"\F09DE"}.mdi-circle-multiple::before{content:"\F0B38"}.mdi-circle-multiple-outline::before{content:"\F0695"}.mdi-circle-off-outline::before{content:"\F10D3"}.mdi-circle-outline::before{content:"\F0766"}.mdi-circle-slice-1::before{content:"\F0A9E"}.mdi-circle-slice-2::before{content:"\F0A9F"}.mdi-circle-slice-3::before{content:"\F0AA0"}.mdi-circle-slice-4::before{content:"\F0AA1"}.mdi-circle-slice-5::before{content:"\F0AA2"}.mdi-circle-slice-6::before{content:"\F0AA3"}.mdi-circle-slice-7::before{content:"\F0AA4"}.mdi-circle-slice-8::before{content:"\F0AA5"}.mdi-circle-small::before{content:"\F09DF"}.mdi-circular-saw::before{content:"\F0E22"}.mdi-city::before{content:"\F0146"}.mdi-city-variant::before{content:"\F0A36"}.mdi-city-variant-outline::before{content:"\F0A37"}.mdi-clipboard::before{content:"\F0147"}.mdi-clipboard-account::before{content:"\F0148"}.mdi-clipboard-account-outline::before{content:"\F0C55"}.mdi-clipboard-alert::before{content:"\F0149"}.mdi-clipboard-alert-outline::before{content:"\F0CF7"}.mdi-clipboard-arrow-down::before{content:"\F014A"}.mdi-clipboard-arrow-down-outline::before{content:"\F0C56"}.mdi-clipboard-arrow-left::before{content:"\F014B"}.mdi-clipboard-arrow-left-outline::before{content:"\F0CF8"}.mdi-clipboard-arrow-right::before{content:"\F0CF9"}.mdi-clipboard-arrow-right-outline::before{content:"\F0CFA"}.mdi-clipboard-arrow-up::before{content:"\F0C57"}.mdi-clipboard-arrow-up-outline::before{content:"\F0C58"}.mdi-clipboard-check::before{content:"\F014E"}.mdi-clipboard-check-multiple::before{content:"\F1263"}.mdi-clipboard-check-multiple-outline::before{content:"\F1264"}.mdi-clipboard-check-outline::before{content:"\F08A8"}.mdi-clipboard-edit::before{content:"\F14E5"}.mdi-clipboard-edit-outline::before{content:"\F14E6"}.mdi-clipboard-file::before{content:"\F1265"}.mdi-clipboard-file-outline::before{content:"\F1266"}.mdi-clipboard-flow::before{content:"\F06C8"}.mdi-clipboard-flow-outline::before{content:"\F1117"}.mdi-clipboard-list::before{content:"\F10D4"}.mdi-clipboard-list-outline::before{content:"\F10D5"}.mdi-clipboard-minus::before{content:"\F1618"}.mdi-clipboard-minus-outline::before{content:"\F1619"}.mdi-clipboard-multiple::before{content:"\F1267"}.mdi-clipboard-multiple-outline::before{content:"\F1268"}.mdi-clipboard-off::before{content:"\F161A"}.mdi-clipboard-off-outline::before{content:"\F161B"}.mdi-clipboard-outline::before{content:"\F014C"}.mdi-clipboard-play::before{content:"\F0C59"}.mdi-clipboard-play-multiple::before{content:"\F1269"}.mdi-clipboard-play-multiple-outline::before{content:"\F126A"}.mdi-clipboard-play-outline::before{content:"\F0C5A"}.mdi-clipboard-plus::before{content:"\F0751"}.mdi-clipboard-plus-outline::before{content:"\F131F"}.mdi-clipboard-pulse::before{content:"\F085D"}.mdi-clipboard-pulse-outline::before{content:"\F085E"}.mdi-clipboard-remove::before{content:"\F161C"}.mdi-clipboard-remove-outline::before{content:"\F161D"}.mdi-clipboard-search::before{content:"\F161E"}.mdi-clipboard-search-outline::before{content:"\F161F"}.mdi-clipboard-text::before{content:"\F014D"}.mdi-clipboard-text-multiple::before{content:"\F126B"}.mdi-clipboard-text-multiple-outline::before{content:"\F126C"}.mdi-clipboard-text-off::before{content:"\F1620"}.mdi-clipboard-text-off-outline::before{content:"\F1621"}.mdi-clipboard-text-outline::before{content:"\F0A38"}.mdi-clipboard-text-play::before{content:"\F0C5B"}.mdi-clipboard-text-play-outline::before{content:"\F0C5C"}.mdi-clipboard-text-search::before{content:"\F1622"}.mdi-clipboard-text-search-outline::before{content:"\F1623"}.mdi-clippy::before{content:"\F014F"}.mdi-clock::before{content:"\F0954"}.mdi-clock-alert::before{content:"\F0955"}.mdi-clock-alert-outline::before{content:"\F05CE"}.mdi-clock-check::before{content:"\F0FA8"}.mdi-clock-check-outline::before{content:"\F0FA9"}.mdi-clock-digital::before{content:"\F0E97"}.mdi-clock-end::before{content:"\F0151"}.mdi-clock-fast::before{content:"\F0152"}.mdi-clock-in::before{content:"\F0153"}.mdi-clock-out::before{content:"\F0154"}.mdi-clock-outline::before{content:"\F0150"}.mdi-clock-start::before{content:"\F0155"}.mdi-clock-time-eight::before{content:"\F1446"}.mdi-clock-time-eight-outline::before{content:"\F1452"}.mdi-clock-time-eleven::before{content:"\F1449"}.mdi-clock-time-eleven-outline::before{content:"\F1455"}.mdi-clock-time-five::before{content:"\F1443"}.mdi-clock-time-five-outline::before{content:"\F144F"}.mdi-clock-time-four::before{content:"\F1442"}.mdi-clock-time-four-outline::before{content:"\F144E"}.mdi-clock-time-nine::before{content:"\F1447"}.mdi-clock-time-nine-outline::before{content:"\F1453"}.mdi-clock-time-one::before{content:"\F143F"}.mdi-clock-time-one-outline::before{content:"\F144B"}.mdi-clock-time-seven::before{content:"\F1445"}.mdi-clock-time-seven-outline::before{content:"\F1451"}.mdi-clock-time-six::before{content:"\F1444"}.mdi-clock-time-six-outline::before{content:"\F1450"}.mdi-clock-time-ten::before{content:"\F1448"}.mdi-clock-time-ten-outline::before{content:"\F1454"}.mdi-clock-time-three::before{content:"\F1441"}.mdi-clock-time-three-outline::before{content:"\F144D"}.mdi-clock-time-twelve::before{content:"\F144A"}.mdi-clock-time-twelve-outline::before{content:"\F1456"}.mdi-clock-time-two::before{content:"\F1440"}.mdi-clock-time-two-outline::before{content:"\F144C"}.mdi-close::before{content:"\F0156"}.mdi-close-box::before{content:"\F0157"}.mdi-close-box-multiple::before{content:"\F0C5D"}.mdi-close-box-multiple-outline::before{content:"\F0C5E"}.mdi-close-box-outline::before{content:"\F0158"}.mdi-close-circle::before{content:"\F0159"}.mdi-close-circle-multiple::before{content:"\F062A"}.mdi-close-circle-multiple-outline::before{content:"\F0883"}.mdi-close-circle-outline::before{content:"\F015A"}.mdi-close-network::before{content:"\F015B"}.mdi-close-network-outline::before{content:"\F0C5F"}.mdi-close-octagon::before{content:"\F015C"}.mdi-close-octagon-outline::before{content:"\F015D"}.mdi-close-outline::before{content:"\F06C9"}.mdi-close-thick::before{content:"\F1398"}.mdi-closed-caption::before{content:"\F015E"}.mdi-closed-caption-outline::before{content:"\F0DBD"}.mdi-cloud::before{content:"\F015F"}.mdi-cloud-alert::before{content:"\F09E0"}.mdi-cloud-braces::before{content:"\F07B5"}.mdi-cloud-check::before{content:"\F0160"}.mdi-cloud-check-outline::before{content:"\F12CC"}.mdi-cloud-circle::before{content:"\F0161"}.mdi-cloud-download::before{content:"\F0162"}.mdi-cloud-download-outline::before{content:"\F0B7D"}.mdi-cloud-lock::before{content:"\F11F1"}.mdi-cloud-lock-outline::before{content:"\F11F2"}.mdi-cloud-off-outline::before{content:"\F0164"}.mdi-cloud-outline::before{content:"\F0163"}.mdi-cloud-print::before{content:"\F0165"}.mdi-cloud-print-outline::before{content:"\F0166"}.mdi-cloud-question::before{content:"\F0A39"}.mdi-cloud-refresh::before{content:"\F052A"}.mdi-cloud-search::before{content:"\F0956"}.mdi-cloud-search-outline::before{content:"\F0957"}.mdi-cloud-sync::before{content:"\F063F"}.mdi-cloud-sync-outline::before{content:"\F12D6"}.mdi-cloud-tags::before{content:"\F07B6"}.mdi-cloud-upload::before{content:"\F0167"}.mdi-cloud-upload-outline::before{content:"\F0B7E"}.mdi-clover::before{content:"\F0816"}.mdi-coach-lamp::before{content:"\F1020"}.mdi-coat-rack::before{content:"\F109E"}.mdi-code-array::before{content:"\F0168"}.mdi-code-braces::before{content:"\F0169"}.mdi-code-braces-box::before{content:"\F10D6"}.mdi-code-brackets::before{content:"\F016A"}.mdi-code-equal::before{content:"\F016B"}.mdi-code-greater-than::before{content:"\F016C"}.mdi-code-greater-than-or-equal::before{content:"\F016D"}.mdi-code-json::before{content:"\F0626"}.mdi-code-less-than::before{content:"\F016E"}.mdi-code-less-than-or-equal::before{content:"\F016F"}.mdi-code-not-equal::before{content:"\F0170"}.mdi-code-not-equal-variant::before{content:"\F0171"}.mdi-code-parentheses::before{content:"\F0172"}.mdi-code-parentheses-box::before{content:"\F10D7"}.mdi-code-string::before{content:"\F0173"}.mdi-code-tags::before{content:"\F0174"}.mdi-code-tags-check::before{content:"\F0694"}.mdi-codepen::before{content:"\F0175"}.mdi-coffee::before{content:"\F0176"}.mdi-coffee-maker::before{content:"\F109F"}.mdi-coffee-off::before{content:"\F0FAA"}.mdi-coffee-off-outline::before{content:"\F0FAB"}.mdi-coffee-outline::before{content:"\F06CA"}.mdi-coffee-to-go::before{content:"\F0177"}.mdi-coffee-to-go-outline::before{content:"\F130E"}.mdi-coffin::before{content:"\F0B7F"}.mdi-cog::before{content:"\F0493"}.mdi-cog-box::before{content:"\F0494"}.mdi-cog-clockwise::before{content:"\F11DD"}.mdi-cog-counterclockwise::before{content:"\F11DE"}.mdi-cog-off::before{content:"\F13CE"}.mdi-cog-off-outline::before{content:"\F13CF"}.mdi-cog-outline::before{content:"\F08BB"}.mdi-cog-refresh::before{content:"\F145E"}.mdi-cog-refresh-outline::before{content:"\F145F"}.mdi-cog-sync::before{content:"\F1460"}.mdi-cog-sync-outline::before{content:"\F1461"}.mdi-cog-transfer::before{content:"\F105B"}.mdi-cog-transfer-outline::before{content:"\F105C"}.mdi-cogs::before{content:"\F08D6"}.mdi-collage::before{content:"\F0640"}.mdi-collapse-all::before{content:"\F0AA6"}.mdi-collapse-all-outline::before{content:"\F0AA7"}.mdi-color-helper::before{content:"\F0179"}.mdi-comma::before{content:"\F0E23"}.mdi-comma-box::before{content:"\F0E2B"}.mdi-comma-box-outline::before{content:"\F0E24"}.mdi-comma-circle::before{content:"\F0E25"}.mdi-comma-circle-outline::before{content:"\F0E26"}.mdi-comment::before{content:"\F017A"}.mdi-comment-account::before{content:"\F017B"}.mdi-comment-account-outline::before{content:"\F017C"}.mdi-comment-alert::before{content:"\F017D"}.mdi-comment-alert-outline::before{content:"\F017E"}.mdi-comment-arrow-left::before{content:"\F09E1"}.mdi-comment-arrow-left-outline::before{content:"\F09E2"}.mdi-comment-arrow-right::before{content:"\F09E3"}.mdi-comment-arrow-right-outline::before{content:"\F09E4"}.mdi-comment-bookmark::before{content:"\F15AE"}.mdi-comment-bookmark-outline::before{content:"\F15AF"}.mdi-comment-check::before{content:"\F017F"}.mdi-comment-check-outline::before{content:"\F0180"}.mdi-comment-edit::before{content:"\F11BF"}.mdi-comment-edit-outline::before{content:"\F12C4"}.mdi-comment-eye::before{content:"\F0A3A"}.mdi-comment-eye-outline::before{content:"\F0A3B"}.mdi-comment-flash::before{content:"\F15B0"}.mdi-comment-flash-outline::before{content:"\F15B1"}.mdi-comment-minus::before{content:"\F15DF"}.mdi-comment-minus-outline::before{content:"\F15E0"}.mdi-comment-multiple::before{content:"\F085F"}.mdi-comment-multiple-outline::before{content:"\F0181"}.mdi-comment-off::before{content:"\F15E1"}.mdi-comment-off-outline::before{content:"\F15E2"}.mdi-comment-outline::before{content:"\F0182"}.mdi-comment-plus::before{content:"\F09E5"}.mdi-comment-plus-outline::before{content:"\F0183"}.mdi-comment-processing::before{content:"\F0184"}.mdi-comment-processing-outline::before{content:"\F0185"}.mdi-comment-question::before{content:"\F0817"}.mdi-comment-question-outline::before{content:"\F0186"}.mdi-comment-quote::before{content:"\F1021"}.mdi-comment-quote-outline::before{content:"\F1022"}.mdi-comment-remove::before{content:"\F05DE"}.mdi-comment-remove-outline::before{content:"\F0187"}.mdi-comment-search::before{content:"\F0A3C"}.mdi-comment-search-outline::before{content:"\F0A3D"}.mdi-comment-text::before{content:"\F0188"}.mdi-comment-text-multiple::before{content:"\F0860"}.mdi-comment-text-multiple-outline::before{content:"\F0861"}.mdi-comment-text-outline::before{content:"\F0189"}.mdi-compare::before{content:"\F018A"}.mdi-compare-horizontal::before{content:"\F1492"}.mdi-compare-vertical::before{content:"\F1493"}.mdi-compass::before{content:"\F018B"}.mdi-compass-off::before{content:"\F0B80"}.mdi-compass-off-outline::before{content:"\F0B81"}.mdi-compass-outline::before{content:"\F018C"}.mdi-compass-rose::before{content:"\F1382"}.mdi-concourse-ci::before{content:"\F10A0"}.mdi-connection::before{content:"\F1616"}.mdi-console::before{content:"\F018D"}.mdi-console-line::before{content:"\F07B7"}.mdi-console-network::before{content:"\F08A9"}.mdi-console-network-outline::before{content:"\F0C60"}.mdi-consolidate::before{content:"\F10D8"}.mdi-contactless-payment::before{content:"\F0D6A"}.mdi-contactless-payment-circle::before{content:"\F0321"}.mdi-contactless-payment-circle-outline::before{content:"\F0408"}.mdi-contacts::before{content:"\F06CB"}.mdi-contacts-outline::before{content:"\F05B8"}.mdi-contain::before{content:"\F0A3E"}.mdi-contain-end::before{content:"\F0A3F"}.mdi-contain-start::before{content:"\F0A40"}.mdi-content-copy::before{content:"\F018F"}.mdi-content-cut::before{content:"\F0190"}.mdi-content-duplicate::before{content:"\F0191"}.mdi-content-paste::before{content:"\F0192"}.mdi-content-save::before{content:"\F0193"}.mdi-content-save-alert::before{content:"\F0F42"}.mdi-content-save-alert-outline::before{content:"\F0F43"}.mdi-content-save-all::before{content:"\F0194"}.mdi-content-save-all-outline::before{content:"\F0F44"}.mdi-content-save-cog::before{content:"\F145B"}.mdi-content-save-cog-outline::before{content:"\F145C"}.mdi-content-save-edit::before{content:"\F0CFB"}.mdi-content-save-edit-outline::before{content:"\F0CFC"}.mdi-content-save-move::before{content:"\F0E27"}.mdi-content-save-move-outline::before{content:"\F0E28"}.mdi-content-save-off::before{content:"\F1643"}.mdi-content-save-off-outline::before{content:"\F1644"}.mdi-content-save-outline::before{content:"\F0818"}.mdi-content-save-settings::before{content:"\F061B"}.mdi-content-save-settings-outline::before{content:"\F0B2E"}.mdi-contrast::before{content:"\F0195"}.mdi-contrast-box::before{content:"\F0196"}.mdi-contrast-circle::before{content:"\F0197"}.mdi-controller-classic::before{content:"\F0B82"}.mdi-controller-classic-outline::before{content:"\F0B83"}.mdi-cookie::before{content:"\F0198"}.mdi-cookie-alert::before{content:"\F16D0"}.mdi-cookie-alert-outline::before{content:"\F16D1"}.mdi-cookie-check::before{content:"\F16D2"}.mdi-cookie-check-outline::before{content:"\F16D3"}.mdi-cookie-cog::before{content:"\F16D4"}.mdi-cookie-cog-outline::before{content:"\F16D5"}.mdi-cookie-minus::before{content:"\F16DA"}.mdi-cookie-minus-outline::before{content:"\F16DB"}.mdi-cookie-outline::before{content:"\F16DE"}.mdi-cookie-plus::before{content:"\F16D6"}.mdi-cookie-plus-outline::before{content:"\F16D7"}.mdi-cookie-remove::before{content:"\F16D8"}.mdi-cookie-remove-outline::before{content:"\F16D9"}.mdi-cookie-settings::before{content:"\F16DC"}.mdi-cookie-settings-outline::before{content:"\F16DD"}.mdi-coolant-temperature::before{content:"\F03C8"}.mdi-copyright::before{content:"\F05E6"}.mdi-cordova::before{content:"\F0958"}.mdi-corn::before{content:"\F07B8"}.mdi-corn-off::before{content:"\F13EF"}.mdi-cosine-wave::before{content:"\F1479"}.mdi-counter::before{content:"\F0199"}.mdi-cow::before{content:"\F019A"}.mdi-cpu-32-bit::before{content:"\F0EDF"}.mdi-cpu-64-bit::before{content:"\F0EE0"}.mdi-crane::before{content:"\F0862"}.mdi-creation::before{content:"\F0674"}.mdi-creative-commons::before{content:"\F0D6B"}.mdi-credit-card::before{content:"\F0FEF"}.mdi-credit-card-check::before{content:"\F13D0"}.mdi-credit-card-check-outline::before{content:"\F13D1"}.mdi-credit-card-clock::before{content:"\F0EE1"}.mdi-credit-card-clock-outline::before{content:"\F0EE2"}.mdi-credit-card-marker::before{content:"\F06A8"}.mdi-credit-card-marker-outline::before{content:"\F0DBE"}.mdi-credit-card-minus::before{content:"\F0FAC"}.mdi-credit-card-minus-outline::before{content:"\F0FAD"}.mdi-credit-card-multiple::before{content:"\F0FF0"}.mdi-credit-card-multiple-outline::before{content:"\F019C"}.mdi-credit-card-off::before{content:"\F0FF1"}.mdi-credit-card-off-outline::before{content:"\F05E4"}.mdi-credit-card-outline::before{content:"\F019B"}.mdi-credit-card-plus::before{content:"\F0FF2"}.mdi-credit-card-plus-outline::before{content:"\F0676"}.mdi-credit-card-refresh::before{content:"\F1645"}.mdi-credit-card-refresh-outline::before{content:"\F1646"}.mdi-credit-card-refund::before{content:"\F0FF3"}.mdi-credit-card-refund-outline::before{content:"\F0AA8"}.mdi-credit-card-remove::before{content:"\F0FAE"}.mdi-credit-card-remove-outline::before{content:"\F0FAF"}.mdi-credit-card-scan::before{content:"\F0FF4"}.mdi-credit-card-scan-outline::before{content:"\F019D"}.mdi-credit-card-search::before{content:"\F1647"}.mdi-credit-card-search-outline::before{content:"\F1648"}.mdi-credit-card-settings::before{content:"\F0FF5"}.mdi-credit-card-settings-outline::before{content:"\F08D7"}.mdi-credit-card-sync::before{content:"\F1649"}.mdi-credit-card-sync-outline::before{content:"\F164A"}.mdi-credit-card-wireless::before{content:"\F0802"}.mdi-credit-card-wireless-off::before{content:"\F057A"}.mdi-credit-card-wireless-off-outline::before{content:"\F057B"}.mdi-credit-card-wireless-outline::before{content:"\F0D6C"}.mdi-cricket::before{content:"\F0D6D"}.mdi-crop::before{content:"\F019E"}.mdi-crop-free::before{content:"\F019F"}.mdi-crop-landscape::before{content:"\F01A0"}.mdi-crop-portrait::before{content:"\F01A1"}.mdi-crop-rotate::before{content:"\F0696"}.mdi-crop-square::before{content:"\F01A2"}.mdi-crosshairs::before{content:"\F01A3"}.mdi-crosshairs-gps::before{content:"\F01A4"}.mdi-crosshairs-off::before{content:"\F0F45"}.mdi-crosshairs-question::before{content:"\F1136"}.mdi-crown::before{content:"\F01A5"}.mdi-crown-outline::before{content:"\F11D0"}.mdi-cryengine::before{content:"\F0959"}.mdi-crystal-ball::before{content:"\F0B2F"}.mdi-cube::before{content:"\F01A6"}.mdi-cube-off::before{content:"\F141C"}.mdi-cube-off-outline::before{content:"\F141D"}.mdi-cube-outline::before{content:"\F01A7"}.mdi-cube-scan::before{content:"\F0B84"}.mdi-cube-send::before{content:"\F01A8"}.mdi-cube-unfolded::before{content:"\F01A9"}.mdi-cup::before{content:"\F01AA"}.mdi-cup-off::before{content:"\F05E5"}.mdi-cup-off-outline::before{content:"\F137D"}.mdi-cup-outline::before{content:"\F130F"}.mdi-cup-water::before{content:"\F01AB"}.mdi-cupboard::before{content:"\F0F46"}.mdi-cupboard-outline::before{content:"\F0F47"}.mdi-cupcake::before{content:"\F095A"}.mdi-curling::before{content:"\F0863"}.mdi-currency-bdt::before{content:"\F0864"}.mdi-currency-brl::before{content:"\F0B85"}.mdi-currency-btc::before{content:"\F01AC"}.mdi-currency-cny::before{content:"\F07BA"}.mdi-currency-eth::before{content:"\F07BB"}.mdi-currency-eur::before{content:"\F01AD"}.mdi-currency-eur-off::before{content:"\F1315"}.mdi-currency-gbp::before{content:"\F01AE"}.mdi-currency-ils::before{content:"\F0C61"}.mdi-currency-inr::before{content:"\F01AF"}.mdi-currency-jpy::before{content:"\F07BC"}.mdi-currency-krw::before{content:"\F07BD"}.mdi-currency-kzt::before{content:"\F0865"}.mdi-currency-mnt::before{content:"\F1512"}.mdi-currency-ngn::before{content:"\F01B0"}.mdi-currency-php::before{content:"\F09E6"}.mdi-currency-rial::before{content:"\F0E9C"}.mdi-currency-rub::before{content:"\F01B1"}.mdi-currency-sign::before{content:"\F07BE"}.mdi-currency-try::before{content:"\F01B2"}.mdi-currency-twd::before{content:"\F07BF"}.mdi-currency-usd::before{content:"\F01C1"}.mdi-currency-usd-circle::before{content:"\F116B"}.mdi-currency-usd-circle-outline::before{content:"\F0178"}.mdi-currency-usd-off::before{content:"\F067A"}.mdi-current-ac::before{content:"\F1480"}.mdi-current-dc::before{content:"\F095C"}.mdi-cursor-default::before{content:"\F01C0"}.mdi-cursor-default-click::before{content:"\F0CFD"}.mdi-cursor-default-click-outline::before{content:"\F0CFE"}.mdi-cursor-default-gesture::before{content:"\F1127"}.mdi-cursor-default-gesture-outline::before{content:"\F1128"}.mdi-cursor-default-outline::before{content:"\F01BF"}.mdi-cursor-move::before{content:"\F01BE"}.mdi-cursor-pointer::before{content:"\F01BD"}.mdi-cursor-text::before{content:"\F05E7"}.mdi-dance-ballroom::before{content:"\F15FB"}.mdi-dance-pole::before{content:"\F1578"}.mdi-data-matrix::before{content:"\F153C"}.mdi-data-matrix-edit::before{content:"\F153D"}.mdi-data-matrix-minus::before{content:"\F153E"}.mdi-data-matrix-plus::before{content:"\F153F"}.mdi-data-matrix-remove::before{content:"\F1540"}.mdi-data-matrix-scan::before{content:"\F1541"}.mdi-database::before{content:"\F01BC"}.mdi-database-alert::before{content:"\F163A"}.mdi-database-alert-outline::before{content:"\F1624"}.mdi-database-arrow-down::before{content:"\F163B"}.mdi-database-arrow-down-outline::before{content:"\F1625"}.mdi-database-arrow-left::before{content:"\F163C"}.mdi-database-arrow-left-outline::before{content:"\F1626"}.mdi-database-arrow-right::before{content:"\F163D"}.mdi-database-arrow-right-outline::before{content:"\F1627"}.mdi-database-arrow-up::before{content:"\F163E"}.mdi-database-arrow-up-outline::before{content:"\F1628"}.mdi-database-check::before{content:"\F0AA9"}.mdi-database-check-outline::before{content:"\F1629"}.mdi-database-clock::before{content:"\F163F"}.mdi-database-clock-outline::before{content:"\F162A"}.mdi-database-cog::before{content:"\F164B"}.mdi-database-cog-outline::before{content:"\F164C"}.mdi-database-edit::before{content:"\F0B86"}.mdi-database-edit-outline::before{content:"\F162B"}.mdi-database-export::before{content:"\F095E"}.mdi-database-export-outline::before{content:"\F162C"}.mdi-database-import::before{content:"\F095D"}.mdi-database-import-outline::before{content:"\F162D"}.mdi-database-lock::before{content:"\F0AAA"}.mdi-database-lock-outline::before{content:"\F162E"}.mdi-database-marker::before{content:"\F12F6"}.mdi-database-marker-outline::before{content:"\F162F"}.mdi-database-minus::before{content:"\F01BB"}.mdi-database-minus-outline::before{content:"\F1630"}.mdi-database-off::before{content:"\F1640"}.mdi-database-off-outline::before{content:"\F1631"}.mdi-database-outline::before{content:"\F1632"}.mdi-database-plus::before{content:"\F01BA"}.mdi-database-plus-outline::before{content:"\F1633"}.mdi-database-refresh::before{content:"\F05C2"}.mdi-database-refresh-outline::before{content:"\F1634"}.mdi-database-remove::before{content:"\F0D00"}.mdi-database-remove-outline::before{content:"\F1635"}.mdi-database-search::before{content:"\F0866"}.mdi-database-search-outline::before{content:"\F1636"}.mdi-database-settings::before{content:"\F0D01"}.mdi-database-settings-outline::before{content:"\F1637"}.mdi-database-sync::before{content:"\F0CFF"}.mdi-database-sync-outline::before{content:"\F1638"}.mdi-death-star::before{content:"\F08D8"}.mdi-death-star-variant::before{content:"\F08D9"}.mdi-deathly-hallows::before{content:"\F0B87"}.mdi-debian::before{content:"\F08DA"}.mdi-debug-step-into::before{content:"\F01B9"}.mdi-debug-step-out::before{content:"\F01B8"}.mdi-debug-step-over::before{content:"\F01B7"}.mdi-decagram::before{content:"\F076C"}.mdi-decagram-outline::before{content:"\F076D"}.mdi-decimal::before{content:"\F10A1"}.mdi-decimal-comma::before{content:"\F10A2"}.mdi-decimal-comma-decrease::before{content:"\F10A3"}.mdi-decimal-comma-increase::before{content:"\F10A4"}.mdi-decimal-decrease::before{content:"\F01B6"}.mdi-decimal-increase::before{content:"\F01B5"}.mdi-delete::before{content:"\F01B4"}.mdi-delete-alert::before{content:"\F10A5"}.mdi-delete-alert-outline::before{content:"\F10A6"}.mdi-delete-circle::before{content:"\F0683"}.mdi-delete-circle-outline::before{content:"\F0B88"}.mdi-delete-clock::before{content:"\F1556"}.mdi-delete-clock-outline::before{content:"\F1557"}.mdi-delete-empty::before{content:"\F06CC"}.mdi-delete-empty-outline::before{content:"\F0E9D"}.mdi-delete-forever::before{content:"\F05E8"}.mdi-delete-forever-outline::before{content:"\F0B89"}.mdi-delete-off::before{content:"\F10A7"}.mdi-delete-off-outline::before{content:"\F10A8"}.mdi-delete-outline::before{content:"\F09E7"}.mdi-delete-restore::before{content:"\F0819"}.mdi-delete-sweep::before{content:"\F05E9"}.mdi-delete-sweep-outline::before{content:"\F0C62"}.mdi-delete-variant::before{content:"\F01B3"}.mdi-delta::before{content:"\F01C2"}.mdi-desk::before{content:"\F1239"}.mdi-desk-lamp::before{content:"\F095F"}.mdi-deskphone::before{content:"\F01C3"}.mdi-desktop-classic::before{content:"\F07C0"}.mdi-desktop-mac::before{content:"\F01C4"}.mdi-desktop-mac-dashboard::before{content:"\F09E8"}.mdi-desktop-tower::before{content:"\F01C5"}.mdi-desktop-tower-monitor::before{content:"\F0AAB"}.mdi-details::before{content:"\F01C6"}.mdi-dev-to::before{content:"\F0D6E"}.mdi-developer-board::before{content:"\F0697"}.mdi-deviantart::before{content:"\F01C7"}.mdi-devices::before{content:"\F0FB0"}.mdi-diabetes::before{content:"\F1126"}.mdi-dialpad::before{content:"\F061C"}.mdi-diameter::before{content:"\F0C63"}.mdi-diameter-outline::before{content:"\F0C64"}.mdi-diameter-variant::before{content:"\F0C65"}.mdi-diamond::before{content:"\F0B8A"}.mdi-diamond-outline::before{content:"\F0B8B"}.mdi-diamond-stone::before{content:"\F01C8"}.mdi-dice-1::before{content:"\F01CA"}.mdi-dice-1-outline::before{content:"\F114A"}.mdi-dice-2::before{content:"\F01CB"}.mdi-dice-2-outline::before{content:"\F114B"}.mdi-dice-3::before{content:"\F01CC"}.mdi-dice-3-outline::before{content:"\F114C"}.mdi-dice-4::before{content:"\F01CD"}.mdi-dice-4-outline::before{content:"\F114D"}.mdi-dice-5::before{content:"\F01CE"}.mdi-dice-5-outline::before{content:"\F114E"}.mdi-dice-6::before{content:"\F01CF"}.mdi-dice-6-outline::before{content:"\F114F"}.mdi-dice-d10::before{content:"\F1153"}.mdi-dice-d10-outline::before{content:"\F076F"}.mdi-dice-d12::before{content:"\F1154"}.mdi-dice-d12-outline::before{content:"\F0867"}.mdi-dice-d20::before{content:"\F1155"}.mdi-dice-d20-outline::before{content:"\F05EA"}.mdi-dice-d4::before{content:"\F1150"}.mdi-dice-d4-outline::before{content:"\F05EB"}.mdi-dice-d6::before{content:"\F1151"}.mdi-dice-d6-outline::before{content:"\F05ED"}.mdi-dice-d8::before{content:"\F1152"}.mdi-dice-d8-outline::before{content:"\F05EC"}.mdi-dice-multiple::before{content:"\F076E"}.mdi-dice-multiple-outline::before{content:"\F1156"}.mdi-digital-ocean::before{content:"\F1237"}.mdi-dip-switch::before{content:"\F07C1"}.mdi-directions::before{content:"\F01D0"}.mdi-directions-fork::before{content:"\F0641"}.mdi-disc::before{content:"\F05EE"}.mdi-disc-alert::before{content:"\F01D1"}.mdi-disc-player::before{content:"\F0960"}.mdi-discord::before{content:"\F066F"}.mdi-dishwasher::before{content:"\F0AAC"}.mdi-dishwasher-alert::before{content:"\F11B8"}.mdi-dishwasher-off::before{content:"\F11B9"}.mdi-disqus::before{content:"\F01D2"}.mdi-distribute-horizontal-center::before{content:"\F11C9"}.mdi-distribute-horizontal-left::before{content:"\F11C8"}.mdi-distribute-horizontal-right::before{content:"\F11CA"}.mdi-distribute-vertical-bottom::before{content:"\F11CB"}.mdi-distribute-vertical-center::before{content:"\F11CC"}.mdi-distribute-vertical-top::before{content:"\F11CD"}.mdi-diving-flippers::before{content:"\F0DBF"}.mdi-diving-helmet::before{content:"\F0DC0"}.mdi-diving-scuba::before{content:"\F0DC1"}.mdi-diving-scuba-flag::before{content:"\F0DC2"}.mdi-diving-scuba-tank::before{content:"\F0DC3"}.mdi-diving-scuba-tank-multiple::before{content:"\F0DC4"}.mdi-diving-snorkel::before{content:"\F0DC5"}.mdi-division::before{content:"\F01D4"}.mdi-division-box::before{content:"\F01D5"}.mdi-dlna::before{content:"\F0A41"}.mdi-dna::before{content:"\F0684"}.mdi-dns::before{content:"\F01D6"}.mdi-dns-outline::before{content:"\F0B8C"}.mdi-do-not-disturb::before{content:"\F0698"}.mdi-do-not-disturb-off::before{content:"\F0699"}.mdi-dock-bottom::before{content:"\F10A9"}.mdi-dock-left::before{content:"\F10AA"}.mdi-dock-right::before{content:"\F10AB"}.mdi-dock-top::before{content:"\F1513"}.mdi-dock-window::before{content:"\F10AC"}.mdi-docker::before{content:"\F0868"}.mdi-doctor::before{content:"\F0A42"}.mdi-dog::before{content:"\F0A43"}.mdi-dog-service::before{content:"\F0AAD"}.mdi-dog-side::before{content:"\F0A44"}.mdi-dolby::before{content:"\F06B3"}.mdi-dolly::before{content:"\F0E9E"}.mdi-domain::before{content:"\F01D7"}.mdi-domain-off::before{content:"\F0D6F"}.mdi-domain-plus::before{content:"\F10AD"}.mdi-domain-remove::before{content:"\F10AE"}.mdi-dome-light::before{content:"\F141E"}.mdi-domino-mask::before{content:"\F1023"}.mdi-donkey::before{content:"\F07C2"}.mdi-door::before{content:"\F081A"}.mdi-door-closed::before{content:"\F081B"}.mdi-door-closed-lock::before{content:"\F10AF"}.mdi-door-open::before{content:"\F081C"}.mdi-doorbell::before{content:"\F12E6"}.mdi-doorbell-video::before{content:"\F0869"}.mdi-dot-net::before{content:"\F0AAE"}.mdi-dots-grid::before{content:"\F15FC"}.mdi-dots-hexagon::before{content:"\F15FF"}.mdi-dots-horizontal::before{content:"\F01D8"}.mdi-dots-horizontal-circle::before{content:"\F07C3"}.mdi-dots-horizontal-circle-outline::before{content:"\F0B8D"}.mdi-dots-square::before{content:"\F15FD"}.mdi-dots-triangle::before{content:"\F15FE"}.mdi-dots-vertical::before{content:"\F01D9"}.mdi-dots-vertical-circle::before{content:"\F07C4"}.mdi-dots-vertical-circle-outline::before{content:"\F0B8E"}.mdi-douban::before{content:"\F069A"}.mdi-download::before{content:"\F01DA"}.mdi-download-box::before{content:"\F1462"}.mdi-download-box-outline::before{content:"\F1463"}.mdi-download-circle::before{content:"\F1464"}.mdi-download-circle-outline::before{content:"\F1465"}.mdi-download-lock::before{content:"\F1320"}.mdi-download-lock-outline::before{content:"\F1321"}.mdi-download-multiple::before{content:"\F09E9"}.mdi-download-network::before{content:"\F06F4"}.mdi-download-network-outline::before{content:"\F0C66"}.mdi-download-off::before{content:"\F10B0"}.mdi-download-off-outline::before{content:"\F10B1"}.mdi-download-outline::before{content:"\F0B8F"}.mdi-drag::before{content:"\F01DB"}.mdi-drag-horizontal::before{content:"\F01DC"}.mdi-drag-horizontal-variant::before{content:"\F12F0"}.mdi-drag-variant::before{content:"\F0B90"}.mdi-drag-vertical::before{content:"\F01DD"}.mdi-drag-vertical-variant::before{content:"\F12F1"}.mdi-drama-masks::before{content:"\F0D02"}.mdi-draw::before{content:"\F0F49"}.mdi-drawing::before{content:"\F01DE"}.mdi-drawing-box::before{content:"\F01DF"}.mdi-dresser::before{content:"\F0F4A"}.mdi-dresser-outline::before{content:"\F0F4B"}.mdi-drone::before{content:"\F01E2"}.mdi-dropbox::before{content:"\F01E3"}.mdi-drupal::before{content:"\F01E4"}.mdi-duck::before{content:"\F01E5"}.mdi-dumbbell::before{content:"\F01E6"}.mdi-dump-truck::before{content:"\F0C67"}.mdi-ear-hearing::before{content:"\F07C5"}.mdi-ear-hearing-off::before{content:"\F0A45"}.mdi-earth::before{content:"\F01E7"}.mdi-earth-arrow-right::before{content:"\F1311"}.mdi-earth-box::before{content:"\F06CD"}.mdi-earth-box-minus::before{content:"\F1407"}.mdi-earth-box-off::before{content:"\F06CE"}.mdi-earth-box-plus::before{content:"\F1406"}.mdi-earth-box-remove::before{content:"\F1408"}.mdi-earth-minus::before{content:"\F1404"}.mdi-earth-off::before{content:"\F01E8"}.mdi-earth-plus::before{content:"\F1403"}.mdi-earth-remove::before{content:"\F1405"}.mdi-egg::before{content:"\F0AAF"}.mdi-egg-easter::before{content:"\F0AB0"}.mdi-egg-off::before{content:"\F13F0"}.mdi-egg-off-outline::before{content:"\F13F1"}.mdi-egg-outline::before{content:"\F13F2"}.mdi-eiffel-tower::before{content:"\F156B"}.mdi-eight-track::before{content:"\F09EA"}.mdi-eject::before{content:"\F01EA"}.mdi-eject-outline::before{content:"\F0B91"}.mdi-electric-switch::before{content:"\F0E9F"}.mdi-electric-switch-closed::before{content:"\F10D9"}.mdi-electron-framework::before{content:"\F1024"}.mdi-elephant::before{content:"\F07C6"}.mdi-elevation-decline::before{content:"\F01EB"}.mdi-elevation-rise::before{content:"\F01EC"}.mdi-elevator::before{content:"\F01ED"}.mdi-elevator-down::before{content:"\F12C2"}.mdi-elevator-passenger::before{content:"\F1381"}.mdi-elevator-up::before{content:"\F12C1"}.mdi-ellipse::before{content:"\F0EA0"}.mdi-ellipse-outline::before{content:"\F0EA1"}.mdi-email::before{content:"\F01EE"}.mdi-email-alert::before{content:"\F06CF"}.mdi-email-alert-outline::before{content:"\F0D42"}.mdi-email-box::before{content:"\F0D03"}.mdi-email-check::before{content:"\F0AB1"}.mdi-email-check-outline::before{content:"\F0AB2"}.mdi-email-edit::before{content:"\F0EE3"}.mdi-email-edit-outline::before{content:"\F0EE4"}.mdi-email-lock::before{content:"\F01F1"}.mdi-email-mark-as-unread::before{content:"\F0B92"}.mdi-email-minus::before{content:"\F0EE5"}.mdi-email-minus-outline::before{content:"\F0EE6"}.mdi-email-multiple::before{content:"\F0EE7"}.mdi-email-multiple-outline::before{content:"\F0EE8"}.mdi-email-newsletter::before{content:"\F0FB1"}.mdi-email-off::before{content:"\F13E3"}.mdi-email-off-outline::before{content:"\F13E4"}.mdi-email-open::before{content:"\F01EF"}.mdi-email-open-multiple::before{content:"\F0EE9"}.mdi-email-open-multiple-outline::before{content:"\F0EEA"}.mdi-email-open-outline::before{content:"\F05EF"}.mdi-email-outline::before{content:"\F01F0"}.mdi-email-plus::before{content:"\F09EB"}.mdi-email-plus-outline::before{content:"\F09EC"}.mdi-email-receive::before{content:"\F10DA"}.mdi-email-receive-outline::before{content:"\F10DB"}.mdi-email-remove::before{content:"\F1661"}.mdi-email-remove-outline::before{content:"\F1662"}.mdi-email-search::before{content:"\F0961"}.mdi-email-search-outline::before{content:"\F0962"}.mdi-email-send::before{content:"\F10DC"}.mdi-email-send-outline::before{content:"\F10DD"}.mdi-email-sync::before{content:"\F12C7"}.mdi-email-sync-outline::before{content:"\F12C8"}.mdi-email-variant::before{content:"\F05F0"}.mdi-ember::before{content:"\F0B30"}.mdi-emby::before{content:"\F06B4"}.mdi-emoticon::before{content:"\F0C68"}.mdi-emoticon-angry::before{content:"\F0C69"}.mdi-emoticon-angry-outline::before{content:"\F0C6A"}.mdi-emoticon-confused::before{content:"\F10DE"}.mdi-emoticon-confused-outline::before{content:"\F10DF"}.mdi-emoticon-cool::before{content:"\F0C6B"}.mdi-emoticon-cool-outline::before{content:"\F01F3"}.mdi-emoticon-cry::before{content:"\F0C6C"}.mdi-emoticon-cry-outline::before{content:"\F0C6D"}.mdi-emoticon-dead::before{content:"\F0C6E"}.mdi-emoticon-dead-outline::before{content:"\F069B"}.mdi-emoticon-devil::before{content:"\F0C6F"}.mdi-emoticon-devil-outline::before{content:"\F01F4"}.mdi-emoticon-excited::before{content:"\F0C70"}.mdi-emoticon-excited-outline::before{content:"\F069C"}.mdi-emoticon-frown::before{content:"\F0F4C"}.mdi-emoticon-frown-outline::before{content:"\F0F4D"}.mdi-emoticon-happy::before{content:"\F0C71"}.mdi-emoticon-happy-outline::before{content:"\F01F5"}.mdi-emoticon-kiss::before{content:"\F0C72"}.mdi-emoticon-kiss-outline::before{content:"\F0C73"}.mdi-emoticon-lol::before{content:"\F1214"}.mdi-emoticon-lol-outline::before{content:"\F1215"}.mdi-emoticon-neutral::before{content:"\F0C74"}.mdi-emoticon-neutral-outline::before{content:"\F01F6"}.mdi-emoticon-outline::before{content:"\F01F2"}.mdi-emoticon-poop::before{content:"\F01F7"}.mdi-emoticon-poop-outline::before{content:"\F0C75"}.mdi-emoticon-sad::before{content:"\F0C76"}.mdi-emoticon-sad-outline::before{content:"\F01F8"}.mdi-emoticon-sick::before{content:"\F157C"}.mdi-emoticon-sick-outline::before{content:"\F157D"}.mdi-emoticon-tongue::before{content:"\F01F9"}.mdi-emoticon-tongue-outline::before{content:"\F0C77"}.mdi-emoticon-wink::before{content:"\F0C78"}.mdi-emoticon-wink-outline::before{content:"\F0C79"}.mdi-engine::before{content:"\F01FA"}.mdi-engine-off::before{content:"\F0A46"}.mdi-engine-off-outline::before{content:"\F0A47"}.mdi-engine-outline::before{content:"\F01FB"}.mdi-epsilon::before{content:"\F10E0"}.mdi-equal::before{content:"\F01FC"}.mdi-equal-box::before{content:"\F01FD"}.mdi-equalizer::before{content:"\F0EA2"}.mdi-equalizer-outline::before{content:"\F0EA3"}.mdi-eraser::before{content:"\F01FE"}.mdi-eraser-variant::before{content:"\F0642"}.mdi-escalator::before{content:"\F01FF"}.mdi-escalator-box::before{content:"\F1399"}.mdi-escalator-down::before{content:"\F12C0"}.mdi-escalator-up::before{content:"\F12BF"}.mdi-eslint::before{content:"\F0C7A"}.mdi-et::before{content:"\F0AB3"}.mdi-ethereum::before{content:"\F086A"}.mdi-ethernet::before{content:"\F0200"}.mdi-ethernet-cable::before{content:"\F0201"}.mdi-ethernet-cable-off::before{content:"\F0202"}.mdi-ev-plug-ccs1::before{content:"\F1519"}.mdi-ev-plug-ccs2::before{content:"\F151A"}.mdi-ev-plug-chademo::before{content:"\F151B"}.mdi-ev-plug-tesla::before{content:"\F151C"}.mdi-ev-plug-type1::before{content:"\F151D"}.mdi-ev-plug-type2::before{content:"\F151E"}.mdi-ev-station::before{content:"\F05F1"}.mdi-evernote::before{content:"\F0204"}.mdi-excavator::before{content:"\F1025"}.mdi-exclamation::before{content:"\F0205"}.mdi-exclamation-thick::before{content:"\F1238"}.mdi-exit-run::before{content:"\F0A48"}.mdi-exit-to-app::before{content:"\F0206"}.mdi-expand-all::before{content:"\F0AB4"}.mdi-expand-all-outline::before{content:"\F0AB5"}.mdi-expansion-card::before{content:"\F08AE"}.mdi-expansion-card-variant::before{content:"\F0FB2"}.mdi-exponent::before{content:"\F0963"}.mdi-exponent-box::before{content:"\F0964"}.mdi-export::before{content:"\F0207"}.mdi-export-variant::before{content:"\F0B93"}.mdi-eye::before{content:"\F0208"}.mdi-eye-check::before{content:"\F0D04"}.mdi-eye-check-outline::before{content:"\F0D05"}.mdi-eye-circle::before{content:"\F0B94"}.mdi-eye-circle-outline::before{content:"\F0B95"}.mdi-eye-minus::before{content:"\F1026"}.mdi-eye-minus-outline::before{content:"\F1027"}.mdi-eye-off::before{content:"\F0209"}.mdi-eye-off-outline::before{content:"\F06D1"}.mdi-eye-outline::before{content:"\F06D0"}.mdi-eye-plus::before{content:"\F086B"}.mdi-eye-plus-outline::before{content:"\F086C"}.mdi-eye-remove::before{content:"\F15E3"}.mdi-eye-remove-outline::before{content:"\F15E4"}.mdi-eye-settings::before{content:"\F086D"}.mdi-eye-settings-outline::before{content:"\F086E"}.mdi-eyedropper::before{content:"\F020A"}.mdi-eyedropper-minus::before{content:"\F13DD"}.mdi-eyedropper-off::before{content:"\F13DF"}.mdi-eyedropper-plus::before{content:"\F13DC"}.mdi-eyedropper-remove::before{content:"\F13DE"}.mdi-eyedropper-variant::before{content:"\F020B"}.mdi-face::before{content:"\F0643"}.mdi-face-agent::before{content:"\F0D70"}.mdi-face-mask::before{content:"\F1586"}.mdi-face-mask-outline::before{content:"\F1587"}.mdi-face-outline::before{content:"\F0B96"}.mdi-face-profile::before{content:"\F0644"}.mdi-face-profile-woman::before{content:"\F1076"}.mdi-face-recognition::before{content:"\F0C7B"}.mdi-face-shimmer::before{content:"\F15CC"}.mdi-face-shimmer-outline::before{content:"\F15CD"}.mdi-face-woman::before{content:"\F1077"}.mdi-face-woman-outline::before{content:"\F1078"}.mdi-face-woman-shimmer::before{content:"\F15CE"}.mdi-face-woman-shimmer-outline::before{content:"\F15CF"}.mdi-facebook::before{content:"\F020C"}.mdi-facebook-gaming::before{content:"\F07DD"}.mdi-facebook-messenger::before{content:"\F020E"}.mdi-facebook-workplace::before{content:"\F0B31"}.mdi-factory::before{content:"\F020F"}.mdi-family-tree::before{content:"\F160E"}.mdi-fan::before{content:"\F0210"}.mdi-fan-alert::before{content:"\F146C"}.mdi-fan-chevron-down::before{content:"\F146D"}.mdi-fan-chevron-up::before{content:"\F146E"}.mdi-fan-minus::before{content:"\F1470"}.mdi-fan-off::before{content:"\F081D"}.mdi-fan-plus::before{content:"\F146F"}.mdi-fan-remove::before{content:"\F1471"}.mdi-fan-speed-1::before{content:"\F1472"}.mdi-fan-speed-2::before{content:"\F1473"}.mdi-fan-speed-3::before{content:"\F1474"}.mdi-fast-forward::before{content:"\F0211"}.mdi-fast-forward-10::before{content:"\F0D71"}.mdi-fast-forward-30::before{content:"\F0D06"}.mdi-fast-forward-5::before{content:"\F11F8"}.mdi-fast-forward-60::before{content:"\F160B"}.mdi-fast-forward-outline::before{content:"\F06D2"}.mdi-fax::before{content:"\F0212"}.mdi-feather::before{content:"\F06D3"}.mdi-feature-search::before{content:"\F0A49"}.mdi-feature-search-outline::before{content:"\F0A4A"}.mdi-fedora::before{content:"\F08DB"}.mdi-fencing::before{content:"\F14C1"}.mdi-ferris-wheel::before{content:"\F0EA4"}.mdi-ferry::before{content:"\F0213"}.mdi-file::before{content:"\F0214"}.mdi-file-account::before{content:"\F073B"}.mdi-file-account-outline::before{content:"\F1028"}.mdi-file-alert::before{content:"\F0A4B"}.mdi-file-alert-outline::before{content:"\F0A4C"}.mdi-file-cabinet::before{content:"\F0AB6"}.mdi-file-cad::before{content:"\F0EEB"}.mdi-file-cad-box::before{content:"\F0EEC"}.mdi-file-cancel::before{content:"\F0DC6"}.mdi-file-cancel-outline::before{content:"\F0DC7"}.mdi-file-certificate::before{content:"\F1186"}.mdi-file-certificate-outline::before{content:"\F1187"}.mdi-file-chart::before{content:"\F0215"}.mdi-file-chart-outline::before{content:"\F1029"}.mdi-file-check::before{content:"\F0216"}.mdi-file-check-outline::before{content:"\F0E29"}.mdi-file-clock::before{content:"\F12E1"}.mdi-file-clock-outline::before{content:"\F12E2"}.mdi-file-cloud::before{content:"\F0217"}.mdi-file-cloud-outline::before{content:"\F102A"}.mdi-file-code::before{content:"\F022E"}.mdi-file-code-outline::before{content:"\F102B"}.mdi-file-cog::before{content:"\F107B"}.mdi-file-cog-outline::before{content:"\F107C"}.mdi-file-compare::before{content:"\F08AA"}.mdi-file-delimited::before{content:"\F0218"}.mdi-file-delimited-outline::before{content:"\F0EA5"}.mdi-file-document::before{content:"\F0219"}.mdi-file-document-edit::before{content:"\F0DC8"}.mdi-file-document-edit-outline::before{content:"\F0DC9"}.mdi-file-document-multiple::before{content:"\F1517"}.mdi-file-document-multiple-outline::before{content:"\F1518"}.mdi-file-document-outline::before{content:"\F09EE"}.mdi-file-download::before{content:"\F0965"}.mdi-file-download-outline::before{content:"\F0966"}.mdi-file-edit::before{content:"\F11E7"}.mdi-file-edit-outline::before{content:"\F11E8"}.mdi-file-excel::before{content:"\F021B"}.mdi-file-excel-box::before{content:"\F021C"}.mdi-file-excel-box-outline::before{content:"\F102C"}.mdi-file-excel-outline::before{content:"\F102D"}.mdi-file-export::before{content:"\F021D"}.mdi-file-export-outline::before{content:"\F102E"}.mdi-file-eye::before{content:"\F0DCA"}.mdi-file-eye-outline::before{content:"\F0DCB"}.mdi-file-find::before{content:"\F021E"}.mdi-file-find-outline::before{content:"\F0B97"}.mdi-file-hidden::before{content:"\F0613"}.mdi-file-image::before{content:"\F021F"}.mdi-file-image-outline::before{content:"\F0EB0"}.mdi-file-import::before{content:"\F0220"}.mdi-file-import-outline::before{content:"\F102F"}.mdi-file-key::before{content:"\F1184"}.mdi-file-key-outline::before{content:"\F1185"}.mdi-file-link::before{content:"\F1177"}.mdi-file-link-outline::before{content:"\F1178"}.mdi-file-lock::before{content:"\F0221"}.mdi-file-lock-outline::before{content:"\F1030"}.mdi-file-move::before{content:"\F0AB9"}.mdi-file-move-outline::before{content:"\F1031"}.mdi-file-multiple::before{content:"\F0222"}.mdi-file-multiple-outline::before{content:"\F1032"}.mdi-file-music::before{content:"\F0223"}.mdi-file-music-outline::before{content:"\F0E2A"}.mdi-file-outline::before{content:"\F0224"}.mdi-file-pdf::before{content:"\F0225"}.mdi-file-pdf-box::before{content:"\F0226"}.mdi-file-pdf-box-outline::before{content:"\F0FB3"}.mdi-file-pdf-outline::before{content:"\F0E2D"}.mdi-file-percent::before{content:"\F081E"}.mdi-file-percent-outline::before{content:"\F1033"}.mdi-file-phone::before{content:"\F1179"}.mdi-file-phone-outline::before{content:"\F117A"}.mdi-file-plus::before{content:"\F0752"}.mdi-file-plus-outline::before{content:"\F0EED"}.mdi-file-powerpoint::before{content:"\F0227"}.mdi-file-powerpoint-box::before{content:"\F0228"}.mdi-file-powerpoint-box-outline::before{content:"\F1034"}.mdi-file-powerpoint-outline::before{content:"\F1035"}.mdi-file-presentation-box::before{content:"\F0229"}.mdi-file-question::before{content:"\F086F"}.mdi-file-question-outline::before{content:"\F1036"}.mdi-file-refresh::before{content:"\F0918"}.mdi-file-refresh-outline::before{content:"\F0541"}.mdi-file-remove::before{content:"\F0B98"}.mdi-file-remove-outline::before{content:"\F1037"}.mdi-file-replace::before{content:"\F0B32"}.mdi-file-replace-outline::before{content:"\F0B33"}.mdi-file-restore::before{content:"\F0670"}.mdi-file-restore-outline::before{content:"\F1038"}.mdi-file-search::before{content:"\F0C7C"}.mdi-file-search-outline::before{content:"\F0C7D"}.mdi-file-send::before{content:"\F022A"}.mdi-file-send-outline::before{content:"\F1039"}.mdi-file-settings::before{content:"\F1079"}.mdi-file-settings-outline::before{content:"\F107A"}.mdi-file-star::before{content:"\F103A"}.mdi-file-star-outline::before{content:"\F103B"}.mdi-file-swap::before{content:"\F0FB4"}.mdi-file-swap-outline::before{content:"\F0FB5"}.mdi-file-sync::before{content:"\F1216"}.mdi-file-sync-outline::before{content:"\F1217"}.mdi-file-table::before{content:"\F0C7E"}.mdi-file-table-box::before{content:"\F10E1"}.mdi-file-table-box-multiple::before{content:"\F10E2"}.mdi-file-table-box-multiple-outline::before{content:"\F10E3"}.mdi-file-table-box-outline::before{content:"\F10E4"}.mdi-file-table-outline::before{content:"\F0C7F"}.mdi-file-tree::before{content:"\F0645"}.mdi-file-tree-outline::before{content:"\F13D2"}.mdi-file-undo::before{content:"\F08DC"}.mdi-file-undo-outline::before{content:"\F103C"}.mdi-file-upload::before{content:"\F0A4D"}.mdi-file-upload-outline::before{content:"\F0A4E"}.mdi-file-video::before{content:"\F022B"}.mdi-file-video-outline::before{content:"\F0E2C"}.mdi-file-word::before{content:"\F022C"}.mdi-file-word-box::before{content:"\F022D"}.mdi-file-word-box-outline::before{content:"\F103D"}.mdi-file-word-outline::before{content:"\F103E"}.mdi-film::before{content:"\F022F"}.mdi-filmstrip::before{content:"\F0230"}.mdi-filmstrip-box::before{content:"\F0332"}.mdi-filmstrip-box-multiple::before{content:"\F0D18"}.mdi-filmstrip-off::before{content:"\F0231"}.mdi-filter::before{content:"\F0232"}.mdi-filter-menu::before{content:"\F10E5"}.mdi-filter-menu-outline::before{content:"\F10E6"}.mdi-filter-minus::before{content:"\F0EEE"}.mdi-filter-minus-outline::before{content:"\F0EEF"}.mdi-filter-off::before{content:"\F14EF"}.mdi-filter-off-outline::before{content:"\F14F0"}.mdi-filter-outline::before{content:"\F0233"}.mdi-filter-plus::before{content:"\F0EF0"}.mdi-filter-plus-outline::before{content:"\F0EF1"}.mdi-filter-remove::before{content:"\F0234"}.mdi-filter-remove-outline::before{content:"\F0235"}.mdi-filter-variant::before{content:"\F0236"}.mdi-filter-variant-minus::before{content:"\F1112"}.mdi-filter-variant-plus::before{content:"\F1113"}.mdi-filter-variant-remove::before{content:"\F103F"}.mdi-finance::before{content:"\F081F"}.mdi-find-replace::before{content:"\F06D4"}.mdi-fingerprint::before{content:"\F0237"}.mdi-fingerprint-off::before{content:"\F0EB1"}.mdi-fire::before{content:"\F0238"}.mdi-fire-alert::before{content:"\F15D7"}.mdi-fire-extinguisher::before{content:"\F0EF2"}.mdi-fire-hydrant::before{content:"\F1137"}.mdi-fire-hydrant-alert::before{content:"\F1138"}.mdi-fire-hydrant-off::before{content:"\F1139"}.mdi-fire-truck::before{content:"\F08AB"}.mdi-firebase::before{content:"\F0967"}.mdi-firefox::before{content:"\F0239"}.mdi-fireplace::before{content:"\F0E2E"}.mdi-fireplace-off::before{content:"\F0E2F"}.mdi-firework::before{content:"\F0E30"}.mdi-fish::before{content:"\F023A"}.mdi-fish-off::before{content:"\F13F3"}.mdi-fishbowl::before{content:"\F0EF3"}.mdi-fishbowl-outline::before{content:"\F0EF4"}.mdi-fit-to-page::before{content:"\F0EF5"}.mdi-fit-to-page-outline::before{content:"\F0EF6"}.mdi-flag::before{content:"\F023B"}.mdi-flag-checkered::before{content:"\F023C"}.mdi-flag-minus::before{content:"\F0B99"}.mdi-flag-minus-outline::before{content:"\F10B2"}.mdi-flag-outline::before{content:"\F023D"}.mdi-flag-plus::before{content:"\F0B9A"}.mdi-flag-plus-outline::before{content:"\F10B3"}.mdi-flag-remove::before{content:"\F0B9B"}.mdi-flag-remove-outline::before{content:"\F10B4"}.mdi-flag-triangle::before{content:"\F023F"}.mdi-flag-variant::before{content:"\F0240"}.mdi-flag-variant-outline::before{content:"\F023E"}.mdi-flare::before{content:"\F0D72"}.mdi-flash::before{content:"\F0241"}.mdi-flash-alert::before{content:"\F0EF7"}.mdi-flash-alert-outline::before{content:"\F0EF8"}.mdi-flash-auto::before{content:"\F0242"}.mdi-flash-circle::before{content:"\F0820"}.mdi-flash-off::before{content:"\F0243"}.mdi-flash-outline::before{content:"\F06D5"}.mdi-flash-red-eye::before{content:"\F067B"}.mdi-flashlight::before{content:"\F0244"}.mdi-flashlight-off::before{content:"\F0245"}.mdi-flask::before{content:"\F0093"}.mdi-flask-empty::before{content:"\F0094"}.mdi-flask-empty-minus::before{content:"\F123A"}.mdi-flask-empty-minus-outline::before{content:"\F123B"}.mdi-flask-empty-off::before{content:"\F13F4"}.mdi-flask-empty-off-outline::before{content:"\F13F5"}.mdi-flask-empty-outline::before{content:"\F0095"}.mdi-flask-empty-plus::before{content:"\F123C"}.mdi-flask-empty-plus-outline::before{content:"\F123D"}.mdi-flask-empty-remove::before{content:"\F123E"}.mdi-flask-empty-remove-outline::before{content:"\F123F"}.mdi-flask-minus::before{content:"\F1240"}.mdi-flask-minus-outline::before{content:"\F1241"}.mdi-flask-off::before{content:"\F13F6"}.mdi-flask-off-outline::before{content:"\F13F7"}.mdi-flask-outline::before{content:"\F0096"}.mdi-flask-plus::before{content:"\F1242"}.mdi-flask-plus-outline::before{content:"\F1243"}.mdi-flask-remove::before{content:"\F1244"}.mdi-flask-remove-outline::before{content:"\F1245"}.mdi-flask-round-bottom::before{content:"\F124B"}.mdi-flask-round-bottom-empty::before{content:"\F124C"}.mdi-flask-round-bottom-empty-outline::before{content:"\F124D"}.mdi-flask-round-bottom-outline::before{content:"\F124E"}.mdi-fleur-de-lis::before{content:"\F1303"}.mdi-flip-horizontal::before{content:"\F10E7"}.mdi-flip-to-back::before{content:"\F0247"}.mdi-flip-to-front::before{content:"\F0248"}.mdi-flip-vertical::before{content:"\F10E8"}.mdi-floor-lamp::before{content:"\F08DD"}.mdi-floor-lamp-dual::before{content:"\F1040"}.mdi-floor-lamp-variant::before{content:"\F1041"}.mdi-floor-plan::before{content:"\F0821"}.mdi-floppy::before{content:"\F0249"}.mdi-floppy-variant::before{content:"\F09EF"}.mdi-flower::before{content:"\F024A"}.mdi-flower-outline::before{content:"\F09F0"}.mdi-flower-poppy::before{content:"\F0D08"}.mdi-flower-tulip::before{content:"\F09F1"}.mdi-flower-tulip-outline::before{content:"\F09F2"}.mdi-focus-auto::before{content:"\F0F4E"}.mdi-focus-field::before{content:"\F0F4F"}.mdi-focus-field-horizontal::before{content:"\F0F50"}.mdi-focus-field-vertical::before{content:"\F0F51"}.mdi-folder::before{content:"\F024B"}.mdi-folder-account::before{content:"\F024C"}.mdi-folder-account-outline::before{content:"\F0B9C"}.mdi-folder-alert::before{content:"\F0DCC"}.mdi-folder-alert-outline::before{content:"\F0DCD"}.mdi-folder-clock::before{content:"\F0ABA"}.mdi-folder-clock-outline::before{content:"\F0ABB"}.mdi-folder-cog::before{content:"\F107F"}.mdi-folder-cog-outline::before{content:"\F1080"}.mdi-folder-download::before{content:"\F024D"}.mdi-folder-download-outline::before{content:"\F10E9"}.mdi-folder-edit::before{content:"\F08DE"}.mdi-folder-edit-outline::before{content:"\F0DCE"}.mdi-folder-google-drive::before{content:"\F024E"}.mdi-folder-heart::before{content:"\F10EA"}.mdi-folder-heart-outline::before{content:"\F10EB"}.mdi-folder-home::before{content:"\F10B5"}.mdi-folder-home-outline::before{content:"\F10B6"}.mdi-folder-image::before{content:"\F024F"}.mdi-folder-information::before{content:"\F10B7"}.mdi-folder-information-outline::before{content:"\F10B8"}.mdi-folder-key::before{content:"\F08AC"}.mdi-folder-key-network::before{content:"\F08AD"}.mdi-folder-key-network-outline::before{content:"\F0C80"}.mdi-folder-key-outline::before{content:"\F10EC"}.mdi-folder-lock::before{content:"\F0250"}.mdi-folder-lock-open::before{content:"\F0251"}.mdi-folder-marker::before{content:"\F126D"}.mdi-folder-marker-outline::before{content:"\F126E"}.mdi-folder-move::before{content:"\F0252"}.mdi-folder-move-outline::before{content:"\F1246"}.mdi-folder-multiple::before{content:"\F0253"}.mdi-folder-multiple-image::before{content:"\F0254"}.mdi-folder-multiple-outline::before{content:"\F0255"}.mdi-folder-multiple-plus::before{content:"\F147E"}.mdi-folder-multiple-plus-outline::before{content:"\F147F"}.mdi-folder-music::before{content:"\F1359"}.mdi-folder-music-outline::before{content:"\F135A"}.mdi-folder-network::before{content:"\F0870"}.mdi-folder-network-outline::before{content:"\F0C81"}.mdi-folder-open::before{content:"\F0770"}.mdi-folder-open-outline::before{content:"\F0DCF"}.mdi-folder-outline::before{content:"\F0256"}.mdi-folder-plus::before{content:"\F0257"}.mdi-folder-plus-outline::before{content:"\F0B9D"}.mdi-folder-pound::before{content:"\F0D09"}.mdi-folder-pound-outline::before{content:"\F0D0A"}.mdi-folder-refresh::before{content:"\F0749"}.mdi-folder-refresh-outline::before{content:"\F0542"}.mdi-folder-remove::before{content:"\F0258"}.mdi-folder-remove-outline::before{content:"\F0B9E"}.mdi-folder-search::before{content:"\F0968"}.mdi-folder-search-outline::before{content:"\F0969"}.mdi-folder-settings::before{content:"\F107D"}.mdi-folder-settings-outline::before{content:"\F107E"}.mdi-folder-star::before{content:"\F069D"}.mdi-folder-star-multiple::before{content:"\F13D3"}.mdi-folder-star-multiple-outline::before{content:"\F13D4"}.mdi-folder-star-outline::before{content:"\F0B9F"}.mdi-folder-swap::before{content:"\F0FB6"}.mdi-folder-swap-outline::before{content:"\F0FB7"}.mdi-folder-sync::before{content:"\F0D0B"}.mdi-folder-sync-outline::before{content:"\F0D0C"}.mdi-folder-table::before{content:"\F12E3"}.mdi-folder-table-outline::before{content:"\F12E4"}.mdi-folder-text::before{content:"\F0C82"}.mdi-folder-text-outline::before{content:"\F0C83"}.mdi-folder-upload::before{content:"\F0259"}.mdi-folder-upload-outline::before{content:"\F10ED"}.mdi-folder-zip::before{content:"\F06EB"}.mdi-folder-zip-outline::before{content:"\F07B9"}.mdi-font-awesome::before{content:"\F003A"}.mdi-food::before{content:"\F025A"}.mdi-food-apple::before{content:"\F025B"}.mdi-food-apple-outline::before{content:"\F0C84"}.mdi-food-croissant::before{content:"\F07C8"}.mdi-food-drumstick::before{content:"\F141F"}.mdi-food-drumstick-off::before{content:"\F1468"}.mdi-food-drumstick-off-outline::before{content:"\F1469"}.mdi-food-drumstick-outline::before{content:"\F1420"}.mdi-food-fork-drink::before{content:"\F05F2"}.mdi-food-halal::before{content:"\F1572"}.mdi-food-kosher::before{content:"\F1573"}.mdi-food-off::before{content:"\F05F3"}.mdi-food-steak::before{content:"\F146A"}.mdi-food-steak-off::before{content:"\F146B"}.mdi-food-variant::before{content:"\F025C"}.mdi-food-variant-off::before{content:"\F13E5"}.mdi-foot-print::before{content:"\F0F52"}.mdi-football::before{content:"\F025D"}.mdi-football-australian::before{content:"\F025E"}.mdi-football-helmet::before{content:"\F025F"}.mdi-forklift::before{content:"\F07C9"}.mdi-form-dropdown::before{content:"\F1400"}.mdi-form-select::before{content:"\F1401"}.mdi-form-textarea::before{content:"\F1095"}.mdi-form-textbox::before{content:"\F060E"}.mdi-form-textbox-lock::before{content:"\F135D"}.mdi-form-textbox-password::before{content:"\F07F5"}.mdi-format-align-bottom::before{content:"\F0753"}.mdi-format-align-center::before{content:"\F0260"}.mdi-format-align-justify::before{content:"\F0261"}.mdi-format-align-left::before{content:"\F0262"}.mdi-format-align-middle::before{content:"\F0754"}.mdi-format-align-right::before{content:"\F0263"}.mdi-format-align-top::before{content:"\F0755"}.mdi-format-annotation-minus::before{content:"\F0ABC"}.mdi-format-annotation-plus::before{content:"\F0646"}.mdi-format-bold::before{content:"\F0264"}.mdi-format-clear::before{content:"\F0265"}.mdi-format-color-fill::before{content:"\F0266"}.mdi-format-color-highlight::before{content:"\F0E31"}.mdi-format-color-marker-cancel::before{content:"\F1313"}.mdi-format-color-text::before{content:"\F069E"}.mdi-format-columns::before{content:"\F08DF"}.mdi-format-float-center::before{content:"\F0267"}.mdi-format-float-left::before{content:"\F0268"}.mdi-format-float-none::before{content:"\F0269"}.mdi-format-float-right::before{content:"\F026A"}.mdi-format-font::before{content:"\F06D6"}.mdi-format-font-size-decrease::before{content:"\F09F3"}.mdi-format-font-size-increase::before{content:"\F09F4"}.mdi-format-header-1::before{content:"\F026B"}.mdi-format-header-2::before{content:"\F026C"}.mdi-format-header-3::before{content:"\F026D"}.mdi-format-header-4::before{content:"\F026E"}.mdi-format-header-5::before{content:"\F026F"}.mdi-format-header-6::before{content:"\F0270"}.mdi-format-header-decrease::before{content:"\F0271"}.mdi-format-header-equal::before{content:"\F0272"}.mdi-format-header-increase::before{content:"\F0273"}.mdi-format-header-pound::before{content:"\F0274"}.mdi-format-horizontal-align-center::before{content:"\F061E"}.mdi-format-horizontal-align-left::before{content:"\F061F"}.mdi-format-horizontal-align-right::before{content:"\F0620"}.mdi-format-indent-decrease::before{content:"\F0275"}.mdi-format-indent-increase::before{content:"\F0276"}.mdi-format-italic::before{content:"\F0277"}.mdi-format-letter-case::before{content:"\F0B34"}.mdi-format-letter-case-lower::before{content:"\F0B35"}.mdi-format-letter-case-upper::before{content:"\F0B36"}.mdi-format-letter-ends-with::before{content:"\F0FB8"}.mdi-format-letter-matches::before{content:"\F0FB9"}.mdi-format-letter-starts-with::before{content:"\F0FBA"}.mdi-format-line-spacing::before{content:"\F0278"}.mdi-format-line-style::before{content:"\F05C8"}.mdi-format-line-weight::before{content:"\F05C9"}.mdi-format-list-bulleted::before{content:"\F0279"}.mdi-format-list-bulleted-square::before{content:"\F0DD0"}.mdi-format-list-bulleted-triangle::before{content:"\F0EB2"}.mdi-format-list-bulleted-type::before{content:"\F027A"}.mdi-format-list-checkbox::before{content:"\F096A"}.mdi-format-list-checks::before{content:"\F0756"}.mdi-format-list-numbered::before{content:"\F027B"}.mdi-format-list-numbered-rtl::before{content:"\F0D0D"}.mdi-format-list-text::before{content:"\F126F"}.mdi-format-overline::before{content:"\F0EB3"}.mdi-format-page-break::before{content:"\F06D7"}.mdi-format-paint::before{content:"\F027C"}.mdi-format-paragraph::before{content:"\F027D"}.mdi-format-pilcrow::before{content:"\F06D8"}.mdi-format-quote-close::before{content:"\F027E"}.mdi-format-quote-close-outline::before{content:"\F11A8"}.mdi-format-quote-open::before{content:"\F0757"}.mdi-format-quote-open-outline::before{content:"\F11A7"}.mdi-format-rotate-90::before{content:"\F06AA"}.mdi-format-section::before{content:"\F069F"}.mdi-format-size::before{content:"\F027F"}.mdi-format-strikethrough::before{content:"\F0280"}.mdi-format-strikethrough-variant::before{content:"\F0281"}.mdi-format-subscript::before{content:"\F0282"}.mdi-format-superscript::before{content:"\F0283"}.mdi-format-text::before{content:"\F0284"}.mdi-format-text-rotation-angle-down::before{content:"\F0FBB"}.mdi-format-text-rotation-angle-up::before{content:"\F0FBC"}.mdi-format-text-rotation-down::before{content:"\F0D73"}.mdi-format-text-rotation-down-vertical::before{content:"\F0FBD"}.mdi-format-text-rotation-none::before{content:"\F0D74"}.mdi-format-text-rotation-up::before{content:"\F0FBE"}.mdi-format-text-rotation-vertical::before{content:"\F0FBF"}.mdi-format-text-variant::before{content:"\F0E32"}.mdi-format-text-variant-outline::before{content:"\F150F"}.mdi-format-text-wrapping-clip::before{content:"\F0D0E"}.mdi-format-text-wrapping-overflow::before{content:"\F0D0F"}.mdi-format-text-wrapping-wrap::before{content:"\F0D10"}.mdi-format-textbox::before{content:"\F0D11"}.mdi-format-textdirection-l-to-r::before{content:"\F0285"}.mdi-format-textdirection-r-to-l::before{content:"\F0286"}.mdi-format-title::before{content:"\F05F4"}.mdi-format-underline::before{content:"\F0287"}.mdi-format-vertical-align-bottom::before{content:"\F0621"}.mdi-format-vertical-align-center::before{content:"\F0622"}.mdi-format-vertical-align-top::before{content:"\F0623"}.mdi-format-wrap-inline::before{content:"\F0288"}.mdi-format-wrap-square::before{content:"\F0289"}.mdi-format-wrap-tight::before{content:"\F028A"}.mdi-format-wrap-top-bottom::before{content:"\F028B"}.mdi-forum::before{content:"\F028C"}.mdi-forum-outline::before{content:"\F0822"}.mdi-forward::before{content:"\F028D"}.mdi-forwardburger::before{content:"\F0D75"}.mdi-fountain::before{content:"\F096B"}.mdi-fountain-pen::before{content:"\F0D12"}.mdi-fountain-pen-tip::before{content:"\F0D13"}.mdi-freebsd::before{content:"\F08E0"}.mdi-frequently-asked-questions::before{content:"\F0EB4"}.mdi-fridge::before{content:"\F0290"}.mdi-fridge-alert::before{content:"\F11B1"}.mdi-fridge-alert-outline::before{content:"\F11B2"}.mdi-fridge-bottom::before{content:"\F0292"}.mdi-fridge-industrial::before{content:"\F15EE"}.mdi-fridge-industrial-alert::before{content:"\F15EF"}.mdi-fridge-industrial-alert-outline::before{content:"\F15F0"}.mdi-fridge-industrial-off::before{content:"\F15F1"}.mdi-fridge-industrial-off-outline::before{content:"\F15F2"}.mdi-fridge-industrial-outline::before{content:"\F15F3"}.mdi-fridge-off::before{content:"\F11AF"}.mdi-fridge-off-outline::before{content:"\F11B0"}.mdi-fridge-outline::before{content:"\F028F"}.mdi-fridge-top::before{content:"\F0291"}.mdi-fridge-variant::before{content:"\F15F4"}.mdi-fridge-variant-alert::before{content:"\F15F5"}.mdi-fridge-variant-alert-outline::before{content:"\F15F6"}.mdi-fridge-variant-off::before{content:"\F15F7"}.mdi-fridge-variant-off-outline::before{content:"\F15F8"}.mdi-fridge-variant-outline::before{content:"\F15F9"}.mdi-fruit-cherries::before{content:"\F1042"}.mdi-fruit-cherries-off::before{content:"\F13F8"}.mdi-fruit-citrus::before{content:"\F1043"}.mdi-fruit-citrus-off::before{content:"\F13F9"}.mdi-fruit-grapes::before{content:"\F1044"}.mdi-fruit-grapes-outline::before{content:"\F1045"}.mdi-fruit-pineapple::before{content:"\F1046"}.mdi-fruit-watermelon::before{content:"\F1047"}.mdi-fuel::before{content:"\F07CA"}.mdi-fullscreen::before{content:"\F0293"}.mdi-fullscreen-exit::before{content:"\F0294"}.mdi-function::before{content:"\F0295"}.mdi-function-variant::before{content:"\F0871"}.mdi-furigana-horizontal::before{content:"\F1081"}.mdi-furigana-vertical::before{content:"\F1082"}.mdi-fuse::before{content:"\F0C85"}.mdi-fuse-alert::before{content:"\F142D"}.mdi-fuse-blade::before{content:"\F0C86"}.mdi-fuse-off::before{content:"\F142C"}.mdi-gamepad::before{content:"\F0296"}.mdi-gamepad-circle::before{content:"\F0E33"}.mdi-gamepad-circle-down::before{content:"\F0E34"}.mdi-gamepad-circle-left::before{content:"\F0E35"}.mdi-gamepad-circle-outline::before{content:"\F0E36"}.mdi-gamepad-circle-right::before{content:"\F0E37"}.mdi-gamepad-circle-up::before{content:"\F0E38"}.mdi-gamepad-down::before{content:"\F0E39"}.mdi-gamepad-left::before{content:"\F0E3A"}.mdi-gamepad-right::before{content:"\F0E3B"}.mdi-gamepad-round::before{content:"\F0E3C"}.mdi-gamepad-round-down::before{content:"\F0E3D"}.mdi-gamepad-round-left::before{content:"\F0E3E"}.mdi-gamepad-round-outline::before{content:"\F0E3F"}.mdi-gamepad-round-right::before{content:"\F0E40"}.mdi-gamepad-round-up::before{content:"\F0E41"}.mdi-gamepad-square::before{content:"\F0EB5"}.mdi-gamepad-square-outline::before{content:"\F0EB6"}.mdi-gamepad-up::before{content:"\F0E42"}.mdi-gamepad-variant::before{content:"\F0297"}.mdi-gamepad-variant-outline::before{content:"\F0EB7"}.mdi-gamma::before{content:"\F10EE"}.mdi-gantry-crane::before{content:"\F0DD1"}.mdi-garage::before{content:"\F06D9"}.mdi-garage-alert::before{content:"\F0872"}.mdi-garage-alert-variant::before{content:"\F12D5"}.mdi-garage-open::before{content:"\F06DA"}.mdi-garage-open-variant::before{content:"\F12D4"}.mdi-garage-variant::before{content:"\F12D3"}.mdi-gas-cylinder::before{content:"\F0647"}.mdi-gas-station::before{content:"\F0298"}.mdi-gas-station-off::before{content:"\F1409"}.mdi-gas-station-off-outline::before{content:"\F140A"}.mdi-gas-station-outline::before{content:"\F0EB8"}.mdi-gate::before{content:"\F0299"}.mdi-gate-and::before{content:"\F08E1"}.mdi-gate-arrow-right::before{content:"\F1169"}.mdi-gate-nand::before{content:"\F08E2"}.mdi-gate-nor::before{content:"\F08E3"}.mdi-gate-not::before{content:"\F08E4"}.mdi-gate-open::before{content:"\F116A"}.mdi-gate-or::before{content:"\F08E5"}.mdi-gate-xnor::before{content:"\F08E6"}.mdi-gate-xor::before{content:"\F08E7"}.mdi-gatsby::before{content:"\F0E43"}.mdi-gauge::before{content:"\F029A"}.mdi-gauge-empty::before{content:"\F0873"}.mdi-gauge-full::before{content:"\F0874"}.mdi-gauge-low::before{content:"\F0875"}.mdi-gavel::before{content:"\F029B"}.mdi-gender-female::before{content:"\F029C"}.mdi-gender-male::before{content:"\F029D"}.mdi-gender-male-female::before{content:"\F029E"}.mdi-gender-male-female-variant::before{content:"\F113F"}.mdi-gender-non-binary::before{content:"\F1140"}.mdi-gender-transgender::before{content:"\F029F"}.mdi-gentoo::before{content:"\F08E8"}.mdi-gesture::before{content:"\F07CB"}.mdi-gesture-double-tap::before{content:"\F073C"}.mdi-gesture-pinch::before{content:"\F0ABD"}.mdi-gesture-spread::before{content:"\F0ABE"}.mdi-gesture-swipe::before{content:"\F0D76"}.mdi-gesture-swipe-down::before{content:"\F073D"}.mdi-gesture-swipe-horizontal::before{content:"\F0ABF"}.mdi-gesture-swipe-left::before{content:"\F073E"}.mdi-gesture-swipe-right::before{content:"\F073F"}.mdi-gesture-swipe-up::before{content:"\F0740"}.mdi-gesture-swipe-vertical::before{content:"\F0AC0"}.mdi-gesture-tap::before{content:"\F0741"}.mdi-gesture-tap-box::before{content:"\F12A9"}.mdi-gesture-tap-button::before{content:"\F12A8"}.mdi-gesture-tap-hold::before{content:"\F0D77"}.mdi-gesture-two-double-tap::before{content:"\F0742"}.mdi-gesture-two-tap::before{content:"\F0743"}.mdi-ghost::before{content:"\F02A0"}.mdi-ghost-off::before{content:"\F09F5"}.mdi-ghost-off-outline::before{content:"\F165C"}.mdi-ghost-outline::before{content:"\F165D"}.mdi-gif::before{content:"\F0D78"}.mdi-gift::before{content:"\F0E44"}.mdi-gift-outline::before{content:"\F02A1"}.mdi-git::before{content:"\F02A2"}.mdi-github::before{content:"\F02A4"}.mdi-gitlab::before{content:"\F0BA0"}.mdi-glass-cocktail::before{content:"\F0356"}.mdi-glass-cocktail-off::before{content:"\F15E6"}.mdi-glass-flute::before{content:"\F02A5"}.mdi-glass-mug::before{content:"\F02A6"}.mdi-glass-mug-off::before{content:"\F15E7"}.mdi-glass-mug-variant::before{content:"\F1116"}.mdi-glass-mug-variant-off::before{content:"\F15E8"}.mdi-glass-pint-outline::before{content:"\F130D"}.mdi-glass-stange::before{content:"\F02A7"}.mdi-glass-tulip::before{content:"\F02A8"}.mdi-glass-wine::before{content:"\F0876"}.mdi-glasses::before{content:"\F02AA"}.mdi-globe-light::before{content:"\F12D7"}.mdi-globe-model::before{content:"\F08E9"}.mdi-gmail::before{content:"\F02AB"}.mdi-gnome::before{content:"\F02AC"}.mdi-go-kart::before{content:"\F0D79"}.mdi-go-kart-track::before{content:"\F0D7A"}.mdi-gog::before{content:"\F0BA1"}.mdi-gold::before{content:"\F124F"}.mdi-golf::before{content:"\F0823"}.mdi-golf-cart::before{content:"\F11A4"}.mdi-golf-tee::before{content:"\F1083"}.mdi-gondola::before{content:"\F0686"}.mdi-goodreads::before{content:"\F0D7B"}.mdi-google::before{content:"\F02AD"}.mdi-google-ads::before{content:"\F0C87"}.mdi-google-analytics::before{content:"\F07CC"}.mdi-google-assistant::before{content:"\F07CD"}.mdi-google-cardboard::before{content:"\F02AE"}.mdi-google-chrome::before{content:"\F02AF"}.mdi-google-circles::before{content:"\F02B0"}.mdi-google-circles-communities::before{content:"\F02B1"}.mdi-google-circles-extended::before{content:"\F02B2"}.mdi-google-circles-group::before{content:"\F02B3"}.mdi-google-classroom::before{content:"\F02C0"}.mdi-google-cloud::before{content:"\F11F6"}.mdi-google-controller::before{content:"\F02B4"}.mdi-google-controller-off::before{content:"\F02B5"}.mdi-google-downasaur::before{content:"\F1362"}.mdi-google-drive::before{content:"\F02B6"}.mdi-google-earth::before{content:"\F02B7"}.mdi-google-fit::before{content:"\F096C"}.mdi-google-glass::before{content:"\F02B8"}.mdi-google-hangouts::before{content:"\F02C9"}.mdi-google-home::before{content:"\F0824"}.mdi-google-keep::before{content:"\F06DC"}.mdi-google-lens::before{content:"\F09F6"}.mdi-google-maps::before{content:"\F05F5"}.mdi-google-my-business::before{content:"\F1048"}.mdi-google-nearby::before{content:"\F02B9"}.mdi-google-photos::before{content:"\F06DD"}.mdi-google-play::before{content:"\F02BC"}.mdi-google-plus::before{content:"\F02BD"}.mdi-google-podcast::before{content:"\F0EB9"}.mdi-google-spreadsheet::before{content:"\F09F7"}.mdi-google-street-view::before{content:"\F0C88"}.mdi-google-translate::before{content:"\F02BF"}.mdi-gradient::before{content:"\F06A0"}.mdi-grain::before{content:"\F0D7C"}.mdi-graph::before{content:"\F1049"}.mdi-graph-outline::before{content:"\F104A"}.mdi-graphql::before{content:"\F0877"}.mdi-grass::before{content:"\F1510"}.mdi-grave-stone::before{content:"\F0BA2"}.mdi-grease-pencil::before{content:"\F0648"}.mdi-greater-than::before{content:"\F096D"}.mdi-greater-than-or-equal::before{content:"\F096E"}.mdi-grid::before{content:"\F02C1"}.mdi-grid-large::before{content:"\F0758"}.mdi-grid-off::before{content:"\F02C2"}.mdi-grill::before{content:"\F0E45"}.mdi-grill-outline::before{content:"\F118A"}.mdi-group::before{content:"\F02C3"}.mdi-guitar-acoustic::before{content:"\F0771"}.mdi-guitar-electric::before{content:"\F02C4"}.mdi-guitar-pick::before{content:"\F02C5"}.mdi-guitar-pick-outline::before{content:"\F02C6"}.mdi-guy-fawkes-mask::before{content:"\F0825"}.mdi-hail::before{content:"\F0AC1"}.mdi-hair-dryer::before{content:"\F10EF"}.mdi-hair-dryer-outline::before{content:"\F10F0"}.mdi-halloween::before{content:"\F0BA3"}.mdi-hamburger::before{content:"\F0685"}.mdi-hammer::before{content:"\F08EA"}.mdi-hammer-screwdriver::before{content:"\F1322"}.mdi-hammer-wrench::before{content:"\F1323"}.mdi-hand::before{content:"\F0A4F"}.mdi-hand-heart::before{content:"\F10F1"}.mdi-hand-heart-outline::before{content:"\F157E"}.mdi-hand-left::before{content:"\F0E46"}.mdi-hand-okay::before{content:"\F0A50"}.mdi-hand-peace::before{content:"\F0A51"}.mdi-hand-peace-variant::before{content:"\F0A52"}.mdi-hand-pointing-down::before{content:"\F0A53"}.mdi-hand-pointing-left::before{content:"\F0A54"}.mdi-hand-pointing-right::before{content:"\F02C7"}.mdi-hand-pointing-up::before{content:"\F0A55"}.mdi-hand-right::before{content:"\F0E47"}.mdi-hand-saw::before{content:"\F0E48"}.mdi-hand-wash::before{content:"\F157F"}.mdi-hand-wash-outline::before{content:"\F1580"}.mdi-hand-water::before{content:"\F139F"}.mdi-handball::before{content:"\F0F53"}.mdi-handcuffs::before{content:"\F113E"}.mdi-handshake::before{content:"\F1218"}.mdi-handshake-outline::before{content:"\F15A1"}.mdi-hanger::before{content:"\F02C8"}.mdi-hard-hat::before{content:"\F096F"}.mdi-harddisk::before{content:"\F02CA"}.mdi-harddisk-plus::before{content:"\F104B"}.mdi-harddisk-remove::before{content:"\F104C"}.mdi-hat-fedora::before{content:"\F0BA4"}.mdi-hazard-lights::before{content:"\F0C89"}.mdi-hdr::before{content:"\F0D7D"}.mdi-hdr-off::before{content:"\F0D7E"}.mdi-head::before{content:"\F135E"}.mdi-head-alert::before{content:"\F1338"}.mdi-head-alert-outline::before{content:"\F1339"}.mdi-head-check::before{content:"\F133A"}.mdi-head-check-outline::before{content:"\F133B"}.mdi-head-cog::before{content:"\F133C"}.mdi-head-cog-outline::before{content:"\F133D"}.mdi-head-dots-horizontal::before{content:"\F133E"}.mdi-head-dots-horizontal-outline::before{content:"\F133F"}.mdi-head-flash::before{content:"\F1340"}.mdi-head-flash-outline::before{content:"\F1341"}.mdi-head-heart::before{content:"\F1342"}.mdi-head-heart-outline::before{content:"\F1343"}.mdi-head-lightbulb::before{content:"\F1344"}.mdi-head-lightbulb-outline::before{content:"\F1345"}.mdi-head-minus::before{content:"\F1346"}.mdi-head-minus-outline::before{content:"\F1347"}.mdi-head-outline::before{content:"\F135F"}.mdi-head-plus::before{content:"\F1348"}.mdi-head-plus-outline::before{content:"\F1349"}.mdi-head-question::before{content:"\F134A"}.mdi-head-question-outline::before{content:"\F134B"}.mdi-head-remove::before{content:"\F134C"}.mdi-head-remove-outline::before{content:"\F134D"}.mdi-head-snowflake::before{content:"\F134E"}.mdi-head-snowflake-outline::before{content:"\F134F"}.mdi-head-sync::before{content:"\F1350"}.mdi-head-sync-outline::before{content:"\F1351"}.mdi-headphones::before{content:"\F02CB"}.mdi-headphones-bluetooth::before{content:"\F0970"}.mdi-headphones-box::before{content:"\F02CC"}.mdi-headphones-off::before{content:"\F07CE"}.mdi-headphones-settings::before{content:"\F02CD"}.mdi-headset::before{content:"\F02CE"}.mdi-headset-dock::before{content:"\F02CF"}.mdi-headset-off::before{content:"\F02D0"}.mdi-heart::before{content:"\F02D1"}.mdi-heart-box::before{content:"\F02D2"}.mdi-heart-box-outline::before{content:"\F02D3"}.mdi-heart-broken::before{content:"\F02D4"}.mdi-heart-broken-outline::before{content:"\F0D14"}.mdi-heart-circle::before{content:"\F0971"}.mdi-heart-circle-outline::before{content:"\F0972"}.mdi-heart-cog::before{content:"\F1663"}.mdi-heart-cog-outline::before{content:"\F1664"}.mdi-heart-flash::before{content:"\F0EF9"}.mdi-heart-half::before{content:"\F06DF"}.mdi-heart-half-full::before{content:"\F06DE"}.mdi-heart-half-outline::before{content:"\F06E0"}.mdi-heart-minus::before{content:"\F142F"}.mdi-heart-minus-outline::before{content:"\F1432"}.mdi-heart-multiple::before{content:"\F0A56"}.mdi-heart-multiple-outline::before{content:"\F0A57"}.mdi-heart-off::before{content:"\F0759"}.mdi-heart-off-outline::before{content:"\F1434"}.mdi-heart-outline::before{content:"\F02D5"}.mdi-heart-plus::before{content:"\F142E"}.mdi-heart-plus-outline::before{content:"\F1431"}.mdi-heart-pulse::before{content:"\F05F6"}.mdi-heart-remove::before{content:"\F1430"}.mdi-heart-remove-outline::before{content:"\F1433"}.mdi-heart-settings::before{content:"\F1665"}.mdi-heart-settings-outline::before{content:"\F1666"}.mdi-helicopter::before{content:"\F0AC2"}.mdi-help::before{content:"\F02D6"}.mdi-help-box::before{content:"\F078B"}.mdi-help-circle::before{content:"\F02D7"}.mdi-help-circle-outline::before{content:"\F0625"}.mdi-help-network::before{content:"\F06F5"}.mdi-help-network-outline::before{content:"\F0C8A"}.mdi-help-rhombus::before{content:"\F0BA5"}.mdi-help-rhombus-outline::before{content:"\F0BA6"}.mdi-hexadecimal::before{content:"\F12A7"}.mdi-hexagon::before{content:"\F02D8"}.mdi-hexagon-multiple::before{content:"\F06E1"}.mdi-hexagon-multiple-outline::before{content:"\F10F2"}.mdi-hexagon-outline::before{content:"\F02D9"}.mdi-hexagon-slice-1::before{content:"\F0AC3"}.mdi-hexagon-slice-2::before{content:"\F0AC4"}.mdi-hexagon-slice-3::before{content:"\F0AC5"}.mdi-hexagon-slice-4::before{content:"\F0AC6"}.mdi-hexagon-slice-5::before{content:"\F0AC7"}.mdi-hexagon-slice-6::before{content:"\F0AC8"}.mdi-hexagram::before{content:"\F0AC9"}.mdi-hexagram-outline::before{content:"\F0ACA"}.mdi-high-definition::before{content:"\F07CF"}.mdi-high-definition-box::before{content:"\F0878"}.mdi-highway::before{content:"\F05F7"}.mdi-hiking::before{content:"\F0D7F"}.mdi-hinduism::before{content:"\F0973"}.mdi-history::before{content:"\F02DA"}.mdi-hockey-puck::before{content:"\F0879"}.mdi-hockey-sticks::before{content:"\F087A"}.mdi-hololens::before{content:"\F02DB"}.mdi-home::before{content:"\F02DC"}.mdi-home-account::before{content:"\F0826"}.mdi-home-alert::before{content:"\F087B"}.mdi-home-alert-outline::before{content:"\F15D0"}.mdi-home-analytics::before{content:"\F0EBA"}.mdi-home-assistant::before{content:"\F07D0"}.mdi-home-automation::before{content:"\F07D1"}.mdi-home-circle::before{content:"\F07D2"}.mdi-home-circle-outline::before{content:"\F104D"}.mdi-home-city::before{content:"\F0D15"}.mdi-home-city-outline::before{content:"\F0D16"}.mdi-home-currency-usd::before{content:"\F08AF"}.mdi-home-edit::before{content:"\F1159"}.mdi-home-edit-outline::before{content:"\F115A"}.mdi-home-export-outline::before{content:"\F0F9B"}.mdi-home-flood::before{content:"\F0EFA"}.mdi-home-floor-0::before{content:"\F0DD2"}.mdi-home-floor-1::before{content:"\F0D80"}.mdi-home-floor-2::before{content:"\F0D81"}.mdi-home-floor-3::before{content:"\F0D82"}.mdi-home-floor-a::before{content:"\F0D83"}.mdi-home-floor-b::before{content:"\F0D84"}.mdi-home-floor-g::before{content:"\F0D85"}.mdi-home-floor-l::before{content:"\F0D86"}.mdi-home-floor-negative-1::before{content:"\F0DD3"}.mdi-home-group::before{content:"\F0DD4"}.mdi-home-heart::before{content:"\F0827"}.mdi-home-import-outline::before{content:"\F0F9C"}.mdi-home-lightbulb::before{content:"\F1251"}.mdi-home-lightbulb-outline::before{content:"\F1252"}.mdi-home-lock::before{content:"\F08EB"}.mdi-home-lock-open::before{content:"\F08EC"}.mdi-home-map-marker::before{content:"\F05F8"}.mdi-home-minus::before{content:"\F0974"}.mdi-home-minus-outline::before{content:"\F13D5"}.mdi-home-modern::before{content:"\F02DD"}.mdi-home-outline::before{content:"\F06A1"}.mdi-home-plus::before{content:"\F0975"}.mdi-home-plus-outline::before{content:"\F13D6"}.mdi-home-remove::before{content:"\F1247"}.mdi-home-remove-outline::before{content:"\F13D7"}.mdi-home-roof::before{content:"\F112B"}.mdi-home-search::before{content:"\F13B0"}.mdi-home-search-outline::before{content:"\F13B1"}.mdi-home-thermometer::before{content:"\F0F54"}.mdi-home-thermometer-outline::before{content:"\F0F55"}.mdi-home-variant::before{content:"\F02DE"}.mdi-home-variant-outline::before{content:"\F0BA7"}.mdi-hook::before{content:"\F06E2"}.mdi-hook-off::before{content:"\F06E3"}.mdi-hops::before{content:"\F02DF"}.mdi-horizontal-rotate-clockwise::before{content:"\F10F3"}.mdi-horizontal-rotate-counterclockwise::before{content:"\F10F4"}.mdi-horse::before{content:"\F15BF"}.mdi-horse-human::before{content:"\F15C0"}.mdi-horse-variant::before{content:"\F15C1"}.mdi-horseshoe::before{content:"\F0A58"}.mdi-hospital::before{content:"\F0FF6"}.mdi-hospital-box::before{content:"\F02E0"}.mdi-hospital-box-outline::before{content:"\F0FF7"}.mdi-hospital-building::before{content:"\F02E1"}.mdi-hospital-marker::before{content:"\F02E2"}.mdi-hot-tub::before{content:"\F0828"}.mdi-hours-24::before{content:"\F1478"}.mdi-hubspot::before{content:"\F0D17"}.mdi-hulu::before{content:"\F0829"}.mdi-human::before{content:"\F02E6"}.mdi-human-baby-changing-table::before{content:"\F138B"}.mdi-human-cane::before{content:"\F1581"}.mdi-human-capacity-decrease::before{content:"\F159B"}.mdi-human-capacity-increase::before{content:"\F159C"}.mdi-human-child::before{content:"\F02E7"}.mdi-human-edit::before{content:"\F14E8"}.mdi-human-female::before{content:"\F0649"}.mdi-human-female-boy::before{content:"\F0A59"}.mdi-human-female-dance::before{content:"\F15C9"}.mdi-human-female-female::before{content:"\F0A5A"}.mdi-human-female-girl::before{content:"\F0A5B"}.mdi-human-greeting::before{content:"\F064A"}.mdi-human-greeting-proximity::before{content:"\F159D"}.mdi-human-handsdown::before{content:"\F064B"}.mdi-human-handsup::before{content:"\F064C"}.mdi-human-male::before{content:"\F064D"}.mdi-human-male-boy::before{content:"\F0A5C"}.mdi-human-male-child::before{content:"\F138C"}.mdi-human-male-female::before{content:"\F02E8"}.mdi-human-male-girl::before{content:"\F0A5D"}.mdi-human-male-height::before{content:"\F0EFB"}.mdi-human-male-height-variant::before{content:"\F0EFC"}.mdi-human-male-male::before{content:"\F0A5E"}.mdi-human-pregnant::before{content:"\F05CF"}.mdi-human-queue::before{content:"\F1571"}.mdi-human-scooter::before{content:"\F11E9"}.mdi-human-wheelchair::before{content:"\F138D"}.mdi-humble-bundle::before{content:"\F0744"}.mdi-hvac::before{content:"\F1352"}.mdi-hvac-off::before{content:"\F159E"}.mdi-hydraulic-oil-level::before{content:"\F1324"}.mdi-hydraulic-oil-temperature::before{content:"\F1325"}.mdi-hydro-power::before{content:"\F12E5"}.mdi-ice-cream::before{content:"\F082A"}.mdi-ice-cream-off::before{content:"\F0E52"}.mdi-ice-pop::before{content:"\F0EFD"}.mdi-id-card::before{content:"\F0FC0"}.mdi-identifier::before{content:"\F0EFE"}.mdi-ideogram-cjk::before{content:"\F1331"}.mdi-ideogram-cjk-variant::before{content:"\F1332"}.mdi-iframe::before{content:"\F0C8B"}.mdi-iframe-array::before{content:"\F10F5"}.mdi-iframe-array-outline::before{content:"\F10F6"}.mdi-iframe-braces::before{content:"\F10F7"}.mdi-iframe-braces-outline::before{content:"\F10F8"}.mdi-iframe-outline::before{content:"\F0C8C"}.mdi-iframe-parentheses::before{content:"\F10F9"}.mdi-iframe-parentheses-outline::before{content:"\F10FA"}.mdi-iframe-variable::before{content:"\F10FB"}.mdi-iframe-variable-outline::before{content:"\F10FC"}.mdi-image::before{content:"\F02E9"}.mdi-image-album::before{content:"\F02EA"}.mdi-image-area::before{content:"\F02EB"}.mdi-image-area-close::before{content:"\F02EC"}.mdi-image-auto-adjust::before{content:"\F0FC1"}.mdi-image-broken::before{content:"\F02ED"}.mdi-image-broken-variant::before{content:"\F02EE"}.mdi-image-edit::before{content:"\F11E3"}.mdi-image-edit-outline::before{content:"\F11E4"}.mdi-image-filter-black-white::before{content:"\F02F0"}.mdi-image-filter-center-focus::before{content:"\F02F1"}.mdi-image-filter-center-focus-strong::before{content:"\F0EFF"}.mdi-image-filter-center-focus-strong-outline::before{content:"\F0F00"}.mdi-image-filter-center-focus-weak::before{content:"\F02F2"}.mdi-image-filter-drama::before{content:"\F02F3"}.mdi-image-filter-frames::before{content:"\F02F4"}.mdi-image-filter-hdr::before{content:"\F02F5"}.mdi-image-filter-none::before{content:"\F02F6"}.mdi-image-filter-tilt-shift::before{content:"\F02F7"}.mdi-image-filter-vintage::before{content:"\F02F8"}.mdi-image-frame::before{content:"\F0E49"}.mdi-image-minus::before{content:"\F1419"}.mdi-image-move::before{content:"\F09F8"}.mdi-image-multiple::before{content:"\F02F9"}.mdi-image-multiple-outline::before{content:"\F02EF"}.mdi-image-off::before{content:"\F082B"}.mdi-image-off-outline::before{content:"\F11D1"}.mdi-image-outline::before{content:"\F0976"}.mdi-image-plus::before{content:"\F087C"}.mdi-image-remove::before{content:"\F1418"}.mdi-image-search::before{content:"\F0977"}.mdi-image-search-outline::before{content:"\F0978"}.mdi-image-size-select-actual::before{content:"\F0C8D"}.mdi-image-size-select-large::before{content:"\F0C8E"}.mdi-image-size-select-small::before{content:"\F0C8F"}.mdi-image-text::before{content:"\F160D"}.mdi-import::before{content:"\F02FA"}.mdi-inbox::before{content:"\F0687"}.mdi-inbox-arrow-down::before{content:"\F02FB"}.mdi-inbox-arrow-down-outline::before{content:"\F1270"}.mdi-inbox-arrow-up::before{content:"\F03D1"}.mdi-inbox-arrow-up-outline::before{content:"\F1271"}.mdi-inbox-full::before{content:"\F1272"}.mdi-inbox-full-outline::before{content:"\F1273"}.mdi-inbox-multiple::before{content:"\F08B0"}.mdi-inbox-multiple-outline::before{content:"\F0BA8"}.mdi-inbox-outline::before{content:"\F1274"}.mdi-inbox-remove::before{content:"\F159F"}.mdi-inbox-remove-outline::before{content:"\F15A0"}.mdi-incognito::before{content:"\F05F9"}.mdi-incognito-circle::before{content:"\F1421"}.mdi-incognito-circle-off::before{content:"\F1422"}.mdi-incognito-off::before{content:"\F0075"}.mdi-infinity::before{content:"\F06E4"}.mdi-information::before{content:"\F02FC"}.mdi-information-outline::before{content:"\F02FD"}.mdi-information-variant::before{content:"\F064E"}.mdi-instagram::before{content:"\F02FE"}.mdi-instrument-triangle::before{content:"\F104E"}.mdi-invert-colors::before{content:"\F0301"}.mdi-invert-colors-off::before{content:"\F0E4A"}.mdi-iobroker::before{content:"\F12E8"}.mdi-ip::before{content:"\F0A5F"}.mdi-ip-network::before{content:"\F0A60"}.mdi-ip-network-outline::before{content:"\F0C90"}.mdi-ipod::before{content:"\F0C91"}.mdi-islam::before{content:"\F0979"}.mdi-island::before{content:"\F104F"}.mdi-iv-bag::before{content:"\F10B9"}.mdi-jabber::before{content:"\F0DD5"}.mdi-jeepney::before{content:"\F0302"}.mdi-jellyfish::before{content:"\F0F01"}.mdi-jellyfish-outline::before{content:"\F0F02"}.mdi-jira::before{content:"\F0303"}.mdi-jquery::before{content:"\F087D"}.mdi-jsfiddle::before{content:"\F0304"}.mdi-judaism::before{content:"\F097A"}.mdi-jump-rope::before{content:"\F12FF"}.mdi-kabaddi::before{content:"\F0D87"}.mdi-kangaroo::before{content:"\F1558"}.mdi-karate::before{content:"\F082C"}.mdi-keg::before{content:"\F0305"}.mdi-kettle::before{content:"\F05FA"}.mdi-kettle-alert::before{content:"\F1317"}.mdi-kettle-alert-outline::before{content:"\F1318"}.mdi-kettle-off::before{content:"\F131B"}.mdi-kettle-off-outline::before{content:"\F131C"}.mdi-kettle-outline::before{content:"\F0F56"}.mdi-kettle-steam::before{content:"\F1319"}.mdi-kettle-steam-outline::before{content:"\F131A"}.mdi-kettlebell::before{content:"\F1300"}.mdi-key::before{content:"\F0306"}.mdi-key-arrow-right::before{content:"\F1312"}.mdi-key-chain::before{content:"\F1574"}.mdi-key-chain-variant::before{content:"\F1575"}.mdi-key-change::before{content:"\F0307"}.mdi-key-link::before{content:"\F119F"}.mdi-key-minus::before{content:"\F0308"}.mdi-key-outline::before{content:"\F0DD6"}.mdi-key-plus::before{content:"\F0309"}.mdi-key-remove::before{content:"\F030A"}.mdi-key-star::before{content:"\F119E"}.mdi-key-variant::before{content:"\F030B"}.mdi-key-wireless::before{content:"\F0FC2"}.mdi-keyboard::before{content:"\F030C"}.mdi-keyboard-backspace::before{content:"\F030D"}.mdi-keyboard-caps::before{content:"\F030E"}.mdi-keyboard-close::before{content:"\F030F"}.mdi-keyboard-esc::before{content:"\F12B7"}.mdi-keyboard-f1::before{content:"\F12AB"}.mdi-keyboard-f10::before{content:"\F12B4"}.mdi-keyboard-f11::before{content:"\F12B5"}.mdi-keyboard-f12::before{content:"\F12B6"}.mdi-keyboard-f2::before{content:"\F12AC"}.mdi-keyboard-f3::before{content:"\F12AD"}.mdi-keyboard-f4::before{content:"\F12AE"}.mdi-keyboard-f5::before{content:"\F12AF"}.mdi-keyboard-f6::before{content:"\F12B0"}.mdi-keyboard-f7::before{content:"\F12B1"}.mdi-keyboard-f8::before{content:"\F12B2"}.mdi-keyboard-f9::before{content:"\F12B3"}.mdi-keyboard-off::before{content:"\F0310"}.mdi-keyboard-off-outline::before{content:"\F0E4B"}.mdi-keyboard-outline::before{content:"\F097B"}.mdi-keyboard-return::before{content:"\F0311"}.mdi-keyboard-settings::before{content:"\F09F9"}.mdi-keyboard-settings-outline::before{content:"\F09FA"}.mdi-keyboard-space::before{content:"\F1050"}.mdi-keyboard-tab::before{content:"\F0312"}.mdi-keyboard-variant::before{content:"\F0313"}.mdi-khanda::before{content:"\F10FD"}.mdi-kickstarter::before{content:"\F0745"}.mdi-klingon::before{content:"\F135B"}.mdi-knife::before{content:"\F09FB"}.mdi-knife-military::before{content:"\F09FC"}.mdi-kodi::before{content:"\F0314"}.mdi-kubernetes::before{content:"\F10FE"}.mdi-label::before{content:"\F0315"}.mdi-label-multiple::before{content:"\F1375"}.mdi-label-multiple-outline::before{content:"\F1376"}.mdi-label-off::before{content:"\F0ACB"}.mdi-label-off-outline::before{content:"\F0ACC"}.mdi-label-outline::before{content:"\F0316"}.mdi-label-percent::before{content:"\F12EA"}.mdi-label-percent-outline::before{content:"\F12EB"}.mdi-label-variant::before{content:"\F0ACD"}.mdi-label-variant-outline::before{content:"\F0ACE"}.mdi-ladder::before{content:"\F15A2"}.mdi-ladybug::before{content:"\F082D"}.mdi-lambda::before{content:"\F0627"}.mdi-lamp::before{content:"\F06B5"}.mdi-lamps::before{content:"\F1576"}.mdi-lan::before{content:"\F0317"}.mdi-lan-check::before{content:"\F12AA"}.mdi-lan-connect::before{content:"\F0318"}.mdi-lan-disconnect::before{content:"\F0319"}.mdi-lan-pending::before{content:"\F031A"}.mdi-language-c::before{content:"\F0671"}.mdi-language-cpp::before{content:"\F0672"}.mdi-language-csharp::before{content:"\F031B"}.mdi-language-css3::before{content:"\F031C"}.mdi-language-fortran::before{content:"\F121A"}.mdi-language-go::before{content:"\F07D3"}.mdi-language-haskell::before{content:"\F0C92"}.mdi-language-html5::before{content:"\F031D"}.mdi-language-java::before{content:"\F0B37"}.mdi-language-javascript::before{content:"\F031E"}.mdi-language-kotlin::before{content:"\F1219"}.mdi-language-lua::before{content:"\F08B1"}.mdi-language-markdown::before{content:"\F0354"}.mdi-language-markdown-outline::before{content:"\F0F5B"}.mdi-language-php::before{content:"\F031F"}.mdi-language-python::before{content:"\F0320"}.mdi-language-r::before{content:"\F07D4"}.mdi-language-ruby::before{content:"\F0D2D"}.mdi-language-ruby-on-rails::before{content:"\F0ACF"}.mdi-language-rust::before{content:"\F1617"}.mdi-language-swift::before{content:"\F06E5"}.mdi-language-typescript::before{content:"\F06E6"}.mdi-language-xaml::before{content:"\F0673"}.mdi-laptop::before{content:"\F0322"}.mdi-laptop-chromebook::before{content:"\F0323"}.mdi-laptop-mac::before{content:"\F0324"}.mdi-laptop-off::before{content:"\F06E7"}.mdi-laptop-windows::before{content:"\F0325"}.mdi-laravel::before{content:"\F0AD0"}.mdi-laser-pointer::before{content:"\F1484"}.mdi-lasso::before{content:"\F0F03"}.mdi-lastpass::before{content:"\F0446"}.mdi-latitude::before{content:"\F0F57"}.mdi-launch::before{content:"\F0327"}.mdi-lava-lamp::before{content:"\F07D5"}.mdi-layers::before{content:"\F0328"}.mdi-layers-minus::before{content:"\F0E4C"}.mdi-layers-off::before{content:"\F0329"}.mdi-layers-off-outline::before{content:"\F09FD"}.mdi-layers-outline::before{content:"\F09FE"}.mdi-layers-plus::before{content:"\F0E4D"}.mdi-layers-remove::before{content:"\F0E4E"}.mdi-layers-search::before{content:"\F1206"}.mdi-layers-search-outline::before{content:"\F1207"}.mdi-layers-triple::before{content:"\F0F58"}.mdi-layers-triple-outline::before{content:"\F0F59"}.mdi-lead-pencil::before{content:"\F064F"}.mdi-leaf::before{content:"\F032A"}.mdi-leaf-maple::before{content:"\F0C93"}.mdi-leaf-maple-off::before{content:"\F12DA"}.mdi-leaf-off::before{content:"\F12D9"}.mdi-leak::before{content:"\F0DD7"}.mdi-leak-off::before{content:"\F0DD8"}.mdi-led-off::before{content:"\F032B"}.mdi-led-on::before{content:"\F032C"}.mdi-led-outline::before{content:"\F032D"}.mdi-led-strip::before{content:"\F07D6"}.mdi-led-strip-variant::before{content:"\F1051"}.mdi-led-variant-off::before{content:"\F032E"}.mdi-led-variant-on::before{content:"\F032F"}.mdi-led-variant-outline::before{content:"\F0330"}.mdi-leek::before{content:"\F117D"}.mdi-less-than::before{content:"\F097C"}.mdi-less-than-or-equal::before{content:"\F097D"}.mdi-library::before{content:"\F0331"}.mdi-library-shelves::before{content:"\F0BA9"}.mdi-license::before{content:"\F0FC3"}.mdi-lifebuoy::before{content:"\F087E"}.mdi-light-switch::before{content:"\F097E"}.mdi-lightbulb::before{content:"\F0335"}.mdi-lightbulb-cfl::before{content:"\F1208"}.mdi-lightbulb-cfl-off::before{content:"\F1209"}.mdi-lightbulb-cfl-spiral::before{content:"\F1275"}.mdi-lightbulb-cfl-spiral-off::before{content:"\F12C3"}.mdi-lightbulb-group::before{content:"\F1253"}.mdi-lightbulb-group-off::before{content:"\F12CD"}.mdi-lightbulb-group-off-outline::before{content:"\F12CE"}.mdi-lightbulb-group-outline::before{content:"\F1254"}.mdi-lightbulb-multiple::before{content:"\F1255"}.mdi-lightbulb-multiple-off::before{content:"\F12CF"}.mdi-lightbulb-multiple-off-outline::before{content:"\F12D0"}.mdi-lightbulb-multiple-outline::before{content:"\F1256"}.mdi-lightbulb-off::before{content:"\F0E4F"}.mdi-lightbulb-off-outline::before{content:"\F0E50"}.mdi-lightbulb-on::before{content:"\F06E8"}.mdi-lightbulb-on-outline::before{content:"\F06E9"}.mdi-lightbulb-outline::before{content:"\F0336"}.mdi-lighthouse::before{content:"\F09FF"}.mdi-lighthouse-on::before{content:"\F0A00"}.mdi-lightning-bolt::before{content:"\F140B"}.mdi-lightning-bolt-outline::before{content:"\F140C"}.mdi-lingerie::before{content:"\F1476"}.mdi-link::before{content:"\F0337"}.mdi-link-box::before{content:"\F0D1A"}.mdi-link-box-outline::before{content:"\F0D1B"}.mdi-link-box-variant::before{content:"\F0D1C"}.mdi-link-box-variant-outline::before{content:"\F0D1D"}.mdi-link-lock::before{content:"\F10BA"}.mdi-link-off::before{content:"\F0338"}.mdi-link-plus::before{content:"\F0C94"}.mdi-link-variant::before{content:"\F0339"}.mdi-link-variant-minus::before{content:"\F10FF"}.mdi-link-variant-off::before{content:"\F033A"}.mdi-link-variant-plus::before{content:"\F1100"}.mdi-link-variant-remove::before{content:"\F1101"}.mdi-linkedin::before{content:"\F033B"}.mdi-linux::before{content:"\F033D"}.mdi-linux-mint::before{content:"\F08ED"}.mdi-lipstick::before{content:"\F13B5"}.mdi-list-status::before{content:"\F15AB"}.mdi-litecoin::before{content:"\F0A61"}.mdi-loading::before{content:"\F0772"}.mdi-location-enter::before{content:"\F0FC4"}.mdi-location-exit::before{content:"\F0FC5"}.mdi-lock::before{content:"\F033E"}.mdi-lock-alert::before{content:"\F08EE"}.mdi-lock-alert-outline::before{content:"\F15D1"}.mdi-lock-check::before{content:"\F139A"}.mdi-lock-check-outline::before{content:"\F16A8"}.mdi-lock-clock::before{content:"\F097F"}.mdi-lock-minus::before{content:"\F16A9"}.mdi-lock-minus-outline::before{content:"\F16AA"}.mdi-lock-off::before{content:"\F1671"}.mdi-lock-off-outline::before{content:"\F1672"}.mdi-lock-open::before{content:"\F033F"}.mdi-lock-open-alert::before{content:"\F139B"}.mdi-lock-open-alert-outline::before{content:"\F15D2"}.mdi-lock-open-check::before{content:"\F139C"}.mdi-lock-open-check-outline::before{content:"\F16AB"}.mdi-lock-open-minus::before{content:"\F16AC"}.mdi-lock-open-minus-outline::before{content:"\F16AD"}.mdi-lock-open-outline::before{content:"\F0340"}.mdi-lock-open-plus::before{content:"\F16AE"}.mdi-lock-open-plus-outline::before{content:"\F16AF"}.mdi-lock-open-remove::before{content:"\F16B0"}.mdi-lock-open-remove-outline::before{content:"\F16B1"}.mdi-lock-open-variant::before{content:"\F0FC6"}.mdi-lock-open-variant-outline::before{content:"\F0FC7"}.mdi-lock-outline::before{content:"\F0341"}.mdi-lock-pattern::before{content:"\F06EA"}.mdi-lock-plus::before{content:"\F05FB"}.mdi-lock-plus-outline::before{content:"\F16B2"}.mdi-lock-question::before{content:"\F08EF"}.mdi-lock-remove::before{content:"\F16B3"}.mdi-lock-remove-outline::before{content:"\F16B4"}.mdi-lock-reset::before{content:"\F0773"}.mdi-lock-smart::before{content:"\F08B2"}.mdi-locker::before{content:"\F07D7"}.mdi-locker-multiple::before{content:"\F07D8"}.mdi-login::before{content:"\F0342"}.mdi-login-variant::before{content:"\F05FC"}.mdi-logout::before{content:"\F0343"}.mdi-logout-variant::before{content:"\F05FD"}.mdi-longitude::before{content:"\F0F5A"}.mdi-looks::before{content:"\F0344"}.mdi-lotion::before{content:"\F1582"}.mdi-lotion-outline::before{content:"\F1583"}.mdi-lotion-plus::before{content:"\F1584"}.mdi-lotion-plus-outline::before{content:"\F1585"}.mdi-loupe::before{content:"\F0345"}.mdi-lumx::before{content:"\F0346"}.mdi-lungs::before{content:"\F1084"}.mdi-magnet::before{content:"\F0347"}.mdi-magnet-on::before{content:"\F0348"}.mdi-magnify::before{content:"\F0349"}.mdi-magnify-close::before{content:"\F0980"}.mdi-magnify-minus::before{content:"\F034A"}.mdi-magnify-minus-cursor::before{content:"\F0A62"}.mdi-magnify-minus-outline::before{content:"\F06EC"}.mdi-magnify-plus::before{content:"\F034B"}.mdi-magnify-plus-cursor::before{content:"\F0A63"}.mdi-magnify-plus-outline::before{content:"\F06ED"}.mdi-magnify-remove-cursor::before{content:"\F120C"}.mdi-magnify-remove-outline::before{content:"\F120D"}.mdi-magnify-scan::before{content:"\F1276"}.mdi-mail::before{content:"\F0EBB"}.mdi-mailbox::before{content:"\F06EE"}.mdi-mailbox-open::before{content:"\F0D88"}.mdi-mailbox-open-outline::before{content:"\F0D89"}.mdi-mailbox-open-up::before{content:"\F0D8A"}.mdi-mailbox-open-up-outline::before{content:"\F0D8B"}.mdi-mailbox-outline::before{content:"\F0D8C"}.mdi-mailbox-up::before{content:"\F0D8D"}.mdi-mailbox-up-outline::before{content:"\F0D8E"}.mdi-manjaro::before{content:"\F160A"}.mdi-map::before{content:"\F034D"}.mdi-map-check::before{content:"\F0EBC"}.mdi-map-check-outline::before{content:"\F0EBD"}.mdi-map-clock::before{content:"\F0D1E"}.mdi-map-clock-outline::before{content:"\F0D1F"}.mdi-map-legend::before{content:"\F0A01"}.mdi-map-marker::before{content:"\F034E"}.mdi-map-marker-alert::before{content:"\F0F05"}.mdi-map-marker-alert-outline::before{content:"\F0F06"}.mdi-map-marker-check::before{content:"\F0C95"}.mdi-map-marker-check-outline::before{content:"\F12FB"}.mdi-map-marker-circle::before{content:"\F034F"}.mdi-map-marker-distance::before{content:"\F08F0"}.mdi-map-marker-down::before{content:"\F1102"}.mdi-map-marker-left::before{content:"\F12DB"}.mdi-map-marker-left-outline::before{content:"\F12DD"}.mdi-map-marker-minus::before{content:"\F0650"}.mdi-map-marker-minus-outline::before{content:"\F12F9"}.mdi-map-marker-multiple::before{content:"\F0350"}.mdi-map-marker-multiple-outline::before{content:"\F1277"}.mdi-map-marker-off::before{content:"\F0351"}.mdi-map-marker-off-outline::before{content:"\F12FD"}.mdi-map-marker-outline::before{content:"\F07D9"}.mdi-map-marker-path::before{content:"\F0D20"}.mdi-map-marker-plus::before{content:"\F0651"}.mdi-map-marker-plus-outline::before{content:"\F12F8"}.mdi-map-marker-question::before{content:"\F0F07"}.mdi-map-marker-question-outline::before{content:"\F0F08"}.mdi-map-marker-radius::before{content:"\F0352"}.mdi-map-marker-radius-outline::before{content:"\F12FC"}.mdi-map-marker-remove::before{content:"\F0F09"}.mdi-map-marker-remove-outline::before{content:"\F12FA"}.mdi-map-marker-remove-variant::before{content:"\F0F0A"}.mdi-map-marker-right::before{content:"\F12DC"}.mdi-map-marker-right-outline::before{content:"\F12DE"}.mdi-map-marker-star::before{content:"\F1608"}.mdi-map-marker-star-outline::before{content:"\F1609"}.mdi-map-marker-up::before{content:"\F1103"}.mdi-map-minus::before{content:"\F0981"}.mdi-map-outline::before{content:"\F0982"}.mdi-map-plus::before{content:"\F0983"}.mdi-map-search::before{content:"\F0984"}.mdi-map-search-outline::before{content:"\F0985"}.mdi-mapbox::before{content:"\F0BAA"}.mdi-margin::before{content:"\F0353"}.mdi-marker::before{content:"\F0652"}.mdi-marker-cancel::before{content:"\F0DD9"}.mdi-marker-check::before{content:"\F0355"}.mdi-mastodon::before{content:"\F0AD1"}.mdi-material-design::before{content:"\F0986"}.mdi-material-ui::before{content:"\F0357"}.mdi-math-compass::before{content:"\F0358"}.mdi-math-cos::before{content:"\F0C96"}.mdi-math-integral::before{content:"\F0FC8"}.mdi-math-integral-box::before{content:"\F0FC9"}.mdi-math-log::before{content:"\F1085"}.mdi-math-norm::before{content:"\F0FCA"}.mdi-math-norm-box::before{content:"\F0FCB"}.mdi-math-sin::before{content:"\F0C97"}.mdi-math-tan::before{content:"\F0C98"}.mdi-matrix::before{content:"\F0628"}.mdi-medal::before{content:"\F0987"}.mdi-medal-outline::before{content:"\F1326"}.mdi-medical-bag::before{content:"\F06EF"}.mdi-meditation::before{content:"\F117B"}.mdi-memory::before{content:"\F035B"}.mdi-menu::before{content:"\F035C"}.mdi-menu-down::before{content:"\F035D"}.mdi-menu-down-outline::before{content:"\F06B6"}.mdi-menu-left::before{content:"\F035E"}.mdi-menu-left-outline::before{content:"\F0A02"}.mdi-menu-open::before{content:"\F0BAB"}.mdi-menu-right::before{content:"\F035F"}.mdi-menu-right-outline::before{content:"\F0A03"}.mdi-menu-swap::before{content:"\F0A64"}.mdi-menu-swap-outline::before{content:"\F0A65"}.mdi-menu-up::before{content:"\F0360"}.mdi-menu-up-outline::before{content:"\F06B7"}.mdi-merge::before{content:"\F0F5C"}.mdi-message::before{content:"\F0361"}.mdi-message-alert::before{content:"\F0362"}.mdi-message-alert-outline::before{content:"\F0A04"}.mdi-message-arrow-left::before{content:"\F12F2"}.mdi-message-arrow-left-outline::before{content:"\F12F3"}.mdi-message-arrow-right::before{content:"\F12F4"}.mdi-message-arrow-right-outline::before{content:"\F12F5"}.mdi-message-bookmark::before{content:"\F15AC"}.mdi-message-bookmark-outline::before{content:"\F15AD"}.mdi-message-bulleted::before{content:"\F06A2"}.mdi-message-bulleted-off::before{content:"\F06A3"}.mdi-message-cog::before{content:"\F06F1"}.mdi-message-cog-outline::before{content:"\F1172"}.mdi-message-draw::before{content:"\F0363"}.mdi-message-flash::before{content:"\F15A9"}.mdi-message-flash-outline::before{content:"\F15AA"}.mdi-message-image::before{content:"\F0364"}.mdi-message-image-outline::before{content:"\F116C"}.mdi-message-lock::before{content:"\F0FCC"}.mdi-message-lock-outline::before{content:"\F116D"}.mdi-message-minus::before{content:"\F116E"}.mdi-message-minus-outline::before{content:"\F116F"}.mdi-message-off::before{content:"\F164D"}.mdi-message-off-outline::before{content:"\F164E"}.mdi-message-outline::before{content:"\F0365"}.mdi-message-plus::before{content:"\F0653"}.mdi-message-plus-outline::before{content:"\F10BB"}.mdi-message-processing::before{content:"\F0366"}.mdi-message-processing-outline::before{content:"\F1170"}.mdi-message-reply::before{content:"\F0367"}.mdi-message-reply-text::before{content:"\F0368"}.mdi-message-settings::before{content:"\F06F0"}.mdi-message-settings-outline::before{content:"\F1171"}.mdi-message-text::before{content:"\F0369"}.mdi-message-text-clock::before{content:"\F1173"}.mdi-message-text-clock-outline::before{content:"\F1174"}.mdi-message-text-lock::before{content:"\F0FCD"}.mdi-message-text-lock-outline::before{content:"\F1175"}.mdi-message-text-outline::before{content:"\F036A"}.mdi-message-video::before{content:"\F036B"}.mdi-meteor::before{content:"\F0629"}.mdi-metronome::before{content:"\F07DA"}.mdi-metronome-tick::before{content:"\F07DB"}.mdi-micro-sd::before{content:"\F07DC"}.mdi-microphone::before{content:"\F036C"}.mdi-microphone-minus::before{content:"\F08B3"}.mdi-microphone-off::before{content:"\F036D"}.mdi-microphone-outline::before{content:"\F036E"}.mdi-microphone-plus::before{content:"\F08B4"}.mdi-microphone-settings::before{content:"\F036F"}.mdi-microphone-variant::before{content:"\F0370"}.mdi-microphone-variant-off::before{content:"\F0371"}.mdi-microscope::before{content:"\F0654"}.mdi-microsoft::before{content:"\F0372"}.mdi-microsoft-access::before{content:"\F138E"}.mdi-microsoft-azure::before{content:"\F0805"}.mdi-microsoft-azure-devops::before{content:"\F0FD5"}.mdi-microsoft-bing::before{content:"\F00A4"}.mdi-microsoft-dynamics-365::before{content:"\F0988"}.mdi-microsoft-edge::before{content:"\F01E9"}.mdi-microsoft-edge-legacy::before{content:"\F1250"}.mdi-microsoft-excel::before{content:"\F138F"}.mdi-microsoft-internet-explorer::before{content:"\F0300"}.mdi-microsoft-office::before{content:"\F03C6"}.mdi-microsoft-onedrive::before{content:"\F03CA"}.mdi-microsoft-onenote::before{content:"\F0747"}.mdi-microsoft-outlook::before{content:"\F0D22"}.mdi-microsoft-powerpoint::before{content:"\F1390"}.mdi-microsoft-sharepoint::before{content:"\F1391"}.mdi-microsoft-teams::before{content:"\F02BB"}.mdi-microsoft-visual-studio::before{content:"\F0610"}.mdi-microsoft-visual-studio-code::before{content:"\F0A1E"}.mdi-microsoft-windows::before{content:"\F05B3"}.mdi-microsoft-windows-classic::before{content:"\F0A21"}.mdi-microsoft-word::before{content:"\F1392"}.mdi-microsoft-xbox::before{content:"\F05B9"}.mdi-microsoft-xbox-controller::before{content:"\F05BA"}.mdi-microsoft-xbox-controller-battery-alert::before{content:"\F074B"}.mdi-microsoft-xbox-controller-battery-charging::before{content:"\F0A22"}.mdi-microsoft-xbox-controller-battery-empty::before{content:"\F074C"}.mdi-microsoft-xbox-controller-battery-full::before{content:"\F074D"}.mdi-microsoft-xbox-controller-battery-low::before{content:"\F074E"}.mdi-microsoft-xbox-controller-battery-medium::before{content:"\F074F"}.mdi-microsoft-xbox-controller-battery-unknown::before{content:"\F0750"}.mdi-microsoft-xbox-controller-menu::before{content:"\F0E6F"}.mdi-microsoft-xbox-controller-off::before{content:"\F05BB"}.mdi-microsoft-xbox-controller-view::before{content:"\F0E70"}.mdi-microsoft-yammer::before{content:"\F0789"}.mdi-microwave::before{content:"\F0C99"}.mdi-microwave-off::before{content:"\F1423"}.mdi-middleware::before{content:"\F0F5D"}.mdi-middleware-outline::before{content:"\F0F5E"}.mdi-midi::before{content:"\F08F1"}.mdi-midi-port::before{content:"\F08F2"}.mdi-mine::before{content:"\F0DDA"}.mdi-minecraft::before{content:"\F0373"}.mdi-mini-sd::before{content:"\F0A05"}.mdi-minidisc::before{content:"\F0A06"}.mdi-minus::before{content:"\F0374"}.mdi-minus-box::before{content:"\F0375"}.mdi-minus-box-multiple::before{content:"\F1141"}.mdi-minus-box-multiple-outline::before{content:"\F1142"}.mdi-minus-box-outline::before{content:"\F06F2"}.mdi-minus-circle::before{content:"\F0376"}.mdi-minus-circle-multiple::before{content:"\F035A"}.mdi-minus-circle-multiple-outline::before{content:"\F0AD3"}.mdi-minus-circle-off::before{content:"\F1459"}.mdi-minus-circle-off-outline::before{content:"\F145A"}.mdi-minus-circle-outline::before{content:"\F0377"}.mdi-minus-network::before{content:"\F0378"}.mdi-minus-network-outline::before{content:"\F0C9A"}.mdi-minus-thick::before{content:"\F1639"}.mdi-mirror::before{content:"\F11FD"}.mdi-mixed-martial-arts::before{content:"\F0D8F"}.mdi-mixed-reality::before{content:"\F087F"}.mdi-molecule::before{content:"\F0BAC"}.mdi-molecule-co::before{content:"\F12FE"}.mdi-molecule-co2::before{content:"\F07E4"}.mdi-monitor::before{content:"\F0379"}.mdi-monitor-cellphone::before{content:"\F0989"}.mdi-monitor-cellphone-star::before{content:"\F098A"}.mdi-monitor-clean::before{content:"\F1104"}.mdi-monitor-dashboard::before{content:"\F0A07"}.mdi-monitor-edit::before{content:"\F12C6"}.mdi-monitor-eye::before{content:"\F13B4"}.mdi-monitor-lock::before{content:"\F0DDB"}.mdi-monitor-multiple::before{content:"\F037A"}.mdi-monitor-off::before{content:"\F0D90"}.mdi-monitor-screenshot::before{content:"\F0E51"}.mdi-monitor-share::before{content:"\F1483"}.mdi-monitor-speaker::before{content:"\F0F5F"}.mdi-monitor-speaker-off::before{content:"\F0F60"}.mdi-monitor-star::before{content:"\F0DDC"}.mdi-moon-first-quarter::before{content:"\F0F61"}.mdi-moon-full::before{content:"\F0F62"}.mdi-moon-last-quarter::before{content:"\F0F63"}.mdi-moon-new::before{content:"\F0F64"}.mdi-moon-waning-crescent::before{content:"\F0F65"}.mdi-moon-waning-gibbous::before{content:"\F0F66"}.mdi-moon-waxing-crescent::before{content:"\F0F67"}.mdi-moon-waxing-gibbous::before{content:"\F0F68"}.mdi-moped::before{content:"\F1086"}.mdi-moped-electric::before{content:"\F15B7"}.mdi-moped-electric-outline::before{content:"\F15B8"}.mdi-moped-outline::before{content:"\F15B9"}.mdi-more::before{content:"\F037B"}.mdi-mother-heart::before{content:"\F1314"}.mdi-mother-nurse::before{content:"\F0D21"}.mdi-motion::before{content:"\F15B2"}.mdi-motion-outline::before{content:"\F15B3"}.mdi-motion-pause::before{content:"\F1590"}.mdi-motion-pause-outline::before{content:"\F1592"}.mdi-motion-play::before{content:"\F158F"}.mdi-motion-play-outline::before{content:"\F1591"}.mdi-motion-sensor::before{content:"\F0D91"}.mdi-motion-sensor-off::before{content:"\F1435"}.mdi-motorbike::before{content:"\F037C"}.mdi-motorbike-electric::before{content:"\F15BA"}.mdi-mouse::before{content:"\F037D"}.mdi-mouse-bluetooth::before{content:"\F098B"}.mdi-mouse-move-down::before{content:"\F1550"}.mdi-mouse-move-up::before{content:"\F1551"}.mdi-mouse-move-vertical::before{content:"\F1552"}.mdi-mouse-off::before{content:"\F037E"}.mdi-mouse-variant::before{content:"\F037F"}.mdi-mouse-variant-off::before{content:"\F0380"}.mdi-move-resize::before{content:"\F0655"}.mdi-move-resize-variant::before{content:"\F0656"}.mdi-movie::before{content:"\F0381"}.mdi-movie-edit::before{content:"\F1122"}.mdi-movie-edit-outline::before{content:"\F1123"}.mdi-movie-filter::before{content:"\F1124"}.mdi-movie-filter-outline::before{content:"\F1125"}.mdi-movie-open::before{content:"\F0FCE"}.mdi-movie-open-outline::before{content:"\F0FCF"}.mdi-movie-outline::before{content:"\F0DDD"}.mdi-movie-roll::before{content:"\F07DE"}.mdi-movie-search::before{content:"\F11D2"}.mdi-movie-search-outline::before{content:"\F11D3"}.mdi-mower::before{content:"\F166F"}.mdi-mower-bag::before{content:"\F1670"}.mdi-muffin::before{content:"\F098C"}.mdi-multiplication::before{content:"\F0382"}.mdi-multiplication-box::before{content:"\F0383"}.mdi-mushroom::before{content:"\F07DF"}.mdi-mushroom-off::before{content:"\F13FA"}.mdi-mushroom-off-outline::before{content:"\F13FB"}.mdi-mushroom-outline::before{content:"\F07E0"}.mdi-music::before{content:"\F075A"}.mdi-music-accidental-double-flat::before{content:"\F0F69"}.mdi-music-accidental-double-sharp::before{content:"\F0F6A"}.mdi-music-accidental-flat::before{content:"\F0F6B"}.mdi-music-accidental-natural::before{content:"\F0F6C"}.mdi-music-accidental-sharp::before{content:"\F0F6D"}.mdi-music-box::before{content:"\F0384"}.mdi-music-box-multiple::before{content:"\F0333"}.mdi-music-box-multiple-outline::before{content:"\F0F04"}.mdi-music-box-outline::before{content:"\F0385"}.mdi-music-circle::before{content:"\F0386"}.mdi-music-circle-outline::before{content:"\F0AD4"}.mdi-music-clef-alto::before{content:"\F0F6E"}.mdi-music-clef-bass::before{content:"\F0F6F"}.mdi-music-clef-treble::before{content:"\F0F70"}.mdi-music-note::before{content:"\F0387"}.mdi-music-note-bluetooth::before{content:"\F05FE"}.mdi-music-note-bluetooth-off::before{content:"\F05FF"}.mdi-music-note-eighth::before{content:"\F0388"}.mdi-music-note-eighth-dotted::before{content:"\F0F71"}.mdi-music-note-half::before{content:"\F0389"}.mdi-music-note-half-dotted::before{content:"\F0F72"}.mdi-music-note-off::before{content:"\F038A"}.mdi-music-note-off-outline::before{content:"\F0F73"}.mdi-music-note-outline::before{content:"\F0F74"}.mdi-music-note-plus::before{content:"\F0DDE"}.mdi-music-note-quarter::before{content:"\F038B"}.mdi-music-note-quarter-dotted::before{content:"\F0F75"}.mdi-music-note-sixteenth::before{content:"\F038C"}.mdi-music-note-sixteenth-dotted::before{content:"\F0F76"}.mdi-music-note-whole::before{content:"\F038D"}.mdi-music-note-whole-dotted::before{content:"\F0F77"}.mdi-music-off::before{content:"\F075B"}.mdi-music-rest-eighth::before{content:"\F0F78"}.mdi-music-rest-half::before{content:"\F0F79"}.mdi-music-rest-quarter::before{content:"\F0F7A"}.mdi-music-rest-sixteenth::before{content:"\F0F7B"}.mdi-music-rest-whole::before{content:"\F0F7C"}.mdi-mustache::before{content:"\F15DE"}.mdi-nail::before{content:"\F0DDF"}.mdi-nas::before{content:"\F08F3"}.mdi-nativescript::before{content:"\F0880"}.mdi-nature::before{content:"\F038E"}.mdi-nature-people::before{content:"\F038F"}.mdi-navigation::before{content:"\F0390"}.mdi-navigation-outline::before{content:"\F1607"}.mdi-near-me::before{content:"\F05CD"}.mdi-necklace::before{content:"\F0F0B"}.mdi-needle::before{content:"\F0391"}.mdi-netflix::before{content:"\F0746"}.mdi-network::before{content:"\F06F3"}.mdi-network-off::before{content:"\F0C9B"}.mdi-network-off-outline::before{content:"\F0C9C"}.mdi-network-outline::before{content:"\F0C9D"}.mdi-network-strength-1::before{content:"\F08F4"}.mdi-network-strength-1-alert::before{content:"\F08F5"}.mdi-network-strength-2::before{content:"\F08F6"}.mdi-network-strength-2-alert::before{content:"\F08F7"}.mdi-network-strength-3::before{content:"\F08F8"}.mdi-network-strength-3-alert::before{content:"\F08F9"}.mdi-network-strength-4::before{content:"\F08FA"}.mdi-network-strength-4-alert::before{content:"\F08FB"}.mdi-network-strength-off::before{content:"\F08FC"}.mdi-network-strength-off-outline::before{content:"\F08FD"}.mdi-network-strength-outline::before{content:"\F08FE"}.mdi-new-box::before{content:"\F0394"}.mdi-newspaper::before{content:"\F0395"}.mdi-newspaper-minus::before{content:"\F0F0C"}.mdi-newspaper-plus::before{content:"\F0F0D"}.mdi-newspaper-variant::before{content:"\F1001"}.mdi-newspaper-variant-multiple::before{content:"\F1002"}.mdi-newspaper-variant-multiple-outline::before{content:"\F1003"}.mdi-newspaper-variant-outline::before{content:"\F1004"}.mdi-nfc::before{content:"\F0396"}.mdi-nfc-search-variant::before{content:"\F0E53"}.mdi-nfc-tap::before{content:"\F0397"}.mdi-nfc-variant::before{content:"\F0398"}.mdi-nfc-variant-off::before{content:"\F0E54"}.mdi-ninja::before{content:"\F0774"}.mdi-nintendo-game-boy::before{content:"\F1393"}.mdi-nintendo-switch::before{content:"\F07E1"}.mdi-nintendo-wii::before{content:"\F05AB"}.mdi-nintendo-wiiu::before{content:"\F072D"}.mdi-nix::before{content:"\F1105"}.mdi-nodejs::before{content:"\F0399"}.mdi-noodles::before{content:"\F117E"}.mdi-not-equal::before{content:"\F098D"}.mdi-not-equal-variant::before{content:"\F098E"}.mdi-note::before{content:"\F039A"}.mdi-note-minus::before{content:"\F164F"}.mdi-note-minus-outline::before{content:"\F1650"}.mdi-note-multiple::before{content:"\F06B8"}.mdi-note-multiple-outline::before{content:"\F06B9"}.mdi-note-outline::before{content:"\F039B"}.mdi-note-plus::before{content:"\F039C"}.mdi-note-plus-outline::before{content:"\F039D"}.mdi-note-remove::before{content:"\F1651"}.mdi-note-remove-outline::before{content:"\F1652"}.mdi-note-search::before{content:"\F1653"}.mdi-note-search-outline::before{content:"\F1654"}.mdi-note-text::before{content:"\F039E"}.mdi-note-text-outline::before{content:"\F11D7"}.mdi-notebook::before{content:"\F082E"}.mdi-notebook-check::before{content:"\F14F5"}.mdi-notebook-check-outline::before{content:"\F14F6"}.mdi-notebook-edit::before{content:"\F14E7"}.mdi-notebook-edit-outline::before{content:"\F14E9"}.mdi-notebook-minus::before{content:"\F1610"}.mdi-notebook-minus-outline::before{content:"\F1611"}.mdi-notebook-multiple::before{content:"\F0E55"}.mdi-notebook-outline::before{content:"\F0EBF"}.mdi-notebook-plus::before{content:"\F1612"}.mdi-notebook-plus-outline::before{content:"\F1613"}.mdi-notebook-remove::before{content:"\F1614"}.mdi-notebook-remove-outline::before{content:"\F1615"}.mdi-notification-clear-all::before{content:"\F039F"}.mdi-npm::before{content:"\F06F7"}.mdi-nuke::before{content:"\F06A4"}.mdi-null::before{content:"\F07E2"}.mdi-numeric::before{content:"\F03A0"}.mdi-numeric-0::before{content:"\F0B39"}.mdi-numeric-0-box::before{content:"\F03A1"}.mdi-numeric-0-box-multiple::before{content:"\F0F0E"}.mdi-numeric-0-box-multiple-outline::before{content:"\F03A2"}.mdi-numeric-0-box-outline::before{content:"\F03A3"}.mdi-numeric-0-circle::before{content:"\F0C9E"}.mdi-numeric-0-circle-outline::before{content:"\F0C9F"}.mdi-numeric-1::before{content:"\F0B3A"}.mdi-numeric-1-box::before{content:"\F03A4"}.mdi-numeric-1-box-multiple::before{content:"\F0F0F"}.mdi-numeric-1-box-multiple-outline::before{content:"\F03A5"}.mdi-numeric-1-box-outline::before{content:"\F03A6"}.mdi-numeric-1-circle::before{content:"\F0CA0"}.mdi-numeric-1-circle-outline::before{content:"\F0CA1"}.mdi-numeric-10::before{content:"\F0FE9"}.mdi-numeric-10-box::before{content:"\F0F7D"}.mdi-numeric-10-box-multiple::before{content:"\F0FEA"}.mdi-numeric-10-box-multiple-outline::before{content:"\F0FEB"}.mdi-numeric-10-box-outline::before{content:"\F0F7E"}.mdi-numeric-10-circle::before{content:"\F0FEC"}.mdi-numeric-10-circle-outline::before{content:"\F0FED"}.mdi-numeric-2::before{content:"\F0B3B"}.mdi-numeric-2-box::before{content:"\F03A7"}.mdi-numeric-2-box-multiple::before{content:"\F0F10"}.mdi-numeric-2-box-multiple-outline::before{content:"\F03A8"}.mdi-numeric-2-box-outline::before{content:"\F03A9"}.mdi-numeric-2-circle::before{content:"\F0CA2"}.mdi-numeric-2-circle-outline::before{content:"\F0CA3"}.mdi-numeric-3::before{content:"\F0B3C"}.mdi-numeric-3-box::before{content:"\F03AA"}.mdi-numeric-3-box-multiple::before{content:"\F0F11"}.mdi-numeric-3-box-multiple-outline::before{content:"\F03AB"}.mdi-numeric-3-box-outline::before{content:"\F03AC"}.mdi-numeric-3-circle::before{content:"\F0CA4"}.mdi-numeric-3-circle-outline::before{content:"\F0CA5"}.mdi-numeric-4::before{content:"\F0B3D"}.mdi-numeric-4-box::before{content:"\F03AD"}.mdi-numeric-4-box-multiple::before{content:"\F0F12"}.mdi-numeric-4-box-multiple-outline::before{content:"\F03B2"}.mdi-numeric-4-box-outline::before{content:"\F03AE"}.mdi-numeric-4-circle::before{content:"\F0CA6"}.mdi-numeric-4-circle-outline::before{content:"\F0CA7"}.mdi-numeric-5::before{content:"\F0B3E"}.mdi-numeric-5-box::before{content:"\F03B1"}.mdi-numeric-5-box-multiple::before{content:"\F0F13"}.mdi-numeric-5-box-multiple-outline::before{content:"\F03AF"}.mdi-numeric-5-box-outline::before{content:"\F03B0"}.mdi-numeric-5-circle::before{content:"\F0CA8"}.mdi-numeric-5-circle-outline::before{content:"\F0CA9"}.mdi-numeric-6::before{content:"\F0B3F"}.mdi-numeric-6-box::before{content:"\F03B3"}.mdi-numeric-6-box-multiple::before{content:"\F0F14"}.mdi-numeric-6-box-multiple-outline::before{content:"\F03B4"}.mdi-numeric-6-box-outline::before{content:"\F03B5"}.mdi-numeric-6-circle::before{content:"\F0CAA"}.mdi-numeric-6-circle-outline::before{content:"\F0CAB"}.mdi-numeric-7::before{content:"\F0B40"}.mdi-numeric-7-box::before{content:"\F03B6"}.mdi-numeric-7-box-multiple::before{content:"\F0F15"}.mdi-numeric-7-box-multiple-outline::before{content:"\F03B7"}.mdi-numeric-7-box-outline::before{content:"\F03B8"}.mdi-numeric-7-circle::before{content:"\F0CAC"}.mdi-numeric-7-circle-outline::before{content:"\F0CAD"}.mdi-numeric-8::before{content:"\F0B41"}.mdi-numeric-8-box::before{content:"\F03B9"}.mdi-numeric-8-box-multiple::before{content:"\F0F16"}.mdi-numeric-8-box-multiple-outline::before{content:"\F03BA"}.mdi-numeric-8-box-outline::before{content:"\F03BB"}.mdi-numeric-8-circle::before{content:"\F0CAE"}.mdi-numeric-8-circle-outline::before{content:"\F0CAF"}.mdi-numeric-9::before{content:"\F0B42"}.mdi-numeric-9-box::before{content:"\F03BC"}.mdi-numeric-9-box-multiple::before{content:"\F0F17"}.mdi-numeric-9-box-multiple-outline::before{content:"\F03BD"}.mdi-numeric-9-box-outline::before{content:"\F03BE"}.mdi-numeric-9-circle::before{content:"\F0CB0"}.mdi-numeric-9-circle-outline::before{content:"\F0CB1"}.mdi-numeric-9-plus::before{content:"\F0FEE"}.mdi-numeric-9-plus-box::before{content:"\F03BF"}.mdi-numeric-9-plus-box-multiple::before{content:"\F0F18"}.mdi-numeric-9-plus-box-multiple-outline::before{content:"\F03C0"}.mdi-numeric-9-plus-box-outline::before{content:"\F03C1"}.mdi-numeric-9-plus-circle::before{content:"\F0CB2"}.mdi-numeric-9-plus-circle-outline::before{content:"\F0CB3"}.mdi-numeric-negative-1::before{content:"\F1052"}.mdi-numeric-positive-1::before{content:"\F15CB"}.mdi-nut::before{content:"\F06F8"}.mdi-nutrition::before{content:"\F03C2"}.mdi-nuxt::before{content:"\F1106"}.mdi-oar::before{content:"\F067C"}.mdi-ocarina::before{content:"\F0DE0"}.mdi-oci::before{content:"\F12E9"}.mdi-ocr::before{content:"\F113A"}.mdi-octagon::before{content:"\F03C3"}.mdi-octagon-outline::before{content:"\F03C4"}.mdi-octagram::before{content:"\F06F9"}.mdi-octagram-outline::before{content:"\F0775"}.mdi-odnoklassniki::before{content:"\F03C5"}.mdi-offer::before{content:"\F121B"}.mdi-office-building::before{content:"\F0991"}.mdi-office-building-marker::before{content:"\F1520"}.mdi-office-building-marker-outline::before{content:"\F1521"}.mdi-office-building-outline::before{content:"\F151F"}.mdi-oil::before{content:"\F03C7"}.mdi-oil-lamp::before{content:"\F0F19"}.mdi-oil-level::before{content:"\F1053"}.mdi-oil-temperature::before{content:"\F0FF8"}.mdi-omega::before{content:"\F03C9"}.mdi-one-up::before{content:"\F0BAD"}.mdi-onepassword::before{content:"\F0881"}.mdi-opacity::before{content:"\F05CC"}.mdi-open-in-app::before{content:"\F03CB"}.mdi-open-in-new::before{content:"\F03CC"}.mdi-open-source-initiative::before{content:"\F0BAE"}.mdi-openid::before{content:"\F03CD"}.mdi-opera::before{content:"\F03CE"}.mdi-orbit::before{content:"\F0018"}.mdi-orbit-variant::before{content:"\F15DB"}.mdi-order-alphabetical-ascending::before{content:"\F020D"}.mdi-order-alphabetical-descending::before{content:"\F0D07"}.mdi-order-bool-ascending::before{content:"\F02BE"}.mdi-order-bool-ascending-variant::before{content:"\F098F"}.mdi-order-bool-descending::before{content:"\F1384"}.mdi-order-bool-descending-variant::before{content:"\F0990"}.mdi-order-numeric-ascending::before{content:"\F0545"}.mdi-order-numeric-descending::before{content:"\F0546"}.mdi-origin::before{content:"\F0B43"}.mdi-ornament::before{content:"\F03CF"}.mdi-ornament-variant::before{content:"\F03D0"}.mdi-outdoor-lamp::before{content:"\F1054"}.mdi-overscan::before{content:"\F1005"}.mdi-owl::before{content:"\F03D2"}.mdi-pac-man::before{content:"\F0BAF"}.mdi-package::before{content:"\F03D3"}.mdi-package-down::before{content:"\F03D4"}.mdi-package-up::before{content:"\F03D5"}.mdi-package-variant::before{content:"\F03D6"}.mdi-package-variant-closed::before{content:"\F03D7"}.mdi-page-first::before{content:"\F0600"}.mdi-page-last::before{content:"\F0601"}.mdi-page-layout-body::before{content:"\F06FA"}.mdi-page-layout-footer::before{content:"\F06FB"}.mdi-page-layout-header::before{content:"\F06FC"}.mdi-page-layout-header-footer::before{content:"\F0F7F"}.mdi-page-layout-sidebar-left::before{content:"\F06FD"}.mdi-page-layout-sidebar-right::before{content:"\F06FE"}.mdi-page-next::before{content:"\F0BB0"}.mdi-page-next-outline::before{content:"\F0BB1"}.mdi-page-previous::before{content:"\F0BB2"}.mdi-page-previous-outline::before{content:"\F0BB3"}.mdi-pail::before{content:"\F1417"}.mdi-pail-minus::before{content:"\F1437"}.mdi-pail-minus-outline::before{content:"\F143C"}.mdi-pail-off::before{content:"\F1439"}.mdi-pail-off-outline::before{content:"\F143E"}.mdi-pail-outline::before{content:"\F143A"}.mdi-pail-plus::before{content:"\F1436"}.mdi-pail-plus-outline::before{content:"\F143B"}.mdi-pail-remove::before{content:"\F1438"}.mdi-pail-remove-outline::before{content:"\F143D"}.mdi-palette::before{content:"\F03D8"}.mdi-palette-advanced::before{content:"\F03D9"}.mdi-palette-outline::before{content:"\F0E0C"}.mdi-palette-swatch::before{content:"\F08B5"}.mdi-palette-swatch-outline::before{content:"\F135C"}.mdi-palm-tree::before{content:"\F1055"}.mdi-pan::before{content:"\F0BB4"}.mdi-pan-bottom-left::before{content:"\F0BB5"}.mdi-pan-bottom-right::before{content:"\F0BB6"}.mdi-pan-down::before{content:"\F0BB7"}.mdi-pan-horizontal::before{content:"\F0BB8"}.mdi-pan-left::before{content:"\F0BB9"}.mdi-pan-right::before{content:"\F0BBA"}.mdi-pan-top-left::before{content:"\F0BBB"}.mdi-pan-top-right::before{content:"\F0BBC"}.mdi-pan-up::before{content:"\F0BBD"}.mdi-pan-vertical::before{content:"\F0BBE"}.mdi-panda::before{content:"\F03DA"}.mdi-pandora::before{content:"\F03DB"}.mdi-panorama::before{content:"\F03DC"}.mdi-panorama-fisheye::before{content:"\F03DD"}.mdi-panorama-horizontal::before{content:"\F03DE"}.mdi-panorama-vertical::before{content:"\F03DF"}.mdi-panorama-wide-angle::before{content:"\F03E0"}.mdi-paper-cut-vertical::before{content:"\F03E1"}.mdi-paper-roll::before{content:"\F1157"}.mdi-paper-roll-outline::before{content:"\F1158"}.mdi-paperclip::before{content:"\F03E2"}.mdi-parachute::before{content:"\F0CB4"}.mdi-parachute-outline::before{content:"\F0CB5"}.mdi-parking::before{content:"\F03E3"}.mdi-party-popper::before{content:"\F1056"}.mdi-passport::before{content:"\F07E3"}.mdi-passport-biometric::before{content:"\F0DE1"}.mdi-pasta::before{content:"\F1160"}.mdi-patio-heater::before{content:"\F0F80"}.mdi-patreon::before{content:"\F0882"}.mdi-pause::before{content:"\F03E4"}.mdi-pause-circle::before{content:"\F03E5"}.mdi-pause-circle-outline::before{content:"\F03E6"}.mdi-pause-octagon::before{content:"\F03E7"}.mdi-pause-octagon-outline::before{content:"\F03E8"}.mdi-paw::before{content:"\F03E9"}.mdi-paw-off::before{content:"\F0657"}.mdi-paw-off-outline::before{content:"\F1676"}.mdi-paw-outline::before{content:"\F1675"}.mdi-pdf-box::before{content:"\F0E56"}.mdi-peace::before{content:"\F0884"}.mdi-peanut::before{content:"\F0FFC"}.mdi-peanut-off::before{content:"\F0FFD"}.mdi-peanut-off-outline::before{content:"\F0FFF"}.mdi-peanut-outline::before{content:"\F0FFE"}.mdi-pen::before{content:"\F03EA"}.mdi-pen-lock::before{content:"\F0DE2"}.mdi-pen-minus::before{content:"\F0DE3"}.mdi-pen-off::before{content:"\F0DE4"}.mdi-pen-plus::before{content:"\F0DE5"}.mdi-pen-remove::before{content:"\F0DE6"}.mdi-pencil::before{content:"\F03EB"}.mdi-pencil-box::before{content:"\F03EC"}.mdi-pencil-box-multiple::before{content:"\F1144"}.mdi-pencil-box-multiple-outline::before{content:"\F1145"}.mdi-pencil-box-outline::before{content:"\F03ED"}.mdi-pencil-circle::before{content:"\F06FF"}.mdi-pencil-circle-outline::before{content:"\F0776"}.mdi-pencil-lock::before{content:"\F03EE"}.mdi-pencil-lock-outline::before{content:"\F0DE7"}.mdi-pencil-minus::before{content:"\F0DE8"}.mdi-pencil-minus-outline::before{content:"\F0DE9"}.mdi-pencil-off::before{content:"\F03EF"}.mdi-pencil-off-outline::before{content:"\F0DEA"}.mdi-pencil-outline::before{content:"\F0CB6"}.mdi-pencil-plus::before{content:"\F0DEB"}.mdi-pencil-plus-outline::before{content:"\F0DEC"}.mdi-pencil-remove::before{content:"\F0DED"}.mdi-pencil-remove-outline::before{content:"\F0DEE"}.mdi-pencil-ruler::before{content:"\F1353"}.mdi-penguin::before{content:"\F0EC0"}.mdi-pentagon::before{content:"\F0701"}.mdi-pentagon-outline::before{content:"\F0700"}.mdi-pentagram::before{content:"\F1667"}.mdi-percent::before{content:"\F03F0"}.mdi-percent-outline::before{content:"\F1278"}.mdi-periodic-table::before{content:"\F08B6"}.mdi-perspective-less::before{content:"\F0D23"}.mdi-perspective-more::before{content:"\F0D24"}.mdi-pharmacy::before{content:"\F03F1"}.mdi-phone::before{content:"\F03F2"}.mdi-phone-alert::before{content:"\F0F1A"}.mdi-phone-alert-outline::before{content:"\F118E"}.mdi-phone-bluetooth::before{content:"\F03F3"}.mdi-phone-bluetooth-outline::before{content:"\F118F"}.mdi-phone-cancel::before{content:"\F10BC"}.mdi-phone-cancel-outline::before{content:"\F1190"}.mdi-phone-check::before{content:"\F11A9"}.mdi-phone-check-outline::before{content:"\F11AA"}.mdi-phone-classic::before{content:"\F0602"}.mdi-phone-classic-off::before{content:"\F1279"}.mdi-phone-dial::before{content:"\F1559"}.mdi-phone-dial-outline::before{content:"\F155A"}.mdi-phone-forward::before{content:"\F03F4"}.mdi-phone-forward-outline::before{content:"\F1191"}.mdi-phone-hangup::before{content:"\F03F5"}.mdi-phone-hangup-outline::before{content:"\F1192"}.mdi-phone-in-talk::before{content:"\F03F6"}.mdi-phone-in-talk-outline::before{content:"\F1182"}.mdi-phone-incoming::before{content:"\F03F7"}.mdi-phone-incoming-outline::before{content:"\F1193"}.mdi-phone-lock::before{content:"\F03F8"}.mdi-phone-lock-outline::before{content:"\F1194"}.mdi-phone-log::before{content:"\F03F9"}.mdi-phone-log-outline::before{content:"\F1195"}.mdi-phone-message::before{content:"\F1196"}.mdi-phone-message-outline::before{content:"\F1197"}.mdi-phone-minus::before{content:"\F0658"}.mdi-phone-minus-outline::before{content:"\F1198"}.mdi-phone-missed::before{content:"\F03FA"}.mdi-phone-missed-outline::before{content:"\F11A5"}.mdi-phone-off::before{content:"\F0DEF"}.mdi-phone-off-outline::before{content:"\F11A6"}.mdi-phone-outgoing::before{content:"\F03FB"}.mdi-phone-outgoing-outline::before{content:"\F1199"}.mdi-phone-outline::before{content:"\F0DF0"}.mdi-phone-paused::before{content:"\F03FC"}.mdi-phone-paused-outline::before{content:"\F119A"}.mdi-phone-plus::before{content:"\F0659"}.mdi-phone-plus-outline::before{content:"\F119B"}.mdi-phone-remove::before{content:"\F152F"}.mdi-phone-remove-outline::before{content:"\F1530"}.mdi-phone-return::before{content:"\F082F"}.mdi-phone-return-outline::before{content:"\F119C"}.mdi-phone-ring::before{content:"\F11AB"}.mdi-phone-ring-outline::before{content:"\F11AC"}.mdi-phone-rotate-landscape::before{content:"\F0885"}.mdi-phone-rotate-portrait::before{content:"\F0886"}.mdi-phone-settings::before{content:"\F03FD"}.mdi-phone-settings-outline::before{content:"\F119D"}.mdi-phone-voip::before{content:"\F03FE"}.mdi-pi::before{content:"\F03FF"}.mdi-pi-box::before{content:"\F0400"}.mdi-pi-hole::before{content:"\F0DF1"}.mdi-piano::before{content:"\F067D"}.mdi-pickaxe::before{content:"\F08B7"}.mdi-picture-in-picture-bottom-right::before{content:"\F0E57"}.mdi-picture-in-picture-bottom-right-outline::before{content:"\F0E58"}.mdi-picture-in-picture-top-right::before{content:"\F0E59"}.mdi-picture-in-picture-top-right-outline::before{content:"\F0E5A"}.mdi-pier::before{content:"\F0887"}.mdi-pier-crane::before{content:"\F0888"}.mdi-pig::before{content:"\F0401"}.mdi-pig-variant::before{content:"\F1006"}.mdi-pig-variant-outline::before{content:"\F1678"}.mdi-piggy-bank::before{content:"\F1007"}.mdi-piggy-bank-outline::before{content:"\F1679"}.mdi-pill::before{content:"\F0402"}.mdi-pillar::before{content:"\F0702"}.mdi-pin::before{content:"\F0403"}.mdi-pin-off::before{content:"\F0404"}.mdi-pin-off-outline::before{content:"\F0930"}.mdi-pin-outline::before{content:"\F0931"}.mdi-pine-tree::before{content:"\F0405"}.mdi-pine-tree-box::before{content:"\F0406"}.mdi-pine-tree-fire::before{content:"\F141A"}.mdi-pinterest::before{content:"\F0407"}.mdi-pinwheel::before{content:"\F0AD5"}.mdi-pinwheel-outline::before{content:"\F0AD6"}.mdi-pipe::before{content:"\F07E5"}.mdi-pipe-disconnected::before{content:"\F07E6"}.mdi-pipe-leak::before{content:"\F0889"}.mdi-pipe-wrench::before{content:"\F1354"}.mdi-pirate::before{content:"\F0A08"}.mdi-pistol::before{content:"\F0703"}.mdi-piston::before{content:"\F088A"}.mdi-pitchfork::before{content:"\F1553"}.mdi-pizza::before{content:"\F0409"}.mdi-play::before{content:"\F040A"}.mdi-play-box::before{content:"\F127A"}.mdi-play-box-multiple::before{content:"\F0D19"}.mdi-play-box-multiple-outline::before{content:"\F13E6"}.mdi-play-box-outline::before{content:"\F040B"}.mdi-play-circle::before{content:"\F040C"}.mdi-play-circle-outline::before{content:"\F040D"}.mdi-play-network::before{content:"\F088B"}.mdi-play-network-outline::before{content:"\F0CB7"}.mdi-play-outline::before{content:"\F0F1B"}.mdi-play-pause::before{content:"\F040E"}.mdi-play-protected-content::before{content:"\F040F"}.mdi-play-speed::before{content:"\F08FF"}.mdi-playlist-check::before{content:"\F05C7"}.mdi-playlist-edit::before{content:"\F0900"}.mdi-playlist-minus::before{content:"\F0410"}.mdi-playlist-music::before{content:"\F0CB8"}.mdi-playlist-music-outline::before{content:"\F0CB9"}.mdi-playlist-play::before{content:"\F0411"}.mdi-playlist-plus::before{content:"\F0412"}.mdi-playlist-remove::before{content:"\F0413"}.mdi-playlist-star::before{content:"\F0DF2"}.mdi-plex::before{content:"\F06BA"}.mdi-plus::before{content:"\F0415"}.mdi-plus-box::before{content:"\F0416"}.mdi-plus-box-multiple::before{content:"\F0334"}.mdi-plus-box-multiple-outline::before{content:"\F1143"}.mdi-plus-box-outline::before{content:"\F0704"}.mdi-plus-circle::before{content:"\F0417"}.mdi-plus-circle-multiple::before{content:"\F034C"}.mdi-plus-circle-multiple-outline::before{content:"\F0418"}.mdi-plus-circle-outline::before{content:"\F0419"}.mdi-plus-minus::before{content:"\F0992"}.mdi-plus-minus-box::before{content:"\F0993"}.mdi-plus-minus-variant::before{content:"\F14C9"}.mdi-plus-network::before{content:"\F041A"}.mdi-plus-network-outline::before{content:"\F0CBA"}.mdi-plus-one::before{content:"\F041B"}.mdi-plus-outline::before{content:"\F0705"}.mdi-plus-thick::before{content:"\F11EC"}.mdi-podcast::before{content:"\F0994"}.mdi-podium::before{content:"\F0D25"}.mdi-podium-bronze::before{content:"\F0D26"}.mdi-podium-gold::before{content:"\F0D27"}.mdi-podium-silver::before{content:"\F0D28"}.mdi-point-of-sale::before{content:"\F0D92"}.mdi-pokeball::before{content:"\F041D"}.mdi-pokemon-go::before{content:"\F0A09"}.mdi-poker-chip::before{content:"\F0830"}.mdi-polaroid::before{content:"\F041E"}.mdi-police-badge::before{content:"\F1167"}.mdi-police-badge-outline::before{content:"\F1168"}.mdi-poll::before{content:"\F041F"}.mdi-poll-box::before{content:"\F0420"}.mdi-poll-box-outline::before{content:"\F127B"}.mdi-polo::before{content:"\F14C3"}.mdi-polymer::before{content:"\F0421"}.mdi-pool::before{content:"\F0606"}.mdi-popcorn::before{content:"\F0422"}.mdi-post::before{content:"\F1008"}.mdi-post-outline::before{content:"\F1009"}.mdi-postage-stamp::before{content:"\F0CBB"}.mdi-pot::before{content:"\F02E5"}.mdi-pot-mix::before{content:"\F065B"}.mdi-pot-mix-outline::before{content:"\F0677"}.mdi-pot-outline::before{content:"\F02FF"}.mdi-pot-steam::before{content:"\F065A"}.mdi-pot-steam-outline::before{content:"\F0326"}.mdi-pound::before{content:"\F0423"}.mdi-pound-box::before{content:"\F0424"}.mdi-pound-box-outline::before{content:"\F117F"}.mdi-power::before{content:"\F0425"}.mdi-power-cycle::before{content:"\F0901"}.mdi-power-off::before{content:"\F0902"}.mdi-power-on::before{content:"\F0903"}.mdi-power-plug::before{content:"\F06A5"}.mdi-power-plug-off::before{content:"\F06A6"}.mdi-power-plug-off-outline::before{content:"\F1424"}.mdi-power-plug-outline::before{content:"\F1425"}.mdi-power-settings::before{content:"\F0426"}.mdi-power-sleep::before{content:"\F0904"}.mdi-power-socket::before{content:"\F0427"}.mdi-power-socket-au::before{content:"\F0905"}.mdi-power-socket-de::before{content:"\F1107"}.mdi-power-socket-eu::before{content:"\F07E7"}.mdi-power-socket-fr::before{content:"\F1108"}.mdi-power-socket-it::before{content:"\F14FF"}.mdi-power-socket-jp::before{content:"\F1109"}.mdi-power-socket-uk::before{content:"\F07E8"}.mdi-power-socket-us::before{content:"\F07E9"}.mdi-power-standby::before{content:"\F0906"}.mdi-powershell::before{content:"\F0A0A"}.mdi-prescription::before{content:"\F0706"}.mdi-presentation::before{content:"\F0428"}.mdi-presentation-play::before{content:"\F0429"}.mdi-pretzel::before{content:"\F1562"}.mdi-printer::before{content:"\F042A"}.mdi-printer-3d::before{content:"\F042B"}.mdi-printer-3d-nozzle::before{content:"\F0E5B"}.mdi-printer-3d-nozzle-alert::before{content:"\F11C0"}.mdi-printer-3d-nozzle-alert-outline::before{content:"\F11C1"}.mdi-printer-3d-nozzle-outline::before{content:"\F0E5C"}.mdi-printer-alert::before{content:"\F042C"}.mdi-printer-check::before{content:"\F1146"}.mdi-printer-eye::before{content:"\F1458"}.mdi-printer-off::before{content:"\F0E5D"}.mdi-printer-pos::before{content:"\F1057"}.mdi-printer-search::before{content:"\F1457"}.mdi-printer-settings::before{content:"\F0707"}.mdi-printer-wireless::before{content:"\F0A0B"}.mdi-priority-high::before{content:"\F0603"}.mdi-priority-low::before{content:"\F0604"}.mdi-professional-hexagon::before{content:"\F042D"}.mdi-progress-alert::before{content:"\F0CBC"}.mdi-progress-check::before{content:"\F0995"}.mdi-progress-clock::before{content:"\F0996"}.mdi-progress-close::before{content:"\F110A"}.mdi-progress-download::before{content:"\F0997"}.mdi-progress-question::before{content:"\F1522"}.mdi-progress-upload::before{content:"\F0998"}.mdi-progress-wrench::before{content:"\F0CBD"}.mdi-projector::before{content:"\F042E"}.mdi-projector-screen::before{content:"\F042F"}.mdi-propane-tank::before{content:"\F1357"}.mdi-propane-tank-outline::before{content:"\F1358"}.mdi-protocol::before{content:"\F0FD8"}.mdi-publish::before{content:"\F06A7"}.mdi-pulse::before{content:"\F0430"}.mdi-pump::before{content:"\F1402"}.mdi-pumpkin::before{content:"\F0BBF"}.mdi-purse::before{content:"\F0F1C"}.mdi-purse-outline::before{content:"\F0F1D"}.mdi-puzzle::before{content:"\F0431"}.mdi-puzzle-check::before{content:"\F1426"}.mdi-puzzle-check-outline::before{content:"\F1427"}.mdi-puzzle-edit::before{content:"\F14D3"}.mdi-puzzle-edit-outline::before{content:"\F14D9"}.mdi-puzzle-heart::before{content:"\F14D4"}.mdi-puzzle-heart-outline::before{content:"\F14DA"}.mdi-puzzle-minus::before{content:"\F14D1"}.mdi-puzzle-minus-outline::before{content:"\F14D7"}.mdi-puzzle-outline::before{content:"\F0A66"}.mdi-puzzle-plus::before{content:"\F14D0"}.mdi-puzzle-plus-outline::before{content:"\F14D6"}.mdi-puzzle-remove::before{content:"\F14D2"}.mdi-puzzle-remove-outline::before{content:"\F14D8"}.mdi-puzzle-star::before{content:"\F14D5"}.mdi-puzzle-star-outline::before{content:"\F14DB"}.mdi-qi::before{content:"\F0999"}.mdi-qqchat::before{content:"\F0605"}.mdi-qrcode::before{content:"\F0432"}.mdi-qrcode-edit::before{content:"\F08B8"}.mdi-qrcode-minus::before{content:"\F118C"}.mdi-qrcode-plus::before{content:"\F118B"}.mdi-qrcode-remove::before{content:"\F118D"}.mdi-qrcode-scan::before{content:"\F0433"}.mdi-quadcopter::before{content:"\F0434"}.mdi-quality-high::before{content:"\F0435"}.mdi-quality-low::before{content:"\F0A0C"}.mdi-quality-medium::before{content:"\F0A0D"}.mdi-quora::before{content:"\F0D29"}.mdi-rabbit::before{content:"\F0907"}.mdi-racing-helmet::before{content:"\F0D93"}.mdi-racquetball::before{content:"\F0D94"}.mdi-radar::before{content:"\F0437"}.mdi-radiator::before{content:"\F0438"}.mdi-radiator-disabled::before{content:"\F0AD7"}.mdi-radiator-off::before{content:"\F0AD8"}.mdi-radio::before{content:"\F0439"}.mdi-radio-am::before{content:"\F0CBE"}.mdi-radio-fm::before{content:"\F0CBF"}.mdi-radio-handheld::before{content:"\F043A"}.mdi-radio-off::before{content:"\F121C"}.mdi-radio-tower::before{content:"\F043B"}.mdi-radioactive::before{content:"\F043C"}.mdi-radioactive-off::before{content:"\F0EC1"}.mdi-radiobox-blank::before{content:"\F043D"}.mdi-radiobox-marked::before{content:"\F043E"}.mdi-radiology-box::before{content:"\F14C5"}.mdi-radiology-box-outline::before{content:"\F14C6"}.mdi-radius::before{content:"\F0CC0"}.mdi-radius-outline::before{content:"\F0CC1"}.mdi-railroad-light::before{content:"\F0F1E"}.mdi-rake::before{content:"\F1544"}.mdi-raspberry-pi::before{content:"\F043F"}.mdi-ray-end::before{content:"\F0440"}.mdi-ray-end-arrow::before{content:"\F0441"}.mdi-ray-start::before{content:"\F0442"}.mdi-ray-start-arrow::before{content:"\F0443"}.mdi-ray-start-end::before{content:"\F0444"}.mdi-ray-start-vertex-end::before{content:"\F15D8"}.mdi-ray-vertex::before{content:"\F0445"}.mdi-react::before{content:"\F0708"}.mdi-read::before{content:"\F0447"}.mdi-receipt::before{content:"\F0449"}.mdi-record::before{content:"\F044A"}.mdi-record-circle::before{content:"\F0EC2"}.mdi-record-circle-outline::before{content:"\F0EC3"}.mdi-record-player::before{content:"\F099A"}.mdi-record-rec::before{content:"\F044B"}.mdi-rectangle::before{content:"\F0E5E"}.mdi-rectangle-outline::before{content:"\F0E5F"}.mdi-recycle::before{content:"\F044C"}.mdi-recycle-variant::before{content:"\F139D"}.mdi-reddit::before{content:"\F044D"}.mdi-redhat::before{content:"\F111B"}.mdi-redo::before{content:"\F044E"}.mdi-redo-variant::before{content:"\F044F"}.mdi-reflect-horizontal::before{content:"\F0A0E"}.mdi-reflect-vertical::before{content:"\F0A0F"}.mdi-refresh::before{content:"\F0450"}.mdi-refresh-circle::before{content:"\F1377"}.mdi-regex::before{content:"\F0451"}.mdi-registered-trademark::before{content:"\F0A67"}.mdi-reiterate::before{content:"\F1588"}.mdi-relation-many-to-many::before{content:"\F1496"}.mdi-relation-many-to-one::before{content:"\F1497"}.mdi-relation-many-to-one-or-many::before{content:"\F1498"}.mdi-relation-many-to-only-one::before{content:"\F1499"}.mdi-relation-many-to-zero-or-many::before{content:"\F149A"}.mdi-relation-many-to-zero-or-one::before{content:"\F149B"}.mdi-relation-one-or-many-to-many::before{content:"\F149C"}.mdi-relation-one-or-many-to-one::before{content:"\F149D"}.mdi-relation-one-or-many-to-one-or-many::before{content:"\F149E"}.mdi-relation-one-or-many-to-only-one::before{content:"\F149F"}.mdi-relation-one-or-many-to-zero-or-many::before{content:"\F14A0"}.mdi-relation-one-or-many-to-zero-or-one::before{content:"\F14A1"}.mdi-relation-one-to-many::before{content:"\F14A2"}.mdi-relation-one-to-one::before{content:"\F14A3"}.mdi-relation-one-to-one-or-many::before{content:"\F14A4"}.mdi-relation-one-to-only-one::before{content:"\F14A5"}.mdi-relation-one-to-zero-or-many::before{content:"\F14A6"}.mdi-relation-one-to-zero-or-one::before{content:"\F14A7"}.mdi-relation-only-one-to-many::before{content:"\F14A8"}.mdi-relation-only-one-to-one::before{content:"\F14A9"}.mdi-relation-only-one-to-one-or-many::before{content:"\F14AA"}.mdi-relation-only-one-to-only-one::before{content:"\F14AB"}.mdi-relation-only-one-to-zero-or-many::before{content:"\F14AC"}.mdi-relation-only-one-to-zero-or-one::before{content:"\F14AD"}.mdi-relation-zero-or-many-to-many::before{content:"\F14AE"}.mdi-relation-zero-or-many-to-one::before{content:"\F14AF"}.mdi-relation-zero-or-many-to-one-or-many::before{content:"\F14B0"}.mdi-relation-zero-or-many-to-only-one::before{content:"\F14B1"}.mdi-relation-zero-or-many-to-zero-or-many::before{content:"\F14B2"}.mdi-relation-zero-or-many-to-zero-or-one::before{content:"\F14B3"}.mdi-relation-zero-or-one-to-many::before{content:"\F14B4"}.mdi-relation-zero-or-one-to-one::before{content:"\F14B5"}.mdi-relation-zero-or-one-to-one-or-many::before{content:"\F14B6"}.mdi-relation-zero-or-one-to-only-one::before{content:"\F14B7"}.mdi-relation-zero-or-one-to-zero-or-many::before{content:"\F14B8"}.mdi-relation-zero-or-one-to-zero-or-one::before{content:"\F14B9"}.mdi-relative-scale::before{content:"\F0452"}.mdi-reload::before{content:"\F0453"}.mdi-reload-alert::before{content:"\F110B"}.mdi-reminder::before{content:"\F088C"}.mdi-remote::before{content:"\F0454"}.mdi-remote-desktop::before{content:"\F08B9"}.mdi-remote-off::before{content:"\F0EC4"}.mdi-remote-tv::before{content:"\F0EC5"}.mdi-remote-tv-off::before{content:"\F0EC6"}.mdi-rename-box::before{content:"\F0455"}.mdi-reorder-horizontal::before{content:"\F0688"}.mdi-reorder-vertical::before{content:"\F0689"}.mdi-repeat::before{content:"\F0456"}.mdi-repeat-off::before{content:"\F0457"}.mdi-repeat-once::before{content:"\F0458"}.mdi-replay::before{content:"\F0459"}.mdi-reply::before{content:"\F045A"}.mdi-reply-all::before{content:"\F045B"}.mdi-reply-all-outline::before{content:"\F0F1F"}.mdi-reply-circle::before{content:"\F11AE"}.mdi-reply-outline::before{content:"\F0F20"}.mdi-reproduction::before{content:"\F045C"}.mdi-resistor::before{content:"\F0B44"}.mdi-resistor-nodes::before{content:"\F0B45"}.mdi-resize::before{content:"\F0A68"}.mdi-resize-bottom-right::before{content:"\F045D"}.mdi-responsive::before{content:"\F045E"}.mdi-restart::before{content:"\F0709"}.mdi-restart-alert::before{content:"\F110C"}.mdi-restart-off::before{content:"\F0D95"}.mdi-restore::before{content:"\F099B"}.mdi-restore-alert::before{content:"\F110D"}.mdi-rewind::before{content:"\F045F"}.mdi-rewind-10::before{content:"\F0D2A"}.mdi-rewind-30::before{content:"\F0D96"}.mdi-rewind-5::before{content:"\F11F9"}.mdi-rewind-60::before{content:"\F160C"}.mdi-rewind-outline::before{content:"\F070A"}.mdi-rhombus::before{content:"\F070B"}.mdi-rhombus-medium::before{content:"\F0A10"}.mdi-rhombus-medium-outline::before{content:"\F14DC"}.mdi-rhombus-outline::before{content:"\F070C"}.mdi-rhombus-split::before{content:"\F0A11"}.mdi-rhombus-split-outline::before{content:"\F14DD"}.mdi-ribbon::before{content:"\F0460"}.mdi-rice::before{content:"\F07EA"}.mdi-rickshaw::before{content:"\F15BB"}.mdi-rickshaw-electric::before{content:"\F15BC"}.mdi-ring::before{content:"\F07EB"}.mdi-rivet::before{content:"\F0E60"}.mdi-road::before{content:"\F0461"}.mdi-road-variant::before{content:"\F0462"}.mdi-robber::before{content:"\F1058"}.mdi-robot::before{content:"\F06A9"}.mdi-robot-angry::before{content:"\F169D"}.mdi-robot-angry-outline::before{content:"\F169E"}.mdi-robot-confused::before{content:"\F169F"}.mdi-robot-confused-outline::before{content:"\F16A0"}.mdi-robot-dead::before{content:"\F16A1"}.mdi-robot-dead-outline::before{content:"\F16A2"}.mdi-robot-excited::before{content:"\F16A3"}.mdi-robot-excited-outline::before{content:"\F16A4"}.mdi-robot-industrial::before{content:"\F0B46"}.mdi-robot-love::before{content:"\F16A5"}.mdi-robot-love-outline::before{content:"\F16A6"}.mdi-robot-mower::before{content:"\F11F7"}.mdi-robot-mower-outline::before{content:"\F11F3"}.mdi-robot-off::before{content:"\F16A7"}.mdi-robot-off-outline::before{content:"\F167B"}.mdi-robot-outline::before{content:"\F167A"}.mdi-robot-vacuum::before{content:"\F070D"}.mdi-robot-vacuum-variant::before{content:"\F0908"}.mdi-rocket::before{content:"\F0463"}.mdi-rocket-launch::before{content:"\F14DE"}.mdi-rocket-launch-outline::before{content:"\F14DF"}.mdi-rocket-outline::before{content:"\F13AF"}.mdi-rodent::before{content:"\F1327"}.mdi-roller-skate::before{content:"\F0D2B"}.mdi-roller-skate-off::before{content:"\F0145"}.mdi-rollerblade::before{content:"\F0D2C"}.mdi-rollerblade-off::before{content:"\F002E"}.mdi-rollupjs::before{content:"\F0BC0"}.mdi-roman-numeral-1::before{content:"\F1088"}.mdi-roman-numeral-10::before{content:"\F1091"}.mdi-roman-numeral-2::before{content:"\F1089"}.mdi-roman-numeral-3::before{content:"\F108A"}.mdi-roman-numeral-4::before{content:"\F108B"}.mdi-roman-numeral-5::before{content:"\F108C"}.mdi-roman-numeral-6::before{content:"\F108D"}.mdi-roman-numeral-7::before{content:"\F108E"}.mdi-roman-numeral-8::before{content:"\F108F"}.mdi-roman-numeral-9::before{content:"\F1090"}.mdi-room-service::before{content:"\F088D"}.mdi-room-service-outline::before{content:"\F0D97"}.mdi-rotate-3d::before{content:"\F0EC7"}.mdi-rotate-3d-variant::before{content:"\F0464"}.mdi-rotate-left::before{content:"\F0465"}.mdi-rotate-left-variant::before{content:"\F0466"}.mdi-rotate-orbit::before{content:"\F0D98"}.mdi-rotate-right::before{content:"\F0467"}.mdi-rotate-right-variant::before{content:"\F0468"}.mdi-rounded-corner::before{content:"\F0607"}.mdi-router::before{content:"\F11E2"}.mdi-router-network::before{content:"\F1087"}.mdi-router-wireless::before{content:"\F0469"}.mdi-router-wireless-off::before{content:"\F15A3"}.mdi-router-wireless-settings::before{content:"\F0A69"}.mdi-routes::before{content:"\F046A"}.mdi-routes-clock::before{content:"\F1059"}.mdi-rowing::before{content:"\F0608"}.mdi-rss::before{content:"\F046B"}.mdi-rss-box::before{content:"\F046C"}.mdi-rss-off::before{content:"\F0F21"}.mdi-rug::before{content:"\F1475"}.mdi-rugby::before{content:"\F0D99"}.mdi-ruler::before{content:"\F046D"}.mdi-ruler-square::before{content:"\F0CC2"}.mdi-ruler-square-compass::before{content:"\F0EBE"}.mdi-run::before{content:"\F070E"}.mdi-run-fast::before{content:"\F046E"}.mdi-rv-truck::before{content:"\F11D4"}.mdi-sack::before{content:"\F0D2E"}.mdi-sack-percent::before{content:"\F0D2F"}.mdi-safe::before{content:"\F0A6A"}.mdi-safe-square::before{content:"\F127C"}.mdi-safe-square-outline::before{content:"\F127D"}.mdi-safety-goggles::before{content:"\F0D30"}.mdi-sail-boat::before{content:"\F0EC8"}.mdi-sale::before{content:"\F046F"}.mdi-salesforce::before{content:"\F088E"}.mdi-sass::before{content:"\F07EC"}.mdi-satellite::before{content:"\F0470"}.mdi-satellite-uplink::before{content:"\F0909"}.mdi-satellite-variant::before{content:"\F0471"}.mdi-sausage::before{content:"\F08BA"}.mdi-saw-blade::before{content:"\F0E61"}.mdi-sawtooth-wave::before{content:"\F147A"}.mdi-saxophone::before{content:"\F0609"}.mdi-scale::before{content:"\F0472"}.mdi-scale-balance::before{content:"\F05D1"}.mdi-scale-bathroom::before{content:"\F0473"}.mdi-scale-off::before{content:"\F105A"}.mdi-scan-helper::before{content:"\F13D8"}.mdi-scanner::before{content:"\F06AB"}.mdi-scanner-off::before{content:"\F090A"}.mdi-scatter-plot::before{content:"\F0EC9"}.mdi-scatter-plot-outline::before{content:"\F0ECA"}.mdi-school::before{content:"\F0474"}.mdi-school-outline::before{content:"\F1180"}.mdi-scissors-cutting::before{content:"\F0A6B"}.mdi-scooter::before{content:"\F15BD"}.mdi-scooter-electric::before{content:"\F15BE"}.mdi-scoreboard::before{content:"\F127E"}.mdi-scoreboard-outline::before{content:"\F127F"}.mdi-screen-rotation::before{content:"\F0475"}.mdi-screen-rotation-lock::before{content:"\F0478"}.mdi-screw-flat-top::before{content:"\F0DF3"}.mdi-screw-lag::before{content:"\F0DF4"}.mdi-screw-machine-flat-top::before{content:"\F0DF5"}.mdi-screw-machine-round-top::before{content:"\F0DF6"}.mdi-screw-round-top::before{content:"\F0DF7"}.mdi-screwdriver::before{content:"\F0476"}.mdi-script::before{content:"\F0BC1"}.mdi-script-outline::before{content:"\F0477"}.mdi-script-text::before{content:"\F0BC2"}.mdi-script-text-outline::before{content:"\F0BC3"}.mdi-sd::before{content:"\F0479"}.mdi-seal::before{content:"\F047A"}.mdi-seal-variant::before{content:"\F0FD9"}.mdi-search-web::before{content:"\F070F"}.mdi-seat::before{content:"\F0CC3"}.mdi-seat-flat::before{content:"\F047B"}.mdi-seat-flat-angled::before{content:"\F047C"}.mdi-seat-individual-suite::before{content:"\F047D"}.mdi-seat-legroom-extra::before{content:"\F047E"}.mdi-seat-legroom-normal::before{content:"\F047F"}.mdi-seat-legroom-reduced::before{content:"\F0480"}.mdi-seat-outline::before{content:"\F0CC4"}.mdi-seat-passenger::before{content:"\F1249"}.mdi-seat-recline-extra::before{content:"\F0481"}.mdi-seat-recline-normal::before{content:"\F0482"}.mdi-seatbelt::before{content:"\F0CC5"}.mdi-security::before{content:"\F0483"}.mdi-security-network::before{content:"\F0484"}.mdi-seed::before{content:"\F0E62"}.mdi-seed-off::before{content:"\F13FD"}.mdi-seed-off-outline::before{content:"\F13FE"}.mdi-seed-outline::before{content:"\F0E63"}.mdi-seesaw::before{content:"\F15A4"}.mdi-segment::before{content:"\F0ECB"}.mdi-select::before{content:"\F0485"}.mdi-select-all::before{content:"\F0486"}.mdi-select-color::before{content:"\F0D31"}.mdi-select-compare::before{content:"\F0AD9"}.mdi-select-drag::before{content:"\F0A6C"}.mdi-select-group::before{content:"\F0F82"}.mdi-select-inverse::before{content:"\F0487"}.mdi-select-marker::before{content:"\F1280"}.mdi-select-multiple::before{content:"\F1281"}.mdi-select-multiple-marker::before{content:"\F1282"}.mdi-select-off::before{content:"\F0488"}.mdi-select-place::before{content:"\F0FDA"}.mdi-select-search::before{content:"\F1204"}.mdi-selection::before{content:"\F0489"}.mdi-selection-drag::before{content:"\F0A6D"}.mdi-selection-ellipse::before{content:"\F0D32"}.mdi-selection-ellipse-arrow-inside::before{content:"\F0F22"}.mdi-selection-marker::before{content:"\F1283"}.mdi-selection-multiple::before{content:"\F1285"}.mdi-selection-multiple-marker::before{content:"\F1284"}.mdi-selection-off::before{content:"\F0777"}.mdi-selection-search::before{content:"\F1205"}.mdi-semantic-web::before{content:"\F1316"}.mdi-send::before{content:"\F048A"}.mdi-send-check::before{content:"\F1161"}.mdi-send-check-outline::before{content:"\F1162"}.mdi-send-circle::before{content:"\F0DF8"}.mdi-send-circle-outline::before{content:"\F0DF9"}.mdi-send-clock::before{content:"\F1163"}.mdi-send-clock-outline::before{content:"\F1164"}.mdi-send-lock::before{content:"\F07ED"}.mdi-send-lock-outline::before{content:"\F1166"}.mdi-send-outline::before{content:"\F1165"}.mdi-serial-port::before{content:"\F065C"}.mdi-server::before{content:"\F048B"}.mdi-server-minus::before{content:"\F048C"}.mdi-server-network::before{content:"\F048D"}.mdi-server-network-off::before{content:"\F048E"}.mdi-server-off::before{content:"\F048F"}.mdi-server-plus::before{content:"\F0490"}.mdi-server-remove::before{content:"\F0491"}.mdi-server-security::before{content:"\F0492"}.mdi-set-all::before{content:"\F0778"}.mdi-set-center::before{content:"\F0779"}.mdi-set-center-right::before{content:"\F077A"}.mdi-set-left::before{content:"\F077B"}.mdi-set-left-center::before{content:"\F077C"}.mdi-set-left-right::before{content:"\F077D"}.mdi-set-merge::before{content:"\F14E0"}.mdi-set-none::before{content:"\F077E"}.mdi-set-right::before{content:"\F077F"}.mdi-set-split::before{content:"\F14E1"}.mdi-set-square::before{content:"\F145D"}.mdi-set-top-box::before{content:"\F099F"}.mdi-settings-helper::before{content:"\F0A6E"}.mdi-shaker::before{content:"\F110E"}.mdi-shaker-outline::before{content:"\F110F"}.mdi-shape::before{content:"\F0831"}.mdi-shape-circle-plus::before{content:"\F065D"}.mdi-shape-outline::before{content:"\F0832"}.mdi-shape-oval-plus::before{content:"\F11FA"}.mdi-shape-plus::before{content:"\F0495"}.mdi-shape-polygon-plus::before{content:"\F065E"}.mdi-shape-rectangle-plus::before{content:"\F065F"}.mdi-shape-square-plus::before{content:"\F0660"}.mdi-shape-square-rounded-plus::before{content:"\F14FA"}.mdi-share::before{content:"\F0496"}.mdi-share-all::before{content:"\F11F4"}.mdi-share-all-outline::before{content:"\F11F5"}.mdi-share-circle::before{content:"\F11AD"}.mdi-share-off::before{content:"\F0F23"}.mdi-share-off-outline::before{content:"\F0F24"}.mdi-share-outline::before{content:"\F0932"}.mdi-share-variant::before{content:"\F0497"}.mdi-share-variant-outline::before{content:"\F1514"}.mdi-shark-fin::before{content:"\F1673"}.mdi-shark-fin-outline::before{content:"\F1674"}.mdi-sheep::before{content:"\F0CC6"}.mdi-shield::before{content:"\F0498"}.mdi-shield-account::before{content:"\F088F"}.mdi-shield-account-outline::before{content:"\F0A12"}.mdi-shield-account-variant::before{content:"\F15A7"}.mdi-shield-account-variant-outline::before{content:"\F15A8"}.mdi-shield-airplane::before{content:"\F06BB"}.mdi-shield-airplane-outline::before{content:"\F0CC7"}.mdi-shield-alert::before{content:"\F0ECC"}.mdi-shield-alert-outline::before{content:"\F0ECD"}.mdi-shield-bug::before{content:"\F13DA"}.mdi-shield-bug-outline::before{content:"\F13DB"}.mdi-shield-car::before{content:"\F0F83"}.mdi-shield-check::before{content:"\F0565"}.mdi-shield-check-outline::before{content:"\F0CC8"}.mdi-shield-cross::before{content:"\F0CC9"}.mdi-shield-cross-outline::before{content:"\F0CCA"}.mdi-shield-edit::before{content:"\F11A0"}.mdi-shield-edit-outline::before{content:"\F11A1"}.mdi-shield-half::before{content:"\F1360"}.mdi-shield-half-full::before{content:"\F0780"}.mdi-shield-home::before{content:"\F068A"}.mdi-shield-home-outline::before{content:"\F0CCB"}.mdi-shield-key::before{content:"\F0BC4"}.mdi-shield-key-outline::before{content:"\F0BC5"}.mdi-shield-link-variant::before{content:"\F0D33"}.mdi-shield-link-variant-outline::before{content:"\F0D34"}.mdi-shield-lock::before{content:"\F099D"}.mdi-shield-lock-outline::before{content:"\F0CCC"}.mdi-shield-off::before{content:"\F099E"}.mdi-shield-off-outline::before{content:"\F099C"}.mdi-shield-outline::before{content:"\F0499"}.mdi-shield-plus::before{content:"\F0ADA"}.mdi-shield-plus-outline::before{content:"\F0ADB"}.mdi-shield-refresh::before{content:"\F00AA"}.mdi-shield-refresh-outline::before{content:"\F01E0"}.mdi-shield-remove::before{content:"\F0ADC"}.mdi-shield-remove-outline::before{content:"\F0ADD"}.mdi-shield-search::before{content:"\F0D9A"}.mdi-shield-star::before{content:"\F113B"}.mdi-shield-star-outline::before{content:"\F113C"}.mdi-shield-sun::before{content:"\F105D"}.mdi-shield-sun-outline::before{content:"\F105E"}.mdi-shield-sync::before{content:"\F11A2"}.mdi-shield-sync-outline::before{content:"\F11A3"}.mdi-ship-wheel::before{content:"\F0833"}.mdi-shoe-ballet::before{content:"\F15CA"}.mdi-shoe-cleat::before{content:"\F15C7"}.mdi-shoe-formal::before{content:"\F0B47"}.mdi-shoe-heel::before{content:"\F0B48"}.mdi-shoe-print::before{content:"\F0DFA"}.mdi-shoe-sneaker::before{content:"\F15C8"}.mdi-shopping::before{content:"\F049A"}.mdi-shopping-music::before{content:"\F049B"}.mdi-shopping-outline::before{content:"\F11D5"}.mdi-shopping-search::before{content:"\F0F84"}.mdi-shore::before{content:"\F14F9"}.mdi-shovel::before{content:"\F0710"}.mdi-shovel-off::before{content:"\F0711"}.mdi-shower::before{content:"\F09A0"}.mdi-shower-head::before{content:"\F09A1"}.mdi-shredder::before{content:"\F049C"}.mdi-shuffle::before{content:"\F049D"}.mdi-shuffle-disabled::before{content:"\F049E"}.mdi-shuffle-variant::before{content:"\F049F"}.mdi-shuriken::before{content:"\F137F"}.mdi-sigma::before{content:"\F04A0"}.mdi-sigma-lower::before{content:"\F062B"}.mdi-sign-caution::before{content:"\F04A1"}.mdi-sign-direction::before{content:"\F0781"}.mdi-sign-direction-minus::before{content:"\F1000"}.mdi-sign-direction-plus::before{content:"\F0FDC"}.mdi-sign-direction-remove::before{content:"\F0FDD"}.mdi-sign-pole::before{content:"\F14F8"}.mdi-sign-real-estate::before{content:"\F1118"}.mdi-sign-text::before{content:"\F0782"}.mdi-signal::before{content:"\F04A2"}.mdi-signal-2g::before{content:"\F0712"}.mdi-signal-3g::before{content:"\F0713"}.mdi-signal-4g::before{content:"\F0714"}.mdi-signal-5g::before{content:"\F0A6F"}.mdi-signal-cellular-1::before{content:"\F08BC"}.mdi-signal-cellular-2::before{content:"\F08BD"}.mdi-signal-cellular-3::before{content:"\F08BE"}.mdi-signal-cellular-outline::before{content:"\F08BF"}.mdi-signal-distance-variant::before{content:"\F0E64"}.mdi-signal-hspa::before{content:"\F0715"}.mdi-signal-hspa-plus::before{content:"\F0716"}.mdi-signal-off::before{content:"\F0783"}.mdi-signal-variant::before{content:"\F060A"}.mdi-signature::before{content:"\F0DFB"}.mdi-signature-freehand::before{content:"\F0DFC"}.mdi-signature-image::before{content:"\F0DFD"}.mdi-signature-text::before{content:"\F0DFE"}.mdi-silo::before{content:"\F0B49"}.mdi-silverware::before{content:"\F04A3"}.mdi-silverware-clean::before{content:"\F0FDE"}.mdi-silverware-fork::before{content:"\F04A4"}.mdi-silverware-fork-knife::before{content:"\F0A70"}.mdi-silverware-spoon::before{content:"\F04A5"}.mdi-silverware-variant::before{content:"\F04A6"}.mdi-sim::before{content:"\F04A7"}.mdi-sim-alert::before{content:"\F04A8"}.mdi-sim-alert-outline::before{content:"\F15D3"}.mdi-sim-off::before{content:"\F04A9"}.mdi-sim-off-outline::before{content:"\F15D4"}.mdi-sim-outline::before{content:"\F15D5"}.mdi-simple-icons::before{content:"\F131D"}.mdi-sina-weibo::before{content:"\F0ADF"}.mdi-sine-wave::before{content:"\F095B"}.mdi-sitemap::before{content:"\F04AA"}.mdi-size-l::before{content:"\F13A6"}.mdi-size-m::before{content:"\F13A5"}.mdi-size-s::before{content:"\F13A4"}.mdi-size-xl::before{content:"\F13A7"}.mdi-size-xs::before{content:"\F13A3"}.mdi-size-xxl::before{content:"\F13A8"}.mdi-size-xxs::before{content:"\F13A2"}.mdi-size-xxxl::before{content:"\F13A9"}.mdi-skate::before{content:"\F0D35"}.mdi-skateboard::before{content:"\F14C2"}.mdi-skew-less::before{content:"\F0D36"}.mdi-skew-more::before{content:"\F0D37"}.mdi-ski::before{content:"\F1304"}.mdi-ski-cross-country::before{content:"\F1305"}.mdi-ski-water::before{content:"\F1306"}.mdi-skip-backward::before{content:"\F04AB"}.mdi-skip-backward-outline::before{content:"\F0F25"}.mdi-skip-forward::before{content:"\F04AC"}.mdi-skip-forward-outline::before{content:"\F0F26"}.mdi-skip-next::before{content:"\F04AD"}.mdi-skip-next-circle::before{content:"\F0661"}.mdi-skip-next-circle-outline::before{content:"\F0662"}.mdi-skip-next-outline::before{content:"\F0F27"}.mdi-skip-previous::before{content:"\F04AE"}.mdi-skip-previous-circle::before{content:"\F0663"}.mdi-skip-previous-circle-outline::before{content:"\F0664"}.mdi-skip-previous-outline::before{content:"\F0F28"}.mdi-skull::before{content:"\F068C"}.mdi-skull-crossbones::before{content:"\F0BC6"}.mdi-skull-crossbones-outline::before{content:"\F0BC7"}.mdi-skull-outline::before{content:"\F0BC8"}.mdi-skull-scan::before{content:"\F14C7"}.mdi-skull-scan-outline::before{content:"\F14C8"}.mdi-skype::before{content:"\F04AF"}.mdi-skype-business::before{content:"\F04B0"}.mdi-slack::before{content:"\F04B1"}.mdi-slash-forward::before{content:"\F0FDF"}.mdi-slash-forward-box::before{content:"\F0FE0"}.mdi-sleep::before{content:"\F04B2"}.mdi-sleep-off::before{content:"\F04B3"}.mdi-slide::before{content:"\F15A5"}.mdi-slope-downhill::before{content:"\F0DFF"}.mdi-slope-uphill::before{content:"\F0E00"}.mdi-slot-machine::before{content:"\F1114"}.mdi-slot-machine-outline::before{content:"\F1115"}.mdi-smart-card::before{content:"\F10BD"}.mdi-smart-card-outline::before{content:"\F10BE"}.mdi-smart-card-reader::before{content:"\F10BF"}.mdi-smart-card-reader-outline::before{content:"\F10C0"}.mdi-smog::before{content:"\F0A71"}.mdi-smoke-detector::before{content:"\F0392"}.mdi-smoking::before{content:"\F04B4"}.mdi-smoking-off::before{content:"\F04B5"}.mdi-smoking-pipe::before{content:"\F140D"}.mdi-smoking-pipe-off::before{content:"\F1428"}.mdi-snail::before{content:"\F1677"}.mdi-snake::before{content:"\F150E"}.mdi-snapchat::before{content:"\F04B6"}.mdi-snowboard::before{content:"\F1307"}.mdi-snowflake::before{content:"\F0717"}.mdi-snowflake-alert::before{content:"\F0F29"}.mdi-snowflake-melt::before{content:"\F12CB"}.mdi-snowflake-off::before{content:"\F14E3"}.mdi-snowflake-variant::before{content:"\F0F2A"}.mdi-snowman::before{content:"\F04B7"}.mdi-soccer::before{content:"\F04B8"}.mdi-soccer-field::before{content:"\F0834"}.mdi-social-distance-2-meters::before{content:"\F1579"}.mdi-social-distance-6-feet::before{content:"\F157A"}.mdi-sofa::before{content:"\F04B9"}.mdi-sofa-outline::before{content:"\F156D"}.mdi-sofa-single::before{content:"\F156E"}.mdi-sofa-single-outline::before{content:"\F156F"}.mdi-solar-panel::before{content:"\F0D9B"}.mdi-solar-panel-large::before{content:"\F0D9C"}.mdi-solar-power::before{content:"\F0A72"}.mdi-soldering-iron::before{content:"\F1092"}.mdi-solid::before{content:"\F068D"}.mdi-sony-playstation::before{content:"\F0414"}.mdi-sort::before{content:"\F04BA"}.mdi-sort-alphabetical-ascending::before{content:"\F05BD"}.mdi-sort-alphabetical-ascending-variant::before{content:"\F1148"}.mdi-sort-alphabetical-descending::before{content:"\F05BF"}.mdi-sort-alphabetical-descending-variant::before{content:"\F1149"}.mdi-sort-alphabetical-variant::before{content:"\F04BB"}.mdi-sort-ascending::before{content:"\F04BC"}.mdi-sort-bool-ascending::before{content:"\F1385"}.mdi-sort-bool-ascending-variant::before{content:"\F1386"}.mdi-sort-bool-descending::before{content:"\F1387"}.mdi-sort-bool-descending-variant::before{content:"\F1388"}.mdi-sort-calendar-ascending::before{content:"\F1547"}.mdi-sort-calendar-descending::before{content:"\F1548"}.mdi-sort-clock-ascending::before{content:"\F1549"}.mdi-sort-clock-ascending-outline::before{content:"\F154A"}.mdi-sort-clock-descending::before{content:"\F154B"}.mdi-sort-clock-descending-outline::before{content:"\F154C"}.mdi-sort-descending::before{content:"\F04BD"}.mdi-sort-numeric-ascending::before{content:"\F1389"}.mdi-sort-numeric-ascending-variant::before{content:"\F090D"}.mdi-sort-numeric-descending::before{content:"\F138A"}.mdi-sort-numeric-descending-variant::before{content:"\F0AD2"}.mdi-sort-numeric-variant::before{content:"\F04BE"}.mdi-sort-reverse-variant::before{content:"\F033C"}.mdi-sort-variant::before{content:"\F04BF"}.mdi-sort-variant-lock::before{content:"\F0CCD"}.mdi-sort-variant-lock-open::before{content:"\F0CCE"}.mdi-sort-variant-remove::before{content:"\F1147"}.mdi-soundcloud::before{content:"\F04C0"}.mdi-source-branch::before{content:"\F062C"}.mdi-source-branch-check::before{content:"\F14CF"}.mdi-source-branch-minus::before{content:"\F14CB"}.mdi-source-branch-plus::before{content:"\F14CA"}.mdi-source-branch-refresh::before{content:"\F14CD"}.mdi-source-branch-remove::before{content:"\F14CC"}.mdi-source-branch-sync::before{content:"\F14CE"}.mdi-source-commit::before{content:"\F0718"}.mdi-source-commit-end::before{content:"\F0719"}.mdi-source-commit-end-local::before{content:"\F071A"}.mdi-source-commit-local::before{content:"\F071B"}.mdi-source-commit-next-local::before{content:"\F071C"}.mdi-source-commit-start::before{content:"\F071D"}.mdi-source-commit-start-next-local::before{content:"\F071E"}.mdi-source-fork::before{content:"\F04C1"}.mdi-source-merge::before{content:"\F062D"}.mdi-source-pull::before{content:"\F04C2"}.mdi-source-repository::before{content:"\F0CCF"}.mdi-source-repository-multiple::before{content:"\F0CD0"}.mdi-soy-sauce::before{content:"\F07EE"}.mdi-soy-sauce-off::before{content:"\F13FC"}.mdi-spa::before{content:"\F0CD1"}.mdi-spa-outline::before{content:"\F0CD2"}.mdi-space-invaders::before{content:"\F0BC9"}.mdi-space-station::before{content:"\F1383"}.mdi-spade::before{content:"\F0E65"}.mdi-sparkles::before{content:"\F1545"}.mdi-speaker::before{content:"\F04C3"}.mdi-speaker-bluetooth::before{content:"\F09A2"}.mdi-speaker-multiple::before{content:"\F0D38"}.mdi-speaker-off::before{content:"\F04C4"}.mdi-speaker-wireless::before{content:"\F071F"}.mdi-speedometer::before{content:"\F04C5"}.mdi-speedometer-medium::before{content:"\F0F85"}.mdi-speedometer-slow::before{content:"\F0F86"}.mdi-spellcheck::before{content:"\F04C6"}.mdi-spider::before{content:"\F11EA"}.mdi-spider-thread::before{content:"\F11EB"}.mdi-spider-web::before{content:"\F0BCA"}.mdi-spirit-level::before{content:"\F14F1"}.mdi-spoon-sugar::before{content:"\F1429"}.mdi-spotify::before{content:"\F04C7"}.mdi-spotlight::before{content:"\F04C8"}.mdi-spotlight-beam::before{content:"\F04C9"}.mdi-spray::before{content:"\F0665"}.mdi-spray-bottle::before{content:"\F0AE0"}.mdi-sprinkler::before{content:"\F105F"}.mdi-sprinkler-variant::before{content:"\F1060"}.mdi-sprout::before{content:"\F0E66"}.mdi-sprout-outline::before{content:"\F0E67"}.mdi-square::before{content:"\F0764"}.mdi-square-circle::before{content:"\F1500"}.mdi-square-edit-outline::before{content:"\F090C"}.mdi-square-medium::before{content:"\F0A13"}.mdi-square-medium-outline::before{content:"\F0A14"}.mdi-square-off::before{content:"\F12EE"}.mdi-square-off-outline::before{content:"\F12EF"}.mdi-square-outline::before{content:"\F0763"}.mdi-square-root::before{content:"\F0784"}.mdi-square-root-box::before{content:"\F09A3"}.mdi-square-rounded::before{content:"\F14FB"}.mdi-square-rounded-outline::before{content:"\F14FC"}.mdi-square-small::before{content:"\F0A15"}.mdi-square-wave::before{content:"\F147B"}.mdi-squeegee::before{content:"\F0AE1"}.mdi-ssh::before{content:"\F08C0"}.mdi-stack-exchange::before{content:"\F060B"}.mdi-stack-overflow::before{content:"\F04CC"}.mdi-stackpath::before{content:"\F0359"}.mdi-stadium::before{content:"\F0FF9"}.mdi-stadium-variant::before{content:"\F0720"}.mdi-stairs::before{content:"\F04CD"}.mdi-stairs-box::before{content:"\F139E"}.mdi-stairs-down::before{content:"\F12BE"}.mdi-stairs-up::before{content:"\F12BD"}.mdi-stamper::before{content:"\F0D39"}.mdi-standard-definition::before{content:"\F07EF"}.mdi-star::before{content:"\F04CE"}.mdi-star-box::before{content:"\F0A73"}.mdi-star-box-multiple::before{content:"\F1286"}.mdi-star-box-multiple-outline::before{content:"\F1287"}.mdi-star-box-outline::before{content:"\F0A74"}.mdi-star-check::before{content:"\F1566"}.mdi-star-check-outline::before{content:"\F156A"}.mdi-star-circle::before{content:"\F04CF"}.mdi-star-circle-outline::before{content:"\F09A4"}.mdi-star-cog::before{content:"\F1668"}.mdi-star-cog-outline::before{content:"\F1669"}.mdi-star-face::before{content:"\F09A5"}.mdi-star-four-points::before{content:"\F0AE2"}.mdi-star-four-points-outline::before{content:"\F0AE3"}.mdi-star-half::before{content:"\F0246"}.mdi-star-half-full::before{content:"\F04D0"}.mdi-star-minus::before{content:"\F1564"}.mdi-star-minus-outline::before{content:"\F1568"}.mdi-star-off::before{content:"\F04D1"}.mdi-star-off-outline::before{content:"\F155B"}.mdi-star-outline::before{content:"\F04D2"}.mdi-star-plus::before{content:"\F1563"}.mdi-star-plus-outline::before{content:"\F1567"}.mdi-star-remove::before{content:"\F1565"}.mdi-star-remove-outline::before{content:"\F1569"}.mdi-star-settings::before{content:"\F166A"}.mdi-star-settings-outline::before{content:"\F166B"}.mdi-star-three-points::before{content:"\F0AE4"}.mdi-star-three-points-outline::before{content:"\F0AE5"}.mdi-state-machine::before{content:"\F11EF"}.mdi-steam::before{content:"\F04D3"}.mdi-steering::before{content:"\F04D4"}.mdi-steering-off::before{content:"\F090E"}.mdi-step-backward::before{content:"\F04D5"}.mdi-step-backward-2::before{content:"\F04D6"}.mdi-step-forward::before{content:"\F04D7"}.mdi-step-forward-2::before{content:"\F04D8"}.mdi-stethoscope::before{content:"\F04D9"}.mdi-sticker::before{content:"\F1364"}.mdi-sticker-alert::before{content:"\F1365"}.mdi-sticker-alert-outline::before{content:"\F1366"}.mdi-sticker-check::before{content:"\F1367"}.mdi-sticker-check-outline::before{content:"\F1368"}.mdi-sticker-circle-outline::before{content:"\F05D0"}.mdi-sticker-emoji::before{content:"\F0785"}.mdi-sticker-minus::before{content:"\F1369"}.mdi-sticker-minus-outline::before{content:"\F136A"}.mdi-sticker-outline::before{content:"\F136B"}.mdi-sticker-plus::before{content:"\F136C"}.mdi-sticker-plus-outline::before{content:"\F136D"}.mdi-sticker-remove::before{content:"\F136E"}.mdi-sticker-remove-outline::before{content:"\F136F"}.mdi-stocking::before{content:"\F04DA"}.mdi-stomach::before{content:"\F1093"}.mdi-stop::before{content:"\F04DB"}.mdi-stop-circle::before{content:"\F0666"}.mdi-stop-circle-outline::before{content:"\F0667"}.mdi-store::before{content:"\F04DC"}.mdi-store-24-hour::before{content:"\F04DD"}.mdi-store-minus::before{content:"\F165E"}.mdi-store-outline::before{content:"\F1361"}.mdi-store-plus::before{content:"\F165F"}.mdi-store-remove::before{content:"\F1660"}.mdi-storefront::before{content:"\F07C7"}.mdi-storefront-outline::before{content:"\F10C1"}.mdi-stove::before{content:"\F04DE"}.mdi-strategy::before{content:"\F11D6"}.mdi-stretch-to-page::before{content:"\F0F2B"}.mdi-stretch-to-page-outline::before{content:"\F0F2C"}.mdi-string-lights::before{content:"\F12BA"}.mdi-string-lights-off::before{content:"\F12BB"}.mdi-subdirectory-arrow-left::before{content:"\F060C"}.mdi-subdirectory-arrow-right::before{content:"\F060D"}.mdi-submarine::before{content:"\F156C"}.mdi-subtitles::before{content:"\F0A16"}.mdi-subtitles-outline::before{content:"\F0A17"}.mdi-subway::before{content:"\F06AC"}.mdi-subway-alert-variant::before{content:"\F0D9D"}.mdi-subway-variant::before{content:"\F04DF"}.mdi-summit::before{content:"\F0786"}.mdi-sunglasses::before{content:"\F04E0"}.mdi-surround-sound::before{content:"\F05C5"}.mdi-surround-sound-2-0::before{content:"\F07F0"}.mdi-surround-sound-3-1::before{content:"\F07F1"}.mdi-surround-sound-5-1::before{content:"\F07F2"}.mdi-surround-sound-7-1::before{content:"\F07F3"}.mdi-svg::before{content:"\F0721"}.mdi-swap-horizontal::before{content:"\F04E1"}.mdi-swap-horizontal-bold::before{content:"\F0BCD"}.mdi-swap-horizontal-circle::before{content:"\F0FE1"}.mdi-swap-horizontal-circle-outline::before{content:"\F0FE2"}.mdi-swap-horizontal-variant::before{content:"\F08C1"}.mdi-swap-vertical::before{content:"\F04E2"}.mdi-swap-vertical-bold::before{content:"\F0BCE"}.mdi-swap-vertical-circle::before{content:"\F0FE3"}.mdi-swap-vertical-circle-outline::before{content:"\F0FE4"}.mdi-swap-vertical-variant::before{content:"\F08C2"}.mdi-swim::before{content:"\F04E3"}.mdi-switch::before{content:"\F04E4"}.mdi-sword::before{content:"\F04E5"}.mdi-sword-cross::before{content:"\F0787"}.mdi-syllabary-hangul::before{content:"\F1333"}.mdi-syllabary-hiragana::before{content:"\F1334"}.mdi-syllabary-katakana::before{content:"\F1335"}.mdi-syllabary-katakana-halfwidth::before{content:"\F1336"}.mdi-symbol::before{content:"\F1501"}.mdi-symfony::before{content:"\F0AE6"}.mdi-sync::before{content:"\F04E6"}.mdi-sync-alert::before{content:"\F04E7"}.mdi-sync-circle::before{content:"\F1378"}.mdi-sync-off::before{content:"\F04E8"}.mdi-tab::before{content:"\F04E9"}.mdi-tab-minus::before{content:"\F0B4B"}.mdi-tab-plus::before{content:"\F075C"}.mdi-tab-remove::before{content:"\F0B4C"}.mdi-tab-unselected::before{content:"\F04EA"}.mdi-table::before{content:"\F04EB"}.mdi-table-account::before{content:"\F13B9"}.mdi-table-alert::before{content:"\F13BA"}.mdi-table-arrow-down::before{content:"\F13BB"}.mdi-table-arrow-left::before{content:"\F13BC"}.mdi-table-arrow-right::before{content:"\F13BD"}.mdi-table-arrow-up::before{content:"\F13BE"}.mdi-table-border::before{content:"\F0A18"}.mdi-table-cancel::before{content:"\F13BF"}.mdi-table-chair::before{content:"\F1061"}.mdi-table-check::before{content:"\F13C0"}.mdi-table-clock::before{content:"\F13C1"}.mdi-table-cog::before{content:"\F13C2"}.mdi-table-column::before{content:"\F0835"}.mdi-table-column-plus-after::before{content:"\F04EC"}.mdi-table-column-plus-before::before{content:"\F04ED"}.mdi-table-column-remove::before{content:"\F04EE"}.mdi-table-column-width::before{content:"\F04EF"}.mdi-table-edit::before{content:"\F04F0"}.mdi-table-eye::before{content:"\F1094"}.mdi-table-eye-off::before{content:"\F13C3"}.mdi-table-furniture::before{content:"\F05BC"}.mdi-table-headers-eye::before{content:"\F121D"}.mdi-table-headers-eye-off::before{content:"\F121E"}.mdi-table-heart::before{content:"\F13C4"}.mdi-table-key::before{content:"\F13C5"}.mdi-table-large::before{content:"\F04F1"}.mdi-table-large-plus::before{content:"\F0F87"}.mdi-table-large-remove::before{content:"\F0F88"}.mdi-table-lock::before{content:"\F13C6"}.mdi-table-merge-cells::before{content:"\F09A6"}.mdi-table-minus::before{content:"\F13C7"}.mdi-table-multiple::before{content:"\F13C8"}.mdi-table-network::before{content:"\F13C9"}.mdi-table-of-contents::before{content:"\F0836"}.mdi-table-off::before{content:"\F13CA"}.mdi-table-plus::before{content:"\F0A75"}.mdi-table-refresh::before{content:"\F13A0"}.mdi-table-remove::before{content:"\F0A76"}.mdi-table-row::before{content:"\F0837"}.mdi-table-row-height::before{content:"\F04F2"}.mdi-table-row-plus-after::before{content:"\F04F3"}.mdi-table-row-plus-before::before{content:"\F04F4"}.mdi-table-row-remove::before{content:"\F04F5"}.mdi-table-search::before{content:"\F090F"}.mdi-table-settings::before{content:"\F0838"}.mdi-table-split-cell::before{content:"\F142A"}.mdi-table-star::before{content:"\F13CB"}.mdi-table-sync::before{content:"\F13A1"}.mdi-table-tennis::before{content:"\F0E68"}.mdi-tablet::before{content:"\F04F6"}.mdi-tablet-android::before{content:"\F04F7"}.mdi-tablet-cellphone::before{content:"\F09A7"}.mdi-tablet-dashboard::before{content:"\F0ECE"}.mdi-tablet-ipad::before{content:"\F04F8"}.mdi-taco::before{content:"\F0762"}.mdi-tag::before{content:"\F04F9"}.mdi-tag-faces::before{content:"\F04FA"}.mdi-tag-heart::before{content:"\F068B"}.mdi-tag-heart-outline::before{content:"\F0BCF"}.mdi-tag-minus::before{content:"\F0910"}.mdi-tag-minus-outline::before{content:"\F121F"}.mdi-tag-multiple::before{content:"\F04FB"}.mdi-tag-multiple-outline::before{content:"\F12F7"}.mdi-tag-off::before{content:"\F1220"}.mdi-tag-off-outline::before{content:"\F1221"}.mdi-tag-outline::before{content:"\F04FC"}.mdi-tag-plus::before{content:"\F0722"}.mdi-tag-plus-outline::before{content:"\F1222"}.mdi-tag-remove::before{content:"\F0723"}.mdi-tag-remove-outline::before{content:"\F1223"}.mdi-tag-text::before{content:"\F1224"}.mdi-tag-text-outline::before{content:"\F04FD"}.mdi-tailwind::before{content:"\F13FF"}.mdi-tank::before{content:"\F0D3A"}.mdi-tanker-truck::before{content:"\F0FE5"}.mdi-tape-drive::before{content:"\F16DF"}.mdi-tape-measure::before{content:"\F0B4D"}.mdi-target::before{content:"\F04FE"}.mdi-target-account::before{content:"\F0BD0"}.mdi-target-variant::before{content:"\F0A77"}.mdi-taxi::before{content:"\F04FF"}.mdi-tea::before{content:"\F0D9E"}.mdi-tea-outline::before{content:"\F0D9F"}.mdi-teach::before{content:"\F0890"}.mdi-teamviewer::before{content:"\F0500"}.mdi-telegram::before{content:"\F0501"}.mdi-telescope::before{content:"\F0B4E"}.mdi-television::before{content:"\F0502"}.mdi-television-ambient-light::before{content:"\F1356"}.mdi-television-box::before{content:"\F0839"}.mdi-television-classic::before{content:"\F07F4"}.mdi-television-classic-off::before{content:"\F083A"}.mdi-television-clean::before{content:"\F1110"}.mdi-television-guide::before{content:"\F0503"}.mdi-television-off::before{content:"\F083B"}.mdi-television-pause::before{content:"\F0F89"}.mdi-television-play::before{content:"\F0ECF"}.mdi-television-stop::before{content:"\F0F8A"}.mdi-temperature-celsius::before{content:"\F0504"}.mdi-temperature-fahrenheit::before{content:"\F0505"}.mdi-temperature-kelvin::before{content:"\F0506"}.mdi-tennis::before{content:"\F0DA0"}.mdi-tennis-ball::before{content:"\F0507"}.mdi-tent::before{content:"\F0508"}.mdi-terraform::before{content:"\F1062"}.mdi-terrain::before{content:"\F0509"}.mdi-test-tube::before{content:"\F0668"}.mdi-test-tube-empty::before{content:"\F0911"}.mdi-test-tube-off::before{content:"\F0912"}.mdi-text::before{content:"\F09A8"}.mdi-text-account::before{content:"\F1570"}.mdi-text-box::before{content:"\F021A"}.mdi-text-box-check::before{content:"\F0EA6"}.mdi-text-box-check-outline::before{content:"\F0EA7"}.mdi-text-box-minus::before{content:"\F0EA8"}.mdi-text-box-minus-outline::before{content:"\F0EA9"}.mdi-text-box-multiple::before{content:"\F0AB7"}.mdi-text-box-multiple-outline::before{content:"\F0AB8"}.mdi-text-box-outline::before{content:"\F09ED"}.mdi-text-box-plus::before{content:"\F0EAA"}.mdi-text-box-plus-outline::before{content:"\F0EAB"}.mdi-text-box-remove::before{content:"\F0EAC"}.mdi-text-box-remove-outline::before{content:"\F0EAD"}.mdi-text-box-search::before{content:"\F0EAE"}.mdi-text-box-search-outline::before{content:"\F0EAF"}.mdi-text-recognition::before{content:"\F113D"}.mdi-text-search::before{content:"\F13B8"}.mdi-text-shadow::before{content:"\F0669"}.mdi-text-short::before{content:"\F09A9"}.mdi-text-subject::before{content:"\F09AA"}.mdi-text-to-speech::before{content:"\F050A"}.mdi-text-to-speech-off::before{content:"\F050B"}.mdi-texture::before{content:"\F050C"}.mdi-texture-box::before{content:"\F0FE6"}.mdi-theater::before{content:"\F050D"}.mdi-theme-light-dark::before{content:"\F050E"}.mdi-thermometer::before{content:"\F050F"}.mdi-thermometer-alert::before{content:"\F0E01"}.mdi-thermometer-chevron-down::before{content:"\F0E02"}.mdi-thermometer-chevron-up::before{content:"\F0E03"}.mdi-thermometer-high::before{content:"\F10C2"}.mdi-thermometer-lines::before{content:"\F0510"}.mdi-thermometer-low::before{content:"\F10C3"}.mdi-thermometer-minus::before{content:"\F0E04"}.mdi-thermometer-off::before{content:"\F1531"}.mdi-thermometer-plus::before{content:"\F0E05"}.mdi-thermostat::before{content:"\F0393"}.mdi-thermostat-box::before{content:"\F0891"}.mdi-thought-bubble::before{content:"\F07F6"}.mdi-thought-bubble-outline::before{content:"\F07F7"}.mdi-thumb-down::before{content:"\F0511"}.mdi-thumb-down-outline::before{content:"\F0512"}.mdi-thumb-up::before{content:"\F0513"}.mdi-thumb-up-outline::before{content:"\F0514"}.mdi-thumbs-up-down::before{content:"\F0515"}.mdi-ticket::before{content:"\F0516"}.mdi-ticket-account::before{content:"\F0517"}.mdi-ticket-confirmation::before{content:"\F0518"}.mdi-ticket-confirmation-outline::before{content:"\F13AA"}.mdi-ticket-outline::before{content:"\F0913"}.mdi-ticket-percent::before{content:"\F0724"}.mdi-ticket-percent-outline::before{content:"\F142B"}.mdi-tie::before{content:"\F0519"}.mdi-tilde::before{content:"\F0725"}.mdi-timelapse::before{content:"\F051A"}.mdi-timeline::before{content:"\F0BD1"}.mdi-timeline-alert::before{content:"\F0F95"}.mdi-timeline-alert-outline::before{content:"\F0F98"}.mdi-timeline-check::before{content:"\F1532"}.mdi-timeline-check-outline::before{content:"\F1533"}.mdi-timeline-clock::before{content:"\F11FB"}.mdi-timeline-clock-outline::before{content:"\F11FC"}.mdi-timeline-help::before{content:"\F0F99"}.mdi-timeline-help-outline::before{content:"\F0F9A"}.mdi-timeline-minus::before{content:"\F1534"}.mdi-timeline-minus-outline::before{content:"\F1535"}.mdi-timeline-outline::before{content:"\F0BD2"}.mdi-timeline-plus::before{content:"\F0F96"}.mdi-timeline-plus-outline::before{content:"\F0F97"}.mdi-timeline-remove::before{content:"\F1536"}.mdi-timeline-remove-outline::before{content:"\F1537"}.mdi-timeline-text::before{content:"\F0BD3"}.mdi-timeline-text-outline::before{content:"\F0BD4"}.mdi-timer::before{content:"\F13AB"}.mdi-timer-10::before{content:"\F051C"}.mdi-timer-3::before{content:"\F051D"}.mdi-timer-off::before{content:"\F13AC"}.mdi-timer-off-outline::before{content:"\F051E"}.mdi-timer-outline::before{content:"\F051B"}.mdi-timer-sand::before{content:"\F051F"}.mdi-timer-sand-empty::before{content:"\F06AD"}.mdi-timer-sand-full::before{content:"\F078C"}.mdi-timetable::before{content:"\F0520"}.mdi-toaster::before{content:"\F1063"}.mdi-toaster-off::before{content:"\F11B7"}.mdi-toaster-oven::before{content:"\F0CD3"}.mdi-toggle-switch::before{content:"\F0521"}.mdi-toggle-switch-off::before{content:"\F0522"}.mdi-toggle-switch-off-outline::before{content:"\F0A19"}.mdi-toggle-switch-outline::before{content:"\F0A1A"}.mdi-toilet::before{content:"\F09AB"}.mdi-toolbox::before{content:"\F09AC"}.mdi-toolbox-outline::before{content:"\F09AD"}.mdi-tools::before{content:"\F1064"}.mdi-tooltip::before{content:"\F0523"}.mdi-tooltip-account::before{content:"\F000C"}.mdi-tooltip-check::before{content:"\F155C"}.mdi-tooltip-check-outline::before{content:"\F155D"}.mdi-tooltip-edit::before{content:"\F0524"}.mdi-tooltip-edit-outline::before{content:"\F12C5"}.mdi-tooltip-image::before{content:"\F0525"}.mdi-tooltip-image-outline::before{content:"\F0BD5"}.mdi-tooltip-minus::before{content:"\F155E"}.mdi-tooltip-minus-outline::before{content:"\F155F"}.mdi-tooltip-outline::before{content:"\F0526"}.mdi-tooltip-plus::before{content:"\F0BD6"}.mdi-tooltip-plus-outline::before{content:"\F0527"}.mdi-tooltip-remove::before{content:"\F1560"}.mdi-tooltip-remove-outline::before{content:"\F1561"}.mdi-tooltip-text::before{content:"\F0528"}.mdi-tooltip-text-outline::before{content:"\F0BD7"}.mdi-tooth::before{content:"\F08C3"}.mdi-tooth-outline::before{content:"\F0529"}.mdi-toothbrush::before{content:"\F1129"}.mdi-toothbrush-electric::before{content:"\F112C"}.mdi-toothbrush-paste::before{content:"\F112A"}.mdi-torch::before{content:"\F1606"}.mdi-tortoise::before{content:"\F0D3B"}.mdi-toslink::before{content:"\F12B8"}.mdi-tournament::before{content:"\F09AE"}.mdi-tow-truck::before{content:"\F083C"}.mdi-tower-beach::before{content:"\F0681"}.mdi-tower-fire::before{content:"\F0682"}.mdi-toy-brick::before{content:"\F1288"}.mdi-toy-brick-marker::before{content:"\F1289"}.mdi-toy-brick-marker-outline::before{content:"\F128A"}.mdi-toy-brick-minus::before{content:"\F128B"}.mdi-toy-brick-minus-outline::before{content:"\F128C"}.mdi-toy-brick-outline::before{content:"\F128D"}.mdi-toy-brick-plus::before{content:"\F128E"}.mdi-toy-brick-plus-outline::before{content:"\F128F"}.mdi-toy-brick-remove::before{content:"\F1290"}.mdi-toy-brick-remove-outline::before{content:"\F1291"}.mdi-toy-brick-search::before{content:"\F1292"}.mdi-toy-brick-search-outline::before{content:"\F1293"}.mdi-track-light::before{content:"\F0914"}.mdi-trackpad::before{content:"\F07F8"}.mdi-trackpad-lock::before{content:"\F0933"}.mdi-tractor::before{content:"\F0892"}.mdi-tractor-variant::before{content:"\F14C4"}.mdi-trademark::before{content:"\F0A78"}.mdi-traffic-cone::before{content:"\F137C"}.mdi-traffic-light::before{content:"\F052B"}.mdi-train::before{content:"\F052C"}.mdi-train-car::before{content:"\F0BD8"}.mdi-train-variant::before{content:"\F08C4"}.mdi-tram::before{content:"\F052D"}.mdi-tram-side::before{content:"\F0FE7"}.mdi-transcribe::before{content:"\F052E"}.mdi-transcribe-close::before{content:"\F052F"}.mdi-transfer::before{content:"\F1065"}.mdi-transfer-down::before{content:"\F0DA1"}.mdi-transfer-left::before{content:"\F0DA2"}.mdi-transfer-right::before{content:"\F0530"}.mdi-transfer-up::before{content:"\F0DA3"}.mdi-transit-connection::before{content:"\F0D3C"}.mdi-transit-connection-horizontal::before{content:"\F1546"}.mdi-transit-connection-variant::before{content:"\F0D3D"}.mdi-transit-detour::before{content:"\F0F8B"}.mdi-transit-skip::before{content:"\F1515"}.mdi-transit-transfer::before{content:"\F06AE"}.mdi-transition::before{content:"\F0915"}.mdi-transition-masked::before{content:"\F0916"}.mdi-translate::before{content:"\F05CA"}.mdi-translate-off::before{content:"\F0E06"}.mdi-transmission-tower::before{content:"\F0D3E"}.mdi-trash-can::before{content:"\F0A79"}.mdi-trash-can-outline::before{content:"\F0A7A"}.mdi-tray::before{content:"\F1294"}.mdi-tray-alert::before{content:"\F1295"}.mdi-tray-full::before{content:"\F1296"}.mdi-tray-minus::before{content:"\F1297"}.mdi-tray-plus::before{content:"\F1298"}.mdi-tray-remove::before{content:"\F1299"}.mdi-treasure-chest::before{content:"\F0726"}.mdi-tree::before{content:"\F0531"}.mdi-tree-outline::before{content:"\F0E69"}.mdi-trello::before{content:"\F0532"}.mdi-trending-down::before{content:"\F0533"}.mdi-trending-neutral::before{content:"\F0534"}.mdi-trending-up::before{content:"\F0535"}.mdi-triangle::before{content:"\F0536"}.mdi-triangle-outline::before{content:"\F0537"}.mdi-triangle-wave::before{content:"\F147C"}.mdi-triforce::before{content:"\F0BD9"}.mdi-trophy::before{content:"\F0538"}.mdi-trophy-award::before{content:"\F0539"}.mdi-trophy-broken::before{content:"\F0DA4"}.mdi-trophy-outline::before{content:"\F053A"}.mdi-trophy-variant::before{content:"\F053B"}.mdi-trophy-variant-outline::before{content:"\F053C"}.mdi-truck::before{content:"\F053D"}.mdi-truck-check::before{content:"\F0CD4"}.mdi-truck-check-outline::before{content:"\F129A"}.mdi-truck-delivery::before{content:"\F053E"}.mdi-truck-delivery-outline::before{content:"\F129B"}.mdi-truck-fast::before{content:"\F0788"}.mdi-truck-fast-outline::before{content:"\F129C"}.mdi-truck-outline::before{content:"\F129D"}.mdi-truck-trailer::before{content:"\F0727"}.mdi-trumpet::before{content:"\F1096"}.mdi-tshirt-crew::before{content:"\F0A7B"}.mdi-tshirt-crew-outline::before{content:"\F053F"}.mdi-tshirt-v::before{content:"\F0A7C"}.mdi-tshirt-v-outline::before{content:"\F0540"}.mdi-tumble-dryer::before{content:"\F0917"}.mdi-tumble-dryer-alert::before{content:"\F11BA"}.mdi-tumble-dryer-off::before{content:"\F11BB"}.mdi-tune::before{content:"\F062E"}.mdi-tune-variant::before{content:"\F1542"}.mdi-tune-vertical::before{content:"\F066A"}.mdi-tune-vertical-variant::before{content:"\F1543"}.mdi-turnstile::before{content:"\F0CD5"}.mdi-turnstile-outline::before{content:"\F0CD6"}.mdi-turtle::before{content:"\F0CD7"}.mdi-twitch::before{content:"\F0543"}.mdi-twitter::before{content:"\F0544"}.mdi-twitter-retweet::before{content:"\F0547"}.mdi-two-factor-authentication::before{content:"\F09AF"}.mdi-typewriter::before{content:"\F0F2D"}.mdi-ubisoft::before{content:"\F0BDA"}.mdi-ubuntu::before{content:"\F0548"}.mdi-ufo::before{content:"\F10C4"}.mdi-ufo-outline::before{content:"\F10C5"}.mdi-ultra-high-definition::before{content:"\F07F9"}.mdi-umbraco::before{content:"\F0549"}.mdi-umbrella::before{content:"\F054A"}.mdi-umbrella-closed::before{content:"\F09B0"}.mdi-umbrella-closed-outline::before{content:"\F13E2"}.mdi-umbrella-closed-variant::before{content:"\F13E1"}.mdi-umbrella-outline::before{content:"\F054B"}.mdi-undo::before{content:"\F054C"}.mdi-undo-variant::before{content:"\F054D"}.mdi-unfold-less-horizontal::before{content:"\F054E"}.mdi-unfold-less-vertical::before{content:"\F0760"}.mdi-unfold-more-horizontal::before{content:"\F054F"}.mdi-unfold-more-vertical::before{content:"\F0761"}.mdi-ungroup::before{content:"\F0550"}.mdi-unicode::before{content:"\F0ED0"}.mdi-unicorn::before{content:"\F15C2"}.mdi-unicorn-variant::before{content:"\F15C3"}.mdi-unicycle::before{content:"\F15E5"}.mdi-unity::before{content:"\F06AF"}.mdi-unreal::before{content:"\F09B1"}.mdi-untappd::before{content:"\F0551"}.mdi-update::before{content:"\F06B0"}.mdi-upload::before{content:"\F0552"}.mdi-upload-lock::before{content:"\F1373"}.mdi-upload-lock-outline::before{content:"\F1374"}.mdi-upload-multiple::before{content:"\F083D"}.mdi-upload-network::before{content:"\F06F6"}.mdi-upload-network-outline::before{content:"\F0CD8"}.mdi-upload-off::before{content:"\F10C6"}.mdi-upload-off-outline::before{content:"\F10C7"}.mdi-upload-outline::before{content:"\F0E07"}.mdi-usb::before{content:"\F0553"}.mdi-usb-flash-drive::before{content:"\F129E"}.mdi-usb-flash-drive-outline::before{content:"\F129F"}.mdi-usb-port::before{content:"\F11F0"}.mdi-valve::before{content:"\F1066"}.mdi-valve-closed::before{content:"\F1067"}.mdi-valve-open::before{content:"\F1068"}.mdi-van-passenger::before{content:"\F07FA"}.mdi-van-utility::before{content:"\F07FB"}.mdi-vanish::before{content:"\F07FC"}.mdi-vanish-quarter::before{content:"\F1554"}.mdi-vanity-light::before{content:"\F11E1"}.mdi-variable::before{content:"\F0AE7"}.mdi-variable-box::before{content:"\F1111"}.mdi-vector-arrange-above::before{content:"\F0554"}.mdi-vector-arrange-below::before{content:"\F0555"}.mdi-vector-bezier::before{content:"\F0AE8"}.mdi-vector-circle::before{content:"\F0556"}.mdi-vector-circle-variant::before{content:"\F0557"}.mdi-vector-combine::before{content:"\F0558"}.mdi-vector-curve::before{content:"\F0559"}.mdi-vector-difference::before{content:"\F055A"}.mdi-vector-difference-ab::before{content:"\F055B"}.mdi-vector-difference-ba::before{content:"\F055C"}.mdi-vector-ellipse::before{content:"\F0893"}.mdi-vector-intersection::before{content:"\F055D"}.mdi-vector-line::before{content:"\F055E"}.mdi-vector-link::before{content:"\F0FE8"}.mdi-vector-point::before{content:"\F055F"}.mdi-vector-polygon::before{content:"\F0560"}.mdi-vector-polyline::before{content:"\F0561"}.mdi-vector-polyline-edit::before{content:"\F1225"}.mdi-vector-polyline-minus::before{content:"\F1226"}.mdi-vector-polyline-plus::before{content:"\F1227"}.mdi-vector-polyline-remove::before{content:"\F1228"}.mdi-vector-radius::before{content:"\F074A"}.mdi-vector-rectangle::before{content:"\F05C6"}.mdi-vector-selection::before{content:"\F0562"}.mdi-vector-square::before{content:"\F0001"}.mdi-vector-triangle::before{content:"\F0563"}.mdi-vector-union::before{content:"\F0564"}.mdi-vhs::before{content:"\F0A1B"}.mdi-vibrate::before{content:"\F0566"}.mdi-vibrate-off::before{content:"\F0CD9"}.mdi-video::before{content:"\F0567"}.mdi-video-3d::before{content:"\F07FD"}.mdi-video-3d-off::before{content:"\F13D9"}.mdi-video-3d-variant::before{content:"\F0ED1"}.mdi-video-4k-box::before{content:"\F083E"}.mdi-video-account::before{content:"\F0919"}.mdi-video-box::before{content:"\F00FD"}.mdi-video-box-off::before{content:"\F00FE"}.mdi-video-check::before{content:"\F1069"}.mdi-video-check-outline::before{content:"\F106A"}.mdi-video-high-definition::before{content:"\F152E"}.mdi-video-image::before{content:"\F091A"}.mdi-video-input-antenna::before{content:"\F083F"}.mdi-video-input-component::before{content:"\F0840"}.mdi-video-input-hdmi::before{content:"\F0841"}.mdi-video-input-scart::before{content:"\F0F8C"}.mdi-video-input-svideo::before{content:"\F0842"}.mdi-video-minus::before{content:"\F09B2"}.mdi-video-minus-outline::before{content:"\F02BA"}.mdi-video-off::before{content:"\F0568"}.mdi-video-off-outline::before{content:"\F0BDB"}.mdi-video-outline::before{content:"\F0BDC"}.mdi-video-plus::before{content:"\F09B3"}.mdi-video-plus-outline::before{content:"\F01D3"}.mdi-video-stabilization::before{content:"\F091B"}.mdi-video-switch::before{content:"\F0569"}.mdi-video-switch-outline::before{content:"\F0790"}.mdi-video-vintage::before{content:"\F0A1C"}.mdi-video-wireless::before{content:"\F0ED2"}.mdi-video-wireless-outline::before{content:"\F0ED3"}.mdi-view-agenda::before{content:"\F056A"}.mdi-view-agenda-outline::before{content:"\F11D8"}.mdi-view-array::before{content:"\F056B"}.mdi-view-array-outline::before{content:"\F1485"}.mdi-view-carousel::before{content:"\F056C"}.mdi-view-carousel-outline::before{content:"\F1486"}.mdi-view-column::before{content:"\F056D"}.mdi-view-column-outline::before{content:"\F1487"}.mdi-view-comfy::before{content:"\F0E6A"}.mdi-view-comfy-outline::before{content:"\F1488"}.mdi-view-compact::before{content:"\F0E6B"}.mdi-view-compact-outline::before{content:"\F0E6C"}.mdi-view-dashboard::before{content:"\F056E"}.mdi-view-dashboard-outline::before{content:"\F0A1D"}.mdi-view-dashboard-variant::before{content:"\F0843"}.mdi-view-dashboard-variant-outline::before{content:"\F1489"}.mdi-view-day::before{content:"\F056F"}.mdi-view-day-outline::before{content:"\F148A"}.mdi-view-grid::before{content:"\F0570"}.mdi-view-grid-outline::before{content:"\F11D9"}.mdi-view-grid-plus::before{content:"\F0F8D"}.mdi-view-grid-plus-outline::before{content:"\F11DA"}.mdi-view-headline::before{content:"\F0571"}.mdi-view-list::before{content:"\F0572"}.mdi-view-list-outline::before{content:"\F148B"}.mdi-view-module::before{content:"\F0573"}.mdi-view-module-outline::before{content:"\F148C"}.mdi-view-parallel::before{content:"\F0728"}.mdi-view-parallel-outline::before{content:"\F148D"}.mdi-view-quilt::before{content:"\F0574"}.mdi-view-quilt-outline::before{content:"\F148E"}.mdi-view-sequential::before{content:"\F0729"}.mdi-view-sequential-outline::before{content:"\F148F"}.mdi-view-split-horizontal::before{content:"\F0BCB"}.mdi-view-split-vertical::before{content:"\F0BCC"}.mdi-view-stream::before{content:"\F0575"}.mdi-view-stream-outline::before{content:"\F1490"}.mdi-view-week::before{content:"\F0576"}.mdi-view-week-outline::before{content:"\F1491"}.mdi-vimeo::before{content:"\F0577"}.mdi-violin::before{content:"\F060F"}.mdi-virtual-reality::before{content:"\F0894"}.mdi-virus::before{content:"\F13B6"}.mdi-virus-outline::before{content:"\F13B7"}.mdi-vk::before{content:"\F0579"}.mdi-vlc::before{content:"\F057C"}.mdi-voice-off::before{content:"\F0ED4"}.mdi-voicemail::before{content:"\F057D"}.mdi-volleyball::before{content:"\F09B4"}.mdi-volume-high::before{content:"\F057E"}.mdi-volume-low::before{content:"\F057F"}.mdi-volume-medium::before{content:"\F0580"}.mdi-volume-minus::before{content:"\F075E"}.mdi-volume-mute::before{content:"\F075F"}.mdi-volume-off::before{content:"\F0581"}.mdi-volume-plus::before{content:"\F075D"}.mdi-volume-source::before{content:"\F1120"}.mdi-volume-variant-off::before{content:"\F0E08"}.mdi-volume-vibrate::before{content:"\F1121"}.mdi-vote::before{content:"\F0A1F"}.mdi-vote-outline::before{content:"\F0A20"}.mdi-vpn::before{content:"\F0582"}.mdi-vuejs::before{content:"\F0844"}.mdi-vuetify::before{content:"\F0E6D"}.mdi-walk::before{content:"\F0583"}.mdi-wall::before{content:"\F07FE"}.mdi-wall-sconce::before{content:"\F091C"}.mdi-wall-sconce-flat::before{content:"\F091D"}.mdi-wall-sconce-flat-variant::before{content:"\F041C"}.mdi-wall-sconce-round::before{content:"\F0748"}.mdi-wall-sconce-round-variant::before{content:"\F091E"}.mdi-wallet::before{content:"\F0584"}.mdi-wallet-giftcard::before{content:"\F0585"}.mdi-wallet-membership::before{content:"\F0586"}.mdi-wallet-outline::before{content:"\F0BDD"}.mdi-wallet-plus::before{content:"\F0F8E"}.mdi-wallet-plus-outline::before{content:"\F0F8F"}.mdi-wallet-travel::before{content:"\F0587"}.mdi-wallpaper::before{content:"\F0E09"}.mdi-wan::before{content:"\F0588"}.mdi-wardrobe::before{content:"\F0F90"}.mdi-wardrobe-outline::before{content:"\F0F91"}.mdi-warehouse::before{content:"\F0F81"}.mdi-washing-machine::before{content:"\F072A"}.mdi-washing-machine-alert::before{content:"\F11BC"}.mdi-washing-machine-off::before{content:"\F11BD"}.mdi-watch::before{content:"\F0589"}.mdi-watch-export::before{content:"\F058A"}.mdi-watch-export-variant::before{content:"\F0895"}.mdi-watch-import::before{content:"\F058B"}.mdi-watch-import-variant::before{content:"\F0896"}.mdi-watch-variant::before{content:"\F0897"}.mdi-watch-vibrate::before{content:"\F06B1"}.mdi-watch-vibrate-off::before{content:"\F0CDA"}.mdi-water::before{content:"\F058C"}.mdi-water-alert::before{content:"\F1502"}.mdi-water-alert-outline::before{content:"\F1503"}.mdi-water-boiler::before{content:"\F0F92"}.mdi-water-boiler-alert::before{content:"\F11B3"}.mdi-water-boiler-off::before{content:"\F11B4"}.mdi-water-check::before{content:"\F1504"}.mdi-water-check-outline::before{content:"\F1505"}.mdi-water-minus::before{content:"\F1506"}.mdi-water-minus-outline::before{content:"\F1507"}.mdi-water-off::before{content:"\F058D"}.mdi-water-off-outline::before{content:"\F1508"}.mdi-water-outline::before{content:"\F0E0A"}.mdi-water-percent::before{content:"\F058E"}.mdi-water-percent-alert::before{content:"\F1509"}.mdi-water-plus::before{content:"\F150A"}.mdi-water-plus-outline::before{content:"\F150B"}.mdi-water-polo::before{content:"\F12A0"}.mdi-water-pump::before{content:"\F058F"}.mdi-water-pump-off::before{content:"\F0F93"}.mdi-water-remove::before{content:"\F150C"}.mdi-water-remove-outline::before{content:"\F150D"}.mdi-water-well::before{content:"\F106B"}.mdi-water-well-outline::before{content:"\F106C"}.mdi-watering-can::before{content:"\F1481"}.mdi-watering-can-outline::before{content:"\F1482"}.mdi-watermark::before{content:"\F0612"}.mdi-wave::before{content:"\F0F2E"}.mdi-waveform::before{content:"\F147D"}.mdi-waves::before{content:"\F078D"}.mdi-waze::before{content:"\F0BDE"}.mdi-weather-cloudy::before{content:"\F0590"}.mdi-weather-cloudy-alert::before{content:"\F0F2F"}.mdi-weather-cloudy-arrow-right::before{content:"\F0E6E"}.mdi-weather-fog::before{content:"\F0591"}.mdi-weather-hail::before{content:"\F0592"}.mdi-weather-hazy::before{content:"\F0F30"}.mdi-weather-hurricane::before{content:"\F0898"}.mdi-weather-lightning::before{content:"\F0593"}.mdi-weather-lightning-rainy::before{content:"\F067E"}.mdi-weather-night::before{content:"\F0594"}.mdi-weather-night-partly-cloudy::before{content:"\F0F31"}.mdi-weather-partly-cloudy::before{content:"\F0595"}.mdi-weather-partly-lightning::before{content:"\F0F32"}.mdi-weather-partly-rainy::before{content:"\F0F33"}.mdi-weather-partly-snowy::before{content:"\F0F34"}.mdi-weather-partly-snowy-rainy::before{content:"\F0F35"}.mdi-weather-pouring::before{content:"\F0596"}.mdi-weather-rainy::before{content:"\F0597"}.mdi-weather-snowy::before{content:"\F0598"}.mdi-weather-snowy-heavy::before{content:"\F0F36"}.mdi-weather-snowy-rainy::before{content:"\F067F"}.mdi-weather-sunny::before{content:"\F0599"}.mdi-weather-sunny-alert::before{content:"\F0F37"}.mdi-weather-sunny-off::before{content:"\F14E4"}.mdi-weather-sunset::before{content:"\F059A"}.mdi-weather-sunset-down::before{content:"\F059B"}.mdi-weather-sunset-up::before{content:"\F059C"}.mdi-weather-tornado::before{content:"\F0F38"}.mdi-weather-windy::before{content:"\F059D"}.mdi-weather-windy-variant::before{content:"\F059E"}.mdi-web::before{content:"\F059F"}.mdi-web-box::before{content:"\F0F94"}.mdi-web-clock::before{content:"\F124A"}.mdi-webcam::before{content:"\F05A0"}.mdi-webhook::before{content:"\F062F"}.mdi-webpack::before{content:"\F072B"}.mdi-webrtc::before{content:"\F1248"}.mdi-wechat::before{content:"\F0611"}.mdi-weight::before{content:"\F05A1"}.mdi-weight-gram::before{content:"\F0D3F"}.mdi-weight-kilogram::before{content:"\F05A2"}.mdi-weight-lifter::before{content:"\F115D"}.mdi-weight-pound::before{content:"\F09B5"}.mdi-whatsapp::before{content:"\F05A3"}.mdi-wheel-barrow::before{content:"\F14F2"}.mdi-wheelchair-accessibility::before{content:"\F05A4"}.mdi-whistle::before{content:"\F09B6"}.mdi-whistle-outline::before{content:"\F12BC"}.mdi-white-balance-auto::before{content:"\F05A5"}.mdi-white-balance-incandescent::before{content:"\F05A6"}.mdi-white-balance-iridescent::before{content:"\F05A7"}.mdi-white-balance-sunny::before{content:"\F05A8"}.mdi-widgets::before{content:"\F072C"}.mdi-widgets-outline::before{content:"\F1355"}.mdi-wifi::before{content:"\F05A9"}.mdi-wifi-alert::before{content:"\F16B5"}.mdi-wifi-arrow-down::before{content:"\F16B6"}.mdi-wifi-arrow-left::before{content:"\F16B7"}.mdi-wifi-arrow-left-right::before{content:"\F16B8"}.mdi-wifi-arrow-right::before{content:"\F16B9"}.mdi-wifi-arrow-up::before{content:"\F16BA"}.mdi-wifi-arrow-up-down::before{content:"\F16BB"}.mdi-wifi-cancel::before{content:"\F16BC"}.mdi-wifi-check::before{content:"\F16BD"}.mdi-wifi-cog::before{content:"\F16BE"}.mdi-wifi-lock::before{content:"\F16BF"}.mdi-wifi-lock-open::before{content:"\F16C0"}.mdi-wifi-marker::before{content:"\F16C1"}.mdi-wifi-minus::before{content:"\F16C2"}.mdi-wifi-off::before{content:"\F05AA"}.mdi-wifi-plus::before{content:"\F16C3"}.mdi-wifi-refresh::before{content:"\F16C4"}.mdi-wifi-remove::before{content:"\F16C5"}.mdi-wifi-settings::before{content:"\F16C6"}.mdi-wifi-star::before{content:"\F0E0B"}.mdi-wifi-strength-1::before{content:"\F091F"}.mdi-wifi-strength-1-alert::before{content:"\F0920"}.mdi-wifi-strength-1-lock::before{content:"\F0921"}.mdi-wifi-strength-1-lock-open::before{content:"\F16CB"}.mdi-wifi-strength-2::before{content:"\F0922"}.mdi-wifi-strength-2-alert::before{content:"\F0923"}.mdi-wifi-strength-2-lock::before{content:"\F0924"}.mdi-wifi-strength-2-lock-open::before{content:"\F16CC"}.mdi-wifi-strength-3::before{content:"\F0925"}.mdi-wifi-strength-3-alert::before{content:"\F0926"}.mdi-wifi-strength-3-lock::before{content:"\F0927"}.mdi-wifi-strength-3-lock-open::before{content:"\F16CD"}.mdi-wifi-strength-4::before{content:"\F0928"}.mdi-wifi-strength-4-alert::before{content:"\F0929"}.mdi-wifi-strength-4-lock::before{content:"\F092A"}.mdi-wifi-strength-4-lock-open::before{content:"\F16CE"}.mdi-wifi-strength-alert-outline::before{content:"\F092B"}.mdi-wifi-strength-lock-open-outline::before{content:"\F16CF"}.mdi-wifi-strength-lock-outline::before{content:"\F092C"}.mdi-wifi-strength-off::before{content:"\F092D"}.mdi-wifi-strength-off-outline::before{content:"\F092E"}.mdi-wifi-strength-outline::before{content:"\F092F"}.mdi-wifi-sync::before{content:"\F16C7"}.mdi-wikipedia::before{content:"\F05AC"}.mdi-wind-turbine::before{content:"\F0DA5"}.mdi-window-close::before{content:"\F05AD"}.mdi-window-closed::before{content:"\F05AE"}.mdi-window-closed-variant::before{content:"\F11DB"}.mdi-window-maximize::before{content:"\F05AF"}.mdi-window-minimize::before{content:"\F05B0"}.mdi-window-open::before{content:"\F05B1"}.mdi-window-open-variant::before{content:"\F11DC"}.mdi-window-restore::before{content:"\F05B2"}.mdi-window-shutter::before{content:"\F111C"}.mdi-window-shutter-alert::before{content:"\F111D"}.mdi-window-shutter-open::before{content:"\F111E"}.mdi-windsock::before{content:"\F15FA"}.mdi-wiper::before{content:"\F0AE9"}.mdi-wiper-wash::before{content:"\F0DA6"}.mdi-wizard-hat::before{content:"\F1477"}.mdi-wordpress::before{content:"\F05B4"}.mdi-wrap::before{content:"\F05B6"}.mdi-wrap-disabled::before{content:"\F0BDF"}.mdi-wrench::before{content:"\F05B7"}.mdi-wrench-outline::before{content:"\F0BE0"}.mdi-xamarin::before{content:"\F0845"}.mdi-xamarin-outline::before{content:"\F0846"}.mdi-xing::before{content:"\F05BE"}.mdi-xml::before{content:"\F05C0"}.mdi-xmpp::before{content:"\F07FF"}.mdi-y-combinator::before{content:"\F0624"}.mdi-yahoo::before{content:"\F0B4F"}.mdi-yeast::before{content:"\F05C1"}.mdi-yin-yang::before{content:"\F0680"}.mdi-yoga::before{content:"\F117C"}.mdi-youtube::before{content:"\F05C3"}.mdi-youtube-gaming::before{content:"\F0848"}.mdi-youtube-studio::before{content:"\F0847"}.mdi-youtube-subscription::before{content:"\F0D40"}.mdi-youtube-tv::before{content:"\F0448"}.mdi-yurt::before{content:"\F1516"}.mdi-z-wave::before{content:"\F0AEA"}.mdi-zend::before{content:"\F0AEB"}.mdi-zigbee::before{content:"\F0D41"}.mdi-zip-box::before{content:"\F05C4"}.mdi-zip-box-outline::before{content:"\F0FFA"}.mdi-zip-disk::before{content:"\F0A23"}.mdi-zodiac-aquarius::before{content:"\F0A7D"}.mdi-zodiac-aries::before{content:"\F0A7E"}.mdi-zodiac-cancer::before{content:"\F0A7F"}.mdi-zodiac-capricorn::before{content:"\F0A80"}.mdi-zodiac-gemini::before{content:"\F0A81"}.mdi-zodiac-leo::before{content:"\F0A82"}.mdi-zodiac-libra::before{content:"\F0A83"}.mdi-zodiac-pisces::before{content:"\F0A84"}.mdi-zodiac-sagittarius::before{content:"\F0A85"}.mdi-zodiac-scorpio::before{content:"\F0A86"}.mdi-zodiac-taurus::before{content:"\F0A87"}.mdi-zodiac-virgo::before{content:"\F0A88"}.mdi-blank::before{content:"\F68C";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:rgba(0,0,0,0.54)}.mdi-dark.mdi-inactive:before{color:rgba(0,0,0,0.26)}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:rgba(255,255,255,0.3)}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} - -/*# sourceMappingURL=materialdesignicons.min.css.map */ diff --git a/themes/buck/src/styles/pager.css b/themes/buck/src/styles/pager.css deleted file mode 100644 index 0242dde..0000000 --- a/themes/buck/src/styles/pager.css +++ /dev/null @@ -1,30 +0,0 @@ - -.pager { - display: grid; - width: fit-content; - grid-auto-columns: minmax(44px, 1fr); - grid-auto-flow: column; - gap: 16px; - row-gap: 8px; - font-size: 1.125rem; - - > :is(.extend, .page-number) { - aspect-ratio: 1; - display: flex; - align-items: center; - justify-content: center; - } - - > .extend > .mdi { - font-size: 1.375em; - } - - > .extend { - background-color: var(--p-secondary); - color: var(--p-secondary-fg); - - &:is(:hover, :focus) { - filter: saturate(0.65); - } - } -} diff --git a/themes/buck/src/styles/palette.css b/themes/buck/src/styles/palette.css deleted file mode 100644 index 417ac77..0000000 --- a/themes/buck/src/styles/palette.css +++ /dev/null @@ -1,51 +0,0 @@ -:root { - --palette-black: #000000; - --palette-white: #ffffff; - - --palette-blue-50: #e3f2fd; - --palette-blue-50-fg: var(--palette-black); - --palette-blue-100: #bbdefb; - --palette-blue-100-fg: var(--palette-black); - --palette-blue-200: #90caf9; - --palette-blue-200-fg: var(--palette-black); - --palette-blue-400: #42a5f5; - --palette-blue-400-fg: var(--palette-black); - --palette-blue-500: #2196f3; - --palette-blue-500-fg: var(--palette-black); - --palette-blue-600: #1e88e5; - --palette-blue-600-fg: var(--palette-white); - --palette-blue-700: #1976d2; - --palette-blue-700-fg: var(--palette-white); - --palette-blue-800: #1565c0; - --palette-blue-800-fg: var(--palette-white); - --palette-blue-900: #0d47a1; - --palette-blue-900-fg: var(--palette-white); - --palette-blue-a100: #82b1ff; - --palette-blue-a100-fg: var(--palette-black); - --palette-blue-a200: #448aff; - --palette-blue-a200-fg: var(--palette-white); - --palette-blue-a400: #2979ff; - --palette-blue-a400-fg: var(--palette-white); - --palette-blue-a700: #2962ff; - --palette-blue-a700-fg: var(--palette-white); - - --palette-grey-50: #fafafa; - --palette-grey-50-fg: var(--palette-black); - --palette-grey-100: #f5f5f5; - --palette-grey-100-fg: var(--palette-black); - --palette-grey-200: #eeeeee; - --palette-grey-200-fg: var(--palette-black); - --palette-grey-300: #e0e0e0; - --palette-grey-300-fg: var(--palette-black); - --palette-grey-400: #bdbdbd; - --palette-grey-400-fg: var(--palette-black); - --palette-grey-500: #9e9e9e; - --palette-grey-500-fg: var(--palette-black); - --palette-grey-600: #757575; - --palette-grey-600-fg: white; - --palette-grey-700: #616161; - --palette-grey-700-fg: white; - - --palette-pink-500: #e91e63; - --palette-pink-500-fg: var(--palette-white); -} diff --git a/themes/buck/src/styles/posts.css b/themes/buck/src/styles/posts.css deleted file mode 100644 index 6dc0df0..0000000 --- a/themes/buck/src/styles/posts.css +++ /dev/null @@ -1,81 +0,0 @@ -@import "./material.css"; - -:is(ul, ol).post-list { - list-style-type: none; - padding: 0; -} - -.post-item { - display: block; - padding: 12px 0; - > *:not(:where(figure)) { - margin-left: 4px; - margin-right: 4px; - } - border: 1px solid transparent; - border-top-color: var(--palette-grey-300); - transition: border-color 220ms ease-in-out; - - &:hover, &:focus-within { - border-top-color: var(--palette-grey-400); - border-left-color: var(--palette-grey-400); - border-right-color: var(--palette-grey-400); - - + .post-item { - border-top-color: var(--palette-grey-400); - } - - &:first-child { - border-top-color: var(--palette-grey-400); - } - - &:last-child { - border-bottom-color: var(--palette-grey-400); - } - } - - &:first-child { - border-top-color: transparent; - } - - & p { - line-height: 1.375; - - & > a { - line-height: 1.175; - } - } - - &:last-child { - border-bottom-color: rgba(0, 0, 0, 0.05); - } -} - -.post-item-title { - display: grid; - justify-content: space-between; - align-items: center; - margin-bottom: 16px; - gap: 8px; - grid-template-columns: auto auto; - - @media (width <= 400px) { - & { - grid-template-columns: 1fr; - } - - & > :last-child { - text-align: end; - } - } - - & > a { - min-height: 44px; - display: inline-flex; - align-items: center; - } - - & > time { - color: var(--palette-grey-700); - } -} diff --git a/themes/buck/src/styles/shared.css b/themes/buck/src/styles/shared.css deleted file mode 100644 index e69de29..0000000 diff --git a/themes/buck/src/uxaddon/dom.ts b/themes/buck/src/uxaddon/dom.ts deleted file mode 100644 index 71e7286..0000000 --- a/themes/buck/src/uxaddon/dom.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { createRenderEffect } from "solid-js"; - - -export function wrapElementsInClass(elements: Iterable, classes: string[]) { - for (const e of elements) { - createRenderEffect(() => { - const wrapper = document.createElement("div"); - wrapper.classList.add(...classes); - e.replaceWith(wrapper); - wrapper.appendChild(e); - }); - } -} diff --git a/themes/buck/src/uxaddon/table.ts b/themes/buck/src/uxaddon/table.ts deleted file mode 100644 index 0e039be..0000000 --- a/themes/buck/src/uxaddon/table.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { createRenderEffect, onCleanup } from "solid-js"; - -function findCorrespondingTableHeadOfCell(target: HTMLTableCellElement): HTMLTableCellElement | null { - const parentElement = target.parentElement as HTMLTableRowElement; - const collection = parentElement.cells; - for (let i = 0; i < collection.length; i++) { - if (collection.item(i) === target) { - const tbody = parentElement.parentElement - const table = tbody.parentElement - const allHeads = - table.querySelectorAll( - "thead > tr > th" - ); - return allHeads.item(i) as HTMLTableCellElement; - } - } - return null; -} - -const TABLE_COLUMN_HOVER_CLASSNAME = "table-column-hover"; - -export function renderAdvancedTablesOn(elements: Iterable) { - for (const e of elements) { - if (!(e instanceof HTMLTableElement)) { - console.warn(e, "is unable to be rendered as advanced table"); - continue; - } - - const onMouseEnter = (ev: MouseEvent) => { - const head = findCorrespondingTableHeadOfCell( - ev.target as HTMLTableCellElement - ); - if (!head.classList.contains(TABLE_COLUMN_HOVER_CLASSNAME)) { - head.classList.add(TABLE_COLUMN_HOVER_CLASSNAME); - } - }; - - const onMouseLeave = (ev: MouseEvent) => { - const head = findCorrespondingTableHeadOfCell( - ev.target as HTMLTableCellElement - ); - if (head.classList.contains(TABLE_COLUMN_HOVER_CLASSNAME)) { - head.classList.remove(TABLE_COLUMN_HOVER_CLASSNAME); - } - }; - - createRenderEffect(() => { - for (const td of e.querySelectorAll("td")) { - td.addEventListener("mouseenter", onMouseEnter); - td.addEventListener("mouseleave", onMouseLeave); - } - }); - - onCleanup(() => { - for (const td of e.querySelectorAll("td")) { - td.removeEventListener("mouseenter", onMouseEnter); - td.removeEventListener("mouseenter", onMouseLeave); - } - }); - } -} diff --git a/themes/buck/src/uxaddon/time.ts b/themes/buck/src/uxaddon/time.ts deleted file mode 100644 index 49df08f..0000000 --- a/themes/buck/src/uxaddon/time.ts +++ /dev/null @@ -1,152 +0,0 @@ -import { - createRenderEffect, - createSignal, - onCleanup, - createMemo, - untrack, -} from "solid-js"; -import { - parseISO, - parse, - isSameDay, - intlFormatDistance, - intlFormat, - differenceInSeconds, - differenceInMilliseconds, -} from "date-fns"; - -export enum DateRefreshPercision { - seconds = 0, - minutes = 1, - hours, - days, -} - -export function useCurrentDate( - percision: - | (() => DateRefreshPercision) - | DateRefreshPercision = DateRefreshPercision.minutes -) { - const [current, setCurrent] = createSignal(new Date()); - - const updateInterval = () => { - switch (typeof percision === "function" ? percision() : percision) { - case DateRefreshPercision.seconds: - return 1000; - case DateRefreshPercision.minutes: - return 15 * 1000; - case DateRefreshPercision.hours: - return 60 * 1000; - case DateRefreshPercision.days: - return 60 * 60 * 1000; - } - }; - - let id: undefined | number; - - const update = () => setCurrent(new Date()); - - createRenderEffect(() => { - if (typeof id !== "undefined") { - window.clearInterval(id); - id = undefined; - } - - const interval = updateInterval(); - - const now = new Date(); - if (differenceInMilliseconds(now, untrack(current)) <= interval) { - update(); - } - - id = window.setInterval(update, interval); - }); - - onCleanup(() => { - if (typeof id !== "undefined") { - window.clearInterval(id); - id = undefined; - } - }); - - return current; -} - -/** Translate the elements with time to human-readable form. - * - * @param elements - */ -export function renderLocalTimeOn(elements: Iterable) { - const [allPercisionRequired, setAllPercisionRequired] = createSignal< - DateRefreshPercision[] - >([], { equals: false }); - const percision = createMemo(() => { - const arr = allPercisionRequired(); - if (arr.length < 1) { - return DateRefreshPercision.hours; - } - - return arr.reduce((p, c) => (p < c ? p : c)); - }); - const date = useCurrentDate(percision); - const starts = new Date(); - - let idx = 0; - for (const e of elements) { - if (!(e instanceof HTMLElement)) { - console.warn(e, "is not a html element can be rendered local time"); - continue; - } - - const timeFormat = e.dataset.timeFormat ?? "iso"; - if (timeFormat === "local") { - continue; - } - - const i = idx++; - const content = e.hasAttribute('datetime') ? e.getAttribute('datetime') : e.textContent - const rawDate = - timeFormat === "iso" - ? parseISO(content) - : parse(content, timeFormat, starts); - e.dataset.raw = rawDate.toISOString(); - e.dataset.timeFormat = "local"; - - const percisionOfRawDate = createMemo(() => { - const seconds = differenceInSeconds(date(), rawDate); - if (seconds < 60) { - return DateRefreshPercision.seconds; - } else if (seconds < 60 * 60) { - return DateRefreshPercision.minutes; - } else if (seconds < 60 * 60 * 24) { - return DateRefreshPercision.hours; - } - return DateRefreshPercision.days; - }); - - const fmtString = createMemo(() => { - if (isSameDay(rawDate, date())) { - return intlFormatDistance(rawDate, date()); - } - return intlFormat(rawDate); - }); - - createRenderEffect(() => { - if (!e.hasAttribute('datetime')) { - e.setAttribute('datetime', rawDate.toISOString()) - } - }) - - createRenderEffect(() => { - e.textContent = fmtString(); - }); - - createRenderEffect(() => { - const p = percisionOfRawDate(); - setAllPercisionRequired((x) => { - x[i] = p; - return x; - }); - }); - } -} diff --git a/themes/buck/theme.example.yaml b/themes/buck/theme.example.yaml deleted file mode 100644 index e69de29..0000000 diff --git a/themes/buck/tsconfig.json b/themes/buck/tsconfig.json deleted file mode 100644 index ee491ac..0000000 --- a/themes/buck/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "compilerOptions": { - "esModuleInterop": true, - "target": "es2020", - "module": "Node16", - "alwaysStrict": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "preserve", - "jsxImportSource": "solid-js" - }, - "include": ["src"] -} diff --git a/themes/buck/watch.ts b/themes/buck/watch.ts deleted file mode 100644 index b9a7420..0000000 --- a/themes/buck/watch.ts +++ /dev/null @@ -1,5 +0,0 @@ -import * as esbuild from 'esbuild' -import options from './config.js' - -const ctx = await esbuild.context(options) -await ctx.watch() diff --git a/themes/hexo-theme-buck b/themes/hexo-theme-buck new file mode 160000 index 0000000..49c00d7 --- /dev/null +++ b/themes/hexo-theme-buck @@ -0,0 +1 @@ +Subproject commit 49c00d70a1798a50b94fdb1ee97554ca9a4617d1